diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml new file mode 100644 index 000000000..2c8b0498f --- /dev/null +++ b/.github/codeql/codeql-config.yml @@ -0,0 +1,4 @@ +name: "CodeQL config" +queries: + - uses: security-and-quality + - uses: security-extended diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 000000000..6478fb99f --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,43 @@ +# For more infomation, please visit: https://github.com/github/codeql-action + +name: "CodeQL" + +on: + push: + branches: + - 'master' + - '202[0-9][0-9][0-9]' + pull_request_target: + branches: + - 'master' + - '202[0-9][0-9][0-9]' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'python' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + config-file: ./.github/codeql/codeql-config.yml + languages: ${{ matrix.language }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{matrix.language}}" diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml new file mode 100644 index 000000000..8ebe082f5 --- /dev/null +++ b/.github/workflows/semgrep.yml @@ -0,0 +1,21 @@ +name: Semgrep + +on: + pull_request: {} + push: + branches: + - master + - '201[7-9][0-1][0-9]' + - '202[0-9][0-1][0-9]' + +jobs: + semgrep: + name: Semgrep + runs-on: ubuntu-latest + container: + image: returntocorp/semgrep + steps: + - uses: actions/checkout@v3 + - run: semgrep ci + env: + SEMGREP_RULES: p/default diff --git a/acl_loader/main.py b/acl_loader/main.py index ada716215..462a46fa7 100644 --- a/acl_loader/main.py +++ b/acl_loader/main.py @@ -4,6 +4,7 @@ import ipaddress import json import syslog +import operator import openconfig_acl import tabulate @@ -71,6 +72,10 @@ class AclLoader(object): ACL_TABLE = "ACL_TABLE" ACL_RULE = "ACL_RULE" + CFG_ACL_TABLE = "ACL_TABLE" + STATE_ACL_TABLE = "ACL_TABLE_TABLE" + CFG_ACL_RULE = "ACL_RULE" + STATE_ACL_RULE = "ACL_RULE_TABLE" ACL_TABLE_TYPE_MIRROR = "MIRROR" ACL_TABLE_TYPE_CTRLPLANE = "CTRLPLANE" CFG_MIRROR_SESSION_TABLE = "MIRROR_SESSION" @@ -116,11 +121,16 @@ def __init__(self): self.tables_db_info = {} self.rules_db_info = {} self.rules_info = {} + self.tables_state_info = None + self.rules_state_info = None # Load database config files load_db_config() self.sessions_db_info = {} + self.acl_table_status = {} + self.acl_rule_status = {} + self.configdb = ConfigDBConnector() self.configdb.connect() self.statedb = SonicV2Connector(host="127.0.0.1") @@ -146,22 +156,48 @@ def __init__(self): namespaces = multi_asic.get_all_namespaces() for front_asic_namespaces in namespaces['front_ns']: - self.per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces) + self.per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(namespace=front_asic_namespaces) self.per_npu_configdb[front_asic_namespaces].connect() - self.per_npu_statedb[front_asic_namespaces] = SonicV2Connector(use_unix_socket_path=True, namespace=front_asic_namespaces) + self.per_npu_statedb[front_asic_namespaces] = SonicV2Connector(namespace=front_asic_namespaces) self.per_npu_statedb[front_asic_namespaces].connect(self.per_npu_statedb[front_asic_namespaces].STATE_DB) self.read_tables_info() self.read_rules_info() self.read_sessions_info() self.read_policers_info() + self.acl_table_status = self.read_acl_object_status_info(self.CFG_ACL_TABLE, self.STATE_ACL_TABLE) + self.acl_rule_status = self.read_acl_object_status_info(self.CFG_ACL_RULE, self.STATE_ACL_RULE) def read_tables_info(self): """ Read ACL_TABLE table from configuration database :return: """ - self.tables_db_info = self.configdb.get_table(self.ACL_TABLE) + # get the acl table info from host config_db + host_acl_table = self.configdb.get_table(self.ACL_TABLE) + # For multi asic get only the control plane acls from the host config_db + if self.per_npu_configdb: + for table, entry in host_acl_table.items(): + if entry.get('type', None) != self.ACL_TABLE_TYPE_CTRLPLANE: + continue + + self.tables_db_info[table] = entry + else: + self.tables_db_info.update(host_acl_table) + + # for DATAACL, EVERFLOW acls. + # update the ports from all the namespaces + if self.per_npu_configdb: + for ns, config_db in self.per_npu_configdb.items(): + acl_table = config_db.get_table(self.ACL_TABLE) + for table, entry in acl_table.items(): + if entry.get('type', None) == self.ACL_TABLE_TYPE_CTRLPLANE: + continue + if table not in self.tables_db_info: + self.tables_db_info[table] = entry + else: + self.tables_db_info[table]['ports'] += entry.get( + 'ports', []) def get_tables_db_info(self): return self.tables_db_info @@ -209,7 +245,7 @@ def read_sessions_info(self): for key in self.sessions_db_info: if self.per_npu_statedb: # For multi-npu platforms we will read from all front asic name space - # statedb as the monitor port will be differnt for each asic + # statedb as the monitor port will be different for each asic # and it's status also might be different (ideally should not happen) # We will store them as dict of 'asic' : value self.sessions_db_info[key]["status"] = {} @@ -223,6 +259,35 @@ def read_sessions_info(self): self.sessions_db_info[key]["status"] = state_db_info.get("status", "inactive") if state_db_info else "error" self.sessions_db_info[key]["monitor_port"] = state_db_info.get("monitor_port", "") if state_db_info else "" + def read_acl_object_status_info(self, cfg_db_table_name, state_db_table_name): + """ + Read ACL_TABLE status or ACL_RULE status from STATE_DB + """ + if self.per_npu_configdb: + namespace_configdb = list(self.per_npu_configdb.values())[0] + keys = namespace_configdb.get_table(cfg_db_table_name).keys() + else: + keys = self.configdb.get_table(cfg_db_table_name).keys() + + status = {} + for key in keys: + # For ACL_RULE, the key is (acl_table_name, acl_rule_name) + if isinstance(key, tuple): + state_db_key = key[0] + "|" + key[1] + else: + state_db_key = key + status[key] = {} + if self.per_npu_statedb: + status[key]['status'] = {} + for namespace_key, namespace_statedb in self.per_npu_statedb.items(): + state_db_info = namespace_statedb.get_all(self.statedb.STATE_DB, "{}|{}".format(state_db_table_name, state_db_key)) + status[key]['status'][namespace_key] = state_db_info.get("status", "N/A") if state_db_info else "N/A" + else: + state_db_info = self.statedb.get_all(self.statedb.STATE_DB, "{}|{}".format(state_db_table_name, state_db_key)) + status[key]['status'] = state_db_info.get("status", "N/A") if state_db_info else "N/A" + + return status + def get_sessions_db_info(self): return self.sessions_db_info @@ -305,6 +370,14 @@ def is_table_l3v6(self, tname): """ return self.tables_db_info[tname]["type"].upper() == "L3V6" + def is_table_l3v4v6(self, tname): + """ + Check if ACL table type is L3V4V6 + :param tname: ACL table name + :return: True if table type is L3V4V6 else False + """ + return self.tables_db_info[tname]["type"].upper() == "L3V4V6" + def is_table_l3(self, tname): """ Check if ACL table type is L3 @@ -503,9 +576,28 @@ def convert_ip(self, table_name, rule_idx, rule): def convert_icmp(self, table_name, rule_idx, rule): rule_props = {} - is_table_v6 = self.is_table_ipv6(table_name) - type_key = "ICMPV6_TYPE" if is_table_v6 else "ICMP_TYPE" - code_key = "ICMPV6_CODE" if is_table_v6 else "ICMP_CODE" + is_rule_v6 = False + if self.is_table_ipv6(table_name): + is_rule_v6 = True + elif self.is_table_l3v4v6(table_name): + # get the IP version type using Ether-Type. + try: + ether_type = rule.l2.config.ethertype + if ether_type == "ETHERTYPE_IPV6": + is_rule_v6 = True + except Exception as e: + pass + else: + # get the IP version type using IP_PROTOCOL. + try: + ip_protocol = rule.ip.config.protocol + if ip_protocol == "IP_ICMPV6" or int(ip_protocol) == self.ip_protocol_map["IP_ICMPV6"]: + is_rule_v6 = True + except Exception as e: + pass + + type_key = "ICMPV6_TYPE" if is_rule_v6 else "ICMP_TYPE" + code_key = "ICMPV6_CODE" if is_rule_v6 else "ICMP_CODE" if rule.icmp.config.type != "" and rule.icmp.config.type != "null": icmp_type = rule.icmp.config.type @@ -629,6 +721,7 @@ def convert_rule_to_db_schema(self, table_name, rule): def deny_rule(self, table_name): """ Create default deny rule in Config DB format + Only create default deny rule when table is [L3, L3V6] :param table_name: ACL table name to which rule belong :return: dict with Config DB schema """ @@ -636,10 +729,12 @@ def deny_rule(self, table_name): rule_data = {(table_name, "DEFAULT_RULE"): rule_props} rule_props["PRIORITY"] = str(self.min_priority) rule_props["PACKET_ACTION"] = "DROP" - if self.is_table_ipv6(table_name): + if self.is_table_l3v6(table_name): rule_props["IP_TYPE"] = "IPV6ANY" # ETHERTYPE is not supported for DATAACLV6 - else: + elif self.is_table_l3(table_name): rule_props["ETHER_TYPE"] = str(self.ethertype_map["ETHERTYPE_IPV4"]) + else: + return {} # Don't add default deny rule if table is not [L3, L3V6] return rule_data def convert_rules(self): @@ -666,7 +761,7 @@ def convert_rules(self): except AclLoaderException as ex: error("Error processing rule %s: %s. Skipped." % (acl_entry_name, ex)) - if not self.is_table_mirror(table_name) and not self.is_table_egress(table_name): + if not self.is_table_egress(table_name): deep_update(self.rules_info, self.deny_rule(table_name)) def full_update(self): @@ -758,7 +853,7 @@ def incremental_update(self): namespace_configdb.mod_entry(self.ACL_RULE, key, None) for key in existing_controlplane_rules: - if cmp(self.rules_info[key], self.rules_db_info[key]) != 0: + if not operator.eq(self.rules_info[key], self.rules_db_info[key]): self.configdb.set_entry(self.ACL_RULE, key, self.rules_info[key]) # Program for per-asic namespace corresponding to front asic also if present. # For control plane ACL it's not needed but to keep all db in sync program everywhere @@ -785,32 +880,36 @@ def show_table(self, table_name): :param table_name: Optional. ACL table name. Filter tables by specified name. :return: """ - header = ("Name", "Type", "Binding", "Description", "Stage") + header = ("Name", "Type", "Binding", "Description", "Stage", "Status") data = [] for key, val in self.get_tables_db_info().items(): if table_name and key != table_name: continue - + stage = val.get("stage", Stage.INGRESS).lower() - + # Get ACL table status from STATE_DB + if key in self.acl_table_status: + status = self.acl_table_status[key]['status'] + else: + status = 'N/A' if val["type"] == AclLoader.ACL_TABLE_TYPE_CTRLPLANE: services = natsorted(val["services"]) - data.append([key, val["type"], services[0], val["policy_desc"], stage]) + data.append([key, val["type"], services[0], val["policy_desc"], stage, status]) if len(services) > 1: for service in services[1:]: - data.append(["", "", service, "", ""]) + data.append(["", "", service, "", "", ""]) else: if not val["ports"]: - data.append([key, val["type"], "", val["policy_desc"], stage]) + data.append([key, val["type"], "", val["policy_desc"], stage, status]) else: ports = natsorted(val["ports"]) - data.append([key, val["type"], ports[0], val["policy_desc"], stage]) + data.append([key, val["type"], ports[0], val["policy_desc"], stage, status]) if len(ports) > 1: for port in ports[1:]: - data.append(["", "", port, "", ""]) + data.append(["", "", port, "", "", ""]) print(tabulate.tabulate(data, headers=header, tablefmt="simple", missingval="")) @@ -870,7 +969,7 @@ def show_rule(self, table_name, rule_id): :param rule_id: Optional. ACL rule name. Filter rule by specified rule name. :return: """ - header = ("Table", "Rule", "Priority", "Action", "Match") + header = ("Table", "Rule", "Priority", "Action", "Match", "Status") def pop_priority(val): priority = "N/A" @@ -916,11 +1015,16 @@ def pop_matches(val): priority = pop_priority(val) action = pop_action(val) matches = pop_matches(val) - - rule_data = [[tname, rid, priority, action, matches[0]]] + # Get ACL rule status from STATE_DB + status_key = (tname, rid) + if status_key in self.acl_rule_status: + status = self.acl_rule_status[status_key]['status'] + else: + status = "N/A" + rule_data = [[tname, rid, priority, action, matches[0], status]] if len(matches) > 1: for m in matches[1:]: - rule_data.append(["", "", "", "", m]) + rule_data.append(["", "", "", "", m, ""]) raw_data.append([priority, rule_data]) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 202bba1d5..1d406eacf 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,8 +10,8 @@ resources: repositories: - repository: sonic-swss type: github - name: Azure/sonic-swss - endpoint: build + name: sonic-net/sonic-swss + endpoint: sonic-net stages: - stage: Build @@ -26,9 +26,16 @@ stages: vmImage: ubuntu-20.04 container: - image: sonicdev-microsoft.azurecr.io:443/sonic-slave-buster:latest + image: sonicdev-microsoft.azurecr.io:443/sonic-slave-bullseye:latest steps: + - script: | + set -ex + sudo apt-get update + sudo apt-get install -y python3-pip + sudo pip3 install requests==2.31.0 + displayName: "Install dependencies" + - script: | sourceBranch=$(Build.SourceBranchName) if [[ "$(Build.Reason)" == "PullRequest" ]];then @@ -45,11 +52,14 @@ stages: artifact: sonic-buildimage.vs runVersion: 'latestFromBranch' runBranch: 'refs/heads/$(sourceBranch)' + patterns: | + **/*.deb + **/*.whl displayName: "Download artifacts from latest sonic-buildimage build" - script: | set -xe - sudo apt-get -y purge libhiredis-dev libnl-3-dev libnl-route-3-dev + sudo apt-get -y purge libhiredis-dev libnl-3-dev libnl-route-3-dev || true sudo dpkg -i libnl-3-200_*.deb sudo dpkg -i libnl-genl-3-200_*.deb sudo dpkg -i libnl-route-3-200_*.deb @@ -58,7 +68,7 @@ stages: sudo dpkg -i libyang_1.0.73_amd64.deb sudo dpkg -i libyang-cpp_1.0.73_amd64.deb sudo dpkg -i python3-yang_1.0.73_amd64.deb - workingDirectory: $(Pipeline.Workspace)/target/debs/buster/ + workingDirectory: $(Pipeline.Workspace)/target/debs/bullseye/ displayName: 'Install Debian dependencies' - task: DownloadPipelineArtifact@2 @@ -66,9 +76,10 @@ stages: source: specific project: build pipeline: 9 - artifact: sonic-swss-common + artifact: sonic-swss-common.bullseye.amd64 runVersion: 'latestFromBranch' - runBranch: 'refs/heads/master' + runBranch: 'refs/heads/$(sourceBranch)' + allowPartiallySucceededBuilds: true displayName: "Download sonic swss common deb packages" - script: | @@ -86,14 +97,14 @@ stages: sudo pip3 install sonic_yang_models-1.0-py3-none-any.whl sudo pip3 install sonic_config_engine-1.0-py3-none-any.whl sudo pip3 install sonic_platform_common-1.0-py3-none-any.whl - workingDirectory: $(Pipeline.Workspace)/target/python-wheels/buster/ + workingDirectory: $(Pipeline.Workspace)/target/python-wheels/bullseye/ displayName: 'Install Python dependencies' - script: | set -ex # Install .NET CORE curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - - sudo apt-add-repository https://packages.microsoft.com/debian/10/prod + sudo apt-add-repository https://packages.microsoft.com/debian/11/prod sudo apt-get update sudo apt-get install -y dotnet-sdk-5.0 displayName: "Install .NET CORE" diff --git a/clear/main.py b/clear/main.py index 6980bb8be..821e4e269 100755 --- a/clear/main.py +++ b/clear/main.py @@ -183,6 +183,21 @@ def queuecounters(): command = "queuestat -c" run_command(command) + command = "queuestat -c --voq" + run_command(command) + +@cli.command() +def fabriccountersqueue(): + """Clear fabric queue counters""" + command = "fabricstat -C -q" + run_command(command) + +@cli.command() +def fabriccountersport(): + """Clear fabric port counters""" + command = "fabricstat -C" + run_command(command) + @cli.command() def pfccounters(): """Clear pfc counters""" diff --git a/config/chassis_modules.py b/config/chassis_modules.py old mode 100644 new mode 100755 index e640779d1..4e7fd8096 --- a/config/chassis_modules.py +++ b/config/chassis_modules.py @@ -1,9 +1,14 @@ #!/usr/sbin/env python import click - +import time +import re +import subprocess import utilities_common.cli as clicommon +TIMEOUT_SECS = 10 + + # # 'chassis_modules' group ('config chassis_modules ...') # @@ -17,6 +22,81 @@ def modules(): """Configure chassis modules""" pass + +def get_config_module_state(db, chassis_module_name): + config_db = db.cfgdb + fvs = config_db.get_entry('CHASSIS_MODULE', chassis_module_name) + if not fvs: + return 'up' + else: + return fvs['admin_status'] + + +# +# Name: check_config_module_state_with_timeout +# return: True: timeout, False: not timeout +# +def check_config_module_state_with_timeout(ctx, db, chassis_module_name, state): + counter = 0 + while get_config_module_state(db, chassis_module_name) != state: + time.sleep(1) + counter += 1 + if counter >= TIMEOUT_SECS: + ctx.fail("get_config_module_state {} timeout".format(chassis_module_name)) + return True + return False + + +def get_asic_list_from_db(chassisdb, chassis_module_name): + asic_list = [] + asics_keys_list = chassisdb.keys("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE*") + for asic_key in asics_keys_list: + name = chassisdb.get("CHASSIS_STATE_DB", asic_key, "name") + if name == chassis_module_name: + asic_id = int(re.search(r"(\d+)$", asic_key).group()) + asic_list.append(asic_id) + return asic_list + + +# +# Syntax: fabric_module_set_admin_status <'up'/'down'> +# +def fabric_module_set_admin_status(db, chassis_module_name, state): + chassisdb = db.db + chassisdb.connect("CHASSIS_STATE_DB") + asic_list = get_asic_list_from_db(chassisdb, chassis_module_name) + + if len(asic_list) == 0: + return + + if state == "down": + for asic in asic_list: + click.echo("Stop swss@{} and peer services".format(asic)) + clicommon.run_command('sudo systemctl stop swss@{}.service'.format(asic)) + + is_active = subprocess.call(["systemctl", "is-active", "--quiet", "swss@{}.service".format(asic)]) + + if is_active == 0: # zero active, non-zero, inactive + click.echo("Stop swss@{} and peer services failed".format(asic)) + return + + click.echo("Delete related CAHSSIS_FABRIC_ASIC_TABLE entries") + + for asic in asic_list: + chassisdb.delete("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic" + str(asic)) + + # Start the services in case of the users just execute issue command "systemctl stop swss@/syncd@" + # without bring down the hardware + for asic in asic_list: + # To address systemd service restart limit by resetting the count + clicommon.run_command('sudo systemctl reset-failed swss@{}.service'.format(asic)) + click.echo("Start swss@{} and peer services".format(asic)) + clicommon.run_command('sudo systemctl start swss@{}.service'.format(asic)) + elif state == "up": + for asic in asic_list: + click.echo("Start swss@{} and peer services".format(asic)) + clicommon.run_command('sudo systemctl start swss@{}.service'.format(asic)) + # # 'shutdown' subcommand ('config chassis_modules shutdown ...') # @@ -33,8 +113,17 @@ def shutdown_chassis_module(db, chassis_module_name): not chassis_module_name.startswith("FABRIC-CARD"): ctx.fail("'module_name' has to begin with 'SUPERVISOR', 'LINE-CARD' or 'FABRIC-CARD'") + # To avoid duplicate operation + if get_config_module_state(db, chassis_module_name) == 'down': + click.echo("Module {} is already in down state".format(chassis_module_name)) + return + + click.echo("Shutting down chassis module {}".format(chassis_module_name)) fvs = {'admin_status': 'down'} config_db.set_entry('CHASSIS_MODULE', chassis_module_name, fvs) + if chassis_module_name.startswith("FABRIC-CARD"): + if not check_config_module_state_with_timeout(ctx, db, chassis_module_name, 'down'): + fabric_module_set_admin_status(db, chassis_module_name, 'down') # # 'startup' subcommand ('config chassis_modules startup ...') @@ -45,5 +134,15 @@ def shutdown_chassis_module(db, chassis_module_name): def startup_chassis_module(db, chassis_module_name): """Chassis-module startup of module""" config_db = db.cfgdb + ctx = click.get_current_context() + + # To avoid duplicate operation + if get_config_module_state(db, chassis_module_name) == 'up': + click.echo("Module {} is already set to up state".format(chassis_module_name)) + return + click.echo("Starting up chassis module {}".format(chassis_module_name)) config_db.set_entry('CHASSIS_MODULE', chassis_module_name, None) + if chassis_module_name.startswith("FABRIC-CARD"): + if not check_config_module_state_with_timeout(ctx, db, chassis_module_name, 'up'): + fabric_module_set_admin_status(db, chassis_module_name, 'up') diff --git a/config/config_mgmt.py b/config/config_mgmt.py index 3b975e7d9..8c1954f3c 100644 --- a/config/config_mgmt.py +++ b/config/config_mgmt.py @@ -35,7 +35,8 @@ class ConfigMgmt(): to verify config for the commands which are capable of change in config DB. ''' - def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True): + def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, + configdb=None): ''' Initialise the class, --read the config, --load in data tree. @@ -44,6 +45,7 @@ def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True): debug (bool): verbose mode. allowTablesWithoutYang (bool): allow tables without yang model in config or not. + configdb: configdb to work on. Returns: void @@ -53,6 +55,7 @@ def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True): self.configdbJsonOut = None self.source = source self.allowTablesWithoutYang = allowTablesWithoutYang + self.configdb = configdb # logging vars self.SYSLOG_IDENTIFIER = "ConfigMgmt" @@ -193,8 +196,11 @@ def readConfigDB(self): self.sysLog(doPrint=True, msg='Reading data from Redis configDb') # Read from config DB on sonic switch data = dict() - configdb = ConfigDBConnector() - configdb.connect() + if self.configdb is None: + configdb = ConfigDBConnector() + configdb.connect() + else: + configdb = self.configdb sonic_cfggen.deep_update(data, sonic_cfggen.FormatConverter.db_to_output(configdb.get_config())) self.configdbJsonIn = sonic_cfggen.FormatConverter.to_serialized(data) self.sysLog(syslog.LOG_DEBUG, 'Reading Input from ConfigDB {}'.\ @@ -214,8 +220,11 @@ def writeConfigDB(self, jDiff): ''' self.sysLog(doPrint=True, msg='Writing in Config DB') data = dict() - configdb = ConfigDBConnector() - configdb.connect(False) + if self.configdb is None: + configdb = ConfigDBConnector() + configdb.connect(False) + else: + configdb = self.configdb sonic_cfggen.deep_update(data, sonic_cfggen.FormatConverter.to_deserialized(jDiff)) self.sysLog(msg="Write in DB: {}".format(data)) configdb.mod_config(sonic_cfggen.FormatConverter.output_to_db(data)) diff --git a/config/fabric.py b/config/fabric.py new file mode 100644 index 000000000..a3870589a --- /dev/null +++ b/config/fabric.py @@ -0,0 +1,247 @@ +import click +import utilities_common.cli as clicommon +import utilities_common.multi_asic as multi_asic_util +from sonic_py_common import multi_asic +from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector + +# +# 'config fabric ...' +# +@click.group(cls=clicommon.AbbreviationGroup) +def fabric(): + """FABRIC-related configuration tasks""" + pass + +# +# 'config fabric port ...' +# +@fabric.group(cls=clicommon.AbbreviationGroup) +def port(): + """FABRIC PORT configuration tasks""" + pass + +# +# 'config fabric port isolate [ -n ]' +# +@port.command() +@click.argument('portid', metavar='', required=True) +@multi_asic_util.multi_asic_click_option_namespace +def isolate(portid, namespace): + """FABRIC PORT isolate """ + + ctx = click.get_current_context() + + if not portid.isdigit(): + ctx.fail("Invalid portid") + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # check if the port is actually in use + portName = f'PORT{portid}' + portStateData = state_db.get_all(state_db.STATE_DB, "FABRIC_PORT_TABLE|" + portName) + if "REMOTE_PORT" not in portStateData: + ctx.fail(f"Port {portid} is not in use") + + # Make sure configuration data exists + portName = f'Fabric{portid}' + portConfigData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_PORT|" + portName) + if not bool(portConfigData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_PORT", portName, {'isolateStatus': True}) + +# +# 'config fabric port unisolate [ -n ]' +# +@port.command() +@click.argument('portid', metavar='', required=True) +@multi_asic_util.multi_asic_click_option_namespace +def unisolate(portid, namespace): + """FABRIC PORT unisolate """ + + ctx = click.get_current_context() + + if not portid.isdigit(): + ctx.fail("Invalid portid") + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # check if the port is actually in use + portName = f'PORT{portid}' + portStateData = state_db.get_all(state_db.STATE_DB, "FABRIC_PORT_TABLE|" + portName) + if "REMOTE_PORT" not in portStateData: + ctx.fail(f"Port {portid} is not in use") + + # Make sure configuration data exists + portName = f'Fabric{portid}' + portConfigData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_PORT|" + portName) + if not bool(portConfigData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_PORT", portName, {'isolateStatus': False}) + +# +# 'config fabric port monitor ...' +# +@port.group(cls=clicommon.AbbreviationGroup) +def monitor(): + """FABRIC PORT MONITOR configuration tasks""" + pass + +# +# 'config fabric port monitor error ...' +# +@monitor.group(cls=clicommon.AbbreviationGroup) +def error(): + """FABRIC PORT MONITOR ERROR configuration tasks""" + pass + +# +# 'config fabric port monitor error threshold ' +# +@error.command('threshold') +@click.argument('crcCells', metavar='', required=True, type=int) +@click.argument('rxcells', metavar='', required=True, type=int) +@multi_asic_util.multi_asic_click_option_namespace +def error_threshold(crccells, rxcells, namespace): + """FABRIC PORT MONITOR ERROR THRESHOLD configuration tasks""" + + ctx = click.get_current_context() + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + # Check the values + if crccells < 1 or crccells > 1000: + ctx.fail("crcCells must be in range 1...1000") + if rxcells < 10000 or rxcells > 100000000: + ctx.fail("rxCells must be in range 10000...100000000") + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # Make sure configuration data exists + monitorData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_MONITOR|FABRIC_MONITOR_DATA") + if not bool(monitorData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_MONITOR", "FABRIC_MONITOR_DATA", + {'monErrThreshCrcCells': crccells, 'monErrThreshRxCells': rxcells}) + +# +# 'config fabric port monitor poll ...' +# +@monitor.group(cls=clicommon.AbbreviationGroup) +def poll(): + """FABRIC PORT MONITOR POLL configuration tasks""" + pass + +# +# 'config fabric port monitor poll threshold ...' +# +@poll.group(cls=clicommon.AbbreviationGroup, name='threshold') +def poll_threshold(): + """FABRIC PORT MONITOR POLL THRESHOLD configuration tasks""" + pass + +# +# 'config fabric port monitor poll threshold isolation ' +# +@poll_threshold.command() +@click.argument('pollcount', metavar='', required=True, type=int) +@multi_asic_util.multi_asic_click_option_namespace +def isolation(pollcount, namespace): + """FABRIC PORT MONITOR POLL THRESHOLD configuration tasks""" + + ctx = click.get_current_context() + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + if pollcount < 1 or pollcount > 10: + ctx.fail("pollCount must be in range 1...10") + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # Make sure configuration data exists + monitorData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_MONITOR|FABRIC_MONITOR_DATA") + if not bool(monitorData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_MONITOR", "FABRIC_MONITOR_DATA", + {"monPollThreshIsolation": pollcount}) + + +# +# 'config fabric port monitor poll threshold recovery ' +# +@poll_threshold.command() +@click.argument('pollcount', metavar='', required=True, type=int) +@multi_asic_util.multi_asic_click_option_namespace +def recovery(pollcount, namespace): + """FABRIC PORT MONITOR POLL THRESHOLD configuration tasks""" + + ctx = click.get_current_context() + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + if pollcount < 1 or pollcount > 10: + ctx.fail("pollCount must be in range 1...10") + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # Make sure configuration data exists + monitorData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_MONITOR|FABRIC_MONITOR_DATA") + if not bool(monitorData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_MONITOR", "FABRIC_MONITOR_DATA", + {"monPollThreshRecovery": pollcount}) + + diff --git a/config/kube.py b/config/kube.py index a2dbeeffb..706a5ab26 100644 --- a/config/kube.py +++ b/config/kube.py @@ -25,7 +25,7 @@ def _update_kube_server(db, field, val): def_data = { KUBE_SERVER_IP: "", KUBE_SERVER_PORT: "6443", - KUBE_SERVER_INSECURE: "False", + KUBE_SERVER_INSECURE: "True", KUBE_SERVER_DISABLE: "False" } for f in def_data: diff --git a/config/main.py b/config/main.py index f6ad1aa04..539f5427d 100644 --- a/config/main.py +++ b/config/main.py @@ -12,15 +12,19 @@ import sys import time import itertools +import copy +import tempfile from collections import OrderedDict -from generic_config_updater.generic_updater import GenericUpdater, ConfigFormat +from generic_config_updater.generic_updater import GenericUpdater, ConfigFormat, extract_scope +from generic_config_updater.gu_common import HOST_NAMESPACE, GenericConfigUpdaterError from minigraph import parse_device_desc_xml, minigraph_encoder from natsort import natsorted from portconfig import get_child_ports from socket import AF_INET, AF_INET6 from sonic_py_common import device_info, multi_asic from sonic_py_common.interface import get_interface_table_name, get_port_table_name, get_intf_longname +from sonic_yang_cfg_generator import SonicYangCfgDbGenerator from utilities_common import util_base from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector from utilities_common.db import Db @@ -35,6 +39,7 @@ from . import chassis_modules from . import console from . import feature +from . import fabric from . import flow_counters from . import kdump from . import kube @@ -43,7 +48,7 @@ from . import vlan from . import vxlan from . import plugins -from .config_mgmt import ConfigMgmtDPB +from .config_mgmt import ConfigMgmtDPB, ConfigMgmt from . import mclag # mock masic APIs for unit test @@ -129,6 +134,14 @@ def read_json_file(fileName): raise Exception(str(e)) return result +# write given JSON file +def write_json_file(json_input, fileName): + try: + with open(fileName, 'w') as f: + json.dump(json_input, f, indent=4) + except Exception as e: + raise Exception(str(e)) + def _get_breakout_options(ctx, args, incomplete): """ Provides dynamic mode option as per user argument i.e. interface name """ all_mode_options = [] @@ -365,6 +378,19 @@ def get_interface_ipaddresses(config_db, interface_name): return ipaddresses +def is_vrf_exists(config_db, vrf_name): + """Check if VRF exists + """ + keys = config_db.get_keys("VRF") + if vrf_name in keys: + return True + elif vrf_name == "mgmt": + entry = config_db.get_entry("MGMT_VRF_CONFIG", "vrf_global") + if entry and entry.get("mgmtVrfEnabled") == "true": + return True + + return False + def is_interface_bind_to_vrf(config_db, interface_name): """Get interface if bind to vrf or not """ @@ -638,7 +664,28 @@ def _clear_cbf(): config_db.delete_table(cbf_table) -def _clear_qos(): +def _wait_until_clear(tables, interval=0.5, timeout=30, verbose=False): + start = time.time() + empty = False + app_db = SonicV2Connector(host='127.0.0.1') + app_db.connect(app_db.APPL_DB) + + while not empty and time.time() - start < timeout: + non_empty_table_count = 0 + for table in tables: + keys = app_db.keys(app_db.APPL_DB, table) + if keys: + non_empty_table_count += 1 + if verbose: + click.echo("Some entries matching {} still exist: {}".format(table, keys[0])) + time.sleep(interval) + empty = (non_empty_table_count == 0) + if not empty: + click.echo("Operation not completed successfully, please save and reload configuration.") + return empty + + +def _clear_qos(delay=False, verbose=False): QOS_TABLE_NAMES = [ 'PORT_QOS_MAP', 'QUEUE', @@ -674,6 +721,11 @@ def _clear_qos(): config_db.connect() for qos_table in QOS_TABLE_NAMES: config_db.delete_table(qos_table) + if delay: + device_metadata = config_db.get_entry('DEVICE_METADATA', 'localhost') + # Traditional buffer manager do not remove buffer tables in any case, no need to wait. + timeout = 120 if device_metadata and device_metadata.get('buffer_model') == 'dynamic' else 0 + _wait_until_clear(["BUFFER_*_TABLE:*", "BUFFER_*_SET"], interval=0.5, timeout=timeout, verbose=verbose) def _get_sonic_generated_services(num_asic): if not os.path.isfile(SONIC_GENERATED_SERVICE_PATH): @@ -734,24 +786,27 @@ def _stop_services(): def _get_sonic_services(): - out = clicommon.run_command("systemctl list-dependencies --plain sonic.target | sed '1d'", return_cmd=True) + out, _ = clicommon.run_command("systemctl list-dependencies --plain sonic.target | sed '1d'", return_cmd=True) return (unit.strip() for unit in out.splitlines()) -def _get_delayed_sonic_services(): - rc1 = clicommon.run_command("systemctl list-dependencies --plain sonic-delayed.target | sed '1d'", return_cmd=True) - rc2 = clicommon.run_command("systemctl is-enabled {}".format(rc1.replace("\n", " ")), return_cmd=True) +def _get_delayed_sonic_units(get_timers=False): + rc1, _ = clicommon.run_command("systemctl list-dependencies --plain sonic-delayed.target | sed '1d'", return_cmd=True) + rc2, _ = clicommon.run_command("systemctl is-enabled {}".format(rc1.replace("\n", " ")), return_cmd=True) timer = [line.strip() for line in rc1.splitlines()] state = [line.strip() for line in rc2.splitlines()] services = [] for unit in timer: if state[timer.index(unit)] == "enabled": - services.append(unit.rstrip(".timer")) + if not get_timers: + services.append(re.sub('\.timer$', '', unit, 1)) + else: + services.append(unit) return services def _reset_failed_services(): - for service in itertools.chain(_get_sonic_services(), _get_delayed_sonic_services()): + for service in itertools.chain(_get_sonic_services(), _get_delayed_sonic_units()): clicommon.run_command("systemctl reset-failed {}".format(service)) @@ -770,22 +825,18 @@ def _restart_services(): click.echo("Reloading Monit configuration ...") clicommon.run_command("sudo monit reload") -def _get_delay_timers(): - out = clicommon.run_command("systemctl list-dependencies sonic-delayed.target --plain |sed '1d'", return_cmd=True) - return [timer.strip() for timer in out.splitlines()] - def _delay_timers_elapsed(): - for timer in _get_delay_timers(): - out = clicommon.run_command("systemctl show {} --property=LastTriggerUSecMonotonic --value".format(timer), return_cmd=True) + for timer in _get_delayed_sonic_units(get_timers=True): + out, _ = clicommon.run_command("systemctl show {} --property=LastTriggerUSecMonotonic --value".format(timer), return_cmd=True) if out.strip() == "0": return False return True def _per_namespace_swss_ready(service_name): - out = clicommon.run_command("systemctl show {} --property ActiveState --value".format(service_name), return_cmd=True) + out, _ = clicommon.run_command("systemctl show {} --property ActiveState --value".format(service_name), return_cmd=True) if out.strip() != "active": return False - out = clicommon.run_command("systemctl show {} --property ActiveEnterTimestampMonotonic --value".format(service_name), return_cmd=True) + out, _ = clicommon.run_command("systemctl show {} --property ActiveEnterTimestampMonotonic --value".format(service_name), return_cmd=True) swss_up_time = float(out.strip())/1000000 now = time.monotonic() if (now - swss_up_time > 120): @@ -810,7 +861,7 @@ def _swss_ready(): return True def _is_system_starting(): - out = clicommon.run_command("sudo systemctl is-system-running", return_cmd=True) + out, _ = clicommon.run_command("sudo systemctl is-system-running", return_cmd=True) return out.strip() == "starting" def interface_is_in_vlan(vlan_member_table, interface_name): @@ -911,6 +962,7 @@ def cli_sroute_to_config(ctx, command_str, strict_nh = True): nexthop_str = None config_entry = {} vrf_name = "" + config_db = ctx.obj['config_db'] if "nexthop" in command_str: idx = command_str.index("nexthop") @@ -923,10 +975,13 @@ def cli_sroute_to_config(ctx, command_str, strict_nh = True): if 'prefix' in prefix_str and 'vrf' in prefix_str: # prefix_str: ['prefix', 'vrf', Vrf-name, ip] vrf_name = prefix_str[2] + if not is_vrf_exists(config_db, vrf_name): + ctx.fail("VRF %s does not exist!"%(vrf_name)) ip_prefix = prefix_str[3] elif 'prefix' in prefix_str: # prefix_str: ['prefix', ip] ip_prefix = prefix_str[1] + vrf_name = "default" else: ctx.fail("prefix is not in pattern!") @@ -934,6 +989,8 @@ def cli_sroute_to_config(ctx, command_str, strict_nh = True): if 'nexthop' in nexthop_str and 'vrf' in nexthop_str: # nexthop_str: ['nexthop', 'vrf', Vrf-name, ip] config_entry["nexthop"] = nexthop_str[3] + if not is_vrf_exists(config_db, nexthop_str[2]): + ctx.fail("VRF %s does not exist!"%(nexthop_str[2])) config_entry["nexthop-vrf"] = nexthop_str[2] elif 'nexthop' in nexthop_str and 'dev' in nexthop_str: # nexthop_str: ['nexthop', 'dev', ifname] @@ -984,38 +1041,6 @@ def update_sonic_environment(): display_cmd=True ) -def cache_arp_entries(): - success = True - cache_dir = '/host/config-reload' - click.echo('Caching ARP table to {}'.format(cache_dir)) - - if not os.path.exists(cache_dir): - os.mkdir(cache_dir) - - arp_cache_cmd = '/usr/local/bin/fast-reboot-dump.py -t {}'.format(cache_dir) - cache_proc = subprocess.Popen(arp_cache_cmd, shell=True, text=True, stdout=subprocess.PIPE) - _, cache_err = cache_proc.communicate() - if cache_err: - click.echo("Could not cache ARP and FDB info prior to reloading") - success = False - - if not cache_err: - fdb_cache_file = os.path.join(cache_dir, 'fdb.json') - arp_cache_file = os.path.join(cache_dir, 'arp.json') - fdb_filter_cmd = '/usr/local/bin/filter_fdb_entries -f {} -a {} -c /etc/sonic/configdb.json'.format(fdb_cache_file, arp_cache_file) - filter_proc = subprocess.Popen(fdb_filter_cmd, shell=True, text=True, stdout=subprocess.PIPE) - _, filter_err = filter_proc.communicate() - if filter_err: - click.echo("Could not filter FDB entries prior to reloading") - success = False - - # If we are able to successfully cache ARP table info, signal SWSS to restore from our cache - # by creating /host/config-reload/needs-restore - if success: - restore_flag_file = os.path.join(cache_dir, 'needs-restore') - open(restore_flag_file, 'w').close() - return success - def remove_router_interface_ip_address(config_db, interface_name, ipaddress_to_remove): table_name = get_interface_table_name(interface_name) keys = config_db.get_keys(table_name) @@ -1045,6 +1070,8 @@ def validate_ipv4_address(ctx, param, ip_addr): def validate_gre_type(ctx, _, value): """A validator for validating input gre_type """ + if value is None: + return None try: base = 10 if value.lower().startswith('0x'): @@ -1056,6 +1083,58 @@ def validate_gre_type(ctx, _, value): except ValueError: raise click.UsageError("{} is not a valid GRE type".format(value)) +# Function to apply patch for a single ASIC. +def apply_patch_for_scope(scope_changes, results, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_path): + scope, changes = scope_changes + # Replace localhost to DEFAULT_NAMESPACE which is db definition of Host + if scope.lower() == HOST_NAMESPACE or scope == "": + scope = multi_asic.DEFAULT_NAMESPACE + + scope_for_log = scope if scope else HOST_NAMESPACE + try: + # Call apply_patch with the ASIC-specific changes and predefined parameters + GenericUpdater(scope=scope).apply_patch(jsonpatch.JsonPatch(changes), + config_format, + verbose, + dry_run, + ignore_non_yang_tables, + ignore_path) + results[scope_for_log] = {"success": True, "message": "Success"} + log.log_notice(f"'apply-patch' executed successfully for {scope_for_log} by {changes}") + except Exception as e: + results[scope_for_log] = {"success": False, "message": str(e)} + log.log_error(f"'apply-patch' executed failed for {scope_for_log} by {changes} due to {str(e)}") + + +def validate_patch(patch): + try: + command = ["show", "runningconfiguration", "all"] + proc = subprocess.Popen(command, text=True, stdout=subprocess.PIPE) + all_running_config, returncode = proc.communicate() + if returncode: + log.log_notice(f"Fetch all runningconfiguration failed as output:{all_running_config}") + return False + + # Structure validation and simulate apply patch. + all_target_config = patch.apply(json.loads(all_running_config)) + + # Verify target config by YANG models + target_config = all_target_config.pop(HOST_NAMESPACE) if multi_asic.is_multi_asic() else all_target_config + target_config.pop("bgpraw", None) + if not SonicYangCfgDbGenerator().validate_config_db_json(target_config): + return False + + if multi_asic.is_multi_asic(): + for asic in multi_asic.get_namespace_list(): + target_config = all_target_config.pop(asic) + target_config.pop("bgpraw", None) + if not SonicYangCfgDbGenerator().validate_config_db_json(target_config): + return False + + return True + except Exception as e: + raise GenericConfigUpdaterError(f"Validate json patch: {patch} failed due to:{e}") + # This is our main entrypoint - the main 'config' command @click.group(cls=clicommon.AbbreviationGroup, context_settings=CONTEXT_SETTINGS) @click.pass_context @@ -1076,6 +1155,10 @@ def config(ctx): print("Caught an exception: " + str(e)) raise click.Abort() + if asic_type == 'cisco-8000': + from sonic_platform.cli.cisco import cisco + platform.add_command(cisco) + # Load database config files load_db_config() @@ -1091,6 +1174,7 @@ def config(ctx): config.add_command(aaa.radius) config.add_command(chassis_modules.chassis) config.add_command(console.console) +config.add_command(fabric.fabric) config.add_command(feature.feature) config.add_command(flow_counters.flowcnt_route) config.add_command(kdump.kdump) @@ -1249,12 +1333,51 @@ def apply_patch(ctx, patch_file_path, format, dry_run, ignore_non_yang_tables, i patch_as_json = json.loads(text) patch = jsonpatch.JsonPatch(patch_as_json) + if not validate_patch(patch): + raise GenericConfigUpdaterError(f"Failed validating patch:{patch}") + + results = {} config_format = ConfigFormat[format.upper()] - GenericUpdater().apply_patch(patch, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_path) + # Initialize a dictionary to hold changes categorized by scope + changes_by_scope = {} + + # Iterate over each change in the JSON Patch + for change in patch: + scope, modified_path = extract_scope(change["path"]) + + # Modify the 'path' in the change to remove the scope + change["path"] = modified_path + + # Check if the scope is already in our dictionary, if not, initialize it + if scope not in changes_by_scope: + changes_by_scope[scope] = [] + + # Add the modified change to the appropriate list based on scope + changes_by_scope[scope].append(change) + + # Empty case to force validate YANG model. + if not changes_by_scope: + asic_list = [multi_asic.DEFAULT_NAMESPACE] + if multi_asic.is_multi_asic(): + asic_list.extend(multi_asic.get_namespace_list()) + for asic in asic_list: + changes_by_scope[asic] = [] + + # Apply changes for each scope + for scope_changes in changes_by_scope.items(): + apply_patch_for_scope(scope_changes, results, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_path) + + # Check if any updates failed + failures = [scope for scope, result in results.items() if not result['success']] + + if failures: + failure_messages = '\n'.join([f"- {failed_scope}: {results[failed_scope]['message']}" for failed_scope in failures]) + raise GenericConfigUpdaterError(f"Failed to apply patch on the following scopes:\n{failure_messages}") + log.log_notice(f"Patch applied successfully for {patch}.") click.secho("Patch applied successfully.", fg="cyan", underline=True) except Exception as ex: - click.secho("Failed to apply patch", fg="red", underline=True, err=True) + click.secho("Failed to apply patch due to: {}".format(ex), fg="red", underline=True, err=True) ctx.fail(ex) @config.command() @@ -1364,27 +1487,27 @@ def list_checkpoints(ctx, verbose): @click.option('-y', '--yes', is_flag=True) @click.option('-l', '--load-sysinfo', is_flag=True, help='load system default information (mac, portmap etc) first.') @click.option('-n', '--no_service_restart', default=False, is_flag=True, help='Do not restart docker services') -@click.option('-d', '--disable_arp_cache', default=False, is_flag=True, help='Do not cache ARP table before reloading (applies to dual ToR systems only)') @click.option('-f', '--force', default=False, is_flag=True, help='Force config reload without system checks') @click.option('-t', '--file_format', default='config_db',type=click.Choice(['config_yang', 'config_db']),show_default=True,help='specify the file format') @click.argument('filename', required=False) @clicommon.pass_db -def reload(db, filename, yes, load_sysinfo, no_service_restart, disable_arp_cache, force, file_format): +def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_format): """Clear current configuration and import a previous saved config DB dump file. : Names of configuration file(s) to load, separated by comma with no spaces in between """ + CONFIG_RELOAD_NOT_READY = 1 if not force and not no_service_restart: if _is_system_starting(): click.echo("System is not up. Retry later or use -f to avoid system checks") - return + sys.exit(CONFIG_RELOAD_NOT_READY) if not _delay_timers_elapsed(): click.echo("Relevant services are not up. Retry later or use -f to avoid system checks") - return + sys.exit(CONFIG_RELOAD_NOT_READY) if not _swss_ready(): click.echo("SwSS container is not ready. Retry later or use -f to avoid system checks") - return + sys.exit(CONFIG_RELOAD_NOT_READY) if filename is None: message = 'Clear current config and reload config in {} format from the default config file(s) ?'.format(file_format) @@ -1404,11 +1527,6 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, disable_arp_cach if multi_asic.is_multi_asic() and file_format == 'config_db': num_cfg_file += num_asic - # Remove cached PG drop counters data - dropstat_dir_prefix = '/tmp/dropstat' - command = "rm -rf {}-*".format(dropstat_dir_prefix) - clicommon.run_command(command, display_cmd=True) - # If the user give the filename[s], extract the file names. if filename is not None: cfg_files = filename.split(',') @@ -1417,13 +1535,6 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, disable_arp_cach click.echo("Input {} config file(s) separated by comma for multiple files ".format(num_cfg_file)) return - # For dual ToR devices, cache ARP and FDB info - localhost_metadata = db.cfgdb.get_table('DEVICE_METADATA')['localhost'] - cache_arp_table = not disable_arp_cache and 'subtype' in localhost_metadata and localhost_metadata['subtype'].lower() == 'dualtor' - - if cache_arp_table: - cache_arp_entries() - #Stop services before config push if not no_service_restart: log.log_info("'reload' stopping services...") @@ -1443,6 +1554,12 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, disable_arp_cach # Get the file from user input, else take the default file /etc/sonic/config_db{NS_id}.json if cfg_files: file = cfg_files[inst+1] + # Save to tmpfile in case of stdin input which can only be read once + if file == "/dev/stdin": + file_input = read_json_file(file) + (_, tmpfname) = tempfile.mkstemp(dir="/tmp", suffix="_configReloadStdin") + write_json_file(file_input, tmpfname) + file = tmpfname else: if file_format == 'config_db': if namespace is None: @@ -1458,6 +1575,19 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, disable_arp_cach click.echo("The config file {} doesn't exist".format(file)) continue + if file_format == 'config_db': + file_input = read_json_file(file) + + platform = file_input.get("DEVICE_METADATA", {}).\ + get(HOST_NAMESPACE, {}).get("platform") + mac = file_input.get("DEVICE_METADATA", {}).\ + get(HOST_NAMESPACE, {}).get("mac") + + if not platform or not mac: + log.log_warning("Input file does't have platform or mac. platform: {}, mac: {}" + .format(None if platform is None else platform, None if mac is None else mac)) + load_sysinfo = True + if load_sysinfo: try: command = "{} -j {} -v DEVICE_METADATA.localhost.hwsku".format(SONIC_CFGGEN_PATH, file) @@ -1519,6 +1649,13 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, disable_arp_cach clicommon.run_command(command, display_cmd=True) client.set(config_db.INIT_INDICATOR, 1) + if os.path.exists(file) and file.endswith("_configReloadStdin"): + # Remove tmpfile + try: + os.remove(file) + except OSError as e: + click.echo("An error occurred while removing the temporary file: {}".format(str(e)), err=True) + # Migrate DB contents to latest version db_migrator='/usr/local/bin/db_migrator.py' if os.path.isfile(db_migrator) and os.access(db_migrator, os.X_OK): @@ -1551,24 +1688,36 @@ def load_mgmt_config(filename): config_data = parse_device_desc_xml(filename) hostname = config_data['DEVICE_METADATA']['localhost']['hostname'] _change_hostname(hostname) - mgmt_conf = netaddr.IPNetwork(list(config_data['MGMT_INTERFACE'].keys())[0][1]) - gw_addr = list(config_data['MGMT_INTERFACE'].values())[0]['gwaddr'] - command = "ifconfig eth0 {} netmask {}".format(str(mgmt_conf.ip), str(mgmt_conf.netmask)) - clicommon.run_command(command, display_cmd=True) - command = "ip route add default via {} dev eth0 table default".format(gw_addr) - clicommon.run_command(command, display_cmd=True, ignore_error=True) - command = "ip rule add from {} table default".format(str(mgmt_conf.ip)) - clicommon.run_command(command, display_cmd=True, ignore_error=True) - command = "[ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid" - clicommon.run_command(command, display_cmd=True, ignore_error=True) + for key in list(config_data['MGMT_INTERFACE'].keys()): + # key: (eth0, ipprefix) + # value: { gwaddr: ip } + mgmt_conf = netaddr.IPNetwork(key[1]) + gw_addr = config_data['MGMT_INTERFACE'][key]['gwaddr'] + if mgmt_conf.version == 4: + command = "ifconfig eth0 {} netmask {}".format(str(mgmt_conf.ip), str(mgmt_conf.netmask)) + clicommon.run_command(command, display_cmd=True) + else: + command = "ifconfig eth0 add {}".format(str(mgmt_conf)) + # Ignore error for IPv6 configuration command due to it not allows config the same IP twice + clicommon.run_command(command, display_cmd=True, ignore_error=True) + command = "ip{} route add default via {} dev eth0 table default".format(" -6" if mgmt_conf.version == 6 else "", gw_addr) + clicommon.run_command(command, display_cmd=True, ignore_error=True) + command = "ip{} rule add from {} table default".format(" -6" if mgmt_conf.version == 6 else "", str(mgmt_conf.ip)) + clicommon.run_command(command, display_cmd=True, ignore_error=True) + if len(config_data['MGMT_INTERFACE'].keys()) > 0: + command = "[ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid" + clicommon.run_command(command, display_cmd=True, ignore_error=True) click.echo("Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`.") @config.command("load_minigraph") @click.option('-y', '--yes', is_flag=True, callback=_abort_if_false, expose_value=False, prompt='Reload config from minigraph?') @click.option('-n', '--no_service_restart', default=False, is_flag=True, help='Do not restart docker services') +@click.option('-t', '--traffic_shift_away', default=False, is_flag=True, help='Keep device in maintenance with TSA') +@click.option('-o', '--override_config', default=False, is_flag=True, help='Enable config override. Proceed with default path.') +@click.option('-p', '--golden_config_path', help='Provide golden config path to override. Use with --override_config') @clicommon.pass_db -def load_minigraph(db, no_service_restart): +def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, golden_config_path): """Reconfigure based on minigraph.""" log.log_info("'load_minigraph' executing...") @@ -1617,7 +1766,7 @@ def load_minigraph(db, no_service_restart): click.secho("Failed to load port_config.json, Error: {}".format(str(e)), fg='magenta') # generate QoS and Buffer configs - clicommon.run_command("config qos reload --no-dynamic-buffer", display_cmd=True) + clicommon.run_command("config qos reload --no-dynamic-buffer --no-delay", display_cmd=True) # get the device type device_type = _get_device_type() @@ -1634,9 +1783,33 @@ def load_minigraph(db, no_service_restart): cfggen_namespace_option = " -n {}".format(namespace) clicommon.run_command(db_migrator + ' -o set_version' + cfggen_namespace_option) + # Keep device isolated with TSA + if traffic_shift_away: + clicommon.run_command("TSA", display_cmd=True) + if override_config: + log.log_warning("Golden configuration may override System Maintenance state. Please execute TSC to check the current System mode") + click.secho("[WARNING] Golden configuration may override Traffic-shift-away state. Please execute TSC to check the current System mode") + # Load golden_config_db.json - if os.path.isfile(DEFAULT_GOLDEN_CONFIG_DB_FILE): - override_config_by(DEFAULT_GOLDEN_CONFIG_DB_FILE) + if override_config: + if golden_config_path is None: + golden_config_path = DEFAULT_GOLDEN_CONFIG_DB_FILE + if not os.path.isfile(golden_config_path): + click.secho("Cannot find '{}'!".format(golden_config_path), + fg='magenta') + raise click.Abort() + override_config_by(golden_config_path) + + # Invoke platform script if available before starting the services + platform_path, _ = device_info.get_paths_to_platform_and_hwsku_dirs() + platform_mg_plugin = platform_path + '/plugins/platform_mg_post_check' + if os.path.isfile(platform_mg_plugin): + click.echo("Running Platform plugin ............!") + proc = subprocess.Popen([platform_mg_plugin], text=True, stdout=subprocess.PIPE) + proc.communicate() + if proc.returncode != 0: + click.echo("Platform plugin failed! retruncode {}".format(proc.returncode)) + raise click.Abort() # We first run "systemctl reset-failed" to remove the "failed" # status from all services before we attempt to restart them @@ -1694,6 +1867,47 @@ def override_config_by(golden_config_path): return +# This funtion is to generate sysinfo if that is missing in config_input. +# It will keep the same with sysinfo in cur_config if sysinfo exists. +# Otherwise it will modify config_input with generated sysinfo. +def generate_sysinfo(cur_config, config_input, ns=None): + # Generate required sysinfo for Golden Config. + device_metadata = config_input.get('DEVICE_METADATA') + + if not device_metadata or 'localhost' not in device_metadata: + return + + mac = None + platform = None + cur_device_metadata = cur_config.get('DEVICE_METADATA') + + # Reuse current config's mac and platform. Generate if absent + if cur_device_metadata is not None: + mac = cur_device_metadata.get('localhost', {}).get('mac') + platform = cur_device_metadata.get('localhost', {}).get('platform') + + if not mac: + if ns: + asic_role = device_metadata.get('localhost', {}).get('sub_role') + switch_type = device_metadata.get('localhost', {}).get('switch_type') + + if ((switch_type is not None and switch_type.lower() == "chassis-packet") or + (asic_role is not None and asic_role.lower() == "backend")): + mac = device_info.get_system_mac(namespace=ns) + else: + mac = device_info.get_system_mac() + else: + mac = device_info.get_system_mac() + + if not platform: + platform = device_info.get_platform() + + device_metadata['localhost']['mac'] = mac + device_metadata['localhost']['platform'] = platform + + return + + # # 'override-config-table' command ('config override-config-table ...') # @@ -1721,29 +1935,89 @@ def override_config_table(db, input_config_db, dry_run): fg='magenta') sys.exit(1) - config_db = db.cfgdb + cfgdb_clients = db.cfgdb_clients - if dry_run: + for ns, config_db in cfgdb_clients.items(): # Read config from configDB current_config = config_db.get_config() # Serialize to the same format as json input sonic_cfggen.FormatConverter.to_serialized(current_config) - # Override current config with golden config - for table in config_input: - current_config[table] = config_input[table] - print(json.dumps(current_config, sort_keys=True, - indent=4, cls=minigraph_encoder)) - else: - # Deserialized golden config to DB recognized format - sonic_cfggen.FormatConverter.to_deserialized(config_input) - # Delete table from DB then mod_config to apply golden config - click.echo("Removing configDB overriden table first ...") - for table in config_input: - config_db.delete_table(table) - click.echo("Overriding input config to configDB ...") - data = sonic_cfggen.FormatConverter.output_to_db(config_input) - config_db.mod_config(data) - click.echo("Overriding completed. No service is restarted.") + ns_config_input = None + if multi_asic.is_multi_asic() and len(config_input): + # Golden Config will use "localhost" to represent host name + if ns == DEFAULT_NAMESPACE: + if HOST_NAMESPACE in config_input.keys(): + ns_config_input = config_input[HOST_NAMESPACE] + else: + click.secho("Wrong config format! 'localhost' not found in host config! cannot override.. abort") + sys.exit(1) + else: + if ns in config_input.keys(): + ns_config_input = config_input[ns] + else: + click.echo("Override config not present for {}".format(ns)) + continue + if not ns_config_input: + # if ns_config_input is not defined, define it + # it could be single-asic dut, or config_input is empty + ns_config_input = config_input + # Generate sysinfo if missing in ns_config_input + generate_sysinfo(current_config, ns_config_input, ns) + updated_config = update_config(current_config, ns_config_input) + + yang_enabled = device_info.is_yang_config_validation_enabled(config_db) + if yang_enabled: + # The ConfigMgmt will load YANG and running + # config during initialization. + try: + cm = ConfigMgmt(configdb=config_db) + cm.validateConfigData() + except Exception as ex: + click.secho("Failed to validate running config. Error: {}".format(ex), fg="magenta") + sys.exit(1) + + # Validate input config + validate_config_by_cm(cm, ns_config_input, "config_input") + # Validate updated whole config + validate_config_by_cm(cm, updated_config, "updated_config") + + if dry_run: + print(json.dumps(updated_config, sort_keys=True, + indent=4, cls=minigraph_encoder)) + else: + override_config_db(config_db, ns_config_input) + + +def validate_config_by_cm(cm, config_json, jname): + tmp_config_json = copy.deepcopy(config_json) + try: + cm.loadData(tmp_config_json) + cm.validateConfigData() + except Exception as ex: + click.secho("Failed to validate {}. Error: {}".format(jname, ex), fg="magenta") + sys.exit(1) + + +def update_config(current_config, config_input): + updated_config = copy.deepcopy(current_config) + # Override current config with golden config + for table in config_input: + updated_config[table] = config_input[table] + return updated_config + + +def override_config_db(config_db, config_input): + # Deserialized golden config to DB recognized format + sonic_cfggen.FormatConverter.to_deserialized(config_input) + # Delete table from DB then mod_config to apply golden config + click.echo("Removing configDB overriden table first ...") + for table in config_input: + config_db.delete_table(table) + click.echo("Overriding input config to configDB ...") + data = sonic_cfggen.FormatConverter.output_to_db(config_input) + config_db.mod_config(data) + click.echo("Overriding completed. No service is restarted.") + # # 'hostname' command @@ -1851,6 +2125,11 @@ def remove_portchannel(ctx, portchannel_name): if is_portchannel_present_in_db(db, portchannel_name) is False: ctx.fail("{} is not present.".format(portchannel_name)) + # Dont let to remove port channel if vlan membership exists + for k,v in db.get_table('VLAN_MEMBER'): + if v == portchannel_name: + ctx.fail("{} has vlan {} configured, remove vlan membership to proceed".format(portchannel_name, str(k))) + if len([(k, v) for k, v in db.get_table('PORTCHANNEL_MEMBER') if k == portchannel_name]) != 0: click.echo("Error: Portchannel {} contains members. Remove members before deleting Portchannel!".format(portchannel_name)) else: @@ -1892,6 +2171,14 @@ def add_portchannel_member(ctx, portchannel_name, port_name): ctx.fail(" {} has ip address configured".format(port_name)) return + for key in db.get_keys('VLAN_SUB_INTERFACE'): + if type(key) == tuple: + continue + intf = key.split(VLAN_SUB_INTERFACE_SEPARATOR)[0] + parent_intf = get_intf_longname(intf) + if parent_intf == port_name: + ctx.fail(" {} has subinterfaces configured".format(port_name)) + # Dont allow a port to be member of port channel if it is configured as a VLAN member for k,v in db.get_table('VLAN_MEMBER'): if v == port_name: @@ -2025,7 +2312,7 @@ def gather_session_info(session_info, policer, queue, src_port, direction): if policer: session_info['policer'] = policer - if queue: + if queue is not None: session_info['queue'] = queue if src_port: @@ -2051,7 +2338,7 @@ def add_erspan(session_name, src_ip, dst_ip, dscp, ttl, gre_type, queue, policer "ttl": ttl } - if gre_type: + if gre_type is not None: session_info['gre_type'] = gre_type session_info = gather_session_info(session_info, policer, queue, src_port, direction) @@ -2319,10 +2606,11 @@ def qos(ctx): pass @qos.command('clear') -def clear(): +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def clear(verbose): """Clear QoS configuration""" log.log_info("'qos clear' executing...") - _clear_qos() + _clear_qos(verbose=verbose) def _update_buffer_calculation_model(config_db, model): """Update the buffer calculation model into CONFIG_DB""" @@ -2338,6 +2626,8 @@ def _update_buffer_calculation_model(config_db, model): @click.pass_context @click.option('--ports', is_flag=False, required=False, help="List of ports that needs to be updated") @click.option('--no-dynamic-buffer', is_flag=True, help="Disable dynamic buffer calculation") +@click.option('--no-delay', is_flag=True, hidden=True) +@click.option('--verbose', is_flag=True, help="Enable verbose output") @click.option( '--json-data', type=click.STRING, help="json string with additional data, valid with --dry-run option" @@ -2346,7 +2636,7 @@ def _update_buffer_calculation_model(config_db, model): '--dry_run', type=click.STRING, help="Dry run, writes config to the given file" ) -def reload(ctx, no_dynamic_buffer, dry_run, json_data, ports): +def reload(ctx, no_dynamic_buffer, no_delay, dry_run, json_data, ports, verbose): """Reload QoS configuration""" if ports: log.log_info("'qos reload --ports {}' executing...".format(ports)) @@ -2354,7 +2644,8 @@ def reload(ctx, no_dynamic_buffer, dry_run, json_data, ports): return log.log_info("'qos reload' executing...") - _clear_qos() + if not dry_run: + _clear_qos(delay = not no_delay, verbose=verbose) _, hwsku_path = device_info.get_paths_to_platform_and_hwsku_dirs() sonic_version_file = device_info.get_sonic_version_file() @@ -2499,7 +2790,7 @@ def _qos_update_ports(ctx, ports, dry_run, json_data): command = "{} {} {} -t {},config-db -t {},config-db -y {} --print-data".format( SONIC_CFGGEN_PATH, cmd_ns, from_db, buffer_template_file, qos_template_file, sonic_version_file ) - jsonstr = clicommon.run_command(command, display_cmd=False, return_cmd=True) + jsonstr, _ = clicommon.run_command(command, display_cmd=False, return_cmd=True) jsondict = json.loads(jsonstr) port_table = jsondict.get('PORT') @@ -3456,8 +3747,12 @@ def neighbor(ipaddr_or_hostname, verbose): if _change_bgp_session_status(config_db, ipaddr_or_hostname, 'down', verbose): found_neighbor = True + device_metadata = config_db.get_entry('DEVICE_METADATA', 'localhost') if not found_neighbor: - click.get_current_context().fail("Could not locate neighbor '{}'".format(ipaddr_or_hostname)) + if device_metadata['type'] == 'SpineRouter': + click.echo("Could not locate neighbor '{}'".format(ipaddr_or_hostname)) + else: + click.get_current_context().fail("Could not locate neighbor '{}'".format(ipaddr_or_hostname)) @bgp.group(cls=clicommon.AbbreviationGroup) def startup(): @@ -3511,8 +3806,12 @@ def neighbor(ipaddr_or_hostname, verbose): if _change_bgp_session_status(config_db, ipaddr_or_hostname, 'up', verbose): found_neighbor = True + device_metadata = config_db.get_entry('DEVICE_METADATA', 'localhost') if not found_neighbor: - click.get_current_context().fail("Could not locate neighbor '{}'".format(ipaddr_or_hostname)) + if device_metadata['type'] == 'SpineRouter': + click.echo("Could not locate neighbor '{}'".format(ipaddr_or_hostname)) + else: + click.get_current_context().fail("Could not locate neighbor '{}'".format(ipaddr_or_hostname)) # # 'remove' subgroup ('config bgp remove ...') @@ -3674,6 +3973,36 @@ def speed(ctx, interface_name, interface_speed, verbose): command += " -vv" clicommon.run_command(command, display_cmd=verbose) +# +# 'link-training' subcommand +# + +@interface.command() +@click.pass_context +@click.argument('interface_name', metavar='', required=True) +@click.argument('mode', metavar='', required=True, type=click.Choice(["on", "off"])) +@click.option('-v', '--verbose', is_flag=True, help="Enable verbose output") +def link_training(ctx, interface_name, mode, verbose): + """Set interface link training mode""" + # Get the config_db connector + config_db = ctx.obj['config_db'] + + if clicommon.get_interface_naming_mode() == "alias": + interface_name = interface_alias_to_name(config_db, interface_name) + if interface_name is None: + ctx.fail("'interface_name' is None!") + + log.log_info("'interface link-training {} {}' executing...".format(interface_name, mode)) + + if ctx.obj['namespace'] is DEFAULT_NAMESPACE: + command = "portconfig -p {} -lt {}".format(interface_name, mode) + else: + command = "portconfig -p {} -lt {} -n {}".format(interface_name, mode, ctx.obj['namespace']) + + if verbose: + command += " -vv" + clicommon.run_command(command, display_cmd=verbose) + # # 'autoneg' subcommand # @@ -3857,28 +4186,12 @@ def breakout(ctx, interface_name, mode, verbose, force_remove_dependencies, load click.secho("[ERROR] port_dict is None!", fg='red') raise click.Abort() - """ Special Case: Dont delete those ports where the current mode and speed of the parent port - remains unchanged to limit the traffic impact """ - - click.secho("\nAfter running Logic to limit the impact", fg="cyan", underline=True) - matched_items = [intf for intf in del_intf_dict if intf in add_intf_dict and del_intf_dict[intf] == add_intf_dict[intf]] - - # Remove the interface which remains unchanged from both del_intf_dict and add_intf_dict - for item in matched_items: - del_intf_dict.pop(item) - add_intf_dict.pop(item) - # validate all del_ports before calling breakOutPort for intf in del_intf_dict.keys(): if not interface_name_is_valid(config_db, intf): click.secho("[ERROR] Interface name {} is invalid".format(intf)) raise click.Abort() - click.secho("\nFinal list of ports to be deleted : \n {} \nFinal list of ports to be added : \n {}".format(json.dumps(del_intf_dict, indent=4), json.dumps(add_intf_dict, indent=4), fg='green', blink=True)) - if not add_intf_dict: - click.secho("[ERROR] add_intf_dict is None or empty! No interfaces are there to be added", fg='red') - raise click.Abort() - port_dict = {} for intf in add_intf_dict: if intf in add_ports: @@ -3949,7 +4262,7 @@ def mgmt_ip_restart_services(): @interface.command() @click.pass_context @click.argument('interface_name', metavar='', required=True) -@click.argument('interface_mtu', metavar='', required=True) +@click.argument('interface_mtu', metavar='', required=True, type=click.IntRange(68, 9216)) @click.option('-v', '--verbose', is_flag=True, help="Enable verbose output") def mtu(ctx, interface_name, interface_mtu, verbose): """Set interface mtu""" @@ -4011,8 +4324,6 @@ def fec(ctx, interface_name, interface_fec, verbose): # Get the config_db connector config_db = ctx.obj['config_db'] - if interface_fec not in ["rs", "fc", "none"]: - ctx.fail("'fec not in ['rs', 'fc', 'none']!") if clicommon.get_interface_naming_mode() == "alias": interface_name = interface_alias_to_name(config_db, interface_name) if interface_name is None: @@ -4034,7 +4345,7 @@ def fec(ctx, interface_name, interface_fec, verbose): @interface.group(cls=clicommon.AbbreviationGroup) @click.pass_context def ip(ctx): - """Add or remove IP address""" + """Set IP interface attributes""" pass # @@ -4063,6 +4374,12 @@ def add(ctx, interface_name, ip_addr, gw): click.echo("Interface {} is a member of vlan\nAborting!".format(interface_name)) return + portchannel_member_table = config_db.get_table('PORTCHANNEL_MEMBER') + + if interface_is_in_portchannel(portchannel_member_table, interface_name): + ctx.fail("{} is configured as a member of portchannel." + .format(interface_name)) + try: ip_address = ipaddress.ip_interface(ip_addr) except ValueError as err: @@ -4156,7 +4473,8 @@ def remove(ctx, interface_name, ip_addr): remove_router_interface_ip_address(config_db, interface_name, ip_address) interface_addresses = get_interface_ipaddresses(config_db, interface_name) if len(interface_addresses) == 0 and is_interface_bind_to_vrf(config_db, interface_name) is False and get_intf_ipv6_link_local_mode(ctx, interface_name, table_name) != "enable": - config_db.set_entry(table_name, interface_name, None) + if table_name != "VLAN_SUB_INTERFACE": + config_db.set_entry(table_name, interface_name, None) if multi_asic.is_multi_asic(): command = "sudo ip netns exec {} ip neigh flush dev {} {}".format(ctx.obj['namespace'], interface_name, str(ip_address)) @@ -4164,6 +4482,32 @@ def remove(ctx, interface_name, ip_addr): command = "ip neigh flush dev {} {}".format(interface_name, str(ip_address)) clicommon.run_command(command) +# +# 'loopback-action' subcommand +# + +@ip.command() +@click.argument('interface_name', metavar='', required=True) +@click.argument('action', metavar='', required=True) +@click.pass_context +def loopback_action(ctx, interface_name, action): + """Set IP interface loopback action""" + config_db = ctx.obj['config_db'] + + if clicommon.get_interface_naming_mode() == "alias": + interface_name = interface_alias_to_name(config_db, interface_name) + if interface_name is None: + ctx.fail('Interface {} is invalid'.format(interface_name)) + + if not clicommon.is_interface_in_config_db(config_db, interface_name): + ctx.fail('Interface {} is not an IP interface'.format(interface_name)) + + allowed_actions = ['drop', 'forward'] + if action not in allowed_actions: + ctx.fail('Invalid action') + + table_name = get_interface_table_name(interface_name) + config_db.mod_entry(table_name, interface_name, {"loopback_action": action}) # # buffer commands and utilities @@ -4506,6 +4850,67 @@ def transceiver(ctx): """SFP transceiver configuration""" pass +# +# 'frequency' subcommand ('config interface transceiver frequency ...') +# +@transceiver.command() +@click.pass_context +@click.argument('interface_name', metavar='', required=True) +@click.argument('frequency', metavar='', required=True, type=int) +def frequency(ctx, interface_name, frequency): + """Set transciever (only for 400G-ZR) frequency""" + # Get the config_db connector + config_db = ctx.obj['config_db'] + + if clicommon.get_interface_naming_mode() == "alias": + interface_name = interface_alias_to_name(config_db, interface_name) + if interface_name is None: + ctx.fail("'interface_name' is None!") + + if interface_name_is_valid(config_db, interface_name) is False: + ctx.fail("Interface name is invalid. Please enter a valid interface name!!") + + log.log_info("{} Setting transceiver frequency {} GHz".format(interface_name, frequency)) + + if ctx.obj['namespace'] is DEFAULT_NAMESPACE: + command = "portconfig -p {} -F {}".format(interface_name, frequency) + else: + command = "portconfig -p {} -F {} -n {}".format(interface_name, frequency, ctx.obj['namespace']) + + clicommon.run_command(command) + + +# +# 'tx_power' subcommand ('config interface transceiver tx_power ...') +# For negative float use:- +# config interface transceiver tx_power Ethernet0 -- -27.4" +# +@transceiver.command('tx_power') +@click.pass_context +@click.argument('interface_name', metavar='', required=True) +@click.argument('tx-power', metavar='', required=True, type=float) +def tx_power(ctx, interface_name, tx_power): + """Set transciever (only for 400G-ZR) Tx laser power""" + # Get the config_db connector + config_db = ctx.obj['config_db'] + + if clicommon.get_interface_naming_mode() == "alias": + interface_name = interface_alias_to_name(config_db, interface_name) + if interface_name is None: + ctx.fail("'interface_name' is None!") + + if interface_name_is_valid(config_db, interface_name) is False: + ctx.fail("Interface name is invalid. Please enter a valid interface name!!") + + log.log_info("{} Setting transceiver power {} dBm".format(interface_name, tx_power)) + + if ctx.obj['namespace'] is DEFAULT_NAMESPACE: + command = "portconfig -p {} -P {}".format(interface_name, tx_power) + else: + command = "portconfig -p {} -P {} -n {}".format(interface_name, tx_power, ctx.obj['namespace']) + + clicommon.run_command(command) + # # 'lpmode' subcommand ('config interface transceiver lpmode ...') # @@ -4635,6 +5040,9 @@ def bind(ctx, interface_name, vrf_name): if interface_name is None: ctx.fail("'interface_name' is None!") + if not is_vrf_exists(config_db, vrf_name): + ctx.fail("VRF %s does not exist!"%(vrf_name)) + table_name = get_interface_table_name(interface_name) if table_name == "": ctx.fail("'interface_name' is not valid. Valid names [Ethernet/PortChannel/Vlan/Loopback]") @@ -4645,6 +5053,11 @@ def bind(ctx, interface_name, vrf_name): interface_addresses = get_interface_ipaddresses(config_db, interface_name) for ipaddress in interface_addresses: remove_router_interface_ip_address(config_db, interface_name, ipaddress) + if table_name == "VLAN_SUB_INTERFACE": + subintf_entry = config_db.get_entry(table_name, interface_name) + if 'vrf_name' in subintf_entry: + subintf_entry.pop('vrf_name') + config_db.set_entry(table_name, interface_name, None) # When config_db del entry and then add entry with same key, the DEL will lost. if ctx.obj['namespace'] is DEFAULT_NAMESPACE: @@ -4656,7 +5069,11 @@ def bind(ctx, interface_name, vrf_name): while state_db.exists(state_db.STATE_DB, _hash): time.sleep(0.01) state_db.close(state_db.STATE_DB) - config_db.set_entry(table_name, interface_name, {"vrf_name": vrf_name}) + if table_name == "VLAN_SUB_INTERFACE": + subintf_entry['vrf_name'] = vrf_name + config_db.set_entry(table_name, interface_name, subintf_entry) + else: + config_db.set_entry(table_name, interface_name, {"vrf_name": vrf_name}) # # 'unbind' subcommand @@ -4678,13 +5095,37 @@ def unbind(ctx, interface_name): table_name = get_interface_table_name(interface_name) if table_name == "": ctx.fail("'interface_name' is not valid. Valid names [Ethernet/PortChannel/Vlan/Loopback]") + if is_interface_bind_to_vrf(config_db, interface_name) is False: return + if table_name == "VLAN_SUB_INTERFACE": + subintf_entry = config_db.get_entry(table_name, interface_name) + if 'vrf_name' in subintf_entry: + subintf_entry.pop('vrf_name') + interface_ipaddresses = get_interface_ipaddresses(config_db, interface_name) for ipaddress in interface_ipaddresses: remove_router_interface_ip_address(config_db, interface_name, ipaddress) - config_db.set_entry(table_name, interface_name, None) + if table_name == "VLAN_SUB_INTERFACE": + # First delete subinterface, once subinterface deletion successful, + # recreate same with same config on default vrf + if 'state_db' not in ctx.obj: + if ctx.obj['namespace'] is DEFAULT_NAMESPACE: + state_db = SonicV2Connector(use_unix_socket_path=True) + else: + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=ctx.obj['namespace']) + state_db.connect(state_db.STATE_DB, False) + else: + state_db = ctx.obj['state_db'] + config_db.set_entry(table_name, interface_name, None) + _hash = '{}{}'.format('INTERFACE_TABLE|', interface_name) + while state_db.exists(state_db.STATE_DB, _hash): + time.sleep(0.01) + state_db.close(state_db.STATE_DB) + config_db.set_entry(table_name, interface_name, subintf_entry) + else: + config_db.set_entry(table_name, interface_name, None) # # 'ipv6' subgroup ('config interface ipv6 ...') @@ -4931,6 +5372,7 @@ def add_route(ctx, command_str): if (not route['ifname'] in config_db.get_keys('VLAN_INTERFACE') and not route['ifname'] in config_db.get_keys('INTERFACE') and not route['ifname'] in config_db.get_keys('PORTCHANNEL_INTERFACE') and + not route['ifname'] in config_db.get_keys('VLAN_SUB_INTERFACE') and not route['ifname'] == 'null'): ctx.fail('interface {} doesn`t exist'.format(route['ifname'])) @@ -4973,7 +5415,7 @@ def add_route(ctx, command_str): # Check if exist entry with key keys = config_db.get_keys('STATIC_ROUTE') - if key in keys: + if tuple(key.split("|")) in keys: # If exist update current entry current_entry = config_db.get_entry('STATIC_ROUTE', key) @@ -4998,7 +5440,7 @@ def del_route(ctx, command_str): key, route = cli_sroute_to_config(ctx, command_str, strict_nh=False) keys = config_db.get_keys('STATIC_ROUTE') prefix_tuple = tuple(key.split('|')) - if not key in keys and not prefix_tuple in keys: + if not tuple(key.split("|")) in keys and not prefix_tuple in keys: ctx.fail('Route {} doesnt exist'.format(key)) else: # If not defined nexthop or intf name remove entire route @@ -5355,6 +5797,22 @@ def ecn(profile, rmax, rmin, ymax, ymin, gmax, gmin, rdrop, ydrop, gdrop, verbos clicommon.run_command(command, display_cmd=verbose) +# +# 'mmu' command ('config mmu...') +# +@config.command() +@click.option('-p', metavar='', type=str, required=True, help="Profile name") +@click.option('-a', metavar='', type=click.IntRange(-8,8), help="Set alpha for profile type dynamic") +@click.option('-s', metavar='', type=int, help="Set staticth for profile type static") +def mmu(p, a, s): + """mmuconfig configuration tasks""" + log.log_info("'mmuconfig -p {}' executing...".format(p)) + command = "mmuconfig -p %s" % p + if a is not None: command += " -a %d" % a + if s is not None: command += " -s %d" % s + clicommon.run_command(command) + + # # 'pfc' group ('config interface pfc ...') # @@ -6004,7 +6462,7 @@ def disable(ctx): def polling_int(ctx, interval): """Set polling-interval for counter-sampling (0 to disable)""" if interval not in range(5, 301) and interval != 0: - click.echo("Polling interval must be between 5-300 (0 to disable)") + ctx.fail("Polling interval must be between 5-300 (0 to disable)") config_db = ctx.obj['db'] sflow_tbl = config_db.get_table('SFLOW') @@ -6415,6 +6873,13 @@ def subintf_vlan_check(config_db, parent_intf, vlan): return True return False +def is_subintf_shortname(intf): + if VLAN_SUB_INTERFACE_SEPARATOR in intf: + if intf.startswith("Ethernet") or intf.startswith("PortChannel"): + return False + return True + return False + @subinterface.command('add') @click.argument('subinterface_name', metavar='', required=True) @click.argument('vid', metavar='', required=False, type=click.IntRange(1,4094)) @@ -6435,23 +6900,24 @@ def add_subinterface(ctx, subinterface_name, vid): config_db = ctx.obj['db'] port_dict = config_db.get_table(intf_table_name) + parent_intf = get_intf_longname(interface_alias) if interface_alias is not None: if not port_dict: ctx.fail("{} parent interface not found. {} table none".format(interface_alias, intf_table_name)) - if get_intf_longname(interface_alias) not in port_dict.keys(): + if parent_intf not in port_dict.keys(): ctx.fail("{} parent interface not found".format(subinterface_name)) # Validate if parent is portchannel member portchannel_member_table = config_db.get_table('PORTCHANNEL_MEMBER') - if interface_is_in_portchannel(portchannel_member_table, interface_alias): + if interface_is_in_portchannel(portchannel_member_table, parent_intf): ctx.fail("{} is configured as a member of portchannel. Cannot configure subinterface" - .format(interface_alias)) + .format(parent_intf)) # Validate if parent is vlan member vlan_member_table = config_db.get_table('VLAN_MEMBER') - if interface_is_in_vlan(vlan_member_table, interface_alias): + if interface_is_in_vlan(vlan_member_table, parent_intf): ctx.fail("{} is configured as a member of vlan. Cannot configure subinterface" - .format(interface_alias)) + .format(parent_intf)) sub_intfs = [k for k,v in config_db.get_table('VLAN_SUB_INTERFACE').items() if type(k) != tuple] if subinterface_name in sub_intfs: @@ -6460,6 +6926,8 @@ def add_subinterface(ctx, subinterface_name, vid): subintf_dict = {} if vid is not None: subintf_dict.update({"vlan" : vid}) + elif is_subintf_shortname(subinterface_name): + ctx.fail("{} Encap vlan is mandatory for short name subinterfaces".format(subinterface_name)) if subintf_vlan_check(config_db, get_intf_longname(interface_alias), vid) is True: ctx.fail("Vlan {} encap already configured on other subinterface on {}".format(vid, interface_alias)) diff --git a/config/muxcable.py b/config/muxcable.py index f6b5a6a39..f53eae22e 100644 --- a/config/muxcable.py +++ b/config/muxcable.py @@ -11,6 +11,7 @@ from swsscommon import swsscommon from tabulate import tabulate from utilities_common import platform_sfputil_helper +from utilities_common.general import get_optional_value_for_key_in_config_tbl platform_sfputil = None @@ -203,7 +204,6 @@ def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_ return res_dict - def get_value_for_key_in_config_tbl(config_db, port, key, table): info_dict = {} info_dict = config_db.get_entry(table, port) @@ -244,6 +244,8 @@ def lookup_statedb_and_update_configdb(db, per_npu_statedb, config_db, port, sta configdb_state = get_value_for_key_in_config_tbl(config_db, port, "state", "MUX_CABLE") ipv4_value = get_value_for_key_in_config_tbl(config_db, port, "server_ipv4", "MUX_CABLE") ipv6_value = get_value_for_key_in_config_tbl(config_db, port, "server_ipv6", "MUX_CABLE") + soc_ipv4_value = get_optional_value_for_key_in_config_tbl(config_db, port, "soc_ipv4", "MUX_CABLE") + cable_type = get_optional_value_for_key_in_config_tbl(config_db, port, "cable_type", "MUX_CABLE") state = get_value_for_key_in_dict(muxcable_statedb_dict, port, "state", "MUX_CABLE_TABLE") @@ -252,8 +254,16 @@ def lookup_statedb_and_update_configdb(db, per_npu_statedb, config_db, port, sta if str(state_cfg_val) == str(configdb_state): port_status_dict[port_name] = 'OK' else: - config_db.set_entry("MUX_CABLE", port, {"state": state_cfg_val, - "server_ipv4": ipv4_value, "server_ipv6": ipv6_value}) + if cable_type is not None or soc_ipv4_value is not None: + config_db.set_entry("MUX_CABLE", port, {"state": state_cfg_val, + "server_ipv4": ipv4_value, + "server_ipv6": ipv6_value, + "soc_ipv4":soc_ipv4_value, + "cable_type": cable_type}) + else: + config_db.set_entry("MUX_CABLE", port, {"state": state_cfg_val, + "server_ipv4": ipv4_value, + "server_ipv6": ipv6_value}) if (str(state_cfg_val) == 'active' and str(state) != 'active') or (str(state_cfg_val) == 'standby' and str(state) != 'standby'): port_status_dict[port_name] = 'INPROGRESS' else: @@ -270,7 +280,7 @@ def update_configdb_pck_loss_data(config_db, port, val): # 'muxcable' command ("config muxcable mode active|auto") @muxcable.command() -@click.argument('state', metavar='', required=True, type=click.Choice(["active", "auto", "manual", "standby"])) +@click.argument('state', metavar='', required=True, type=click.Choice(["active", "auto", "manual", "standby", "detach"])) @click.argument('port', metavar='', required=True, default=None) @click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL) @clicommon.pass_db @@ -360,6 +370,22 @@ def mode(db, state, port, json_output): sys.exit(CONFIG_SUCCESSFUL) +# 'muxcable' command ("config muxcable kill-radv ") +@muxcable.command(short_help="Kill radv service when it is meant to be stopped, so no good-bye packet is sent for ceasing To Be an Advertising Interface") +@click.argument('knob', metavar='', required=True, type=click.Choice(["enable", "disable"])) +@clicommon.pass_db +def kill_radv(db, knob): + """config muxcable kill radv""" + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + mux_lmgrd_cfg_tbl = config_db.get_table("MUX_LINKMGR") + config_db.mod_entry("MUX_LINKMGR", "SERVICE_MGMT", {"kill_radv": "True" if knob == "enable" else "False"}) + + #'muxcable' command ("config muxcable packetloss reset ") @muxcable.command() @click.argument('action', metavar='', required=True, type=click.Choice(["reset"])) @@ -1190,3 +1216,46 @@ def set_fec(db, port, target, mode): else: click.echo("ERR: Unable to set fec enable/disable port {} to {}".format(port, mode)) sys.exit(CONFIG_FAIL) + +def update_configdb_ycable_telemetry_data(config_db, key, val): + log_verbosity = get_value_for_key_in_config_tbl(config_db, key, "log_verbosity", "XCVRD_LOG") + + config_db.set_entry("XCVRD_LOG", key, {"log_verbosity": log_verbosity, + "disable_telemetry": val}) + return 0 + +@muxcable.command() +@click.argument('state', metavar='', required=True, type=click.Choice(["enable", "disable"])) +@clicommon.pass_db +def telemetry(db, state): + """Enable/Disable Telemetry for ycabled """ + + per_npu_configdb = {} + xcvrd_log_cfg_db_tbl = {} + + if state == 'enable': + val = 'False' + elif state == 'disable': + val = 'True' + + + # Getting all front asic namespace and correspding config and state DB connector + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + # replace these with correct macros + per_npu_configdb[asic_id] = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + per_npu_configdb[asic_id].connect() + + xcvrd_log_cfg_db_tbl[asic_id] = per_npu_configdb[asic_id].get_table("XCVRD_LOG") + + asic_index = multi_asic.get_asic_index_from_namespace(EMPTY_NAMESPACE) + rc = update_configdb_ycable_telemetry_data(per_npu_configdb[asic_index], "Y_CABLE", val) + + + if rc == 0: + click.echo("Success in ycabled telemetry state to {}".format(state)) + else: + click.echo("ERR: Unable to set ycabled telemetry state to {}".format(state)) + sys.exit(CONFIG_FAIL) diff --git a/config/plugins/auto_techsupport.py b/config/plugins/auto_techsupport.py index c2960646d..10bebbaaf 100644 --- a/config/plugins/auto_techsupport.py +++ b/config/plugins/auto_techsupport.py @@ -228,6 +228,50 @@ def AUTO_TECHSUPPORT_GLOBAL_max_core_limit(db, max_core_limit): exit_with_error(f"Error: {err}", fg="red") +@AUTO_TECHSUPPORT_GLOBAL.command(name="available-mem-threshold") +@click.argument( + "available-mem-threshold", + nargs=1, + required=True, +) +@clicommon.pass_db +def AUTO_TECHSUPPORT_GLOBAL_available_mem_threshold(db, available_mem_threshold): + """ Memory threshold; 0 to disable techsupport invocation on memory usage threshold crossing. + """ + + table = "AUTO_TECHSUPPORT" + key = "GLOBAL" + data = { + "available_mem_threshold": available_mem_threshold, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + +@AUTO_TECHSUPPORT_GLOBAL.command(name="min-available-mem") +@click.argument( + "min-available-mem", + nargs=1, + required=True, +) +@clicommon.pass_db +def AUTO_TECHSUPPORT_GLOBAL_min_available_mem(db, min_available_mem): + """ Minimum free memory amount in Kb when techsupport will be executed. + """ + + table = "AUTO_TECHSUPPORT" + key = "GLOBAL" + data = { + "min_available_mem": min_available_mem, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + @AUTO_TECHSUPPORT_GLOBAL.command(name="since") @click.argument( "since", @@ -271,8 +315,12 @@ def AUTO_TECHSUPPORT_FEATURE(): "--rate-limit-interval", help="Rate limit interval for the corresponding feature. Configure 0 to explicitly disable", ) +@click.option( + "--available-mem-threshold", + help="Memory threshold; 0 to disable techsupport invocation on memory usage threshold crossing.", +) @clicommon.pass_db -def AUTO_TECHSUPPORT_FEATURE_add(db, feature_name, state, rate_limit_interval): +def AUTO_TECHSUPPORT_FEATURE_add(db, feature_name, state, rate_limit_interval, available_mem_threshold): """ Add object in AUTO_TECHSUPPORT_FEATURE. """ table = "AUTO_TECHSUPPORT_FEATURE" @@ -282,6 +330,8 @@ def AUTO_TECHSUPPORT_FEATURE_add(db, feature_name, state, rate_limit_interval): data["state"] = state if rate_limit_interval is not None: data["rate_limit_interval"] = rate_limit_interval + if available_mem_threshold is not None: + data["available_mem_threshold"] = available_mem_threshold try: add_entry_validated(db.cfgdb, table, key, data) @@ -303,8 +353,12 @@ def AUTO_TECHSUPPORT_FEATURE_add(db, feature_name, state, rate_limit_interval): "--rate-limit-interval", help="Rate limit interval for the corresponding feature. Configure 0 to explicitly disable", ) +@click.option( + "--available-mem-threshold", + help="Memory threshold; 0 to disable techsupport invocation on memory usage threshold crossing.", +) @clicommon.pass_db -def AUTO_TECHSUPPORT_FEATURE_update(db, feature_name, state, rate_limit_interval): +def AUTO_TECHSUPPORT_FEATURE_update(db, feature_name, state, rate_limit_interval, available_mem_threshold): """ Add object in AUTO_TECHSUPPORT_FEATURE. """ table = "AUTO_TECHSUPPORT_FEATURE" @@ -314,6 +368,8 @@ def AUTO_TECHSUPPORT_FEATURE_update(db, feature_name, state, rate_limit_interval data["state"] = state if rate_limit_interval is not None: data["rate_limit_interval"] = rate_limit_interval + if available_mem_threshold is not None: + data["available_mem_threshold"] = available_mem_threshold try: update_entry_validated(db.cfgdb, table, key, data) diff --git a/config/plugins/pbh.py b/config/plugins/pbh.py index b6726aa15..ce9187a36 100644 --- a/config/plugins/pbh.py +++ b/config/plugins/pbh.py @@ -6,13 +6,14 @@ CLI Auto-generation tool HLD - https://github.com/Azure/SONiC/pull/78 """ +import os import click import json import ipaddress import re import utilities_common.cli as clicommon -from show.plugins.pbh import deserialize_pbh_counters +from show.plugins.pbh import deserialize_pbh_counters, PBH_COUNTERS_CACHE_FILENAME GRE_KEY_RE = r"^(0x){1}[a-fA-F0-9]{1,8}/(0x){1}[a-fA-F0-9]{1,8}$" @@ -79,8 +80,6 @@ PBH_UPDATE = "UPDATE" PBH_REMOVE = "REMOVE" -PBH_COUNTERS_LOCATION = "/tmp/.pbh_counters.txt" - # # DB interface -------------------------------------------------------------------------------------------------------- # @@ -467,11 +466,14 @@ def serialize_pbh_counters(obj): obj: counters dict. """ + cache = clicommon.UserCache('pbh') + counters_cache_file = os.path.join(cache.get_directory(), PBH_COUNTERS_CACHE_FILENAME) + def remap_keys(obj): return [{'key': k, 'value': v} for k, v in obj.items()] try: - with open(PBH_COUNTERS_LOCATION, 'w') as f: + with open(counters_cache_file, 'w') as f: json.dump(remap_keys(obj), f) except IOError as err: pass diff --git a/config/plugins/sonic-passwh_yang.py b/config/plugins/sonic-passwh_yang.py new file mode 100644 index 000000000..6cfe2acaf --- /dev/null +++ b/config/plugins/sonic-passwh_yang.py @@ -0,0 +1,380 @@ +import copy +import click +import utilities_common.cli as clicommon +import utilities_common.general as general +from config import config_mgmt + + +# Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. +sonic_cfggen = general.load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') + + +def exit_with_error(*args, **kwargs): + """ Print a message with click.secho and abort CLI. + + Args: + args: Positional arguments to pass to click.secho + kwargs: Keyword arguments to pass to click.secho + """ + + click.secho(*args, **kwargs) + raise click.Abort() + + +def validate_config_or_raise(cfg): + """ Validate config db data using ConfigMgmt. + + Args: + cfg (Dict): Config DB data to validate. + Raises: + Exception: when cfg does not satisfy YANG schema. + """ + + try: + cfg = sonic_cfggen.FormatConverter.to_serialized(copy.deepcopy(cfg)) + config_mgmt.ConfigMgmt().loadData(cfg) + except Exception as err: + raise Exception('Failed to validate configuration: {}'.format(err)) + + +def update_entry_validated(db, table, key, data, create_if_not_exists=False): + """ Update entry in table and validate configuration. + If attribute value in data is None, the attribute is deleted. + + Args: + db (swsscommon.ConfigDBConnector): Config DB connector obect. + table (str): Table name to add new entry to. + key (Union[str, Tuple]): Key name in the table. + data (Dict): Entry data. + create_if_not_exists (bool): + In case entry does not exists already a new entry + is not created if this flag is set to False and + creates a new entry if flag is set to True. + Raises: + Exception: when cfg does not satisfy YANG schema. + """ + + cfg = db.get_config() + cfg.setdefault(table, {}) + + if not data: + raise Exception(f"No field/values to update {key}") + + if create_if_not_exists: + cfg[table].setdefault(key, {}) + + if key not in cfg[table]: + raise Exception(f"{key} does not exist") + + entry_changed = False + for attr, value in data.items(): + if value == cfg[table][key].get(attr): + continue + entry_changed = True + if value is None: + cfg[table][key].pop(attr, None) + else: + cfg[table][key][attr] = value + + if not entry_changed: + return + + validate_config_or_raise(cfg) + db.set_entry(table, key, cfg[table][key]) + + +@click.group(name="passw-hardening", + cls=clicommon.AliasedGroup) +def PASSW_HARDENING(): + """ PASSWORD HARDENING part of config_db.json """ + + pass + + + + +@PASSW_HARDENING.group(name="policies", + cls=clicommon.AliasedGroup) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES(db): + """ """ + + pass + + + + +@PASSW_HARDENING_POLICIES.command(name="state") + +@click.argument( + "state", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_state(db, state): + """ state of the feature """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "state": state, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="expiration") + +@click.argument( + "expiration", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_expiration(db, expiration): + """ expiration time (days unit) """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "expiration": expiration, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="expiration-warning") + +@click.argument( + "expiration-warning", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_expiration_warning(db, expiration_warning): + """ expiration warning time (days unit) """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "expiration_warning": expiration_warning, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="history-cnt") + +@click.argument( + "history-cnt", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_history_cnt(db, history_cnt): + """ num of old password that the system will recorded """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "history_cnt": history_cnt, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="len-min") + +@click.argument( + "len-min", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_len_min(db, len_min): + """ password min length """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "len_min": len_min, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="reject-user-passw-match") + +@click.argument( + "reject-user-passw-match", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_reject_user_passw_match(db, reject_user_passw_match): + """ username password match """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "reject_user_passw_match": reject_user_passw_match, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="lower-class") + +@click.argument( + "lower-class", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_lower_class(db, lower_class): + """ password lower chars policy """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "lower_class": lower_class, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="upper-class") + +@click.argument( + "upper-class", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_upper_class(db, upper_class): + """ password upper chars policy """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "upper_class": upper_class, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="digits-class") + +@click.argument( + "digits-class", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_digits_class(db, digits_class): + """ password digits chars policy """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "digits_class": digits_class, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + +@PASSW_HARDENING_POLICIES.command(name="special-class") + +@click.argument( + "special-class", + nargs=1, + required=True, +) +@clicommon.pass_db +def PASSW_HARDENING_POLICIES_special_class(db, special_class): + """ password special chars policy """ + + table = "PASSW_HARDENING" + key = "POLICIES" + data = { + "special_class": special_class, + } + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + except Exception as err: + exit_with_error(f"Error: {err}", fg="red") + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +def register(cli): + """ Register new CLI nodes in root CLI. + + Args: + cli: Root CLI node. + Raises: + Exception: when root CLI already has a command + we are trying to register. + """ + cli_node = PASSW_HARDENING + if cli_node.name in cli.commands: + raise Exception(f"{cli_node.name} already exists in CLI") + cli.add_command(PASSW_HARDENING) diff --git a/config/vlan.py b/config/vlan.py index 80b4ff498..dcd2ea40b 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -1,9 +1,15 @@ import click import utilities_common.cli as clicommon +import utilities_common.dhcp_relay_util as dhcp_relay_util +from swsscommon.swsscommon import SonicV2Connector from time import sleep from .utils import log +DHCP_RELAY_TABLE = "DHCP_RELAY" +DHCPV6_SERVERS = "dhcpv6_servers" + + # # 'vlan' group ('config vlan ...') # @@ -12,6 +18,16 @@ def vlan(): """VLAN-related configuration tasks""" pass + +def set_dhcp_relay_table(table, config_db, vlan_name, value): + config_db.set_entry(table, vlan_name, value) + + +def is_dhcp_relay_running(): + out, _ = clicommon.run_command("systemctl show dhcp_relay.service --property ActiveState --value", return_cmd=True) + return out.strip() == "active" + + @vlan.command('add') @click.argument('vid', metavar='', required=True, type=int) @clicommon.pass_db @@ -24,19 +40,46 @@ def add_vlan(db, vid): ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) vlan = 'Vlan{}'.format(vid) - + if vid == 1: ctx.fail("{} is default VLAN".format(vlan)) - + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan): ctx.fail("{} already exists".format(vlan)) - db.cfgdb.set_entry('VLAN', vlan, {'vlanid': vid}) + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan, "DHCP_RELAY"): + ctx.fail("DHCPv6 relay config for {} already exists".format(vlan)) + + # set dhcpv4_relay table + set_dhcp_relay_table('VLAN', db.cfgdb, vlan, {'vlanid': str(vid)}) + + +def is_dhcpv6_relay_config_exist(db, vlan_name): + keys = db.cfgdb.get_keys(DHCP_RELAY_TABLE) + if len(keys) == 0 or vlan_name not in keys: + return False + + table = db.cfgdb.get_entry(DHCP_RELAY_TABLE, vlan_name) + dhcpv6_servers = table.get(DHCPV6_SERVERS, []) + if len(dhcpv6_servers) > 0: + return True + + +def delete_state_db_entry(entry_name): + state_db = SonicV2Connector() + state_db.connect(state_db.STATE_DB) + exists = state_db.exists(state_db.STATE_DB, 'DHCPv6_COUNTER_TABLE|{}'.format(entry_name)) + if exists: + state_db.delete(state_db.STATE_DB, 'DHCPv6_COUNTER_TABLE|{}'.format(entry_name)) + @vlan.command('del') @click.argument('vid', metavar='', required=True, type=int) +@click.option('--no_restart_dhcp_relay', is_flag=True, type=click.BOOL, required=False, default=False, + help="If no_restart_dhcp_relay is True, do not restart dhcp_relay while del vlan and \ + require dhcpv6 relay of this is empty") @clicommon.pass_db -def del_vlan(db, vid): +def del_vlan(db, vid, no_restart_dhcp_relay): """Delete VLAN""" log.log_info("'vlan del {}' executing...".format(vid)) @@ -50,6 +93,10 @@ def del_vlan(db, vid): if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: ctx.fail("{} does not exist".format(vlan)) + if no_restart_dhcp_relay: + if is_dhcpv6_relay_config_exist(db, vlan): + ctx.fail("Can't delete {} because related DHCPv6 Relay config is exist".format(vlan)) + intf_table = db.cfgdb.get_table('VLAN_INTERFACE') for intf_key in intf_table: if ((type(intf_key) is str and intf_key == 'Vlan{}'.format(vid)) or @@ -57,27 +104,61 @@ def del_vlan(db, vid): ctx.fail("{} can not be removed. First remove IP addresses assigned to this VLAN".format(vlan)) keys = [ (k, v) for k, v in db.cfgdb.get_table('VLAN_MEMBER') if k == 'Vlan{}'.format(vid) ] - + if keys: ctx.fail("VLAN ID {} can not be removed. First remove all members assigned to this VLAN.".format(vid)) - - db.cfgdb.set_entry('VLAN', 'Vlan{}'.format(vid), None) + vxlan_table = db.cfgdb.get_table('VXLAN_TUNNEL_MAP') + for vxmap_key, vxmap_data in vxlan_table.items(): + if vxmap_data['vlan'] == 'Vlan{}'.format(vid): + ctx.fail("vlan: {} can not be removed. First remove vxlan mapping '{}' assigned to VLAN".format(vid, '|'.join(vxmap_key)) ) + + # set dhcpv4_relay table + set_dhcp_relay_table('VLAN', db.cfgdb, vlan, None) + + if not no_restart_dhcp_relay and is_dhcpv6_relay_config_exist(db, vlan): + # set dhcpv6_relay table + set_dhcp_relay_table(DHCP_RELAY_TABLE, db.cfgdb, vlan, None) + # We need to restart dhcp_relay service after dhcpv6_relay config change + if is_dhcp_relay_running(): + dhcp_relay_util.handle_restart_dhcp_relay_service() + delete_state_db_entry(vlan) + + vlans = db.cfgdb.get_keys('VLAN') + if not vlans: + docker_exec_cmd = "docker exec -i swss {}" + _, rc = clicommon.run_command(docker_exec_cmd.format("supervisorctl status ndppd"), ignore_error=True, return_cmd=True) + if rc == 0: + click.echo("No VLANs remaining, stopping ndppd service") + clicommon.run_command(docker_exec_cmd.format("supervisorctl stop ndppd"), ignore_error=True, return_cmd=True) + clicommon.run_command(docker_exec_cmd.format("rm -f /etc/supervisor/conf.d/ndppd.conf"), ignore_error=True, return_cmd=True) + clicommon.run_command(docker_exec_cmd.format("supervisorctl update"), return_cmd=True) + def restart_ndppd(): verify_swss_running_cmd = "docker container inspect -f '{{.State.Status}}' swss" docker_exec_cmd = "docker exec -i swss {}" + ndppd_status_cmd= "supervisorctl status ndppd" + ndppd_conf_copy_cmd = "cp /usr/share/sonic/templates/ndppd.conf /etc/supervisor/conf.d/" + supervisor_update_cmd = "supervisorctl update" ndppd_config_gen_cmd = "sonic-cfggen -d -t /usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf" ndppd_restart_cmd = "supervisorctl restart ndppd" - output = clicommon.run_command(verify_swss_running_cmd, return_cmd=True) + output, _ = clicommon.run_command(verify_swss_running_cmd, return_cmd=True) if output and output.strip() != "running": click.echo(click.style('SWSS container is not running, changes will take effect the next time the SWSS container starts', fg='red'),) return - clicommon.run_command(docker_exec_cmd.format(ndppd_config_gen_cmd), display_cmd=True) + _, rc = clicommon.run_command(docker_exec_cmd.format(ndppd_status_cmd), ignore_error=True, return_cmd=True) + + if rc != 0: + clicommon.run_command(docker_exec_cmd.format(ndppd_conf_copy_cmd)) + clicommon.run_command(docker_exec_cmd.format(supervisor_update_cmd), return_cmd=True) + + click.echo("Starting ndppd service") + clicommon.run_command(docker_exec_cmd.format(ndppd_config_gen_cmd)) sleep(3) - clicommon.run_command(docker_exec_cmd.format(ndppd_restart_cmd), display_cmd=True) + clicommon.run_command(docker_exec_cmd.format(ndppd_restart_cmd), return_cmd=True) @vlan.command('proxy_arp') diff --git a/config/vxlan.py b/config/vxlan.py index bfda1f4ef..be0a96100 100644 --- a/config/vxlan.py +++ b/config/vxlan.py @@ -38,6 +38,10 @@ def del_vxlan(db, vxlan_name): """Del VXLAN""" ctx = click.get_current_context() + vxlan_keys = db.cfgdb.get_keys('VXLAN_TUNNEL') + if vxlan_name not in vxlan_keys: + ctx.fail("Vxlan tunnel {} does not exist".format(vxlan_name)) + vxlan_keys = db.cfgdb.get_keys('VXLAN_EVPN_NVO') if not vxlan_keys: vxlan_count = 0 @@ -56,6 +60,12 @@ def del_vxlan(db, vxlan_name): if(vxlan_count > 0): ctx.fail("Please delete all VLAN VNI mappings.") + vnet_table = db.cfgdb.get_table('VNET') + vnet_keys = vnet_table.keys() + for vnet_key in vnet_keys: + if ('vxlan_tunnel' in vnet_table[vnet_key] and vnet_table[vnet_key]['vxlan_tunnel'] == vxlan_name): + ctx.fail("Please delete all VNET configuration referencing the tunnel " + vxlan_name) + db.cfgdb.set_entry('VXLAN_TUNNEL', vxlan_name, None) @vxlan.group('evpn_nvo') diff --git a/counterpoll/main.py b/counterpoll/main.py index f3befe131..ad15c8c24 100644 --- a/counterpoll/main.py +++ b/counterpoll/main.py @@ -419,9 +419,9 @@ def show(): if buffer_pool_wm_info: data.append(["BUFFER_POOL_WATERMARK_STAT", buffer_pool_wm_info.get("POLL_INTERVAL", DEFLT_60_SEC), buffer_pool_wm_info.get("FLEX_COUNTER_STATUS", DISABLE)]) if acl_info: - data.append([ACL, pg_drop_info.get("POLL_INTERVAL", DEFLT_10_SEC), acl_info.get("FLEX_COUNTER_STATUS", DISABLE)]) + data.append([ACL, acl_info.get("POLL_INTERVAL", DEFLT_10_SEC), acl_info.get("FLEX_COUNTER_STATUS", DISABLE)]) if tunnel_info: - data.append(["TUNNEL_STAT", rif_info.get("POLL_INTERVAL", DEFLT_10_SEC), rif_info.get("FLEX_COUNTER_STATUS", DISABLE)]) + data.append(["TUNNEL_STAT", tunnel_info.get("POLL_INTERVAL", DEFLT_10_SEC), tunnel_info.get("FLEX_COUNTER_STATUS", DISABLE)]) if trap_info: data.append(["FLOW_CNT_TRAP_STAT", trap_info.get("POLL_INTERVAL", DEFLT_10_SEC), trap_info.get("FLEX_COUNTER_STATUS", DISABLE)]) if route_info: diff --git a/crm/main.py b/crm/main.py index f728f87dd..9b0d06e89 100644 --- a/crm/main.py +++ b/crm/main.py @@ -237,9 +237,9 @@ def polling(ctx): @polling.command() @click.pass_context -@click.argument('interval', type=click.INT) +@click.argument('interval', type=click.IntRange(1, 9999)) def interval(ctx, interval): - """CRM polling interval configuration""" + """CRM polling interval configuration in seconds (range: 1-9999)""" ctx.obj["crm"].config('polling_interval', interval) @config.group() diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md old mode 100644 new mode 100755 index 4beef0caf..103244227 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -1,10876 +1,12114 @@ -# SONiC Command Line Interface Guide - -## Table of Contents - -* [Document History](#document-history) -* [Introduction](#introduction) -* [Basic Tasks](#basic-tasks) - * [SSH Login](#ssh-login) - * [Show Management Interface](#show-management-interface) - * [Configuring Management Interface](#configuring-management-interface) -* [Getting Help](#getting-help) - * [Help for Config Commands](#help-for-config-commands) - * [Help for Show Commands](#help-for-show-commands) -* [Basic Show Commands](#basic-show-commands) - * [Show Versions](#show-versions) - * [Show System Status](#show-system-status) - * [Show Hardware Platform](#show-hardware-platform) - * [Transceivers](#transceivers) -* [AAA & TACACS+](#aaa--tacacs) - * [AAA](#aaa) - * [AAA show commands](#aaa-show-commands) - * [AAA config commands](#aaa-config-commands) - * [TACACS+](#tacacs) - * [TACACS+ show commands](#tacacs-show-commands) - * [TACACS+ config commands](#tacacs-config-commands) -* [ACL](#acl) - * [ACL show commands](#acl-show-commands) - * [ACL config commands](#acl-config-commands) -* [ARP & NDP](#arp--ndp) - * [ARP show commands](#arp-show-commands) - * [NDP show commands](#ndp-show-commands) -* [BFD](#bfd) - * [BFD show commands](#bfd-show-commands) -* [BGP](#bgp) - * [BGP show commands](#bgp-show-commands) - * [BGP config commands](#bgp-config-commands) -* [Console](#console) - * [Console show commands](#console-show-commands) - * [Console config commands](#console-config-commands) - * [Console connect commands](#console-connect-commands) - * [Console clear commands](#console-clear-commands) -* [DHCP Relay](#dhcp-relay) - * [DHCP Relay config commands](#dhcp-relay-config-commands) -* [Drop Counters](#drop-counters) - * [Drop Counter show commands](#drop-counters-show-commands) - * [Drop Counter config commands](#drop-counters-config-commands) - * [Drop Counter clear commands](#drop-counters-clear-commands) -* [Dynamic Buffer Management](#dynamic-buffer-management) - * [Configuration commands](#configuration-commands) - * [Show commands](#show-commands) -* [ECN](#ecn) - * [ECN show commands](#ecn-show-commands) - * [ECN config commands](#ecn-config-commands) -* [Feature](#feature) - * [Feature show commands](#feature-show-commands) - * [Feature config commands](#feature-config-commands) -* [Flow Counters](#flow-counters) - * [Flow Counters show commands](#flow-counters-show-commands) - * [Flow Counters clear commands](#flow-counters-clear-commands) - * [Flow Counters config commands](#flow-counters-config-commands) -* [Gearbox](#gearbox) - * [Gearbox show commands](#gearbox-show-commands) -* [Interfaces](#interfaces) - * [Interface Show Commands](#interface-show-commands) - * [Interface Config Commands](#interface-config-commands) -* [Interface Naming Mode](#interface-naming-mode) - * [Interface naming mode show commands](#interface-naming-mode-show-commands) - * [Interface naming mode config commands](#interface-naming-mode-config-commands) - * [Interface Vrf binding](#interface-vrf-binding) - * [Interface vrf bind & unbind config commands](#interface-vrf-bind-&-unbind-config-commands) - * [Interface vrf binding show commands](#interface-vrf-binding-show-commands) -* [IP / IPv6](#ip--ipv6) - * [IP show commands](#ip-show-commands) - * [IPv6 show commands](#ipv6-show-commands) -* [IPv6 Link Local](#ipv6-link-local) - * [IPv6 Link Local config commands](#ipv6-link-local-config-commands) - * [IPv6 Link Local show commands](#ipv6-link-local-show-commands) -* [Kubernetes](#Kubernetes) - * [Kubernetes show commands](#Kubernetes-show-commands) - * [Kubernetes config commands](#Kubernetes-config-commands) -* [Linux Kernel Dump](#kdump) - * [Linux Kernel Dump show commands](#kdump-show-commands) - * [Linux Kernel Dump config commands](#kdump-config-commands) -* [LLDP](#lldp) - * [LLDP show commands](#lldp-show-commands) -* [Loading, Reloading And Saving Configuration](#loading-reloading-and-saving-configuration) - * [Loading configuration from JSON file](#loading-configuration-from-json-file) - * [Loading configuration from minigraph (XML) file](#loading-configuration-from-minigraph-xml-file) - * [Reloading Configuration](#reloading-configuration) - * [Loading Management Configuration](#loading-management-configuration) - * [Saving Configuration to a File for Persistence](saving-configuration-to-a-file-for-persistence) - * [Loopback Interfaces](#loopback-interfaces) - * [Loopback show commands](#loopback-show-commands) - * [Loopback config commands](#loopback-config-commands) -* [VRF Configuration](#vrf-configuration) - * [VRF show commands](#vrf-show-commands) - * [VRF config commands](#vrf-config-commands) -* [Management VRF](#Management-VRF) - * [Management VRF Show commands](#management-vrf-show-commands) - * [Management VRF Config commands](#management-vrf-config-commands) -* [Mirroring](#mirroring) - * [Mirroring Show commands](#mirroring-show-commands) - * [Mirroring Config commands](#mirroring-config-commands) -* [Muxcable](#muxcable) - * [Muxcable Show commands](#muxcable-show-commands) - * [Muxcable Config commands](#muxcable-config-commands) -* [NAT](#nat) - * [NAT Show commands](#nat-show-commands) - * [NAT Config commands](#nat-config-commands) - * [NAT Clear commands](#nat-clear-commands) -* [NTP](#ntp) - * [NTP show commands](#ntp-show-commands) - * [NTP config commands](#ntp-config-commands) -* [NVGRE](#nvgre) - * [NVGRE show commands](#nvgre-show-commands) - * [NVGRE config commands](#nvgre-config-commands) -* [PBH](#pbh) - * [PBH show commands](#pbh-show-commands) - * [PBH config commands](#pbh-config-commands) -* [PFC Watchdog Commands](#pfc-watchdog-commands) -* [Platform Component Firmware](#platform-component-firmware) - * [Platform Component Firmware show commands](#platform-component-firmware-show-commands) - * [Platform Component Firmware config commands](#platform-component-firmware-config-commands) - * [Platform Component Firmware vendor specific behaviour](#platform-component-firmware-vendor-specific-behaviour) -* [Platform Specific Commands](#platform-specific-commands) - * [Mellanox Platform Specific Commands](#mellanox-platform-specific-commands) - * [Barefoot Platform Specific Commands](#barefoot-platform-specific-commands) -* [PortChannels](#portchannels) - * [PortChannel Show commands](#portchannel-show-commands) - * [PortChannel Config commands](#portchannel-config-commands) -* [QoS](#qos) - * [QoS Show commands](#qos-show-commands) - * [PFC](#pfc) - * [Queue And Priority-Group](#queue-and-priority-group) - * [Buffer Pool](#buffer-pool) - * [QoS config commands](#qos-config-commands) -* [sFlow](#sflow) - * [sFlow Show commands](#sflow-show-commands) - * [sFlow Config commands](#sflow-config-commands) -* [SNMP](#snmp) - * [SNMP Show commands](#snmp-show-commands) - * [SNMP Config commands](#snmp-config-commands) -* [Startup & Running Configuration](#startup--running-configuration) - * [Startup Configuration](#startup-configuration) - * [Running Configuration](#running-configuration) -* [Static routing](#static-routing) -* [Subinterfaces](#subinterfaces) - * [Subinterfaces Show Commands](#subinterfaces-show-commands) - * [Subinterfaces Config Commands](#subinterfaces-config-commands) -* [Syslog](#syslog) - * [Syslog config commands](#syslog-config-commands) -* [System State](#system-state) - * [Processes](#processes) - * [Services & Memory](#services--memory) -* [System-Health](#System-Health) -* [VLAN & FDB](#vlan--fdb) - * [VLAN](#vlan) - * [VLAN show commands](#vlan-show-commands) - * [VLAN Config commands](#vlan-config-commands) - * [FDB](#fdb) - * [FDB show commands](#fdb-show-commands) -* [VxLAN & Vnet](#vxlan--vnet) - * [VxLAN](#vxlan) - * [VxLAN show commands](#vxlan-show-commands) - * [Vnet](#vnet) - * [Vnet show commands](#vnet-show-commands) -* [Warm Reboot](#warm-reboot) -* [Warm Restart](#warm-restart) - * [Warm Restart show commands](#warm-restart-show-commands) - * [Warm Restart Config commands](#warm-restart-config-commands) -* [Watermark](#watermark) - * [Watermark Show commands](#watermark-show-commands) - * [Watermark Config commands](#watermark-config-commands) -* [Software Installation and Management](#software-installation-and-management) - * [SONiC Package Manager](#sonic-package-manager) - * [SONiC Installer](#sonic-installer) -* [Troubleshooting Commands](#troubleshooting-commands) - * [Debug Dumps](#debug-dumps) - * [Event Driven Techsupport Invocation](#event-driven-techsupport-invocation) -* [Routing Stack](#routing-stack) -* [Quagga BGP Show Commands](#Quagga-BGP-Show-Commands) -* [ZTP Configuration And Show Commands](#ztp-configuration-and-show-commands) - * [ ZTP show commands](#ztp-show-commands) - * [ZTP configuration commands](#ztp-configuration-commands) - -## Document History - -| Version | Modification Date | Details | -| --- | --- | --- | -| v6 | May-06-2021 | Add SNMP show and config commands | -| v5 | Nov-05-2020 | Add document for console commands | -| v4 | Oct-17-2019 | Unify usage statements and other formatting; Replace tabs with spaces; Modify heading sizes; Fix spelling, grammar and other errors; Fix organization of new commands | -| v3 | Jun-26-2019 | Update based on 201904 (build#19) release, "config interface" command changes related to interfacename order, FRR/Quagga show command changes, platform specific changes, ACL show changes and few formatting changes | -| v2 | Apr-22-2019 | CLI Guide for SONiC 201811 version (build#32) with complete "config" command set | -| v1 | Mar-23-2019 | Initial version of CLI Guide with minimal command set | - -## Introduction -SONiC is an open source network operating system based on Linux that runs on switches from multiple vendors and ASICs. SONiC offers a full-suite of network functionality, like BGP and RDMA, that has been production-hardened in the data centers of some of the largest cloud-service providers. It offers teams the flexibility to create the network solutions they need while leveraging the collective strength of a large ecosystem and community. - -SONiC software shall be loaded in these [supported devices](https://github.com/Azure/SONiC/wiki/Supported-Devices-and-Platforms) and this CLI guide shall be used to configure the devices as well as to display the configuration, state and status. - -Follow the [Quick Start Guide](https://github.com/Azure/SONiC/wiki/Quick-Start) to boot the device in ONIE mode, install the SONiC software using the steps specified in the document and login to the device using the default username and password. - -After logging into the device, SONiC software can be configured in following three methods. - 1. Command Line Interface (CLI) - 2. [config_db.json](https://github.com/Azure/SONiC/wiki/Configuration) - 3. [minigraph.xml](https://github.com/Azure/SONiC/wiki/Configuration-with-Minigraph-(~Sep-2017)) - -This document explains the first method and gives the complete list of commands that are supported in SONiC 201904 version (build#19). -All the configuration commands need root privileges to execute them. Note that show commands can be executed by all users without the root privileges. -Root privileges can be obtained either by using "sudo" keyword in front of all config commands, or by going to root prompt using "sudo -i". -Note that all commands are case sensitive. - -- Example: - ``` - admin@sonic:~$ sudo config aaa authentication login tacacs+ - - OR - - admin@sonic:~$ sudo -i - root@sonic:~# config aaa authentication login tacacs+ - ``` - -Note that the command list given in this document is just a subset of all possible configurations in SONiC. -Please follow config_db.json based configuration for the complete list of configuration options. - -**Scope of this Document** - -It is assumed that all configuration commands start with the keyword “config” as prefix. -Any other scripts/utilities/commands that need user configuration control are wrapped as sub-commands under the “config” command. -The direct scripts/utilities/commands (examples given below) that are not wrapped under the "config" command are not in the scope of this document. - 1. acl_loader – This script is already wrapped inside “config acl” command; i.e. any ACL configuration that user is allowed to do is already part of “config acl” command; users are not expected to use the acl_loader script directly and hence this document need not explain the “acl_loader” script. - 2. crm – this command is not explained in this document. - 3. sonic-clear, sfputil, etc., This document does not explain these scripts also. - -## Basic Tasks - -This section covers the basic configurations related to the following: - 1. [SSH login](#SSH-Login) - 2. [Configuring the Management Interface](#Configuring-Management-Interface) - -### SSH Login - -All SONiC devices support both the serial console based login and the SSH based login by default. -The default credential (if not modified at image build time) for login is `admin/YourPaSsWoRd`. -In case of SSH login, users can login to the management interface (eth0) IP address after configuring the same using serial console. -Refer the following section for configuring the IP address for management interface. - -- Example: - ``` - At Console: - Debian GNU/Linux 9 sonic ttyS1 - - sonic login: admin - Password: YourPaSsWoRd - - SSH from any remote server to sonic can be done by connecting to SONiC IP - user@debug:~$ ssh admin@sonic_ip_address(or SONIC DNS Name) - admin@sonic's password: - ``` - -By default, login takes the user to the default prompt from which all the show commands can be executed. - -Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-tasks) - -### Show Management Interface - -Please check [show ip interfaces](#show-ip-interfaces) - -### Configuring Management Interface - -The management interface (eth0) in SONiC is configured (by default) to use DHCP client to get the IP address from the DHCP server. Connect the management interface to the same network in which your DHCP server is connected and get the IP address from DHCP server. -The IP address received from DHCP server can be verified using the `/sbin/ifconfig eth0` Linux command. - -SONiC provides a CLI to configure the static IP for the management interface. There are few ways by which a static IP address can be configured for the management interface. - 1. Use the `config interface ip add eth0` command. - - Example: - ``` - admin@sonic:~$ sudo config interface ip add eth0 20.11.12.13/24 20.11.12.254 - ``` - 2. Use config_db.json and configure the MGMT_INTERFACE key with the appropriate values. Refer [here](https://github.com/Azure/SONiC/wiki/Configuration#Management-Interface) - 3. Use minigraph.xml and configure "ManagementIPInterfaces" tag inside "DpgDesc" tag as given at the [page](https://github.com/Azure/SONiC/wiki/Configuration-with-Minigraph-(~Sep-2017)) - -Once the IP address is configured, the same can be verified using either `show management_interface address` command or the `/sbin/ifconfig eth0` linux command. -Users can SSH login to this management interface IP address from their management network. - -- Example: - ``` - admin@sonic:~$ /sbin/ifconfig eth0 - eth0: flags=4163 mtu 1500 - inet 10.11.11.13 netmask 255.255.255.0 broadcast 10.11.12.255 - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-tasks) - -## Getting Help - -Subsections: - 1. [Help for Config Commands](#Config-Help) - 2. [Help for Show Commands](#Show-Help) - 3. [Show Versions](#Show-Versions) - 4. [Show System Status](#Show-System-Status) - 5. [Show Hardware Platform](#Show-Hardware-Platform) - -### Help for Config Commands - -All commands have in-built help that aids the user in understanding the command as well as the possible sub-commands and options. -"--help" can be used at any level of the command; i.e. it can be used at the command level, or sub-command level or at argument level. The in-built help will display the available possibilities corresponding to that particular command/sub-command. - -**config --help** - -This command lists all the possible configuration commands at the top level. - -- Usage: - ``` - config --help - ``` - -- Example: - ``` - admin@sonic:~$ config --help - Usage: config [OPTIONS] COMMAND [ARGS] - SONiC command line - 'config' command - - Options: - --help Show this message and exit. - - Commands: - aaa AAA command line - acl ACL-related configuration tasks - bgp BGP-related configuration tasks - ecn ECN-related configuration tasks - feature Modify configuration of features - hostname Change device hostname without impacting traffic - interface Interface-related configuration tasks - interface_naming_mode Modify interface naming mode for interacting... - kubernetes Kubernetes server related configuration - load Import a previous saved config DB dump file. - load_mgmt_config Reconfigure hostname and mgmt interface based... - load_minigraph Reconfigure based on minigraph. - loopback Loopback-related configuration tasks. - mirror_session - nat NAT-related configuration tasks - platform Platform-related configuration tasks - portchannel - qos - reload Clear current configuration and import a... - route route-related configuration tasks - save Export current config DB to a file on disk. - tacacs TACACS+ server configuration - vlan VLAN-related configuration tasks - vrf VRF-related configuration tasks - warm_restart warm_restart-related configuration tasks - watermark Configure watermark - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#getting-help) - -### Help For Show Commands - -**show help** - -This command displays the full list of show commands available in the software; the output of each of those show commands can be used to analyze, debug or troubleshoot the network node. - -- Usage: - ``` - show (-?|-h|--help) - ``` - -- Example: - ``` - admin@sonic:~$ show -? - Usage: show [OPTIONS] COMMAND [ARGS]... - SONiC command line - 'show' command - - Options: - -?, -h, --help Show this message and exit. - - Commands: - aaa Show AAA configuration - acl Show ACL related information - arp Show IP ARP table - buffer_pool Show details of the Buffer-pools - clock Show date and time - ecn Show ECN configuration - environment Show environmentals (voltages, fans, temps) - feature Show feature status - interfaces Show details of the network interfaces - ip Show IP (IPv4) commands - ipv6 Show IPv6 commands - kubernetes Show kubernetes commands - line Show all /dev/ttyUSB lines and their info - lldp Show LLDP information - logging Show system log - mac Show MAC (FDB) entries - mirror_session Show existing everflow sessions - mmu Show mmu configuration - muxcable Show muxcable information - nat Show details of the nat - ndp Show IPv6 Neighbour table - ntp Show NTP information - pfc Show details of the priority-flow-control... - platform Show platform-specific hardware info - priority-group Show details of the PGs - processes Show process information - queue Show details of the queues - reboot-cause Show cause of most recent reboot - route-map Show route-map - runningconfiguration Show current running configuration... - services Show all daemon services - startupconfiguration Show startup configuration information - subinterfaces Show details of the sub port interfaces - system-memory Show memory information - tacacs Show TACACS+ configuration - techsupport Gather information for troubleshooting - uptime Show system uptime - users Show users - version Show version information - vlan Show VLAN information - vrf Show vrf config - warm_restart Show warm restart configuration and state - watermark Show details of watermark - ``` - -The same syntax applies to all subgroups of `show` which themselves contain subcommands, and subcommands which accept options/arguments. - -- Example: - ``` - admin@sonic:~$ show interfaces -? - - Show details of the network interfaces - - Options: - -?, -h, --help Show this message and exit. - - Commands: - counters Show interface counters - description Show interface status, protocol and... - naming_mode Show interface naming_mode status - neighbor Show neighbor related information - portchannel Show PortChannel information - status Show Interface status information - tpid Show Interface tpid information - transceiver Show SFP Transceiver information - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#getting-help) - -## Basic Show Commands - -Subsections: - 1. [Show Versions](#Show-Versions) - 2. [Show System Status](#Show-System-Status) - 3. [Show Hardware Platform](#Show-Hardware-Platform) - -### Show Versions - -**show version** - -This command displays software component versions of the currently running SONiC image. This includes the SONiC image version as well as Docker image versions. -This command displays relevant information as the SONiC and Linux kernel version being utilized, as well as the ID of the commit used to build the SONiC image. The second section of the output displays the various docker images and their associated IDs. - -- Usage: - ``` - show version - ``` - -- Example: - ``` - admin@sonic:~$ show version - SONiC Software Version: SONiC.HEAD.32-21ea29a - Distribution: Debian 9.8 - Kernel: 4.9.0-8-amd64 - Build commit: 21ea29a - Build date: Fri Mar 22 01:55:48 UTC 2019 - Built by: johnar@jenkins-worker-4 - - Platform: x86_64-mlnx_msn2700-r0 - HwSKU: Mellanox-SN2700 - ASIC: mellanox - ASIC Count: 1 - Serial Number: MT1822K07815 - Model Number: MSN2700-CS2FO - Hardware Rev: A1 - Uptime: 14:40:15 up 3 min, 1 user, load average: 1.26, 1.45, 0.66 - Date: Fri 22 Mar 2019 14:40:15 - - Docker images: - REPOSITORY TAG IMAGE ID SIZE - docker-syncd-brcm HEAD.32-21ea29a 434240daff6e 362MB - docker-syncd-brcm latest 434240daff6e 362MB - docker-orchagent-brcm HEAD.32-21ea29a e4f9c4631025 287MB - docker-orchagent-brcm latest e4f9c4631025 287MB - docker-nat HEAD.32-21ea29a 46075edc1c69 305MB - docker-nat latest 46075edc1c69 305MB - docker-lldp-sv2 HEAD.32-21ea29a 9681bbfea3ac 275MB - docker-lldp-sv2 latest 9681bbfea3ac 275MB - docker-dhcp-relay HEAD.32-21ea29a 2db34c7bc6f4 257MB - docker-dhcp-relay latest 2db34c7bc6f4 257MB - docker-database HEAD.32-21ea29a badc6fc84cdb 256MB - docker-database latest badc6fc84cdb 256MB - docker-snmp-sv2 HEAD.32-21ea29a e2776e2a30b7 295MB - docker-snmp-sv2 latest e2776e2a30b7 295MB - docker-teamd HEAD.32-21ea29a caf957cd2ad1 275MB - docker-teamd latest caf957cd2ad1 275MB - docker-router-advertiser HEAD.32-21ea29a b1a62023958c 255MB - docker-router-advertiser latest b1a62023958c 255MB - docker-platform-monitor HEAD.32-21ea29a 40b40a4b2164 287MB - docker-platform-monitor latest 40b40a4b2164 287MB - docker-fpm-quagga HEAD.32-21ea29a 546036fe6838 282MB - docker-fpm-quagga latest 546036fe6838 282MB - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-show-commands) - - -### Show System Status -This sub-section explains some set of sub-commands that are used to display the status of various parameters pertaining to the physical state of the network node. - -**show clock** - -This command displays the current date and time configured on the system - -- Usage: - ``` - show clock - ``` - -- Example: - ``` - admin@sonic:~$ show clock - Mon Mar 25 20:25:16 UTC 2019 - ``` - -**show boot** - -This command displays the current OS image, the image to be loaded on next reboot, and lists all the available images installed on the device - -- Usage: - ``` - show boot - ``` - -- Example: - ``` - admin@sonic:~$ show boot - Current: SONiC-OS-20181130.31 - Next: SONiC-OS-20181130.31 - Available: - SONiC-OS-20181130.31 - ``` - -**show environment** - -This command displays the platform environmentals, such as voltages, temperatures and fan speeds - -- Usage: - ``` - show environment - ``` - -- Example: - ``` - admin@sonic:~$ show environment - coretemp-isa-0000 - Adapter: ISA adapter - Core 0: +28.0 C (high = +98.0 C, crit = +98.0 C) - Core 1: +28.0 C (high = +98.0 C, crit = +98.0 C) - Core 2: +28.0 C (high = +98.0 C, crit = +98.0 C) - Core 3: +28.0 C (high = +98.0 C, crit = +98.0 C) - SMF_Z9100_ON-isa-0000 - Adapter: ISA adapter - CPU XP3R3V_EARLY: +3.22 V - <... few more things ...> - - Onboard Temperature Sensors: - CPU: 30 C - BCM56960 (PSU side): 35 C - <... few more things ...> - - Onboard Voltage Sensors: - CPU XP3R3V_EARLY 3.22 V - <... few more things ...> - - Fan Trays: - Fan Tray 1: - Fan1 Speed: 6192 RPM - Fan2 Speed: 6362 RPM - Fan1 State: Normal - Fan2 State: Normal - Air Flow: F2B - <... few more things ...> - - PSUs: - PSU 1: - Input: AC - <... few more things ...> - ``` -NOTE: The show output has got lot of information; only the sample output is given in the above example. -Though the displayed output slightly differs from one platform to another platform, the overall content will be similar to the example mentioned above. - -**show reboot-cause** - -This command displays the cause of the previous reboot - -- Usage: - ``` - show reboot-cause - ``` - -- Example: - ``` - admin@sonic:~$ show reboot-cause - User issued reboot command [User: admin, Time: Mon Mar 25 01:02:03 UTC 2019] - ``` - -**show reboot-cause history** - -This command displays the history of the previous reboots up to 10 entry - -- Usage: - ``` - show reboot-cause history - ``` - -- Example: - ``` - admin@sonic:~$ show reboot-cause history - Name Cause Time User Comment - ------------------- ----------- ---------------------------- ------ --------- - 2020_10_09_02_33_06 reboot Fri Oct 9 02:29:44 UTC 2020 admin - 2020_10_09_01_56_59 reboot Fri Oct 9 01:53:49 UTC 2020 admin - 2020_10_09_02_00_53 fast-reboot Fri Oct 9 01:58:04 UTC 2020 admin - 2020_10_09_04_53_58 warm-reboot Fri Oct 9 04:51:47 UTC 2020 admin - ``` - -**show uptime** - -This command displays the current system uptime - -- Usage: - ``` - show uptime - ``` - -- Example: - ``` - admin@sonic:~$ show uptime - up 2 days, 21 hours, 30 minutes - ``` - -**show logging** - -This command displays all the currently stored log messages. -All the latest processes and corresponding transactions are stored in the "syslog" file. -This file is saved in the path `/var/log` and can be viewed by giving the command ` sudo cat syslog` as this requires root login. - -- Usage: - ``` - show logging [( [-l|--lines ]) | (-f|--follow)] - ``` - -- Example: - ``` - admin@sonic:~$ show logging - ``` - -It can be useful to pipe the output from `show logging` to the command `more` in order to examine one screenful of log messages at a time - -- Example: - ``` - admin@sonic:~$ show logging | more - ``` - -Optionally, you can specify a process name in order to display only log messages mentioning that process - -- Example: - ``` - admin@sonic:~$ show logging sensord - ``` - -Optionally, you can specify a number of lines to display using the `-l` or `--lines` option. Only the most recent N lines will be displayed. Also note that this option can be combined with a process name. - -- Examples: - ``` - admin@sonic:~$ show logging --lines 50 - ``` - ``` - admin@sonic:~$ show logging sensord --lines 50 - ``` - -Optionally, you can follow the log live as entries are written to it by specifying the `-f` or `--follow` flag - -- Example: - ``` - admin@sonic:~$ show logging --follow - ``` - -**show users** - -This command displays a list of users currently logged in to the device - -- Usage: - ``` - show users - ``` - -- Examples: - ``` - admin@sonic:~$ show users - admin pts/9 Mar 25 20:31 (100.127.20.23) - - admin@sonic:~$ show users - admin ttyS1 2019-03-25 20:31 - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-show-commands) - -### Show Hardware Platform - -The information displayed in this set of commands partially overlaps with the one generated by “show envinronment” instruction. In this case though, the information is presented in a more succinct fashion. In the future these two CLI stanzas may end up getting combined. - -**show platform summary** - -This command displays a summary of the device's hardware platform - -- Usage: - ``` - show platform summary - ``` - -- Example: - ``` - admin@sonic:~$ show platform summary - Platform: x86_64-mlnx_msn2700-r0 - HwSKU: Mellanox-SN2700 - ASIC: mellanox - ASIC Count: 1 - Serial Number: MT1822K07815 - Model Number: MSN2700-CS2FO - Hardware Rev: A1 - ``` - -**show platform syseeprom** - -This command displays information stored on the system EEPROM. -Note that the output of this command is not the same for all vendor's platforms. -Couple of example outputs are given below. - -- Usage: - ``` - show platform syseeprom - ``` - -- Example: - ``` - admin@sonic:~$ show platform syseeprom - lsTLV Name Len Value - -------------------- --- ----- - PPID 20 XX-XXXXXX-00000-000-0000 - DPN Rev 3 XXX - Service Tag 7 XXXXXXX - Part Number 10 XXXXXX - Part Number Rev 3 XXX - Mfg Test Results 2 FF - Card ID 2 0x0000 - Module ID 2 0 - Base MAC Address 12 FE:EC:BA:AB:CD:EF - (checksum valid) - ``` - - ``` - admin@sonic:~$ show platform syseeprom - TlvInfo Header: - Id String: TlvInfo - Version: 1 - Total Length: 527 - TLV Name Code Len Value - ---- --- ----- - Product Name 0x21 64 MSN2700 - Part Number 0x22 20 MSN2700-CS2FO - Serial Number 0x23 24 MT1822K07815 - Base MAC Address 0x24 6 50:6B:4B:8F:CE:40 - Manufacture Date 0x25 19 05/28/2018 23:56:02 - Device Version 0x26 1 16 - MAC Addresses 0x2A 2 128 - Manufacturer 0x2B 8 Mellanox - Vendor Extension 0xFD 36 - Vendor Extension 0xFD 164 - Vendor Extension 0xFD 36 - Vendor Extension 0xFD 36 - Vendor Extension 0xFD 36 - Platform Name 0x28 18 x86_64-mlnx_x86-r0 - ONIE Version 0x29 21 2018.08-5.2.0006-9600 - CRC-32 0xFE 4 0x11C017E1 - - (checksum valid) - ``` - -**show platform ssdhealth** - -This command displays health parameters of the device's SSD - -- Usage: - ``` - show platform ssdhealth [--vendor] - ``` - -- Example: - ``` - admin@sonic:~$ show platform ssdhealth - Device Model : M.2 (S42) 3IE3 - Health : 99.665% - Temperature : 30C - ``` - -**show platform psustatus** - -This command displays the status of the device's power supply units - -- Usage: - ``` - show platform psustatus - ``` - -- Example: - ``` - admin@sonic:~$ show platform psustatus - PSU Model Serial HW Rev Voltage (V) Current (A) Power (W) Status LED - ----- ------------- ------------ -------- ------------- ------------- ----------- -------- ----- - PSU 1 MTEF-PSF-AC-A MT1621X15246 A3 11.97 4.56 54.56 OK green - ``` - -**show platform fan** - -This command displays the status of the device's fans - -- Usage: - ``` - show platform fan - ``` - -- Example: - ``` - admin@sonic:~$ show platform fan - FAN Speed Direction Presence Status Timestamp - ----------- -------- ----------- ---------- -------- ----------------- - fan1 34% intake Present OK 20200302 06:58:56 - fan2 43% intake Present OK 20200302 06:58:56 - fan3 38% intake Present OK 20200302 06:58:56 - fan4 49% intake Present OK 20200302 06:58:57 - fan5 38% exhaust Present OK 20200302 06:58:57 - fan6 48% exhaust Present OK 20200302 06:58:57 - fan7 39% exhaust Present OK 20200302 06:58:57 - fan8 48% exhaust Present OK 20200302 06:58:57 - ``` - -**show platform temperature** - -This command displays the status of the device's thermal sensors - -- Usage: - ``` - show platform temperature - ``` - -- Example: - ``` - admin@sonic:~$ show platform temperature - NAME Temperature High Th Low Th Crit High Th Crit Low Th Warning Timestamp - ---------------------- ------------- --------- -------- -------------- ------------- --------- ----------------- - Ambient ASIC Temp 37.0 100.0 N/A 120.0 N/A False 20200302 06:58:57 - Ambient Fan Side Temp 28.5 100.0 N/A 120.0 N/A False 20200302 06:58:57 - Ambient Port Side Temp 31.0 100.0 N/A 120.0 N/A False 20200302 06:58:57 - CPU Core 0 Temp 36.0 87.0 N/A 105.0 N/A False 20200302 06:59:57 - CPU Core 1 Temp 38.0 87.0 N/A 105.0 N/A False 20200302 06:59:57 - CPU Pack Temp 38.0 87.0 N/A 105.0 N/A False 20200302 06:59:57 - PSU-1 Temp 28.0 100.0 N/A 120.0 N/A False 20200302 06:59:58 - PSU-2 Temp 28.0 100.0 N/A 120.0 N/A False 20200302 06:59:58 - xSFP module 1 Temp 31.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 2 Temp 35.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 3 Temp 32.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 4 Temp 33.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 5 Temp 34.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 6 Temp 36.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 7 Temp 33.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 8 Temp 33.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 9 Temp 32.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 10 Temp 38.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 11 Temp 38.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 12 Temp 39.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 13 Temp 35.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 14 Temp 37.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 15 Temp 36.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 16 Temp 36.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 17 Temp 32.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 18 Temp 34.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 19 Temp 30.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 20 Temp 31.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 21 Temp 34.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 22 Temp 34.4 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 23 Temp 34.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 24 Temp 35.6 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 25 Temp 38.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 - xSFP module 26 Temp 32.2 70.0 N/A 90.0 N/A False 20200302 06:59:58 - xSFP module 27 Temp 39.0 70.0 N/A 90.0 N/A False 20200302 06:59:58 - xSFP module 28 Temp 30.1 70.0 N/A 90.0 N/A False 20200302 06:59:58 - xSFP module 29 Temp 32.0 70.0 N/A 90.0 N/A False 20200302 06:59:58 - xSFP module 30 Temp 35.3 70.0 N/A 90.0 N/A False 20200302 06:59:58 - xSFP module 31 Temp 31.0 70.0 N/A 90.0 N/A False 20200302 06:59:58 - xSFP module 32 Temp 39.5 70.0 N/A 90.0 N/A False 20200302 06:59:58 - ``` - -#### Transceivers -Displays diagnostic monitoring information of the transceivers - -**show interfaces transceiver** - -This command displays information for all the interfaces for the transceiver requested or a specific interface if the optional "interface_name" is specified. - -- Usage: - ``` - show interfaces transceiver (eeprom [-d|--dom] | lpmode | presence | error-status [-hw|--fetch-from-hardware]) [] - ``` - -- Example (Decode and display information stored on the EEPROM of SFP transceiver connected to Ethernet0): - ``` - admin@sonic:~$ show interfaces transceiver eeprom --dom Ethernet0 - Ethernet0: SFP detected - Connector : No separable connector - Encoding : Unspecified - Extended Identifier : Unknown - Extended RateSelect Compliance : QSFP+ Rate Select Version 1 - Identifier : QSFP+ - Length Cable Assembly(m) : 1 - Specification compliance : - 10/40G Ethernet Compliance Code : 40GBASE-CR4 - Fibre Channel Speed : 1200 Mbytes/Sec - Fibre Channel link length/Transmitter Technology : Electrical inter-enclosure (EL) - Fibre Channel transmission media : Twin Axial Pair (TW) - Vendor Date Code(YYYY-MM-DD Lot) : 2015-10-31 - Vendor Name : XXXXX - Vendor OUI : XX-XX-XX - Vendor PN : 1111111111 - Vendor Rev : - Vendor SN : 111111111 - ChannelMonitorValues: - RX1Power: -1.1936dBm - RX2Power: -1.1793dBm - RX3Power: -0.9388dBm - RX4Power: -1.0729dBm - TX1Bias: 4.0140mA - TX2Bias: 4.0140mA - TX3Bias: 4.0140mA - TX4Bias: 4.0140mA - ModuleMonitorValues : - Temperature : 1.1111C - Vcc : 0.0000Volts - ``` - -- Example (Display status of low-power mode of SFP transceiver connected to Ethernet100): - ``` - admin@sonic:~$ show interfaces transceiver lpmode Ethernet100 - Port Low-power Mode - ----------- ---------------- - Ethernet100 On - ``` - - -- Example (Display presence of SFP transceiver connected to Ethernet100): - ``` - admin@sonic:~$ show interfaces transceiver presence Ethernet100 - Port Presence - ----------- ---------- - Ethernet100 Present - ``` - -- Example (Display error status of SFP transceiver connected to Ethernet100): - ``` - admin@sonic:~$ show interfaces transceiver error-status Ethernet100 - Port Error Status - ----------- -------------- - Ethernet100 OK - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-show-commands) - -## AAA & TACACS+ -This section captures the various show commands & configuration commands that are applicable for the AAA (Authentication, Authorization, and Accounting) module. -Admins can configure the type of authentication (local or remote tacacs based) required for the users and also the authentication failthrough and fallback options. -Following show command displays the current running configuration related to the AAA. - -### AAA - -#### AAA show commands - -This command is used to view the Authentication, Authorization & Accounting settings that are configured in the network node. - -**show aaa** - -This command displays the AAA settings currently present in the network node - -- Usage: - ``` - show aaa - ``` - -- Example: - ``` - admin@sonic:~$ show aaa - AAA authentication login local (default) - AAA authentication failthrough True (default) - AAA authentication fallback True (default) - ``` - -#### AAA config commands - -This sub-section explains all the possible CLI based configuration options for the AAA module. The list of commands/sub-commands possible for aaa is given below. - - Command: aaa authentication - sub-commands: - - aaa authentication failthrough - - aaa authentication fallback - - aaa authentication login - -**aaa authentication failthrough** - -This command is used to either enable or disable the failthrough option. -This command is useful when user has configured more than one tacacs+ server and when user has enabled tacacs+ authentication. -When authentication request to the first server fails, this configuration allows to continue the request to the next server. -When this configuration is enabled, authentication process continues through all servers configured. -When this is disabled and if the authentication request fails on first server, authentication process will stop and the login will be disallowed. - - -- Usage: - ``` - config aaa authentication failthrough (enable | disable | default) - ``` - - - Parameters: - - enable: This allows the AAA module to process with local authentication if remote authentication fails. - - disable: This disallows the AAA module to proceed further if remote authentication fails. - - default: This re-configures the default value, which is "enable". - - -- Example: - ``` - admin@sonic:~$ sudo config aaa authentication failthrough enable - ``` -**aaa authentication fallback** - -The command is not used at the moment. -When the tacacs+ authentication fails, it falls back to local authentication by default. - -- Usage: - ``` - config aaa authentication fallback (enable | disable | default) - ``` - -- Example: - ``` - admin@sonic:~$ sudo config aaa authentication fallback enable - ``` - -**aaa authentication login** - -This command is used to either configure whether AAA should use local database or remote tacacs+ database for user authentication. -By default, AAA uses local database for authentication. New users can be added/deleted using the linux commands (Note that the configuration done using linux commands are not preserved during reboot). -Admin can enable remote tacacs+ server based authentication by selecting the AUTH_PROTOCOL as tacacs+ in this command. -Admins need to configure the tacacs+ server accordingly and ensure that the connectivity to tacacas+ server is available via the management interface. -Once if the admins choose the remote authentication based on tacacs+ server, all user logins will be authenticated by the tacacs+ server. -If the authentication fails, AAA will check the "failthrough" configuration and authenticates the user based on local database if failthrough is enabled. - -- Usage: - ``` - config aaa authentication (tacacs+ | local | default) - ``` - - - Parameters: - - tacacs+: Enables remote authentication based on tacacs+ - - local: Disables remote authentication and uses local authentication - - default: Reset back to default value, which is only "local" authentication - - -- Example: - ``` - admin@sonic:~$ sudo config aaa authentication login tacacs+ - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#aaa--tacacs) - -### TACACS+ - -#### TACACS+ show commands - -**show tacacs** - -This command displays the global configuration fields and the list of all tacacs servers and their correponding configurations. - -- Usage: - ``` - show tacacs - ``` - -- Example: - ``` - admin@sonic:~$ show tacacs - TACPLUS global auth_type pap (default) - TACPLUS global timeout 99 - TACPLUS global passkey (default) - - TACPLUS_SERVER address 10.11.12.14 - priority 9 - tcp_port 50 - auth_type mschap - timeout 10 - passkey testing789 - - TACPLUS_SERVER address 10.0.0.9 - priority 1 - tcp_port 49 - ``` - -#### TACACS+ config commands - -This sub-section explains the command "config tacacs" and its sub-commands that are used to configure the following tacacs+ parameters. -Some of the parameters like authtype, passkey and timeout can be either configured at per server level or at global level (global value will be applied if there no server level configuration) - -1) Add/Delete the tacacs+ server details. -2) authtype - global configuration that is applied to all servers if there is no server specific configuration. -3) default - reset the authtype or passkey or timeout to the default values. -4) passkey - global configuration that is applied to all servers if there is no server specific configuration. -5) timeout - global configuration that is applied to all servers if there is no server specific configuration. - -**config tacacs add** - -This command is used to add a TACACS+ server to the tacacs server list. -Note that more than one tacacs+ (maximum of seven) can be added in the device. -When user tries to login, tacacs client shall contact the servers one by one. -When any server times out, device will try the next server one by one based on the priority value configured for that server. -When this command is executed, the configured tacacs+ server addresses are updated in /etc/pam.d/common-auth-sonic configuration file which is being used by tacacs service. - -- Usage: - ``` - config tacacs add [-t|--timeout ] [-k|--key ] [-a|--type ] [-o|--port ] [-p|--pri ] [-m|--use-mgmt-vrf] - ``` - - - Parameters: - - ip_address: TACACS+ server IP address. - - timeout: Transmission timeout interval in seconds, range 1 to 60, default 5 - - key: Shared secret - - type: Authentication type, "chap" or "pap" or "mschap" or "login", default is "pap". - - port: TCP port range is 1 to 65535, default 49 - - pri: Priority, priority range 1 to 64, default 1. - - use-mgmt-vrf: This means that the server is part of Management vrf, default is "no vrf" - - -- Example: - ``` - admin@sonic:~$ sudo config tacacs add 10.11.12.13 -t 10 -k testing789 -a mschap -o 50 -p 9 - ``` - - - Example Server Configuration in /etc/pam.d/common-auth-sonic configuration file: - ``` - auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.11.12.14:50 secret=testing789 login=mschap timeout=10 try_first_pass - auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.11.12.24:50 secret=testing789 login=mschap timeout=987654321098765433211 - 0987 try_first_pass - auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.0.0.9:49 secret= login=mschap timeout=5 try_first_pass - auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.0.0.8:49 secret= login=mschap timeout=5 try_first_pass - auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.11.12.13:50 secret=testing789 login=mschap timeout=10 try_first_pass - auth [success=1 default=ignore] pam_unix.so nullok try_first_pass - ``` - - *NOTE: In the above example, the servers are stored (sorted) based on the priority value configured for the server.* - -**config tacacs delete** - -This command is used to delete the tacacs+ servers configured. - -- Usage: - ``` - config tacacs delete - ``` - -- Example: - ``` - admin@sonic:~$ sudo config tacacs delete 10.11.12.13 - ``` - -**config tacacs authtype** - -This command is used to modify the global value for the TACACS+ authtype. -When user has not configured server specific authtype, this global value shall be used for that server. - -- Usage: - ``` - config tacacs authtype (chap | pap | mschap | login) - ``` - -- Example: - ``` - admin@sonic:~$ sudo config tacacs authtype mschap - ``` - -**config tacacs default** - -This command is used to reset the global value for authtype or passkey or timeout to default value. -Default for authtype is "pap", default for passkey is EMPTY_STRING and default for timeout is 5 seconds. - -- Usage: - ``` - config tacacs default (authtype | passkey | timeout) - ``` - -- Example (This will reset the global authtype back to the default value "pap"): - ``` - admin@sonic:~$ sudo config tacacs default authtype - ``` - -**config tacacs passkey** - -This command is used to modify the global value for the TACACS+ passkey. -When user has not configured server specific passkey, this global value shall be used for that server. - -- Usage: - ``` - config tacacs passkey - ``` - -- Example: - ``` - admin@sonic:~$ sudo config tacacs passkey testing123 - ``` - -**config tacacs timeout** - -This command is used to modify the global value for the TACACS+ timeout. -When user has not configured server specific timeout, this global value shall be used for that server. - - -- Usage: - ``` - config tacacs [default] timeout [] - ``` - - - Options: - - Valid values for timeout is 1 to 60 seconds. - - When the optional keyword "default" is specified, timeout_value_in_seconds parameter wont be used; default value of 5 is used. - - Configuration using the keyword "default" is introduced in 201904 release. - -- Example: To configure non-default timeout value - ``` - admin@sonic:~$ sudo config tacacs timeout 60 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#aaa--tacacs) - - - -## ACL - -This section explains the various show commands and configuration commands available for users. - -### ACL show commands - -**show acl table** - -This command displays either all the ACL tables that are configured or only the specified "TABLE_NAME". -Output from the command displays the table name, type of the table, the list of interface(s) to which the table is bound and the description about the table. - -- Usage: - ``` - show acl table [] - ``` - -- Example: - ``` - admin@sonic:~$ show acl table - Name Type Binding Description Stage - -------- --------- --------------- ---------------- ------- - EVERFLOW MIRROR Ethernet16 EVERFLOW ingress - Ethernet96 - Ethernet108 - Ethernet112 - PortChannel0001 - PortChannel0002 - SNMP_ACL CTRLPLANE SNMP SNMP_ACL ingress - DT_ACL_T1 L3 Ethernet0 DATA_ACL_TABLE_1 egress - Ethernet4 - Ethernet112 - Ethernet116 - SSH_ONLY CTRLPLANE SSH SSH_ONLY ingress - ``` - -**show acl rule** - -This command displays all the ACL rules present in all the ACL tables or only the rules present in specified table "TABLE_NAME" or only the rule matching the RULE_ID option. -Output from the command gives the following information about the rules -1) Table name - ACL table name to which the rule belongs to. -2) Rule name - ACL rule name -3) Priority - Priority for this rule. -4) Action - Action to be performed if the packet matches with this ACL rule. - -It can be: -- "DROP"/"FORWARD"("ACCEPT" for control plane ACL) -- "REDIRECT: redirect-object" for redirect rule, where "redirect-object" is either: - - physical interface name, e.g. "Ethernet10" - - port channel name, e.g. "PortChannel0002" - - next-hop IP address, e.g. "10.0.0.1" - - next-hop group set of IP addresses with comma seperator, e.g. "10.0.0.1,10.0.0.3" -- "MIRROR INGRESS|EGRESS: session-name" for mirror rules, where "session-name" refers to mirror session - -Users can choose to have a default permit rule or default deny rule. In case of default "deny all" rule, add the permitted rules on top of the deny rule. In case of the default "permit all" rule, users can add the deny rules on top of it. If users have not confgured any rule, SONiC allows all traffic (which is "permit all"). - -5) Match - The fields from the packet header that need to be matched against the same present in the incoming traffic. - -- Usage: - ``` - show acl rule [] [] - ``` - -- Example: - ``` - admin@sonic:~$ show acl rule - Table Rule Priority Action Match - -------- ------------ ---------- ------------------------- ---------------------------- - SNMP_ACL RULE_1 9999 ACCEPT IP_PROTOCOL: 17 - SRC_IP: 1.1.1.1/32 - SSH_ONLY RULE_2 9998 ACCEPT IP_PROTOCOL: 6 - SRC_IP: 1.1.1.1/32 - EVERFLOW RULE_3 9997 MIRROR INGRESS: everflow0 SRC_IP: 20.0.0.2/32 - EVERFLOW RULE_4 9996 MIRROR EGRESS : everflow1 L4_SRC_PORT: 4621 - DATAACL RULE_5 9995 REDIRECT: Ethernet8 IP_PROTOCOL: 126 - DATAACL RULE_6 9994 FORWARD L4_SRC_PORT: 179 - DATAACL RULE_7 9993 FORWARD L4_DST_PORT: 179 - SNMP_ACL DEFAULT_RULE 1 DROP ETHER_TYPE: 2048 - SSH_ONLY DEFAULT_RULE 1 DROP ETHER_TYPE: 2048 - ``` - - -### ACL config commands -This sub-section explains the list of configuration options available for ACL module. -Note that there is no direct command to add or delete or modify the ACL table and ACL rule. -Existing ACL tables and ACL rules can be updated by specifying the ACL rules in json file formats and configure those files using this CLI command. - -**config acl update full** - -This command is to update the rules in all the tables or in one specific table in full. If a table_name is provided, the operation will be restricted in the specified table. All existing rules in the specified table or all tables will be removed. New rules loaded from file will be installed. If the table_name is specified, only rules within that table will be removed and new rules in that table will be installed. If the table_name is not specified, all rules from all tables will be removed and only the rules present in the input file will be added. - -The command does not modify anything in the list of acl tables. It modifies only the rules present in those pre-existing tables. - -In order to create acl tables, either follow the config_db.json method or minigraph method to populate the list of ACL tables. - -After creating tables, either the config_db.json method or the minigraph method or the CLI method (explained here) can be used to populate the rules in those ACL tables. - -This command updates only the ACL rules and it does not disturb the ACL tables; i.e. the output of "show acl table" is not alterted by using this command; only the output of "show acl rule" will be changed after this command. - -When "--session_name" optional argument is specified, command sets the session_name for the ACL table with this mirror session name. It fails if the specified mirror session name does not exist. - -When "--mirror_stage" optional argument is specified, command sets the mirror action to ingress/egress based on this parameter. By default command sets ingress mirror action in case argument is not specified. - -When the optional argument "max_priority" is specified, each rule’s priority is calculated by subtracting its “sequence_id” value from the “max_priority”. If this value is not passed, the default “max_priority” 10000 is used. - -- Usage: - ``` - config acl update full [--table_name ] [--session_name ] [--mirror_stage (ingress | egress)] [--max_priority ] - ``` - - - Parameters: - - table_name: Specifiy the name of the ACL table to load. Example: config acl update full "--table_name DT_ACL_T1 /etc/sonic/acl_table_1.json" - - session_name: Specifiy the name of the ACL session to load. Example: config acl update full "--session_name mirror_ses1 /etc/sonic/acl_table_1.json" - - priority_value: Specify the maximum priority to use when loading ACL rules. Example: config acl update full "--max-priority 100 /etc/sonic/acl_table_1.json" - - *NOTE 1: All these optional parameters should be inside double quotes. If none of the options are provided, double quotes are not required for specifying filename alone.* - *NOTE 2: Any number of optional parameters can be configured in the same command.* - -- Examples: - ``` - admin@sonic:~$ sudo config acl update full /etc/sonic/acl_full_snmp_1_2_ssh_4.json - admin@sonic:~$ sudo config acl update full "--table_name SNMP-ACL /etc/sonic/acl_full_snmp_1_2_ssh_4.json" - admin@sonic:~$ sudo config acl update full "--session_name everflow0 /etc/sonic/acl_full_snmp_1_2_ssh_4.json" - ``` - - This command will remove all rules from all the ACL tables and insert all the rules present in this input file. - Refer the example file [acl_full_snmp_1_2_ssh_4.json](#) that adds two rules for SNMP (Rule1 and Rule2) and one rule for SSH (Rule4) - Refer an example for input file format [here](https://github.com/Azure/sonic-mgmt/blob/master/ansible/roles/test/files/helpers/config_service_acls.sh) - Refer another example [here](https://github.com/Azure/sonic-mgmt/blob/master/ansible/roles/test/tasks/acl/acltb_test_rules_part_1.json) - -**config acl update incremental** - -This command is used to perform incremental update of ACL rule table. This command gets existing rules from Config DB and compares with rules specified in input file and performs corresponding modifications. - -With respect to DATA ACLs, the command does not assume that new dataplane ACLs can be inserted in betweeen by shifting existing ACLs in all ASICs. Therefore, this command performs a full update on dataplane ACLs. -With respect to control plane ACLs, this command performs an incremental update. -If we assume that "file1.json" is the already loaded ACL rules file and if "file2.json" is the input file that is passed as parameter for this command, the following requirements are valid for the input file. -1) First copy the file1.json to file2.json. -2) Remove the unwanted ACL rules from file2.json -3) Add the newly required ACL rules into file2.json. -4) Modify the existing ACL rules (that require changes) in file2.json. - -NOTE: If any ACL rule that is already available in file1.json is required even after this command execution, such rules should remain unalterted in file2.json. Don't remove them. -Note that "incremental" is working like "full". - -When "--session_name" optional argument is specified, command sets the session_name for the ACL table with this mirror session name. It fails if the specified mirror session name does not exist. - -When "--mirror_stage" optional argument is specified, command sets the mirror action to ingress/egress based on this parameter. By default command sets ingress mirror action in case argument is not specified. - -When the optional argument "max_priority" is specified, each rule’s priority is calculated by subtracting its “sequence_id” value from the “max_priority”. If this value is not passed, the default “max_priority” 10000 is used. - -- Usage: - ``` - config acl update incremental [--session_name ] [--mirror_stage (ingress | egress)] [--max_priority ] - ``` - - - Parameters: - - table_name: Specifiy the name of the ACL table to load. Example: config acl update full "--table_name DT_ACL_T1 /etc/sonic/acl_table_1.json" - - session_name: Specifiy the name of the ACL session to load. Example: config acl update full "--session_name mirror_ses1 /etc/sonic/acl_table_1.json" - - priority_value: Specify the maximum priority to use when loading ACL rules. Example: config acl update full "--max-priority 100 /etc/sonic/acl_table_1.json" - - *NOTE 1: All these optional parameters should be inside double quotes. If none of the options are provided, double quotes are not required for specifying filename alone.* - *NOTE 2: Any number of optional parameters can be configured in the same command.* - -- Examples: - ``` - admin@sonic:~$ sudo config acl update incremental /etc/sonic/acl_incremental_snmp_1_3_ssh_4.json - ``` - ``` - admin@sonic:~$ sudo config acl update incremental "--session_name everflow0 /etc/sonic/acl_incremental_snmp_1_3_ssh_4.json" - ``` - - Refer the example file [acl_incremental_snmp_1_3_ssh_4.json](#) that adds two rules for SNMP (Rule1 and Rule3) and one rule for SSH (Rule4) - When this "incremental" command is executed after "full" command, it has removed SNMP Rule2 and added SNMP Rule3 in the example. - File "acl_full_snmp_1_2_ssh_4.json" has got SNMP Rule1, SNMP Rule2 and SSH Rule4. - File "acl_incremental_snmp_1_3_ssh_4.json" has got SNMP Rule1, SNMP Rule3 and SSH Rule4. - This file is created by copying the file "acl_full_snmp_1_2_ssh_4.json" to "acl_incremental_snmp_1_3_ssh_4.json" and then removing SNMP Rule2 and adding SNMP Rule3. - -Go Back To [Beginning of the document](#) or [Beginning of this section](#acl) - -**config acl add table** - -This command is used to create new ACL tables. - -- Usage: - ``` - config acl add table [OPTIONS] [-d ] [-p ] [-s (ingress | egress)] - ``` - -- Parameters: - - table_name: The name of the ACL table to create. - - table_type: The type of ACL table to create (e.g. "L3", "L3V6", "MIRROR") - - description: A description of the table for the user. (default is the table_name) - - ports: A comma-separated list of ports/interfaces to add to the table. The behavior is as follows: - - Physical ports will be bound as physical ports - - Portchannels will be bound as portchannels - passing a portchannel member is invalid - - VLANs will be expanded into their members (e.g. "Vlan1000" will become "Ethernet0,Ethernet2,Ethernet4...") - - stage: The stage this ACL table will be applied to, either ingress or egress. (default is ingress) - -- Examples: - ``` - admin@sonic:~$ sudo config acl add table EXAMPLE L3 -p Ethernet0,Ethernet4 -s ingress - ``` - ``` - admin@sonic:~$ sudo config acl add table EXAMPLE_2 L3V6 -p Vlan1000,PortChannel0001,Ethernet128 -s egress - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#acl) - - -## ARP & NDP - -### ARP show commands - -**show arp** - -This command displays the ARP entries in the device with following options. -1) Display the entire table. -2) Display the ARP entries learnt on a specific interface. -3) Display the ARP of a specific ip-address. - -- Usage: - ``` - show arp [-if ] [] - ``` - -- Details: - - show arp: Displays all entries - - show arp -if : Displays the ARP specific to the specified interface. - - show arp : Displays the ARP specific to the specicied ip-address. - - -- Example: - ``` - admin@sonic:~$ show arp - Address MacAddress Iface Vlan - ------------- ----------------- ------- ------ - 192.168.1.183 88:5a:92:fb:bf:41 Ethernet44 - - 192.168.1.175 88:5a:92:fc:95:81 Ethernet28 - - 192.168.1.181 e4:c7:22:c1:07:7c Ethernet40 - - 192.168.1.179 88:5a:92:de:a8:bc Ethernet36 - - 192.168.1.118 00:1c:73:3c:de:43 Ethernet64 - - 192.168.1.11 00:1c:73:3c:e1:38 Ethernet88 - - 192.168.1.161 24:e9:b3:71:3a:01 Ethernet0 - - 192.168.1.189 24:e9:b3:9d:57:41 Ethernet56 - - 192.168.1.187 74:26:ac:8b:8f:c1 Ethernet52 - - 192.168.1.165 88:5a:92:de:a0:7c Ethernet8 - - - Total number of entries 10 - ``` - -Optionally, you can specify the interface in order to display the ARPs learnt on that particular interface - -- Example: - ``` - admin@sonic:~$ show arp -if Ethernet40 - Address MacAddress Iface Vlan - ------------- ----------------- ---------- ------ - 192.168.1.181 e4:c7:22:c1:07:7c Ethernet40 - - Total number of entries 1 - ``` - -Optionally, you can specify an IP address in order to display only that particular entry - -- Example: - ``` - admin@sonic:~$ show arp 192.168.1.181 - Address MacAddress Iface Vlan - ------------- ----------------- ---------- ------ - 192.168.1.181 e4:c7:22:c1:07:7c Ethernet40 - - Total number of entries 1 - ``` - -### NDP show commands - -**show ndp** - -This command displays either all the IPv6 neighbor mac addresses, or for a particular IPv6 neighbor, or for all IPv6 neighbors reachable via a specific interface. - -- Usage: - ``` - show ndp [-if|--iface ] - ``` - -- Example (show all IPv6 neighbors): - ``` - admin@sonic:~$ show ndp - Address MacAddress Iface Vlan Status - ------------------------ ----------------- ------- ------ --------- - fe80::20c:29ff:feb8:b11e 00:0c:29:b8:b1:1e eth0 - REACHABLE - fe80::20c:29ff:feb8:cff0 00:0c:29:b8:cf:f0 eth0 - REACHABLE - fe80::20c:29ff:fef9:324 00:0c:29:f9:03:24 eth0 - REACHABLE - Total number of entries 3 - ``` - -- Example (show specific IPv6 neighbor): - ``` - admin@sonic:~$ show ndp fe80::20c:29ff:feb8:b11e - Address MacAddress Iface Vlan Status - ------------------------ ----------------- ------- ------ --------- - fe80::20c:29ff:feb8:b11e 00:0c:29:b8:b1:1e eth0 - REACHABLE - Total number of entries 1 - ``` - -- Example (show IPv6 neighbors learned on a specific interface): - ``` - admin@sonic:~$ show ndp -if eth0 - Address MacAddress Iface Vlan Status - ------------------------ ----------------- ------- ------ --------- - fe80::20c:29ff:feb8:b11e 00:0c:29:b8:b1:1e eth0 - REACHABLE - fe80::20c:29ff:feb8:cff0 00:0c:29:b8:cf:f0 eth0 - REACHABLE - fe80::20c:29ff:fef9:324 00:0c:29:f9:03:24 eth0 - REACHABLE - Total number of entries 3 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#arp--ndp) - -## BFD - -### BFD show commands - -**show bfd summary** - -This command displays the state and key parameters of all BFD sessions. - -- Usage: - ``` - show bgp summary - ``` -- Example: - ``` - >> show bfd summary - Total number of BFD sessions: 3 - Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop - ----------- ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- - 10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true - 10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false - 2000::10:1 default default UP async_active 2000::1 100 700 3 false - ``` - -**show bfd peer** - -This command displays the state and key parameters of all BFD sessions that match an IP address. - -- Usage: - ``` - show bgp peer - ``` -- Example: - ``` - >> show bfd peer 10.0.1.1 - Total number of BFD sessions for peer IP 10.0.1.1: 1 - Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop - ----------- ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- - 10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true - ``` - -## BGP - -This section explains all the BGP show commands and BGP configuation commands in both "Quagga" and "FRR" routing software that are supported in SONiC. -In 201811 and older verisons "Quagga" was enabled by default. In current version "FRR" is enabled by default. -Most of the FRR show commands start with "show bgp". Similar commands in Quagga starts with "show ip bgp". All sub-options supported in all these show commands are common for FRR and Quagga. -Detailed show commands examples for Quagga are provided at the end of this document.This section captures only the commands supported by FRR. - -### BGP show commands - - -**show bgp summary (Versions >= 201904 using default FRR routing stack)** - -**show ip bgp summary (Versions <= 201811 using Quagga routing stack)** - -This command displays the summary of all IPv4 & IPv6 bgp neighbors that are configured and the corresponding states. - -- Usage: - - *Versions >= 201904 using default FRR routing stack* - ``` - show bgp summary - ``` - *Versions <= 201811 using Quagga routing stack* - ``` - show ip bgp summary - ``` - -- Example: - ``` - admin@sonic:~$ show ip bgp summary - - IPv4 Unicast Summary: - BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 - BGP table version 6465 - RIB entries 12807, using 2001 KiB of memory - Peers 4, using 83 KiB of memory - Peer groups 2, using 128 bytes of memory - - Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName - 10.0.0.57 4 64600 3995 4001 0 0 0 00:39:32 6400 Lab-T1-01 - 10.0.0.59 4 64600 3995 3998 0 0 0 00:39:32 6400 Lab-T1-02 - 10.0.0.61 4 64600 3995 4001 0 0 0 00:39:32 6400 Lab-T1-03 - 10.0.0.63 4 64600 3995 3998 0 0 0 00:39:32 6400 NotAvailable - - Total number of neighbors 4 - ``` - -- Example: - ``` - admin@sonic:~$ show bgp summary - - IPv4 Unicast Summary: - BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 - BGP table version 6465 - RIB entries 12807, using 2001 KiB of memory - Peers 4, using 83 KiB of memory - Peer groups 2, using 128 bytes of memory - - Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd - 10.0.0.57 4 64600 3995 4001 0 0 0 00:39:32 6400 - 10.0.0.59 4 64600 3995 3998 0 0 0 00:39:32 6400 - 10.0.0.61 4 64600 3995 4001 0 0 0 00:39:32 6400 - 10.0.0.63 4 64600 3995 3998 0 0 0 00:39:32 6400 - - Total number of neighbors 4 - - IPv6 Unicast Summary: - BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 - BGP table version 12803 - RIB entries 12805, using 2001 KiB of memory - Peers 4, using 83 KiB of memory - Peer groups 2, using 128 bytes of memory - - Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd - fc00::72 4 64600 3995 5208 0 0 0 00:39:30 6400 - fc00::76 4 64600 3994 5208 0 0 0 00:39:30 6400 - fc00::7a 4 64600 3993 5208 0 0 0 00:39:30 6400 - fc00::7e 4 64600 3993 5208 0 0 0 00:39:30 6400 - - Total number of neighbors 4 - ``` - Click [here](#Quagga-BGP-Show-Commands) to see the example for "show ip bgp summary" for Quagga. - - - -**show bgp neighbors (Versions >= 201904 using default FRR routing stack)** - -**show ip bgp neighbors (Versions <= 201811 using Quagga routing stack)** - -This command displays all the details of IPv4 & IPv6 BGP neighbors when no optional argument is specified. - -When the optional argument IPv4_address is specified, it displays the detailed neighbor information about that specific IPv4 neighbor. - -Command has got additional optional arguments to display only the advertised routes, or the received routes, or all routes. - -In order to get details for an IPv6 neigbor, use "show bgp ipv6 neighbor " command. - - -- Usage: - - *Versions >= 201904 using default FRR routing stack* - ``` - show bgp neighbors [ [advertised-routes | received-routes | routes]] - ``` - *Versions <= 201811 using Quagga routing stack* - ``` - show ip bgp neighbors [ [advertised-routes | received-routes | routes]] - ``` - -- Example: - ``` - admin@sonic:~$ show bgp neighbors - BGP neighbor is 10.0.0.57, remote AS 64600, local AS 65100, external link - Description: ARISTA01T1 - BGP version 4, remote router ID 100.1.0.29, local router ID 10.1.0.32 - BGP state = Established, up for 00:42:15 - Last read 00:00:00, Last write 00:00:03 - Hold time is 10, keepalive interval is 3 seconds - Configured hold time is 10, keepalive interval is 3 seconds - Neighbor capabilities: - 4 Byte AS: advertised and received - AddPath: - IPv4 Unicast: RX advertised IPv4 Unicast and received - Route refresh: advertised and received(new) - Address Family IPv4 Unicast: advertised and received - Hostname Capability: advertised (name: sonic-z9264f-9251,domain name: n/a) not received - Graceful Restart Capabilty: advertised and received - Remote Restart timer is 300 seconds - Address families by peer: - none - Graceful restart information: - End-of-RIB send: IPv4 Unicast - End-of-RIB received: IPv4 Unicast - Message statistics: - Inq depth is 0 - Outq depth is 0 - Sent Rcvd - Opens: 2 1 - Notifications: 2 0 - Updates: 3206 3202 - Keepalives: 845 847 - Route Refresh: 0 0 - Capability: 0 0 - Total: 4055 4050 - Minimum time between advertisement runs is 0 seconds - - For address family: IPv4 Unicast - Update group 1, subgroup 1 - Packet Queue length 0 - Inbound soft reconfiguration allowed - Community attribute sent to this neighbor(all) - 6400 accepted prefixes - - Connections established 1; dropped 0 - Last reset 00:42:37, due to NOTIFICATION sent (Cease/Connection collision resolution) - Local host: 10.0.0.56, Local port: 179 - Foreign host: 10.0.0.57, Foreign port: 46419 - Nexthop: 10.0.0.56 - Nexthop global: fc00::71 - Nexthop local: fe80::2204:fff:fe36:9449 - BGP connection: shared network - BGP Connect Retry Timer in Seconds: 120 - Read thread: on Write thread: on - ``` - -Optionally, you can specify an IP address in order to display only that particular neighbor. In this mode, you can optionally specify whether you want to display all routes advertised to the specified neighbor, all routes received from the specified neighbor or all routes (received and accepted) from the specified neighbor. - -- Example: - ``` - admin@sonic:~$ show bgp neighbors 10.0.0.57 - - admin@sonic:~$ show bgp neighbors 10.0.0.57 advertised-routes - - admin@sonic:~$ show bgp neighbors 10.0.0.57 received-routes - - admin@sonic:~$ show bgp neighbors 10.0.0.57 routes - ``` - - Click [here](#Quagga-BGP-Show-Commands) to see the example for "show ip bgp neighbors" for Quagga. - - -**show ip bgp network [[|] [(bestpath | multipath | longer-prefixes | json)]] - -This command displays all the details of IPv4 Border Gateway Protocol (BGP) prefixes. - -- Usage: - - - ``` - show ip bgp network [[|] [(bestpath | multipath | longer-prefixes | json)]] - ``` - -- Example: - - NOTE: The "longer-prefixes" option is only available when a network prefix with a "/" notation is used. - - ``` - admin@sonic:~$ show ip bgp network - - admin@sonic:~$ show ip bgp network 10.1.0.32 bestpath - - admin@sonic:~$ show ip bgp network 10.1.0.32 multipath - - admin@sonic:~$ show ip bgp network 10.1.0.32 json - - admin@sonic:~$ show ip bgp network 10.1.0.32/32 bestpath - - admin@sonic:~$ show ip bgp network 10.1.0.32/32 multipath - - admin@sonic:~$ show ip bgp network 10.1.0.32/32 json - - admin@sonic:~$ show ip bgp network 10.1.0.32/32 longer-prefixes - ``` - -**show bgp ipv6 summary (Versions >= 201904 using default FRR routing stack)** - -**show ipv6 bgp summary (Versions <= 201811 using Quagga routing stack)** - -This command displays the summary of all IPv6 bgp neighbors that are configured and the corresponding states. - -- Usage: - - *Versions >= 201904 using default FRR routing stack* - ``` - show bgp ipv6 summary - ``` - *Versions <= 201811 using Quagga routing stack* - ``` - show ipv6 bgp summary - ``` - -- Example: - ``` - admin@sonic:~$ show bgp ipv6 summary - BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 - BGP table version 12803 - RIB entries 12805, using 2001 KiB of memory - Peers 4, using 83 KiB of memory - Peer groups 2, using 128 bytes of memory - - Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName - fc00::72 4 64600 3995 5208 0 0 0 00:39:30 6400 Lab-T1-01 - fc00::76 4 64600 3994 5208 0 0 0 00:39:30 6400 Lab-T1-02 - fc00::7a 4 64600 3993 5208 0 0 0 00:39:30 6400 Lab-T1-03 - fc00::7e 4 64600 3993 5208 0 0 0 00:39:30 6400 Lab-T1-04 - - Total number of neighbors 4 - ``` - Click [here](#Quagga-BGP-Show-Commands) to see the example for "show ipv6 bgp summary" for Quagga. - - - -**show bgp ipv6 neighbors (Versions >= 201904 using default FRR routing stack)** - -**show ipv6 bgp neighbors (Versions <= 201811 using Quagga routing stack)** - -This command displays all the details of one particular IPv6 Border Gateway Protocol (BGP) neighbor. Option is also available to display only the advertised routes, or the received routes, or all routes. - - -- Usage: - - *Versions >= 201904 using default FRR routing stack* - ``` - show bgp ipv6 neighbors [ [(advertised-routes | received-routes | routes)]] - ``` - *Versions <= 201811 using Quagga routing stack* - ``` - show ipv6 bgp neighbors [ [(advertised-routes | received-routes | routes)]] - ``` - -- Example: - ``` - admin@sonic:~$ show bgp ipv6 neighbors fc00::72 advertised-routes - - admin@sonic:~$ show bgp ipv6 neighbors fc00::72 received-routes - - admin@sonic:~$ show bgp ipv6 neighbors fc00::72 routes - ``` - Click [here](#Quagga-BGP-Show-Commands) to see the example for "show ip bgp summary" for Quagga. - - -**show ipv6 bgp network [[|] [(bestpath | multipath | longer-prefixes | json)]] - -This command displays all the details of IPv6 Border Gateway Protocol (BGP) prefixes. - -- Usage: - - - ``` - show ipv6 bgp network [[|] [(bestpath | multipath | longer-prefixes | json)]] - ``` - -- Example: - - NOTE: The "longer-prefixes" option is only available when a network prefix with a "/" notation is used. - - ``` - admin@sonic:~$ show ipv6 bgp network - - admin@sonic:~$ show ipv6 bgp network fc00::72 bestpath - - admin@sonic:~$ show ipv6 bgp network fc00::72 multipath - - admin@sonic:~$ show ipv6 bgp network fc00::72 json - - admin@sonic:~$ show ipv6 bgp network fc00::72/64 bestpath - - admin@sonic:~$ show ipv6 bgp network fc00::72/64 multipath - - admin@sonic:~$ show ipv6 bgp network fc00::72/64 json - - admin@sonic:~$ show ipv6 bgp network fc00::72/64 longer-prefixes - ``` - - - - -**show route-map** - -This command displays the routing policy that takes precedence over the other route processes that are configured. - -- Usage: - ``` - show route-map - ``` - -- Example: - ``` - admin@sonic:~$ show route-map - ZEBRA: - route-map RM_SET_SRC, permit, sequence 10 - Match clauses: - Set clauses: - src 10.12.0.102 - Call clause: - Action: - Exit routemap - ZEBRA: - route-map RM_SET_SRC6, permit, sequence 10 - Match clauses: - Set clauses: - src fc00:1::102 - Call clause: - Action: - Exit routemap - BGP: - route-map FROM_BGP_SPEAKER_V4, permit, sequence 10 - Match clauses: - Set clauses: - Call clause: - Action: - Exit routemap - BGP: - route-map TO_BGP_SPEAKER_V4, deny, sequence 10 - Match clauses: - Set clauses: - Call clause: - Action: - Exit routemap - BGP: - route-map ISOLATE, permit, sequence 10 - Match clauses: - Set clauses: - as-path prepend 65000 - Call clause: - Action: - Exit routemap - ``` - - -### BGP config commands - -This sub-section explains the list of configuration options available for BGP module for both IPv4 and IPv6 BGP neighbors. - -**config bgp shutdown all** - -This command is used to shutdown all the BGP IPv4 & IPv6 sessions. -When the session is shutdown using this command, BGP state in "show ip bgp summary" is displayed as "Idle (Admin)" - -- Usage: - ``` - config bgp shutdown all - ``` - -- Example: - ``` - admin@sonic:~$ sudo config bgp shutdown all - ``` - -**config bgp shutdown neighbor** - -This command is to shut down a BGP session with a neighbor by that neighbor's IP address or hostname - -- Usage: - ``` - sudo config bgp shutdown neighbor ( | ) - ``` - -- Examples: - ``` - admin@sonic:~$ sudo config bgp shutdown neighbor 192.168.1.124 - ``` - ``` - admin@sonic:~$ sudo config bgp shutdown neighbor SONIC02SPINE - ``` - - -**config bgp startup all** - -This command is used to start up all the IPv4 & IPv6 BGP neighbors - -- Usage: - ``` - config bgp startup all - ``` - -- Example: - ``` - admin@sonic:~$ sudo config bgp startup all - ``` - - -**config bgp startup neighbor** - -This command is used to start up the particular IPv4 or IPv6 BGP neighbor using either the IP address or hostname. - -- Usage: - ``` - config bgp startup neighbor ( | ) - ``` - -- Examples: - ``` - admin@sonic:~$ sudo config bgp startup neighbor 192.168.1.124 - ``` - ``` - admin@sonic:~$ sudo config bgp startup neighbor SONIC02SPINE - ``` - - -**config bgp remove neighbor** - -This command is used to remove particular IPv4 or IPv6 BGP neighbor configuration using either the IP address or hostname. - -- Usage: - ``` - config bgp remove neighbor - ``` - -- Examples: - ``` - admin@sonic:~$ sudo config bgp remove neighbor 192.168.1.124 - ``` - ``` - admin@sonic:~$ sudo config bgp remove neighbor 2603:10b0:b0f:346::4a - ``` - ``` - admin@sonic:~$ sudo config bgp remove neighbor SONIC02SPINE - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#bgp) - -## Console - -This section explains all Console show commands and configuration options that are supported in SONiC. - -All commands are used only when SONiC is used as console switch. - -All commands under this section are not applicable when SONiC used as regular switch. - -### Console show commands - -**show line** - -This command displays serial port or a virtual network connection status. - -- Usage: - ``` - show line (-b|--breif) - ``` - -- Example: - ``` - admin@sonic:~$ show line - Line Baud Flow Control PID Start Time Device - ------ ------ -------------- ----- ------------ -------- - 1 9600 Enabled - - switch1 - 2 - Disabled - - - 3 - Disabled - - - 4 - Disabled - - - 5 - Disabled - - - ``` - -Optionally, you can display configured console ports only by specifying the `-b` or `--breif` flag. - -- Example: - ``` - admin@sonic:~$ show line -b - Line Baud Flow Control PID Start Time Device - ------ ------ -------------- ----- ------------ -------- - 1 9600 Enabled - - switch1 - ``` - -## Console config commands - -This sub-section explains the list of configuration options available for console management module. - -**config console enable** - -This command is used to enable SONiC console switch feature. - -- Usage: - ``` - config console enable - ``` - -- Example: - ``` - admin@sonic:~$ sudo config console enable - ``` - -**config console disable** - -This command is used to disable SONiC console switch feature. - -- Usage: - ``` - config console disable - ``` - -- Example: - ``` - admin@sonic:~$ sudo config console disable - ``` - -**config console add** - -This command is used to add a console port setting. - -- Usage: - ``` - config console add [--baud|-b ] [--flowcontrol|-f] [--devicename|-d ] - ``` - -- Example: - ``` - admin@sonic:~$ config console add 1 --baud 9600 --devicename switch1 - ``` - -**config console del** - -This command is used to remove a console port setting. - -- Usage: - ``` - config console del - ``` - -- Example: - ``` - admin@sonic:~$ sudo config console del 1 - ``` - -**config console remote_device** - -This command is used to update the remote device name for a console port. - -- Usage: - ``` - config console remote_device - ``` - -- Example: - ``` - admin@sonic:~$ sudo config console remote_device 1 switch1 - ``` - -**config console baud** - -This command is used to update the baud rate for a console port. - -- Usage: - ``` - config console baud - ``` - -- Example: - ``` - admin@sonic:~$ sudo config console baud 1 9600 - ``` - -**config console flow_control** - -This command is used to enable or disable flow control feature for a console port. - -- Usage: - ``` - config console flow_control {enable|disable} - ``` - -- Example: - ``` - admin@sonic:~$ sudo config console flow_control enable 1 - ``` - -### Console connect commands - -**connect line** - -This command allows user to connect to a remote device via console line with an interactive cli. - -- Usage: - ``` - connect line (-d|--devicename) - ``` - -By default, the target is `port_name`. - -- Example: - ``` - admin@sonic:~$ connect line 1 - Successful connection to line 1 - Press ^A ^X to disconnect - ``` - -Optionally, you can connect with a remote device name by specifying the `-d` or `--devicename` flag. - -- Example: - ``` - admin@sonic:~$ connect line --devicename switch1 - Successful connection to line 1 - Press ^A ^X to disconnect - ``` - -**connect device** - -This command allows user to connect to a remote device via console line with an interactive cli. - -- Usage: - ``` - connect device - ``` - -The command is same with `connect line --devicename ` - -- Example: - ``` - admin@sonic:~$ connect line 1 - Successful connection to line 1 - Press ^A ^X to disconnect - ``` - -### Console clear commands - -**sonic-clear line** - -This command allows user to connect to a remote device via console line with an interactive cli. - -- Usage: - ``` - sonc-clear line (-d|--devicename) - ``` - -By default, the target is `port_name`. - -- Example: - ``` - admin@sonic:~$ sonic-clear line 1 - ``` - -Optionally, you can clear with a remote device name by specifying the `-d` or `--devicename` flag. - -- Example: - ``` - admin@sonic:~$ sonic-clear --devicename switch1 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#console) - - -## DHCP Relay - -### DHCP Relay config commands - -This sub-section of commands is used to add or remove the DHCP Relay Destination IP address(es) for a VLAN interface. - -**config vlan dhcp_relay add** - -This command is used to add a DHCP Relay Destination IP address or multiple IP addresses to a VLAN. Note that more than one DHCP Relay Destination IP address can be added on a VLAN interface. - -- Usage: - ``` - config vlan dhcp_relay add - ``` - -- Example: - ``` - admin@sonic:~$ sudo config vlan dhcp_relay add 1000 7.7.7.7 - Added DHCP relay destination address ['7.7.7.7'] to Vlan1000 - Restarting DHCP relay service... - ``` - ``` - admin@sonic:~$ sudo config vlan dhcp_relay add 1000 7.7.7.7 1.1.1.1 - Added DHCP relay destination address ['7.7.7.7', '1.1.1.1'] to Vlan1000 - Restarting DHCP relay service... - ``` - -**config vlan dhcp_relay delete** - -This command is used to delete a configured DHCP Relay Destination IP address or multiple IP addresses from a VLAN interface. - -- Usage: - ``` - config vlan dhcp_relay del - ``` - -- Example: - ``` - admin@sonic:~$ sudo config vlan dhcp_relay del 1000 7.7.7.7 - Removed DHCP relay destination address 7.7.7.7 from Vlan1000 - Restarting DHCP relay service... - ``` - ``` - admin@sonic:~$ sudo config vlan dhcp_relay del 1000 7.7.7.7 1.1.1.1 - Removed DHCP relay destination address ('7.7.7.7', '1.1.1.1') from Vlan1000 - Restarting DHCP relay service... - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#dhcp-relay) - - -## Drop Counters - -This section explains all the Configurable Drop Counters show commands and configuration options that are supported in SONiC. - -### Drop Counters show commands - -**show dropcounters capabilities** - -This command is used to show the drop counter capabilities that are available on this device. It displays the total number of drop counters that can be configured on this device as well as the drop reasons that can be configured for the counters. - -- Usage: - ``` - show dropcounters capabilities - ``` - -- Examples: - ``` - admin@sonic:~$ show dropcounters capabilities - Counter Type Total - -------------------- ------- - PORT_INGRESS_DROPS 3 - SWITCH_EGRESS_DROPS 2 - - PORT_INGRESS_DROPS: - L2_ANY - SMAC_MULTICAST - SMAC_EQUALS_DMAC - INGRESS_VLAN_FILTER - EXCEEDS_L2_MTU - SIP_CLASS_E - SIP_LINK_LOCAL - DIP_LINK_LOCAL - UNRESOLVED_NEXT_HOP - DECAP_ERROR - - SWITCH_EGRESS_DROPS: - L2_ANY - L3_ANY - A_CUSTOM_REASON - ``` - -**show dropcounters configuration** - -This command is used to show the current running configuration of the drop counters on this device. - -- Usage: - ``` - show dropcounters configuration [-g ] - ``` - -- Examples: - ``` - admin@sonic:~$ show dropcounters configuration - Counter Alias Group Type Reasons Description - -------- -------- ----- ------------------ ------------------- -------------- - DEBUG_0 RX_LEGIT LEGIT PORT_INGRESS_DROPS SMAC_EQUALS_DMAC Legitimate port-level RX pipeline drops - INGRESS_VLAN_FILTER - DEBUG_1 TX_LEGIT None SWITCH_EGRESS_DROPS EGRESS_VLAN_FILTER Legitimate switch-level TX pipeline drops - - admin@sonic:~$ show dropcounters configuration -g LEGIT - Counter Alias Group Type Reasons Description - -------- -------- ----- ------------------ ------------------- -------------- - DEBUG_0 RX_LEGIT LEGIT PORT_INGRESS_DROPS SMAC_EQUALS_DMAC Legitimate port-level RX pipeline drops - INGRESS_VLAN_FILTER - ``` - -**show dropcounters counts** - -This command is used to show the current statistics for the configured drop counters. Standard drop counters are displayed as well for convenience. - -Because clear (see below) is handled on a per-user basis different users may see different drop counts. - -- Usage: - ``` - show dropcounters counts [-g ] [-t ] - ``` - -- Example: - ``` - admin@sonic:~$ show dropcounters counts - IFACE STATE RX_ERR RX_DROPS TX_ERR TX_DROPS RX_LEGIT - --------- ------- -------- ---------- -------- ---------- --------- - Ethernet0 U 10 100 0 0 20 - Ethernet4 U 0 1000 0 0 100 - Ethernet8 U 100 10 0 0 0 - - DEVICE TX_LEGIT - ------ -------- - sonic 1000 - - admin@sonic:~$ show dropcounters counts -g LEGIT - IFACE STATE RX_ERR RX_DROPS TX_ERR TX_DROPS RX_LEGIT - --------- ------- -------- ---------- -------- ---------- --------- - Ethernet0 U 10 100 0 0 20 - Ethernet4 U 0 1000 0 0 100 - Ethernet8 U 100 10 0 0 0 - - admin@sonic:~$ show dropcounters counts -t SWITCH_EGRESS_DROPS - DEVICE TX_LEGIT - ------ -------- - sonic 1000 - ``` - -### Drop Counters config commands - -**config dropcounters install** - -This command is used to initialize a new drop counter. The user must specify a name, type, and initial list of drop reasons. - -This command will fail if the given name is already in use, if the type of counter is not supported, or if any of the specified drop reasons are not supported. It will also fail if all avaialble counters are already in use on the device. - -- Usage: - ``` - config dropcounters install [-d ] [-g ] [-a ] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config dropcounters install DEBUG_2 PORT_INGRESS_DROPS [EXCEEDS_L2_MTU,DECAP_ERROR] -d "More port ingress drops" -g BAD -a BAD_DROPS - ``` - -**config dropcounters add_reasons** - -This command is used to add drop reasons to an already initialized counter. - -This command will fail if any of the specified drop reasons are not supported. - -- Usage: - ``` - config dropcounters add_reasons - ``` - -- Example: - ``` - admin@sonic:~$ sudo config dropcounters add_reasons DEBUG_2 [SIP_CLASS_E] - ``` - -**config dropcounters remove_reasons** - -This command is used to remove drop reasons from an already initialized counter. - -- Usage: - ``` - config dropcounters remove_reasons - ``` - -- Example: - ``` - admin@sonic:~$ sudo config dropcounters remove_reasons DEBUG_2 [SIP_CLASS_E] - ``` - -**config dropcounters delete** - -This command is used to delete a drop counter. - -- Usage: - ``` - config dropcounters delete - ``` - -- Example: - ``` - admin@sonic:~$ sudo config dropcounters delete DEBUG_2 - ``` - -### Drop Counters clear commands - -**sonic-clear dropcounters** - -This comnmand is used to clear drop counters. This is done on a per-user basis. - -- Usage: - ``` - sonic-clear dropcounters - ``` - -- Example: - ``` - admin@sonic:~$ sonic-clear dropcounters - Cleared drop counters - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](##drop-counters) - -## Dynamic Buffer Management - -This section explains all the show and configuration commands regarding the dynamic buffer management. - -Dynamic buffer management is responsible for calculating buffer size according to the ports' configured speed and administrative state. In order to enable dynamic buffer management feature, the ports' speed must be configured. For this please refer [Interface naming mode config commands](#interface-naming-mode-config-commands) - -### Configuration commands - -**configure shared headroom pool** - -This command is used to configure the shared headroom pool. The shared headroom pool can be enabled in the following ways: - -- Configure the over subscribe ratio. In this case, the size of shared headroom pool is calculated as the accumulative xoff of all of the lossless PG divided by the over subscribe ratio. -- Configure the size. - -In case both of the above parameters have been configured, the `size` will take effect. To disable shared headroom pool, configure both parameters to zero. - -- Usage: - - ``` - config buffer shared-headroom-pool over-subscribe-ratio - config buffer shared-headroom-pool size - ``` - - The range of over-subscribe-ratio is from 1 to number of ports inclusive. - -- Example: - - ``` - admin@sonic:~$ sudo config shared-headroom-pool over-subscribe-ratio 2 - admin@sonic:~$ sudo config shared-headroom-pool size 1024000 - ``` - -**configure a lossless buffer profile** - -This command is used to configure a lossless buffer profile. - -- Usage: - - ``` - config buffer profile add --xon --xoff [-size ] [-dynamic_th ] [-pool ] - config buffer profile set --xon --xoff [-size ] [-dynamic_th ] [-pool ] - config buffer profile remove - ``` - - All the parameters are devided to two groups, one for headroom and one for dynamic_th. For any command at lease one group of parameters should be provided. - For headroom parameters: - - - `xon` is madantory. - - If shared headroom pool is disabled: - - At lease one of `xoff` and `size` should be provided and the other will be optional and conducted via the formula `xon + xoff = size`. - - `xon` + `xoff` <= `size`; For Mellanox platform xon + xoff == size - - If shared headroom pool is enabled: - - `xoff` should be provided. - - `size` = `xoff` if it is not provided. - - If only headroom parameters are provided, the `dynamic_th` will be taken from `CONFIG_DB.DEFAULT_LOSSLESS_BUFFER_PARAMETER.default_dynamic_th`. - - If only dynamic_th parameter is provided, the `headroom_type` will be set as `dynamic` and `xon`, `xoff` and `size` won't be set. This is only used for non default dynamic_th. In this case, the profile won't be deployed to ASIC directly. It can be configured to a lossless PG and then a dynamic profile will be generated based on the port's speed, cable length, and MTU and deployed to the ASIC. - - The subcommand `add` is designed for adding a new buffer profile to the system. - - The subcommand `set` is designed for modifying an existing buffer profile in the system. - For a profile with dynamically calculated headroom information, only `dynamic_th` can be modified. - - The subcommand `remove` is designed for removing an existing buffer profile from the system. When removing a profile, it shouldn't be referenced by any entry in `CONFIG_DB.BUFFER_PG`. - -- Example: - - ``` - admin@sonic:~$ sudo config buffer profile add profile1 --xon 18432 --xoff 18432 - admin@sonic:~$ sudo config buffer profile remove profile1 - ``` - -**config interface cable_length** - -This command is used to configure the length of the cable connected to a port. The cable_length is in unit of meters and must be suffixed with "m". - -- Usage: - - ``` - config interface cable_length - ``` - -- Example: - - ``` - admin@sonic:~$ sudo config interface cable_length Ethernet0 40m - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#dynamic-buffer-management) - -**config interface buffer priority-group lossless** - -This command is used to configure the priority groups on which lossless traffic runs. - -- Usage: - - ``` - config interface buffer priority-group lossless add [profile] - config interface buffer priority-group lossless set [profile] - config interface buffer priority-group lossless remove [] - ``` - - The can be in one of the following two forms: - - - For a range of priorities, the lower bound and upper bound connected by a dash, like `3-4` - - For a single priority, the number, like `6` - - The `pg-map` represents the map of priorities for lossless traffic. It should be a string and in form of a bit map like `3-4`. The `-` connects the lower bound and upper bound of a range of priorities. - - The subcommand `add` is designed for adding a new lossless PG on top of current PGs. The new PG range must be disjoint with all existing PGs. - - For example, currently the PG range 3-4 exist on port Ethernet4, to add PG range 4-5 will fail because it isn't disjoint with 3-4. To add PG range 5-6 will succeed. After that both range 3-4 and 5-6 will work as lossless PG. - - The `override-profile` parameter is optional. When provided, it represents the predefined buffer profile for headroom override. - - The subcommand `set` is designed for modifying an existing PG from dynamic calculation to headroom override or vice versa. The `pg-map` must be an existing PG. - - The subcommand `remove` is designed for removing an existing PG. The option `pg-map` must be an existing PG. All lossless PGs will be removed in case no `pg-map` provided. - -- Example: - - To configure lossless_pg on a port: - - ``` - admin@sonic:~$ sudo config interface buffer priority-group lossless add Ethernet0 3-4 - ``` - - To change the profile used for lossless_pg on a port: - - ``` - admin@sonic:~$ sudo config interface buffer priority-group lossless set Ethernet0 3-4 new-profile - ``` - - To remove one lossless priority from a port: - - ``` - admin@sonic:~$ sudo config interface buffer priority-group lossless remove Ethernet0 6 - ``` - - To remove all lossless priorities from a port: - - ``` - admin@sonic:~$ sudo config interface buffer priority-group lossless remove Ethernet0 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#dynamic-buffer-management) - -**config interface buffer queue** - -This command is used to configure the buffer profiles for queues. - -- Usage: - - ``` - config interface buffer queue add - config interface buffer queue set - config interface buffer queue remove - ``` - - The represents the map of queues. It can be in one of the following two forms: - - - For a range of priorities, the lower bound and upper bound connected by a dash, like `3-4` - - For a single priority, the number, like `6` - - The subcommand `add` is designed for adding a buffer profile for a group of queues. The new queue range must be disjoint with all queues with buffer profile configured. - - For example, currently the buffer profile configured on queue 3-4 on port Ethernet4, to configure buffer profile on queue 4-5 will fail because it isn't disjoint with 3-4. To configure it on range 5-6 will succeed. - - The `profile` parameter represents a predefined egress buffer profile to be configured on the queues. - - The subcommand `set` is designed for modifying an existing group of queues. - - The subcommand `remove` is designed for removing buffer profile on an existing group of queues. - -- Example: - - To configure buffer profiles for queues on a port: - - ``` - admin@sonic:~$ sudo config interface buffer queue add Ethernet0 3-4 egress_lossless_profile - ``` - - To change the profile used for queues on a port: - - ``` - admin@sonic:~$ sudo config interface buffer queue set Ethernet0 3-4 new-profile - ``` - - To remove a group of queues from a port: - - ``` - admin@sonic:~$ sudo config interface buffer queue remove Ethernet0 3-4 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#dynamic-buffer-management) - -### Show commands - -**show buffer information** - -This command is used to display the status of buffer pools and profiles currently deployed to the ASIC. - -- Usage: - - ``` - show buffer information - ``` - -- Example: - - ``` - admin@sonic:~$ show buffer information - Pool: ingress_lossless_pool - ---- -------- - type ingress - mode dynamic - size 17170432 - ---- -------- - - Pool: egress_lossless_pool - ---- -------- - type egress - mode dynamic - size 34340822 - ---- -------- - - Pool: ingress_lossy_pool - ---- -------- - type ingress - mode dynamic - size 17170432 - ---- -------- - - Pool: egress_lossy_pool - ---- -------- - type egress - mode dynamic - size 17170432 - ---- -------- - - Profile: pg_lossless_100000_5m_profile - ---------- ----------------------------------- - xon 18432 - dynamic_th 0 - xoff 18432 - pool [BUFFER_POOL:ingress_lossless_pool] - size 36864 - ---------- ----------------------------------- - - Profile: q_lossy_profile - ---------- ------------------------------- - dynamic_th 3 - pool [BUFFER_POOL:egress_lossy_pool] - size 0 - ---------- ------------------------------- - - Profile: egress_lossy_profile - ---------- ------------------------------- - dynamic_th 3 - pool [BUFFER_POOL:egress_lossy_pool] - size 4096 - ---------- ------------------------------- - - Profile: egress_lossless_profile - ---------- ---------------------------------- - dynamic_th 7 - pool [BUFFER_POOL:egress_lossless_pool] - size 0 - ---------- ---------------------------------- - - Profile: ingress_lossless_profile - ---------- ----------------------------------- - dynamic_th 0 - pool [BUFFER_POOL:ingress_lossless_pool] - size 0 - ---------- ----------------------------------- - - Profile: pg_lossless_100000_79m_profile - ---------- ----------------------------------- - xon 18432 - dynamic_th 0 - xoff 60416 - pool [BUFFER_POOL:ingress_lossless_pool] - size 78848 - ---------- ----------------------------------- - - Profile: pg_lossless_100000_40m_profile - ---------- ----------------------------------- - xon 18432 - dynamic_th 0 - xoff 38912 - pool [BUFFER_POOL:ingress_lossless_pool] - size 57344 - ---------- ----------------------------------- - - Profile: ingress_lossy_profile - ---------- -------------------------------- - dynamic_th 3 - pool [BUFFER_POOL:ingress_lossy_pool] - size 0 - ---------- -------------------------------- - ``` - -**show buffer configuration** - -This command is used to display the status of buffer pools and profiles currently configured. - -- Usage: - - ``` - show buffer configuration - ``` - -- Example: - - ``` - admin@sonic:~$ show buffer configuration - Lossless traffic pattern: - -------------------- - - default_dynamic_th 0 - over_subscribe_ratio 0 - -------------------- - - - Pool: ingress_lossless_pool - ---- -------- - type ingress - mode dynamic - ---- -------- - - Pool: egress_lossless_pool - ---- -------- - type egress - mode dynamic - size 34340822 - ---- -------- - - Pool: ingress_lossy_pool - ---- -------- - type ingress - mode dynamic - ---- -------- - - Pool: egress_lossy_pool - ---- -------- - type egress - mode dynamic - ---- -------- - - Profile: q_lossy_profile - ---------- ------------------------------- - dynamic_th 3 - pool [BUFFER_POOL:egress_lossy_pool] - size 0 - ---------- ------------------------------- - - Profile: egress_lossy_profile - ---------- ------------------------------- - dynamic_th 3 - pool [BUFFER_POOL:egress_lossy_pool] - size 4096 - ---------- ------------------------------- - - Profile: egress_lossless_profile - ---------- ---------------------------------- - dynamic_th 7 - pool [BUFFER_POOL:egress_lossless_pool] - size 0 - ---------- ---------------------------------- - - Profile: ingress_lossless_profile - ---------- ----------------------------------- - dynamic_th 0 - pool [BUFFER_POOL:ingress_lossless_pool] - size 0 - ---------- ----------------------------------- - - Profile: ingress_lossy_profile - ---------- -------------------------------- - dynamic_th 3 - pool [BUFFER_POOL:ingress_lossy_pool] - size 0 - ---------- -------------------------------- - ``` - -## ECN - -This section explains all the Explicit Congestion Notification (ECN) show commands and ECN configuation options that are supported in SONiC. - -### ECN show commands -This sub-section contains the show commands that are supported in ECN. - -**show ecn** - -This command displays all the WRED profiles that are configured in the device. - -- Usage: - ``` - show ecn - ``` - -- Example: - ``` - admin@sonic:~$ show ecn - Profile: **AZURE_LOSSLESS** - ----------------------- ------- - red_max_threshold 2097152 - red_drop_probability 5 - yellow_max_threshold 2097152 - ecn ecn_all - green_min_threshold 1048576 - red_min_threshold 1048576 - wred_yellow_enable true - yellow_min_threshold 1048576 - green_max_threshold 2097152 - green_drop_probability 5 - wred_green_enable true - yellow_drop_probability 5 - wred_red_enable true - ----------------------- ------- - - Profile: **wredprofileabcd** - ----------------- --- - red_max_threshold 100 - ----------------- --- - ``` - -### ECN config commands - -This sub-section contains the configuration commands that can configure the WRED profiles. - -**config ecn** - -This command configures the possible fields in a particular WRED profile that is specified using "-profile " argument. -The list of the WRED profile fields that are configurable is listed in the below "Usage". - -- Usage: - ``` - config ecn -profile [-rmax ] [-rmin ] [-ymax ] [-ymin ] [-gmax ] [-gmin ] [-v|--verbose] - ``` - - - Parameters: - - profile_name Profile name - - red_threshold_max Set red max threshold - - red_threshold_min Set red min threshold - - yellow_threshold_max Set yellow max threshold - - yellow_threshold_min Set yellow min threshold - - green_threshold_max Set green max threshold - - green_threshold_min Set green min threshold - -- Example (Configures the "red max threshold" for the WRED profile name "wredprofileabcd". It will create the WRED profile if it does not exist.): - ``` - admin@sonic:~$ sudo config ecn -profile wredprofileabcd -rmax 100 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#ecn) - -## Feature - -SONiC includes a capability in which Feature state can be enabled/disabled -which will make corresponding feature docker container to start/stop. - -Also SONiC provide capability in which Feature docker container can be automatically shut -down and restarted if one of critical processes running in the container exits -unexpectedly. Restarting the entire feature container ensures that configuration is -reloaded and all processes in the feature container get restarted, thus increasing the -likelihood of entering a healthy state. - -### Feature show commands - -**show feature config** - -Shows the config of given feature or all if no feature is given. The "fallback" is shown only if configured. The fallback defaults to "true" when not configured. - -- Usage: - ``` - show feature config [] - ``` - -- Example: - ``` - admin@sonic:~$ show feature config - Feature State AutoRestart Owner fallback - -------------- -------- ------------- ------- ---------- - bgp enabled enabled local - database enabled disabled local - dhcp_relay enabled enabled kube - lldp enabled enabled kube true - mgmt-framework enabled enabled local - nat disabled enabled local - pmon enabled enabled kube - radv enabled enabled kube - sflow disabled enabled local - snmp enabled enabled kube - swss enabled enabled local - syncd enabled enabled local - teamd enabled enabled local - telemetry enabled enabled kube - ``` - -**show feature status** - -Shows the status of given feature or all if no feature is given. The "fallback" defaults to "true" when not configured. -The subset of features are configurable for remote management and only those report additional data. - -- Usage: - ``` - show feature status [] - ``` - -- Example: - ``` - admin@sonic:~$ show feature status - Feature State AutoRestart SystemState UpdateTime ContainerId ContainerVersion SetOwner CurrentOwner RemoteState - -------------- -------- ------------- ------------- ------------------- ------------- ------------------ ---------- -------------- ------------- - bgp enabled enabled up local local none - database enabled disabled local - dhcp_relay enabled enabled up 2020-11-15 18:21:09 249e70102f55 20201230.100 kube local - lldp enabled enabled up 2020-11-15 18:21:09 779c2d55ee12 20201230.100 kube local - mgmt-framework enabled enabled up local local none - nat disabled enabled local - pmon enabled enabled up 2020-11-15 18:20:27 a2b9ffa8aba3 20201230.100 kube local - radv enabled enabled up 2020-11-15 18:21:05 d8ff27dcfe46 20201230.100 kube local - sflow disabled enabled local - snmp enabled enabled up 2020-11-15 18:25:51 8b7d5529e306 20201230.111 kube kube running - swss enabled enabled up local local none - syncd enabled enabled up local local none - teamd enabled enabled up local local none - telemetry enabled enabled down 2020-11-15 18:24:59 20201230.100 kube none - ``` - -**config feature owner** - -Configures the owner for a feature as "local" or "kube". The "local" implies starting the feature container from local image. The "kube" implies that kubernetes server is made eligible to deploy the feature. The deployment of a feature by kubernetes is conditional based on many factors like, whether the kube server is configured or not, connected-to-kube-server or not and if that master has manifest for this feature for this switch or not and more. At some point in future, the deployment *could* happen and till that point the feature can run from local image, called "fallback". The fallback is allowed by default and it could be toggled to "not allowed". When fallback is not allowed, the feature would run only upon deployment by kubernetes master. - -- Usage: - ``` - config feature owner [] [local/kube] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config feature owner snmp kube - ``` - -**config feature fallback** - -Features configured for "kube" deployment could be allowed to fallback to using local image, until the point of successful kube deployment. The fallback is allowed by default. - -- Usage: - ``` - config feature fallback [] [on/off] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config feature fallback snmp on - ``` - -**show feature autorestart** - -This command will display the status of auto-restart for feature container. - -- Usage: - ``` - show feature autorestart [] - admin@sonic:~$ show feature autorestart - Feature AutoRestart - ---------- -------------- - bgp enabled - database always_enabled - dhcp_relay enabled - lldp enabled - pmon enabled - radv enabled - snmp enabled - swss enabled - syncd enabled - teamd enabled - telemetry enabled - ``` - -Optionally, you can specify a feature name in order to display -status for that feature - -### Feature config commands - -**config feature state ** - -This command will configure the state for a specific feature. - -- Usage: - ``` - config feature state (enabled | disabled) - admin@sonic:~$ sudo config feature state bgp disabled - ``` - -**config feature autorestart ** - -This command will configure the status of auto-restart for a specific feature container. - -- Usage: - ``` - config feature autorestart (enabled | disabled) - admin@sonic:~$ sudo config feature autorestart bgp disabled - ``` -NOTE: If the existing state or auto-restart value for a feature is "always_enabled" then config -commands are don't care and will not update state/auto-restart value. - -Go Back To [Beginning of the document](#) or [Beginning of this section](#feature) - -## Flow Counters - -This section explains all the Flow Counters show commands, clear commands and config commands that are supported in SONiC. Flow counters are usually used for debugging, troubleshooting and performance enhancement processes. Flow counters supports case like: - - - Host interface traps (number of received traps per Trap ID) - - Routes matching the configured prefix pattern (number of hits and number of bytes) - -### Flow Counters show commands - -**show flowcnt-trap stats** - -This command is used to show the current statistics for the registered host interface traps. - -Because clear (see below) is handled on a per-user basis different users may see different counts. - -- Usage: - ``` - show flowcnt-trap stats - ``` - -- Example: - ``` - admin@sonic:~$ show flowcnt-trap stats - Trap Name Packets Bytes PPS - --------- --------- ------- ------- - dhcp 100 2,000 50.25/s - - For multi-ASIC: - admin@sonic:~$ show flowcnt-trap stats - ASIC ID Trap Name Packets Bytes PPS - ------- ----------- --------- ------- ------- - asic0 dhcp 100 2,000 50.25/s - asic1 dhcp 200 3,000 45.25/s - ``` - -**show flowcnt-route stats** - -This command is used to show the current statistics for route flow patterns. - -Because clear (see below) is handled on a per-user basis different users may see different counts. - -- Usage: - ``` - show flowcnt-route stats - show flowcnt-route stats pattern [--vrf ] - show flowcnt-route stats route [--vrf ] - ``` - -- Example: - ``` - admin@sonic:~$ show flowcnt-route stats - Route pattern VRF Matched routes Packets Bytes - -------------------------------------------------------------------------------------- - 3.3.0.0/16 default 3.3.1.0/24 100 4543 - 3.3.2.3/32 3443 929229 - 3.3.0.0/16 0 0 - 2000::/64 default 2000::1/128 100 4543 - ``` - -The "pattern" subcommand is used to display the route flow counter statistics by route pattern. - -- Example: - ``` - admin@sonic:~$ show flowcnt-route stats pattern 3.3.0.0/16 - Route pattern VRF Matched routes Packets Bytes - -------------------------------------------------------------------------------------- - 3.3.0.0/16 default 3.3.1.0/24 100 4543 - 3.3.2.3/32 3443 929229 - 3.3.0.0/16 0 0 - ``` - -The "route" subcommand is used to display the route flow counter statistics by route prefix. - ``` - admin@sonic:~$ show flowcnt-route stats route 3.3.3.2/32 --vrf Vrf_1 - Route VRF Route Pattern Packets Bytes - ----------------------------------------------------------------------------------------- - 3.3.3.2/32 Vrf_1 3.3.0.0/16 100 4543 - ``` - -### Flow Counters clear commands - -**sonic-clear flowcnt-trap** - -This command is used to clear the current statistics for the registered host interface traps. This is done on a per-user basis. - -- Usage: - ``` - sonic-clear flowcnt-trap - ``` - -- Example: - ``` - admin@sonic:~$ sonic-clear flowcnt-trap - Trap Flow Counters were successfully cleared - ``` - -**sonic-clear flowcnt-route** - -This command is used to clear the current statistics for the route flow counter. This is done on a per-user basis. - -- Usage: - ``` - sonic-clear flowcnt-route - sonic-clear flowcnt-route pattern [--vrf ] - sonic-clear flowcnt-route route [--vrf ] - ``` - -- Example: - ``` - admin@sonic:~$ sonic-clear flowcnt-route - Route Flow Counters were successfully cleared - ``` - -The "pattern" subcommand is used to clear the route flow counter statistics by route pattern. - -- Example: - ``` - admin@sonic:~$ sonic-clear flowcnt-route pattern 3.3.0.0/16 --vrf Vrf_1 - Flow Counters of all routes matching the configured route pattern were successfully cleared - ``` - -The "route" subcommand is used to clear the route flow counter statistics by route prefix. - -- Example: - ``` - admin@sonic:~$ sonic-clear flowcnt-route route 3.3.3.2/32 --vrf Vrf_1 - Flow Counters of the specified route were successfully cleared - ``` - -### Flow Counters config commands - -**config flowcnt-route pattern add** - -This command is used to add or update the route pattern which is used by route flow counter to match route entries. - -- Usage: - ``` - config flowcnt-route pattern add [--vrf ] [--max ] - ``` - -- Example: - ``` - admin@sonic:~$ config flowcnt-route pattern add 2.2.0.0/16 --vrf Vrf_1 --max 50 - ``` - -**config flowcnt-route pattern remove** - -This command is used to remove the route pattern which is used by route flow counter to match route entries. - -- Usage: - ``` - config flowcnt-route pattern remove [--vrf ] - ``` - -- Example: - ``` - admin@sonic:~$ config flowcnt-route pattern remove 2.2.0.0/16 --vrf Vrf_1 - ``` - - -Go Back To [Beginning of the document](#) or [Beginning of this section](#flow-counters) -## Gearbox - -This section explains all the Gearbox PHY show commands that are supported in SONiC. - -### Gearbox show commands -This sub-section contains the show commands that are supported for gearbox phy. - -**show gearbox interfaces status** - -This command displays information about the gearbox phy interface lanes, speeds and status. Data is displayed for both MAC side and line side of the gearbox phy - -- Usage: - ``` - show gearbox interfaces status - ``` - -- Example: - -``` -home/admin# show gearbox interfaces status - PHY Id Interface MAC Lanes MAC Lane Speed PHY Lanes PHY Lane Speed Line Lanes Line Lane Speed Oper Admin --------- ----------- ----------- ---------------- ----------- ---------------- ------------ ----------------- ------ ------- - 1 Ethernet0 25,26,27,28 10G 200,201 20G 206 40G up up - 1 Ethernet4 29,30,31,32 10G 202,203 20G 207 40G up up - 1 Ethernet8 33,34,35,36 10G 204,205 20G 208 40G up up - - ``` - -**show gearbox phys status** - -This command displays basic information about the gearbox phys configured on the switch. - -- Usage: - ``` - show gearbox phys status - ``` - -- Example: - -``` -/home/admin# show gearbox phys status - PHY Id Name Firmware --------- ------- ---------- - 1 sesto-1 v0.1 - - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#gearbox) - - -## Update Device Hostname Configuration Commands - -This sub-section of commands is used to change device hostname without traffic being impacted. - -**config hostname** - -This command is used to change device hostname without traffic being impacted. - -- Usage: - ``` - config hostname - ``` - -- Example: - ``` - admin@sonic:~$ sudo config hostname CSW06 - Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. - ``` - -## Interfaces - -### Interface Show Commands - -This sub-section lists all the possible show commands for the interfaces available in the device. Following example gives the list of possible shows on interfaces. -Subsequent pages explain each of these commands in detail. - -- Example: - ``` - admin@sonic:~$ show interfaces -? - - Show details of the network interfaces - - Options: - -?, -h, --help Show this message and exit. - - Commands: - autoneg Show interface autoneg information - breakout Show Breakout Mode information by interfaces - counters Show interface counters - description Show interface status, protocol and... - mpls Show Interface MPLS status - naming_mode Show interface naming_mode status - neighbor Show neighbor related information - portchannel Show PortChannel information - status Show Interface status information - tpid Show Interface tpid information - transceiver Show SFP Transceiver information - ``` - -**show interfaces autoneg** - -This show command displays the port auto negotiation status for all interfaces i.e. interface name, auto negotiation mode, speed, advertised speeds, interface type, advertised interface types, operational status, admin status. For a single interface, provide the interface name with the sub-command. - -- Usage: - ``` - show interfaces autoneg status - show interfaces autoneg status - ``` - -- Example: - ``` - admin@sonic:~$ show interfaces autoneg status - Interface Auto-Neg Mode Speed Adv Speeds Type Adv Types Oper Admin - ----------- --------------- ------- ------------ ------ ----------- ------ ------- - Ethernet0 enabled 25G 10G,25G CR CR,CR4 up up - Ethernet4 disabled 100G all CR4 all up up - - admin@sonic:~$ show interfaces autoneg status Ethernet8 - Interface Auto-Neg Mode Speed Adv Speeds Type Adv Types Oper Admin - ----------- --------------- ------- ------------ ------ ----------- ------ ------- - Ethernet8 disabled 100G N/A CR4 N/A up up - ``` - -**show interfaces breakout (Versions >= 202006)** - -This show command displays the port capability for all interfaces i.e. index, lanes, default_brkout_mode, breakout_modes(i.e. available breakout modes) and brkout_mode (i.e. current breakout mode). To display current breakout mode, "current-mode" subcommand can be used.For a single interface, provide the interface name with the sub-command. - -- Usage: - ``` - show interfaces breakout - show interfaces breakout current-mode - show interfaces breakout current-mode - ``` - -- Example: - ``` - admin@lnos-x1-a-fab01:~$ show interfaces breakout - { - "Ethernet0": { - "index": "1,1,1,1", - "default_brkout_mode": "1x100G[40G]", - "child ports": "Ethernet0", - "child port speed": "100G", - "breakout_modes": "1x100G[40G],2x50G,4x25G[10G]", - "Current Breakout Mode": "1x100G[40G]", - "lanes": "65,66,67,68", - "alias_at_lanes": "Eth1/1, Eth1/2, Eth1/3, Eth1/4" - },... continue - } - ``` -The "current-mode" subcommand is used to display current breakout mode for all interfaces. - ``` - admin@lnos-x1-a-fab01:~$ show interfaces breakout current-mode - +-------------+-------------------------+ - | Interface | Current Breakout Mode | - +=============+=========================+ - | Ethernet0 | 4x25G[10G] | - +-------------+-------------------------+ - | Ethernet4 | 4x25G[10G] | - +-------------+-------------------------+ - | Ethernet8 | 4x25G[10G] | - +-------------+-------------------------+ - | Ethernet12 | 4x25G[10G] | - +-------------+-------------------------+ - - admin@lnos-x1-a-fab01:~$ show interfaces breakout current-mode Ethernet0 - +-------------+-------------------------+ - | Interface | Current Breakout Mode | - +=============+=========================+ - | Ethernet0 | 4x25G[10G] | - +-------------+-------------------------+ - ``` - -**show interfaces counters** - -This show command displays packet counters for all interfaces since the last time the counters were cleared. To display l3 counters "rif" subcommand can be used. There is no facility to display counters for one specific l2 interface. For l3 interfaces a single interface output mode is present. Optional argument "-a" provides two additional columns - RX-PPS and TX_PPS. -Optional argument "-p" specify a period (in seconds) with which to gather counters over. - -- Usage: - ``` - show interfaces counters [-a|--printall] [-p|--period ] - show interfaces counters errors - show interfaces counters rates - show interfaces counters rif [-p|--period ] [-i ] - ``` - -- Example: - ``` - admin@sonic:~$ show interfaces counters - IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR - ----------- ------- --------------- ----------- --------- -------- -------- -------- --------------- ----------- --------- -------- -------- -------- - Ethernet0 U 471,729,839,997 653.87 MB/s 12.77% 0 18,682 0 409,682,385,925 556.84 MB/s 10.88% 0 0 0 - Ethernet4 U 453,838,006,636 632.97 MB/s 12.36% 0 1,636 0 388,299,875,056 529.34 MB/s 10.34% 0 0 0 - Ethernet8 U 549,034,764,539 761.15 MB/s 14.87% 0 18,274 0 457,603,227,659 615.20 MB/s 12.02% 0 0 0 - Ethernet12 U 458,052,204,029 636.84 MB/s 12.44% 0 17,614 0 388,341,776,615 527.37 MB/s 10.30% 0 0 0 - Ethernet16 U 16,679,692,972 13.83 MB/s 0.27% 0 17,605 0 18,206,586,265 17.51 MB/s 0.34% 0 0 0 - Ethernet20 U 47,983,339,172 35.89 MB/s 0.70% 0 2,174 0 58,986,354,359 51.83 MB/s 1.01% 0 0 0 - Ethernet24 U 33,543,533,441 36.59 MB/s 0.71% 0 1,613 0 43,066,076,370 49.92 MB/s 0.97% 0 0 0 - - admin@sonic:~$ show interfaces counters -i Ethernet4,Ethernet12-16 - IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR - ----------- ------- --------------- ----------- --------- -------- -------- -------- --------------- ----------- --------- -------- -------- -------- - Ethernet4 U 453,838,006,636 632.97 MB/s 12.36% 0 1,636 0 388,299,875,056 529.34 MB/s 10.34% 0 0 0 - Ethernet12 U 458,052,204,029 636.84 MB/s 12.44% 0 17,614 0 388,341,776,615 527.37 MB/s 10.30% 0 0 0 - Ethernet16 U 16,679,692,972 13.83 MB/s 0.27% 0 17,605 0 18,206,586,265 17.51 MB/s 0.34% 0 0 0 - ``` - -The "errors" subcommand is used to display the interface errors. - -- Example: - ``` - admin@str-s6000-acs-11:~$ show interface counters errors - IFACE STATE RX_ERR RX_DRP RX_OVR TX_ERR TX_DRP TX_OVR - ----------- ------- -------- -------- -------- -------- -------- -------- - Ethernet0 U 0 4 0 0 0 0 - Ethernet4 U 0 0 0 0 0 0 - Ethernet8 U 0 1 0 0 0 0 - Ethernet12 U 0 0 0 0 0 0 - ``` - -The "rates" subcommand is used to disply only the interface rates. - -- Example: - ``` - admin@str-s6000-acs-11:/usr/bin$ show int counters rates - IFACE STATE RX_OK RX_BPS RX_PPS RX_UTIL TX_OK TX_BPS TX_PPS TX_UTIL - ----------- ------- ------- -------- -------- --------- ------- -------- -------- --------- - Ethernet0 U 467510 N/A N/A N/A 466488 N/A N/A N/A - Ethernet4 U 469679 N/A N/A N/A 469245 N/A N/A N/A - Ethernet8 U 466660 N/A N/A N/A 465982 N/A N/A N/A - Ethernet12 U 466579 N/A N/A N/A 466318 N/A N/A N/A - ``` - - -The "rif" subcommand is used to display l3 interface counters. Layer 3 interfaces include router interfaces, portchannels and vlan interfaces. - -- Example: - -``` - admin@sonic:~$ show interfaces counters rif - IFACE RX_OK RX_BPS RX_PPS RX_ERR TX_OK TX_BPS TX_PPS TX_ERR ---------------- ------- ---------- -------- -------- ------- -------- -------- -------- -PortChannel0001 62,668 107.81 B/s 1.34/s 3 6 0.02 B/s 0.00/s 0 -PortChannel0002 62,645 107.77 B/s 1.34/s 3 2 0.01 B/s 0.00/s 0 -PortChannel0003 62,481 107.56 B/s 1.34/s 3 3 0.01 B/s 0.00/s 0 -PortChannel0004 62,732 107.88 B/s 1.34/s 2 3 0.01 B/s 0.00/s 0 - Vlan1000 0 0.00 B/s 0.00/s 0 0 0.00 B/s 0.00/s 0 -``` - - -Optionally, you can specify a layer 3 interface name to display the counters in single interface mode. - -- Example: - -``` - admin@sonic:~$ show interfaces counters rif PortChannel0001 - PortChannel0001 - --------------- - - RX: - 3269 packets - 778494 bytesq - 3 error packets - 292 error bytes - TX: - 0 packets - 0 bytes - 0 error packets - 0 error bytes -``` - - -Optionally, you can specify a period (in seconds) with which to gather counters over. Note that this function will take `` seconds to execute. - -- Example: - -``` - admin@sonic:~$ show interfaces counters -p 5 - IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR - ----------- ------- ------- ----------- --------- -------- -------- -------- ------- ----------- --------- -------- -------- -------- - Ethernet0 U 515 59.14 KB/s 0.00% 0 0 0 1,305 127.60 KB/s 0.00% 0 0 0 - Ethernet4 U 305 26.54 KB/s 0.00% 0 0 0 279 39.12 KB/s 0.00% 0 0 0 - Ethernet8 U 437 42.96 KB/s 0.00% 0 0 0 182 18.37 KB/s 0.00% 0 0 0 - Ethernet12 U 284 40.79 KB/s 0.00% 0 0 0 160 13.03 KB/s 0.00% 0 0 0 - Ethernet16 U 377 32.64 KB/s 0.00% 0 0 0 214 18.01 KB/s 0.00% 0 0 0 - Ethernet20 U 284 36.81 KB/s 0.00% 0 0 0 138 8758.25 B/s 0.00% 0 0 0 - Ethernet24 U 173 16.09 KB/s 0.00% 0 0 0 169 11.39 KB/s 0.00% 0 0 0 -``` - -- NOTE: Interface counters can be cleared by the user with the following command: - - ``` - admin@sonic:~$ sonic-clear counters - ``` - -- NOTE: Layer 3 interface counters can be cleared by the user with the following command: - - ``` - admin@sonic:~$ sonic-clear rifcounters - ``` - -**show interfaces description** - -This command displays the key fields of the interfaces such as Operational Status, Administrative Status, Alias and Description. - -- Usage: - ``` - show interfaces description [] - ``` - -- Example: - ``` - admin@sonic:~$ show interfaces description - Interface Oper Admin Alias Description - ----------- ------ ------- --------------- -------------------- - Ethernet0 down up hundredGigE1/1 T0-1:hundredGigE1/30 - Ethernet4 down up hundredGigE1/2 T0-2:hundredGigE1/30 - Ethernet8 down down hundredGigE1/3 hundredGigE1/3 - Ethernet12 down down hundredGigE1/4 hundredGigE1/4 - ``` - -- Example (to only display the description for interface Ethernet4): - - ``` - admin@sonic:~$ show interfaces description Ethernet4 - Interface Oper Admin Alias Description - ----------- ------ ------- -------------- -------------------- - Ethernet4 down up hundredGigE1/2 T0-2:hundredGigE1/30 - ``` - -**show interfaces mpls** - -This command is used to display the configured MPLS state for the list of configured interfaces. - -- Usage: - ``` - show interfaces mpls [] - ``` - -- Example: - ``` - admin@sonic:~$ show interfaces mpls - Interface MPLS State - ----------- ------------ - Ethernet0 disable - Ethernet4 enable - Ethernet8 enable - Ethernet12 disable - Ethernet16 disable - Ethernet20 disable - ``` - -- Example (to only display the MPLS state for interface Ethernet4): - ``` - admin@sonic:~$ show interfaces mpls Ethernet4 - Interface MPLS State - ----------- ------------ - Ethernet4 enable - ``` - -**show interfaces tpid** - -This command displays the key fields of the interfaces such as Operational Status, Administrative Status, Alias and TPID. - -- Usage: - ``` - show interfaces tpid [] - ``` - -- Example: - ``` - admin@sonic:~$ show interfaces tpid - Interface Alias Oper Admin TPID - --------------- --------------- ------ ------- ------ - Ethernet0 fortyGigE1/1/1 up up 0x8100 - Ethernet1 fortyGigE1/1/2 up up 0x8100 - Ethernet2 fortyGigE1/1/3 down down 0x8100 - Ethernet3 fortyGigE1/1/4 down down 0x8100 - Ethernet4 fortyGigE1/1/5 up up 0x8100 - Ethernet5 fortyGigE1/1/6 up up 0x8100 - Ethernet6 fortyGigE1/1/7 up up 0x9200 - Ethernet7 fortyGigE1/1/8 up up 0x88A8 - Ethernet8 fortyGigE1/1/9 up up 0x8100 - ... - Ethernet63 fortyGigE1/4/16 down down 0x8100 - PortChannel0001 N/A up up 0x8100 - PortChannel0002 N/A up up 0x8100 - PortChannel0003 N/A up up 0x8100 - PortChannel0004 N/A up up 0x8100 - admin@sonic:~$ - ``` - -- Example (to only display the TPID for interface Ethernet6): - - ``` - admin@sonic:~$ show interfaces tpid Ethernet6 - Interface Alias Oper Admin TPID - ----------- -------------- ------ ------- ------ - Ethernet6 fortyGigE1/1/7 up up 0x9200 - admin@sonic:~$ - ``` - -**show interfaces naming_mode** - -Refer sub-section [Interface-Naming-Mode](#Interface-Naming-Mode) - - -**show interfaces neighbor** - -This command is used to display the list of expected neighbors for all interfaces (or for a particular interface) that is configured. - -- Usage: - ``` - show interfaces neighbor expected [] - ``` - -- Example: - ``` - admin@sonic:~$ show interfaces neighbor expected - LocalPort Neighbor NeighborPort NeighborLoopback NeighborMgmt NeighborType - ----------- ---------- -------------- ------------------ -------------- -------------- - Ethernet112 ARISTA01T1 Ethernet1 None 10.16.205.100 ToRRouter - Ethernet116 ARISTA02T1 Ethernet1 None 10.16.205.101 SpineRouter - Ethernet120 ARISTA03T1 Ethernet1 None 10.16.205.102 LeafRouter - Ethernet124 ARISTA04T1 Ethernet1 None 10.16.205.103 LeafRouter - ``` - -**show interfaces portchannel** - -This command displays information regarding port-channel interfaces - -- Usage: - ``` - show interfaces portchannel - ``` - -- Example: - ``` - admin@sonic:~$ show interfaces portchannel - Flags: A - active, I - inactive, Up - up, Dw - Down, N/A - not available, S - selected, D - deselected - No. Team Dev Protocol Ports - ----- ------------- ----------- --------------------------- - 24 PortChannel24 LACP(A)(Up) Ethernet28(S) Ethernet24(S) - 48 PortChannel48 LACP(A)(Up) Ethernet52(S) Ethernet48(S) - 40 PortChannel40 LACP(A)(Up) Ethernet44(S) Ethernet40(S) - 0 PortChannel0 LACP(A)(Up) Ethernet0(S) Ethernet4(S) - 8 PortChannel8 LACP(A)(Up) Ethernet8(S) Ethernet12(S) - ``` - -**show interface status** - -This command displays some more fields such as Lanes, Speed, MTU, Type, Asymmetric PFC status and also the operational and administrative status of the interfaces - -- Usage: - ``` - show interfaces status [] - ``` - -- Example (show interface status of all interfaces): - ``` - admin@sonic:~$ show interfaces status - Interface Lanes Speed MTU Alias Oper Admin Type Asym PFC - ----------- --------------- ------- ----- --------------- ------ ------- ------ ---------- - Ethernet0 49,50,51,52 100G 9100 hundredGigE1/1 down up N/A off - Ethernet4 53,54,55,56 100G 9100 hundredGigE1/2 down up N/A off - Ethernet8 57,58,59,60 100G 9100 hundredGigE1/3 down down N/A off - - ``` - -- Example (to only display the status for interface Ethernet0): - ``` - admin@sonic:~$ show interface status Ethernet0 - Interface Lanes Speed MTU Alias Oper Admin - ----------- -------- ------- ----- -------------- ------ ------- - Ethernet0 101,102 40G 9100 fortyGigE1/1/1 up up - ``` - -- Example (to only display the status for range of interfaces): - ``` - admin@sonic:~$ show interfaces status Ethernet8,Ethernet168-180 - Interface Lanes Speed MTU Alias Oper Admin Type Asym PFC - ----------- ----------------- ------- ----- --------------- ------ ------- ------ ---------- - Ethernet8 49,50,51,52 100G 9100 hundredGigE3 down down N/A N/A - Ethernet168 9,10,11,12 100G 9100 hundredGigE43 down down N/A N/A - Ethernet172 13,14,15,16 100G 9100 hundredGigE44 down down N/A N/A - Ethernet176 109,110,111,112 100G 9100 hundredGigE45 down down N/A N/A - Ethernet180 105,106,107,108 100G 9100 hundredGigE46 down down N/A N/A - ``` - -**show interfaces transceiver** - -This command is already explained [here](#Transceivers) - -### Interface Config Commands -This sub-section explains the following list of configuration on the interfaces. -1) ip - To add or remove IP address for the interface -2) pfc - to set the PFC configuration for the interface -3) shutdown - to administratively shut down the interface -4) speed - to set the interface speed -5) startup - to bring up the administratively shutdown interface -6) breakout - to set interface breakout mode -7) autoneg - to set interface auto negotiation mode -8) advertised-speeds - to set interface advertised speeds -9) advertised-types - to set interface advertised types -10) type - to set interface type -11) mpls - To add or remove MPLS operation for the interface - -From 201904 release onwards, the “config interface” command syntax is changed and the format is as follows: - -- config interface interface_subcommand -i.e Interface name comes after the subcommand -- Ex: config interface startup Ethernet63 - -The syntax for all such interface_subcommands are given below under each command - -NOTE: In older versions of SONiC until 201811 release, the command syntax was `config interface interface_subcommand` - - -**config interface ip add [default_gw] (Versions >= 201904)** - -**config interface ip add (Versions <= 201811)** - -This command is used for adding the IP address for an interface. -IP address for either physical interface or for portchannel or for VLAN interface or for Loopback interface can be configured using this command. -While configuring the IP address for the management interface "eth0", users can provide the default gateway IP address as an optional parameter from release 201911. - - -- Usage: - - *Versions >= 201904* - ``` - config interface ip add - ``` - *Versions <= 201811* - ``` - config interface ip add - ``` - -- Example: - - *Versions >= 201904* - ``` - admin@sonic:~$ sudo config interface ip add Ethernet63 10.11.12.13/24 - admin@sonic:~$ sudo config interface ip add eth0 20.11.12.13/24 20.11.12.254 - ``` - *Versions <= 201811* - ``` - admin@sonic:~$ sudo config interface Ethernet63 ip add 10.11.12.13/24 - ``` - -VLAN interface names take the form of `vlan`. E.g., VLAN 100 will be named `vlan100` - -- Example: - - *Versions >= 201904* - ``` - admin@sonic:~$ sudo config interface ip add Vlan100 10.11.12.13/24 - ``` - *Versions <= 201811* - ``` - admin@sonic:~$ sudo config interface vlan100 ip add 10.11.12.13/24 - ``` - - -**config interface ip remove (Versions >= 201904)** - -**config interface ip remove (Versions <= 201811)** - -- Usage: - - *Versions >= 201904* - ``` - config interface ip remove - ``` - *Versions <= 201811* - ``` - config interface ip remove - ``` - -- Example: - - *Versions >= 201904* - ``` - admin@sonic:~$ sudo config interface ip remove Ethernet63 10.11.12.13/24 - admin@sonic:~$ sudo config interface ip remove eth0 20.11.12.13/24 - ``` - *Versions <= 201811* - ``` - admin@sonic:~$ sudo config interface Ethernet63 ip remove 10.11.12.13/24 - ``` - -VLAN interface names take the form of `vlan`. E.g., VLAN 100 will be named `vlan100` - -- Example: - - *Versions >= 201904* - ``` - admin@sonic:~$ sudo config interface ip remove vlan100 10.11.12.13/24 - ``` - *Versions <= 201811* - ``` - admin@sonic:~$ sudo config interface vlan100 ip remove 10.11.12.13/24 - ``` - -**config interface pfc priority (on | off)** - -This command is used to set PFC on a given priority of a given interface to either "on" or "off". Once it is successfully configured, it will show current losses priorities on the given interface. Otherwise, it will show error information - -- Example: - *Versions >= 201904* - ``` - admin@sonic:~$ sudo config interface pfc priority Ethernet0 3 off - - Interface Lossless priorities - ----------- --------------------- - Ethernet0 4 - - admin@sonic:~$ sudo config interface pfc priority Ethernet0 8 off - Usage: pfc config priority [OPTIONS] STATUS INTERFACE PRIORITY - - Error: Invalid value for "priority": invalid choice: 8. (choose from 0, 1, 2, 3, 4, 5, 6, 7) - - admin@sonic:~$ sudo config interface pfc priority Ethernet101 3 off - Cannot find interface Ethernet101 - - admin@sonic:~$ sudo config interface pfc priority Ethernet0 3 on - - Interface Lossless priorities - ----------- --------------------- - Ethernet0 3,4 - ``` - -**config interface pfc asymmetric (Versions >= 201904)** - -**config interface pfc asymmetric (Versions <= 201811)** - -This command is used for setting the asymmetric PFC for an interface to either "on" or "off". Once if it is configured, use "show interfaces status" to check the same. - -- Usage: - - *Versions >= 201904* - ``` - config interface pfc asymmetric on/off (for 201904+ version) - ``` - *Versions <= 201811* - ``` - config interface pfc asymmetric on/off (for 201811- version) - ``` - -- Example: - - *Versions >= 201904* - ``` - admin@sonic:~$ sudo config interface pfc asymmetric Ethernet60 on - ``` - *Versions <= 201811* - ``` - admin@sonic:~$ sudo config interface Ethernet60 pfc asymmetric on - ``` - -**config interface shutdown (Versions >= 201904)** - -**config interface shutdown (Versions <= 201811)** - -This command is used to administratively shut down either the Physical interface or port channel interface. Once if it is configured, use "show interfaces status" to check the same. - -- Usage: - - *Versions >= 201904* - ``` - config interface shutdown (for 201904+ version) - ``` - *Versions <= 201811* - ``` - config interface shutdown (for 201811- version) - ``` - -- Example: - - *Versions >= 201904* - ``` - admin@sonic:~$ sudo config interface shutdown Ethernet63 - ``` - *Versions <= 201811* - ``` - admin@sonic:~$ sudo config interface Ethernet63 shutdown - ``` - - shutdown multiple interfaces - ``` - admin@sonic:~$ sudo config interface shutdown Ethernet8,Ethernet16-20,Ethernet32 - ``` - -**config interface startup (Versions >= 201904)** - -**config interface startup (Versions <= 201811)** - -This command is used for administratively bringing up the Physical interface or port channel interface.Once if it is configured, use "show interfaces status" to check the same. - -- Usage: - - *Versions >= 201904* - ``` - config interface startup (for 201904+ version) - ``` - *Versions <= 201811* - ``` - config interface startup (for 201811- version) - ``` - -- Example: - - *Versions >= 201904* - ``` - admin@sonic:~$ sudo config interface startup Ethernet63 - ``` - *Versions <= 201811* - ``` - admin@sonic:~$ sudo config interface Ethernet63 startup - ``` - - startup multiple interfaces - ``` - admin@sonic:~$ sudo config interface startup Ethernet8,Ethernet16-20,Ethernet32 - ``` - -**config interface speed (Versions >= 202006)** - -Dynamic breakout feature is supported in SONiC from 202006 version. -User can configure any speed specified under "breakout_modes" keys for the parent interface in the platform-specific port configuration file (i.e. platform.json). - -For example for a breakout mode of 2x50G[25G,10G] the default speed is 50G but the interface also supports 25G and 10G. - -Refer [DPB HLD DOC](https://github.com/Azure/SONiC/blob/master/doc/dynamic-port-breakout/sonic-dynamic-port-breakout-HLD.md#cli-design) to know more about this command. - -**config interface speed (Versions >= 201904)** - -**config interface speed (Versions <= 201811)** - -This command is used to configure the speed for the Physical interface. Use the value 40000 for setting it to 40G and 100000 for 100G. Users need to know the device to configure it properly. - -- Usage: - - *Versions >= 201904* - ``` - config interface speed - ``` - *Versions <= 201811* - ``` - config interface speed - ``` - -- Example (Versions >= 201904): - ``` - admin@sonic:~$ sudo config interface speed Ethernet63 40000 - ``` - -- Example (Versions <= 201811): - ``` - admin@sonic:~$ sudo config interface Ethernet63 speed 40000 - - ``` - -**config interface transceiver lpmode** - -This command is used to enable or disable low-power mode for an SFP transceiver - -- Usage: - - ``` - config interface transceiver lpmode (enable | disable) - ``` - -- Examples: - - ``` - user@sonic~$ sudo config interface transceiver lpmode Ethernet0 enable - Enabling low-power mode for port Ethernet0... OK - - user@sonic~$ sudo config interface transceiver lpmode Ethernet0 disable - Disabling low-power mode for port Ethernet0... OK - ``` - -**config interface transceiver reset** - -This command is used to reset an SFP transceiver - -- Usage: - - ``` - config interface transceiver reset - ``` - -- Examples: - - ``` - user@sonic~$ sudo config interface transceiver reset Ethernet0 - Resetting port Ethernet0... OK - ``` - -**config interface mtu (Versions >= 201904)** - -This command is used to configure the mtu for the Physical interface. Use the value 1500 for setting max transfer unit size to 1500 bytes. - -- Usage: - - *Versions >= 201904* - ``` - config interface mtu - ``` - -- Example (Versions >= 201904): - ``` - admin@sonic:~$ sudo config interface mtu Ethernet64 1500 - ``` - -**config interface tpid (Versions >= 202106)** - -This command is used to configure the TPID for the Physical/PortChannel interface. default is 0x8100. Other allowed values if supported by HW SKU (0x9100, 0x9200, 0x88A8). - -- Usage: - - *Versions >= 202106* - ``` - config interface tpid - ``` - -- Example (Versions >= 202106): - ``` - admin@sonic:~$ sudo config interface tpid Ethernet64 0x9200 - ``` - -**config interface breakout (Versions >= 202006)** - -This command is used to set active breakout mode available for user-specified interface based on the platform-specific port configuration file(i.e. platform.json) -and the current mode set for the interface. - -Based on the platform.json and the current mode set in interface, this command acts on setting breakout mode for the interface. - -Double tab i.e. to see the available breakout option customized for each interface provided by the user. - -- Usage: - ``` - sudo config interface breakout --help - Usage: config interface breakout [OPTIONS] MODE - - Set interface breakout mode - - Options: - -f, --force-remove-dependencies - Clear all depenedecies internally first. - -l, --load-predefined-config load predefied user configuration (alias, - lanes, speed etc) first. - -y, --yes - -v, --verbose Enable verbose output - -?, -h, --help Show this message and exit. - ``` -- Example : - ``` - admin@sonic:~$ sudo config interface breakout Ethernet0 - - 1x100G[40G] 2x50G 4x25G[10G] - ``` - - This command also provides "--force-remove-dependencies/-f" option to CLI, which will automatically determine and remove the configuration dependencies using Yang models. - - ``` - admin@sonic:~$ sudo config interface breakout Ethernet0 4x25G[10G] -f -l -v -y - ``` - -For details please refer [DPB HLD DOC](https://github.com/Azure/SONiC/blob/master/doc/dynamic-port-breakout/sonic-dynamic-port-breakout-HLD.md#cli-design) to know more about this command. - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -**config interface autoneg (Versions >= 202106)** - -This command is used to set port auto negotiation mode. - -- Usage: - ``` - sudo config interface autoneg --help - Usage: config interface autoneg [OPTIONS] - - Set interface auto negotiation mode - - Options: - -v, --verbose Enable verbose output - -h, -?, --help Show this message and exit. - ``` - -- Example: - ``` - admin@sonic:~$ sudo config interface autoneg Ethernet0 enabled - - admin@sonic:~$ sudo config interface autoneg Ethernet0 disabled - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -**config interface advertised-speeds (Versions >= 202106)** - -This command is used to set port advertised speed. - -- Usage: - ``` - sudo config interface advertised-speeds --help - Usage: config interface advertised-speeds [OPTIONS] - - Set interface advertised speeds - - Options: - -v, --verbose Enable verbose output - -h, -?, --help Show this message and exit. - ``` - -- Example: - ``` - admin@sonic:~$ sudo config interface advertised-speeds Ethernet0 all - - admin@sonic:~$ sudo config interface advertised-speeds Ethernet0 50000,100000 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -**config interface advertised-types (Versions >= 202106)** - -This command is used to set port advertised interface types. - -- Usage: - ``` - sudo config interface advertised-types --help - Usage: config interface advertised-types [OPTIONS] - - Set interface advertised types - - Options: - -v, --verbose Enable verbose output - -h, -?, --help Show this message and exit. - ``` - -- Example: - ``` - admin@sonic:~$ sudo config interface advertised-types Ethernet0 all - - admin@sonic:~$ sudo config interface advertised-types Ethernet0 CR,CR4 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -**config interface type (Versions >= 202106)** - -This command is used to set port interface type. - -- Usage: - ``` - sudo config interface type --help - Usage: config interface type [OPTIONS] - - Set interface type - - Options: - -v, --verbose Enable verbose output - -h, -?, --help Show this message and exit. - ``` - -- Example: - ``` - admin@sonic:~$ sudo config interface type Ethernet0 CR4 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -**config interface cable_length (Versions >= 202006)** - -This command is used to configure the length of the cable connected to a port. The cable_length is in unit of meters and must be suffixed with "m". - -For details please refer [dynamic buffer management](#dynamic-buffer-management) - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -**config interface lossless_pg (Versions >= 202006)** - -This command is used to configure the priority groups on which lossless traffic runs. - -For details please refer [dynamic buffer management](#dynamic-buffer-management) - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -**config interface headroom_override (Versions >= 202006)** - -This command is used to configure a static buffer profile on a port's lossless priorities. There shouldn't be any `lossless_pg` configured on the port when configuring `headroom_override`. The port's headroom won't be updated after `headroom_override` has been configured on the port. - -For details please refer [dynamic buffer management](#dynamic-buffer-management) - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -**config interface mpls add (Versions >= 202106)** - -This command is used for adding MPLS operation on the interface. -MPLS operation for either physical, portchannel, or VLAN interface can be configured using this command. - - -- Usage: - ``` - sudo config interface mpls add --help - Usage: config interface mpls add [OPTIONS] - - Add MPLS operation on the interface - - Options: - -?, -h, --help Show this message and exit. - ``` - -- Example: - ``` - admin@sonic:~$ sudo config interface mpls add Ethernet4 - ``` - -**config interface mpls remove (Versions >= 202106)** - -This command is used for removing MPLS operation on the interface. -MPLS operation for either physical, portchannel, or VLAN interface can be configured using this command. - -- Usage: - ``` - sudo config interface mpls remove --help - Usage: config interface mpls remove [OPTIONS] - - Remove MPLS operation from the interface - - Options: - -?, -h, --help Show this message and exit. - ``` - -- Example: - ``` - admin@sonic:~$ sudo config interface mpls remove Ethernet4 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) - -## Interface Naming Mode - -### Interface naming mode show commands -This command displays the current interface naming mode. Interface naming mode originally set to 'default'. Interfaces are referenced by default SONiC interface names. -Users can change the naming_mode using "config interface_naming_mode" command. - -**show interfaces naming_mode** - -This command displays the current interface naming mode - -- Usage: - ``` - show interfaces naming_mode - ``` - -- Examples: - ``` - admin@sonic:~$ show interfaces naming_mode - default - ``` - - - "default" naming mode will display all SONiC interface names in 'show' commands and accept SONiC interface names as parameters in 'config commands - - ``` - admin@sonic:~$ show interfaces naming_mode - alias - ``` - - - "alias" naming mode will display all hardware vendor interface aliases in 'show' commands and accept hardware vendor interface aliases as parameters in 'config commands - - -### Interface naming mode config commands - -**config interface_naming_ mode** - -This command is used to change the interface naming mode. -Users can select between default mode (SONiC interface names) or alias mode (Hardware vendor names). -The user must log out and log back in for changes to take effect. Note that the newly-applied interface mode will affect all interface-related show/config commands. - - -*NOTE: Some platforms do not support alias mapping. In such cases, this command is not applicable. Such platforms always use the same SONiC interface names.* - -- Usage: - ``` - config interface_naming_mode (default | alias) - ``` - - - Interface naming mode is originally set to 'default'. Interfaces are referenced by default SONiC interface names: - -- Example: - ``` - admin@sonic:~$ show interfaces naming_mode - default - - admin@sonic:~$ show interface status Ethernet0 - Interface Lanes Speed MTU Alias Oper Admin - ----------- -------- ------- ----- -------------- ------ ------- - Ethernet0 101,102 40G 9100 fortyGigE1/1/1 up up - - admin@sonic:~$ sudo config interface_naming_mode alias - Please logout and log back in for changes take effect. - ``` - - - After user logs out and logs back in again, interfaces will then referenced by hardware vendor aliases: - - ``` - admin@sonic:~$ show interfaces naming_mode - alias - - admin@sonic:~$ sudo config interface fortyGigE1/1/1 shutdown - admin@sonic:~$ show interface status fortyGigE1/1/1 - Interface Lanes Speed MTU Alias Oper Admin - ----------- -------- ------- ----- -------------- ------ ------- - Ethernet0 101,102 40G 9100 fortyGigE1/1/1 down down - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interface-naming-mode) - -## Interface Vrf binding - -### Interface vrf bind & unbind config commands - -**config interface vrf bind** - -This command is used to bind a interface to a vrf. -By default, all L3 interfaces will be in default vrf. Above vrf bind command will let users bind interface to a vrf. - -- Usage: - ``` - config interface vrf bind - ``` - -**config interface vrf unbind** - -This command is used to ubind a interface from a vrf. -This will move the interface to default vrf. - -- Usage: - ``` - config interface vrf unbind - ``` - - ### Interface vrf binding show commands - - To display interface vrf binding information, user can use show vrf command. Please refer sub-section [Vrf-show-command](#vrf-show-commands). - -Go Back To [Beginning of the document](#) or [Beginning of this section](#interface-vrf-binding) - -## IP / IPv6 - -### IP show commands - -This sub-section explains the various IP protocol specific show commands that are used to display the following. -1) routes -2) bgp details - Explained in the [bgp section](#show-bgp) -3) IP interfaces -4) prefix-list -5) protocol - -#### show ip route - -This command displays either all the route entries from the routing table or a specific route. - -- Usage: - ``` - show ip route [] [] - ``` - -- Example: - ``` - admin@sonic:~$ show ip route - Codes: K - kernel route, C - connected, S - static, R - RIP, - O - OSPF, I - IS-IS, B - BGP, P - PIM, A - Babel, - > - selected route, * - FIB route - S>* 0.0.0.0/0 [200/0] via 10.11.162.254, eth0 - C>* 1.1.0.0/16 is directly connected, Vlan100 - C>* 10.1.1.0/31 is directly connected, Ethernet112 - C>* 10.1.1.2/31 is directly connected, Ethernet116 - C>* 10.11.162.0/24 is directly connected, eth0 - C>* 127.0.0.0/8 is directly connected, lo - C>* 240.127.1.0/24 is directly connected, docker0 - ``` - - - Optionally, you can specify an IP address in order to display only routes to that particular IP address - -- Example: - ``` - admin@sonic:~$ show ip route 10.1.1.0 - Routing entry for 10.1.1.0/31 - Known via "connected", distance 0, metric 0, best - * directly connected, Ethernet112 - ``` - - - Vrf-name can also be specified to get IPv4 routes programmed in the vrf. - - - Example: - ``` - admin@sonic:~$ show ip route vrf Vrf-red - Codes: K - kernel route, C - connected, S - static, R - RIP, - O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, - T - Table, v - VNC, V - VNC-Direct, A - Babel, D - SHARP, - F - PBR, f - OpenFabric, - > - selected route, * - FIB route - VRF Vrf-red: - C>* 11.1.1.1/32 is directly connected, Loopback11, 21:50:47 - C>* 100.1.1.0/24 is directly connected, Vlan100, 03w1d06h - - admin@sonic:~$ show ip route vrf Vrf-red 11.1.1.1/32 - Routing entry for 11.1.1.1/32 - Known via "connected", distance 0, metric 0, vrf Vrf-red, best - Last update 21:57:53 ago - * directly connected, Loopback11 - ``` - -#### show ip interfaces - -This command displays the details about all the Layer3 IP interfaces in the device for which IP address has been assigned. -The type of interfaces include the following. -1) Front panel physical ports. -2) PortChannel. -3) VLAN interface. -4) Loopback interfaces -5) docker interface and -6) management interface - -- Usage: - ``` - show ip interfaces - ``` - -- Example: - ``` - admin@sonic:~$ show ip interfaces - Interface Master IPv4 address/mask Admin/Oper BGP Neighbor Neighbor IP Flags - ------------- ------------ ------------------ -------------- ------------- ------------- ------- - Loopback0 1.0.0.1/32 up/up N/A N/A - Loopback11 Vrf-red 11.1.1.1/32 up/up N/A N/A - Loopback100 Vrf-blue 100.0.0.1/32 up/up N/A N/A - PortChannel01 10.0.0.56/31 up/down DEVICE1 10.0.0.57 - PortChannel02 10.0.0.58/31 up/down DEVICE2 10.0.0.59 - PortChannel03 10.0.0.60/31 up/down DEVICE3 10.0.0.61 - PortChannel04 10.0.0.62/31 up/down DEVICE4 10.0.0.63 - Vlan100 Vrf-red 1001.1.1/24 up/up N/A N/A - Vlan1000 192.168.0.1/27 up/up N/A N/A - docker0 240.127.1.1/24 up/down N/A N/A - eth0 10.3.147.252/23 up/up N/A N/A - lo 127.0.0.1/8 up/up N/A N/A - ``` - -#### show ip protocol - -This command displays the route-map that is configured for the routing protocol. -Refer the routing stack [Quagga Command Reference](https://www.quagga.net/docs/quagga.pdf) or [FRR Command Reference](https://buildmedia.readthedocs.org/media/pdf/frrouting/latest/frrouting.pdf) to know more about this command. - -- Usage: - ``` - show ip protocol - ``` - -- Example: - ``` - admin@sonic:~$ show ip protocol - Protocol : route-map - ------------------------ - system : none - kernel : none - connected : none - static : none - rip : none - ripng : none - ospf : none - ospf6 : none - isis : none - bgp : RM_SET_SRC - pim : none - hsls : none - olsr : none - babel : none - any : none - ``` - -### IPv6 show commands - -This sub-section explains the various IPv6 protocol specific show commands that are used to display the following. -1) routes -2) IPv6 bgp details - Explained in the [bgp section](#show-bgp) -3) IP interfaces -4) protocol - -**show ipv6 route** - -This command displays either all the IPv6 route entries from the routing table or a specific IPv6 route. - -- Usage: - ``` - show ipv6 route [] [] - ``` - -- Example: - ``` - admin@sonic:~$ show ipv6 route - Codes: K - kernel route, C - connected, S - static, R - RIPng, - O - OSPFv6, I - IS-IS, B - BGP, A - Babel, - > - selected route, * - FIB route - - C>* ::1/128 is directly connected, lo - C>* 2018:2001::/126 is directly connected, Ethernet112 - C>* 2018:2002::/126 is directly connected, Ethernet116 - C>* fc00:1::32/128 is directly connected, lo - C>* fc00:1::102/128 is directly connected, lo - C>* fc00:2::102/128 is directly connected, eth0 - C * fe80::/64 is directly connected, Vlan100 - C * fe80::/64 is directly connected, Ethernet112 - C * fe80::/64 is directly connected, Ethernet116 - C * fe80::/64 is directly connected, Bridge - C * fe80::/64 is directly connected, PortChannel0011 - C>* fe80::/64 is directly connected, eth0 - ``` - - Optionally, you can specify an IPv6 address in order to display only routes to that particular IPv6 address - - -- Example: - ``` - admin@sonic:~$ show ipv6 route fc00:1::32 - Routing entry for fc00:1::32/128 - Known via "connected", distance 0, metric 0, best - * directly connected, lo - ``` - - Vrf-name can also be specified to get IPv6 routes programmed in the vrf. - - - Example: - ``` - admin@sonic:~$ show ipv6 route vrf Vrf-red - Codes: K - kernel route, C - connected, S - static, R - RIP, - O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, - T - Table, v - VNC, V - VNC-Direct, A - Babel, D - SHARP, - F - PBR, f - OpenFabric, - > - selected route, * - FIB route - VRF Vrf-red: - C>* 1100::1/128 is directly connected, Loopback11, 21:50:47 - C>* 100::/112 is directly connected, Vlan100, 03w1d06h - C>* fe80::/64 is directly connected, Loopback11, 21:50:47 - C>* fe80::/64 is directly connected, Vlan100, 03w1d06h - - admin@sonic:~$ show ipv6 route vrf Vrf-red 1100::1/128 - Routing entry for 1100::1/128 - Known via "connected", distance 0, metric 0, vrf Vrf-red, best - Last update 21:57:53 ago - * directly connected, Loopback11 - ``` - -**show ipv6 interfaces** - -This command displays the details about all the Layer3 IPv6 interfaces in the device for which IPv6 address has been assigned. -The type of interfaces include the following. -1) Front panel physical ports. -2) PortChannel. -3) VLAN interface. -4) Loopback interfaces -5) management interface - -- Usage: - ``` - show ipv6 interfaces - ``` - -- Example: - ``` - admin@sonic:~$ show ipv6 interfaces - Interface Master IPv6 address/mask Admin/Oper BGP Neighbor Neighbor IP - ----------- -------- ---------------------------------------- ------------ -------------- ------------- - Bridge fe80::7c45:1dff:fe08:cdd%Bridge/64 up/up N/A N/A - Loopback11 Vrf-red 1100::1/128 up/up - PortChannel01 fc00::71/126 up/down DEVICE1 fc00::72 - PortChannel02 fc00::75/126 up/down DEVICE2 fc00::76 - PortChannel03 fc00::79/126 up/down DEVICE3 fc00::7a - PortChannel04 fc00::7d/126 up/down DEVICE4 fc00::7e - Vlan100 Vrf-red 100::1/112 up/up N/A N/A - fe80::eef4:bbff:fefe:880a%Vlan100/64 - eth0 fe80::eef4:bbff:fefe:880a%eth0/64 up/up N/A N/A - lo fc00:1::32/128 up/up N/A N/A - ``` - -**show ipv6 protocol** - -This command displays the route-map that is configured for the IPv6 routing protocol. -Refer the routing stack [Quagga Command Reference](https://www.quagga.net/docs/quagga.pdf) or [FRR Command Reference](https://buildmedia.readthedocs.org/media/pdf/frrouting/latest/frrouting.pdf) to know more about this command. - - -- Usage: - ``` - show ipv6 protocol - ``` - -- Example: - ``` - admin@sonic:~$ show ipv6 protocol - Protocol : route-map - ------------------------ - system : none - kernel : none - connected : none - static : none - rip : none - ripng : none - ospf : none - ospf6 : none - isis : none - bgp : RM_SET_SRC6 - pim : none - hsls : none - olsr : none - babel : none - any : none - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#ip--ipv6) - -## IPv6 Link Local - -### IPv6 Link Local config commands - -This section explains all the commands that are supported in SONiC to configure IPv6 Link-local. - -**config interface ipv6 enable use-link-local-only ** - -This command enables user to enable an interface to forward L3 traffic with out configuring an address. This command creates the routing interface based on the auto generated IPv6 link-local address. This command can be used even if an address is configured on the interface. - -- Usage: - ``` - config interface ipv6 enable use-link-local-only - ``` - -- Example: - ``` - admin@sonic:~$ sudo config interface ipv6 enable use-link-local-only Vlan206 - admin@sonic:~$ sudo config interface ipv6 enable use-link-local-only PortChannel007 - admin@sonic:~$ sudo config interface ipv6 enable use-link-local-only Ethernet52 - ``` - -**config interface ipv6 disable use-link-local-only ** - -This command enables user to disable use-link-local-only configuration on an interface. - -- Usage: - ``` - config interface ipv6 disable use-link-local-only - ``` - -- Example: - ``` - admin@sonic:~$ sudo config interface ipv6 disable use-link-local-only Vlan206 - admin@sonic:~$ sudo config interface ipv6 disable use-link-local-only PortChannel007 - admin@sonic:~$ sudo config interface ipv6 disable use-link-local-only Ethernet52 - ``` - -**config ipv6 enable link-local** - -This command enables user to enable use-link-local-only command on all the interfaces globally. - -- Usage: - ``` - sudo config ipv6 enable link-local - ``` - -- Example: - ``` - admin@sonic:~$ sudo config ipv6 enable link-local - ``` - -**config ipv6 disable link-local** - -This command enables user to disable use-link-local-only command on all the interfaces globally. - -- Usage: - ``` - sudo config ipv6 disable link-local - ``` - -- Example: - ``` - admin@sonic:~$ sudo config ipv6 disable link-local - ``` - -### IPv6 Link Local show commands - -**show ipv6 link-local-mode** - -This command displays the link local mode of all the interfaces. - -- Usage: - ``` - show ipv6 link-local-mode - ``` - -- Example: - ``` - root@sonic:/home/admin# show ipv6 link-local-mode - +------------------+----------+ - | Interface Name | Mode | - +==================+==========+ - | Ethernet16 | Disabled | - +------------------+----------+ - | Ethernet18 | Enabled | - +------------------+----------+ - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#ipv6-link-local) - -## Kubernetes - -### Kubernetes show commands - -**show kubernetes server config** - -This command displays the kubernetes server configuration, if any, else would report as not configured. - -- Usage: - ``` - show kubernetes server config - ``` - -- Example: - ``` - admin@sonic:~$ show kubernetes server config - ip port insecure disable - ----------- ------ ---------- --------- - 10.3.157.24 6443 True False - ``` - -**show kubernetes server status** - -This command displays the kubernetes server status. - -- Usage: - ``` - show kubernetes server status - ``` - -- Example: - ``` - admin@sonic:~$ show kubernetes server status - ip port connected update-time - ----------- ------ ----------- ------------------- - 10.3.157.24 6443 true 2020-11-15 18:25:05 - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#Kubernetes) - -## Linux Kernel Dump - -This section demonstrates the show commands and configuration commands of Linux kernel dump mechanism in SONiC. - -### Linux Kernel Dump show commands - -**show kdump config** - -This command shows the configuration of Linux kernel dump. - -- Usage: - ``` - show kdump config - ``` - -- Example: - ``` - admin@sonic:$ show kdump config - Kdump administrative mode: Disabled - Kdump operational mode: Unready - Kdump memory researvation: 0M-2G:256M,2G-4G:320M,4G-8G:384M,8G-:448M - Maximum number of Kdump files: 3 - ``` - -**show kdump files** - -This command shows the Linux kernel core dump files and dmesg files which are -generated by kernel dump tool. - -- Usage: - ``` - show kdump files - ``` - -- Example: - ``` - admin@sonic:~$ show kdump files - Kernel core dump files Kernel dmesg files - ------------------------------------------ ------------------------------------------ - /var/crash/202106242344/kdump.202106242344 /var/crash/202106242344/dmesg.202106242344 - /var/crash/202106242337/kdump.202106242337 /var/crash/202106242337/dmesg.202106242337 - ``` - -**show kdump logging ** - -By default, this command will show the last 10 lines of latest dmesg file. -This command can also accept a specific file name and number of lines as arguments. - -- Usage: - ``` - show kdump logging - ``` - -- Example: - ``` - admin@sonic:~$ show kdump logging - [ 157.642053] RSP: 002b:00007fff1beee708 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 - [ 157.732635] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007fc3887d4504 - [ 157.818015] RDX: 0000000000000002 RSI: 000055d388eceb40 RDI: 0000000000000001 - [ 157.903401] RBP: 000055d388eceb40 R08: 000000000000000a R09: 00007fc3888255f0 - [ 157.988784] R10: 000000000000000a R11: 0000000000000246 R12: 00007fc3888a6760 - [ 158.074166] R13: 0000000000000002 R14: 00007fc3888a1760 R15: 0000000000000002 - [ 158.159553] Modules linked in: nft_chain_route_ipv6(E) nft_chain_route_ipv4(E) xt_TCPMSS(E) dummy(E) team_mode_loadbalance(E) team(E) sx_bfd(OE) sx_netdev(OE) psample(E) sx_core(OE) 8021q(E) garp(E) mrp(E) mst_pciconf(OE) mst_pci(OE) xt_hl(E) xt_tcpudp(E) ip6_tables(E) nft_compat(E) nft_chain_nat_ipv4(E) nf_nat_ipv4(E) nft_counter(E) xt_conntrack(E) nf_nat(E) jc42(E) nf_conntrack_netlink(E) nf_conntrack(E) nf_defrag_ipv6(E) nf_defrag_ipv4(E) libcrc32c(E) xfrm_user(E) xfrm_algo(E) mlxsw_minimal(E) mlxsw_i2c(E) i2c_mux_reg(E) i2c_mux(E) i2c_mlxcpld(E) leds_mlxreg(E) mlxreg_io(E) mlxreg_hotplug(E) mei_wdt(E) evdev(E) intel_rapl(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) kvm_intel(E) mlx_platform(E) kvm(E) irqbypass(E) crct10dif_pclmul(E) crc32_pclmul(E) ghash_clmulni_intel(E) intel_cstate(E) intel_uncore(E) - [ 159.016731] intel_rapl_perf(E) pcspkr(E) sg(E) iTCO_wdt(E) iTCO_vendor_support(E) mei_me(E) mei(E) bonding(E) pcc_cpufreq(E) video(E) button(E) ebt_vlan(E) ebtable_broute(E) bridge(E) stp(E) llc(E) ebtable_nat(E) ebtable_filter(E) ebtables(E) nf_tables(E) nfnetlink(E) xdpe12284(E) at24(E) ledtrig_timer(E) tmp102(E) lm75(E) drm(E) coretemp(E) max1363(E) industrialio_triggered_buffer(E) kfifo_buf(E) industrialio(E) tps53679(E) fuse(E) pmbus(E) pmbus_core(E) i2c_dev(E) configfs(E) ip_tables(E) x_tables(E) autofs4(E) loop(E) ext4(E) crc16(E) mbcache(E) jbd2(E) crc32c_generic(E) fscrypto(E) ecb(E) crypto_simd(E) cryptd(E) glue_helper(E) aes_x86_64(E) nvme(E) nvme_core(E) nls_utf8(E) nls_cp437(E) nls_ascii(E) vfat(E) fat(E) overlay(E) squashfs(E) zstd_decompress(E) xxhash(E) sd_mod(E) gpio_ich(E) ahci(E) - [ 159.864532] libahci(E) mlxsw_core(E) devlink(E) ehci_pci(E) ehci_hcd(E) crc32c_intel(E) libata(E) i2c_i801(E) scsi_mod(E) usbcore(E) usb_common(E) lpc_ich(E) mfd_core(E) e1000e(E) fan(E) thermal(E) - [ 160.075846] CR2: 0000000000000000 - ``` -You can specify a file name in order to show its -last 10 lines. - -- Example: - ``` - admin@sonic:~$ show kdump logging dmesg.202106242337 - [ 654.120195] RSP: 002b:00007ffe697690f8 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 - [ 654.210778] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007fcfca27b504 - [ 654.296157] RDX: 0000000000000002 RSI: 000055a6e4d1b3f0 RDI: 0000000000000001 - [ 654.381543] RBP: 000055a6e4d1b3f0 R08: 000000000000000a R09: 00007fcfca2cc5f0 - [ 654.466925] R10: 000000000000000a R11: 0000000000000246 R12: 00007fcfca34d760 - [ 654.552310] R13: 0000000000000002 R14: 00007fcfca348760 R15: 0000000000000002 - [ 654.637694] Modules linked in: binfmt_misc(E) nft_chain_route_ipv6(E) nft_chain_route_ipv4(E) xt_TCPMSS(E) dummy(E) team_mode_loadbalance(E) team(E) sx_bfd(OE) sx_netdev(OE) psample(E) sx_core(OE) 8021q(E) garp(E) mrp(E) mst_pciconf(OE) mst_pci(OE) xt_hl(E) xt_tcpudp(E) ip6_tables(E) nft_chain_nat_ipv4(E) nf_nat_ipv4(E) nft_compat(E) nft_counter(E) xt_conntrack(E) nf_nat(E) jc42(E) nf_conntrack_netlink(E) nf_conntrack(E) nf_defrag_ipv6(E) nf_defrag_ipv4(E) libcrc32c(E) xfrm_user(E) xfrm_algo(E) mlxsw_minimal(E) mlxsw_i2c(E) i2c_mux_reg(E) i2c_mux(E) mlxreg_hotplug(E) mlxreg_io(E) i2c_mlxcpld(E) leds_mlxreg(E) mei_wdt(E) evdev(E) intel_rapl(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) kvm_intel(E) kvm(E) mlx_platform(E) irqbypass(E) crct10dif_pclmul(E) crc32_pclmul(E) ghash_clmulni_intel(E) intel_cstate(E) - [ 655.493833] intel_uncore(E) intel_rapl_perf(E) pcspkr(E) sg(E) iTCO_wdt(E) iTCO_vendor_support(E) mei_me(E) mei(E) bonding(E) video(E) button(E) pcc_cpufreq(E) ebt_vlan(E) ebtable_broute(E) bridge(E) stp(E) llc(E) ebtable_nat(E) ebtable_filter(E) ebtables(E) nf_tables(E) nfnetlink(E) xdpe12284(E) at24(E) ledtrig_timer(E) tmp102(E) drm(E) lm75(E) coretemp(E) max1363(E) industrialio_triggered_buffer(E) kfifo_buf(E) industrialio(E) fuse(E) tps53679(E) pmbus(E) pmbus_core(E) i2c_dev(E) configfs(E) ip_tables(E) x_tables(E) autofs4(E) loop(E) ext4(E) crc16(E) mbcache(E) jbd2(E) crc32c_generic(E) fscrypto(E) ecb(E) crypto_simd(E) cryptd(E) glue_helper(E) aes_x86_64(E) nvme(E) nvme_core(E) nls_utf8(E) nls_cp437(E) nls_ascii(E) vfat(E) fat(E) overlay(E) squashfs(E) zstd_decompress(E) xxhash(E) sd_mod(E) - [ 656.337476] gpio_ich(E) ahci(E) mlxsw_core(E) libahci(E) devlink(E) crc32c_intel(E) libata(E) i2c_i801(E) scsi_mod(E) lpc_ich(E) mfd_core(E) ehci_pci(E) ehci_hcd(E) usbcore(E) e1000e(E) usb_common(E) fan(E) thermal(E) - [ 656.569590] CR2: 0000000000000000 - ``` -You can also specify a file name and number of lines in order to show the -last number of lines. - -- Example: - ``` - admin@sonic:~$ show kdump logging dmesg.202106242337 -l 20 - [ 653.525427] __handle_sysrq.cold.9+0x45/0xf2 - [ 653.576487] write_sysrq_trigger+0x2b/0x30 - [ 653.625472] proc_reg_write+0x39/0x60 - [ 653.669252] vfs_write+0xa5/0x1a0 - [ 653.708881] ksys_write+0x57/0xd0 - [ 653.748501] do_syscall_64+0x53/0x110 - [ 653.792287] entry_SYSCALL_64_after_hwframe+0x44/0xa9 - [ 653.852707] RIP: 0033:0x7fcfca27b504 - [ 653.895452] Code: 00 f7 d8 64 89 02 48 c7 c0 ff ff ff ff eb b3 0f 1f 80 00 00 00 00 48 8d 05 f9 61 0d 00 8b 00 85 c0 75 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 41 54 49 89 d4 55 48 89 f5 53 - [ 654.120195] RSP: 002b:00007ffe697690f8 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 - [ 654.210778] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007fcfca27b504 - [ 654.296157] RDX: 0000000000000002 RSI: 000055a6e4d1b3f0 RDI: 0000000000000001 - [ 654.381543] RBP: 000055a6e4d1b3f0 R08: 000000000000000a R09: 00007fcfca2cc5f0 - [ 654.466925] R10: 000000000000000a R11: 0000000000000246 R12: 00007fcfca34d760 - [ 654.552310] R13: 0000000000000002 R14: 00007fcfca348760 R15: 0000000000000002 - [ 654.637694] Modules linked in: binfmt_misc(E) nft_chain_route_ipv6(E) nft_chain_route_ipv4(E) xt_TCPMSS(E) dummy(E) team_mode_loadbalance(E) team(E) sx_bfd(OE) sx_netdev(OE) psample(E) sx_core(OE) 8021q(E) garp(E) mrp(E) mst_pciconf(OE) mst_pci(OE) xt_hl(E) xt_tcpudp(E) ip6_tables(E) nft_chain_nat_ipv4(E) nf_nat_ipv4(E) nft_compat(E) nft_counter(E) xt_conntrack(E) nf_nat(E) jc42(E) nf_conntrack_netlink(E) nf_conntrack(E) nf_defrag_ipv6(E) nf_defrag_ipv4(E) libcrc32c(E) xfrm_user(E) xfrm_algo(E) mlxsw_minimal(E) mlxsw_i2c(E) i2c_mux_reg(E) i2c_mux(E) mlxreg_hotplug(E) mlxreg_io(E) i2c_mlxcpld(E) leds_mlxreg(E) mei_wdt(E) evdev(E) intel_rapl(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) kvm_intel(E) kvm(E) mlx_platform(E) irqbypass(E) crct10dif_pclmul(E) crc32_pclmul(E) ghash_clmulni_intel(E) intel_cstate(E) - [ 655.493833] intel_uncore(E) intel_rapl_perf(E) pcspkr(E) sg(E) iTCO_wdt(E) iTCO_vendor_support(E) mei_me(E) mei(E) bonding(E) video(E) button(E) pcc_cpufreq(E) ebt_vlan(E) ebtable_broute(E) bridge(E) stp(E) llc(E) ebtable_nat(E) ebtable_filter(E) ebtables(E) nf_tables(E) nfnetlink(E) xdpe12284(E) at24(E) ledtrig_timer(E) tmp102(E) drm(E) lm75(E) coretemp(E) max1363(E) industrialio_triggered_buffer(E) kfifo_buf(E) industrialio(E) fuse(E) tps53679(E) pmbus(E) pmbus_core(E) i2c_dev(E) configfs(E) ip_tables(E) x_tables(E) autofs4(E) loop(E) ext4(E) crc16(E) mbcache(E) jbd2(E) crc32c_generic(E) fscrypto(E) ecb(E) crypto_simd(E) cryptd(E) glue_helper(E) aes_x86_64(E) nvme(E) nvme_core(E) nls_utf8(E) nls_cp437(E) nls_ascii(E) vfat(E) fat(E) overlay(E) squashfs(E) zstd_decompress(E) xxhash(E) sd_mod(E) - [ 656.337476] gpio_ich(E) ahci(E) mlxsw_core(E) libahci(E) devlink(E) crc32c_intel(E) libata(E) i2c_i801(E) scsi_mod(E) lpc_ich(E) mfd_core(E) ehci_pci(E) ehci_hcd(E) usbcore(E) e1000e(E) usb_common(E) fan(E) thermal(E) - [ 656.569590] CR2: 0000000000000000 - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#kdump) - -## LLDP - -### LLDP show commands - -**show lldp table** - -This command displays the brief summary of all LLDP neighbors. - -- Usage: - ``` - show lldp table - ``` - -- Example: - ``` - admin@sonic:~$ show lldp table - Capability codes: (R) Router, (B) Bridge, (O) Other - LocalPort RemoteDevice RemotePortID Capability RemotePortDescr - ----------- ----------------- ------------------- ------------ -------------------- - Ethernet112 T1-1 hundredGigE1/2 BR T0-2:hundredGigE1/29 - Ethernet116 T1-2 hundredGigE1/2 BR T0-2:hundredGigE1/30 - eth0 swtor-b2lab2-1610 GigabitEthernet 0/2 OBR - -------------------------------------------------- - Total entries displayed: 3 - ``` - -**show lldp neighbors** - -This command displays more details about all LLDP neighbors or only the neighbors connected to a specific interface. - -- Usage: - ``` - show lldp neighbors - ``` - -- Example1: To display all neighbors in all interfaces - ``` - admin@sonic:~$ show lldp neighbors - ------------------------------------------------------------------------------- - LLDP neighbors: - ------------------------------------------------------------------------------- - Interface: eth0, via: LLDP, RID: 1, Time: 0 day, 12:21:21 - Chassis: - ChassisID: mac 00:01:e8:81:e3:45 - SysName: swtor-b2lab2-1610 - SysDescr: Dell Force10 Networks Real Time Operating System Software. Dell Force10 Operating System Version: 1.0. Dell Force10 Application Software Version: 8.3.3.10d. Copyright (c) 1999-2012 by Dell Inc. All Rights Reserved.Build Time: Tue Sep 22 11:21:54 PDT 2015 - TTL: 20 - Capability: Repeater, on - Capability: Bridge, on - Capability: Router, on - Port: - PortID: ifname GigabitEthernet 0/2 - VLAN: 162, pvid: yes - ------------------------------------------------------------------------------- - Interface: Ethernet116, via: LLDP, RID: 3, Time: 0 day, 12:20:49 - Chassis: - ChassisID: mac 4c:76:25:e7:f0:c0 - SysName: T1-2 - SysDescr: Debian GNU/Linux 8 (jessie) Linux 4.9.0-8-amd64 #1 SMP Debian 4.9.110-3+deb9u6 (2015-12-19) x86_64 - TTL: 120 - MgmtIP: 10.11.162.40 - Capability: Bridge, on - Capability: Router, on - Capability: Wlan, off - Capability: Station, off - Port: - PortID: local hundredGigE1/2 - PortDescr: T0-2:hundredGigE1/30 - ------------------------------------------------------------------------------- - ``` - -Optionally, you can specify an interface name in order to display only that particular interface - -- Example2: - ``` - admin@sonic:~$ show lldp neighbors Ethernet112 - show lldp neighbors Ethernet112 - ------------------------------------------------------------------------------- - LLDP neighbors: - ------------------------------------------------------------------------------- - Interface: Ethernet112, via: LLDP, RID: 2, Time: 0 day, 19:24:17 - Chassis: - ChassisID: mac 4c:76:25:e5:e6:c0 - SysName: T1-1 - SysDescr: Debian GNU/Linux 8 (jessie) Linux 4.9.0-8-amd64 #1 SMP Debian 4.9.110-3+deb9u6 (2015-12-19) x86_64 - TTL: 120 - MgmtIP: 10.11.162.41 - Capability: Bridge, on - Capability: Router, on - Capability: Wlan, off - Capability: Station, off - Port: - PortID: local hundredGigE1/2 - PortDescr: T0-2:hundredGigE1/29 - ------------------------------------------------------------------------------- - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#lldp) - - -## Loading, Reloading And Saving Configuration - -This section explains the commands that are used to load the configuration from either the ConfigDB or from the minigraph. - -### Loading configuration from JSON file - -**config load** - -This command is used to load the configuration from a JSON file like the file which SONiC saves its configuration to, `/etc/sonic/config_db.json` -This command loads the configuration from the input file (if user specifies this optional filename, it will use that input file. Otherwise, it will use the default `/etc/sonic/config_db.json` file as the input file) into CONFIG_DB. -The configuration present in the input file is applied on top of the already running configuration. -This command does not flush the config DB before loading the new configuration (i.e., If the configuration present in the input file is same as the current running configuration, nothing happens) -If the config present in the input file is not present in running configuration, it will be added. -If the config present in the input file differs (when key matches) from that of the running configuration, it will be modified as per the new values for those keys. - -When user specifies the optional argument "-y" or "--yes", this command forces the loading without prompting the user for confirmation. -If the argument is not specified, it prompts the user to confirm whether user really wants to load this configuration file. - -- Usage: - ``` - config load [-y|--yes] [] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config load - Load config from the file /etc/sonic/config_db.json? [y/N]: y - Running command: /usr/local/bin/sonic-cfggen -j /etc/sonic/config_db.json --write-to-db - ``` - -### Loading configuration from minigraph (XML) file - -**config load_minigraph** - -This command is used to load the configuration from /etc/sonic/minigraph.xml. -When users do not want to use configuration from config_db.json, they can copy the minigraph.xml configuration file to the device and load it using this command. -This command restarts various services running in the device and it takes some time to complete the command. - -NOTE: If the user had logged in using SSH, users might get disconnected and some configuration failures might happen which might be hard to recover. Users need to reconnect their SSH sessions after configuring the management IP address. It is recommended to execute this command from console port -NOTE: Management interface IP address and default route (or specific route) may require reconfiguration in case if those parameters are not part of the minigraph.xml. - -When user specifies the optional argument "-y" or "--yes", this command forces the loading without prompting the user for confirmation. -If the argument is not specified, it prompts the user to confirm whether user really wants to load this configuration file. - -When user specifies the optional argument "-n" or "--no-service-restart", this command loads the configuration without restarting dependent services -running on the device. One use case for this option is during boot time when config-setup service loads minigraph configuration and there is no services -running on the device. - -- Usage: - ``` - config load_minigraph [-y|--yes] [-n|--no-service-restart] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config load_minigraph - Reload config from minigraph? [y/N]: y - Running command: /usr/local/bin/sonic-cfggen -j /etc/sonic/config_db.json --write-to-db - ``` - -### Reloading Configuration - -**config reload** - -This command is used to clear current configuration and import new configurationn from the input file or from /etc/sonic/config_db.json. -This command shall stop all services before clearing the configuration and it then restarts those services. - -This command restarts various services running in the device and it takes some time to complete the command. -NOTE: If the user had logged in using SSH, users **might get disconnected** depending upon the new management IP address. Users need to reconnect their SSH sessions. -In general, it is recommended to execute this command from console port after disconnecting all SSH sessions to the device. -When users to do “config reload” the newly loaded config may have management IP address, or it may not have management IP address. -If mgmtIP is there in the newly loaded config file, that mgmtIP might be same as previously configured value or it might be different. -This difference in mgmtIP address values results in following possible behaviours. - -Case1: Previously configured mgmtIP is same as newly loaded mgmtIP. The SSH session may not be affected at all, but it’s possible that there will be a brief interruption in the SSH session. But, assuming the client’s timeout value isn’t on the order of a couple of seconds, the session would most likely just resume again as soon as the interface is reconfigured and up with the same IP. -Case2: Previously configured mgmtIP is different from newly loaded mgmtIP. Users will lose their SSH connections. -Case3: Newly loaded config does not have any mgmtIP. Users will lose their SSH connections. - -NOTE: Management interface IP address and default route (or specific route) may require reconfiguration in case if those parameters are not part of the minigraph.xml. - -When user specifies the optional argument "-y" or "--yes", this command forces the loading without prompting the user for confirmation. -If the argument is not specified, it prompts the user to confirm whether user really wants to load this configuration file. - -When user specifies the optional argument "-n" or "--no-service-restart", this command clear and loads the configuration without restarting dependent services -running on the device. One use case for this option is during boot time when config-setup service loads existing old configuration and there is no services -running on the device. - -When user specifies the optional argument "-f" or "--force", this command ignores the system sanity checks. By default a list of sanity checks are performed and if one of the checks fail, the command will not execute. The sanity checks include ensuring the system status is not starting, all the essential services are up and swss is in ready state. - -- Usage: - ``` - config reload [-y|--yes] [-l|--load-sysinfo] [] [-n|--no-service-restart] [-f|--force] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config reload - Clear current config and reload config from the file /etc/sonic/config_db.json? [y/N]: y - Running command: systemctl stop dhcp_relay - Running command: systemctl stop swss - Running command: systemctl stop snmp - Warning: Stopping snmp.service, but it can still be activated by: - snmp.timer - Running command: systemctl stop lldp - Running command: systemctl stop pmon - Running command: systemctl stop bgp - Running command: systemctl stop teamd - Running command: /usr/local/bin/sonic-cfggen -H -k Force10-Z9100-C32 --write-to-db - Running command: /usr/local/bin/sonic-cfggen -j /etc/sonic/config_db.json --write-to-db - Running command: systemctl restart hostname-config - Running command: systemctl restart interfaces-config - Timeout, server 10.11.162.42 not responding. - ``` - When some sanity checks fail below error messages can be seen - ``` - admin@sonic:~$ sudo config reload -y - System is not up. Retry later or use -f to avoid system checks - ``` - ``` - admin@sonic:~$ sudo config reload -y - Relevant services are not up. Retry later or use -f to avoid system checks - ``` - ``` - admin@sonic:~$ sudo config reload -y - SwSS container is not ready. Retry later or use -f to avoid system checks - ``` - - -### Loading Management Configuration - -**config load_mgmt_config** - -This command is used to reconfigure hostname and mgmt interface based on device description file. -This command either uses the optional file specified as arguement or looks for the file "/etc/sonic/device_desc.xml". -If the file does not exist or if the file does not have valid fields for "hostname" and "ManagementAddress", it fails. - -When user specifies the optional argument "-y" or "--yes", this command forces the loading without prompting the user for confirmation. -If the argument is not specified, it prompts the user to confirm whether user really wants to load this configuration file. - -- Usage: - ``` - config load_mgmt_config [-y|--yes] [] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config load_mgmt_config - Reload config from minigraph? [y/N]: y - Running command: /usr/local/bin/sonic-cfggen -M /etc/sonic/device_desc.xml --write-to-db - ``` - - -### Saving Configuration to a File for Persistence - -**config save** - -This command is to save the config DB configuration into the user-specified filename or into the default /etc/sonic/config_db.json. This saves the configuration into the disk which is available even after reboots. -Saved file can be transferred to remote machines for debugging. If users wants to load the configuration from this new file at any point of time, they can use "config load" command and provide this newly generated file as input. If users wants this newly generated file to be used during reboot, they need to copy this file to /etc/sonic/config_db.json. - -- Usage: - ``` - config save [-y|--yes] [] - ``` - -- Example (Save configuration to /etc/sonic/config_db.json): - ``` - admin@sonic:~$ sudo config save -y - ``` - -- Example (Save configuration to a specified file): - ``` - admin@sonic:~$ sudo config save -y /etc/sonic/config2.json - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#loading-reloading-and-saving-configuration) - -## Loopback Interfaces - -### Loopback show commands - -Please check [show ip interfaces](#show-ip-interfaces) - -### Loopback config commands - -This sub-section explains how to create and delete loopback interfaces. - -**config interface loopback** - -This command is used to add or delete loopback interfaces. -It is recommended to use loopback names in the format "Loopbackxxx", where "xxx" is number of 1 to 3 digits. Ex: "Loopback11". - -- Usage: - ``` - config loopback (add | del) - ``` - -- Example (Create the loopback with name "Loopback11"): - ``` - admin@sonic:~$ sudo config loopback add Loopback11 - ``` - -## VRF Configuration - -### VRF show commands - -**show vrf** - -This command displays all vrfs configured on the system along with interface binding to the vrf. -If vrf-name is also provided as part of the command, if the vrf is created it will display all interfaces binding to the vrf, if vrf is not created nothing will be displayed. - -- Usage: - ``` - show vrf [] - ``` - -- Example: - ```` - admin@sonic:~$ show vrf - VRF Interfaces - ------- ------------ - default Vlan20 - Vrf-red Vlan100 - Loopback11 - Eth0.100 - Vrf-blue Loopback100 - Loopback102 - Ethernet0.10 - PortChannel101 - ```` - -### VRF config commands - -**config vrf add ** - -This command creates vrf in SONiC system with provided vrf-name. - -- Usage: - ``` -config vrf add -``` -Note: vrf-name should always start with keyword "Vrf" - -**config vrf del ** - -This command deletes vrf with name vrf-name. - -- Usage: - ``` -config vrf del -``` - -## Management VRF - -### Management VRF Show commands - -**show mgmt-vrf** - -This command displays whether the management VRF is enabled or disabled. It also displays the details about the the links (eth0, mgmt, lo-m) that are related to management VRF. - -- Usage: - ``` - show mgmt-vrf - ``` - -- Example: - ``` - admin@sonic:~$ show mgmt-vrf - - ManagementVRF : Enabled - - Management VRF interfaces in Linux: - 348: mgmt: mtu 65536 qdisc noqueue state UP mode DEFAULT group default qlen 1000 - link/ether f2:2a:d9:bc:e8:f0 brd ff:ff:ff:ff:ff:ff - 2: eth0: mtu 1500 qdisc mq master mgmt state UP mode DEFAULT group default qlen 1000 - link/ether 4c:76:25:f4:f9:f3 brd ff:ff:ff:ff:ff:ff - 350: lo-m: mtu 1500 qdisc noqueue master mgmt state UNKNOWN mode DEFAULT group default qlen 1000 - link/ether b2:4c:c6:f3:e9:92 brd ff:ff:ff:ff:ff:ff - - NOTE: The management interface "eth0" shows the "master" as "mgmt" since it is part of management VRF. - ``` - -**show mgmt-vrf routes** - -This command displays the routes that are present in the routing table 5000 that is meant for management VRF. - -- Usage: - ``` - show mgmt-vrf routes - ``` - -- Example: - ``` - admin@sonic:~$ show mgmt-vrf routes - - Routes in Management VRF Routing Table: - default via 10.16.210.254 dev eth0 metric 201 - broadcast 10.16.210.0 dev eth0 proto kernel scope link src 10.16.210.75 - 10.16.210.0/24 dev eth0 proto kernel scope link src 10.16.210.75 - local 10.16.210.75 dev eth0 proto kernel scope host src 10.16.210.75 - broadcast 10.16.210.255 dev eth0 proto kernel scope link src 10.16.210.75 - broadcast 127.0.0.0 dev lo-m proto kernel scope link src 127.0.0.1 - 127.0.0.0/8 dev lo-m proto kernel scope link src 127.0.0.1 - local 127.0.0.1 dev lo-m proto kernel scope host src 127.0.0.1 - broadcast 127.255.255.255 dev lo-m proto kernel scope link src 127.0.0.1 - ``` - -**show management_interface address** - -This command displays the IP address(es) configured for the management interface "eth0" and the management network default gateway. - -- Usage: - ``` - show management_interface address - ``` - -- Example: - ``` - admin@sonic:~$ show management_interface address - Management IP address = 10.16.210.75/24 - Management NetWork Default Gateway = 10.16.210.254 - Management IP address = FC00:2::32/64 - Management Network Default Gateway = fc00:2::1 - ``` - -**show snmpagentaddress** - -This command displays the configured SNMP agent IP addresses. - -- Usage: - ``` - show snmpagentaddress - ``` - -- Example: - ``` - admin@sonic:~$ show snmpagentaddress - ListenIP ListenPort ListenVrf - ---------- ------------ ----------- - 1.2.3.4 787 mgmt - ``` - -**show snmptrap** - -This command displays the configured SNMP Trap server IP addresses. - -- Usage: - ``` - show snmptrap - ``` - -- Example: - ``` - admin@sonic:~$ show snmptrap - Version TrapReceiverIP Port VRF Community - --------- ---------------- ------ ----- ----------- - 2 31.31.31.31 456 mgmt public - ``` - -### Management VRF Config commands - -**config vrf add mgmt** - -This command enables the management VRF in the system. This command restarts the "interfaces-config" service which in turn regenerates the /etc/network/interfaces file and restarts the "networking" service. This creates a new interface and l3mdev CGROUP with the name as "mgmt" and enslaves the management interface "eth0" into this master interface "mgmt". Note that the VRFName "mgmt" (or "management") is reserved for management VRF. i.e. Data VRFs should not use these reserved VRF names. - -- Usage: - ``` - config vrf add mgmt - ``` - -- Example: - ``` - admin@sonic:~$ sudo config vrf add mgmt - ``` - -**config vrf del mgmt** - -This command disables the management VRF in the system. This command restarts the "interfaces-config" service which in turn regenerates the /etc/network/interfaces file and restarts the "networking" service. This deletes the interface "mgmt" and deletes the l3mdev CGROUP named "mgmt" and puts back the management interface "eth0" into the default VRF. Note that the VRFName "mgmt" (or "management") is reserved for management VRF. i.e. Data VRFs should not use these reserved VRF names. - -- Usage: - ``` - config vrf del mgmt - ``` - -- Example: - ``` - admin@sonic:~$ sudo config vrf del mgmt - ``` - -**config snmpagentaddress add** - -This command adds the SNMP agent IP address on which the SNMP agent is expected to listen. When SNMP agent is expected to work as part of management VRF, users should specify the optional vrf_name parameter as "mgmt". This configuration goes into snmpd.conf that is used by SNMP agent. SNMP service is restarted to make this configuration effective in SNMP agent. - -- Usage: - ``` - config snmpagentaddress add [-p ] [-v ] agentip - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmpagentaddress add -v mgmt -p 123 21.22.13.14 - - Note: For this example, configuration goes into /etc/snmp/snmpd.conf inside snmp docker as follows. When "-v" parameter is not used, the additional "%" in the following line will not be present. - - agentAddress 21.22.13.14:123%mgmt - ``` - -**config snmpagentaddress del** - -This command deletes the SNMP agent IP address on which the SNMP agent is expected to listen. When users had added the agent IP as part of "mgmt" VRF, users should specify the optional vrf_name parameter as "mgmt" while deleting as well. This configuration is removed from snmpd.conf that is used by SNMP agent. SNMP service is restarted to make this configuration effective in SNMP agent. - -- Usage: - ``` - config snmpagentaddress del [-p ] [-v ] agentip - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmpagentaddress del -v mgmt -p 123 21.22.13.14 - - ``` - -**config snmptrap modify** - -This command modifies the SNMP trap server IP address to which the SNMP agent is expected to send the traps. Users can configure one server IP addrss for each SNMP version to send the traps. When SNMP agent is expected to send traps as part of management VRF, users should specify the optional vrf_name parameter as "mgmt". This configuration goes into snmpd.conf that is used by SNMP agent. SNMP service is restarted to make this configuration effective in SNMP agent. - -- Usage: - ``` - config snmptrap modify [-p ] [-v ] [-c ] trapserverip - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmptrap modify 2 -p 456 -v mgmt 21.21.21.21 - - For this example, configuration goes into /etc/snmp/snmpd.conf inside snmp docker as follows. When "-v" parameter is not used, the additional "%" in the following line will not be present. In case of SNMPv1, "trapsink" will be updated, in case of v2, "trap2sink" will be updated and in case of v3, "informsink" will be updated. - - trap2sink 31.31.31.31:456%mgmt public - - ``` - -**config snmptrap del** - -This command deletes the SNMP Trap server IP address to which SNMP agent is expected to send TRAPs. When users had added the trap server IP as part of "mgmt" VRF, users should specify the optional vrf_name parameter as "mgmt" while deleting as well. This configuration is removed from snmpd.conf that is used by SNMP agent. SNMP service is restarted to make this configuration effective in SNMP agent. - -- Usage: - ``` - config snmptrap del [-p ] [-v ] [-c ] trapserverip - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmptrap del -v mgmt -p 123 21.22.13.14 - - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#management-vrf) - -## Muxcable - -### Muxcable Show commands - -**show muxcable status** - -This command displays all the status of either all the ports which are connected to muxcable or any individual port selected by the user. The resultant table or json output will show the current status of muxcable on the port (auto/active) and also the health of the muxcable. - -- Usage: - ``` - show muxcable status [OPTIONS] [PORT] - ``` - -While displaying the muxcable status, users can configure the following fields - -- PORT optional - Port name should be a valid port -- --json optional - -- option to display the result in json format. By default output will be in tabular format. - -With no optional argument, all the ports muxcable status will be displayed in tabular form, or user can pass --json option to display in json format - -- Example: - ``` - admin@sonic:~$ show muxcable status - PORT STATUS HEALTH - ---------- -------- -------- - Ethernet32 active HEALTHY - Ethernet0 auto HEALTHY - ``` - ``` - admin@sonic:~$ show muxcable status --json - ``` - ```json - { - "MUX_CABLE": { - "Ethernet32": { - "STATUS": "active", - "HEALTH": "HEALTHY" - }, - "Ethernet0": { - "STATUS": "auto", - "HEALTH": "HEALTHY" - } - } - } - - ``` - ``` - admin@sonic:~$ show muxcable status Ethernet0 - PORT STATUS HEALTH - --------- -------- -------- - Ethernet0 auto HEALTHY - ``` - ``` - admin@sonic:~$ show muxcable status Ethernet0 --json - ``` - ```json - { - "MUX_CABLE": { - "Ethernet0": { - "STATUS": "auto", - "HEALTH": "HEALTHY" - } - } - } - ``` - -**show muxcable config** - -This command displays all the configurations of either all the ports which are connected to muxcable or any individual port selected by the user. The resultant table or json output will show the current configurations of muxcable on the port(active/standby) and also the ipv4 and ipv6 address of the port as well as peer TOR ip address with the hostname. - -- Usage: - ``` - show muxcable config [OPTIONS] [PORT] - ``` - -With no optional argument, all the ports muxcable configuration will be displayed in tabular form -While displaying the muxcable configuration, users can configure the following fields - -- PORT optional - Port name should be a valid port -- --json optional - option to display the result in json format. By default output will be in tabular format. - -- Example: - ``` - admin@sonic:~$ show muxcable config - SWITCH_NAME PEER_TOR - ------------- ---------- - sonic 10.1.1.1 - port state ipv4 ipv6 - --------- ------- -------- -------- - Ethernet0 active 10.1.1.1 fc00::75 - ``` - ``` - admin@sonic:~$ show muxcable config --json - ``` - ```json - { - "MUX_CABLE": { - "PEER_TOR": "10.1.1.1", - "PORTS": { - "Ethernet0": { - "STATE": "active", - "SERVER": { - "IPv4": "10.1.1.1", - "IPv6": "fc00::75" - } - } - } - } - } - ``` - ``` - admin@sonic:~$ show muxcable config Ethernet0 - SWITCH_NAME PEER_TOR - ------------- ---------- - sonic 10.1.1.1 - port state ipv4 ipv6 - --------- ------- -------- -------- - Ethernet0 active 10.1.1.1 fc00::75 - ``` - ``` - admin@sonic:~$ show muxcable config Ethernet0 --json - ``` - ```json - { - "MUX_CABLE": { - "PORTS": { - "Ethernet0": { - "STATE": "active", - "SERVER": { - "IPv4": "10.1.1.1", - "IPv6": "fc00::75" - } - } - } - } - } - ``` - -**show muxcable ber-info** - -This command displays the ber(Bit error rate) of the port user provides on the target user provides. The target provided as an integer corresponds to actual target as. -0 -> local -1 -> tor 1 -2 -> tor 2 -3 -> nic - -- Usage: - ``` - Usage: show muxcable ber-info [OPTIONS] PORT TARGET - ``` - - -- PORT required - Port number should be a valid port -- TARGET required - the actual target to get the ber info of. - -- Example: - ``` - admin@sonic:~$ show muxcable ber-info 1 1 - Lane1 Lane2 - ------- ------- - 0 0 - ``` - -**show muxcable ber-info** - -This command displays the eye info in mv(milli volts) of the port user provides on the target user provides. The target provided as an integer corresponds to actual target as. -0 -> local -1 -> tor 1 -2 -> tor 2 -3 -> nic - -- Usage: - ``` - Usage: show muxcable eye-info [OPTIONS] PORT TARGET - ``` - -- PORT required - Port number should be a valid port -- TARGET required - the actual target to get the eye info of. - -- Example: - ``` - admin@sonic:~$ show muxcable ber-info 1 1 - Lane1 Lane2 - ------- ------- - 632 622 - ``` - -### Muxcable Config commands - - -**config muxcable mode** - -This command is used for setting the configuration of a muxcable Port/all ports to be active or auto. The user has to enter a port number or else all to make the muxcable config operation on all the ports. Depending on the status of the muxcable port state the resultant output could be OK or INPROGRESS . OK would imply no change on the state, INPROGRESS would mean the toggle is happening in the background. - -- Usage: - ``` - config muxcable mode [OPTIONS] - ``` - -While configuring the muxcable, users needs to configure the following fields for the operation - -- operation_state, permitted operation to be configured which can only be auto or active -- PORT optional - Port name should be a valid port -- --json optional - option to display the result in json format. By default output will be in tabular format. - - -- Example: - ``` - admin@sonic:~$ sudo config muxcable mode active Ethernet0 - port state - --------- ------- - Ethernet0 OK - ``` - ``` - admin@sonic:~$ sudo config muxcable mode --json active Ethernet0 - ``` - ```json - { - "Ethernet0": "OK" - } - ``` - ``` - admin@sonic:~$ sudo config muxcable mode active all - port state - ---------- ---------- - Ethernet0 OK - Ethernet32 INPROGRESS - ``` - ``` - admin@sonic:~$ sudo config muxcable mode active all --json - ``` - ```json - { - "Ethernet32": "INPROGRESS", - "Ethernet0": "OK" - } - ``` -**config muxcable prbs enable/disable** - -This command is used for setting the configuration and enable/diable of prbs on a port user provides. While enabling in addition to port the user also needs to provides the target, prbs mode and lane map on which the user intends to run prbs on. The target reflects where the enable/dsiable will happen. - -- Usage: - ``` - config muxcable prbs enable [OPTIONS] PORT TARGET MODE_VALUE LANE_MAP - config muxcable prbs disable [OPTIONS] PORT TARGET - ``` - -While configuring the muxcable, users needs to configure the following fields for the operation - -- PORT required - Port number should be a valid port -- TARGET required - the actual target to run the prbs on - 0 -> local side, - 1 -> TOR 1 - 2 -> TOR 2 - 3 -> NIC -- MODE_VALUE required - the mode/type for configuring the PRBS mode. - 0x00 = PRBS 9, 0x01 = PRBS 15, 0x02 = PRBS 23, 0x03 = PRBS 31 -- LANE_MAP required - an integer representing the lane_map to be run PRBS on - 0bit for lane 0, 1bit for lane1 and so on. - for example 3 -> 0b'0011 , means running on lane0 and lane1 -- Example: - ``` - admin@sonic:~$ sudo config muxcable prbs enable 1 1 3 3 - PRBS config sucessful - admin@sonic:~$ sudo config muxcable prbs disable 1 0 - PRBS disable sucessful - ``` - -**config muxcable loopback enable/disable** - -This command is used for setting the configuration and enable/disable of loopback on a port user provides. While enabling in addition to port the user also needs to provides the target and lane map on which the user intends to run loopback on. The target reflects where the enable/dsiable will happen. - -- Usage: - ``` - config muxcable loopback enable [OPTIONS] PORT TARGET LANE_MAP - config muxcable loopback disable [OPTIONS] PORT TARGET - ``` - -While configuring the muxcable, users needs to configure the following fields for the operation - -- PORT required - Port number should be a valid port -- TARGET required - the actual target to run the loopback on - 0 -> local side, - 1 -> TOR 1 - 2 -> TOR 2 - 3 -> NIC -- LANE_MAP required - an integer representing the lane_map to be run loopback on - 0bit for lane 0, 1bit for lane1 and so on. - for example 3 -> 0b'0011 , means running on lane0 and lane1 - -- Example: - ``` - admin@sonic:~$ sudo config muxcable loopback enable 1 1 3 - loopback config sucessful - admin@sonic:~$ sudo config muxcable loopback disable 1 0 - loopback disable sucessfull - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#muxcable) - -## Mirroring - -### Mirroring Show commands - -**show mirror_session** - -This command displays all the mirror sessions that are configured. - -- Usage: - ``` - show mirror_session - ``` - -- Example: - ``` - admin@sonic:~$ show mirror_session - ERSPAN Sessions - Name Status SRC IP DST IP GRE DSCP TTL Queue Policer Monitor Port SRC Port Direction - ------ -------- -------- -------- ----- ------ ----- ------- --------- -------------- ---------- ----------- - everflow0 active 10.1.0.32 10.0.0.7 - - SPAN Sessions - Name Status DST Port SRC Port Direction - ------ -------- ---------- ------------- ----------- - port0 active Ethernet0 PortChannel10 rx - ``` - -### Mirroring Config commands - -**config mirror_session** - -This command is used to add or remove mirroring sessions. Mirror session is identified by "session_name". -This command supports configuring both SPAN/ERSPAN sessions. -In SPAN user can configure mirroring of list of source ports/LAG to destination port in ingress/egress/both directions. -In ERSPAN user can configure mirroring of list of source ports/LAG to a destination IP. -Both SPAN/ERSPAN support ACL based mirroring and can be used in ACL configurations. - -While adding a new ERSPAN session, users need to configure the following fields that are used while forwarding the mirrored packets. - -1) source IP address, -2) destination IP address, -3) DSCP (QoS) value with which mirrored packets are forwarded -4) TTL value -5) optional - GRE Type in case if user wants to send the packet via GRE tunnel. GRE type could be anything; it could also be left as empty; by default, it is 0x8949 for Mellanox; and 0x88be for the rest of the chips. -6) optional - Queue in which packets shall be sent out of the device. Valid values 0 to 7 for most of the devices. Users need to know their device and the number of queues supported in that device. -7) optional - Policer which will be used to control the rate at which frames are mirrored. -8) optional - List of source ports which can have both Ethernet and LAG ports. -9) optional - Direction - Mirror session direction when configured along with Source port. (Supported rx/tx/both. default direction is both) - -- Usage: - ``` - config mirror_session erspan add [gre_type] [queue] [policer ] [source-port-list] [direction] - ``` - - The following command is also supported to be backward compatible. - This command will be deprecated in future releases. - ``` - config mirror_session add [gre_type] [queue] - ``` - -- Example: - ``` - root@T1-2:~# config mirror_session add mrr_legacy 1.2.3.4 20.21.22.23 8 100 0x6558 0 - root@T1-2:~# show mirror_session - Name Status SRC IP DST IP GRE DSCP TTL Queue Policer Monitor Port SRC Port Direction - --------- -------- -------- ----------- ------ ------ ----- ------- --------- -------------- ---------- ----------- - mrr_legacy inactive 1.2.3.4 20.21.22.23 0x6558 8 100 0 - - - root@T1-2:~# config mirror_session erspan add mrr_abcd 1.2.3.4 20.21.22.23 8 100 0x6558 0 - root@T1-2:~# show mirror_session - Name Status SRC IP DST IP GRE DSCP TTL Queue Policer Monitor Port SRC Port Direction - --------- -------- -------- ----------- ------ ------ ----- ------- --------- -------------- ---------- ----------- - mrr_abcd inactive 1.2.3.4 20.21.22.23 0x6558 8 100 0 - root@T1-2:~# - - root@T1-2:~# config mirror_session erspan add mrr_port 1.2.3.4 20.21.22.23 8 100 0x6558 0 Ethernet0 - root@T1-2:~# show mirror_session - Name Status SRC IP DST IP GRE DSCP TTL Queue Policer Monitor Port SRC Port Direction - --------- -------- -------- ----------- ------ ------ ----- ------- --------- -------------- ---------- ----------- - mrr_port inactive 1.2.3.4 20.21.22.23 0x6558 8 100 0 Ethernet0 both - root@T1-2:~# - ``` - -While adding a new SPAN session, users need to configure the following fields that are used while forwarding the mirrored packets. -1) destination port, -2) optional - List of source ports- List of source ports which can have both Ethernet and LAG ports. -3) optional - Direction - Mirror session direction when configured along with Source port. (Supported rx/tx/both. default direction is both) -4) optional - Queue in which packets shall be sent out of the device. Valid values 0 to 7 for most of the devices. Users need to know their device and the number of queues supported in that device. -5) optional - Policer which will be used to control the rate at which frames are mirrored. - -- Usage: - ``` - config mirror_session span add [source-port-list] [direction] [queue] [policer ] - ``` - -- Example: - ``` - root@T1-2:~# config mirror_session span add port0 Ethernet0 Ethernet4,PortChannel001,Ethernet8 - root@T1-2:~# show mirror_session - Name Status DST Port SRC Port Direction - ------ -------- ---------- --------------------------------- ----------- - port0 active Ethernet0 Ethernet4,PortChannel10,Ethernet8 both - root@T1-2:~# - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#mirroring) - -## NAT - -### NAT Show commands - -**show nat config** - -This command displays the NAT configuration. - -- Usage: - ``` - show nat config [static | pool | bindings | globalvalues | zones] - ``` - -With no optional arguments, the whole NAT configuration is displayed. - -- Example: - ``` - admin@sonic:~$ show nat config static - - Nat Type IP Protocol Global IP Global L4 Port Local IP Local L4 Port Twice-Nat Id - -------- ----------- ------------ -------------- ------------- ------------- ------------ - dnat all 65.55.45.5 --- 10.0.0.1 --- --- - dnat all 65.55.45.6 --- 10.0.0.2 --- --- - dnat tcp 65.55.45.7 2000 20.0.0.1 4500 1 - snat tcp 20.0.0.2 4000 65.55.45.8 1030 1 - - admin@sonic:~$ show nat config pool - - Pool Name Global IP Range Global L4 Port Range - ------------ ------------------------- -------------------- - Pool1 65.55.45.5 1024-65535 - Pool2 65.55.45.6-65.55.45.8 --- - Pool3 65.55.45.10-65.55.45.15 500-1000 - - admin@sonic:~$ show nat config bindings - - Binding Name Pool Name Access-List Nat Type Twice-Nat Id - ------------ ------------ ------------ -------- ------------ - Bind1 Pool1 --- snat --- - Bind2 Pool2 1 snat 1 - Bind3 Pool3 2 snat -- - - admin@sonic:~$ show nat config globalvalues - - Admin Mode : enabled - Global Timeout : 600 secs - TCP Timeout : 86400 secs - UDP Timeout : 300 secs - - admin@sonic:~$ show nat config zones - - Port Zone - ---- ---- - Ethernet2 0 - Vlan100 1 - ``` - -**show nat statistics** - -This command displays the NAT translation statistics for each entry. - -- Usage: - ``` - show nat statistics - ``` - -- Example: - ``` - admin@sonic:~$ show nat statistics - - Protocol Source Destination Packets Bytes - -------- --------- -------------- ------------- ------------- - all 10.0.0.1 --- 802 1009280 - all 10.0.0.2 --- 23 5590 - tcp 20.0.0.1:4500 --- 110 12460 - udp 20.0.0.1:4000 --- 1156 789028 - tcp 20.0.0.1:6000 --- 30 34800 - tcp 20.0.0.1:5000 65.55.42.1:2000 128 110204 - tcp 20.0.0.1:5500 65.55.42.1:2000 8 3806 - ``` - -**show nat translations** - -This command displays the NAT translation entries. - -- Usage: - ``` - show nat translations [count] - ``` -Giving the optional count argument displays only the details about the number of translation entries. -- Example: - ``` - admin@sonic:~$ show nat translations - - Static NAT Entries ................. 4 - Static NAPT Entries ................. 2 - Dynamic NAT Entries ................. 0 - Dynamic NAPT Entries ................. 4 - Static Twice NAT Entries ................. 0 - Static Twice NAPT Entries ................. 4 - Dynamic Twice NAT Entries ................ 0 - Dynamic Twice NAPT Entries ................ 0 - Total SNAT/SNAPT Entries ................ 9 - Total DNAT/DNAPT Entries ................ 9 - Total Entries ................ 14 - - Protocol Source Destination Translated Source Translated Destination - -------- --------- -------------- ----------------- ---------------------- - all 10.0.0.1 --- 65.55.42.2 --- - all --- 65.55.42.2 --- 10.0.0.1 - all 10.0.0.2 --- 65.55.42.3 --- - all --- 65.55.42.3 --- 10.0.0.2 - tcp 20.0.0.1:4500 --- 65.55.42.1:2000 --- - tcp --- 65.55.42.1:2000 --- 20.0.0.1:4500 - udp 20.0.0.1:4000 --- 65.55.42.1:1030 --- - udp --- 65.55.42.1:1030 --- 20.0.0.1:4000 - tcp 20.0.0.1:6000 --- 65.55.42.1:1024 --- - tcp --- 65.55.42.1:1024 --- 20.0.0.1:6000 - tcp 20.0.0.1:5000 65.55.42.1:2000 65.55.42.1:1025 20.0.0.1:4500 - tcp 20.0.0.1:4500 65.55.42.1:1025 65.55.42.1:2000 20.0.0.1:5000 - tcp 20.0.0.1:5500 65.55.42.1:2000 65.55.42.1:1026 20.0.0.1:4500 - tcp 20.0.0.1:4500 65.55.42.1:1026 65.55.42.1:2000 20.0.0.1:5500 - - admin@sonic:~$ show nat translations count - - Static NAT Entries ................. 4 - Static NAPT Entries ................. 2 - Dynamic NAT Entries ................. 0 - Dynamic NAPT Entries ................. 4 - Static Twice NAT Entries ................. 0 - Static Twice NAPT Entries ................. 4 - Dynamic Twice NAT Entries ................ 0 - Dynamic Twice NAPT Entries ................ 0 - Total SNAT/SNAPT Entries ................ 9 - Total DNAT/DNAPT Entries ................ 9 - Total Entries ................ 14 - ``` - -### NAT Config commands - -**config nat add static** - -This command is used to add a static NAT or NAPT entry. -When configuring the Static NAT entry, user has to specify the following fields with 'basic' keyword. - -1. Global IP address, -2. Local IP address, -3. NAT type (snat / dnat) to be applied on the Global IP address. Default value is dnat. This is optinoal argument. -4. Twice NAT Id. This is optional argument used in case of twice nat configuration. - -When configuring the Static NAPT entry, user has to specify the following fields. - -1. IP protocol type (tcp / udp) -2. Global IP address + Port -3. Local IP address + Port -4. NAT type (snat / dnat) to be applied on the Global IP address + Port. Default value is dnat. This is optional argument. -5. Twicw NAT Id. This is optional argument used in case of twice nat configuration. - -- Usage: - ``` - config nat add static {{basic (global-ip) (local-ip)} | {{tcp | udp} (global-ip) (global-port) (local-ip) (local-port)}} [-nat_type {snat | dnat}] [-twice_nat_id (value)] - ``` - -To delete a static NAT or NAPT entry, use the command below. Giving the all argument deletes all the configured static NAT and NAPT entries. -``` -config nat remove static {{basic (global-ip) (local-ip)} | {{tcp | udp} (global-ip) (global-port) (local-ip) (local-port)} | all} -``` -- Example: - ``` - admin@sonic:~$ sudo config nat add static basic 65.55.45.1 12.12.12.14 -nat_type dnat - admin@sonic:~$ sudo config nat add static tcp 65.55.45.2 100 12.12.12.15 200 -nat_type dnat - - admin@sonic:~$ show nat translations - - Static NAT Entries ................. 2 - Static NAPT Entries ................. 2 - Dynamic NAT Entries ................. 0 - Dynamic NAPT Entries ................. 0 - Static Twice NAT Entries ................. 0 - Static Twice NAPT Entries ................. 0 - Dynamic Twice NAT Entries ................ 0 - Dynamic Twice NAPT Entries ................ 0 - Total SNAT/SNAPT Entries ................ 2 - Total DNAT/DNAPT Entries ................ 2 - Total Entries ................ 4 - - Protocol Source Destination Translated Source Translated Destination - -------- --------- -------------- ----------------- ---------------------- - all 12.12.12.14 --- 65.55.42.1 --- - all --- 65.55.42.1 --- 12.12.12.14 - tcp 12.12.12.15:200 --- 65.55.42.2:100 --- - tcp --- 65.55.42.2:100 --- 12.12.12.15:200 - ``` - -**config nat add pool** - -This command is used to create a NAT pool used for dynamic Source NAT or NAPT translations. -Pool can be configured in one of the following combinations. - -1. Global IP address range (or) -2. Global IP address + L4 port range (or) -3. Global IP address range + L4 port range. - -- Usage: - ``` - config nat add pool (pool-name) (global-ip-range) (global-port-range) - ``` -To delete a NAT pool, use the command. Pool cannot be removed if it is referenced by a NAT binding. Giving the pools argument removes all the configured pools. -``` -config nat remove {pool (pool-name) | pools} -``` -- Example: - ``` - admin@sonic:~$ sudo config nat add pool pool1 65.55.45.2-65.55.45.10 - admin@sonic:~$ sudo config nat add pool pool2 65.55.45.3 100-1024 - - admin@sonic:~$ show nat config pool - - Pool Name Global IP Range Global Port Range - ----------- ---------------------- ------------------- - pool1 65.55.45.2-65.55.45.10 --- - pool2 65.55.45.3 100-1024 - ``` - -**config nat add binding** - -This command is used to create a NAT binding between a pool and an ACL. The following fields are needed for configuring the binding. - - 1. ACL is an optional argument. If ACL argument is not given, the NAT binding is applicable to match all traffic. - 2. NAT type is an optional argument. Only DNAT type is supoprted for binding. - 3. Twice NAT Id is an optional argument. This Id is used to form a twice nat grouping with the static NAT/NAPT entry configured with the same Id. - -- Usage: - ``` - config nat add binding (binding-name) [(pool-name)] [(acl-name)] [-nat_type {snat | dnat}] [-twice_nat_id (value)] - ``` -To delete a NAT binding, use the command below. Giving the bindings argument removes all the configured bindings. -``` -config nat remove {binding (binding-name) | bindings} -``` -- Example: - ``` - admin@sonic:~$ sudo config nat add binding bind1 pool1 acl1 - admin@sonic:~$ sudo config nat add binding bind2 pool2 - - admin@sonic:~$ show nat config bindings - - Binding Name Pool Name Access-List Nat Type Twice-NAT Id - -------------- ----------- ------------- ---------- -------------- - bind1 pool1 acl1 snat --- - bind2 pool2 snat --- - ``` - -**config nat add interface** - -This command is used to configure NAT zone on an L3 interface. Default value of NAT zone on an L3 interface is 0. Valid range of zone values is 0-3. - -- Usage: - ``` - config nat add interface (interface-name) -nat_zone (value) - ``` -To reset the NAT zone on an interface, use the command below. Giving the interfaces argument resets the NAT zone on all the L3 interfaces to 0. -``` -config nat remove {interface (interface-name) | interfaces} -``` -- Example: - ``` - admin@sonic:~$ sudo config nat add interface Ethernet28 -nat_zone 1 - - admin@sonic:~$ show nat config zones - - Port Zone - ---------- ------ - Ethernet0 0 - Ethernet28 1 - Ethernet22 0 - Vlan2091 0 - ``` - -**config nat set** - -This command is used to set the NAT timeout values. Different timeout values can be configured for the NAT entry timeout, NAPT TCP entry timeout, NAPT UDP entry timeout. -Range for Global NAT entry timeout is 300 sec to 432000 sec, default value is 600 sec. -Range for TCP NAT/NAPT entry timeout is 300 sec to 432000 sec, default value is 86400 sec. -Range for UDP NAT/NAPT entry timeout is 120 sec to 600 sec, default value is 300 sec. - -- Usage: - ``` - config nat set {tcp-timeout (value) | timeout (value) | udp-timeout (value)} - ``` -To reset the timeout values to the default values, use the command -``` -config nat reset {tcp-timeout | timeout | udp-timeout} -``` -- Example: - ``` - admin@sonic:~$ sudo config nat add set tcp-timeout 3600 - - admin@sonic:~$ show nat config globalvalues - - Admin Mode : enabled - Global Timeout : 600 secs - TCP Timeout : 600 secs - UDP Timeout : 300 secs - ``` - -**config nat feature** - -This command is used to enable or disable the NAT feature. - -- Usage: - ``` - config nat feature {enable | disable} - ``` - -- Example: - ``` - admin@sonic:~$ sudo config nat feature enable - admin@sonic:~$ sudo config nat feature disable - ``` - -### NAT Clear commands - -**sonic-clear nat translations** - -This command is used to clear the dynamic NAT and NAPT translation entries. - -- Usage: - ``` - sonic-clear nat translations - ``` - -**sonic-clear nat statistics** - -This command is used to clear the statistics of all the NAT and NAPT entries. - -- Usage: - ``` - sonic-clear nat statistics - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#nat) - - -## NTP - -### NTP show commands - -**show ntp** - -This command displays a list of NTP peers known to the server as well as a summary of their state. - -- Usage: - ``` - show ntp - ``` - -- Example: - ``` - admin@sonic:~$ show ntp - synchronised to NTP server (204.2.134.164) at stratum 3 - time correct to within 326797 ms - polling server every 1024 s - - remote refid st t when poll reach delay offset jitter - ============================================================================== - 23.92.29.245 .XFAC. 16 u - 1024 0 0.000 0.000 0.000 - *204.2.134.164 46.233.231.73 2 u 916 1024 377 3.079 0.394 0.128 - ``` - - -### NTP Config Commands - -This sub-section of commands is used to add or remove the configured NTP servers. - -**config ntp add** - -This command is used to add a NTP server IP address to the NTP server list. Note that more that one NTP server IP address can be added in the device. - -- Usage: - ``` - config ntp add - ``` - -- Example: - ``` - admin@sonic:~$ sudo config ntp add 9.9.9.9 - NTP server 9.9.9.9 added to configuration - Restarting ntp-config service... - ``` - -**config ntp delete** - -This command is used to delete a configured NTP server IP address. - -- Usage: - ``` - config ntp del - ``` - -- Example: - ``` - admin@sonic:~$ sudo config ntp del 9.9.9.9 - NTP server 9.9.9.9 removed from configuration - Restarting ntp-config service... - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#NTP) - -# PFC Watchdog Commands -Detailed description of the PFC Watchdog could be fount on the [this wiki page](https://github.com/Azure/SONiC/wiki/PFC-Watchdog) - -**config pfcwd start \** - -This command starts PFC Watchdog - -- Usage: - ``` - config pfcwd start --action drop all 400 --restoration-time 400 - config pfcwd start --action forward Ethernet0 Ethernet8 400 - ``` - -**config pfcwd stop** - -This command stops PFC Watchdog - -- Usage: - ``` - config pfcwd stop - ``` - -**config pfcwd interval \** - -This command sets PFC Watchdog counter polling interval (in ms) - -- Usage: - ``` - config pfcwd interval 200 - ``` - -**config pfcwd counter_poll \** - -This command enables or disables PFCWD related counters polling - -- Usage: - ``` - config pfcwd counter_poll disable - ``` - -**config pfcwd big_red_switch \** - -This command enables or disables PFCWD's "BIG RED SWITCH"(BRS). After enabling BRS PFC Watchdog will be activated on all ports/queues it is configured for no matter whether the storm was detected or not - -- Usage: - ``` - config pfcwd big_red_switch enable - ``` - -**config pfcwd start_default** - -This command starts PFC Watchdog with the default settings. - -- Usage: - ``` - config pfcwd start_default - ``` - -Default values are the following: - - - detection time - 200ms - - restoration time - 200ms - - polling interval - 200ms - - action - 'drop' - -Additionally if number of ports in the system exceeds 32, all times will be multiplied by roughly /32. - - -**show pfcwd config** - -This command shows current PFC Watchdog configuration - -- Usage: - ``` - show pfcwd config - ``` - -**show pfcwd stats** - -This command shows current PFC Watchdog statistics (storms detected, packets dropped, etc) - -- Usage: - ``` - show pfcwd stats - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#pfc-watchdog-commands) - -## Platform Component Firmware - -### Platform Component Firmware show commands - -**show platform firmware status** - -This command displays platform components firmware status information. - -- Usage: -```bash -show platform firmware status -``` - -- Example: -```bash -admin@sonic:~$ sudo show platform firmware status -Chassis Module Component Version Description ---------- -------- ----------- ----------------------- ---------------------------------------- -MSN3800 N/A ONIE 2020.11-5.2.0022-9600 ONIE - Open Network Install Environment - SSD 0202-000 SSD - Solid-State Drive - BIOS 0ACLH004_02.02.008_9600 BIOS - Basic Input/Output System - CPLD1 CPLD000120_REV0900 CPLD - Complex Programmable Logic Device - CPLD2 CPLD000165_REV0500 CPLD - Complex Programmable Logic Device - CPLD3 CPLD000166_REV0300 CPLD - Complex Programmable Logic Device - CPLD4 CPLD000167_REV0100 CPLD - Complex Programmable Logic Device -``` - -**show platform firmware updates** - -This command displays platform components firmware updates information. - -- Usage: -```bash -show platform firmware updates [-i|--image] -``` - -- Options: - - _-i|--image_: show updates using current/next SONiC image - - Valid values: - - current - - next - - Default: - - current - -- Example: -```bash -admin@sonic:~$ sudo show platform firmware updates -Chassis Module Component Firmware Version (Current/Available) Status ---------- -------- ----------- ------------------------------------------ ------------------------------------------------- ------------------ -MSN3800 N/A ONIE /usr/local/lib/firmware/mellanox/onie.bin 2020.11-5.2.0022-9600 / 2020.11-5.2.0024-9600 update is required - SSD /usr/local/lib/firmware/mellanox/ssd.bin 0202-000 / 0204-000 update is required - BIOS /usr/local/lib/firmware/mellanox/bios.bin 0ACLH004_02.02.008_9600 / 0ACLH004_02.02.010_9600 update is required - CPLD1 /usr/local/lib/firmware/mellanox/cpld.mpfa CPLD000120_REV0900 / CPLD000120_REV0900 up-to-date - CPLD2 /usr/local/lib/firmware/mellanox/cpld.mpfa CPLD000165_REV0500 / CPLD000165_REV0500 up-to-date - CPLD3 /usr/local/lib/firmware/mellanox/cpld.mpfa CPLD000166_REV0300 / CPLD000166_REV0300 up-to-date - CPLD4 /usr/local/lib/firmware/mellanox/cpld.mpfa CPLD000167_REV0100 / CPLD000167_REV0100 up-to-date -``` - -- Note: - - current/next values for _-i|--image_ are taken from `sonic-installer list` - ```bash - admin@sonic:~$ sudo sonic-installer list - Current: SONiC-OS-202012.0-fb89c28c9 - Next: SONiC-OS-201911.0-2bec3004e - Available: - SONiC-OS-202012.0-fb89c28c9 - SONiC-OS-201911.0-2bec3004e - ``` - -**show platform firmware version** - -This command displays platform components firmware utility version. - -- Usage: -```bash -show platform firmware version -``` - -- Example: -```bash -admin@sonic:~$ show platform firmware version -fwutil version 2.0.0.0 -``` - -### Platform Component Firmware config commands - -**config platform firmware install** - -This command is used to install a platform component firmware. -Both modular and non modular chassis platforms are supported. - -- Usage: -```bash -config platform firmware install chassis component fw [-y|--yes] -config platform firmware install module component fw [-y|--yes] -``` - -- Options: - - _-y|--yes_: automatic yes to prompts. Assume "yes" as answer to all prompts and run non-interactively - -- Example: -```bash -admin@sonic:~$ sudo config platform firmware install chassis component BIOS fw /usr/local/lib/firmware/mellanox/sn3800/chassis1/bios.bin -Warning: Immediate cold reboot is required to complete BIOS firmware update. -New firmware will be installed, continue? [y/N]: y -Installing firmware: - /usr/local/lib/firmware/mellanox/sn3800/chassis1/bios.bin - -admin@sonic:~$ sudo config platform firmware install module Module1 component BIOS fw https://www.mellanox.com/fw/sn3800/module1/bios.bin -Warning: Immediate cold reboot is required to complete BIOS firmware update. -New firmware will be installed, continue? [y/N]: y -Downloading firmware: - [##################################################] 100% -Installing firmware: - /tmp/bios.bin -``` - -- Note: - - can be absolute path or URL - -**config platform firmware update** - -This command is used to update a platform component firmware from current/next SONiC image. -Both modular and non modular chassis platforms are supported. - -FW update requires `platform_components.json` to be created and placed at: -sonic-buildimage/device///platform_components.json - -Example: -1. Non modular chassis platform -```json -{ - "chassis": { - "Chassis1": { - "component": { - "BIOS": { - "firmware": "/usr/local/lib/firmware///chassis1/bios.bin", - "version": "" - }, - "CPLD": { - "firmware": "/usr/local/lib/firmware///chassis1/cpld.bin", - "version": "" - }, - "FPGA": { - "firmware": "/usr/local/lib/firmware///chassis1/fpga.bin", - "version": "" - } - } - } - } -} -``` - -2. Modular chassis platform -```json -{ - "chassis": { - "Chassis1": { - "component": { - "BIOS": { - "firmware": "/usr/local/lib/firmware///chassis1/bios.bin", - "version": "" - }, - "CPLD": { - "firmware": "/usr/local/lib/firmware///chassis1/cpld.bin", - "version": "" - }, - "FPGA": { - "firmware": "/usr/local/lib/firmware///chassis1/fpga.bin", - "version": "" - } - } - } - }, - "module": { - "Module1": { - "component": { - "CPLD": { - "firmware": "/usr/local/lib/firmware///module1/cpld.bin", - "version": "" - }, - "FPGA": { - "firmware": "/usr/local/lib/firmware///module1/fpga.bin", - "version": "" - } - } - } - } -} -``` - -- Usage: -```bash -config platform firmware update chassis component fw [-y|--yes] [-f|--force] [-i|--image] -config platform firmware update module component fw [-y|--yes] [-f|--force] [-i|--image] -``` - -- Options: - - _-y|--yes_: automatic yes to prompts. Assume "yes" as answer to all prompts and run non-interactively - - _-f|--force_: update FW regardless the current version - - _-i|--image_: update FW using current/next SONiC image - - Valid values: - - current - - next - - Default: - - current - -- Example: -```bash -admin@sonic:~$ sudo config platform firmware update chassis component BIOS fw -Warning: Immediate cold reboot is required to complete BIOS firmware update. -New firmware will be installed, continue? [y/N]: y -Updating firmware: - /usr/local/lib/firmware/mellanox/x86_64-mlnx_msn3800-r0/chassis1/bios.bin - -admin@sonic:~$ sudo config platform firmware update module Module1 component BIOS fw -Warning: Immediate cold reboot is required to complete BIOS firmware update. -New firmware will be installed, continue? [y/N]: y -Updating firmware: - /usr/local/lib/firmware/mellanox/x86_64-mlnx_msn3800-r0/module1/bios.bin -``` - -- Note: - - FW update will be disabled if component definition is not provided (e.g., 'BIOS': { }) - - FW version will be read from image if `version` field is not provided - - current/next values for _-i|--image_ are taken from `sonic-installer list` - ```bash - admin@sonic:~$ sudo sonic-installer list - Current: SONiC-OS-202012.0-fb89c28c9 - Next: SONiC-OS-201911.0-2bec3004e - Available: - SONiC-OS-202012.0-fb89c28c9 - SONiC-OS-201911.0-2bec3004e - ``` - -### Platform Component Firmware vendor specific behaviour - -#### Mellanox - -**CPLD update** - -On Mellanox platforms CPLD update can be done either for single or for all components at once. -The second approach is preferred. In this case an aggregated `vme` binary is used and -CPLD component can be specified arbitrary. - -- Example: -```bash -root@sonic:/home/admin# show platform firmware -Chassis Module Component Version Description ----------------------- -------- ----------- ----------------------- ---------------------------------------- -x86_64-mlnx_msn3800-r0 N/A BIOS 0ACLH004_02.02.007_9600 BIOS - Basic Input/Output System - CPLD1 CPLD000000_REV0400 CPLD - Complex Programmable Logic Device - CPLD2 CPLD000000_REV0300 CPLD - Complex Programmable Logic Device - CPLD3 CPLD000000_REV0300 CPLD - Complex Programmable Logic Device - CPLD4 CPLD000000_REV0100 CPLD - Complex Programmable Logic Device - -root@sonic:/home/admin# BURN_VME="$(pwd)/FUI000091_Burn_SN3800_CPLD000120_REV0600_CPLD000165_REV0400_CPLD000166_REV0300_CPLD000167_REV0100.vme" -root@sonic:/home/admin# REFRESH_VME="$(pwd)/FUI000091_Refresh_SN3800_CPLD000120_REV0600_CPLD000165_REV0400_CPLD000166_REV0300_CPLD000167_REV0100.vme" - -root@sonic:/home/admin# config platform firmware install chassis component CPLD1 fw -y ${BURN_VME} -root@sonic:/home/admin# config platform firmware install chassis component CPLD1 fw -y ${REFRESH_VME} - -root@sonic:/home/admin# show platform firmware -Chassis Module Component Version Description ----------------------- -------- ----------- ----------------------- ---------------------------------------- -x86_64-mlnx_msn3800-r0 N/A BIOS 0ACLH004_02.02.007_9600 BIOS - Basic Input/Output System - CPLD1 CPLD000000_REV0600 CPLD - Complex Programmable Logic Device - CPLD2 CPLD000000_REV0400 CPLD - Complex Programmable Logic Device - CPLD3 CPLD000000_REV0300 CPLD - Complex Programmable Logic Device - CPLD4 CPLD000000_REV0100 CPLD - Complex Programmable Logic Device -``` - -Note: the update will have the same effect if any of CPLD1/CPLD2/CPLD3/CPLD4 will be used - -Go Back To [Beginning of the document](#) or [Beginning of this section](#platform-component-firmware) - - -## Platform Specific Commands - -### Mellanox Platform Specific Commands - -There are few commands that are platform specific. Mellanox has used this feature and implemented Mellanox specific commands as follows. - -**show platform mlnx sniffer** - -This command shows the SDK sniffer status - -- Usage: - ``` - show platform mlnx sniffer - ``` - -- Example: - ``` - admin@sonic:~$ show platform mlnx sniffer - sdk sniffer is disabled - ``` - -**show platform mlnx sniffer** - -Another show command available on ‘show platform mlnx’ which is the issu status. -This means if ISSU is enabled on this SKU or not. A warm boot command can be executed only when ISSU is enabled on the SKU. - -- Usage: - ``` - show platform mlnx issu - ``` - -- Example: - ``` - admin@sonic:~$ show platform mlnx issu - ISSU is enabled - ``` - -In the case ISSU is disabled and warm-boot is called, the user will get a notification message explaining that the command cannot be invoked. - -- Example: - ``` - admin@sonic:~$ sudo warm-reboot - ISSU is not enabled on this HWSKU - Warm reboot is not supported - ``` - -**config platform mlnx** - -This command is valid only on mellanox devices. The sub-commands for "config platform" gets populated only on mellanox platforms. -There are no other subcommands on non-Mellanox devices and hence this command appears empty and useless in other platforms. -The platform mellanox command currently includes a single sub command which is the SDK sniffer. -The SDK sniffer is a troubleshooting tool which records the RPC calls from the Mellanox SDK user API library to the sx_sdk task into a .pcap file. -This .pcap file can be replayed afterward to get the exact same configuration state on SDK and FW to reproduce and investigate issues. - -A new folder will be created to store the sniffer files: "/var/log/mellanox/sniffer/". The result file will be stored in a .pcap file, which includes a time stamp of the starting time in the file name, for example, "sx_sdk_sniffer_20180224081306.pcap" -In order to have a complete .pcap file with all the RPC calls, the user should disable the SDK sniffer. Swss service will be restarted and no capturing is taken place from that moment. -It is recommended to review the .pcap file while sniffing is disabled. -Once SDK sniffer is enabled/disabled, the user is requested to approve that swss service will be restarted. -For example: To change SDK sniffer status, swss service will be restarted, continue? [y/N]: -In order to avoid that confirmation the -y / --yes option should be used. - -- Usage: - ``` - config platform mlnx sniffer sdk [-y|--yes] - ``` - -- Example: - ``` - admin@sonic:~$ config platform mlnx sniffer sdk - To change SDK sniffer status, swss service will be restarted, continue? [y/N]: y - NOTE: In order to avoid that confirmation the -y / --yes option should be used. - ``` - -### Barefoot Platform Specific Commands - -**show platform barefoot profile** - -This command displays active P4 profile and lists available ones. - -- Usage: - ``` - show platform barefoot profile - ``` - -- Example: - ``` - admin@sonic:~$ show platform barefoot profile - Current profile: x1 - Available profile(s): - x1 - x2 - ``` - -**config platform barefoot profile** - -This command sets P4 profile. - -- Usage: - ``` - config platform barefoot profile [-y|--yes] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config platform barefoot profile x1 - Swss service will be restarted, continue? [y/N]: y - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#platform-specific-commands) - - -## PortChannels - -### PortChannel Show commands - -**show interfaces portchannel** - -This command displays all the port channels that are configured in the device and its current status. - -- Usage: - ``` - show interfaces portchannel - ``` - -- Example: - ``` - admin@sonic:~$ show interfaces portchannel - Flags: A - active, I - inactive, Up - up, Dw - Down, N/A - not available, S - selected, D - deselected - No. Team Dev Protocol Ports - ----- ------------- ----------- --------------------------- - 24 PortChannel24 LACP(A)(Up) Ethernet28(S) Ethernet24(S) - 48 PortChannel48 LACP(A)(Up) Ethernet52(S) Ethernet48(S) - 40 PortChannel40 LACP(A)(Up) Ethernet44(S) Ethernet40(S) - 0 PortChannel0 LACP(A)(Up) Ethernet0(S) Ethernet4(S) - 8 PortChannel8 LACP(A)(Up) Ethernet8(S) Ethernet12(S) - ``` - - -### PortChannel Config commands - -This sub-section explains how to configure the portchannel and its member ports. - -**config portchannel** - -This command is used to add or delete the portchannel. -It is recommended to use portchannel names in the format "PortChannelxxxx", where "xxxx" is number of 1 to 4 digits. Ex: "PortChannel0002". - -NOTE: If users specify any other name like "pc99", command will succeed, but such names are not supported. Such names are not printed properly in the "show interface portchannel" command. It is recommended not to use such names. - -When any port is already member of any other portchannel and if user tries to add the same port in some other portchannel (without deleting it from the current portchannel), the command fails internally. But, it does not print any error message. In such cases, remove the member from current portchannel and then add it to new portchannel. - -Command takes two optional arguements given below. -1) min-links - minimum number of links required to bring up the portchannel -2) fallback - true/false. LACP fallback feature can be enabled / disabled. When it is set to true, only one member port will be selected as active per portchannel during fallback mode. Refer https://github.com/Azure/SONiC/blob/master/doc/lag/LACP%20Fallback%20Feature%20for%20SONiC_v0.5.md for more details about fallback feature. - -A port channel can be deleted only if it does not have any members or the members are already deleted. When a user tries to delete a port channel and the port channel still has one or more members that exist, the deletion of port channel is blocked. - -- Usage: - ``` - config portchannel (add | del) [--min-links ] [--fallback (true | false)] - ``` - -- Example (Create the portchannel with name "PortChannel0011"): - ``` - admin@sonic:~$ sudo config portchannel add PortChannel0011 - ``` - -**config portchannel member** - -This command adds or deletes a member port to/from the already created portchannel. - -- Usage: - ``` - config portchannel member (add | del) - ``` - -- Example (Add interface Ethernet4 as member of the portchannel "PortChannel0011"): - ``` - admin@sonic:~$ sudo config portchannel member add PortChannel0011 Ethernet4 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#portchannels) - -## NVGRE - -This section explains the various show commands and configuration commands available for users. - -### NVGRE show commands - -This subsection explains how to display the NVGRE configuration. - -**show nvgre-tunnel** - -This command displays the NVGRE tunnel configuration. - -- Usage: -```bash -show nvgre-tunnel -``` - -- Example: -```bash -admin@sonic:~$ show nvgre-tunnel -TUNNEL NAME SRC IP -------------- -------- -tunnel_1 10.0.0.1 -``` - -**show nvgre-tunnel-map** - -This command displays the NVGRE tunnel map configuration. - -- Usage: -```bash -show nvgre-tunnel-map -``` - -- Example: -```bash -admin@sonic:~$ show nvgre-tunnel-map -TUNNEL NAME TUNNEL MAP NAME VLAN ID VSID -------------- ----------------- --------- ------ -tunnel_1 Vlan1000 1000 5000 -tunnel_1 Vlan2000 2000 6000 -``` - -### NVGRE config commands - -This subsection explains how to configure the NVGRE. - -**config nvgre-tunnel** - -This command is used to manage the NVGRE tunnel objects. -It supports add/delete operations. - -- Usage: -```bash -config nvgre-tunnel add --src-ip -config nvgre-tunnel delete -``` - -- Parameters: - - _tunnel-name_: the name of the NVGRE tunnel - - _src-ip_: source ip address - -- Examples: -```bash -config nvgre-tunnel add 'tunnel_1' --src-ip '10.0.0.1' -config nvgre-tunnel delete 'tunnel_1' -``` - -**config nvgre-tunnel-map** - -This command is used to manage the NVGRE tunnel map objects. -It supports add/delete operations. - -- Usage: -```bash -config nvgre-tunnel-map add --vlan-id --vsid -config nvgre-tunnel-map delete -``` - -- Parameters: - - _tunnel-name_: the name of the NVGRE tunnel - - _tunnel-map-name_: the name of the NVGRE tunnel map - - _vlan-id_: VLAN identifier - - _vsid_: Virtual Subnet Identifier - -- Examples: -```bash -config nvgre-tunnel-map add 'tunnel_1' 'Vlan2000' --vlan-id '2000' --vsid '6000' -config nvgre-tunnel-map delete 'tunnel_1' 'Vlan2000' -``` - -## PBH - -This section explains the various show commands and configuration commands available for users. - -### PBH show commands - -This subsection explains how to display PBH configuration and statistics. - -**show pbh table** - -This command displays PBH table configuration. - -- Usage: -```bash -show pbh table -``` - -- Example: -```bash -admin@sonic:~$ show pbh table -NAME INTERFACE DESCRIPTION ---------- --------------- --------------- -pbh_table Ethernet0 NVGRE and VxLAN - Ethernet4 - PortChannel0001 - PortChannel0002 -``` - -**show pbh rule** - -This command displays PBH rule configuration. - -- Usage: -```bash -show pbh rule -``` - -- Example: -```bash -admin@sonic:~$ show pbh rule -TABLE RULE PRIORITY MATCH HASH ACTION COUNTER ---------- ------ ---------- ------------------------------------ ------------- ------------- --------- -pbh_table nvgre 2 ether_type: 0x0800 inner_v6_hash SET_ECMP_HASH DISABLED - ip_protocol: 0x2f - gre_key: 0x2500/0xffffff00 - inner_ether_type: 0x86dd -pbh_table vxlan 1 ether_type: 0x0800 inner_v4_hash SET_LAG_HASH ENABLED - ip_protocol: 0x11 - l4_dst_port: 0x12b5 - inner_ether_type: 0x0800 -``` - -**show pbh hash** - -This command displays PBH hash configuration. - -- Usage: -```bash -show pbh hash -``` - -- Example: -```bash -admin@sonic:~$ show pbh hash -NAME HASH FIELD -------------- ----------------- -inner_v4_hash inner_ip_proto - inner_l4_dst_port - inner_l4_src_port - inner_dst_ipv4 - inner_src_ipv4 -inner_v6_hash inner_ip_proto - inner_l4_dst_port - inner_l4_src_port - inner_dst_ipv6 - inner_src_ipv6 -``` - -**show pbh hash-field** - -This command displays PBH hash field configuration. - -- Usage: -```bash -show pbh hash-field -``` - -- Example: -```bash -admin@sonic:~$ show pbh hash-field -NAME FIELD MASK SEQUENCE SYMMETRIC ------------------ ----------------- --------- ---------- ----------- -inner_ip_proto INNER_IP_PROTOCOL N/A 1 No -inner_l4_dst_port INNER_L4_DST_PORT N/A 2 Yes -inner_l4_src_port INNER_L4_SRC_PORT N/A 2 Yes -inner_dst_ipv4 INNER_DST_IPV4 255.0.0.0 3 Yes -inner_src_ipv4 INNER_SRC_IPV4 0.0.0.255 3 Yes -inner_dst_ipv6 INNER_DST_IPV6 ffff:: 4 Yes -inner_src_ipv6 INNER_SRC_IPV6 ::ffff 4 Yes -``` - -- Note: - - _SYMMETRIC_ is an artificial column and is only used to indicate fields symmetry - -**show pbh statistics** - -This command displays PBH statistics. - -- Usage: -```bash -show pbh statistics -``` - -- Example: -```bash -admin@sonic:~$ show pbh statistics -TABLE RULE RX PACKETS COUNT RX BYTES COUNT ---------- ------ ------------------ ---------------- -pbh_table nvgre 0 0 -pbh_table vxlan 0 0 -``` - -- Note: - - _RX PACKETS COUNT_ and _RX BYTES COUNT_ can be cleared by user: - ```bash - admin@sonic:~$ sonic-clear pbh statistics - ``` - -### PBH config commands - -This subsection explains how to configure PBH. - -**config pbh table** - -This command is used to manage PBH table objects. -It supports add/update/remove operations. - -- Usage: -```bash -config pbh table add --interface-list --description -config pbh table update [ --interface-list ] [ --description ] -config pbh table delete -``` - -- Parameters: - - _table_name_: the name of the PBH table - - _interface_list_: interfaces to which PBH table is applied - - _description_: the description of the PBH table - -- Examples: -```bash -config pbh table add 'pbh_table' \ ---interface-list 'Ethernet0,Ethernet4,PortChannel0001,PortChannel0002' \ ---description 'NVGRE and VxLAN' -config pbh table update 'pbh_table' \ ---interface-list 'Ethernet0' -config pbh table delete 'pbh_table' -``` - -**config pbh rule** - -This command is used to manage PBH rule objects. -It supports add/update/remove operations. - -- Usage: -```bash -config pbh rule add --priority \ -[ --gre-key ] [ --ether-type ] [ --ip-protocol ] \ -[ --ipv6-next-header ] [ --l4-dst-port ] [ --inner-ether-type ] \ ---hash [ --packet-action ] [ --flow-counter ] -config pbh rule update [ --priority ] \ -[ --gre-key ] [ --ether-type ] [ --ip-protocol ] \ -[ --ipv6-next-header ] [ --l4-dst-port ] [ --inner-ether-type ] \ -[ --hash ] [ --packet-action ] [ --flow-counter ] -config pbh rule delete -``` - -- Parameters: - - _table_name_: the name of the PBH table - - _rule_name_: the name of the PBH rule - - _priority_: the priority of the PBH rule - - _gre_key_: packet match for the PBH rule: GRE key (value/mask) - - _ether_type_: packet match for the PBH rule: EtherType (IANA Ethertypes) - - _ip_protocol_: packet match for the PBH rule: IP protocol (IANA Protocol Numbers) - - _ipv6_next_header_: packet match for the PBH rule: IPv6 Next header (IANA Protocol Numbers) - - _l4_dst_port_: packet match for the PBH rule: L4 destination port - - _inner_ether_type_: packet match for the PBH rule: inner EtherType (IANA Ethertypes) - - _hash_: _hash_ object to apply with the PBH rule - - _packet_action_: packet action for the PBH rule - - Valid values: - - SET_ECMP_HASH - - SET_LAG_HASH - - Default: - - SET_ECMP_HASH - - - _flow_counter_: packet/byte counter for the PBH rule - - Valid values: - - DISABLED - - ENABLED - - Default: - - DISABLED - -- Examples: -```bash -config pbh rule add 'pbh_table' 'nvgre' \ ---priority '2' \ ---ether-type '0x0800' \ ---ip-protocol '0x2f' \ ---gre-key '0x2500/0xffffff00' \ ---inner-ether-type '0x86dd' \ ---hash 'inner_v6_hash' \ ---packet-action 'SET_ECMP_HASH' \ ---flow-counter 'DISABLED' -config pbh rule update 'pbh_table' 'nvgre' \ ---flow-counter 'ENABLED' -config pbh rule delete 'pbh_table' 'nvgre' -``` - -**config pbh hash** - -This command is used to manage PBH hash objects. -It supports add/update/remove operations. - -- Usage: -```bash -config pbh hash add --hash-field-list -config pbh hash update [ --hash-field-list ] -config pbh hash delete -``` - -- Parameters: - - _hash_name_: the name of the PBH hash - - _hash_field_list_: list of _hash-field_ objects to apply with the PBH hash - -- Examples: -```bash -config pbh hash add 'inner_v6_hash' \ ---hash-field-list 'inner_ip_proto,inner_l4_dst_port,inner_l4_src_port,inner_dst_ipv6,inner_src_ipv6' -config pbh hash update 'inner_v6_hash' \ ---hash-field-list 'inner_ip_proto' -config pbh hash delete 'inner_v6_hash' -``` - -**config pbh hash-field** - -This command is used to manage PBH hash field objects. -It supports add/update/remove operations. - -- Usage: -```bash -config pbh hash-field add \ ---hash-field [ --ip-mask ] --sequence-id -config pbh hash-field update \ -[ --hash-field ] [ --ip-mask ] [ --sequence-id ] -config pbh hash-field delete -``` - -- Parameters: - - _hash_field_name_: the name of the PBH hash field - - _hash_field_: native hash field for the PBH hash field - - Valid values: - - INNER_IP_PROTOCOL - - INNER_L4_DST_PORT - - INNER_L4_SRC_PORT - - INNER_DST_IPV4 - - INNER_SRC_IPV4 - - INNER_DST_IPV6 - - INNER_SRC_IPV6 - - - _ip_mask_: IPv4/IPv6 address mask for the PBH hash field - - Valid only: _hash_field_ is: - - INNER_DST_IPV4 - - INNER_SRC_IPV4 - - INNER_DST_IPV6 - - INNER_SRC_IPV6 - - - _sequence_id_: the order in which fields are hashed - -- Examples: -```bash -config pbh hash-field add 'inner_dst_ipv6' \ ---hash-field 'INNER_DST_IPV6' \ ---ip-mask 'ffff::' \ ---sequence-id '4' -config pbh hash-field update 'inner_dst_ipv6' \ ---ip-mask 'ffff:ffff::' -config pbh hash-field delete 'inner_dst_ipv6' -``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#pbh) - -## QoS - -### QoS Show commands - -#### PFC - -**show pfc counters** - -This command displays the details of Rx & Tx priority-flow-control (pfc) for all ports. This command can be used to clear the counters using -c option. - -- Usage: - ``` - show pfc counters - ``` - -- Example: - ``` - admin@sonic:~$ show pfc counters - Port Rx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 - ----------- ------ ------ ------ ------ ------ ------ ------ ------ - Ethernet0 0 0 0 0 0 0 0 0 - Ethernet4 0 0 0 0 0 0 0 0 - Ethernet8 0 0 0 0 0 0 0 0 - Ethernet12 0 0 0 0 0 0 0 0 - - Port Tx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 - ----------- ------ ------ ------ ------ ------ ------ ------ ------ - Ethernet0 0 0 0 0 0 0 0 0 - Ethernet4 0 0 0 0 0 0 0 0 - Ethernet8 0 0 0 0 0 0 0 0 - Ethernet12 0 0 0 0 0 0 0 0 - - ... - ``` - - -- NOTE: PFC counters can be cleared by the user with the following command: - ``` - admin@sonic:~$ sonic-clear pfccounters - ``` - -**show pfc asymmetric** - -This command displays the status of asymmetric PFC for all interfaces or a given interface. - -- Usage: - ``` - show pfc asymmetric [] - ``` - -- Example: - ``` - admin@sonic:~$ show pfc asymmetric - - Interface Asymmetric - ----------- ------------ - Ethernet0 off - Ethernet2 off - Ethernet4 off - Ethernet6 off - Ethernet8 off - Ethernet10 off - Ethernet12 off - Ethernet14 off - - admin@sonic:~$ show pfc asymmetric Ethernet0 - - Interface Asymmetric - ----------- ------------ - Ethernet0 off - ``` - -**show pfc priority** - -This command displays the lossless priorities for all interfaces or a given interface. - -- Usage: - ``` - show pfc priority [] - ``` - -- Example: - ``` - admin@sonic:~$ show pfc priority - - Interface Lossless priorities - ----------- --------------------- - Ethernet0 3,4 - Ethernet2 3,4 - Ethernet8 3,4 - Ethernet10 3,4 - Ethernet16 3,4 - - admin@sonic:~$ show pfc priority Ethernet0 - - Interface Lossless priorities - ----------- --------------------- - Ethernet0 3,4 - ``` - -#### Queue And Priority-Group - -This sub-section explains the following queue parameters that can be displayed using "show queue" command. -1) queue counters -2) queue watermark -3) priority-group watermark -4) queue persistent-watermark - - -**show queue counters** - -This command displays packet and byte counters for all queues of all ports or one specific-port given as arguement. -This command can be used to clear the counters for all queues of all ports. Note that port specific clear is not supported. - -- Usage: - ``` - show queue counters [] - ``` - -- Example: - ``` - admin@sonic:~$ show queue counters - Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes - --------- ----- -------------- --------------- ----------- ------------ - Ethernet0 UC0 0 0 0 0 - Ethernet0 UC1 0 0 0 0 - Ethernet0 UC2 0 0 0 0 - Ethernet0 UC3 0 0 0 0 - Ethernet0 UC4 0 0 0 0 - Ethernet0 UC5 0 0 0 0 - Ethernet0 UC6 0 0 0 0 - Ethernet0 UC7 0 0 0 0 - Ethernet0 UC8 0 0 0 0 - Ethernet0 UC9 0 0 0 0 - Ethernet0 MC0 0 0 0 0 - Ethernet0 MC1 0 0 0 0 - Ethernet0 MC2 0 0 0 0 - Ethernet0 MC3 0 0 0 0 - Ethernet0 MC4 0 0 0 0 - Ethernet0 MC5 0 0 0 0 - Ethernet0 MC6 0 0 0 0 - Ethernet0 MC7 0 0 0 0 - Ethernet0 MC8 0 0 0 0 - Ethernet0 MC9 0 0 0 0 - - Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes - --------- ----- -------------- --------------- ----------- ------------ - Ethernet4 UC0 0 0 0 0 - Ethernet4 UC1 0 0 0 0 - Ethernet4 UC2 0 0 0 0 - Ethernet4 UC3 0 0 0 0 - Ethernet4 UC4 0 0 0 0 - Ethernet4 UC5 0 0 0 0 - Ethernet4 UC6 0 0 0 0 - Ethernet4 UC7 0 0 0 0 - Ethernet4 UC8 0 0 0 0 - Ethernet4 UC9 0 0 0 0 - Ethernet4 MC0 0 0 0 0 - Ethernet4 MC1 0 0 0 0 - Ethernet4 MC2 0 0 0 0 - Ethernet4 MC3 0 0 0 0 - Ethernet4 MC4 0 0 0 0 - Ethernet4 MC5 0 0 0 0 - Ethernet4 MC6 0 0 0 0 - Ethernet4 MC7 0 0 0 0 - Ethernet4 MC8 0 0 0 0 - Ethernet4 MC9 0 0 0 0 - - ... - ``` - -Optionally, you can specify an interface name in order to display only that particular interface - -- Example: - ``` - admin@sonic:~$ show queue counters Ethernet72 - ``` - -- NOTE: Queue counters can be cleared by the user with the following command: - ``` - admin@sonic:~$ sonic-clear queuecounters - ``` - -**show queue watermark** - -This command displays the user watermark for the queues (Egress shared pool occupancy per queue) for either the unicast queues or multicast queues for all ports - -- Usage: - ``` - show queue watermark (multicast | unicast) - ``` - -- Example: - ``` - admin@sonic:~$ show queue watermark unicast - Egress shared pool occupancy per unicast queue: - Port UC0 UC1 UC2 UC3 UC4 UC5 UC6 UC7 - ----------- ----- ----- ----- ----- ----- ----- ----- ----- - Ethernet0 0 0 0 0 0 0 0 0 - Ethernet4 0 0 0 0 0 0 0 0 - Ethernet8 0 0 0 0 0 0 0 0 - Ethernet12 0 0 0 0 0 0 0 0 - - admin@sonic:~$ show queue watermark multicast (Egress shared pool occupancy per multicast queue) - ``` - -**show priority-group** - -This command displays: -1) The user watermark or persistent-watermark for the Ingress "headroom" or "shared pool occupancy" per priority-group for all ports. -2) Dropped packets per priority-group for all ports - -- Usage: - ``` - show priority-group (watermark | persistent-watermark) (headroom | shared) - show priority-group drop counters - ``` - -- Example: - ``` - admin@sonic:~$ show priority-group watermark shared - Ingress shared pool occupancy per PG: - Port PG0 PG1 PG2 PG3 PG4 PG5 PG6 PG7 - ----------- ----- ----- ----- ----- ----- ----- ----- ----- - Ethernet0 0 0 0 0 0 0 0 0 - Ethernet4 0 0 0 0 0 0 0 0 - Ethernet8 0 0 0 0 0 0 0 0 - Ethernet12 0 0 0 0 0 0 0 0 - ``` - -- Example (Ingress headroom per PG): - ``` - admin@sonic:~$ show priority-group watermark headroom - ``` - -- Example (Ingress shared pool occupancy per PG): - ``` - admin@sonic:~$ show priority-group persistent-watermark shared - ``` - -- Example (Ingress headroom per PG): - ``` - admin@sonic:~$ show priority-group persistent-watermark headroom - ``` - -- Example (Ingress dropped packets per PG): - ``` - admin@sonic:~$ show priority-group drop counters - Ingress PG dropped packets: - Port PG0 PG1 PG2 PG3 PG4 PG5 PG6 PG7 - ----------- ----- ----- ----- ----- ----- ----- ----- ----- - Ethernet0 0 0 0 0 0 0 0 0 - Ethernet4 0 0 0 0 0 0 0 0 - Ethernet8 0 0 0 0 0 0 0 0 - Ethernet12 0 0 0 0 0 0 0 0 - ``` - -In addition to user watermark("show queue|priority-group watermark ..."), a persistent watermark is available. -It hold values independently of user watermark. This way user can use "user watermark" for debugging, clear it, etc, but the "persistent watermark" will not be affected. - -**show queue persistent-watermark** - -This command displays the user persistet-watermark for the queues (Egress shared pool occupancy per queue) for either the unicast queues or multicast queues for all ports - -- Usage: - ``` - show queue persistent-watermark (unicast | multicast) - ``` - -- Example: - ``` - admin@sonic:~$ show queue persistent-watermark unicast - Egress shared pool occupancy per unicast queue: - Port UC0 UC1 UC2 UC3 UC4 UC5 UC6 UC7 - ----------- ----- ----- ----- ----- ----- ----- ----- ----- - Ethernet0 N/A N/A N/A N/A N/A N/A N/A N/A - Ethernet4 N/A N/A N/A N/A N/A N/A N/A N/A - Ethernet8 N/A N/A N/A N/A N/A N/A N/A N/A - Ethernet12 N/A N/A N/A N/A N/A N/A N/A N/A - ``` - -- Example (Egress shared pool occupancy per multicast queue): - ``` - admin@sonic:~$ show queue persistent-watermark multicast - ``` - -- NOTE: "user watermark", "persistent watermark" and "ingress dropped packets" can be cleared by user: - - ``` - admin@sonic:~$ sonic-clear queue persistent-watermark unicast - - admin@sonic:~$ sonic-clear queue persistent-watermark multicast - - admin@sonic:~$ sonic-clear priority-group persistent-watermark shared - - admin@sonic:~$ sonic-clear priority-group persistent-watermark headroom - - admin@sonic:~$ sonic-clear priority-group drop counters - ``` - -#### Buffer Pool - -This sub-section explains the following buffer pool parameters that can be displayed using "show buffer_pool" command. -1) buffer pool watermark -2) buffer pool persistent-watermark - -**show buffer_pool watermark** - -This command displays the user watermark for all the buffer pools - -- Usage: - ``` - show buffer_pool watermark - ``` - -- Example: - ``` - admin@sonic:~$ show buffer_pool watermark - Shared pool maximum occupancy: - Pool Bytes - --------------------- ------- - ingress_lossless_pool 0 - lossy_pool 2464 - ``` - - -**show buffer_pool persistent-watermark** - -This command displays the user persistent-watermark for all the buffer pools - -- Usage: - ``` - show buffer_pool persistent-watermark - ``` - -- Example: - ``` - admin@sonic:~$ show buffer_pool persistent-watermark - Shared pool maximum occupancy: - Pool Bytes - --------------------- ------- - ingress_lossless_pool 0 - lossy_pool 2464 - ``` - - - -### QoS config commands - -**config qos clear** - -This command is used to clear all the QoS configuration from all the following QOS Tables in ConfigDB. - -1) TC_TO_PRIORITY_GROUP_MAP, -2) MAP_PFC_PRIORITY_TO_QUEUE, -3) TC_TO_QUEUE_MAP, -4) DSCP_TO_TC_MAP, -5) MPLS_TC_TO_TC_MAP, -6) SCHEDULER, -7) PFC_PRIORITY_TO_PRIORITY_GROUP_MAP, -8) PORT_QOS_MAP, -9) WRED_PROFILE, -10) QUEUE, -11) CABLE_LENGTH, -12) BUFFER_POOL, -13) BUFFER_PROFILE, -14) BUFFER_PG, -15) BUFFER_QUEUE - -- Usage: - ``` - config qos clear - ``` - -- Example: - ``` - admin@sonic:~$ sudo config qos clear - ``` - -**config qos reload** - -This command is used to reload the QoS configuration. -QoS configuration has got two sets of configurations. -1) Generic QOS Configuration - This gives complete list of all possible QOS configuration. Its given in the file /usr/share/sonic/templates/qos_config.j2 in the device. - Reference: https://github.com/Azure/sonic-buildimage/blob/master/files/build_templates/qos_config.j2 - Users have flexibility to have platform specific qos configuration by placing the qos_config.j2 file at /usr/share/sonic/device///. - If users want to modify any of this loaded QOS configuration, they can modify this file in the device and then issue the "config qos reload" command. - -2) Platform specific buffer configuration. Every platform has got platform specific and topology specific (T0 or T1 or T2) buffer configuration at /usr/share/sonic/device///buffers_defaults_tx.j2 - In addition to platform specific configuration file, a generic configuration file is also present at /usr/share/sonic/templates/buffers_config.j2. - Reference: https://github.com/Azure/sonic-buildimage/blob/master/files/build_templates/buffers_config.j2 - Users can either modify the platform specific configuration file, or the generic configuration file and then issue this "config qos reload" command. - -These configuration files are already loaded in the device as part of the reboot process. In case if users wants to modify any of these configurations, they need to modify the appropriate QOS tables and fields in these files and then use this reload command. -This command uses those modified buffers.json.j2 file & qos.json.j2 file and reloads the new QOS configuration. -If users have not made any changes in these configuration files, this command need not be executed. - -Some of the example QOS configurations that users can modify are given below. -1) TC_TO_PRIORITY_GROUP_MAP -2) MAP_PFC_PRIORITY_TO_QUEUE -3) TC_TO_QUEUE_MAP -4) DSCP_TO_TC_MAP -5) MPLS_TC_TO_TC_MAP -6) SCHEDULER -7) PFC_PRIORITY_TO_PRIORITY_GROUP_MAP -8) PORT_QOS_MAP -9) WRED_PROFILE -10) CABLE_LENGTH -11) BUFFER_QUEUE - -- Usage: - ``` - config qos reload - ``` - -- Example: - ``` - admin@sonic:~$ sudo config qos reload - Running command: /usr/local/bin/sonic-cfggen -d -t /usr/share/sonic/device/x86_64-dell_z9100_c2538-r0/Force10-Z9100-C32/buffers.json.j2 >/tmp/buffers.json - Running command: /usr/local/bin/sonic-cfggen -d -t /usr/share/sonic/device/x86_64-dell_z9100_c2538-r0/Force10-Z9100-C32/qos.json.j2 -y /etc/sonic/sonic_version.yml >/tmp/qos.json - Running command: /usr/local/bin/sonic-cfggen -j /tmp/buffers.json --write-to-db - Running command: /usr/local/bin/sonic-cfggen -j /tmp/qos.json --write-to-db - - In this example, it uses the buffers.json.j2 file and qos.json.j2 file from platform specific folders. - When there are no changes in the platform specific configutation files, they internally use the file "/usr/share/sonic/templates/buffers_config.j2" and "/usr/share/sonic/templates/qos_config.j2" to generate the configuration. - ``` - -**config qos reload --ports port_list** - -This command is used to reload the default QoS configuration on a group of ports. -Typically, the default QoS configuration is in the following tables. -1) PORT_QOS_MAP -2) QUEUE -3) BUFFER_PG -4) BUFFER_QUEUE -5) BUFFER_PORT_INGRESS_PROFILE_LIST -6) BUFFER_PORT_EGRESS_PROFILE_LIST -7) CABLE_LENGTH - -If there was QoS configuration in the above tables for the ports: - - - if `--force` option is provied, the existing QoS configuration will be replaced by the default QoS configuration, - - otherwise, the command will exit with nothing updated. - -- Usage: - ``` - config qos reload --ports [,port] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config qos reload --ports Ethernet0,Ethernet4 - - In this example, it updates the QoS configuration on port Ethernet0 and Ethernet4 to default. - If there was QoS configuration on the ports, the command will clear the existing QoS configuration on the port and reload to default. - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#qos) - -## sFlow - -### sFlow Show commands - -**show sflow** - -This command displays the global sFlow configuration that includes the admin state, collectors, the Agent ID and counter polling interval. - -- Usage: - ``` - show sflow - ``` - -- Example: - ``` - admin@sonic:~# show sflow - sFlow Global Information: - sFlow Admin State: up - sFlow Polling Interval: default - sFlow AgentID: lo - - 2 Collectors configured: - Name: collector_A IP addr: 10.11.46.2 UDP port: 6343 - Name: collector_lo IP addr: 127.0.0.1 UDP port: 6343 - ``` - - -**show sflow interface** - -This command displays the per-interface sflow admin status and the sampling rate. - -- Usage: - ``` - show sflow interface - ``` - -- Example: - ``` - admin@sonic:~# show sflow interface - - sFlow interface configurations - +-------------+---------------+-----------------+ - | Interface | Admin State | Sampling Rate | - +=============+===============+=================+ - | Ethernet0 | up | 4000 | - +-------------+---------------+-----------------+ - | Ethernet1 | up | 4000 | - +-------------+---------------+-----------------+ - ... - +-------------+---------------+-----------------+ - | Ethernet61 | up | 4000 | - +-------------+---------------+-----------------+ - | Ethernet62 | up | 4000 | - +-------------+---------------+-----------------+ - | Ethernet63 | up | 4000 | - +-------------+---------------+-----------------+ - - ``` - -### sFlow Config commands - -**config sflow collector add** - -This command is used to add a sFlow collector. Note that a maximum of 2 collectors is allowed. - -- Usage: - ``` - config sflow collector add [port ] - ``` - - - Parameters: - - collector-name: unique name of the sFlow collector - - ipv4-address : IP address of the collector in dotted decimal format for IPv4 - - ipv6-address : x: x: x: x::x format for IPv6 address of the collector (where :: notation specifies successive hexadecimal fields of zeros) - - port (OPTIONAL): specifies the UDP port of the collector (the range is from 0 to 65535. The default is 6343.) - -- Example: - ``` - admin@sonic:~# sudo config sflow collector add collector_A 10.11.46.2 - ``` - -**config sflow collector del** - -This command is used to delete a sFlow collector with the given name. - -- Usage: - ``` - config sflow collector del - ``` - - - Parameters: - - collector-name: unique name of the sFlow collector - -- Example: - ``` - admin@sonic:~# sudo config sflow collector del collector_A - ``` - -**config sflow agent-id** - -This command is used to add/delete the sFlow agent-id. This setting is global (applicable to both collectors) and optional. Only a single agent-id is allowed. If agent-id is not specified (with this CLI), an appropriate IP that belongs to the switch is used as the agent-id based on some simple heuristics. - -- Usage: - ``` - config sflow agent-id - ``` - - - Parameters: - - interface-name: specify the interface name whose ipv4 or ipv6 address will be used as the agent-id in sFlow datagrams. - -- Example: - ``` - admin@sonic:~# sudo config sflow agent-id add lo - ``` - -**config sflow** - -Globally, sFlow is disabled by default. When sFlow is enabled globally, the sflow deamon is started and sampling will start on all interfaces which have sFlow enabled at the interface level (see “config sflow interface…”). When sflow is disabled globally, sampling is stopped on all relevant interfaces and sflow daemon is stopped. - -- Usage: - ``` - config sflow - ``` -- Example: - ``` - admin@sonic:~# sudo config sflow enable - ``` -**config sflow interface** - -Enable/disable sflow at an interface level. By default, sflow is enabled on all interfaces at the interface level. Use this command to explicitly disable sFlow for a specific interface. An interface is sampled if sflow is enabled globally as well as at the interface level. Note that this configuration deals only with sFlow flow samples and not counter samples. - -- Usage: - ``` - config sflow interface - ``` - - - Parameters: - - interface-name: specify the interface for which sFlow flow samples have to be enabled/disabled. The “all” keyword is used as a convenience to enable/disable sflow at the interface level for all the interfaces. - -- Example: - ``` - admin@sonic:~# sudo config sflow interface disable Ethernet40 - ``` - -**config sflow interface sample-rate** - -Configure the sample-rate for a specific interface. - -The default sample rate for any interface is (ifSpeed / 1e6) where ifSpeed is in bits/sec. So, the default sample rate based on interface speed is: - - 1-in-1000 for a 1G link - 1-in-10,000 for a 10G link - 1-in-40,000 for a 40G link - 1-in-50,000 for a 50G link - 1-in-100,000 for a 100G link - -It is recommended not to change the defaults. This CLI is to be used only in case of exceptions (e.g., to set the sample-rate to the nearest power-of-2 if there are hardware restrictions in using the defaults) - -- Usage: - ``` - config sflow interface sample-rate - ``` - - - Parameters: - - interface-name: specify the interface for which the sampling rate value is to be set - - value: value is the average number of packets skipped before the sample is taken. "The sampling rate specifies random sampling probability as the ratio of packets observed to samples generated. For example a sampling rate of 256 specifies that, on average, 1 sample will be generated for every 256 packets observed." Valid range 256:8388608. - -- Example: - ``` - admin@sonic:~# sudo config sflow interface sample-rate Ethernet32 1000 - ``` -**config sflow polling-interval** - -This command is used to set the counter polling interval. Default is 20 seconds. - -- Usage: - ``` - config sflow polling-interval - ``` - - - Parameters: - - value: 0-300 seconds. Set polling-interval to 0 to disable counter polling - -- Example: - ``` - admin@sonic:~# sudo config sflow polling-interval 30 - ``` - - -Go Back To [Beginning of the document](#) or [Beginning of this section](#sflow) - -## SNMP - -### SNMP Show commands - -**show runningconfiguration snmp** - -This command displays the global SNMP configuration that includes the location, contact, community, and user settings. - -- Usage: - ``` - show runningconfiguration snmp - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp - Location - ------------ - Emerald City - - - SNMP_CONTACT SNMP_CONTACT_EMAIL - -------------- -------------------- - joe joe@contoso.com - - - Community String Community Type - ------------------ ---------------- - Jack RW - - - User Permission Type Type Auth Type Auth Password Encryption Type Encryption Password - ------ ----------------- ------ ----------- --------------- ----------------- --------------------- - Travis RO Priv SHA TravisAuthPass AES TravisEncryptPass - ``` - -**show runningconfiguration snmp location** - -This command displays the SNMP location setting. - -- Usage: - ``` - show runningconfiguration snmp location - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp location - Location - ------------ - Emerald City - ``` - -- Usage: - ``` - show runningconfiguration snmp location --json - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp location --json - {'Location': 'Emerald City'} - ``` - -**show runningconfiguration snmp contact** - -This command displays the SNMP contact setting. - -- Usage: - ``` - show runningconfiguration snmp contact - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp contact - Contact Contact Email - --------- --------------- - joe joe@contoso.com - ``` - -- Usage: - ``` - show runningconfiguration snmp contact --json - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp contact --json - {'joe': 'joe@contoso.com'} - ``` - -**show runningconfiguration snmp community** - -This command display the SNMP community settings. - -- Usage: - ``` - show runningconfiguration snmp community - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp community - Community String Community Type - ------------------ ---------------- - Jack RW - ``` - -- Usage: - ``` - show runningconfiguration snmp community --json - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp community --json - {'Jack': {'TYPE': 'RW'}} - ``` - -**show runningconfiguration snmp user** - -This command display the SNMP user settings. - -- Usage: - ``` - show runningconfiguration snmp user - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp user - User Permission Type Type Auth Type Auth Password Encryption Type Encryption Password - ------ ----------------- ------ ----------- --------------- ----------------- --------------------- - Travis RO Priv SHA TravisAuthPass AES TravisEncryptPass - ``` - -- Usage: - ``` - show runningconfiguration snmp user --json - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp user --json - {'Travis': {'SNMP_USER_TYPE': 'Priv', 'SNMP_USER_PERMISSION': 'RO', 'SNMP_USER_AUTH_TYPE': 'SHA', 'SNMP_USER_AUTH_PASSWORD': 'TravisAuthPass', 'SNMP_USER_ENCRYPTION_TYPE': 'AES', 'SNMP_USER_ENCRYPTION_PASSWORD': 'TravisEncryptPass'}} - ``` - - -### SNMP Config commands - -This sub-section explains how to configure SNMP. - -**config snmp location add/del/modify** - -This command is used to add, delete, or modify the SNMP location. - -- Usage: - ``` - config snmp location (add | del | modify) - ``` - -- Example (Add new SNMP location "Emerald City" if it does not already exist): - ``` - admin@sonic:~$ sudo config snmp location add Emerald City - SNMP Location Emerald City has been added to configuration - Restarting SNMP service... - ``` - -- Example (Delete SNMP location "Emerald City" if it already exists): - ``` - admin@sonic:~$ sudo config snmp location del Emerald City - SNMP Location Emerald City removed from configuration - Restarting SNMP service... - ``` - -- Example (Modify SNMP location "Emerald City" to "Redmond"): - ``` - admin@sonic:~$ sudo config snmp location modify Redmond - SNMP location Redmond modified in configuration - Restarting SNMP service... - ``` - -**config snmp contact add/del/modify** - -This command is used to add, delete, or modify the SNMP contact. - -- Usage: - ``` - config snmp contact add - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp contact add joe joe@contoso.com - Contact name joe and contact email joe@contoso.com have been added to configuration - Restarting SNMP service... - ``` - -- Usage: - ``` - config snmp contact del - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp contact del joe - SNMP contact joe removed from configuration - Restarting SNMP service... - ``` - -- Usage: - ``` - config snmp contact modify - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp contact modify test test@contoso.com - SNMP contact test and contact email test@contoso.com updated - Restarting SNMP service... - ``` - -**config snmp community add/del/replace** - -This command is used to add, delete, or replace the SNMP community. - -- Usage: - ``` - config snmp community add (RO | RW) - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp community add testcomm ro - SNMP community testcomm added to configuration - Restarting SNMP service... - ``` - -- Usage: - ``` - config snmp community del - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp community del testcomm - SNMP community testcomm removed from configuration - Restarting SNMP service... - ``` - -- Usage: - ``` - config snmp community replace - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp community replace testcomm newtestcomm - SNMP community newtestcomm added to configuration - SNMP community newtestcomm replace community testcomm - Restarting SNMP service... - ``` - -**config snmp user add/del** - -This command is used to add or delete the SNMP user for SNMPv3. - -- Usage: - ``` - config snmp user add (noAuthNoPriv | AuthNoPriv | Priv) (RO | RW) [[(MD5 | SHA | MMAC-SHA-2) ] [(DES |AES) ]] - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp user add testuser1 noauthnopriv ro - SNMP user testuser1 added to configuration - Restarting SNMP service... - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp user add testuser2 authnopriv ro sha testuser2_auth_pass - SNMP user testuser2 added to configuration - Restarting SNMP service... - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp user add testuser3 priv rw md5 testuser3_auth_pass aes testuser3_encrypt_pass - SNMP user testuser3 added to configuration - Restarting SNMP service... - ``` - -- Usage: - ``` - config snmp user del - ``` - -- Example: - ``` - admin@sonic:~$ sudo config snmp user del testuser1 - SNMP user testuser1 removed from configuration - Restarting SNMP service... - ``` - -## Startup & Running Configuration - -### Startup Configuration - -**show startupconfiguration bgp** - -This command is used to display the startup configuration for the BGP module. - -- Usage: - ``` - show startupconfiguration bgp - ``` - -- Example: - ``` - admin@sonic:~$ show startupconfiguration bgp - Routing-Stack is: quagga - ! - ! =========== Managed by sonic-cfggen DO NOT edit manually! ==================== - ! generated by templates/quagga/bgpd.conf.j2 with config DB data - ! file: bgpd.conf - ! - ! - hostname T1-2 - password zebra - log syslog informational - log facility local4 - ! enable password ! - ! - ! bgp multiple-instance - ! - route-map FROM_BGP_SPEAKER_V4 permit 10 - ! - route-map TO_BGP_SPEAKER_V4 deny 10 - ! - router bgp 65000 - bgp log-neighbor-changes - bgp bestpath as-path multipath-relax - no bgp default ipv4-unicast - bgp graceful-restart restart-time 180 - - - ``` - -### Running Configuration -This sub-section explains the show commands for displaying the running configuration for the following modules. -1) bgp -2) interfaces -3) ntp -4) snmp -5) all -6) acl -7) ports -8) syslog - -**show runningconfiguration all** - -This command displays the entire running configuration. - -- Usage: - ``` - show runningconfiguration all - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration all - ``` - -**show runningconfiguration bgp** - -This command displays the running configuration of the BGP module. - -- Usage: - ``` - show runningconfiguration bgp - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration bgp - ``` - -**show runningconfiguration interfaces** - -This command displays the running configuration for the "interfaces". - -- Usage: - ``` - show runningconfiguration interfaces - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration interfaces - ``` - -**show runningconfiguration ntp** - -This command displays the running configuration of the ntp module. - -- Usage: - ``` - show runningconfiguration ntp - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration ntp - NTP Servers - ------------- - 1.1.1.1 - 2.2.2.2 - ``` - -**show runningconfiguration syslog** - -This command displays the running configuration of the syslog module. - -- Usage: - ``` - show runningconfiguration syslog - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration syslog - Syslog Servers - ---------------- - 4.4.4.4 - 5.5.5.5 - ``` - - -**show runningconfiguration snmp** - -This command displays the running configuration of the snmp module. - -- Usage: - ``` - show runningconfiguration snmp - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration snmp - ``` - -**show runningconfiguration acl** - - This command displays the running configuration of the acls - -- Usage: - ``` - show runningconfiguration acl - ``` - -- Example: - ``` - admin@sonic:~$ show runningconfiguration acl - ``` - - **show runningconfiguration ports** - - This command displays the running configuration of the ports - -- Usage: - ``` - show runningconfiguration ports [] - ``` - -- Examples: - ``` - admin@sonic:~$ show runningconfiguration ports - ``` - - ``` - admin@sonic:~$ show runningconfiguration ports Ethernet0 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#Startup--Running-Configuration) - - -## Static routing - -### Static routing Config Commands - -This sub-section explains of commands is used to add or remove the static route. - -**config route add** - -This command is used to add a static route. Note that prefix /nexthop vrf`s and interface name are optional. - -- Usage: - - ``` - config route add prefix [vrf ] nexthop [vrf ] dev - ``` - -- Example: - - ``` - admin@sonic:~$ config route add prefix 2.2.3.4/32 nexthop 30.0.0.9 - ``` - -It also supports ECMP, and adding a new nexthop to the existing prefix will complement it and not overwrite them. - -- Example: - - ``` - admin@sonic:~$ sudo config route add prefix 2.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.9 - admin@sonic:~$ sudo config route add prefix 2.2.3.4/32 nexthop vrf Vrf-BLUE 30.0.0.10 - ``` - -**config route del** - -This command is used to remove a static route. Note that prefix /nexthop vrf`s and interface name are optional. - -- Usage: - - ``` - config route del prefix [vrf ] nexthop [vrf ] dev - ``` - -- Example: - - ``` - admin@sonic:~$ sudo config route del prefix 2.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.9 - admin@sonic:~$ sudo config route del prefix 2.2.3.4/32 nexthop vrf Vrf-BLUE 30.0.0.10 - ``` - -This sub-section explains of command is used to show current routes. - -**show ip route** - -- Usage: - - ``` - show ip route - ``` - -- Example: - - ``` - admin@sonic:~$ show ip route - Codes: K - kernel route, C - connected, S - static, R - RIP, - O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, - T - Table, v - VNC, V - VNC-Direct, A - Babel, D - SHARP, - F - PBR, f - OpenFabric, - > - selected route, * - FIB route, q - queued, r - rejected, b - backup - - S>* 0.0.0.0/0 [200/0] via 192.168.111.3, eth0, weight 1, 3d03h58m - S> 1.2.3.4/32 [1/0] via 30.0.0.7, weight 1, 00:00:06 - C>* 10.0.0.18/31 is directly connected, Ethernet36, 3d03h57m - C>* 10.0.0.20/31 is directly connected, Ethernet40, 3d03h57m - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#static-routing) - -## Subinterfaces - -### Subinterfaces Show Commands - -**show subinterfaces status** - -This command displays all the subinterfaces that are configured on the device and its current status. - -- Usage: -``` -show subinterfaces status -``` - -- Example: -``` -admin@sonic:~$ show subinterfaces status -Sub port interface Speed MTU Vlan Admin Type ------------------- ------- ----- ------ ------- ------------------- - Eth64.10 100G 9100 100 up dot1q-encapsulation - Ethernet0.100 100G 9100 100 up dot1q-encapsulation -``` - -### Subinterfaces Config Commands - -This sub-section explains how to configure subinterfaces. - -**config subinterface** - -- Usage: -``` -config subinterface (add | del) [vlan <1-4094>] -``` - -- Example (Create the subinterfces with name "Ethernet0.100"): -``` -admin@sonic:~$ sudo config subinterface add Ethernet0.100 -``` - -- Example (Create the subinterfces with name "Eth64.100"): -``` -admin@sonic:~$ sudo config subinterface add Eth64.100 100 -``` - -- Example (Delete the subinterfces with name "Ethernet0.100"): -``` -admin@sonic:~$ sudo config subinterface del Ethernet0.100 -``` - -- Example (Delete the subinterfces with name "Eth64.100"): -``` -admin@sonic:~$ sudo config subinterface del Eth64.100 100 -``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#static-routing) - -## Syslog - -### Syslog Config Commands - -This sub-section of commands is used to add or remove the configured syslog servers. - -**config syslog add** - -This command is used to add a SYSLOG server to the syslog server list. Note that more that one syslog server can be added in the device. - -- Usage: - ``` - config syslog add - ``` - -- Example: - ``` - admin@sonic:~$ sudo config syslog add 1.1.1.1 - Syslog server 1.1.1.1 added to configuration - Restarting rsyslog-config service... - ``` - -**config syslog delete** - -This command is used to delete the syslog server configured. - -- Usage: - ``` - config syslog del - ``` - -- Example: - ``` - admin@sonic:~$ sudo config syslog del 1.1.1.1 - Syslog server 1.1.1.1 removed from configuration - Restarting rsyslog-config service... - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#syslog) - -## System State - -### Processes - -This command is used to determine the CPU utilization. It also lists the active processes along with their corresponding process ID and other relevant parameters. - -This sub-section explains the various "processes" specific data that includes the following. -1) cpu Show processes CPU info -2) memory Show processes memory info -3) summary Show processes info - -“show processes” commands provide a wrapper over linux’s “top” command. “show process cpu” sorts the processes being displayed by cpu-utilization, whereas “show process memory” does it attending to processes’ memory-utilization. - -**show processes cpu** - -This command displays the current CPU usage by process. This command uses linux's "top -bn 1 -o %CPU" command to display the output. - -- Usage: - ``` - show processes cpu - ``` - -*TIP: Users can pipe the output to "head" to display only the "n" number of lines (e.g., `show processes cpu | head -n 10`)* - -- Example: - ``` - admin@sonic:~$ show processes cpu - top - 23:50:08 up 1:18, 1 user, load average: 0.25, 0.29, 0.25 - Tasks: 161 total, 1 running, 160 sleeping, 0 stopped, 0 zombie - %Cpu(s): 3.8 us, 1.0 sy, 0.0 ni, 95.1 id, 0.1 wa, 0.0 hi, 0.0 si, 0.0 st - KiB Mem: 8181216 total, 1161060 used, 7020156 free, 105656 buffers - KiB Swap: 0 total, 0 used, 0 free. 557560 cached Mem - - PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND - 2047 root 20 0 683772 109288 39652 S 23.8 1.3 7:44.79 syncd - 1351 root 20 0 43360 5616 2844 S 11.9 0.1 1:41.56 redis-server - 10093 root 20 0 21944 2476 2088 R 5.9 0.0 0:00.03 top - 1 root 20 0 28992 5508 3236 S 0.0 0.1 0:06.42 systemd - 2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd - 3 root 20 0 0 0 0 S 0.0 0.0 0:00.56 ksoftirqd/0 - 5 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:0H - ... - ``` - -*TIP: Advanced users can view individual processes using variations of the `ps` command (e.g., `ps -ax | grep `)* - -**show processes memory** - -This command displays the current memory usage by processes. This command uses linux's "top -bn 1 -o %MEM" command to display the output. - -- Usage: - ``` - show processes memory - ``` - -*NOTE that pipe option can be used using " | head -n" to display only the "n" number of lines* - -- Example: - ``` - admin@sonic:~$ show processes memory - top - 23:41:24 up 7 days, 39 min, 2 users, load average: 1.21, 1.19, 1.18 - Tasks: 191 total, 2 running, 189 sleeping, 0 stopped, 0 zombie - %Cpu(s): 2.8 us, 20.7 sy, 0.0 ni, 76.3 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st - KiB Mem : 8162264 total, 5720412 free, 945516 used, 1496336 buff/cache - KiB Swap: 0 total, 0 free, 0 used. 6855632 avail Mem - - PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND - 18051 root 20 0 851540 274784 8344 S 0.0 3.4 0:02.77 syncd - 17760 root 20 0 1293428 259212 58732 S 5.9 3.2 96:46.22 syncd - 508 root 20 0 725364 76244 38220 S 0.0 0.9 4:54.49 dockerd - 30853 root 20 0 96348 56824 7880 S 0.0 0.7 0:00.98 show - 17266 root 20 0 509876 49772 30640 S 0.0 0.6 0:06.36 docker - 24891 admin 20 0 515864 49560 30644 S 0.0 0.6 0:05.54 docker - 17643 admin 20 0 575668 49428 30628 S 0.0 0.6 0:06.29 docker - 23885 admin 20 0 369552 49344 30840 S 0.0 0.6 0:05.57 docker - 18055 root 20 0 509076 49260 30296 S 0.0 0.6 0:06.36 docker - 17268 root 20 0 371120 49052 30372 S 0.0 0.6 0:06.45 docker - 1227 root 20 0 443284 48640 30100 S 0.0 0.6 0:41.91 docker - 23785 admin 20 0 443796 48552 30128 S 0.0 0.6 0:05.58 docker - 17820 admin 20 0 435088 48144 29480 S 0.0 0.6 0:06.33 docker - 506 root 20 0 1151040 43140 23964 S 0.0 0.5 8:51.08 containerd - 18437 root 20 0 84852 26388 7380 S 0.0 0.3 65:59.76 python3.6 - ``` - - -**show processes summary** - -This command displays the current summary information about all the processes - -- Usage: - ``` - show processes summary - ``` - -- Example: - ``` - admin@sonic:~$ show processes summary - PID PPID CMD %MEM %CPU - 1 0 /sbin/init 0.0 0.0 - 2 0 [kthreadd] 0.0 0.0 - 3 2 [ksoftirqd/0] 0.0 0.0 - 5 2 [kworker/0:0H] 0.0 0.0 - ... - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#System-State) - -### Services & Memory - -These commands are used to know the services that are running and the memory that is utilized currently. - - -**show services** - -This command displays the state of all the SONiC processes running inside a docker container. This helps to identify the status of SONiC’s critical processes. - -- Usage: - ``` - show services - ``` - -- Example: - ``` - admin@sonic:~$ show services - dhcp_relay docker - --------------------------- - UID PID PPID C STIME TTY TIME CMD - root 1 0 0 05:26 ? 00:00:12 /usr/bin/python /usr/bin/supervi - root 24 1 0 05:26 ? 00:00:00 /usr/sbin/rsyslogd -n - - nat docker - --------------------------- - USER PID PPID C STIME TTY TIME CMD - root 1 0 0 05:26 ? 00:00:12 /usr/bin/python /usr/bin/supervisord - root 18 1 0 05:26 ? 00:00:00 /usr/sbin/rsyslogd -n - root 23 1 0 05:26 ? 00:00:01 /usr/bin/natmgrd - root 34 1 0 05:26 ? 00:00:00 /usr/bin/natsyncd - - snmp docker - --------------------------- - UID PID PPID C STIME TTY TIME CMD - root 1 0 0 05:26 ? 00:00:16 /usr/bin/python /usr/bin/supervi - root 24 1 0 05:26 ? 00:00:02 /usr/sbin/rsyslogd -n - Debian-+ 29 1 0 05:26 ? 00:00:04 /usr/sbin/snmpd -f -LS4d -u Debi - root 31 1 1 05:26 ? 00:15:10 python3.6 -m sonic_ax_impl - - syncd docker - --------------------------- - UID PID PPID C STIME TTY TIME CMD - root 1 0 0 05:26 ? 00:00:13 /usr/bin/python /usr/bin/supervi - root 12 1 0 05:26 ? 00:00:00 /usr/sbin/rsyslogd -n - root 17 1 0 05:26 ? 00:00:00 /usr/bin/dsserve /usr/bin/syncd - root 27 17 22 05:26 ? 04:09:30 /usr/bin/syncd --diag -p /usr/sh - root 51 27 0 05:26 ? 00:00:01 /usr/bin/syncd --diag -p /usr/sh - - swss docker - --------------------------- - UID PID PPID C STIME TTY TIME CMD - root 1 0 0 05:26 ? 00:00:29 /usr/bin/python /usr/bin/supervi - root 25 1 0 05:26 ? 00:00:00 /usr/sbin/rsyslogd -n - root 30 1 0 05:26 ? 00:00:13 /usr/bin/orchagent -d /var/log/s - root 42 1 1 05:26 ? 00:12:40 /usr/bin/portsyncd -p /usr/share - root 45 1 0 05:26 ? 00:00:00 /usr/bin/intfsyncd - root 48 1 0 05:26 ? 00:00:03 /usr/bin/neighsyncd - root 59 1 0 05:26 ? 00:00:01 /usr/bin/vlanmgrd - root 92 1 0 05:26 ? 00:00:01 /usr/bin/intfmgrd - root 3606 1 0 23:36 ? 00:00:00 bash -c /usr/bin/arp_update; sle - root 3621 3606 0 23:36 ? 00:00:00 sleep 300 - - ... - ``` - -**show system-memory** - -This command displays the system-wide memory utilization information – just a wrapper over linux native “free” command - -- Usage: - ``` - show system-memory - ``` - -- Example: - ``` - admin@sonic:~$ show system-memory - Command: free -m -h - total used free shared buffers cached - Mem: 3.9G 2.0G 1.8G 33M 324M 791M - -/+ buffers/cache: 951M 2.9G - Swap: 0B 0B 0B - ``` - -**show mmu** - -This command displays virtual address to the physical address translation status of the Memory Management Unit (MMU). - -- Usage: - ``` - show mmu - ``` - -- Example: - ``` - admin@sonic:~$ show mmu - Pool: ingress_lossless_pool - ---- -------- - xoff 4194112 - type ingress - mode dynamic - size 10875072 - ---- -------- - - Pool: egress_lossless_pool - ---- -------- - type egress - mode static - size 15982720 - ---- -------- - - Pool: egress_lossy_pool - ---- ------- - type egress - mode dynamic - size 9243812 - ---- ------- - - Profile: egress_lossy_profile - ---------- ------------------------------- - dynamic_th 3 - pool [BUFFER_POOL|egress_lossy_pool] - size 1518 - ---------- ------------------------------- - - Profile: pg_lossless_100000_300m_profile - ---------- ----------------------------------- - xon_offset 2288 - dynamic_th -3 - xon 2288 - xoff 268736 - pool [BUFFER_POOL|ingress_lossless_pool] - size 1248 - ---------- ----------------------------------- - - Profile: egress_lossless_profile - --------- ---------------------------------- - static_th 3995680 - pool [BUFFER_POOL|egress_lossless_pool] - size 1518 - --------- ---------------------------------- - - Profile: pg_lossless_100000_40m_profile - ---------- ----------------------------------- - xon_offset 2288 - dynamic_th -3 - xon 2288 - xoff 177632 - pool [BUFFER_POOL|ingress_lossless_pool] - size 1248 - ---------- ----------------------------------- - - Profile: ingress_lossy_profile - ---------- ----------------------------------- - dynamic_th 3 - pool [BUFFER_POOL|ingress_lossless_pool] - size 0 - ---------- ----------------------------------- - - Profile: pg_lossless_40000_40m_profile - ---------- ----------------------------------- - xon_offset 2288 - dynamic_th -3 - xon 2288 - xoff 71552 - pool [BUFFER_POOL|ingress_lossless_pool] - size 1248 - ---------- ----------------------------------- - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#System-State) - -Go Back To [Beginning of the document](#) or [Beginning of this section](#System-Health) - -### System-Health - -These commands are used to monitor the system current running services and hardware state. - -**show system-health summary** - -This command displays the current status of 'Services' and 'Hardware' under monitoring. -If any of the elements under each of these two sections is 'Not OK' a proper message will appear under the relevant section. - -- Usage: - ``` - show system-health summary - ``` - -- Example: - ``` - admin@sonic:~$ show system-health summary - System status summary - - System status LED red - Services: - Status: Not OK - Not Running: 'telemetry', 'sflowmgrd' - Hardware: - Status: OK - ``` - ``` - admin@sonic:~$ show system-health summary - System status summary - - System status LED green - Services: - Status: OK - Hardware: - Status: OK - ``` - -**show system-health monitor-list** - -This command displays a list of all current 'Services' and 'Hardware' being monitored, their status and type. - -- Usage: - ``` - show system-health monitor-list - ``` - -- Example: - ``` - admin@sonic:~$ show system-health monitor-list - System services and devices monitor list - - Name Status Type - -------------- -------- ---------- - telemetry Not OK Process - orchagent Not OK Process - neighsyncd OK Process - vrfmgrd OK Process - dialout_client OK Process - zebra OK Process - rsyslog OK Process - snmpd OK Process - redis_server OK Process - intfmgrd OK Process - vxlanmgrd OK Process - lldpd_monitor OK Process - portsyncd OK Process - var-log OK Filesystem - lldpmgrd OK Process - syncd OK Process - sonic OK System - buffermgrd OK Process - portmgrd OK Process - staticd OK Process - bgpd OK Process - lldp_syncd OK Process - bgpcfgd OK Process - snmp_subagent OK Process - root-overlay OK Filesystem - fpmsyncd OK Process - sflowmgrd OK Process - vlanmgrd OK Process - nbrmgrd OK Process - PSU 2 OK PSU - psu_1_fan_1 OK Fan - psu_2_fan_1 OK Fan - fan11 OK Fan - fan10 OK Fan - fan12 OK Fan - ASIC OK ASIC - fan1 OK Fan - PSU 1 OK PSU - fan3 OK Fan - fan2 OK Fan - fan5 OK Fan - fan4 OK Fan - fan7 OK Fan - fan6 OK Fan - fan9 OK Fan - fan8 OK Fan - ``` - -**show system-health detail** - -This command displays the current status of 'Services' and 'Hardware' under monitoring. -If any of the elements under each of these two sections is 'Not OK' a proper message will appear under the relevant section. -In addition, displays a list of all current 'Services' and 'Hardware' being monitored and a list of ignored elements. - -- Usage: - ``` - show system-health detail - ``` - -- Example: - ``` - admin@sonic:~$ show system-health detail - System status summary - - System status LED red - Services: - Status: Not OK - Not Running: 'telemetry', 'orchagent' - Hardware: - Status: OK - - System services and devices monitor list - - Name Status Type - -------------- -------- ---------- - telemetry Not OK Process - orchagent Not OK Process - neighsyncd OK Process - vrfmgrd OK Process - dialout_client OK Process - zebra OK Process - rsyslog OK Process - snmpd OK Process - redis_server OK Process - intfmgrd OK Process - vxlanmgrd OK Process - lldpd_monitor OK Process - portsyncd OK Process - var-log OK Filesystem - lldpmgrd OK Process - syncd OK Process - sonic OK System - buffermgrd OK Process - portmgrd OK Process - staticd OK Process - bgpd OK Process - lldp_syncd OK Process - bgpcfgd OK Process - snmp_subagent OK Process - root-overlay OK Filesystem - fpmsyncd OK Process - sflowmgrd OK Process - vlanmgrd OK Process - nbrmgrd OK Process - PSU 2 OK PSU - psu_1_fan_1 OK Fan - psu_2_fan_1 OK Fan - fan11 OK Fan - fan10 OK Fan - fan12 OK Fan - ASIC OK ASIC - fan1 OK Fan - PSU 1 OK PSU - fan3 OK Fan - fan2 OK Fan - fan5 OK Fan - fan4 OK Fan - fan7 OK Fan - fan6 OK Fan - fan9 OK Fan - fan8 OK Fan - - System services and devices ignore list - - Name Status Type - ----------- -------- ------ - psu.voltage Ignored Device - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#System-Health) - -## VLAN & FDB - -### VLAN - -#### VLAN show commands - -**show vlan brief** - -This command displays brief information about all the vlans configured in the device. It displays the vlan ID, IP address (if configured for the vlan), list of vlan member ports, whether the port is tagged or in untagged mode, the DHCP Helper Address, and the proxy ARP status - -- Usage: - ``` - show vlan brief - ``` - -- Example: - ``` - admin@sonic:~$ show vlan brief - - +-----------+--------------+-----------+----------------+-----------------------+-------------+ - | VLAN ID | IP Address | Ports | Port Tagging | DHCP Helper Address | Proxy ARP | - +===========+==============+===========+================+=======================+=============+ - | 100 | 1.1.2.2/16 | Ethernet0 | tagged | 192.0.0.1 | disabled | - | | | Ethernet4 | tagged | 192.0.0.2 | | - | | | | | 192.0.0.3 | | - +-----------+--------------+-----------+----------------+-----------------------+-------------+ - ``` - -**show vlan config** - -This command displays all the vlan configuration. - -- Usage: - ``` - show vlan config - ``` - -- Example: - ``` - admin@sonic:~$ show vlan config - Name VID Member Mode - ------- ----- --------- ------ - Vlan100 100 Ethernet0 tagged - Vlan100 100 Ethernet4 tagged - ``` - - -#### VLAN Config commands - -This sub-section explains how to configure the vlan and its member ports. - -**config vlan add/del** - -This command is used to add or delete the vlan. - -- Usage: - ``` - config vlan (add | del) - ``` - -- Example (Create the VLAN "Vlan100" if it does not already exist): - ``` - admin@sonic:~$ sudo config vlan add 100 - ``` - -**config vlan member add/del** - -This command is to add or delete a member port into the already created vlan. - -- Usage: - ``` - config vlan member add/del [-u|--untagged] - ``` - -*NOTE: Adding the -u or --untagged flag will set the member in "untagged" mode* - - -- Example: - ``` - admin@sonic:~$ sudo config vlan member add 100 Ethernet0 - This command will add Ethernet0 as member of the vlan 100 - - admin@sonic:~$ sudo config vlan member add 100 Ethernet4 - This command will add Ethernet4 as member of the vlan 100. - ``` - -**config proxy_arp enabled/disabled** - -This command is used to enable or disable proxy ARP for a VLAN interface - -- Usage: - ``` - config vlan proxy_arp enabled/disabled - ``` - -- Example: - ``` - admin@sonic:~$ sudo config vlan proxy_arp 1000 enabled - This command will enable proxy ARP for the interface 'Vlan1000' - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#vlan--FDB) - -### FDB - -#### FDB show commands - -**show mac** - -This command displays the MAC (FDB) entries either in full or partial as given below. -1) show mac - displays the full table -2) show mac -v - displays the MACs learnt on the particular VLAN ID. -3) show mac -p - displays the MACs learnt on the particular port. -4) show mac -a - display the MACs that match a specific mac-address -5) show mac -t - display the MACs that match a specific type (static/dynamic) -6) show mac -c - display the count of MAC addresses - -To show the default MAC address aging time on the switch. - -- Usage: - ``` - show mac [-v ] [-p ] [-a ] [-t ] [-c] - ``` - -- Example: - ``` - admin@sonic:~$ show mac - No. Vlan MacAddress Port Type - ----- ------ ----------------- ----------- ------- - 1 1000 E2:8C:56:85:4A:CD Ethernet192 Dynamic - 2 1000 A0:1B:5E:47:C9:76 Ethernet192 Dynamic - 3 1000 AA:54:EF:2C:EE:30 Ethernet192 Dynamic - 4 1000 A4:3F:F2:17:A3:FC Ethernet192 Dynamic - 5 1000 0C:FC:01:72:29:91 Ethernet192 Dynamic - 6 1000 48:6D:01:7E:C9:FD Ethernet192 Dynamic - 7 1000 1C:6B:7E:34:5F:A6 Ethernet192 Dynamic - 8 1000 EE:81:D9:7B:93:A9 Ethernet192 Dynamic - 9 1000 CC:F8:8D:BB:85:E2 Ethernet192 Dynamic - 10 1000 0A:52:B3:9C:FB:6C Ethernet192 Dynamic - 11 1000 C6:E2:72:02:D1:23 Ethernet192 Dynamic - 12 1000 8A:C9:5C:25:E9:28 Ethernet192 Dynamic - 13 1000 5E:CD:34:E4:94:18 Ethernet192 Dynamic - 14 1000 7E:49:1F:B5:91:B5 Ethernet192 Dynamic - 15 1000 AE:DD:67:F3:09:5A Ethernet192 Dynamic - 16 1000 DC:2F:D1:08:4B:DE Ethernet192 Dynamic - 17 1000 50:96:23:AD:F1:65 Ethernet192 Static - 18 1000 C6:C9:5E:AE:24:42 Ethernet192 Static - Total number of entries 18 - ``` - -Optionally, you can specify a VLAN ID or interface name or type or mac-address in order to display only that particular entries - -- Examples: - ``` - admin@sonic:~$ show mac -v 1000 - No. Vlan MacAddress Port Type - ----- ------ ----------------- ----------- ------- - 1 1000 E2:8C:56:85:4A:CD Ethernet192 Dynamic - 2 1000 A0:1B:5E:47:C9:76 Ethernet192 Dynamic - 3 1000 AA:54:EF:2C:EE:30 Ethernet192 Dynamic - 4 1000 A4:3F:F2:17:A3:FC Ethernet192 Dynamic - 5 1000 0C:FC:01:72:29:91 Ethernet192 Dynamic - 6 1000 48:6D:01:7E:C9:FD Ethernet192 Dynamic - 7 1000 1C:6B:7E:34:5F:A6 Ethernet192 Dynamic - 8 1000 EE:81:D9:7B:93:A9 Ethernet192 Dynamic - 9 1000 CC:F8:8D:BB:85:E2 Ethernet192 Dynamic - 10 1000 0A:52:B3:9C:FB:6C Ethernet192 Dynamic - 11 1000 C6:E2:72:02:D1:23 Ethernet192 Dynamic - 12 1000 8A:C9:5C:25:E9:28 Ethernet192 Dynamic - 13 1000 5E:CD:34:E4:94:18 Ethernet192 Dynamic - 14 1000 7E:49:1F:B5:91:B5 Ethernet192 Dynamic - 15 1000 AE:DD:67:F3:09:5A Ethernet192 Dynamic - 16 1000 DC:2F:D1:08:4B:DE Ethernet192 Dynamic - 17 1000 50:96:23:AD:F1:65 Ethernet192 Static - 18 1000 C6:C9:5E:AE:24:42 Ethernet192 Static - Total number of entries 18 - ``` - ``` - admin@sonic:~$ show mac -p Ethernet192 - No. Vlan MacAddress Port Type - ----- ------ ----------------- ----------- ------- - 1 1000 E2:8C:56:85:4A:CD Ethernet192 Dynamic - 2 1000 A0:1B:5E:47:C9:76 Ethernet192 Dynamic - 3 1000 AA:54:EF:2C:EE:30 Ethernet192 Dynamic - 4 1000 A4:3F:F2:17:A3:FC Ethernet192 Dynamic - 5 1000 0C:FC:01:72:29:91 Ethernet192 Dynamic - 6 1000 48:6D:01:7E:C9:FD Ethernet192 Dynamic - 7 1000 1C:6B:7E:34:5F:A6 Ethernet192 Dynamic - 8 1000 EE:81:D9:7B:93:A9 Ethernet192 Dynamic - 9 1000 CC:F8:8D:BB:85:E2 Ethernet192 Dynamic - 10 1000 0A:52:B3:9C:FB:6C Ethernet192 Dynamic - 11 1000 C6:E2:72:02:D1:23 Ethernet192 Dynamic - 12 1000 8A:C9:5C:25:E9:28 Ethernet192 Dynamic - 13 1000 5E:CD:34:E4:94:18 Ethernet192 Dynamic - 14 1000 7E:49:1F:B5:91:B5 Ethernet192 Dynamic - 15 1000 AE:DD:67:F3:09:5A Ethernet192 Dynamic - 16 1000 DC:2F:D1:08:4B:DE Ethernet192 Dynamic - 17 1000 50:96:23:AD:F1:65 Ethernet192 Static - 18 1000 C6:C9:5E:AE:24:42 Ethernet192 Static - Total number of entries 18 - ``` - ``` - admin@sonic:~$ show mac -a E2:8C:56:85:4A:CD - No. Vlan MacAddress Port Type - ----- ------ ----------------- ----------- ------- - 1 1000 E2:8C:56:85:4A:CD Ethernet192 Dynamic - Total number of entries 1 - ``` - ``` - admin@sonic:~$ show mac -t Static - No. Vlan MacAddress Port Type - ----- ------ ----------------- ----------- ------- - 2 1000 50:96:23:AD:F1:65 Ethernet192 Static - 2 1000 C6:C9:5E:AE:24:42 Ethernet192 Static - Total number of entries 2 - ``` - ``` - admin@sonic:~$ show mac -c - Total number of entries 18 - ``` - -**show mac aging-time** - -This command displays the default mac aging time on the switch - - ``` - admin@sonic:~$ show mac aging-time - Aging time for switch is 600 seconds - ``` - -**sonic-clear fdb all** - -Clear the FDB table - -- Usage: - ``` - sonic-clear fdb all - ``` -- Example: - ``` - admin@sonic:~$ sonic-clear fdb all - FDB entries are cleared. - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#vlan--FDB) - -## VxLAN & Vnet - -### VxLAN - -#### VxLAN show commands - -**show vxlan tunnel** - -This command displays brief information about all the vxlans configured in the device. It displays the vxlan tunnel name, source IP address, destination IP address (if configured), tunnel map name and mapping. - -- Usage: - - ``` - show vxlan tunnel - ``` - -- Example: - - ``` - admin@sonic:~$ show vxlan tunnel - vxlan tunnel name source ip destination ip tunnel map name tunnel map mapping(vni -> vlan) - ------------------- ----------- ---------------- ----------------- --------------------------------- - tunnel1 10.10.10.10 - tunnel2 10.10.10.10 20.10.10.10 tmap1 1234 -> 100 - tunnel3 10.10.10.10 30.10.10.10 tmap2 1235 -> 200 - ``` - -**show vxlan name ** - -This command displays configuration. - -- Usage: - - ``` - show vxlan name - ``` - -- Example: - - ``` - admin@sonic:~$ show vxlan name tunnel3 - vxlan tunnel name source ip destination ip tunnel map name tunnel map mapping(vni -> vlan) - ------------------- ----------- ---------------- ----------------- --------------------------------- - tunnel3 10.10.10.10 30.10.10.10 tmap2 1235 -> 200 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#vxlan--vnet) - -### Vnet - -#### Vnet show commands - -**show vnet brief** - -This command displays brief information about all the vnets configured in the device. It displays the vnet name, vxlan tunnel name, vni and peer list (if configured). - -- Usage: - - ``` - show vnet brief - ``` - -- Example: - - ``` - admin@sonic:~$ show vnet brief - vnet name vxlan tunnel vni peer list - ----------- -------------- ----- ------------------ - Vnet_2000 tunnel1 2000 - Vnet_3000 tunnel1 3000 Vnet_2000,Vnet4000 - ``` - -**show vnet name ** - -This command displays brief information about configured in the device. - -- Usage: - - ``` - show vnet name - ``` - -- Example: - - ``` - admin@sonic:~$ show vnet name Vnet_3000 - vnet name vxlan tunnel vni peer list - ----------- -------------- ----- ------------------ - Vnet_3000 tunnel1 3000 Vnet_2000,Vnet4000 - ``` - -**show vnet interfaces** - -This command displays vnet interfaces information about all the vnets configured in the device. - -- Usage: - - ``` - show vnet interfaces - ``` - -- Example: - - ``` - admin@sonic:~$ show vnet interfaces - vnet name interfaces - ----------- ------------ - Vnet_2000 Ethernet1 - Vnet_3000 Vlan2000 - ``` - -**show vnet neighbors** - -This command displays vnet neighbor information about all the vnets configured in the device. It displays the vnet name, neighbor IP address, neighbor mac address (if configured) and interface. - -- Usage: - - ``` - show vnet neighbors - ``` - -- Example: - - ``` - admin@sonic:~$ show vnet neighbors - Vnet_2000 neighbor mac_address interfaces - ----------- ----------- ------------- ------------ - 11.11.11.11 Ethernet1 - 11.11.11.12 Ethernet1 - - Vnet_3000 neighbor mac_address interfaces - ----------- ----------- ----------------- ------------ - 20.20.20.20 aa:bb:cc:dd:ee:ff Vlan2000 - ``` - -**show vnet routes all** - -This command displays all routes information about all the vnets configured in the device. - -- Usage: - - ``` - show vnet routes all - ``` - -- Example: - - ``` - admin@sonic:~$ show vnet routes all - vnet name prefix nexthop interface - ----------- -------------- --------- ----------- - Vnet_2000 100.100.3.0/24 Ethernet52 - Vnet_3000 100.100.4.0/24 Vlan2000 - - vnet name prefix endpoint mac address vni - ----------- -------------- ---------- ----------------- ----- - Vnet_2000 100.100.1.1/32 10.10.10.1 - Vnet_3000 100.100.2.1/32 10.10.10.2 00:00:00:00:03:04 - ``` - -**show vnet routes tunnel** - -This command displays tunnel routes information about all the vnets configured in the device. - -- Usage: - - ``` - show vnet routes tunnel - ``` - -- Example: - - ``` - admin@sonic:~$ show vnet routes tunnel - vnet name prefix endpoint mac address vni - ----------- -------------- ---------- ----------------- ----- - Vnet_2000 100.100.1.1/32 10.10.10.1 - Vnet_3000 100.100.2.1/32 10.10.10.2 00:00:00:00:03:04 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#vxlan--vnet) - -## Warm Reboot - -warm-reboot command initiates a warm reboot of the device. - -warm-reboot command doesn't require setting warm restart configuration. The -command will setup everything needed to perform warm reboot. - -This command requires root privilege. - -- Usage: - ``` - warm-reboot [-h|-?|-v|-f|-r|-k|-x|-c |-s|-D] - ``` - -- Parameters: - ``` - -h,-? : get this help - -v : turn on verbose mode - -f : force execution - -r : reboot with /sbin/reboot - -k : reboot with /sbin/kexec -e [default] - -x : execute script with -x flag - -c : specify control plane assistant IP list - -s : strict mode: do not proceed without: - - control plane assistant IP list. - -D : detached mode - closing terminal will not cause stopping reboot - ``` - -- Example: - ``` - admin@sonic:~$ sudo warm-reboot -v - Tue Oct 22 23:20:53 UTC 2019 Pausing orchagent ... - Tue Oct 22 23:20:53 UTC 2019 Stopping radv ... - Tue Oct 22 23:20:54 UTC 2019 Stopping bgp ... - Tue Oct 22 23:20:54 UTC 2019 Stopped bgp ... - Tue Oct 22 23:20:57 UTC 2019 Initialize pre-shutdown ... - Tue Oct 22 23:20:58 UTC 2019 Requesting pre-shutdown ... - Tue Oct 22 23:20:58 UTC 2019 Waiting for pre-shutdown ... - Tue Oct 22 23:20:59 UTC 2019 Pre-shutdown succeeded ... - Tue Oct 22 23:20:59 UTC 2019 Backing up database ... - Tue Oct 22 23:21:00 UTC 2019 Stopping teamd ... - Tue Oct 22 23:21:00 UTC 2019 Stopped teamd ... - Tue Oct 22 23:21:00 UTC 2019 Stopping syncd ... - Tue Oct 22 23:21:11 UTC 2019 Stopped syncd ... - Tue Oct 22 23:21:11 UTC 2019 Stopping all remaining containers ... - Tue Oct 22 23:21:13 UTC 2019 Stopped all remaining containers ... - Tue Oct 22 23:21:15 UTC 2019 Rebooting with /sbin/kexec -e to SONiC-OS-20191021.01 ... - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#Warm-Reboot) - -## Warm Restart - -Besides device level warm reboot, SONiC also provides docker based warm restart. This feature is currently supported by following dockers: BGP, teamD, and SWSS. A user can manage to restart a particular docker, with no interruption on packet forwarding and no effect on other services. This helps to reduce operational costs as well as development efforts. For example, to fix a bug in BGP routing stack, only the BGP docker image needs to be built, tested and upgraded. - -To achieve uninterrupted packet forwarding during the restarting stage and database reconciliation at the post restarting stage, warm restart enabled dockers with adjacency state machine facilitate standardized protocols. For example, a BGP restarting switch must have BGP "Graceful Restart" enabled, and its BGP neighbors must be "Graceful Restart Helper Capable", as specified in [IETF RFC4724](https://tools.ietf.org/html/rfc4724). - -Before warm restart BGP docker, the following BGP commands should be enabled: - ``` - bgp graceful-restart - bgp graceful-restart preserve-fw-state - ``` -In current SONiC release, the above two commands are enabled by default. - -It should be aware that during a warm restart, certain BGP fast convergence feature and black hole avoidance feature should either be disabled or be set to a lower preference to avoid conflicts with BGP graceful restart. - -For example, BGP BFD could be disabled via: - - ``` - no neighbor bfd - ``` - -otherwise, the fast failure detection would cause packet drop during warm reboot. - -Another commonly deployed blackhole avoidance feature: dynamic route priority adjustment, could be disabled via: - - ``` - no bgp max-med on-peerup - ``` - -to avoid large routes churn during BGP restart. - - -### Warm Restart show commands - -**show warm_restart config** - -This command displays all the configuration related to warm_restart. - -- Usage: - ``` - show warm_restart config - ``` - -- Example: - ``` - admin@sonic:~$ show warm_restart config - name enable timer_name timer_duration - ------ -------- ---------------- ---------------- - bgp true bgp_timer 100 - teamd false teamsyncd_timer 300 - swss false neighsyncd_timer 200 - system true NULL NULL - ``` - -**show warm_restart state** - -This command displays the warm_restart state. - -- Usage: - ``` - show warm_restart state - ``` - -- Example: - ``` - admin@sonic:~$ show warm_restart state - name restore_count state - ---------- --------------- ---------- - orchagent 0 - vlanmgrd 0 - bgp 1 reconciled - portsyncd 0 - teammgrd 1 - neighsyncd 0 - teamsyncd 1 - syncd 0 - natsyncd 0 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#warm-restart) - -### Warm Restart Config commands - -This sub-section explains the various configuration related to warm restart feature. Following parameters can be configured using this command. -1) bgp_timer -2) disable -3) enable -4) neighsyncd_timer -5) teamsyncd_timer -Each of these sub-commands are explained in the following section. - -Users can use an optional parameter "-s" to use the unix domain socket for communicating with the RedisDB which will be faster when compared to using the default network sockets. -All these commands have the following option. - -Options: - -s, --redis-unix-socket-path TEXT - unix socket path for redis connection - - -**config warm_restart bgp_timer** - -This command is used to set the bgp_timer value for warm_restart of BGP service. -bgp_timer holds the time interval utilized by fpmsyncd during warm-restart episodes. -During this interval fpmsyncd will recover all the routing state previously pushed to AppDB, as well as all the new state coming from zebra/bgpd. -Upon expiration of this timer, fpmsyncd will execute the reconciliation logic to eliminate all the stale entries from AppDB. -This timer should match the BGP-GR restart-timer configured within the elected routing-stack. -Supported range: 1-3600. - -- Usage: - ``` - config warm_restart [-s|--redis-unix-socket-path ] bgp_timer - ``` - - - Parameters: - - seconds: Range from 1 to 3600 - -- Example: - ``` - admin@sonic:~$ sudo config warm_restart bgp_timer 1000 - ``` - -**config warm_restart enable/disable** - -This command is used to enable or disable the warm_restart for a particular service that supports warm reboot. -Following four services support warm reboot. When user restarts the particular service using "systemctl restart ", this configured value will be checked for whether it is enabled or disabled. -If this configuration is enabled for that service, it will perform warm reboot for that service. Otherwise, it will do cold restart of the service. - -- Usage: - ``` - config warm_restart [-s|--redis-unix-socket-path ] enable [] - ``` - - - Parameters: - - module_name: Can be either system or swss or bgp or teamd. If "module_name" argument is not specified, it will enable "system" module. - -- Example (Set warm_restart as "enable" for the "system" service): - ``` - admin@sonic:~$ sudo config warm_restart enable - ``` - -- Example (Set warm_restart as "enable" for the "swss" service. When user does "systemctl restart swss", it will perform warm reboot instead of cold reboot) - ``` - admin@sonic:~$ sudo config warm_restart enable swss - ``` - -- Example (Set warm_restart as "enable" for the "teamd" service. When user does "systemctl restart teamd", it will perform warm reboot instead of cold reboot) - ``` - admin@sonic:~$ sudo config warm_restart enable teamd - ``` - - -**config warm_restart neighsyncd_timer** - -This command is used to set the neighsyncd_timer value for warm_restart of "swss" service. -neighsyncd_timer is the timer used for "swss" (neighsyncd) service during the warm restart. -Timer is started after the neighborTable is restored to internal data structures. -neighborsyncd then starts to read all Linux kernel entries and mark the entries in the data structures accordingly. -Once the timer is expired, reconciliation is done and the delta is pushed to appDB -Valid value is 1-9999. 0 is invalid. - -- Usage: - ``` - config warm_restart [-s|--redis-unix-socket-path ] neighsyncd_timer - ``` - - - Parameters: - - seconds: Range from 1 to 9999 - -- Example: - ``` - admin@sonic:~$ sudo config warm_restart neighsyncd_timer 2000 - ``` - - -**config warm_restart bgp_timer** - -This command is used to set the bgp_timer value for warm_restart of "bgp" service. -bgp_timer is the timer used for "bgp" service during the warm restart. -Timer is started after the BGP table is restored to internal data structures. -BGP services then start to read all Linux kernel entries and mark the entries in the data structures accordingly. -Once the timer is expired, reconciliation is done and the delta is pushed to appDB -Valid value is 1-9999. 0 is invalid. - -- Usage: - ``` - config warm_restart [-s|--redis-unix-socket-path ] bgp_timer - ``` - - - Parameters: - - seconds: Range from 1 to 9999 - -- Example: - ``` - admin@sonic:~$ sudo config warm_restart bgp_timer 2000 - ``` - -**config warm_restart teamsyncd_timer** - -This command is used to set the teamsyncd_timer value for warm_restart of teamd service. -teamsyncd_timer holds the time interval utilized by teamsyncd during warm-restart episodes. -The timer is started when teamsyncd starts. During the timer interval, teamsyncd will preserve all LAG interface changes, but it will not apply them. -The changes will only be applied when the timer expires. -When the changes are applied, the stale LAG entries will be removed, the new LAG entries will be created. -Supported range: 1-9999. 0 is invalid - -- Usage: - ``` - config warm_restart teamsyncd_timer - ``` - - - Parameters: - - seconds: Range from 1 to 9999 - -- Example: - ``` - admin@sonic:~$ sudo config warm_restart teamsyncd_timer 3000 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#warm-restart) - - -## Watermark - -### Watermark Show commands - -**show watermark telemetry interval** - -This command displays the configured interval for the telemetry. - -- Usage: - ``` - show watermark telemetry interval - ``` - -- Example: - ``` - admin@sonic:~$ show watermark telemetry interval - - Telemetry interval 120 second(s) - ``` - -### Watermark Config commands - -**config watermark telemetry interval** - -This command is used to configure the interval for telemetry. -The default interval is 120 seconds. -There is no regulation on the valid range of values; it leverages linux timer. - -- Usage: - ``` - config watermark telemetry interval - ``` - -- Example: - ``` - admin@sonic:~$ sudo config watermark telemetry interval 999 - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#watermark) - - - -## Software Installation and Management - -SONiC images can be installed in one of two methods: -1. From within a running SONiC image using the `sonic-installer` utility -2. From the vendor's bootloader (E.g., ONIE, Aboot, etc.) - -SONiC packages are available as prebuilt Docker images and meant to be installed with the *sonic-package-manager* utility. - -### SONiC Package Manager - -The *sonic-package-manager* is a command line tool to manage (e.g. install, upgrade or uninstall) SONiC Packages. - -**sonic-package-manager list** - -This command lists all available SONiC packages, their desription, installed version and installation status. -SONiC package status can be *Installed*, *Not installed* or *Built-In*. "Built-In" status means that a feature is built-in to SONiC image and can't be upgraded or uninstalled. - -- Usage: - ``` - sonic-package-manager list - ``` - -- Example: - ``` - admin@sonic:~$ sonic-package-manager list - Name Repository Description Version Status - -------------- --------------------------- ---------------------------- --------- -------------- - cpu-report azure/cpu-report CPU report package N/A Not Installed - database docker-database SONiC database package 1.0.0 Built-In - dhcp-relay azure/docker-dhcp-relay SONiC dhcp-relay package 1.0.0 Installed - fpm-frr docker-fpm-frr SONiC fpm-frr package 1.0.0 Built-In - lldp docker-lldp SONiC lldp package 1.0.0 Built-In - macsec docker-macsec SONiC macsec package 1.0.0 Built-In - mgmt-framework docker-sonic-mgmt-framework SONiC mgmt-framework package 1.0.0 Built-In - nat docker-nat SONiC nat package 1.0.0 Built-In - pmon docker-platform-monitor SONiC pmon package 1.0.0 Built-In - radv docker-router-advertiser SONiC radv package 1.0.0 Built-In - sflow docker-sflow SONiC sflow package 1.0.0 Built-In - snmp docker-snmp SONiC snmp package 1.0.0 Built-In - swss docker-orchagent SONiC swss package 1.0.0 Built-In - syncd docker-syncd-mlnx SONiC syncd package 1.0.0 Built-In - teamd docker-teamd SONiC teamd package 1.0.0 Built-In - telemetry docker-sonic-telemetry SONiC telemetry package 1.0.0 Built-In - ``` - -**sonic-package-manager repository add** - -This command will add a new repository as source for SONiC packages to the database. *NOTE*: requires elevated (root) privileges to run - -- Usage: - ``` - Usage: sonic-package-manager repository add [OPTIONS] NAME REPOSITORY - - Add a new repository to database. - - NOTE: This command requires elevated (root) privileges to run. - - Options: - --default-reference TEXT Default installation reference. Can be a tag or - sha256 digest in repository. - --description TEXT Optional package entry description. - --help Show this message and exit. - ``` -- Example: - ``` - admin@sonic:~$ sudo sonic-package-manager repository add \ - cpu-report azure/sonic-cpu-report --default-reference 1.0.0 - ``` - -**sonic-package-manager repository remove** - -This command will remove a repository as source for SONiC packages from the database . The package has to be *Not Installed* in order to be removed from package database. *NOTE*: requires elevated (root) privileges to run - -- Usage: - ``` - Usage: sonic-package-manager repository remove [OPTIONS] NAME - - Remove repository from database. - - NOTE: This command requires elevated (root) privileges to run. - - Options: - --help Show this message and exit. - ``` -- Example: - ``` - admin@sonic:~$ sudo sonic-package-manager repository remove cpu-report - ``` - -**sonic-package-manager install** - -This command pulls and installs a package on SONiC host. *NOTE*: this command requires elevated (root) privileges to run - -- Usage: - ``` - Usage: sonic-package-manager install [OPTIONS] [PACKAGE_EXPR] - - Install/Upgrade package using [PACKAGE_EXPR] in format - "[=|@]". - - The repository to pull the package from is resolved by lookup in - package database, thus the package has to be added via "sonic- - package-manager repository add" command. - - In case when [PACKAGE_EXPR] is a package name "" this command - will install or upgrade to a version referenced by "default- - reference" in package database. - - NOTE: This command requires elevated (root) privileges to run. - - Options: - --enable Set the default state of the feature to enabled - and enable feature right after installation. NOTE: - user needs to execute "config save -y" to make - this setting persistent. - --set-owner [local|kube] Default owner configuration setting for a feature. - --from-repository TEXT Fetch package directly from image registry - repository. NOTE: This argument is mutually - exclusive with arguments: [package_expr, - from_tarball]. - --from-tarball FILE Fetch package from saved image tarball. NOTE: This - argument is mutually exclusive with arguments: - [package_expr, from_repository]. - -f, --force Force operation by ignoring package dependency - tree and package manifest validation failures. - -y, --yes Automatically answer yes on prompts. - -v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or DEBUG. - Default is INFO. - --skip-host-plugins Do not install host OS plugins provided by the - package (CLI, etc). NOTE: In case when package - host OS plugins are set as mandatory in package - manifest this option will fail the installation. - --allow-downgrade Allow package downgrade. By default an attempt to - downgrade the package will result in a failure - since downgrade might not be supported by the - package, thus requires explicit request from the - user. - --help Show this message and exit.. - ``` -- Example: - ``` - admin@sonic:~$ sudo sonic-package-manager install dhcp-relay=1.0.2 - ``` - ``` - admin@sonic:~$ sudo sonic-package-manager install dhcp-relay@latest - ``` - ``` - admin@sonic:~$ sudo sonic-package-manager install dhcp-relay@sha256:9780f6d83e45878749497a6297ed9906c19ee0cc48cc88dc63827564bb8768fd - ``` - ``` - admin@sonic:~$ sudo sonic-package-manager install --from-repository azure/sonic-cpu-report:latest - ``` - ``` - admin@sonic:~$ sudo sonic-package-manager install --from-tarball sonic-docker-image.gz - ``` - -**sonic-package-manager uninstall** - -This command uninstalls package from SONiC host. User needs to stop the feature prior to uninstalling it. -*NOTE*: this command requires elevated (root) privileges to run. - -- Usage: - ``` - Usage: sonic-package-manager uninstall [OPTIONS] NAME - - Uninstall package. - - NOTE: This command requires elevated (root) privileges to run. - - Options: - -f, --force Force operation by ignoring package dependency tree and - package manifest validation failures. - -y, --yes Automatically answer yes on prompts. - -v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or DEBUG. Default - is INFO. - --help Show this message and exit. - ``` -- Example: - ``` - admin@sonic:~$ sudo sonic-package-manager uninstall dhcp-relay - ``` - -**sonic-package-manager reset** - -This comamnd resets the package by reinstalling it to its default version. *NOTE*: this command requires elevated (root) privileges to run. - -- Usage: - ``` - Usage: sonic-package-manager reset [OPTIONS] NAME - - Reset package to the default version. - - NOTE: This command requires elevated (root) privileges to run. - - Options: - -f, --force Force operation by ignoring package dependency tree and - package manifest validation failures. - -y, --yes Automatically answer yes on prompts. - -v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or DEBUG. Default - is INFO. - --skip-host-plugins Do not install host OS plugins provided by the package - (CLI, etc). NOTE: In case when package host OS plugins - are set as mandatory in package manifest this option - will fail the installation. - --help Show this message and exit. - ``` -- Example: - ``` - admin@sonic:~$ sudo sonic-package-manager reset dhcp-relay - ``` - -**sonic-package-manager show package versions** - -This command will retrieve a list of all available versions for the given package from the configured upstream repository - -- Usage: - ``` - Usage: sonic-package-manager show package versions [OPTIONS] NAME - - Show available versions. - - Options: - --all Show all available tags in repository. - --plain Plain output. - --help Show this message and exit. - ``` -- Example: - ``` - admin@sonic:~$ sonic-package-manager show package versions dhcp-relay - • 1.0.0 - • 1.0.2 - • 2.0.0 - ``` - ``` - admin@sonic:~$ sonic-package-manager show package versions dhcp-relay --plain - 1.0.0 - 1.0.2 - 2.0.0 - ``` - ``` - admin@sonic:~$ sonic-package-manager show package versions dhcp-relay --all - • 1.0.0 - • 1.0.2 - • 2.0.0 - • latest - ``` - -**sonic-package-manager show package changelog** - -This command fetches the changelog from the package manifest and displays it. *NOTE*: package changelog can be retrieved from registry or read from image tarball without installing it. - -- Usage: - ``` - Usage: sonic-package-manager show package changelog [OPTIONS] [PACKAGE_EXPR] - - Show package changelog. - - Options: - --from-repository TEXT Fetch package directly from image registry - repository NOTE: This argument is mutually exclusive - with arguments: [from_tarball, package_expr]. - --from-tarball FILE Fetch package from saved image tarball NOTE: This - argument is mutually exclusive with arguments: - [package_expr, from_repository]. - --help Show this message and exit. - ``` -- Example: - ``` - admin@sonic:~$ sonic-package-manager show package changelog dhcp-relay - 1.0.0: - - • Initial release - - Author (author@email.com) Mon, 25 May 2020 12:25:00 +0300 - ``` - -**sonic-package-manager show package manifest** - -This command fetches the package manifest and displays it. *NOTE*: package manifest can be retrieved from registry or read from image tarball without installing it. - -- Usage: - ``` - Usage: sonic-package-manager show package manifest [OPTIONS] [PACKAGE_EXPR] - - Show package manifest. - - Options: - --from-repository TEXT Fetch package directly from image registry - repository NOTE: This argument is mutually exclusive - with arguments: [package_expr, from_tarball]. - --from-tarball FILE Fetch package from saved image tarball NOTE: This - argument is mutually exclusive with arguments: - [from_repository, package_expr]. - -v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or DEBUG - --help Show this message and exit. - ``` -- Example: - ``` - admin@sonic:~$ sonic-package-manager show package manifest dhcp-relay=2.0.0 - { - "version": "1.0.0", - "package": { - "version": "2.0.0", - "depends": [ - "database>=1.0.0,<2.0.0" - ] - }, - "service": { - "name": "dhcp_relay" - } - } - ``` - -### SONiC Installer -This is a command line tool available as part of the SONiC software; If the device is already running the SONiC software, this tool can be used to install an alternate image in the partition. -This tool has facility to install an alternate image, list the available images and to set the next reboot image. -This command requires elevated (root) privileges to run. - -**sonic-installer list** - -This command displays information about currently installed images. It displays a list of installed images, currently running image and image set to be loaded in next reboot. - -- Usage: - ``` - sonic-installer list - ``` - -- Example: - ``` - admin@sonic:~$ sudo sonic-installer list - Current: SONiC-OS-HEAD.XXXX - Next: SONiC-OS-HEAD.XXXX - Available: - SONiC-OS-HEAD.XXXX - SONiC-OS-HEAD.YYYY - ``` - -TIP: This output can be obtained without evelated privileges by running the `show boot` command. See [here](#show-system-status) for details. - -**sonic-installer install** - -This command is used to install a new image on the alternate image partition. This command takes a path to an installable SONiC image or URL and installs the image. - -- Usage: - ``` - sonic-installer install - ``` - -- Example: - ``` - admin@sonic:~$ sudo sonic-installer install https://sonic-jenkins.westus.cloudapp.azure.com/job/xxxx/job/buildimage-xxxx-all/xxx/artifact/target/sonic-xxxx.bin - New image will be installed, continue? [y/N]: y - Downloading image... - ...100%, 480 MB, 3357 KB/s, 146 seconds passed - Command: /tmp/sonic_image - Verifying image checksum ... OK. - Preparing image archive ... OK. - ONIE Installer: platform: XXXX - onie_platform: - Installing SONiC in SONiC - Installing SONiC to /host/image-xxxx - Directory /host/image-xxxx/ already exists. Cleaning up... - Archive: fs.zip - creating: /host/image-xxxx/boot/ - inflating: /host/image-xxxx/boot/vmlinuz-3.16.0-4-amd64 - inflating: /host/image-xxxx/boot/config-3.16.0-4-amd64 - inflating: /host/image-xxxx/boot/System.map-3.16.0-4-amd64 - inflating: /host/image-xxxx/boot/initrd.img-3.16.0-4-amd64 - creating: /host/image-xxxx/platform/ - extracting: /host/image-xxxx/platform/firsttime - inflating: /host/image-xxxx/fs.squashfs - inflating: /host/image-xxxx/dockerfs.tar.gz - Log file system already exists. Size: 4096MB - Installed SONiC base image SONiC-OS successfully - - Command: cp /etc/sonic/minigraph.xml /host/ - - Command: grub-set-default --boot-directory=/host 0 - - Done - ``` - -Installing a new image using the sonic-installer will keep using the packages installed on the currently running SONiC image and automatically migrate those. In order to perform clean SONiC installation use the *--skip-package-migration* option: - -- Example: - ``` - admin@sonic:~$ sudo sonic-installer install https://sonic-jenkins.westus.cloudapp.azure.com/job/xxxx/job/buildimage-xxxx-all/xxx/artifact/target/sonic-xxxx.bin --skip-package-migration - ``` - -**sonic-installer set_default** - -This command is be used to change the image which can be loaded by default in all the subsequent reboots. - -- Usage: - ``` - sonic-installer set_default - ``` - -- Example: - ``` - admin@sonic:~$ sudo sonic-installer set_default SONiC-OS-HEAD.XXXX - ``` - -**sonic-installer set_next_boot** - -This command is used to change the image that can be loaded in the *next* reboot only. Note that it will fallback to current image in all other subsequent reboots after the next reboot. - -- Usage: - ``` - sonic-installer set_next_boot - ``` - -- Example: - ``` - admin@sonic:~$ sudo sonic-installer set_next_boot SONiC-OS-HEAD.XXXX - ``` - -**sonic-installer remove** - -This command is used to remove the unused SONiC image from the disk. Note that it's *not* allowed to remove currently running image. - -- Usage: - ``` - sonic-installer remove [-y|--yes] - ``` - -- Example: - ``` - admin@sonic:~$ sudo sonic-installer remove SONiC-OS-HEAD.YYYY - Image will be removed, continue? [y/N]: y - Updating GRUB... - Done - Removing image root filesystem... - Done - Command: grub-set-default --boot-directory=/host 0 - - Image removed - ``` - -**sonic-installer cleanup** - -This command removes all unused images from the device, leaving only the currently active image and the image which will be booted into next (if different) installed. If there are no images which can be removed, the command will output `No image(s) to remove` - -- Usage: - ``` - sonic-installer cleanup [-y|--yes] - ``` - -- Example: - ``` - admin@sonic:~$ sudo sonic-installer cleanup - Remove images which are not current and next, continue? [y/N]: y - No image(s) to remove - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#software-installation-and-management) - - - -## Troubleshooting Commands - -For troubleshooting and debugging purposes, this command gathers pertinent information about the state of the device; information is as diverse as syslog entries, database state, routing-stack state, etc., It then compresses it into an archive file. This archive file can be sent to the SONiC development team for examination. -Resulting archive file is saved as `/var/dump/_YYYYMMDD_HHMMSS.tar.gz` - -- Usage: - ``` - show techsupport - ``` - -- Example: - ``` - admin@sonic:~$ show techsupport [--since=] - ``` - -If the SONiC system was running for quite some time `show techsupport` will produce a large dump file. To reduce the amount of syslog and core files gathered during system dump use `--since` option: - -- Examples: - ``` - admin@sonic:~$ show techsupport --since=yesterday # Will collect syslog and core files for the last 24 hours - ``` - ``` - admin@sonic:~$ show techsupport --since='hour ago' # Will collect syslog and core files for the last one hour - ``` - -### Debug Dumps - -In SONiC, there usually exists a set of tables related/relevant to a particular module. All of these might have to be looked at to confirm whether any configuration update is properly applied and propagated. This utility comes in handy because it prints a unified view of the redis-state for a given module - -- Usage: - ``` - Usage: dump state [OPTIONS] MODULE IDENTIFIER - Dump the redis-state of the identifier for the module specified - - Options: - -s, --show Display Modules Available - -d, --db TEXT Only dump from these Databases - -t, --table Print in tabular format [default: False] - -k, --key-map Only fetch the keys matched, don't extract field-value dumps [default: False] - -v, --verbose Prints any intermediate output to stdout useful for dev & troubleshooting [default: False] - -n, --namespace TEXT Dump the redis-state for this namespace. [default: DEFAULT_NAMESPACE] - --help Show this message and exit. - ``` - - -- Examples: - ``` - root@sonic# dump state --show - Module Identifier - -------- ------------ - port port_name - copp trap_id - ``` - - ``` - admin@sonic:~$ dump state copp arp_req --key-map --db ASIC_DB - { - "arp_req": { - "ASIC_DB": { - "keys": [ - "ASIC_STATE:SAI_OBJECT_TYPE_HOSTIF_TRAP:oid:0x22000000000c5b", - "ASIC_STATE:SAI_OBJECT_TYPE_HOSTIF_TRAP_GROUP:oid:0x11000000000c59", - "ASIC_STATE:SAI_OBJECT_TYPE_POLICER:oid:0x12000000000c5a", - "ASIC_STATE:SAI_OBJECT_TYPE_QUEUE:oid:0x15000000000626" - ], - "tables_not_found": [], - "vidtorid": { - "oid:0x22000000000c5b": "oid:0x200000000022", - "oid:0x11000000000c59": "oid:0x300000011", - "oid:0x12000000000c5a": "oid:0x200000012", - "oid:0x15000000000626": "oid:0x12e0000040015" - } - } - } - } - ``` - -### Event Driven Techsupport Invocation - -This feature/capability makes the techsupport invocation event-driven based on core dump generation. This feature is only applicable for the processes running in the containers. More detailed explanation can be found in the HLD https://github.com/Azure/SONiC/blob/master/doc/auto_techsupport_and_coredump_mgmt.md - -#### config auto-techsupport global commands - -**config auto-techsupport global state** - -- Usage: - ``` - config auto-techsupport global state - ``` - -- Example: - ``` - config auto-techsupport global state enabled - ``` - -**config auto-techsupport global rate-limit-interval ** - -- Usage: - ``` - config auto-techsupport global rate-limit-interval - ``` - - Parameters: - - rate-limit-interval: Minimum time in seconds to wait after the last techsupport creation time before invoking a new one. - -- Example: - ``` - config auto-techsupport global rate-limit-interval 200 - ``` - -**config auto-techsupport global max-techsupport-limit ** - -- Usage: - ``` - config auto-techsupport global max-techsupport-limit - ``` - - Parameters: - - max-techsupport-limit: A percentage value should be specified. This signifies maximum size to which /var/dump/ directory can be grown until. - -- Example: - ``` - config auto-techsupport global max-techsupport-limit 10.15 - ``` - -**config auto-techsupport global max-core-limit ** - -- Usage: - ``` - config auto-techsupport global max-core-limit - ``` - - Parameters: - - max-core-limit: A percentage value should be specified. This signifies maximum size to which /var/core/ directory can be grown until. - -- Example: - ``` - config auto-techsupport global max-core-limit 10.15 - ``` - -**config auto-techsupport global since** - -- Usage: - ``` - config auto-techsupport global since - ``` - - Parameters: - - since: This limits the auto-invoked techsupport to only collect the logs & core-dumps generated since the time provided. Any valid date string of the formats specified here can be used. (https://www.gnu.org/software/coreutils/manual/html_node/Date-input-formats.html). If this value is not explicitly configured or a non-valid string is provided, a default value of "2 days ago" is used. - -- Example: - ``` - config auto-techsupport global since - ``` - - -#### config auto-techsupport-feature commands - -**config auto-techsupport-feature add** - -- Usage: - ``` - config auto-techsupport-feature add --state --rate-limit-interval - ``` - - Parameters: - - state: enable/disable the capability for the specific feature/container. - - rate-limit-interval: Rate limit interval for the corresponding feature. Configure 0 to explicitly disable. For the techsupport to be generated by auto-techsupport, both the global and feature specific rate-limit-interval has to be passed - -- Example: - ``` - config auto-techsupport-feature add bgp --state enabled --rate-limit-interval 200 - ``` - - -**config auto-techsupport-feature delete** - -- Usage: - ``` - config auto-techsupport-feature delete - ``` - -- Example: - ``` - config auto-techsupport-feature delete swss - ``` - -**config auto-techsupport-feature update** - -- Usage: - ``` - config auto-techsupport-feature update --state - config auto-techsupport-feature update --rate-limit-interval - ``` - -- Example: - ``` - config auto-techsupport-feature update snmp --state enabled - config auto-techsupport-feature update swss --rate-limit-interval 200 - ``` - -#### Show CLI: - -**show auto-techsupport global** - -- Usage: - ``` - show auto-techsupport global - ``` - -- Example: - ``` - admin@sonic:~$ show auto-techsupport global - STATE RATE LIMIT INTERVAL (sec) MAX TECHSUPPORT LIMIT (%) MAX CORE LIMIT (%) SINCE - ------- --------------------------- -------------------------- ------------------ ---------- - enabled 180 10.0 5.0 2 days ago - ``` - -**show auto-techsupport-feature** - -- Usage: - ``` - show auto-techsupport-feature - ``` - -- Example: - ``` - admin@sonic:~$ show auto-techsupport-feature - FEATURE NAME STATE RATE LIMIT INTERVAL (sec) - -------------- -------- -------------------------- - bgp enabled 600 - database enabled 600 - dhcp_relay enabled 600 - lldp enabled 600 - swss disabled 800 - ``` - -**show auto-techsupport history** - -- Usage: - ``` - show auto-techsupport history - ``` - -- Example: - ``` - admin@sonic:~$ show auto-techsupport history - TECHSUPPORT DUMP TRIGGERED BY CORE DUMP - ---------------------------------------- -------------- ----------------------------- - sonic_dump_r-lionfish-16_20210901_221402 bgp bgpcfgd.1630534439.55.core.gz - sonic_dump_r-lionfish-16_20210901_203725 snmp python3.1630528642.23.core.gz - sonic_dump_r-lionfish-16_20210901_222408 teamd python3.1630535045.34.core.gz - ``` - -Go Back To [Beginning of the document](#) or [Beginning of this section](#troubleshooting-commands) - -## Routing Stack - -SONiC software is agnostic of the routing software that is being used in the device. For example, users can use either Quagga or FRR routing stack as per their requirement. -A separate shell (vtysh) is provided to configure such routing stacks. -Once if users go to "vtysh", they can use the routing stack specific commands as given in the following example. - -- Example (Quagga Routing Stack): - ``` - admin@sonic:~$ vtysh - - Hello, this is Quagga (version 0.99.24.1). - Copyright 1996-2005 Kunihiro Ishiguro, et al. - - sonic# show route-map (This command displays the route-map that is configured for the routing protocol.) - ZEBRA: - route-map RM_SET_SRC, permit, sequence 10 - Match clauses: - Set clauses: - src 10.12.0.102 - Call clause: - Action: - Exit routemap - ``` - -Refer the routing stack [Quagga Command Reference](https://www.quagga.net/docs/quagga.pdf) or [FRR Command Reference](https://buildmedia.readthedocs.org/media/pdf/frrouting/latest/frrouting.pdf) to know more about about the routing stack configuration. - - -Go Back To [Beginning of the document](#) or [Beginning of this section](#routing-stack) - - -## Quagga BGP Show Commands - -**show ip bgp summary** - -This command displays the summary of all IPv4 bgp neighbors that are configured and the corresponding states. - -- Usage: - ``` - show ip bgp summary - ``` - -- Example: - ``` - admin@sonic:~$ show ip bgp summary - BGP router identifier 1.2.3.4, local AS number 65061 - RIB entries 6124, using 670 KiB of memory - Peers 2, using 143 KiB of memory - - Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd - 192.168.1.161 4 65501 88698 102781 0 0 0 08w5d14h 2 - 192.168.1.163 4 65502 88698 102780 0 0 0 08w5d14h 2 - - Total number of neighbors 2 - ``` - -**show ip bgp neighbors** - -This command displays all the details of IPv4 & IPv6 BGP neighbors when no optional argument is specified. - -When the optional argument IPv4_address is specified, it displays the detailed neighbor information about that specific IPv4 neighbor. - -Command has got additional optional arguments to display only the advertised routes, or the received routes, or all routes. - -In order to get details for an IPv6 neigbor, use "show ipv6 bgp neighbor " command. - -- Usage: - ``` - show ip bgp neighbors [ [advertised-routes | received-routes | routes]] - ``` - -- Example: - ``` - admin@sonic:~$ show ip bgp neighbors - BGP neighbor is 192.168.1.161, remote AS 65501, local AS 65061, external link - Description: ARISTA01T0 - BGP version 4, remote router ID 1.2.3.4 - BGP state = Established, up for 08w5d14h - Last read 00:00:46, hold time is 180, keepalive interval is 60 seconds - Neighbor capabilities: - 4 Byte AS: advertised and received - Dynamic: received - Route refresh: advertised and received(old & new) - Address family IPv4 Unicast: advertised and received - Graceful Restart Capabilty: advertised and received - Remote Restart timer is 120 seconds - Address families by peer: - IPv4 Unicast(not preserved) - Graceful restart informations: - End-of-RIB send: IPv4 Unicast - End-of-RIB received: IPv4 Unicast - Message statistics: - Inq depth is 0 - Outq depth is 0 - Sent Rcvd - Opens: 1 1 - Notifications: 0 0 - Updates: 14066 3 - Keepalives: 88718 88698 - Route Refresh: 0 0 - Capability: 0 0 - Total: 102785 88702 - Minimum time between advertisement runs is 30 seconds - - For address family: IPv4 Unicast - Community attribute sent to this neighbor(both) - 2 accepted prefixes - - Connections established 1; dropped 0 - Last reset never - Local host: 192.168.1.160, Local port: 32961 - Foreign host: 192.168.1.161, Foreign port: 179 - Nexthop: 192.168.1.160 - Nexthop global: fe80::f60f:1bff:fe89:bc00 - Nexthop local: :: - BGP connection: non shared network - Read thread: on Write thread: off - ``` - -Optionally, you can specify an IP address in order to display only that particular neighbor. In this mode, you can optionally specify whether you want to display all routes advertised to the specified neighbor, all routes received from the specified neighbor or all routes (received and accepted) from the specified neighbor. - - -- Examples: - ``` - admin@sonic:~$ show ip bgp neighbors 192.168.1.161 - - admin@sonic:~$ show ip bgp neighbors 192.168.1.161 advertised-routes - - admin@sonic:~$ show ip bgp neighbors 192.168.1.161 received-routes - - admin@sonic:~$ show ip bgp neighbors 192.168.1.161 routes - ``` - -**show ipv6 bgp summary** - -This command displays the summary of all IPv4 bgp neighbors that are configured and the corresponding states. - -- Usage: - ``` - show ipv6 bgp summary - ``` - -- Example: - ``` - admin@sonic:~$ show ipv6 bgp summary - BGP router identifier 10.1.0.32, local AS number 65100 - RIB entries 12809, using 1401 KiB of memory - Peers 8, using 36 KiB of memory - - Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd - fc00::72 4 64600 12588 12591 0 0 0 06:51:17 6402 - fc00::76 4 64600 12587 6190 0 0 0 06:51:28 6402 - fc00::7a 4 64600 12587 9391 0 0 0 06:51:23 6402 - fc00::7e 4 64600 12589 12592 0 0 0 06:51:25 6402 - - Total number of neighbors 4 - ``` - -**show ipv6 bgp neighbors** - -This command displays all the details of one particular IPv6 Border Gateway Protocol (BGP) neighbor. Option is also available to display only the advertised routes, or the received routes, or all routes. - -- Usage: - ``` - show ipv6 bgp neighbors (advertised-routes | received-routes | routes) - ``` - -- Examples: - ``` - admin@sonic:~$ show ipv6 bgp neighbors fc00::72 advertised-routes - - admin@sonic:~$ show ipv6 bgp neighbors fc00::72 received-routes - - admin@sonic:~$ show ipv6 bgp neighbors fc00::72 routes - ``` - -**show route-map** - -This command displays the routing policy that takes precedence over the other route processes that are configured. - -- Usage: - ``` - show route-map - ``` - -- Example: - ``` - admin@sonic:~$ show route-map - ZEBRA: - route-map RM_SET_SRC, permit, sequence 10 - Match clauses: - Set clauses: - src 10.12.0.102 - Call clause: - Action: - Exit routemap - ZEBRA: - route-map RM_SET_SRC6, permit, sequence 10 - Match clauses: - Set clauses: - src fc00:1::102 - Call clause: - Action: - Exit routemap - BGP: - route-map FROM_BGP_SPEAKER_V4, permit, sequence 10 - Match clauses: - Set clauses: - Call clause: - Action: - Exit routemap - BGP: - route-map TO_BGP_SPEAKER_V4, deny, sequence 10 - Match clauses: - Set clauses: - Call clause: - Action: - Exit routemap - BGP: - route-map ISOLATE, permit, sequence 10 - Match clauses: - Set clauses: - as-path prepend 65000 - Call clause: - Action: - Exit routemap - ``` -Go Back To [Beginning of the document](#) or [Beginning of this section](#quagga-bgp-show-commands) - -# ZTP Configuration And Show Commands - -This section explains all the Zero Touch Provisioning commands that are supported in SONiC. - -## ZTP show commands - - -This command displays the current ZTP configuration of the switch. It also displays detailed information about current state of a ZTP session. It displays information related to all configuration sections as defined in the switch provisioning information discovered in a particular ZTP session. - -- Usage: - show ztp status - - show ztp status --verbose - -- Example: - -``` -root@B1-SP1-7712:/home/admin# show ztp status -ZTP Admin Mode : True -ZTP Service : Inactive -ZTP Status : SUCCESS -ZTP Source : dhcp-opt67 (eth0) -Runtime : 05m 31s -Timestamp : 2019-09-11 19:12:24 UTC - -ZTP Service is not running - -01-configdb-json: SUCCESS -02-connectivity-check: SUCCESS -``` -Use the verbose option to display more detailed information. - -``` -root@B1-SP1-7712:/home/admin# show ztp status --verbose -Command: ztp status --verbose -======================================== -ZTP -======================================== -ZTP Admin Mode : True -ZTP Service : Inactive -ZTP Status : SUCCESS -ZTP Source : dhcp-opt67 (eth0) -Runtime : 05m 31s -Timestamp : 2019-09-11 19:12:16 UTC -ZTP JSON Version : 1.0 - -ZTP Service is not running - ----------------------------------------- -01-configdb-json ----------------------------------------- -Status : SUCCESS -Runtime : 02m 48s -Timestamp : 2019-09-11 19:11:55 UTC -Exit Code : 0 -Ignore Result : False - ----------------------------------------- -02-connectivity-check ----------------------------------------- -Status : SUCCESS -Runtime : 04s -Timestamp : 2019-09-11 19:12:16 UTC -Exit Code : 0 -Ignore Result : False -``` - -- Description - - - **ZTP Admin Mode** - Displays if the ZTP feature is administratively enabled or disabled. Possible values are True or False. This value is configurable using "config ztp enabled" and "config ztp disable" commands. - - **ZTP Service** - Displays the ZTP service status. The following are possible values this field can display: - - *Active Discovery*: ZTP service is operational and is performing DHCP discovery to learn switch provisioning information - - *Processing*: ZTP service has discovered switch provisioning information and is processing it - - **ZTP Status** - Displays the current state and result of ZTP session. The following are possible values this field can display: - - *IN-PROGRESS*: ZTP session is currently in progress. ZTP service is processing switch provisioning information. - - *SUCCESS*: ZTP service has successfully processed the switch provisioning information. - - *FAILED*: ZTP service has failed to process the switch provisioning information. - - *Not Started*: ZTP service has not started processing the discovered switch provisioning information. - - **ZTP Source** - Displays the DHCP option and then interface name from which switch provisioning information has been discovered. - - **Runtime** - Displays the time taken for ZTP process to complete from start to finish. For individual configuration sections it indicates the time taken to process the associated configuration section. - - **Timestamp** - Displays the date/time stamp when the status field has last changed. - - **ZTP JSON Version** - Version of ZTP JSON file used for describing switch provisioning information. - - **Status** - Displays the current state and result of a configuration section. The following are possible values this field can display: - - *IN-PROGRESS*: Corresponding configuration section is currently being processed. - - *SUCCESS*: Corresponding configuration section was processed successfully. - - *FAILED*: Corresponding configuration section failed to execute successfully. - - *Not Started*: ZTP service has not started processing the corresponding configuration section. - - *DISABLED*: Corresponding configuration section has been marked as disabled and will not be processed. - - **Exit Code** - Displays the program exit code of the configuration section executed. Non-zero exit code indicates that the configuration section has failed to execute successfully. - - **Ignore Result** - If this value is True, the result of the corresponding configuration section is ignored and not used to evaluate the overall ZTP result. - - **Activity String** - In addition to above information an activity string is displayed indicating the current action being performed by the ZTP service and how much time it has been performing the mentioned activity. Below is an example. - - (04m 12s) Discovering provisioning data - -## ZTP configuration commands - -This sub-section explains the list of the configuration options available for ZTP. - - - -**config ztp enable** - -Use this command to enable ZTP administrative mode - -- Example: - -``` -root@sonic:/home/admin# config ztp enable -Running command: ztp enable -``` - - - -**config ztp disable** - -Use this command to disable ZTP administrative mode. This command can also be used to abort a current ZTP session and load the factory default switch configuration. - -- Usage: - config ztp disable - - config ztp disable -y - -- Example: - -``` -root@sonic:/home/admin# config ztp disable -Active ZTP session will be stopped and disabled, continue? [y/N]: y -Running command: ztp disable -y -``` - - -**config ztp run** - -Use this command to manually restart a new ZTP session. This command deletes the existing */etc/sonic/config_db.json* file and stats ZTP service. It also erases the previous ZTP session data. ZTP configuration is loaded on to the switch and ZTP discovery is performed. - -- Usage: - config ztp run - - config ztp run -y - -- Example: - -``` -root@sonic:/home/admin# config ztp run -ZTP will be restarted. You may lose switch data and connectivity, continue? [y/N]: y -Running command: ztp run -y -``` - -Go Back To [Beginning of the document](#SONiC-COMMAND-LINE-INTERFACE-GUIDE) or [Beginning of this section](#ztp-configuration-and-show-commands) +# SONiC Command Line Interface Guide + +## Table of Contents + +* [Document History](#document-history) +* [Introduction](#introduction) +* [Basic Tasks](#basic-tasks) + * [SSH Login](#ssh-login) + * [Show Management Interface](#show-management-interface) + * [Configuring Management Interface](#configuring-management-interface) +* [Getting Help](#getting-help) + * [Help for Config Commands](#help-for-config-commands) + * [Help for Show Commands](#help-for-show-commands) +* [Basic Show Commands](#basic-show-commands) + * [Show Versions](#show-versions) + * [Show System Status](#show-system-status) + * [Show Hardware Platform](#show-hardware-platform) + * [Transceivers](#transceivers) +* [AAA & TACACS+](#aaa--tacacs) + * [AAA](#aaa) + * [AAA show commands](#aaa-show-commands) + * [AAA config commands](#aaa-config-commands) + * [TACACS+](#tacacs) + * [TACACS+ show commands](#tacacs-show-commands) + * [TACACS+ config commands](#tacacs-config-commands) +* [ACL](#acl) + * [ACL show commands](#acl-show-commands) + * [ACL config commands](#acl-config-commands) +* [ARP & NDP](#arp--ndp) + * [ARP show commands](#arp-show-commands) + * [NDP show commands](#ndp-show-commands) +* [BFD](#bfd) + * [BFD show commands](#bfd-show-commands) +* [BGP](#bgp) + * [BGP show commands](#bgp-show-commands) + * [BGP config commands](#bgp-config-commands) +* [Console](#console) + * [Console show commands](#console-show-commands) + * [Console config commands](#console-config-commands) + * [Console connect commands](#console-connect-commands) + * [Console clear commands](#console-clear-commands) +* [DHCP Relay](#dhcp-relay) + * [DHCP Relay config commands](#dhcp-relay-config-commands) +* [Drop Counters](#drop-counters) + * [Drop Counter show commands](#drop-counters-show-commands) + * [Drop Counter config commands](#drop-counters-config-commands) + * [Drop Counter clear commands](#drop-counters-clear-commands) +* [Dynamic Buffer Management](#dynamic-buffer-management) + * [Configuration commands](#configuration-commands) + * [Show commands](#show-commands) +* [ECN](#ecn) + * [ECN show commands](#ecn-show-commands) + * [ECN config commands](#ecn-config-commands) +* [Fabric](#fabric) + * [Fabric config commands](#fabric-config-commands) +* [Feature](#feature) + * [Feature show commands](#feature-show-commands) + * [Feature config commands](#feature-config-commands) +* [Flow Counters](#flow-counters) + * [Flow Counters show commands](#flow-counters-show-commands) + * [Flow Counters clear commands](#flow-counters-clear-commands) + * [Flow Counters config commands](#flow-counters-config-commands) +* [Gearbox](#gearbox) + * [Gearbox show commands](#gearbox-show-commands) +* [Generic Configuration Update and Rollback](#Generic-Configuration-Update-and-Rollback) + * [Apply-patch command](#Apply-patch-command) + * [Replace Command](#Replace-Command) + * [Rollback Command](#Rollback-Command) + * [Checkpoint Command](#Checkpoint-Command) + * [Delete-checkpoint Command](#Delete-checkpoint-Command) + * [List-checkpoints Command](#List-checkpoints-Command) +* [Interfaces](#interfaces) + * [Interface Show Commands](#interface-show-commands) + * [Interface Config Commands](#interface-config-commands) +* [Interface Naming Mode](#interface-naming-mode) + * [Interface naming mode show commands](#interface-naming-mode-show-commands) + * [Interface naming mode config commands](#interface-naming-mode-config-commands) + * [Interface Vrf binding](#interface-vrf-binding) + * [Interface vrf bind & unbind config commands](#interface-vrf-bind-&-unbind-config-commands) + * [Interface vrf binding show commands](#interface-vrf-binding-show-commands) +* [IP / IPv6](#ip--ipv6) + * [IP show commands](#ip-show-commands) + * [IPv6 show commands](#ipv6-show-commands) +* [IPv6 Link Local](#ipv6-link-local) + * [IPv6 Link Local config commands](#ipv6-link-local-config-commands) + * [IPv6 Link Local show commands](#ipv6-link-local-show-commands) +* [Kubernetes](#Kubernetes) + * [Kubernetes show commands](#Kubernetes-show-commands) + * [Kubernetes config commands](#Kubernetes-config-commands) +* [Linux Kernel Dump](#kdump) + * [Linux Kernel Dump show commands](#kdump-show-commands) + * [Linux Kernel Dump config commands](#kdump-config-commands) +* [LLDP](#lldp) + * [LLDP show commands](#lldp-show-commands) +* [Loading, Reloading And Saving Configuration](#loading-reloading-and-saving-configuration) + * [Loading configuration from JSON file](#loading-configuration-from-json-file) + * [Loading configuration from minigraph (XML) file](#loading-configuration-from-minigraph-xml-file) + * [Reloading Configuration](#reloading-configuration) + * [Loading Management Configuration](#loading-management-configuration) + * [Saving Configuration to a File for Persistence](saving-configuration-to-a-file-for-persistence) + * [Loopback Interfaces](#loopback-interfaces) + * [Loopback show commands](#loopback-show-commands) + * [Loopback config commands](#loopback-config-commands) + * [MACsec Commands](#macsec-commands) + * [MACsec config command](#macsec-config-command) + * [MACsec show command](#macsec-show-command) + * [MACsec clear command](#macsec-clear-command) +* [VRF Configuration](#vrf-configuration) + * [VRF show commands](#vrf-show-commands) + * [VRF config commands](#vrf-config-commands) +* [Management VRF](#Management-VRF) + * [Management VRF Show commands](#management-vrf-show-commands) + * [Management VRF Config commands](#management-vrf-config-commands) +* [Mirroring](#mirroring) + * [Mirroring Show commands](#mirroring-show-commands) + * [Mirroring Config commands](#mirroring-config-commands) +* [Muxcable](#muxcable) + * [Muxcable Show commands](#muxcable-show-commands) + * [Muxcable Config commands](#muxcable-config-commands) +* [NAT](#nat) + * [NAT Show commands](#nat-show-commands) + * [NAT Config commands](#nat-config-commands) + * [NAT Clear commands](#nat-clear-commands) +* [NTP](#ntp) + * [NTP show commands](#ntp-show-commands) + * [NTP config commands](#ntp-config-commands) +* [NVGRE](#nvgre) + * [NVGRE show commands](#nvgre-show-commands) + * [NVGRE config commands](#nvgre-config-commands) +* [Password Hardening](#Password-Hardening) + * [PW config commands](#pw-config-commands) + * [PW show commands](#pw-show-commands) +* [PBH](#pbh) + * [PBH show commands](#pbh-show-commands) + * [PBH config commands](#pbh-config-commands) +* [PFC Watchdog Commands](#pfc-watchdog-commands) +* [Platform Component Firmware](#platform-component-firmware) + * [Platform Component Firmware show commands](#platform-component-firmware-show-commands) + * [Platform Component Firmware config commands](#platform-component-firmware-config-commands) + * [Platform Component Firmware vendor specific behaviour](#platform-component-firmware-vendor-specific-behaviour) +* [Platform Specific Commands](#platform-specific-commands) + * [Mellanox Platform Specific Commands](#mellanox-platform-specific-commands) + * [Barefoot Platform Specific Commands](#barefoot-platform-specific-commands) +* [PortChannels](#portchannels) + * [PortChannel Show commands](#portchannel-show-commands) + * [PortChannel Config commands](#portchannel-config-commands) +* [QoS](#qos) + * [QoS Show commands](#qos-show-commands) + * [PFC](#pfc) + * [Queue And Priority-Group](#queue-and-priority-group) + * [Buffer Pool](#buffer-pool) + * [QoS config commands](#qos-config-commands) +* [Radius](#radius) + * [radius show commands](#show-radius-commands) + * [radius config commands](#Radius-config-commands) +* [sFlow](#sflow) + * [sFlow Show commands](#sflow-show-commands) + * [sFlow Config commands](#sflow-config-commands) +* [SNMP](#snmp) + * [SNMP Show commands](#snmp-show-commands) + * [SNMP Config commands](#snmp-config-commands) +* [Startup & Running Configuration](#startup--running-configuration) + * [Startup Configuration](#startup-configuration) + * [Running Configuration](#running-configuration) +* [Static routing](#static-routing) +* [Subinterfaces](#subinterfaces) + * [Subinterfaces Show Commands](#subinterfaces-show-commands) + * [Subinterfaces Config Commands](#subinterfaces-config-commands) +* [Syslog](#syslog) + * [Syslog config commands](#syslog-config-commands) +* [System State](#system-state) + * [Processes](#processes) + * [Services & Memory](#services--memory) +* [System-Health](#System-Health) +* [VLAN & FDB](#vlan--fdb) + * [VLAN](#vlan) + * [VLAN show commands](#vlan-show-commands) + * [VLAN Config commands](#vlan-config-commands) + * [FDB](#fdb) + * [FDB show commands](#fdb-show-commands) +* [VxLAN & Vnet](#vxlan--vnet) + * [VxLAN](#vxlan) + * [VxLAN show commands](#vxlan-show-commands) + * [Vnet](#vnet) + * [Vnet show commands](#vnet-show-commands) +* [Warm Reboot](#warm-reboot) +* [Warm Restart](#warm-restart) + * [Warm Restart show commands](#warm-restart-show-commands) + * [Warm Restart Config commands](#warm-restart-config-commands) +* [Watermark](#watermark) + * [Watermark Show commands](#watermark-show-commands) + * [Watermark Config commands](#watermark-config-commands) +* [Software Installation and Management](#software-installation-and-management) + * [SONiC Package Manager](#sonic-package-manager) + * [SONiC Installer](#sonic-installer) +* [Troubleshooting Commands](#troubleshooting-commands) + * [Debug Dumps](#debug-dumps) + * [Event Driven Techsupport Invocation](#event-driven-techsupport-invocation) +* [Routing Stack](#routing-stack) +* [Quagga BGP Show Commands](#Quagga-BGP-Show-Commands) +* [ZTP Configuration And Show Commands](#ztp-configuration-and-show-commands) + * [ ZTP show commands](#ztp-show-commands) + * [ZTP configuration commands](#ztp-configuration-commands) + +## Document History + +| Version | Modification Date | Details | +| --- | --- | --- | +| v6 | May-06-2021 | Add SNMP show and config commands | +| v5 | Nov-05-2020 | Add document for console commands | +| v4 | Oct-17-2019 | Unify usage statements and other formatting; Replace tabs with spaces; Modify heading sizes; Fix spelling, grammar and other errors; Fix organization of new commands | +| v3 | Jun-26-2019 | Update based on 201904 (build#19) release, "config interface" command changes related to interfacename order, FRR/Quagga show command changes, platform specific changes, ACL show changes and few formatting changes | +| v2 | Apr-22-2019 | CLI Guide for SONiC 201811 version (build#32) with complete "config" command set | +| v1 | Mar-23-2019 | Initial version of CLI Guide with minimal command set | + +## Introduction +SONiC is an open source network operating system based on Linux that runs on switches from multiple vendors and ASICs. SONiC offers a full-suite of network functionality, like BGP and RDMA, that has been production-hardened in the data centers of some of the largest cloud-service providers. It offers teams the flexibility to create the network solutions they need while leveraging the collective strength of a large ecosystem and community. + +SONiC software shall be loaded in these [supported devices](https://github.com/Azure/SONiC/wiki/Supported-Devices-and-Platforms) and this CLI guide shall be used to configure the devices as well as to display the configuration, state and status. + +Follow the [Quick Start Guide](https://github.com/Azure/SONiC/wiki/Quick-Start) to boot the device in ONIE mode, install the SONiC software using the steps specified in the document and login to the device using the default username and password. + +After logging into the device, SONiC software can be configured in following three methods. + 1. Command Line Interface (CLI) + 2. [config_db.json](https://github.com/Azure/SONiC/wiki/Configuration) + 3. [minigraph.xml](https://github.com/Azure/SONiC/wiki/Configuration-with-Minigraph-(~Sep-2017)) + +This document explains the first method and gives the complete list of commands that are supported in SONiC 201904 version (build#19). +All the configuration commands need root privileges to execute them. Note that show commands can be executed by all users without the root privileges. +Root privileges can be obtained either by using "sudo" keyword in front of all config commands, or by going to root prompt using "sudo -i". +Note that all commands are case sensitive. + +- Example: + ``` + admin@sonic:~$ sudo config aaa authentication login tacacs+ + + OR + + admin@sonic:~$ sudo -i + root@sonic:~# config aaa authentication login tacacs+ + ``` + +Note that the command list given in this document is just a subset of all possible configurations in SONiC. +Please follow config_db.json based configuration for the complete list of configuration options. + +**Scope of this Document** + +It is assumed that all configuration commands start with the keyword “config” as prefix. +Any other scripts/utilities/commands that need user configuration control are wrapped as sub-commands under the “config” command. +The direct scripts/utilities/commands (examples given below) that are not wrapped under the "config" command are not in the scope of this document. + 1. acl_loader – This script is already wrapped inside “config acl” command; i.e. any ACL configuration that user is allowed to do is already part of “config acl” command; users are not expected to use the acl_loader script directly and hence this document need not explain the “acl_loader” script. + 2. crm – this command is not explained in this document. + 3. sonic-clear, sfputil, etc., This document does not explain these scripts also. + +## Basic Tasks + +This section covers the basic configurations related to the following: + 1. [SSH login](#SSH-Login) + 2. [Configuring the Management Interface](#Configuring-Management-Interface) + +### SSH Login + +All SONiC devices support both the serial console based login and the SSH based login by default. +The default credential (if not modified at image build time) for login is `admin/YourPaSsWoRd`. +In case of SSH login, users can login to the management interface (eth0) IP address after configuring the same using serial console. +Refer the following section for configuring the IP address for management interface. + +- Example: + ``` + At Console: + Debian GNU/Linux 9 sonic ttyS1 + + sonic login: admin + Password: YourPaSsWoRd + + SSH from any remote server to sonic can be done by connecting to SONiC IP + user@debug:~$ ssh admin@sonic_ip_address(or SONIC DNS Name) + admin@sonic's password: + ``` + +By default, login takes the user to the default prompt from which all the show commands can be executed. + +Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-tasks) + +### Show Management Interface + +Please check [show ip interfaces](#show-ip-interfaces) + +### Configuring Management Interface + +The management interface (eth0) in SONiC is configured (by default) to use DHCP client to get the IP address from the DHCP server. Connect the management interface to the same network in which your DHCP server is connected and get the IP address from DHCP server. +The IP address received from DHCP server can be verified using the `/sbin/ifconfig eth0` Linux command. + +SONiC provides a CLI to configure the static IP for the management interface. There are few ways by which a static IP address can be configured for the management interface. + 1. Use the `config interface ip add eth0` command. + - Example: + ``` + admin@sonic:~$ sudo config interface ip add eth0 20.11.12.13/24 20.11.12.254 + ``` + 2. Use config_db.json and configure the MGMT_INTERFACE key with the appropriate values. Refer [here](https://github.com/Azure/SONiC/wiki/Configuration#Management-Interface) + 3. Use minigraph.xml and configure "ManagementIPInterfaces" tag inside "DpgDesc" tag as given at the [page](https://github.com/Azure/SONiC/wiki/Configuration-with-Minigraph-(~Sep-2017)) + +Once the IP address is configured, the same can be verified using either `show management_interface address` command or the `/sbin/ifconfig eth0` linux command. +Users can SSH login to this management interface IP address from their management network. + +- Example: + ``` + admin@sonic:~$ /sbin/ifconfig eth0 + eth0: flags=4163 mtu 1500 + inet 10.11.11.13 netmask 255.255.255.0 broadcast 10.11.12.255 + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-tasks) + +## Getting Help + +Subsections: + 1. [Help for Config Commands](#Config-Help) + 2. [Help for Show Commands](#Show-Help) + 3. [Show Versions](#Show-Versions) + 4. [Show System Status](#Show-System-Status) + 5. [Show Hardware Platform](#Show-Hardware-Platform) + +### Help for Config Commands + +All commands have in-built help that aids the user in understanding the command as well as the possible sub-commands and options. +"--help" can be used at any level of the command; i.e. it can be used at the command level, or sub-command level or at argument level. The in-built help will display the available possibilities corresponding to that particular command/sub-command. + +**config --help** + +This command lists all the possible configuration commands at the top level. + +- Usage: + ``` + config --help + ``` + +- Example: + ``` + admin@sonic:~$ config --help + Usage: config [OPTIONS] COMMAND [ARGS] + SONiC command line - 'config' command + + Options: + --help Show this message and exit. + + Commands: + aaa AAA command line + acl ACL-related configuration tasks + bgp BGP-related configuration tasks + ecn ECN-related configuration tasks + feature Modify configuration of features + hostname Change device hostname without impacting traffic + interface Interface-related configuration tasks + interface_naming_mode Modify interface naming mode for interacting... + kubernetes Kubernetes server related configuration + load Import a previous saved config DB dump file. + load_mgmt_config Reconfigure hostname and mgmt interface based... + load_minigraph Reconfigure based on minigraph. + loopback Loopback-related configuration tasks. + mirror_session + nat NAT-related configuration tasks + platform Platform-related configuration tasks + portchannel + qos + reload Clear current configuration and import a... + route route-related configuration tasks + save Export current config DB to a file on disk. + tacacs TACACS+ server configuration + vlan VLAN-related configuration tasks + vrf VRF-related configuration tasks + warm_restart warm_restart-related configuration tasks + watermark Configure watermark + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#getting-help) + +### Help For Show Commands + +**show help** + +This command displays the full list of show commands available in the software; the output of each of those show commands can be used to analyze, debug or troubleshoot the network node. + +- Usage: + ``` + show (-?|-h|--help) + ``` + +- Example: + ``` + admin@sonic:~$ show -? + Usage: show [OPTIONS] COMMAND [ARGS]... + SONiC command line - 'show' command + + Options: + -?, -h, --help Show this message and exit. + + Commands: + aaa Show AAA configuration + acl Show ACL related information + arp Show IP ARP table + buffer_pool Show details of the Buffer-pools + clock Show date and time + ecn Show ECN configuration + environment Show environmentals (voltages, fans, temps) + feature Show feature status + interfaces Show details of the network interfaces + ip Show IP (IPv4) commands + ipv6 Show IPv6 commands + kubernetes Show kubernetes commands + line Show all /dev/ttyUSB lines and their info + lldp Show LLDP information + logging Show system log + mac Show MAC (FDB) entries + mirror_session Show existing everflow sessions + mmu Show mmu configuration + muxcable Show muxcable information + nat Show details of the nat + ndp Show IPv6 Neighbour table + ntp Show NTP information + pfc Show details of the priority-flow-control... + platform Show platform-specific hardware info + priority-group Show details of the PGs + processes Show process information + queue Show details of the queues + reboot-cause Show cause of most recent reboot + route-map Show route-map + runningconfiguration Show current running configuration... + services Show all daemon services + startupconfiguration Show startup configuration information + subinterfaces Show details of the sub port interfaces + system-memory Show memory information + tacacs Show TACACS+ configuration + techsupport Gather information for troubleshooting + uptime Show system uptime + users Show users + version Show version information + vlan Show VLAN information + vrf Show vrf config + warm_restart Show warm restart configuration and state + watermark Show details of watermark + ``` + +The same syntax applies to all subgroups of `show` which themselves contain subcommands, and subcommands which accept options/arguments. + +- Example: + ``` + admin@sonic:~$ show interfaces -? + + Show details of the network interfaces + + Options: + -?, -h, --help Show this message and exit. + + Commands: + counters Show interface counters + description Show interface status, protocol and... + naming_mode Show interface naming_mode status + neighbor Show neighbor related information + portchannel Show PortChannel information + status Show Interface status information + tpid Show Interface tpid information + transceiver Show SFP Transceiver information + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#getting-help) + +## Basic Show Commands + +Subsections: + 1. [Show Versions](#Show-Versions) + 2. [Show System Status](#Show-System-Status) + 3. [Show Hardware Platform](#Show-Hardware-Platform) + +### Show Versions + +**show version** + +This command displays software component versions of the currently running SONiC image. This includes the SONiC image version as well as Docker image versions. +This command displays relevant information as the SONiC and Linux kernel version being utilized, as well as the ID of the commit used to build the SONiC image. The second section of the output displays the various docker images and their associated IDs. + +- Usage: + ``` + show version + ``` + +- Example: + ``` + admin@sonic:~$ show version + SONiC Software Version: SONiC.HEAD.32-21ea29a + Distribution: Debian 9.8 + Kernel: 4.9.0-8-amd64 + Build commit: 21ea29a + Build date: Fri Mar 22 01:55:48 UTC 2019 + Built by: johnar@jenkins-worker-4 + + Platform: x86_64-mlnx_msn2700-r0 + HwSKU: Mellanox-SN2700 + ASIC: mellanox + ASIC Count: 1 + Serial Number: MT1822K07815 + Model Number: MSN2700-CS2FO + Hardware Rev: A1 + Uptime: 14:40:15 up 3 min, 1 user, load average: 1.26, 1.45, 0.66 + Date: Fri 22 Mar 2019 14:40:15 + + Docker images: + REPOSITORY TAG IMAGE ID SIZE + docker-syncd-brcm HEAD.32-21ea29a 434240daff6e 362MB + docker-syncd-brcm latest 434240daff6e 362MB + docker-orchagent-brcm HEAD.32-21ea29a e4f9c4631025 287MB + docker-orchagent-brcm latest e4f9c4631025 287MB + docker-nat HEAD.32-21ea29a 46075edc1c69 305MB + docker-nat latest 46075edc1c69 305MB + docker-lldp-sv2 HEAD.32-21ea29a 9681bbfea3ac 275MB + docker-lldp-sv2 latest 9681bbfea3ac 275MB + docker-dhcp-relay HEAD.32-21ea29a 2db34c7bc6f4 257MB + docker-dhcp-relay latest 2db34c7bc6f4 257MB + docker-database HEAD.32-21ea29a badc6fc84cdb 256MB + docker-database latest badc6fc84cdb 256MB + docker-snmp-sv2 HEAD.32-21ea29a e2776e2a30b7 295MB + docker-snmp-sv2 latest e2776e2a30b7 295MB + docker-teamd HEAD.32-21ea29a caf957cd2ad1 275MB + docker-teamd latest caf957cd2ad1 275MB + docker-router-advertiser HEAD.32-21ea29a b1a62023958c 255MB + docker-router-advertiser latest b1a62023958c 255MB + docker-platform-monitor HEAD.32-21ea29a 40b40a4b2164 287MB + docker-platform-monitor latest 40b40a4b2164 287MB + docker-fpm-quagga HEAD.32-21ea29a 546036fe6838 282MB + docker-fpm-quagga latest 546036fe6838 282MB + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-show-commands) + + +### Show System Status +This sub-section explains some set of sub-commands that are used to display the status of various parameters pertaining to the physical state of the network node. + +**show clock** + +This command displays the current date and time configured on the system + +- Usage: + ``` + show clock + ``` + +- Example: + ``` + admin@sonic:~$ show clock + Mon Mar 25 20:25:16 UTC 2019 + ``` + +**show boot** + +This command displays the current OS image, the image to be loaded on next reboot, and lists all the available images installed on the device + +- Usage: + ``` + show boot + ``` + +- Example: + ``` + admin@sonic:~$ show boot + Current: SONiC-OS-20181130.31 + Next: SONiC-OS-20181130.31 + Available: + SONiC-OS-20181130.31 + ``` + +**show environment** + +This command displays the platform environmentals, such as voltages, temperatures and fan speeds + +- Usage: + ``` + show environment + ``` + +- Example: + ``` + admin@sonic:~$ show environment + coretemp-isa-0000 + Adapter: ISA adapter + Core 0: +28.0 C (high = +98.0 C, crit = +98.0 C) + Core 1: +28.0 C (high = +98.0 C, crit = +98.0 C) + Core 2: +28.0 C (high = +98.0 C, crit = +98.0 C) + Core 3: +28.0 C (high = +98.0 C, crit = +98.0 C) + SMF_Z9100_ON-isa-0000 + Adapter: ISA adapter + CPU XP3R3V_EARLY: +3.22 V + <... few more things ...> + + Onboard Temperature Sensors: + CPU: 30 C + BCM56960 (PSU side): 35 C + <... few more things ...> + + Onboard Voltage Sensors: + CPU XP3R3V_EARLY 3.22 V + <... few more things ...> + + Fan Trays: + Fan Tray 1: + Fan1 Speed: 6192 RPM + Fan2 Speed: 6362 RPM + Fan1 State: Normal + Fan2 State: Normal + Air Flow: F2B + <... few more things ...> + + PSUs: + PSU 1: + Input: AC + <... few more things ...> + ``` +NOTE: The show output has got lot of information; only the sample output is given in the above example. +Though the displayed output slightly differs from one platform to another platform, the overall content will be similar to the example mentioned above. + +**show reboot-cause** + +This command displays the cause of the previous reboot + +- Usage: + ``` + show reboot-cause + ``` + +- Example: + ``` + admin@sonic:~$ show reboot-cause + User issued reboot command [User: admin, Time: Mon Mar 25 01:02:03 UTC 2019] + ``` + +**show reboot-cause history** + +This command displays the history of the previous reboots up to 10 entry + +- Usage: + ``` + show reboot-cause history + ``` + +- Example: + ``` + admin@sonic:~$ show reboot-cause history + Name Cause Time User Comment + ------------------- ----------- ---------------------------- ------ --------- + 2020_10_09_02_33_06 reboot Fri Oct 9 02:29:44 UTC 2020 admin + 2020_10_09_01_56_59 reboot Fri Oct 9 01:53:49 UTC 2020 admin + 2020_10_09_02_00_53 fast-reboot Fri Oct 9 01:58:04 UTC 2020 admin + 2020_10_09_04_53_58 warm-reboot Fri Oct 9 04:51:47 UTC 2020 admin + ``` + +**show uptime** + +This command displays the current system uptime + +- Usage: + ``` + show uptime + ``` + +- Example: + ``` + admin@sonic:~$ show uptime + up 2 days, 21 hours, 30 minutes + ``` + +**show logging** + +This command displays all the currently stored log messages. +All the latest processes and corresponding transactions are stored in the "syslog" file. +This file is saved in the path `/var/log` and can be viewed by giving the command ` sudo cat syslog` as this requires root login. + +- Usage: + ``` + show logging [( [-l|--lines ]) | (-f|--follow)] + ``` + +- Example: + ``` + admin@sonic:~$ show logging + ``` + +It can be useful to pipe the output from `show logging` to the command `more` in order to examine one screenful of log messages at a time + +- Example: + ``` + admin@sonic:~$ show logging | more + ``` + +Optionally, you can specify a process name in order to display only log messages mentioning that process + +- Example: + ``` + admin@sonic:~$ show logging sensord + ``` + +Optionally, you can specify a number of lines to display using the `-l` or `--lines` option. Only the most recent N lines will be displayed. Also note that this option can be combined with a process name. + +- Examples: + ``` + admin@sonic:~$ show logging --lines 50 + ``` + ``` + admin@sonic:~$ show logging sensord --lines 50 + ``` + +Optionally, you can follow the log live as entries are written to it by specifying the `-f` or `--follow` flag + +- Example: + ``` + admin@sonic:~$ show logging --follow + ``` + +**show users** + +This command displays a list of users currently logged in to the device + +- Usage: + ``` + show users + ``` + +- Examples: + ``` + admin@sonic:~$ show users + admin pts/9 Mar 25 20:31 (100.127.20.23) + + admin@sonic:~$ show users + admin ttyS1 2019-03-25 20:31 + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-show-commands) + +### Show Hardware Platform + +The information displayed in this set of commands partially overlaps with the one generated by “show envinronment” instruction. In this case though, the information is presented in a more succinct fashion. In the future these two CLI stanzas may end up getting combined. + +**show platform summary** + +This command displays a summary of the device's hardware platform + +- Usage: + ``` + show platform summary + ``` + +- Example: + ``` + admin@sonic:~$ show platform summary + Platform: x86_64-mlnx_msn2700-r0 + HwSKU: Mellanox-SN2700 + ASIC: mellanox + ASIC Count: 1 + Serial Number: MT1822K07815 + Model Number: MSN2700-CS2FO + Hardware Rev: A1 + ``` + +**show platform syseeprom** + +This command displays information stored on the system EEPROM. +Note that the output of this command is not the same for all vendor's platforms. +Couple of example outputs are given below. + +- Usage: + ``` + show platform syseeprom + ``` + +- Example: + ``` + admin@sonic:~$ show platform syseeprom + lsTLV Name Len Value + -------------------- --- ----- + PPID 20 XX-XXXXXX-00000-000-0000 + DPN Rev 3 XXX + Service Tag 7 XXXXXXX + Part Number 10 XXXXXX + Part Number Rev 3 XXX + Mfg Test Results 2 FF + Card ID 2 0x0000 + Module ID 2 0 + Base MAC Address 12 FE:EC:BA:AB:CD:EF + (checksum valid) + ``` + + ``` + admin@sonic:~$ show platform syseeprom + TlvInfo Header: + Id String: TlvInfo + Version: 1 + Total Length: 527 + TLV Name Code Len Value + ---- --- ----- + Product Name 0x21 64 MSN2700 + Part Number 0x22 20 MSN2700-CS2FO + Serial Number 0x23 24 MT1822K07815 + Base MAC Address 0x24 6 50:6B:4B:8F:CE:40 + Manufacture Date 0x25 19 05/28/2018 23:56:02 + Device Version 0x26 1 16 + MAC Addresses 0x2A 2 128 + Manufacturer 0x2B 8 Mellanox + Vendor Extension 0xFD 36 + Vendor Extension 0xFD 164 + Vendor Extension 0xFD 36 + Vendor Extension 0xFD 36 + Vendor Extension 0xFD 36 + Platform Name 0x28 18 x86_64-mlnx_x86-r0 + ONIE Version 0x29 21 2018.08-5.2.0006-9600 + CRC-32 0xFE 4 0x11C017E1 + + (checksum valid) + ``` + +**show platform ssdhealth** + +This command displays health parameters of the device's SSD + +- Usage: + ``` + show platform ssdhealth [--vendor] + ``` + +- Example: + ``` + admin@sonic:~$ show platform ssdhealth + Device Model : M.2 (S42) 3IE3 + Health : 99.665% + Temperature : 30C + ``` + +**show platform psustatus** + +This command displays the status of the device's power supply units + +- Usage: + ``` + show platform psustatus + ``` + +- Example: + ``` + admin@sonic:~$ show platform psustatus + PSU Model Serial HW Rev Voltage (V) Current (A) Power (W) Status LED + ----- ------------- ------------ -------- ------------- ------------- ----------- -------- ----- + PSU 1 MTEF-PSF-AC-A MT1621X15246 A3 11.97 4.56 54.56 OK green + ``` + +**show platform fan** + +This command displays the status of the device's fans + +- Usage: + ``` + show platform fan + ``` + +- Example: + ``` + admin@sonic:~$ show platform fan + FAN Speed Direction Presence Status Timestamp + ----------- -------- ----------- ---------- -------- ----------------- + fan1 34% intake Present OK 20200302 06:58:56 + fan2 43% intake Present OK 20200302 06:58:56 + fan3 38% intake Present OK 20200302 06:58:56 + fan4 49% intake Present OK 20200302 06:58:57 + fan5 38% exhaust Present OK 20200302 06:58:57 + fan6 48% exhaust Present OK 20200302 06:58:57 + fan7 39% exhaust Present OK 20200302 06:58:57 + fan8 48% exhaust Present OK 20200302 06:58:57 + ``` + +**show platform temperature** + +This command displays the status of the device's thermal sensors + +- Usage: + ``` + show platform temperature + ``` + +- Example: + ``` + admin@sonic:~$ show platform temperature + NAME Temperature High Th Low Th Crit High Th Crit Low Th Warning Timestamp + ---------------------- ------------- --------- -------- -------------- ------------- --------- ----------------- + Ambient ASIC Temp 37.0 100.0 N/A 120.0 N/A False 20200302 06:58:57 + Ambient Fan Side Temp 28.5 100.0 N/A 120.0 N/A False 20200302 06:58:57 + Ambient Port Side Temp 31.0 100.0 N/A 120.0 N/A False 20200302 06:58:57 + CPU Core 0 Temp 36.0 87.0 N/A 105.0 N/A False 20200302 06:59:57 + CPU Core 1 Temp 38.0 87.0 N/A 105.0 N/A False 20200302 06:59:57 + CPU Pack Temp 38.0 87.0 N/A 105.0 N/A False 20200302 06:59:57 + PSU-1 Temp 28.0 100.0 N/A 120.0 N/A False 20200302 06:59:58 + PSU-2 Temp 28.0 100.0 N/A 120.0 N/A False 20200302 06:59:58 + xSFP module 1 Temp 31.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 2 Temp 35.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 3 Temp 32.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 4 Temp 33.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 5 Temp 34.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 6 Temp 36.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 7 Temp 33.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 8 Temp 33.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 9 Temp 32.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 10 Temp 38.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 11 Temp 38.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 12 Temp 39.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 13 Temp 35.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 14 Temp 37.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 15 Temp 36.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 16 Temp 36.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 17 Temp 32.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 18 Temp 34.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 19 Temp 30.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 20 Temp 31.5 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 21 Temp 34.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 22 Temp 34.4 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 23 Temp 34.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 24 Temp 35.6 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 25 Temp 38.0 70.0 N/A 90.0 N/A False 20200302 06:59:57 + xSFP module 26 Temp 32.2 70.0 N/A 90.0 N/A False 20200302 06:59:58 + xSFP module 27 Temp 39.0 70.0 N/A 90.0 N/A False 20200302 06:59:58 + xSFP module 28 Temp 30.1 70.0 N/A 90.0 N/A False 20200302 06:59:58 + xSFP module 29 Temp 32.0 70.0 N/A 90.0 N/A False 20200302 06:59:58 + xSFP module 30 Temp 35.3 70.0 N/A 90.0 N/A False 20200302 06:59:58 + xSFP module 31 Temp 31.0 70.0 N/A 90.0 N/A False 20200302 06:59:58 + xSFP module 32 Temp 39.5 70.0 N/A 90.0 N/A False 20200302 06:59:58 + ``` + +#### Transceivers +Displays diagnostic monitoring information of the transceivers + +**show interfaces transceiver** + +This command displays information for all the interfaces for the transceiver requested or a specific interface if the optional "interface_name" is specified. + +- Usage: + ``` + show interfaces transceiver (eeprom [-d|--dom] | info | lpmode | presence | error-status [-hw|--fetch-from-hardware] | pm | status) [] + ``` + +- Example (Decode and display information stored on the EEPROM of SFP transceiver connected to Ethernet0): + ``` + admin@sonic:~$ show interfaces transceiver eeprom --dom Ethernet0 + Ethernet0: SFP detected + Connector : No separable connector + Encoding : Unspecified + Extended Identifier : Unknown + Extended RateSelect Compliance : QSFP+ Rate Select Version 1 + Identifier : QSFP+ + Length Cable Assembly(m) : 1 + Specification compliance : + 10/40G Ethernet Compliance Code : 40GBASE-CR4 + Fibre Channel Speed : 1200 Mbytes/Sec + Fibre Channel link length/Transmitter Technology : Electrical inter-enclosure (EL) + Fibre Channel transmission media : Twin Axial Pair (TW) + Vendor Date Code(YYYY-MM-DD Lot) : 2015-10-31 + Vendor Name : XXXXX + Vendor OUI : XX-XX-XX + Vendor PN : 1111111111 + Vendor Rev : + Vendor SN : 111111111 + ChannelMonitorValues: + RX1Power: -1.1936dBm + RX2Power: -1.1793dBm + RX3Power: -0.9388dBm + RX4Power: -1.0729dBm + TX1Bias: 4.0140mA + TX2Bias: 4.0140mA + TX3Bias: 4.0140mA + TX4Bias: 4.0140mA + ModuleMonitorValues : + Temperature : 1.1111C + Vcc : 0.0000Volts + ``` + +- Example (Decode and display information stored on the EEPROM of SFP transceiver connected to Ethernet16): + ``` + admin@sonic:~$ show interfaces transceiver info Ethernet16 + Ethernet16: SFP EEPROM detected + Active Firmware: 61.20 + Active application selected code assigned to host lane 1: 1 + Active application selected code assigned to host lane 2: 1 + Active application selected code assigned to host lane 3: 1 + Active application selected code assigned to host lane 4: 1 + Active application selected code assigned to host lane 5: 1 + Active application selected code assigned to host lane 6: 1 + Active application selected code assigned to host lane 7: 1 + Active application selected code assigned to host lane 8: 1 + Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, DWDM, amplified - Media Assign (0x1) + 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, Single Wavelength, Unamplified - Media Assign (0x1) + 100GAUI-2 C2M (Annex 135G) - Host Assign (0x55) - 400ZR, DWDM, amplified - Media Assign (0x1) + CMIS Rev: 4.1 + Connector: LC + Encoding: N/A + Extended Identifier: Power Class 8 (20.0W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 8 + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Inactive Firmware: 61.20 + Length Cable Assembly(m): 0.0 + Media Interface Technology: 1550 nm DFB + Media Lane Count: 1 + Module Hardware Rev: 49.49 + Nominal Bit Rate(100Mbs): 0 + Specification Compliance: sm_media_interface + Supported Max Laser Frequency: 196100 + Supported Max TX Power: 4.0 + Supported Min Laser Frequency: 191300 + Supported Min TX Power: -22.9 + Vendor Date Code(YYYY-MM-DD Lot): 2020-21-02 17 + Vendor Name: Acacia Comm Inc. + Vendor OUI: 7c-b2-5c + Vendor PN: DP04QSDD-E20-00E + Vendor Rev: 01 + Vendor SN: 210753986 + ``` + +- Example (Display status of low-power mode of SFP transceiver connected to Ethernet100): + ``` + admin@sonic:~$ show interfaces transceiver lpmode Ethernet100 + Port Low-power Mode + ----------- ---------------- + Ethernet100 On + ``` + + +- Example (Display presence of SFP transceiver connected to Ethernet100): + ``` + admin@sonic:~$ show interfaces transceiver presence Ethernet100 + Port Presence + ----------- ---------- + Ethernet100 Present + ``` + +- Example (Display error status of SFP transceiver connected to Ethernet100): + ``` + admin@sonic:~$ show interfaces transceiver error-status Ethernet100 + Port Error Status + ----------- -------------- + Ethernet100 OK + ``` + + - Example (Display performance monitoring info of SFP transceiver connected to Ethernet100): + + ``` + admin@sonic:~$ show interfaces transceiver pm Ethernet100 + Ethernet100: + Parameter Unit Min Avg Max Threshold Threshold Threshold Threshold Threshold Threshold + High High Crossing Low Low Crossing + Alarm Warning Alert-High Alarm Warning Alert-Low + --------------- ------ -------- -------- -------- ----------- ----------- ------------ ----------- ----------- ----------- + Tx Power dBm -8.22 -8.23 -8.24 -5.0 -6.0 False -16.99 -16.003 False + Rx Total Power dBm -10.61 -10.62 -10.62 2.0 0.0 False -21.0 -18.0 False + Rx Signal Power dBm -40.0 0.0 40.0 13.0 10.0 True -18.0 -15.0 True + CD-short link ps/nm 0.0 0.0 0.0 1000.0 500.0 False -1000.0 -500.0 False + PDL dB 0.5 0.6 0.6 4.0 4.0 False 0.0 0.0 False + OSNR dB 36.5 36.5 36.5 99.0 99.0 False 0.0 0.0 False + eSNR dB 30.5 30.5 30.5 99.0 99.0 False 0.0 0.0 False + CFO MHz 54.0 70.0 121.0 3800.0 3800.0 False -3800.0 -3800.0 False + DGD ps 5.37 5.56 5.81 7.0 7.0 False 0.0 0.0 False + SOPMD ps^2 0.0 0.0 0.0 655.35 655.35 False 0.0 0.0 False + SOP ROC krad/s 1.0 1.0 2.0 N/A N/A N/A N/A N/A N/A + Pre-FEC BER N/A 4.58E-04 4.66E-04 5.76E-04 1.25E-02 1.10E-02 0.0 0.0 0.0 0.0 + Post-FEC BER N/A 0.0 0.0 0.0 1000.0 1.0 False 0.0 0.0 False + EVM % 100.0 100.0 100.0 N/A N/A N/A N/A N/A N/A + + ``` + + - Example (Display status info of SFP transceiver connected to Ethernet100): + ``` + admin@sonic:~$ show interfaces transceiver status Ethernet100 + Ethernet100: + Tx fault flag on media lane 1: False + Tx fault flag on media lane 2: False + Tx fault flag on media lane 3: False + Tx fault flag on media lane 4: False + Tx fault flag on media lane 5: False + Tx fault flag on media lane 6: False + Tx fault flag on media lane 7: False + Tx fault flag on media lane 8: False + Rx loss of signal flag on media lane 1: False + Rx loss of signal flag on media lane 2: False + Rx loss of signal flag on media lane 3: False + Rx loss of signal flag on media lane 4: False + Rx loss of signal flag on media lane 5: False + Rx loss of signal flag on media lane 6: False + Rx loss of signal flag on media lane 7: False + Rx loss of signal flag on media lane 8: False + TX disable status on lane 1: False + TX disable status on lane 2: False + TX disable status on lane 3: False + TX disable status on lane 4: False + TX disable status on lane 5: False + TX disable status on lane 6: False + TX disable status on lane 7: False + TX disable status on lane 8: False + Disabled TX channels: 0 + Current module state: ModuleReady + Reason of entering the module fault state: No Fault detected + Datapath firmware fault: False + Module firmware fault: False + Module state changed: False + Data path state indicator on host lane 1: DataPathActivated + Data path state indicator on host lane 2: DataPathActivated + Data path state indicator on host lane 3: DataPathActivated + Data path state indicator on host lane 4: DataPathActivated + Data path state indicator on host lane 5: DataPathActivated + Data path state indicator on host lane 6: DataPathActivated + Data path state indicator on host lane 7: DataPathActivated + Data path state indicator on host lane 8: DataPathActivated + Tx output status on media lane 1: False + Tx output status on media lane 2: False + Tx output status on media lane 3: False + Tx output status on media lane 4: False + Tx output status on media lane 5: False + Tx output status on media lane 6: False + Tx output status on media lane 7: False + Tx output status on media lane 8: False + Rx output status on host lane 1: True + Rx output status on host lane 2: True + Rx output status on host lane 3: True + Rx output status on host lane 4: True + Rx output status on host lane 5: True + Rx output status on host lane 6: True + Rx output status on host lane 7: True + Rx output status on host lane 8: True + Tx loss of signal flag on host lane 1: False + Tx loss of signal flag on host lane 2: False + Tx loss of signal flag on host lane 3: False + Tx loss of signal flag on host lane 4: False + Tx loss of signal flag on host lane 5: False + Tx loss of signal flag on host lane 6: False + Tx loss of signal flag on host lane 7: False + Tx loss of signal flag on host lane 8: False + Tx clock and data recovery loss of lock on host lane 1: False + Tx clock and data recovery loss of lock on host lane 2: False + Tx clock and data recovery loss of lock on host lane 3: False + Tx clock and data recovery loss of lock on host lane 4: False + Tx clock and data recovery loss of lock on host lane 5: False + Tx clock and data recovery loss of lock on host lane 6: False + Tx clock and data recovery loss of lock on host lane 7: False + Tx clock and data recovery loss of lock on host lane 8: False + Rx clock and data recovery loss of lock on media lane 1: False + Rx clock and data recovery loss of lock on media lane 2: False + Rx clock and data recovery loss of lock on media lane 3: False + Rx clock and data recovery loss of lock on media lane 4: False + Rx clock and data recovery loss of lock on media lane 5: False + Rx clock and data recovery loss of lock on media lane 6: False + Rx clock and data recovery loss of lock on media lane 7: False + Rx clock and data recovery loss of lock on media lane 8: False + Configuration status for the data path of host line 1: ConfigSuccess + Configuration status for the data path of host line 2: ConfigSuccess + Configuration status for the data path of host line 3: ConfigSuccess + Configuration status for the data path of host line 4: ConfigSuccess + Configuration status for the data path of host line 5: ConfigSuccess + Configuration status for the data path of host line 6: ConfigSuccess + Configuration status for the data path of host line 7: ConfigSuccess + Configuration status for the data path of host line 8: ConfigSuccess + Data path configuration updated on host lane 1: False + Data path configuration updated on host lane 2: False + Data path configuration updated on host lane 3: False + Data path configuration updated on host lane 4: False + Data path configuration updated on host lane 5: False + Data path configuration updated on host lane 6: False + Data path configuration updated on host lane 7: False + Data path configuration updated on host lane 8: False + Temperature high alarm flag: False + Temperature high warning flag: False + Temperature low warning flag: False + Temperature low alarm flag: False + Vcc high alarm flag: False + Vcc high warning flag: False + Vcc low warning flag: False + Vcc low alarm flag: False + Tx power high alarm flag on lane 1: False + Tx power high alarm flag on lane 2: False + Tx power high alarm flag on lane 3: False + Tx power high alarm flag on lane 4: False + Tx power high alarm flag on lane 5: False + Tx power high alarm flag on lane 6: False + Tx power high alarm flag on lane 7: False + Tx power high alarm flag on lane 8: False + Tx power high warning flag on lane 1: False + Tx power high warning flag on lane 2: False + Tx power high warning flag on lane 3: False + Tx power high warning flag on lane 4: False + Tx power high warning flag on lane 5: False + Tx power high warning flag on lane 6: False + Tx power high warning flag on lane 7: False + Tx power high warning flag on lane 8: False + Tx power low warning flag on lane 1: False + Tx power low warning flag on lane 2: False + Tx power low warning flag on lane 3: False + Tx power low warning flag on lane 4: False + Tx power low warning flag on lane 5: False + Tx power low warning flag on lane 6: False + Tx power low warning flag on lane 7: False + Tx power low warning flag on lane 8: False + Tx power low alarm flag on lane 1: False + Tx power low alarm flag on lane 2: False + Tx power low alarm flag on lane 3: False + Tx power low alarm flag on lane 4: False + Tx power low alarm flag on lane 5: False + Tx power low alarm flag on lane 6: False + Tx power low alarm flag on lane 7: False + Tx power low alarm flag on lane 8: False + Rx power high alarm flag on lane 1: False + Rx power high alarm flag on lane 2: False + Rx power high alarm flag on lane 3: False + Rx power high alarm flag on lane 4: False + Rx power high alarm flag on lane 5: False + Rx power high alarm flag on lane 6: False + Rx power high alarm flag on lane 7: False + Rx power high alarm flag on lane 8: False + Rx power high warning flag on lane 1: False + Rx power high warning flag on lane 2: False + Rx power high warning flag on lane 3: False + Rx power high warning flag on lane 4: False + Rx power high warning flag on lane 5: False + Rx power high warning flag on lane 6: False + Rx power high warning flag on lane 7: False + Rx power high warning flag on lane 8: False + Rx power low warning flag on lane 1: False + Rx power low warning flag on lane 2: False + Rx power low warning flag on lane 3: False + Rx power low warning flag on lane 4: False + Rx power low warning flag on lane 5: False + Rx power low warning flag on lane 6: False + Rx power low warning flag on lane 7: False + Rx power low warning flag on lane 8: False + Rx power low alarm flag on lane 1: False + Rx power low alarm flag on lane 2: False + Rx power low alarm flag on lane 3: False + Rx power low alarm flag on lane 4: False + Rx power low alarm flag on lane 5: False + Rx power low alarm flag on lane 6: False + Rx power low alarm flag on lane 7: False + Rx power low alarm flag on lane 8: False + Tx bias high alarm flag on lane 1: False + Tx bias high alarm flag on lane 2: False + Tx bias high alarm flag on lane 3: False + Tx bias high alarm flag on lane 4: False + Tx bias high alarm flag on lane 5: False + Tx bias high alarm flag on lane 6: False + Tx bias high alarm flag on lane 7: False + Tx bias high alarm flag on lane 8: False + Tx bias high warning flag on lane 1: False + Tx bias high warning flag on lane 2: False + Tx bias high warning flag on lane 3: False + Tx bias high warning flag on lane 4: False + Tx bias high warning flag on lane 5: False + Tx bias high warning flag on lane 6: False + Tx bias high warning flag on lane 7: False + Tx bias high warning flag on lane 8: False + Tx bias low warning flag on lane 1: False + Tx bias low warning flag on lane 2: False + Tx bias low warning flag on lane 3: False + Tx bias low warning flag on lane 4: False + Tx bias low warning flag on lane 5: False + Tx bias low warning flag on lane 6: False + Tx bias low warning flag on lane 7: False + Tx bias low warning flag on lane 8: False + Tx bias low alarm flag on lane 1: False + Tx bias low alarm flag on lane 2: False + Tx bias low alarm flag on lane 3: False + Tx bias low alarm flag on lane 4: False + Tx bias low alarm flag on lane 5: False + Tx bias low alarm flag on lane 6: False + Tx bias low alarm flag on lane 7: False + Tx bias low alarm flag on lane 8: False + Laser temperature high alarm flag: False + Laser temperature high warning flag: False + Laser temperature low warning flag: False + Laser temperature low alarm flag: False + Prefec ber high alarm flag: False + Prefec ber high warning flag: False + Prefec ber low warning flag: False + Prefec ber low alarm flag: False + Postfec ber high alarm flag: False + Postfec ber high warning flag: False + Postfec ber low warning flag: False + Postfec ber low alarm flag: False + Tuning in progress status: False + Laser unlocked status: False + Target output power out of range flag: False + Fine tuning out of range flag: False + Tuning not accepted flag: False + Invalid channel number flag: False + Tuning complete flag: False + Bias xi high alarm flag: False + Bias xi high warning flag: False + Bias xi low warning flag: False + Bias xi low alarm flag: False + Bias xq high alarm flag: False + Bias xq high warning flag: False + Bias xq low warning flag: False + Bias xq low alarm flag: False + Bias xp high alarm flag: False + Bias xp high warning flag: False + Bias xp low warning flag: False + Bias xp low alarm flag: False + Bias yi high alarm flag: False + Bias yi high warning flag: False + Bias yi low warning flag: False + Bias yi low alarm flag: False + Bias yq high alarm flag: False + Bias yq high warning flag: False + Bias yq low warning flag: False + Bias yq low alarm flag: False + Bias yp high alarm flag: False + Bias yp high warning flag: False + Bias yp low warning flag: False + Bias yp low alarm flag: False + CD short high alarm flag: False + CD short high warning flag: False + CD short low warning flag: False + CD short low alarm flag: False + CD long high alarm flag: False + CD long high warning flag: False + CD long low warning flag: False + CD long low alarm flag: False + DGD high alarm flag: False + DGD high warning flag: False + DGD low warning flag: False + DGD low alarm flag: False + PDL high alarm flag: False + PDL high warning flag: False + PDL low warning flag: False + PDL low alarm flag: False + OSNR high alarm flag: False + OSNR high warning flag: False + OSNR low warning flag: False + OSNR low alarm flag: False + ESNR high alarm flag: False + ESNR high warning flag: False + ESNR low warning flag: False + ESNR low alarm flag: False + CFO high alarm flag: False + CFO high warning flag: False + CFO low warning flag: False + CFO low alarm flag: False + Txcurrpower high alarm flag: False + Txcurrpower high warning flag: False + Txcurrpower low warning flag: False + Txcurrpower low alarm flag: False + Rxtotpower high alarm flag: False + Rxtotpower high warning flag: False + Rxtotpower low warning flag: False + Rxtotpower low alarm flag: False + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-show-commands) + +## AAA & TACACS+ +This section captures the various show commands & configuration commands that are applicable for the AAA (Authentication, Authorization, and Accounting) module. +Admins can configure the type of authentication (local or remote tacacs based) required for the users and also the authentication failthrough and fallback options. +Following show command displays the current running configuration related to the AAA. + +### AAA + +#### AAA show commands + +This command is used to view the Authentication, Authorization & Accounting settings that are configured in the network node. + +**show aaa** + +This command displays the AAA settings currently present in the network node + +- Usage: + ``` + show aaa + ``` + +- Example: + ``` + admin@sonic:~$ show aaa + AAA authentication login local (default) + AAA authentication failthrough True (default) + AAA authentication fallback True (default) + ``` + +#### AAA config commands + +This sub-section explains all the possible CLI based configuration options for the AAA module. The list of commands/sub-commands possible for aaa is given below. + + Command: aaa authentication + sub-commands: + - aaa authentication failthrough + - aaa authentication fallback + - aaa authentication login + +**aaa authentication failthrough** + +This command is used to either enable or disable the failthrough option. +This command is useful when user has configured more than one tacacs+ server and when user has enabled tacacs+ authentication. +When authentication request to the first server fails, this configuration allows to continue the request to the next server. +When this configuration is enabled, authentication process continues through all servers configured. +When this is disabled and if the authentication request fails on first server, authentication process will stop and the login will be disallowed. + + +- Usage: + ``` + config aaa authentication failthrough (enable | disable | default) + ``` + + - Parameters: + - enable: This allows the AAA module to process with local authentication if remote authentication fails. + - disable: This disallows the AAA module to proceed further if remote authentication fails. + - default: This re-configures the default value, which is "enable". + + +- Example: + ``` + admin@sonic:~$ sudo config aaa authentication failthrough enable + ``` +**aaa authentication fallback** + +The command is not used at the moment. +When the tacacs+ authentication fails, it falls back to local authentication by default. + +- Usage: + ``` + config aaa authentication fallback (enable | disable | default) + ``` + +- Example: + ``` + admin@sonic:~$ sudo config aaa authentication fallback enable + ``` + +**aaa authentication login** + +This command is used to either configure whether AAA should use local database or remote tacacs+ database for user authentication. +By default, AAA uses local database for authentication. New users can be added/deleted using the linux commands (Note that the configuration done using linux commands are not preserved during reboot). +Admin can enable remote tacacs+ server based authentication by selecting the AUTH_PROTOCOL as tacacs+ in this command. +Admins need to configure the tacacs+ server accordingly and ensure that the connectivity to tacacas+ server is available via the management interface. +Once if the admins choose the remote authentication based on tacacs+ server, all user logins will be authenticated by the tacacs+ server. +If the authentication fails, AAA will check the "failthrough" configuration and authenticates the user based on local database if failthrough is enabled. + +- Usage: + ``` + config aaa authentication (tacacs+ | local | default) + ``` + + - Parameters: + - tacacs+: Enables remote authentication based on tacacs+ + - local: Disables remote authentication and uses local authentication + - default: Reset back to default value, which is only "local" authentication + + +- Example: + ``` + admin@sonic:~$ sudo config aaa authentication login tacacs+ + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#aaa--tacacs) + +### TACACS+ + +#### TACACS+ show commands + +**show tacacs** + +This command displays the global configuration fields and the list of all tacacs servers and their correponding configurations. + +- Usage: + ``` + show tacacs + ``` + +- Example: + ``` + admin@sonic:~$ show tacacs + TACPLUS global auth_type pap (default) + TACPLUS global timeout 99 + TACPLUS global passkey (default) + + TACPLUS_SERVER address 10.11.12.14 + priority 9 + tcp_port 50 + auth_type mschap + timeout 10 + passkey testing789 + + TACPLUS_SERVER address 10.0.0.9 + priority 1 + tcp_port 49 + ``` + +#### TACACS+ config commands + +This sub-section explains the command "config tacacs" and its sub-commands that are used to configure the following tacacs+ parameters. +Some of the parameters like authtype, passkey and timeout can be either configured at per server level or at global level (global value will be applied if there no server level configuration) + +1) Add/Delete the tacacs+ server details. +2) authtype - global configuration that is applied to all servers if there is no server specific configuration. +3) default - reset the authtype or passkey or timeout to the default values. +4) passkey - global configuration that is applied to all servers if there is no server specific configuration. +5) timeout - global configuration that is applied to all servers if there is no server specific configuration. + +**config tacacs add** + +This command is used to add a TACACS+ server to the tacacs server list. +Note that more than one tacacs+ (maximum of seven) can be added in the device. +When user tries to login, tacacs client shall contact the servers one by one. +When any server times out, device will try the next server one by one based on the priority value configured for that server. +When this command is executed, the configured tacacs+ server addresses are updated in /etc/pam.d/common-auth-sonic configuration file which is being used by tacacs service. + +- Usage: + ``` + config tacacs add [-t|--timeout ] [-k|--key ] [-a|--type ] [-o|--port ] [-p|--pri ] [-m|--use-mgmt-vrf] + ``` + + - Parameters: + - ip_address: TACACS+ server IP address. + - timeout: Transmission timeout interval in seconds, range 1 to 60, default 5 + - key: Shared secret + - type: Authentication type, "chap" or "pap" or "mschap" or "login", default is "pap". + - port: TCP port range is 1 to 65535, default 49 + - pri: Priority, priority range 1 to 64, default 1. + - use-mgmt-vrf: This means that the server is part of Management vrf, default is "no vrf" + + +- Example: + ``` + admin@sonic:~$ sudo config tacacs add 10.11.12.13 -t 10 -k testing789 -a mschap -o 50 -p 9 + ``` + + - Example Server Configuration in /etc/pam.d/common-auth-sonic configuration file: + ``` + auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.11.12.14:50 secret=testing789 login=mschap timeout=10 try_first_pass + auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.11.12.24:50 secret=testing789 login=mschap timeout=987654321098765433211 + 0987 try_first_pass + auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.0.0.9:49 secret= login=mschap timeout=5 try_first_pass + auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.0.0.8:49 secret= login=mschap timeout=5 try_first_pass + auth [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server=10.11.12.13:50 secret=testing789 login=mschap timeout=10 try_first_pass + auth [success=1 default=ignore] pam_unix.so nullok try_first_pass + ``` + + *NOTE: In the above example, the servers are stored (sorted) based on the priority value configured for the server.* + +**config tacacs delete** + +This command is used to delete the tacacs+ servers configured. + +- Usage: + ``` + config tacacs delete + ``` + +- Example: + ``` + admin@sonic:~$ sudo config tacacs delete 10.11.12.13 + ``` + +**config tacacs authtype** + +This command is used to modify the global value for the TACACS+ authtype. +When user has not configured server specific authtype, this global value shall be used for that server. + +- Usage: + ``` + config tacacs authtype (chap | pap | mschap | login) + ``` + +- Example: + ``` + admin@sonic:~$ sudo config tacacs authtype mschap + ``` + +**config tacacs default** + +This command is used to reset the global value for authtype or passkey or timeout to default value. +Default for authtype is "pap", default for passkey is EMPTY_STRING and default for timeout is 5 seconds. + +- Usage: + ``` + config tacacs default (authtype | passkey | timeout) + ``` + +- Example (This will reset the global authtype back to the default value "pap"): + ``` + admin@sonic:~$ sudo config tacacs default authtype + ``` + +**config tacacs passkey** + +This command is used to modify the global value for the TACACS+ passkey. +When user has not configured server specific passkey, this global value shall be used for that server. + +- Usage: + ``` + config tacacs passkey + ``` + +- Example: + ``` + admin@sonic:~$ sudo config tacacs passkey testing123 + ``` + +**config tacacs timeout** + +This command is used to modify the global value for the TACACS+ timeout. +When user has not configured server specific timeout, this global value shall be used for that server. + + +- Usage: + ``` + config tacacs [default] timeout [] + ``` + + - Options: + - Valid values for timeout is 1 to 60 seconds. + - When the optional keyword "default" is specified, timeout_value_in_seconds parameter wont be used; default value of 5 is used. + - Configuration using the keyword "default" is introduced in 201904 release. + +- Example: To configure non-default timeout value + ``` + admin@sonic:~$ sudo config tacacs timeout 60 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#aaa--tacacs) + + + +## ACL + +This section explains the various show commands and configuration commands available for users. + +### ACL show commands + +**show acl table** + +This command displays either all the ACL tables that are configured or only the specified "TABLE_NAME". +Output from the command displays the table name, type of the table, the list of interface(s) to which the table is bound and the description about the table. + +- Usage: + ``` + show acl table [] + ``` + +- Example: + ``` + admin@sonic:~$ show acl table + Name Type Binding Description Stage + -------- --------- --------------- ---------------- ------- + EVERFLOW MIRROR Ethernet16 EVERFLOW ingress + Ethernet96 + Ethernet108 + Ethernet112 + PortChannel0001 + PortChannel0002 + SNMP_ACL CTRLPLANE SNMP SNMP_ACL ingress + DT_ACL_T1 L3 Ethernet0 DATA_ACL_TABLE_1 egress + Ethernet4 + Ethernet112 + Ethernet116 + SSH_ONLY CTRLPLANE SSH SSH_ONLY ingress + ``` + +**show acl rule** + +This command displays all the ACL rules present in all the ACL tables or only the rules present in specified table "TABLE_NAME" or only the rule matching the RULE_ID option. +Output from the command gives the following information about the rules +1) Table name - ACL table name to which the rule belongs to. +2) Rule name - ACL rule name +3) Priority - Priority for this rule. +4) Action - Action to be performed if the packet matches with this ACL rule. + +It can be: +- "DROP"/"FORWARD"("ACCEPT" for control plane ACL) +- "REDIRECT: redirect-object" for redirect rule, where "redirect-object" is either: + - physical interface name, e.g. "Ethernet10" + - port channel name, e.g. "PortChannel0002" + - next-hop IP address, e.g. "10.0.0.1" + - next-hop group set of IP addresses with comma seperator, e.g. "10.0.0.1,10.0.0.3" +- "MIRROR INGRESS|EGRESS: session-name" for mirror rules, where "session-name" refers to mirror session + +Users can choose to have a default permit rule or default deny rule. In case of default "deny all" rule, add the permitted rules on top of the deny rule. In case of the default "permit all" rule, users can add the deny rules on top of it. If users have not confgured any rule, SONiC allows all traffic (which is "permit all"). + +5) Match - The fields from the packet header that need to be matched against the same present in the incoming traffic. + +- Usage: + ``` + show acl rule [] [] + ``` + +- Example: + ``` + admin@sonic:~$ show acl rule + Table Rule Priority Action Match + -------- ------------ ---------- ------------------------- ---------------------------- + SNMP_ACL RULE_1 9999 ACCEPT IP_PROTOCOL: 17 + SRC_IP: 1.1.1.1/32 + SSH_ONLY RULE_2 9998 ACCEPT IP_PROTOCOL: 6 + SRC_IP: 1.1.1.1/32 + EVERFLOW RULE_3 9997 MIRROR INGRESS: everflow0 SRC_IP: 20.0.0.2/32 + EVERFLOW RULE_4 9996 MIRROR EGRESS : everflow1 L4_SRC_PORT: 4621 + DATAACL RULE_5 9995 REDIRECT: Ethernet8 IP_PROTOCOL: 126 + DATAACL RULE_6 9994 FORWARD L4_SRC_PORT: 179 + DATAACL RULE_7 9993 FORWARD L4_DST_PORT: 179 + SNMP_ACL DEFAULT_RULE 1 DROP ETHER_TYPE: 2048 + SSH_ONLY DEFAULT_RULE 1 DROP ETHER_TYPE: 2048 + ``` + + +### ACL config commands +This sub-section explains the list of configuration options available for ACL module. +Note that there is no direct command to add or delete or modify the ACL table and ACL rule. +Existing ACL tables and ACL rules can be updated by specifying the ACL rules in json file formats and configure those files using this CLI command. + +**config acl update full** + +This command is to update the rules in all the tables or in one specific table in full. If a table_name is provided, the operation will be restricted in the specified table. All existing rules in the specified table or all tables will be removed. New rules loaded from file will be installed. If the table_name is specified, only rules within that table will be removed and new rules in that table will be installed. If the table_name is not specified, all rules from all tables will be removed and only the rules present in the input file will be added. + +The command does not modify anything in the list of acl tables. It modifies only the rules present in those pre-existing tables. + +In order to create acl tables, either follow the config_db.json method or minigraph method to populate the list of ACL tables. + +After creating tables, either the config_db.json method or the minigraph method or the CLI method (explained here) can be used to populate the rules in those ACL tables. + +This command updates only the ACL rules and it does not disturb the ACL tables; i.e. the output of "show acl table" is not alterted by using this command; only the output of "show acl rule" will be changed after this command. + +When "--session_name" optional argument is specified, command sets the session_name for the ACL table with this mirror session name. It fails if the specified mirror session name does not exist. + +When "--mirror_stage" optional argument is specified, command sets the mirror action to ingress/egress based on this parameter. By default command sets ingress mirror action in case argument is not specified. + +When the optional argument "max_priority" is specified, each rule’s priority is calculated by subtracting its “sequence_id” value from the “max_priority”. If this value is not passed, the default “max_priority” 10000 is used. + +- Usage: + ``` + config acl update full [--table_name ] [--session_name ] [--mirror_stage (ingress | egress)] [--max_priority ] + ``` + + - Parameters: + - table_name: Specifiy the name of the ACL table to load. Example: config acl update full "--table_name DT_ACL_T1 /etc/sonic/acl_table_1.json" + - session_name: Specifiy the name of the ACL session to load. Example: config acl update full "--session_name mirror_ses1 /etc/sonic/acl_table_1.json" + - priority_value: Specify the maximum priority to use when loading ACL rules. Example: config acl update full "--max-priority 100 /etc/sonic/acl_table_1.json" + + *NOTE 1: All these optional parameters should be inside double quotes. If none of the options are provided, double quotes are not required for specifying filename alone.* + *NOTE 2: Any number of optional parameters can be configured in the same command.* + +- Examples: + ``` + admin@sonic:~$ sudo config acl update full /etc/sonic/acl_full_snmp_1_2_ssh_4.json + admin@sonic:~$ sudo config acl update full "--table_name SNMP-ACL /etc/sonic/acl_full_snmp_1_2_ssh_4.json" + admin@sonic:~$ sudo config acl update full "--session_name everflow0 /etc/sonic/acl_full_snmp_1_2_ssh_4.json" + ``` + + This command will remove all rules from all the ACL tables and insert all the rules present in this input file. + Refer the example file [acl_full_snmp_1_2_ssh_4.json](#) that adds two rules for SNMP (Rule1 and Rule2) and one rule for SSH (Rule4) + Refer an example for input file format [here](https://github.com/Azure/sonic-mgmt/blob/master/ansible/roles/test/files/helpers/config_service_acls.sh) + Refer another example [here](https://github.com/Azure/sonic-mgmt/blob/master/ansible/roles/test/tasks/acl/acltb_test_rules_part_1.json) + +**config acl update incremental** + +This command is used to perform incremental update of ACL rule table. This command gets existing rules from Config DB and compares with rules specified in input file and performs corresponding modifications. + +With respect to DATA ACLs, the command does not assume that new dataplane ACLs can be inserted in betweeen by shifting existing ACLs in all ASICs. Therefore, this command performs a full update on dataplane ACLs. +With respect to control plane ACLs, this command performs an incremental update. +If we assume that "file1.json" is the already loaded ACL rules file and if "file2.json" is the input file that is passed as parameter for this command, the following requirements are valid for the input file. +1) First copy the file1.json to file2.json. +2) Remove the unwanted ACL rules from file2.json +3) Add the newly required ACL rules into file2.json. +4) Modify the existing ACL rules (that require changes) in file2.json. + +NOTE: If any ACL rule that is already available in file1.json is required even after this command execution, such rules should remain unalterted in file2.json. Don't remove them. +Note that "incremental" is working like "full". + +When "--session_name" optional argument is specified, command sets the session_name for the ACL table with this mirror session name. It fails if the specified mirror session name does not exist. + +When "--mirror_stage" optional argument is specified, command sets the mirror action to ingress/egress based on this parameter. By default command sets ingress mirror action in case argument is not specified. + +When the optional argument "max_priority" is specified, each rule’s priority is calculated by subtracting its “sequence_id” value from the “max_priority”. If this value is not passed, the default “max_priority” 10000 is used. + +- Usage: + ``` + config acl update incremental [--session_name ] [--mirror_stage (ingress | egress)] [--max_priority ] + ``` + + - Parameters: + - table_name: Specifiy the name of the ACL table to load. Example: config acl update full "--table_name DT_ACL_T1 /etc/sonic/acl_table_1.json" + - session_name: Specifiy the name of the ACL session to load. Example: config acl update full "--session_name mirror_ses1 /etc/sonic/acl_table_1.json" + - priority_value: Specify the maximum priority to use when loading ACL rules. Example: config acl update full "--max-priority 100 /etc/sonic/acl_table_1.json" + + *NOTE 1: All these optional parameters should be inside double quotes. If none of the options are provided, double quotes are not required for specifying filename alone.* + *NOTE 2: Any number of optional parameters can be configured in the same command.* + +- Examples: + ``` + admin@sonic:~$ sudo config acl update incremental /etc/sonic/acl_incremental_snmp_1_3_ssh_4.json + ``` + ``` + admin@sonic:~$ sudo config acl update incremental "--session_name everflow0 /etc/sonic/acl_incremental_snmp_1_3_ssh_4.json" + ``` + + Refer the example file [acl_incremental_snmp_1_3_ssh_4.json](#) that adds two rules for SNMP (Rule1 and Rule3) and one rule for SSH (Rule4) + When this "incremental" command is executed after "full" command, it has removed SNMP Rule2 and added SNMP Rule3 in the example. + File "acl_full_snmp_1_2_ssh_4.json" has got SNMP Rule1, SNMP Rule2 and SSH Rule4. + File "acl_incremental_snmp_1_3_ssh_4.json" has got SNMP Rule1, SNMP Rule3 and SSH Rule4. + This file is created by copying the file "acl_full_snmp_1_2_ssh_4.json" to "acl_incremental_snmp_1_3_ssh_4.json" and then removing SNMP Rule2 and adding SNMP Rule3. + +Go Back To [Beginning of the document](#) or [Beginning of this section](#acl) + +**config acl add table** + +This command is used to create new ACL tables. + +- Usage: + ``` + config acl add table [OPTIONS] [-d ] [-p ] [-s (ingress | egress)] + ``` + +- Parameters: + - table_name: The name of the ACL table to create. + - table_type: The type of ACL table to create (e.g. "L3", "L3V6", "MIRROR") + - description: A description of the table for the user. (default is the table_name) + - ports: A comma-separated list of ports/interfaces to add to the table. The behavior is as follows: + - Physical ports will be bound as physical ports + - Portchannels will be bound as portchannels - passing a portchannel member is invalid + - VLANs will be expanded into their members (e.g. "Vlan1000" will become "Ethernet0,Ethernet2,Ethernet4...") + - stage: The stage this ACL table will be applied to, either ingress or egress. (default is ingress) + +- Examples: + ``` + admin@sonic:~$ sudo config acl add table EXAMPLE L3 -p Ethernet0,Ethernet4 -s ingress + ``` + ``` + admin@sonic:~$ sudo config acl add table EXAMPLE_2 L3V6 -p Vlan1000,PortChannel0001,Ethernet128 -s egress + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#acl) + + +## ARP & NDP + +### ARP show commands + +**show arp** + +This command displays the ARP entries in the device with following options. +1) Display the entire table. +2) Display the ARP entries learnt on a specific interface. +3) Display the ARP of a specific ip-address. + +- Usage: + ``` + show arp [-if ] [] + ``` + +- Details: + - show arp: Displays all entries + - show arp -if : Displays the ARP specific to the specified interface. + - show arp : Displays the ARP specific to the specicied ip-address. + + +- Example: + ``` + admin@sonic:~$ show arp + Address MacAddress Iface Vlan + ------------- ----------------- ------- ------ + 192.168.1.183 88:5a:92:fb:bf:41 Ethernet44 - + 192.168.1.175 88:5a:92:fc:95:81 Ethernet28 - + 192.168.1.181 e4:c7:22:c1:07:7c Ethernet40 - + 192.168.1.179 88:5a:92:de:a8:bc Ethernet36 - + 192.168.1.118 00:1c:73:3c:de:43 Ethernet64 - + 192.168.1.11 00:1c:73:3c:e1:38 Ethernet88 - + 192.168.1.161 24:e9:b3:71:3a:01 Ethernet0 - + 192.168.1.189 24:e9:b3:9d:57:41 Ethernet56 - + 192.168.1.187 74:26:ac:8b:8f:c1 Ethernet52 - + 192.168.1.165 88:5a:92:de:a0:7c Ethernet8 - + + Total number of entries 10 + ``` + +Optionally, you can specify the interface in order to display the ARPs learnt on that particular interface + +- Example: + ``` + admin@sonic:~$ show arp -if Ethernet40 + Address MacAddress Iface Vlan + ------------- ----------------- ---------- ------ + 192.168.1.181 e4:c7:22:c1:07:7c Ethernet40 - + Total number of entries 1 + ``` + +Optionally, you can specify an IP address in order to display only that particular entry + +- Example: + ``` + admin@sonic:~$ show arp 192.168.1.181 + Address MacAddress Iface Vlan + ------------- ----------------- ---------- ------ + 192.168.1.181 e4:c7:22:c1:07:7c Ethernet40 - + Total number of entries 1 + ``` + +### NDP show commands + +**show ndp** + +This command displays either all the IPv6 neighbor mac addresses, or for a particular IPv6 neighbor, or for all IPv6 neighbors reachable via a specific interface. + +- Usage: + ``` + show ndp [-if|--iface ] + ``` + +- Example (show all IPv6 neighbors): + ``` + admin@sonic:~$ show ndp + Address MacAddress Iface Vlan Status + ------------------------ ----------------- ------- ------ --------- + fe80::20c:29ff:feb8:b11e 00:0c:29:b8:b1:1e eth0 - REACHABLE + fe80::20c:29ff:feb8:cff0 00:0c:29:b8:cf:f0 eth0 - REACHABLE + fe80::20c:29ff:fef9:324 00:0c:29:f9:03:24 eth0 - REACHABLE + Total number of entries 3 + ``` + +- Example (show specific IPv6 neighbor): + ``` + admin@sonic:~$ show ndp fe80::20c:29ff:feb8:b11e + Address MacAddress Iface Vlan Status + ------------------------ ----------------- ------- ------ --------- + fe80::20c:29ff:feb8:b11e 00:0c:29:b8:b1:1e eth0 - REACHABLE + Total number of entries 1 + ``` + +- Example (show IPv6 neighbors learned on a specific interface): + ``` + admin@sonic:~$ show ndp -if eth0 + Address MacAddress Iface Vlan Status + ------------------------ ----------------- ------- ------ --------- + fe80::20c:29ff:feb8:b11e 00:0c:29:b8:b1:1e eth0 - REACHABLE + fe80::20c:29ff:feb8:cff0 00:0c:29:b8:cf:f0 eth0 - REACHABLE + fe80::20c:29ff:fef9:324 00:0c:29:f9:03:24 eth0 - REACHABLE + Total number of entries 3 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#arp--ndp) + +## BFD + +### BFD show commands + +**show bfd summary** + +This command displays the state and key parameters of all BFD sessions. + +- Usage: + ``` + show bgp summary + ``` +- Example: + ``` + >> show bfd summary + Total number of BFD sessions: 3 + Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop + ----------- ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- + 10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true + 10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false + 2000::10:1 default default UP async_active 2000::1 100 700 3 false + ``` + +**show bfd peer** + +This command displays the state and key parameters of all BFD sessions that match an IP address. + +- Usage: + ``` + show bgp peer + ``` +- Example: + ``` + >> show bfd peer 10.0.1.1 + Total number of BFD sessions for peer IP 10.0.1.1: 1 + Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop + ----------- ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- + 10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true + ``` + +## BGP + +This section explains all the BGP show commands and BGP configuation commands in both "Quagga" and "FRR" routing software that are supported in SONiC. +In 201811 and older verisons "Quagga" was enabled by default. In current version "FRR" is enabled by default. +Most of the FRR show commands start with "show bgp". Similar commands in Quagga starts with "show ip bgp". All sub-options supported in all these show commands are common for FRR and Quagga. +Detailed show commands examples for Quagga are provided at the end of this document.This section captures only the commands supported by FRR. + +### BGP show commands + + +**show bgp summary (Versions >= 201904 using default FRR routing stack)** + +**show ip bgp summary (Versions <= 201811 using Quagga routing stack)** + +This command displays the summary of all IPv4 & IPv6 bgp neighbors that are configured and the corresponding states. + +- Usage: + + *Versions >= 201904 using default FRR routing stack* + ``` + show bgp summary + ``` + *Versions <= 201811 using Quagga routing stack* + ``` + show ip bgp summary + ``` + +- Example: + ``` + admin@sonic:~$ show ip bgp summary + + IPv4 Unicast Summary: + BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 + BGP table version 6465 + RIB entries 12807, using 2001 KiB of memory + Peers 4, using 83 KiB of memory + Peer groups 2, using 128 bytes of memory + + Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName + 10.0.0.57 4 64600 3995 4001 0 0 0 00:39:32 6400 Lab-T1-01 + 10.0.0.59 4 64600 3995 3998 0 0 0 00:39:32 6400 Lab-T1-02 + 10.0.0.61 4 64600 3995 4001 0 0 0 00:39:32 6400 Lab-T1-03 + 10.0.0.63 4 64600 3995 3998 0 0 0 00:39:32 6400 NotAvailable + + Total number of neighbors 4 + ``` + +- Example: + ``` + admin@sonic:~$ show bgp summary + + IPv4 Unicast Summary: + BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 + BGP table version 6465 + RIB entries 12807, using 2001 KiB of memory + Peers 4, using 83 KiB of memory + Peer groups 2, using 128 bytes of memory + + Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd + 10.0.0.57 4 64600 3995 4001 0 0 0 00:39:32 6400 + 10.0.0.59 4 64600 3995 3998 0 0 0 00:39:32 6400 + 10.0.0.61 4 64600 3995 4001 0 0 0 00:39:32 6400 + 10.0.0.63 4 64600 3995 3998 0 0 0 00:39:32 6400 + + Total number of neighbors 4 + + IPv6 Unicast Summary: + BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 + BGP table version 12803 + RIB entries 12805, using 2001 KiB of memory + Peers 4, using 83 KiB of memory + Peer groups 2, using 128 bytes of memory + + Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd + fc00::72 4 64600 3995 5208 0 0 0 00:39:30 6400 + fc00::76 4 64600 3994 5208 0 0 0 00:39:30 6400 + fc00::7a 4 64600 3993 5208 0 0 0 00:39:30 6400 + fc00::7e 4 64600 3993 5208 0 0 0 00:39:30 6400 + + Total number of neighbors 4 + ``` + Click [here](#Quagga-BGP-Show-Commands) to see the example for "show ip bgp summary" for Quagga. + + + +**show bgp neighbors (Versions >= 201904 using default FRR routing stack)** + +**show ip bgp neighbors (Versions <= 201811 using Quagga routing stack)** + +This command displays all the details of IPv4 & IPv6 BGP neighbors when no optional argument is specified. + +When the optional argument IPv4_address is specified, it displays the detailed neighbor information about that specific IPv4 neighbor. + +Command has got additional optional arguments to display only the advertised routes, or the received routes, or all routes. + +In order to get details for an IPv6 neigbor, use "show bgp ipv6 neighbor " command. + + +- Usage: + + *Versions >= 201904 using default FRR routing stack* + ``` + show bgp neighbors [ [advertised-routes | received-routes | routes]] + ``` + *Versions <= 201811 using Quagga routing stack* + ``` + show ip bgp neighbors [ [advertised-routes | received-routes | routes]] + ``` + +- Example: + ``` + admin@sonic:~$ show bgp neighbors + BGP neighbor is 10.0.0.57, remote AS 64600, local AS 65100, external link + Description: ARISTA01T1 + BGP version 4, remote router ID 100.1.0.29, local router ID 10.1.0.32 + BGP state = Established, up for 00:42:15 + Last read 00:00:00, Last write 00:00:03 + Hold time is 10, keepalive interval is 3 seconds + Configured hold time is 10, keepalive interval is 3 seconds + Neighbor capabilities: + 4 Byte AS: advertised and received + AddPath: + IPv4 Unicast: RX advertised IPv4 Unicast and received + Route refresh: advertised and received(new) + Address Family IPv4 Unicast: advertised and received + Hostname Capability: advertised (name: sonic-z9264f-9251,domain name: n/a) not received + Graceful Restart Capabilty: advertised and received + Remote Restart timer is 300 seconds + Address families by peer: + none + Graceful restart information: + End-of-RIB send: IPv4 Unicast + End-of-RIB received: IPv4 Unicast + Message statistics: + Inq depth is 0 + Outq depth is 0 + Sent Rcvd + Opens: 2 1 + Notifications: 2 0 + Updates: 3206 3202 + Keepalives: 845 847 + Route Refresh: 0 0 + Capability: 0 0 + Total: 4055 4050 + Minimum time between advertisement runs is 0 seconds + + For address family: IPv4 Unicast + Update group 1, subgroup 1 + Packet Queue length 0 + Inbound soft reconfiguration allowed + Community attribute sent to this neighbor(all) + 6400 accepted prefixes + + Connections established 1; dropped 0 + Last reset 00:42:37, due to NOTIFICATION sent (Cease/Connection collision resolution) + Local host: 10.0.0.56, Local port: 179 + Foreign host: 10.0.0.57, Foreign port: 46419 + Nexthop: 10.0.0.56 + Nexthop global: fc00::71 + Nexthop local: fe80::2204:fff:fe36:9449 + BGP connection: shared network + BGP Connect Retry Timer in Seconds: 120 + Read thread: on Write thread: on + ``` + +Optionally, you can specify an IP address in order to display only that particular neighbor. In this mode, you can optionally specify whether you want to display all routes advertised to the specified neighbor, all routes received from the specified neighbor or all routes (received and accepted) from the specified neighbor. + +- Example: + ``` + admin@sonic:~$ show bgp neighbors 10.0.0.57 + + admin@sonic:~$ show bgp neighbors 10.0.0.57 advertised-routes + + admin@sonic:~$ show bgp neighbors 10.0.0.57 received-routes + + admin@sonic:~$ show bgp neighbors 10.0.0.57 routes + ``` + + Click [here](#Quagga-BGP-Show-Commands) to see the example for "show ip bgp neighbors" for Quagga. + + +**show ip bgp network [[|] [(bestpath | multipath | longer-prefixes | json)]] + +This command displays all the details of IPv4 Border Gateway Protocol (BGP) prefixes. + +- Usage: + + + ``` + show ip bgp network [[|] [(bestpath | multipath | longer-prefixes | json)]] + ``` + +- Example: + + NOTE: The "longer-prefixes" option is only available when a network prefix with a "/" notation is used. + + ``` + admin@sonic:~$ show ip bgp network + + admin@sonic:~$ show ip bgp network 10.1.0.32 bestpath + + admin@sonic:~$ show ip bgp network 10.1.0.32 multipath + + admin@sonic:~$ show ip bgp network 10.1.0.32 json + + admin@sonic:~$ show ip bgp network 10.1.0.32/32 bestpath + + admin@sonic:~$ show ip bgp network 10.1.0.32/32 multipath + + admin@sonic:~$ show ip bgp network 10.1.0.32/32 json + + admin@sonic:~$ show ip bgp network 10.1.0.32/32 longer-prefixes + ``` + +**show bgp ipv6 summary (Versions >= 201904 using default FRR routing stack)** + +**show ipv6 bgp summary (Versions <= 201811 using Quagga routing stack)** + +This command displays the summary of all IPv6 bgp neighbors that are configured and the corresponding states. + +- Usage: + + *Versions >= 201904 using default FRR routing stack* + ``` + show bgp ipv6 summary + ``` + *Versions <= 201811 using Quagga routing stack* + ``` + show ipv6 bgp summary + ``` + +- Example: + ``` + admin@sonic:~$ show bgp ipv6 summary + BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 + BGP table version 12803 + RIB entries 12805, using 2001 KiB of memory + Peers 4, using 83 KiB of memory + Peer groups 2, using 128 bytes of memory + + Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName + fc00::72 4 64600 3995 5208 0 0 0 00:39:30 6400 Lab-T1-01 + fc00::76 4 64600 3994 5208 0 0 0 00:39:30 6400 Lab-T1-02 + fc00::7a 4 64600 3993 5208 0 0 0 00:39:30 6400 Lab-T1-03 + fc00::7e 4 64600 3993 5208 0 0 0 00:39:30 6400 Lab-T1-04 + + Total number of neighbors 4 + ``` + Click [here](#Quagga-BGP-Show-Commands) to see the example for "show ipv6 bgp summary" for Quagga. + + + +**show bgp ipv6 neighbors (Versions >= 201904 using default FRR routing stack)** + +**show ipv6 bgp neighbors (Versions <= 201811 using Quagga routing stack)** + +This command displays all the details of one particular IPv6 Border Gateway Protocol (BGP) neighbor. Option is also available to display only the advertised routes, or the received routes, or all routes. + + +- Usage: + + *Versions >= 201904 using default FRR routing stack* + ``` + show bgp ipv6 neighbors [ [(advertised-routes | received-routes | routes)]] + ``` + *Versions <= 201811 using Quagga routing stack* + ``` + show ipv6 bgp neighbors [ [(advertised-routes | received-routes | routes)]] + ``` + +- Example: + ``` + admin@sonic:~$ show bgp ipv6 neighbors fc00::72 advertised-routes + + admin@sonic:~$ show bgp ipv6 neighbors fc00::72 received-routes + + admin@sonic:~$ show bgp ipv6 neighbors fc00::72 routes + ``` + Click [here](#Quagga-BGP-Show-Commands) to see the example for "show ip bgp summary" for Quagga. + + +**show ipv6 bgp network [[|] [(bestpath | multipath | longer-prefixes | json)]] + +This command displays all the details of IPv6 Border Gateway Protocol (BGP) prefixes. + +- Usage: + + + ``` + show ipv6 bgp network [[|] [(bestpath | multipath | longer-prefixes | json)]] + ``` + +- Example: + + NOTE: The "longer-prefixes" option is only available when a network prefix with a "/" notation is used. + + ``` + admin@sonic:~$ show ipv6 bgp network + + admin@sonic:~$ show ipv6 bgp network fc00::72 bestpath + + admin@sonic:~$ show ipv6 bgp network fc00::72 multipath + + admin@sonic:~$ show ipv6 bgp network fc00::72 json + + admin@sonic:~$ show ipv6 bgp network fc00::72/64 bestpath + + admin@sonic:~$ show ipv6 bgp network fc00::72/64 multipath + + admin@sonic:~$ show ipv6 bgp network fc00::72/64 json + + admin@sonic:~$ show ipv6 bgp network fc00::72/64 longer-prefixes + ``` + + + + +**show route-map** + +This command displays the routing policy that takes precedence over the other route processes that are configured. + +- Usage: + ``` + show route-map + ``` + +- Example: + ``` + admin@sonic:~$ show route-map + ZEBRA: + route-map RM_SET_SRC, permit, sequence 10 + Match clauses: + Set clauses: + src 10.12.0.102 + Call clause: + Action: + Exit routemap + ZEBRA: + route-map RM_SET_SRC6, permit, sequence 10 + Match clauses: + Set clauses: + src fc00:1::102 + Call clause: + Action: + Exit routemap + BGP: + route-map FROM_BGP_SPEAKER_V4, permit, sequence 10 + Match clauses: + Set clauses: + Call clause: + Action: + Exit routemap + BGP: + route-map TO_BGP_SPEAKER_V4, deny, sequence 10 + Match clauses: + Set clauses: + Call clause: + Action: + Exit routemap + BGP: + route-map ISOLATE, permit, sequence 10 + Match clauses: + Set clauses: + as-path prepend 65000 + Call clause: + Action: + Exit routemap + ``` + + +### BGP config commands + +This sub-section explains the list of configuration options available for BGP module for both IPv4 and IPv6 BGP neighbors. + +**config bgp shutdown all** + +This command is used to shutdown all the BGP IPv4 & IPv6 sessions. +When the session is shutdown using this command, BGP state in "show ip bgp summary" is displayed as "Idle (Admin)" + +- Usage: + ``` + config bgp shutdown all + ``` + +- Example: + ``` + admin@sonic:~$ sudo config bgp shutdown all + ``` + +**config bgp shutdown neighbor** + +This command is to shut down a BGP session with a neighbor by that neighbor's IP address or hostname + +- Usage: + ``` + sudo config bgp shutdown neighbor ( | ) + ``` + +- Examples: + ``` + admin@sonic:~$ sudo config bgp shutdown neighbor 192.168.1.124 + ``` + ``` + admin@sonic:~$ sudo config bgp shutdown neighbor SONIC02SPINE + ``` + + +**config bgp startup all** + +This command is used to start up all the IPv4 & IPv6 BGP neighbors + +- Usage: + ``` + config bgp startup all + ``` + +- Example: + ``` + admin@sonic:~$ sudo config bgp startup all + ``` + + +**config bgp startup neighbor** + +This command is used to start up the particular IPv4 or IPv6 BGP neighbor using either the IP address or hostname. + +- Usage: + ``` + config bgp startup neighbor ( | ) + ``` + +- Examples: + ``` + admin@sonic:~$ sudo config bgp startup neighbor 192.168.1.124 + ``` + ``` + admin@sonic:~$ sudo config bgp startup neighbor SONIC02SPINE + ``` + + +**config bgp remove neighbor** + +This command is used to remove particular IPv4 or IPv6 BGP neighbor configuration using either the IP address or hostname. + +- Usage: + ``` + config bgp remove neighbor + ``` + +- Examples: + ``` + admin@sonic:~$ sudo config bgp remove neighbor 192.168.1.124 + ``` + ``` + admin@sonic:~$ sudo config bgp remove neighbor 2603:10b0:b0f:346::4a + ``` + ``` + admin@sonic:~$ sudo config bgp remove neighbor SONIC02SPINE + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#bgp) + +## Console + +This section explains all Console show commands and configuration options that are supported in SONiC. + +All commands are used only when SONiC is used as console switch. + +All commands under this section are not applicable when SONiC used as regular switch. + +### Console show commands + +**show line** + +This command displays serial port or a virtual network connection status. + +- Usage: + ``` + show line (-b|--breif) + ``` + +- Example: + ``` + admin@sonic:~$ show line + Line Baud Flow Control PID Start Time Device + ------ ------ -------------- ----- ------------ -------- + 1 9600 Enabled - - switch1 + 2 - Disabled - - + 3 - Disabled - - + 4 - Disabled - - + 5 - Disabled - - + ``` + +Optionally, you can display configured console ports only by specifying the `-b` or `--breif` flag. + +- Example: + ``` + admin@sonic:~$ show line -b + Line Baud Flow Control PID Start Time Device + ------ ------ -------------- ----- ------------ -------- + 1 9600 Enabled - - switch1 + ``` + +## Console config commands + +This sub-section explains the list of configuration options available for console management module. + +**config console enable** + +This command is used to enable SONiC console switch feature. + +- Usage: + ``` + config console enable + ``` + +- Example: + ``` + admin@sonic:~$ sudo config console enable + ``` + +**config console disable** + +This command is used to disable SONiC console switch feature. + +- Usage: + ``` + config console disable + ``` + +- Example: + ``` + admin@sonic:~$ sudo config console disable + ``` + +**config console add** + +This command is used to add a console port setting. + +- Usage: + ``` + config console add [--baud|-b ] [--flowcontrol|-f] [--devicename|-d ] + ``` + +- Example: + ``` + admin@sonic:~$ config console add 1 --baud 9600 --devicename switch1 + ``` + +**config console del** + +This command is used to remove a console port setting. + +- Usage: + ``` + config console del + ``` + +- Example: + ``` + admin@sonic:~$ sudo config console del 1 + ``` + +**config console remote_device** + +This command is used to update the remote device name for a console port. + +- Usage: + ``` + config console remote_device + ``` + +- Example: + ``` + admin@sonic:~$ sudo config console remote_device 1 switch1 + ``` + +**config console baud** + +This command is used to update the baud rate for a console port. + +- Usage: + ``` + config console baud + ``` + +- Example: + ``` + admin@sonic:~$ sudo config console baud 1 9600 + ``` + +**config console flow_control** + +This command is used to enable or disable flow control feature for a console port. + +- Usage: + ``` + config console flow_control {enable|disable} + ``` + +- Example: + ``` + admin@sonic:~$ sudo config console flow_control enable 1 + ``` + +### Console connect commands + +**connect line** + +This command allows user to connect to a remote device via console line with an interactive cli. + +- Usage: + ``` + connect line (-d|--devicename) + ``` + +By default, the target is `port_name`. + +- Example: + ``` + admin@sonic:~$ connect line 1 + Successful connection to line 1 + Press ^A ^X to disconnect + ``` + +Optionally, you can connect with a remote device name by specifying the `-d` or `--devicename` flag. + +- Example: + ``` + admin@sonic:~$ connect line --devicename switch1 + Successful connection to line 1 + Press ^A ^X to disconnect + ``` + +**connect device** + +This command allows user to connect to a remote device via console line with an interactive cli. + +- Usage: + ``` + connect device + ``` + +The command is same with `connect line --devicename ` + +- Example: + ``` + admin@sonic:~$ connect line 1 + Successful connection to line 1 + Press ^A ^X to disconnect + ``` + +### Console clear commands + +**sonic-clear line** + +This command allows user to connect to a remote device via console line with an interactive cli. + +- Usage: + ``` + sonc-clear line (-d|--devicename) + ``` + +By default, the target is `port_name`. + +- Example: + ``` + admin@sonic:~$ sonic-clear line 1 + ``` + +Optionally, you can clear with a remote device name by specifying the `-d` or `--devicename` flag. + +- Example: + ``` + admin@sonic:~$ sonic-clear --devicename switch1 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#console) + + +## DHCP Relay + +### DHCP Relay config commands + +This sub-section of commands is used to add or remove the DHCP Relay Destination IP address(es) for a VLAN interface. + +**config vlan dhcp_relay add** + +This command is used to add a DHCP Relay Destination IP address or multiple IP addresses to a VLAN. Note that more than one DHCP Relay Destination IP address can be added on a VLAN interface. + +- Usage: + ``` + config vlan dhcp_relay add + ``` + +- Example: + ``` + admin@sonic:~$ sudo config vlan dhcp_relay add 1000 7.7.7.7 + Added DHCP relay destination address ['7.7.7.7'] to Vlan1000 + Restarting DHCP relay service... + ``` + ``` + admin@sonic:~$ sudo config vlan dhcp_relay add 1000 7.7.7.7 1.1.1.1 + Added DHCP relay destination address ['7.7.7.7', '1.1.1.1'] to Vlan1000 + Restarting DHCP relay service... + ``` + +**config vlan dhcp_relay delete** + +This command is used to delete a configured DHCP Relay Destination IP address or multiple IP addresses from a VLAN interface. + +- Usage: + ``` + config vlan dhcp_relay del + ``` + +- Example: + ``` + admin@sonic:~$ sudo config vlan dhcp_relay del 1000 7.7.7.7 + Removed DHCP relay destination address 7.7.7.7 from Vlan1000 + Restarting DHCP relay service... + ``` + ``` + admin@sonic:~$ sudo config vlan dhcp_relay del 1000 7.7.7.7 1.1.1.1 + Removed DHCP relay destination address ('7.7.7.7', '1.1.1.1') from Vlan1000 + Restarting DHCP relay service... + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#dhcp-relay) + + +## Drop Counters + +This section explains all the Configurable Drop Counters show commands and configuration options that are supported in SONiC. + +### Drop Counters show commands + +**show dropcounters capabilities** + +This command is used to show the drop counter capabilities that are available on this device. It displays the total number of drop counters that can be configured on this device as well as the drop reasons that can be configured for the counters. + +- Usage: + ``` + show dropcounters capabilities + ``` + +- Examples: + ``` + admin@sonic:~$ show dropcounters capabilities + Counter Type Total + -------------------- ------- + PORT_INGRESS_DROPS 3 + SWITCH_EGRESS_DROPS 2 + + PORT_INGRESS_DROPS: + L2_ANY + SMAC_MULTICAST + SMAC_EQUALS_DMAC + INGRESS_VLAN_FILTER + EXCEEDS_L2_MTU + SIP_CLASS_E + SIP_LINK_LOCAL + DIP_LINK_LOCAL + UNRESOLVED_NEXT_HOP + DECAP_ERROR + + SWITCH_EGRESS_DROPS: + L2_ANY + L3_ANY + A_CUSTOM_REASON + ``` + +**show dropcounters configuration** + +This command is used to show the current running configuration of the drop counters on this device. + +- Usage: + ``` + show dropcounters configuration [-g ] + ``` + +- Examples: + ``` + admin@sonic:~$ show dropcounters configuration + Counter Alias Group Type Reasons Description + -------- -------- ----- ------------------ ------------------- -------------- + DEBUG_0 RX_LEGIT LEGIT PORT_INGRESS_DROPS SMAC_EQUALS_DMAC Legitimate port-level RX pipeline drops + INGRESS_VLAN_FILTER + DEBUG_1 TX_LEGIT None SWITCH_EGRESS_DROPS EGRESS_VLAN_FILTER Legitimate switch-level TX pipeline drops + + admin@sonic:~$ show dropcounters configuration -g LEGIT + Counter Alias Group Type Reasons Description + -------- -------- ----- ------------------ ------------------- -------------- + DEBUG_0 RX_LEGIT LEGIT PORT_INGRESS_DROPS SMAC_EQUALS_DMAC Legitimate port-level RX pipeline drops + INGRESS_VLAN_FILTER + ``` + +**show dropcounters counts** + +This command is used to show the current statistics for the configured drop counters. Standard drop counters are displayed as well for convenience. + +Because clear (see below) is handled on a per-user basis different users may see different drop counts. + +- Usage: + ``` + show dropcounters counts [-g ] [-t ] + ``` + +- Example: + ``` + admin@sonic:~$ show dropcounters counts + IFACE STATE RX_ERR RX_DROPS TX_ERR TX_DROPS RX_LEGIT + --------- ------- -------- ---------- -------- ---------- --------- + Ethernet0 U 10 100 0 0 20 + Ethernet4 U 0 1000 0 0 100 + Ethernet8 U 100 10 0 0 0 + + DEVICE TX_LEGIT + ------ -------- + sonic 1000 + + admin@sonic:~$ show dropcounters counts -g LEGIT + IFACE STATE RX_ERR RX_DROPS TX_ERR TX_DROPS RX_LEGIT + --------- ------- -------- ---------- -------- ---------- --------- + Ethernet0 U 10 100 0 0 20 + Ethernet4 U 0 1000 0 0 100 + Ethernet8 U 100 10 0 0 0 + + admin@sonic:~$ show dropcounters counts -t SWITCH_EGRESS_DROPS + DEVICE TX_LEGIT + ------ -------- + sonic 1000 + ``` + +### Drop Counters config commands + +**config dropcounters install** + +This command is used to initialize a new drop counter. The user must specify a name, type, and initial list of drop reasons. + +This command will fail if the given name is already in use, if the type of counter is not supported, or if any of the specified drop reasons are not supported. It will also fail if all avaialble counters are already in use on the device. + +- Usage: + ``` + config dropcounters install [-d ] [-g ] [-a ] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config dropcounters install DEBUG_2 PORT_INGRESS_DROPS [EXCEEDS_L2_MTU,DECAP_ERROR] -d "More port ingress drops" -g BAD -a BAD_DROPS + ``` + +**config dropcounters add_reasons** + +This command is used to add drop reasons to an already initialized counter. + +This command will fail if any of the specified drop reasons are not supported. + +- Usage: + ``` + config dropcounters add_reasons + ``` + +- Example: + ``` + admin@sonic:~$ sudo config dropcounters add_reasons DEBUG_2 [SIP_CLASS_E] + ``` + +**config dropcounters remove_reasons** + +This command is used to remove drop reasons from an already initialized counter. + +- Usage: + ``` + config dropcounters remove_reasons + ``` + +- Example: + ``` + admin@sonic:~$ sudo config dropcounters remove_reasons DEBUG_2 [SIP_CLASS_E] + ``` + +**config dropcounters delete** + +This command is used to delete a drop counter. + +- Usage: + ``` + config dropcounters delete + ``` + +- Example: + ``` + admin@sonic:~$ sudo config dropcounters delete DEBUG_2 + ``` + +### Drop Counters clear commands + +**sonic-clear dropcounters** + +This comnmand is used to clear drop counters. This is done on a per-user basis. + +- Usage: + ``` + sonic-clear dropcounters + ``` + +- Example: + ``` + admin@sonic:~$ sonic-clear dropcounters + Cleared drop counters + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](##drop-counters) + +## Dynamic Buffer Management + +This section explains all the show and configuration commands regarding the dynamic buffer management. + +Dynamic buffer management is responsible for calculating buffer size according to the ports' configured speed and administrative state. In order to enable dynamic buffer management feature, the ports' speed must be configured. For this please refer [Interface naming mode config commands](#interface-naming-mode-config-commands) + +### Configuration commands + +**configure shared headroom pool** + +This command is used to configure the shared headroom pool. The shared headroom pool can be enabled in the following ways: + +- Configure the over subscribe ratio. In this case, the size of shared headroom pool is calculated as the accumulative xoff of all of the lossless PG divided by the over subscribe ratio. +- Configure the size. + +In case both of the above parameters have been configured, the `size` will take effect. To disable shared headroom pool, configure both parameters to zero. + +- Usage: + + ``` + config buffer shared-headroom-pool over-subscribe-ratio + config buffer shared-headroom-pool size + ``` + + The range of over-subscribe-ratio is from 1 to number of ports inclusive. + +- Example: + + ``` + admin@sonic:~$ sudo config shared-headroom-pool over-subscribe-ratio 2 + admin@sonic:~$ sudo config shared-headroom-pool size 1024000 + ``` + +**configure a lossless buffer profile** + +This command is used to configure a lossless buffer profile. + +- Usage: + + ``` + config buffer profile add --xon --xoff [-size ] [-dynamic_th ] [-pool ] + config buffer profile set --xon --xoff [-size ] [-dynamic_th ] [-pool ] + config buffer profile remove + ``` + + All the parameters are devided to two groups, one for headroom and one for dynamic_th. For any command at lease one group of parameters should be provided. + For headroom parameters: + + - `xon` is madantory. + - If shared headroom pool is disabled: + - At lease one of `xoff` and `size` should be provided and the other will be optional and conducted via the formula `xon + xoff = size`. + - `xon` + `xoff` <= `size`; For Mellanox platform xon + xoff == size + - If shared headroom pool is enabled: + - `xoff` should be provided. + - `size` = `xoff` if it is not provided. + + If only headroom parameters are provided, the `dynamic_th` will be taken from `CONFIG_DB.DEFAULT_LOSSLESS_BUFFER_PARAMETER.default_dynamic_th`. + + If only dynamic_th parameter is provided, the `headroom_type` will be set as `dynamic` and `xon`, `xoff` and `size` won't be set. This is only used for non default dynamic_th. In this case, the profile won't be deployed to ASIC directly. It can be configured to a lossless PG and then a dynamic profile will be generated based on the port's speed, cable length, and MTU and deployed to the ASIC. + + The subcommand `add` is designed for adding a new buffer profile to the system. + + The subcommand `set` is designed for modifying an existing buffer profile in the system. + For a profile with dynamically calculated headroom information, only `dynamic_th` can be modified. + + The subcommand `remove` is designed for removing an existing buffer profile from the system. When removing a profile, it shouldn't be referenced by any entry in `CONFIG_DB.BUFFER_PG`. + +- Example: + + ``` + admin@sonic:~$ sudo config buffer profile add profile1 --xon 18432 --xoff 18432 + admin@sonic:~$ sudo config buffer profile remove profile1 + ``` + +**config interface cable_length** + +This command is used to configure the length of the cable connected to a port. The cable_length is in unit of meters and must be suffixed with "m". + +- Usage: + + ``` + config interface cable_length + ``` + +- Example: + + ``` + admin@sonic:~$ sudo config interface cable_length Ethernet0 40m + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#dynamic-buffer-management) + +**config interface buffer priority-group lossless** + +This command is used to configure the priority groups on which lossless traffic runs. + +- Usage: + + ``` + config interface buffer priority-group lossless add [profile] + config interface buffer priority-group lossless set [profile] + config interface buffer priority-group lossless remove [] + ``` + + The can be in one of the following two forms: + + - For a range of priorities, the lower bound and upper bound connected by a dash, like `3-4` + - For a single priority, the number, like `6` + + The `pg-map` represents the map of priorities for lossless traffic. It should be a string and in form of a bit map like `3-4`. The `-` connects the lower bound and upper bound of a range of priorities. + + The subcommand `add` is designed for adding a new lossless PG on top of current PGs. The new PG range must be disjoint with all existing PGs. + + For example, currently the PG range 3-4 exist on port Ethernet4, to add PG range 4-5 will fail because it isn't disjoint with 3-4. To add PG range 5-6 will succeed. After that both range 3-4 and 5-6 will work as lossless PG. + + The `override-profile` parameter is optional. When provided, it represents the predefined buffer profile for headroom override. + + The subcommand `set` is designed for modifying an existing PG from dynamic calculation to headroom override or vice versa. The `pg-map` must be an existing PG. + + The subcommand `remove` is designed for removing an existing PG. The option `pg-map` must be an existing PG. All lossless PGs will be removed in case no `pg-map` provided. + +- Example: + + To configure lossless_pg on a port: + + ``` + admin@sonic:~$ sudo config interface buffer priority-group lossless add Ethernet0 3-4 + ``` + + To change the profile used for lossless_pg on a port: + + ``` + admin@sonic:~$ sudo config interface buffer priority-group lossless set Ethernet0 3-4 new-profile + ``` + + To remove one lossless priority from a port: + + ``` + admin@sonic:~$ sudo config interface buffer priority-group lossless remove Ethernet0 6 + ``` + + To remove all lossless priorities from a port: + + ``` + admin@sonic:~$ sudo config interface buffer priority-group lossless remove Ethernet0 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#dynamic-buffer-management) + +**config interface buffer queue** + +This command is used to configure the buffer profiles for queues. + +- Usage: + + ``` + config interface buffer queue add + config interface buffer queue set + config interface buffer queue remove + ``` + + The represents the map of queues. It can be in one of the following two forms: + + - For a range of priorities, the lower bound and upper bound connected by a dash, like `3-4` + - For a single priority, the number, like `6` + + The subcommand `add` is designed for adding a buffer profile for a group of queues. The new queue range must be disjoint with all queues with buffer profile configured. + + For example, currently the buffer profile configured on queue 3-4 on port Ethernet4, to configure buffer profile on queue 4-5 will fail because it isn't disjoint with 3-4. To configure it on range 5-6 will succeed. + + The `profile` parameter represents a predefined egress buffer profile to be configured on the queues. + + The subcommand `set` is designed for modifying an existing group of queues. + + The subcommand `remove` is designed for removing buffer profile on an existing group of queues. + +- Example: + + To configure buffer profiles for queues on a port: + + ``` + admin@sonic:~$ sudo config interface buffer queue add Ethernet0 3-4 egress_lossless_profile + ``` + + To change the profile used for queues on a port: + + ``` + admin@sonic:~$ sudo config interface buffer queue set Ethernet0 3-4 new-profile + ``` + + To remove a group of queues from a port: + + ``` + admin@sonic:~$ sudo config interface buffer queue remove Ethernet0 3-4 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#dynamic-buffer-management) + +### Show commands + +**show buffer information** + +This command is used to display the status of buffer pools and profiles currently deployed to the ASIC. + +- Usage: + + ``` + show buffer information + ``` + +- Example: + + ``` + admin@sonic:~$ show buffer information + Pool: ingress_lossless_pool + ---- -------- + type ingress + mode dynamic + size 17170432 + ---- -------- + + Pool: egress_lossless_pool + ---- -------- + type egress + mode dynamic + size 34340822 + ---- -------- + + Pool: ingress_lossy_pool + ---- -------- + type ingress + mode dynamic + size 17170432 + ---- -------- + + Pool: egress_lossy_pool + ---- -------- + type egress + mode dynamic + size 17170432 + ---- -------- + + Profile: pg_lossless_100000_5m_profile + ---------- ----------------------------------- + xon 18432 + dynamic_th 0 + xoff 18432 + pool [BUFFER_POOL:ingress_lossless_pool] + size 36864 + ---------- ----------------------------------- + + Profile: q_lossy_profile + ---------- ------------------------------- + dynamic_th 3 + pool [BUFFER_POOL:egress_lossy_pool] + size 0 + ---------- ------------------------------- + + Profile: egress_lossy_profile + ---------- ------------------------------- + dynamic_th 3 + pool [BUFFER_POOL:egress_lossy_pool] + size 4096 + ---------- ------------------------------- + + Profile: egress_lossless_profile + ---------- ---------------------------------- + dynamic_th 7 + pool [BUFFER_POOL:egress_lossless_pool] + size 0 + ---------- ---------------------------------- + + Profile: ingress_lossless_profile + ---------- ----------------------------------- + dynamic_th 0 + pool [BUFFER_POOL:ingress_lossless_pool] + size 0 + ---------- ----------------------------------- + + Profile: pg_lossless_100000_79m_profile + ---------- ----------------------------------- + xon 18432 + dynamic_th 0 + xoff 60416 + pool [BUFFER_POOL:ingress_lossless_pool] + size 78848 + ---------- ----------------------------------- + + Profile: pg_lossless_100000_40m_profile + ---------- ----------------------------------- + xon 18432 + dynamic_th 0 + xoff 38912 + pool [BUFFER_POOL:ingress_lossless_pool] + size 57344 + ---------- ----------------------------------- + + Profile: ingress_lossy_profile + ---------- -------------------------------- + dynamic_th 3 + pool [BUFFER_POOL:ingress_lossy_pool] + size 0 + ---------- -------------------------------- + ``` + +**show buffer configuration** + +This command is used to display the status of buffer pools and profiles currently configured. + +- Usage: + + ``` + show buffer configuration + ``` + +- Example: + + ``` + admin@sonic:~$ show buffer configuration + Lossless traffic pattern: + -------------------- - + default_dynamic_th 0 + over_subscribe_ratio 0 + -------------------- - + + Pool: ingress_lossless_pool + ---- -------- + type ingress + mode dynamic + ---- -------- + + Pool: egress_lossless_pool + ---- -------- + type egress + mode dynamic + size 34340822 + ---- -------- + + Pool: ingress_lossy_pool + ---- -------- + type ingress + mode dynamic + ---- -------- + + Pool: egress_lossy_pool + ---- -------- + type egress + mode dynamic + ---- -------- + + Profile: q_lossy_profile + ---------- ------------------------------- + dynamic_th 3 + pool [BUFFER_POOL:egress_lossy_pool] + size 0 + ---------- ------------------------------- + + Profile: egress_lossy_profile + ---------- ------------------------------- + dynamic_th 3 + pool [BUFFER_POOL:egress_lossy_pool] + size 4096 + ---------- ------------------------------- + + Profile: egress_lossless_profile + ---------- ---------------------------------- + dynamic_th 7 + pool [BUFFER_POOL:egress_lossless_pool] + size 0 + ---------- ---------------------------------- + + Profile: ingress_lossless_profile + ---------- ----------------------------------- + dynamic_th 0 + pool [BUFFER_POOL:ingress_lossless_pool] + size 0 + ---------- ----------------------------------- + + Profile: ingress_lossy_profile + ---------- -------------------------------- + dynamic_th 3 + pool [BUFFER_POOL:ingress_lossy_pool] + size 0 + ---------- -------------------------------- + ``` + +## ECN + +This section explains all the Explicit Congestion Notification (ECN) show commands and ECN configuation options that are supported in SONiC. + +### ECN show commands +This sub-section contains the show commands that are supported in ECN. + +**show ecn** + +This command displays all the WRED profiles that are configured in the device. + +- Usage: + ``` + show ecn + ``` + +- Example: + ``` + admin@sonic:~$ show ecn + Profile: **AZURE_LOSSLESS** + ----------------------- ------- + red_max_threshold 2097152 + red_drop_probability 5 + yellow_max_threshold 2097152 + ecn ecn_all + green_min_threshold 1048576 + red_min_threshold 1048576 + wred_yellow_enable true + yellow_min_threshold 1048576 + green_max_threshold 2097152 + green_drop_probability 5 + wred_green_enable true + yellow_drop_probability 5 + wred_red_enable true + ----------------------- ------- + + Profile: **wredprofileabcd** + ----------------- --- + red_max_threshold 100 + ----------------- --- + ``` + +### ECN config commands + +This sub-section contains the configuration commands that can configure the WRED profiles. + +**config ecn** + +This command configures the possible fields in a particular WRED profile that is specified using "-profile " argument. +The list of the WRED profile fields that are configurable is listed in the below "Usage". + +- Usage: + ``` + config ecn -profile [-rmax ] [-rmin ] [-ymax ] [-ymin ] [-gmax ] [-gmin ] [-v|--verbose] + ``` + + - Parameters: + - profile_name Profile name + - red_threshold_max Set red max threshold + - red_threshold_min Set red min threshold + - yellow_threshold_max Set yellow max threshold + - yellow_threshold_min Set yellow min threshold + - green_threshold_max Set green max threshold + - green_threshold_min Set green min threshold + +- Example (Configures the "red max threshold" for the WRED profile name "wredprofileabcd". It will create the WRED profile if it does not exist.): + ``` + admin@sonic:~$ sudo config ecn -profile wredprofileabcd -rmax 100 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#ecn) + +## Fabric + +This section explains all Fabric commands that are supported in SONiC. + +### Fabric config commands + +**config fabric port isolate ** +**config fabric port unisolate ** + +The above two commands can be used to manually isolate and unisolate a fabric link. + +- Usage: + ``` + config fabric port isolate [OPTIONS] + config fabric port unisolate [OPTIONS] + ``` + +- Example: + ``` + admin@sonic:~$ config fabric port isolate 0 -n asic0 + admin@sonic:~$ config fabric port unisolate 0 -n asic0 + ``` + +**config fabric port monitor error threshold ** + +This command sets a fabric link monitoring error threshold + +- Usage: + ``` + config fabric port monitor error threshold [OPTIONS] + ``` + +- Example: + ``` + admin@sonic:~$ config fabric port monitor error threshold 2 61035156 -n asic0 + ``` + +**config fabric port monitor poll threshold isolation ** + +This command sets the number of consecutive polls in which the threshold needs to be detected to isolate a link + +- Usage: + ``` + config fabric port monitor poll threshold isolation [OPTIONS] + ``` + +- Example: + ``` + admin@sonic:~$ config fabric port monitor poll threshold isolation 2 -n asic0 + ``` + +**config fabric port monitor poll threshold recovery ** + +This command sets the number of consecutive polls in which no error is detected to unisolate a link + +- Usage: + ``` + config fabric port monitor poll threshold recovery [OPTIONS] + ``` + +- Example: + ``` + admin@sonic:~$ config fabric port monitor poll threshold recovery 5 -n asic0 + ``` + +## Feature + +SONiC includes a capability in which Feature state can be enabled/disabled +which will make corresponding feature docker container to start/stop. + +Also SONiC provide capability in which Feature docker container can be automatically shut +down and restarted if one of critical processes running in the container exits +unexpectedly. Restarting the entire feature container ensures that configuration is +reloaded and all processes in the feature container get restarted, thus increasing the +likelihood of entering a healthy state. + +### Feature show commands + +**show feature config** + +Shows the config of given feature or all if no feature is given. The "fallback" is shown only if configured. The fallback defaults to "true" when not configured. + +- Usage: + ``` + show feature config [] + ``` + +- Example: + ``` + admin@sonic:~$ show feature config + Feature State AutoRestart Owner fallback + -------------- -------- ------------- ------- ---------- + bgp enabled enabled local + database enabled disabled local + dhcp_relay enabled enabled kube + lldp enabled enabled kube true + mgmt-framework enabled enabled local + nat disabled enabled local + pmon enabled enabled kube + radv enabled enabled kube + sflow disabled enabled local + snmp enabled enabled kube + swss enabled enabled local + syncd enabled enabled local + teamd enabled enabled local + telemetry enabled enabled kube + ``` + +**show feature status** + +Shows the status of given feature or all if no feature is given. The "fallback" defaults to "true" when not configured. +The subset of features are configurable for remote management and only those report additional data. + +- Usage: + ``` + show feature status [] + ``` + +- Example: + ``` + admin@sonic:~$ show feature status + Feature State AutoRestart SystemState UpdateTime ContainerId ContainerVersion SetOwner CurrentOwner RemoteState + -------------- -------- ------------- ------------- ------------------- ------------- ------------------ ---------- -------------- ------------- + bgp enabled enabled up local local none + database enabled disabled local + dhcp_relay enabled enabled up 2020-11-15 18:21:09 249e70102f55 20201230.100 kube local + lldp enabled enabled up 2020-11-15 18:21:09 779c2d55ee12 20201230.100 kube local + mgmt-framework enabled enabled up local local none + nat disabled enabled local + pmon enabled enabled up 2020-11-15 18:20:27 a2b9ffa8aba3 20201230.100 kube local + radv enabled enabled up 2020-11-15 18:21:05 d8ff27dcfe46 20201230.100 kube local + sflow disabled enabled local + snmp enabled enabled up 2020-11-15 18:25:51 8b7d5529e306 20201230.111 kube kube running + swss enabled enabled up local local none + syncd enabled enabled up local local none + teamd enabled enabled up local local none + telemetry enabled enabled down 2020-11-15 18:24:59 20201230.100 kube none + ``` + +**config feature owner** + +Configures the owner for a feature as "local" or "kube". The "local" implies starting the feature container from local image. The "kube" implies that kubernetes server is made eligible to deploy the feature. The deployment of a feature by kubernetes is conditional based on many factors like, whether the kube server is configured or not, connected-to-kube-server or not and if that master has manifest for this feature for this switch or not and more. At some point in future, the deployment *could* happen and till that point the feature can run from local image, called "fallback". The fallback is allowed by default and it could be toggled to "not allowed". When fallback is not allowed, the feature would run only upon deployment by kubernetes master. + +- Usage: + ``` + config feature owner [] [local/kube] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config feature owner snmp kube + ``` + +**config feature fallback** + +Features configured for "kube" deployment could be allowed to fallback to using local image, until the point of successful kube deployment. The fallback is allowed by default. + +- Usage: + ``` + config feature fallback [] [on/off] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config feature fallback snmp on + ``` + +**show feature autorestart** + +This command will display the status of auto-restart for feature container. + +- Usage: + ``` + show feature autorestart [] + admin@sonic:~$ show feature autorestart + Feature AutoRestart + ---------- -------------- + bgp enabled + database always_enabled + dhcp_relay enabled + lldp enabled + pmon enabled + radv enabled + snmp enabled + swss enabled + syncd enabled + teamd enabled + telemetry enabled + ``` + +Optionally, you can specify a feature name in order to display +status for that feature + +### Feature config commands + +**config feature state ** + +This command will configure the state for a specific feature. + +- Usage: + ``` + config feature state (enabled | disabled) + admin@sonic:~$ sudo config feature state bgp disabled + ``` + +**config feature autorestart ** + +This command will configure the status of auto-restart for a specific feature container. + +- Usage: + ``` + config feature autorestart (enabled | disabled) + admin@sonic:~$ sudo config feature autorestart bgp disabled + ``` +NOTE: If the existing state or auto-restart value for a feature is "always_enabled" then config +commands are don't care and will not update state/auto-restart value. + +Go Back To [Beginning of the document](#) or [Beginning of this section](#feature) + +## Flow Counters + +This section explains all the Flow Counters show commands, clear commands and config commands that are supported in SONiC. Flow counters are usually used for debugging, troubleshooting and performance enhancement processes. Flow counters supports case like: + + - Host interface traps (number of received traps per Trap ID) + - Routes matching the configured prefix pattern (number of hits and number of bytes) + +### Flow Counters show commands + +**show flowcnt-trap stats** + +This command is used to show the current statistics for the registered host interface traps. + +Because clear (see below) is handled on a per-user basis different users may see different counts. + +- Usage: + ``` + show flowcnt-trap stats + ``` + +- Example: + ``` + admin@sonic:~$ show flowcnt-trap stats + Trap Name Packets Bytes PPS + --------- --------- ------- ------- + dhcp 100 2,000 50.25/s + + For multi-ASIC: + admin@sonic:~$ show flowcnt-trap stats + ASIC ID Trap Name Packets Bytes PPS + ------- ----------- --------- ------- ------- + asic0 dhcp 100 2,000 50.25/s + asic1 dhcp 200 3,000 45.25/s + ``` + +**show flowcnt-route stats** + +This command is used to show the current statistics for route flow patterns. + +Because clear (see below) is handled on a per-user basis different users may see different counts. + +- Usage: + ``` + show flowcnt-route stats + show flowcnt-route stats pattern [--vrf ] + show flowcnt-route stats route [--vrf ] + ``` + +- Example: + ``` + admin@sonic:~$ show flowcnt-route stats + Route pattern VRF Matched routes Packets Bytes + -------------------------------------------------------------------------------------- + 3.3.0.0/16 default 3.3.1.0/24 100 4543 + 3.3.2.3/32 3443 929229 + 3.3.0.0/16 0 0 + 2000::/64 default 2000::1/128 100 4543 + ``` + +The "pattern" subcommand is used to display the route flow counter statistics by route pattern. + +- Example: + ``` + admin@sonic:~$ show flowcnt-route stats pattern 3.3.0.0/16 + Route pattern VRF Matched routes Packets Bytes + -------------------------------------------------------------------------------------- + 3.3.0.0/16 default 3.3.1.0/24 100 4543 + 3.3.2.3/32 3443 929229 + 3.3.0.0/16 0 0 + ``` + +The "route" subcommand is used to display the route flow counter statistics by route prefix. + ``` + admin@sonic:~$ show flowcnt-route stats route 3.3.3.2/32 --vrf Vrf_1 + Route VRF Route Pattern Packets Bytes + ----------------------------------------------------------------------------------------- + 3.3.3.2/32 Vrf_1 3.3.0.0/16 100 4543 + ``` + +### Flow Counters clear commands + +**sonic-clear flowcnt-trap** + +This command is used to clear the current statistics for the registered host interface traps. This is done on a per-user basis. + +- Usage: + ``` + sonic-clear flowcnt-trap + ``` + +- Example: + ``` + admin@sonic:~$ sonic-clear flowcnt-trap + Trap Flow Counters were successfully cleared + ``` + +**sonic-clear flowcnt-route** + +This command is used to clear the current statistics for the route flow counter. This is done on a per-user basis. + +- Usage: + ``` + sonic-clear flowcnt-route + sonic-clear flowcnt-route pattern [--vrf ] + sonic-clear flowcnt-route route [--vrf ] + ``` + +- Example: + ``` + admin@sonic:~$ sonic-clear flowcnt-route + Route Flow Counters were successfully cleared + ``` + +The "pattern" subcommand is used to clear the route flow counter statistics by route pattern. + +- Example: + ``` + admin@sonic:~$ sonic-clear flowcnt-route pattern 3.3.0.0/16 --vrf Vrf_1 + Flow Counters of all routes matching the configured route pattern were successfully cleared + ``` + +The "route" subcommand is used to clear the route flow counter statistics by route prefix. + +- Example: + ``` + admin@sonic:~$ sonic-clear flowcnt-route route 3.3.3.2/32 --vrf Vrf_1 + Flow Counters of the specified route were successfully cleared + ``` + +### Flow Counters config commands + +**config flowcnt-route pattern add** + +This command is used to add or update the route pattern which is used by route flow counter to match route entries. + +- Usage: + ``` + config flowcnt-route pattern add [--vrf ] [--max ] + ``` + +- Example: + ``` + admin@sonic:~$ config flowcnt-route pattern add 2.2.0.0/16 --vrf Vrf_1 --max 50 + ``` + +**config flowcnt-route pattern remove** + +This command is used to remove the route pattern which is used by route flow counter to match route entries. + +- Usage: + ``` + config flowcnt-route pattern remove [--vrf ] + ``` + +- Example: + ``` + admin@sonic:~$ config flowcnt-route pattern remove 2.2.0.0/16 --vrf Vrf_1 + ``` + + +Go Back To [Beginning of the document](#) or [Beginning of this section](#flow-counters) +## Gearbox + +This section explains all the Gearbox PHY show commands that are supported in SONiC. + +### Gearbox show commands +This sub-section contains the show commands that are supported for gearbox phy. + +**show gearbox interfaces status** + +This command displays information about the gearbox phy interface lanes, speeds and status. Data is displayed for both MAC side and line side of the gearbox phy + +- Usage: + ``` + show gearbox interfaces status + ``` + +- Example: + +``` +home/admin# show gearbox interfaces status + PHY Id Interface MAC Lanes MAC Lane Speed PHY Lanes PHY Lane Speed Line Lanes Line Lane Speed Oper Admin +-------- ----------- ----------- ---------------- ----------- ---------------- ------------ ----------------- ------ ------- + 1 Ethernet0 25,26,27,28 10G 200,201 20G 206 40G up up + 1 Ethernet4 29,30,31,32 10G 202,203 20G 207 40G up up + 1 Ethernet8 33,34,35,36 10G 204,205 20G 208 40G up up + + ``` + +**show gearbox phys status** + +This command displays basic information about the gearbox phys configured on the switch. + +- Usage: + ``` + show gearbox phys status + ``` + +- Example: + +``` +/home/admin# show gearbox phys status + PHY Id Name Firmware +-------- ------- ---------- + 1 sesto-1 v0.1 + + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#gearbox) + + +## Update Device Hostname Configuration Commands + +This sub-section of commands is used to change device hostname without traffic being impacted. + +**config hostname** + +This command is used to change device hostname without traffic being impacted. + +- Usage: + ``` + config hostname + ``` + +- Example: + ``` + admin@sonic:~$ sudo config hostname CSW06 + Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. + ``` + +## Generic Configuration Update and Rollback + +The below command displays the brief summary of apply-patch, rollback, replace, checkpoint, delete-checkpoint, list-checkpoints functionality. This GCU feature is an initial version in 202111 release and may not function properly. + +### Apply-patch command + +Usage: + +``` + +admin@sonic:~$ sudo config apply-patch --help +Usage: config apply-patch [OPTIONS] PATCH_FILE_PATH + + Apply given patch of updates to Config. A patch is a JsonPatch which + follows rfc6902. This command can be used do partial updates to the config + with minimum disruption to running processes. It allows addition as well + as deletion of configs. The patch file represents a diff of ConfigDb(ABNF) + format or SonicYang format. + + : Path to the patch file on the file-system. + +Options: + -f, --format [CONFIGDB|SONICYANG] + format of config of the patch is either + ConfigDb(ABNF) or SonicYang + -d, --dry-run test out the command without affecting + config state + -v, --verbose print additional details of what the + operation is doing + -h, -?, --help Show this message and exit. + +``` + +### Replace Command + + +Usage : + +``` + +admin@sonic:~$ sudo config replace --help +Usage: config replace [OPTIONS] TARGET_FILE_PATH + + Replace the whole config with the specified config. The config is replaced + with minimum disruption e.g. if ACL config is different between current + and target config only ACL config is updated, and other config/services + such as DHCP will not be affected. **WARNING** The target config file + should be the whole config, not just the part intended to be updated. + + : Path to the target file on the file-system. + +Options: + -f, --format [CONFIGDB|SONICYANG] + format of target config is either + ConfigDb(ABNF) or SonicYang + -d, --dry-run test out the command without affecting + config state + -v, --verbose print additional details of what the + operation is doing + -h, -?, --help Show this message and exit. + +``` + +### Rollback Command + + +Usage : + +``` +admin@sonic:~$ sudo config rollback --help +Usage: config rollback [OPTIONS] CHECKPOINT_NAME + + Rollback the whole config to the specified checkpoint. The config is + rolled back with minimum disruption e.g. if ACL config is different + between current and checkpoint config only ACL config is updated, and + other config/services such as DHCP will not be affected. + + : The checkpoint name, use `config list-checkpoints` + command to see available checkpoints. + +Options: + -d, --dry-run test out the command without affecting config state + -v, --verbose print additional details of what the operation is doing + -?, -h, --help Show this message and exit. + +``` + +### Checkpoint Command + + +Usage : + +``` +admin@sonic:~$ sudo config checkpoint --help +Usage: config checkpoint [OPTIONS] CHECKPOINT_NAME + + Take a checkpoint of the whole current config with the specified + checkpoint name. + + : The checkpoint name, use `config list-checkpoints` + command to see available checkpoints. + +Options: + -v, --verbose print additional details of what the operation is doing + -h, -?, --help Show this message and exit. + +``` + +### Delete-checkpoint Command + + +Usage : + +``` +admin@sonic:~$ sudo config delete-checkpoint --help +Usage: config delete-checkpoint [OPTIONS] CHECKPOINT_NAME + + Delete a checkpoint with the specified checkpoint name. + + : The checkpoint name, use `config list-checkpoints` + command to see available checkpoints. + +Options: + -v, --verbose print additional details of what the operation is doing + -h, -?, --help Show this message and exit. + +``` + +### List-checkpoints Command + +Usage : + +``` +admin@sonic:~$ sudo config list-checkpoints --help +Usage: config list-checkpoints [OPTIONS] + + List the config checkpoints available. + +Options: + -v, --verbose print additional details of what the operation is doing + -?, -h, --help Show this message and exit. + +``` + +## Interfaces + +### Interface Show Commands + +This sub-section lists all the possible show commands for the interfaces available in the device. Following example gives the list of possible shows on interfaces. +Subsequent pages explain each of these commands in detail. + +- Example: + ``` + admin@sonic:~$ show interfaces -? + + Show details of the network interfaces + + Options: + -?, -h, --help Show this message and exit. + + Commands: + autoneg Show interface autoneg information + breakout Show Breakout Mode information by interfaces + counters Show interface counters + description Show interface status, protocol and... + mpls Show Interface MPLS status + naming_mode Show interface naming_mode status + neighbor Show neighbor related information + portchannel Show PortChannel information + status Show Interface status information + tpid Show Interface tpid information + transceiver Show SFP Transceiver information + ``` + +**show interfaces autoneg** + +This show command displays the port auto negotiation status for all interfaces i.e. interface name, auto negotiation mode, speed, advertised speeds, interface type, advertised interface types, operational status, admin status. For a single interface, provide the interface name with the sub-command. + +- Usage: + ``` + show interfaces autoneg status + show interfaces autoneg status + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces autoneg status + Interface Auto-Neg Mode Speed Adv Speeds Type Adv Types Oper Admin + ----------- --------------- ------- ------------ ------ ----------- ------ ------- + Ethernet0 enabled 25G 10G,25G CR CR,CR4 up up + Ethernet4 disabled 100G all CR4 all up up + + admin@sonic:~$ show interfaces autoneg status Ethernet8 + Interface Auto-Neg Mode Speed Adv Speeds Type Adv Types Oper Admin + ----------- --------------- ------- ------------ ------ ----------- ------ ------- + Ethernet8 disabled 100G N/A CR4 N/A up up + ``` + +**show interfaces breakout (Versions >= 202006)** + +This show command displays the port capability for all interfaces i.e. index, lanes, default_brkout_mode, breakout_modes(i.e. available breakout modes) and brkout_mode (i.e. current breakout mode). To display current breakout mode, "current-mode" subcommand can be used.For a single interface, provide the interface name with the sub-command. + +- Usage: + ``` + show interfaces breakout + show interfaces breakout current-mode + show interfaces breakout current-mode + ``` + +- Example: + ``` + admin@lnos-x1-a-fab01:~$ show interfaces breakout + { + "Ethernet0": { + "index": "1,1,1,1", + "default_brkout_mode": "1x100G[40G]", + "child ports": "Ethernet0", + "child port speed": "100G", + "breakout_modes": "1x100G[40G],2x50G,4x25G[10G]", + "Current Breakout Mode": "1x100G[40G]", + "lanes": "65,66,67,68", + "alias_at_lanes": "Eth1/1, Eth1/2, Eth1/3, Eth1/4" + },... continue + } + ``` +The "current-mode" subcommand is used to display current breakout mode for all interfaces. + ``` + admin@lnos-x1-a-fab01:~$ show interfaces breakout current-mode + +-------------+-------------------------+ + | Interface | Current Breakout Mode | + +=============+=========================+ + | Ethernet0 | 4x25G[10G] | + +-------------+-------------------------+ + | Ethernet4 | 4x25G[10G] | + +-------------+-------------------------+ + | Ethernet8 | 4x25G[10G] | + +-------------+-------------------------+ + | Ethernet12 | 4x25G[10G] | + +-------------+-------------------------+ + + admin@lnos-x1-a-fab01:~$ show interfaces breakout current-mode Ethernet0 + +-------------+-------------------------+ + | Interface | Current Breakout Mode | + +=============+=========================+ + | Ethernet0 | 4x25G[10G] | + +-------------+-------------------------+ + ``` + +**show interfaces counters** + +This show command displays packet counters for all interfaces since the last time the counters were cleared. To display l3 counters "rif" subcommand can be used. There is no facility to display counters for one specific l2 interface. For l3 interfaces a single interface output mode is present. Optional argument "-a" provides two additional columns - RX-PPS and TX_PPS. +Optional argument "-p" specify a period (in seconds) with which to gather counters over. + +- Usage: + ``` + show interfaces counters [-a|--printall] [-p|--period ] + show interfaces counters errors + show interfaces counters rates + show interfaces counters rif [-p|--period ] [-i ] + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces counters + IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR + ----------- ------- --------------- ----------- --------- -------- -------- -------- --------------- ----------- --------- -------- -------- -------- + Ethernet0 U 471,729,839,997 653.87 MB/s 12.77% 0 18,682 0 409,682,385,925 556.84 MB/s 10.88% 0 0 0 + Ethernet4 U 453,838,006,636 632.97 MB/s 12.36% 0 1,636 0 388,299,875,056 529.34 MB/s 10.34% 0 0 0 + Ethernet8 U 549,034,764,539 761.15 MB/s 14.87% 0 18,274 0 457,603,227,659 615.20 MB/s 12.02% 0 0 0 + Ethernet12 U 458,052,204,029 636.84 MB/s 12.44% 0 17,614 0 388,341,776,615 527.37 MB/s 10.30% 0 0 0 + Ethernet16 U 16,679,692,972 13.83 MB/s 0.27% 0 17,605 0 18,206,586,265 17.51 MB/s 0.34% 0 0 0 + Ethernet20 U 47,983,339,172 35.89 MB/s 0.70% 0 2,174 0 58,986,354,359 51.83 MB/s 1.01% 0 0 0 + Ethernet24 U 33,543,533,441 36.59 MB/s 0.71% 0 1,613 0 43,066,076,370 49.92 MB/s 0.97% 0 0 0 + + admin@sonic:~$ show interfaces counters -i Ethernet4,Ethernet12-16 + IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR + ----------- ------- --------------- ----------- --------- -------- -------- -------- --------------- ----------- --------- -------- -------- -------- + Ethernet4 U 453,838,006,636 632.97 MB/s 12.36% 0 1,636 0 388,299,875,056 529.34 MB/s 10.34% 0 0 0 + Ethernet12 U 458,052,204,029 636.84 MB/s 12.44% 0 17,614 0 388,341,776,615 527.37 MB/s 10.30% 0 0 0 + Ethernet16 U 16,679,692,972 13.83 MB/s 0.27% 0 17,605 0 18,206,586,265 17.51 MB/s 0.34% 0 0 0 + ``` + +The "errors" subcommand is used to display the interface errors. + +- Example: + ``` + admin@str-s6000-acs-11:~$ show interface counters errors + IFACE STATE RX_ERR RX_DRP RX_OVR TX_ERR TX_DRP TX_OVR + ----------- ------- -------- -------- -------- -------- -------- -------- + Ethernet0 U 0 4 0 0 0 0 + Ethernet4 U 0 0 0 0 0 0 + Ethernet8 U 0 1 0 0 0 0 + Ethernet12 U 0 0 0 0 0 0 + ``` + +The "rates" subcommand is used to disply only the interface rates. + +- Example: + ``` + admin@str-s6000-acs-11:/usr/bin$ show int counters rates + IFACE STATE RX_OK RX_BPS RX_PPS RX_UTIL TX_OK TX_BPS TX_PPS TX_UTIL + ----------- ------- ------- -------- -------- --------- ------- -------- -------- --------- + Ethernet0 U 467510 N/A N/A N/A 466488 N/A N/A N/A + Ethernet4 U 469679 N/A N/A N/A 469245 N/A N/A N/A + Ethernet8 U 466660 N/A N/A N/A 465982 N/A N/A N/A + Ethernet12 U 466579 N/A N/A N/A 466318 N/A N/A N/A + ``` + + +The "rif" subcommand is used to display l3 interface counters. Layer 3 interfaces include router interfaces, portchannels and vlan interfaces. + +- Example: + +``` + admin@sonic:~$ show interfaces counters rif + IFACE RX_OK RX_BPS RX_PPS RX_ERR TX_OK TX_BPS TX_PPS TX_ERR +--------------- ------- ---------- -------- -------- ------- -------- -------- -------- +PortChannel0001 62,668 107.81 B/s 1.34/s 3 6 0.02 B/s 0.00/s 0 +PortChannel0002 62,645 107.77 B/s 1.34/s 3 2 0.01 B/s 0.00/s 0 +PortChannel0003 62,481 107.56 B/s 1.34/s 3 3 0.01 B/s 0.00/s 0 +PortChannel0004 62,732 107.88 B/s 1.34/s 2 3 0.01 B/s 0.00/s 0 + Vlan1000 0 0.00 B/s 0.00/s 0 0 0.00 B/s 0.00/s 0 +``` + + +Optionally, you can specify a layer 3 interface name to display the counters in single interface mode. + +- Example: + +``` + admin@sonic:~$ show interfaces counters rif PortChannel0001 + PortChannel0001 + --------------- + + RX: + 3269 packets + 778494 bytesq + 3 error packets + 292 error bytes + TX: + 0 packets + 0 bytes + 0 error packets + 0 error bytes +``` + + +Optionally, you can specify a period (in seconds) with which to gather counters over. Note that this function will take `` seconds to execute. + +- Example: + +``` + admin@sonic:~$ show interfaces counters -p 5 + IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR + ----------- ------- ------- ----------- --------- -------- -------- -------- ------- ----------- --------- -------- -------- -------- + Ethernet0 U 515 59.14 KB/s 0.00% 0 0 0 1,305 127.60 KB/s 0.00% 0 0 0 + Ethernet4 U 305 26.54 KB/s 0.00% 0 0 0 279 39.12 KB/s 0.00% 0 0 0 + Ethernet8 U 437 42.96 KB/s 0.00% 0 0 0 182 18.37 KB/s 0.00% 0 0 0 + Ethernet12 U 284 40.79 KB/s 0.00% 0 0 0 160 13.03 KB/s 0.00% 0 0 0 + Ethernet16 U 377 32.64 KB/s 0.00% 0 0 0 214 18.01 KB/s 0.00% 0 0 0 + Ethernet20 U 284 36.81 KB/s 0.00% 0 0 0 138 8758.25 B/s 0.00% 0 0 0 + Ethernet24 U 173 16.09 KB/s 0.00% 0 0 0 169 11.39 KB/s 0.00% 0 0 0 +``` + +- NOTE: Interface counters can be cleared by the user with the following command: + + ``` + admin@sonic:~$ sonic-clear counters + ``` + +- NOTE: Layer 3 interface counters can be cleared by the user with the following command: + + ``` + admin@sonic:~$ sonic-clear rifcounters + ``` + +**show interfaces description** + +This command displays the key fields of the interfaces such as Operational Status, Administrative Status, Alias and Description. + +- Usage: + ``` + show interfaces description [] + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces description + Interface Oper Admin Alias Description + ----------- ------ ------- --------------- -------------------- + Ethernet0 down up hundredGigE1/1 T0-1:hundredGigE1/30 + Ethernet4 down up hundredGigE1/2 T0-2:hundredGigE1/30 + Ethernet8 down down hundredGigE1/3 hundredGigE1/3 + Ethernet12 down down hundredGigE1/4 hundredGigE1/4 + ``` + +- Example (to only display the description for interface Ethernet4): + + ``` + admin@sonic:~$ show interfaces description Ethernet4 + Interface Oper Admin Alias Description + ----------- ------ ------- -------------- -------------------- + Ethernet4 down up hundredGigE1/2 T0-2:hundredGigE1/30 + ``` + +**show interfaces mpls** + +This command is used to display the configured MPLS state for the list of configured interfaces. + +- Usage: + ``` + show interfaces mpls [] + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces mpls + Interface MPLS State + ----------- ------------ + Ethernet0 disable + Ethernet4 enable + Ethernet8 enable + Ethernet12 disable + Ethernet16 disable + Ethernet20 disable + ``` + +- Example (to only display the MPLS state for interface Ethernet4): + ``` + admin@sonic:~$ show interfaces mpls Ethernet4 + Interface MPLS State + ----------- ------------ + Ethernet4 enable + ``` + +**show interfaces loopback-action** + +This command displays the configured loopback action + +- Usage: + ``` + show ip interfaces loopback-action + ``` + +- Example: + ``` + root@sonic:~# show ip interfaces loopback-action + Interface Action + ------------ ---------- + Ethernet232 drop + Vlan100 forward + ``` + + +**show interfaces tpid** + +This command displays the key fields of the interfaces such as Operational Status, Administrative Status, Alias and TPID. + +- Usage: + ``` + show interfaces tpid [] + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces tpid + Interface Alias Oper Admin TPID + --------------- --------------- ------ ------- ------ + Ethernet0 fortyGigE1/1/1 up up 0x8100 + Ethernet1 fortyGigE1/1/2 up up 0x8100 + Ethernet2 fortyGigE1/1/3 down down 0x8100 + Ethernet3 fortyGigE1/1/4 down down 0x8100 + Ethernet4 fortyGigE1/1/5 up up 0x8100 + Ethernet5 fortyGigE1/1/6 up up 0x8100 + Ethernet6 fortyGigE1/1/7 up up 0x9200 + Ethernet7 fortyGigE1/1/8 up up 0x88A8 + Ethernet8 fortyGigE1/1/9 up up 0x8100 + ... + Ethernet63 fortyGigE1/4/16 down down 0x8100 + PortChannel0001 N/A up up 0x8100 + PortChannel0002 N/A up up 0x8100 + PortChannel0003 N/A up up 0x8100 + PortChannel0004 N/A up up 0x8100 + admin@sonic:~$ + ``` + +- Example (to only display the TPID for interface Ethernet6): + + ``` + admin@sonic:~$ show interfaces tpid Ethernet6 + Interface Alias Oper Admin TPID + ----------- -------------- ------ ------- ------ + Ethernet6 fortyGigE1/1/7 up up 0x9200 + admin@sonic:~$ + ``` + +**show interfaces naming_mode** + +Refer sub-section [Interface-Naming-Mode](#Interface-Naming-Mode) + + +**show interfaces neighbor** + +This command is used to display the list of expected neighbors for all interfaces (or for a particular interface) that is configured. + +- Usage: + ``` + show interfaces neighbor expected [] + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces neighbor expected + LocalPort Neighbor NeighborPort NeighborLoopback NeighborMgmt NeighborType + ----------- ---------- -------------- ------------------ -------------- -------------- + Ethernet112 ARISTA01T1 Ethernet1 None 10.16.205.100 ToRRouter + Ethernet116 ARISTA02T1 Ethernet1 None 10.16.205.101 SpineRouter + Ethernet120 ARISTA03T1 Ethernet1 None 10.16.205.102 LeafRouter + Ethernet124 ARISTA04T1 Ethernet1 None 10.16.205.103 LeafRouter + ``` + +**show interfaces portchannel** + +This command displays information regarding port-channel interfaces + +- Usage: + ``` + show interfaces portchannel + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces portchannel + Flags: A - active, I - inactive, Up - up, Dw - Down, N/A - not available, S - selected, D - deselected + No. Team Dev Protocol Ports + ----- ------------- ----------- --------------------------- + 24 PortChannel24 LACP(A)(Up) Ethernet28(S) Ethernet24(S) + 48 PortChannel48 LACP(A)(Up) Ethernet52(S) Ethernet48(S) + 40 PortChannel40 LACP(A)(Up) Ethernet44(S) Ethernet40(S) + 0 PortChannel0 LACP(A)(Up) Ethernet0(S) Ethernet4(S) + 8 PortChannel8 LACP(A)(Up) Ethernet8(S) Ethernet12(S) + ``` + +**show interface status** + +This command displays some more fields such as Lanes, Speed, MTU, Type, Asymmetric PFC status and also the operational and administrative status of the interfaces + +- Usage: + ``` + show interfaces status [] + ``` + +- Example (show interface status of all interfaces): + ``` + admin@sonic:~$ show interfaces status + Interface Lanes Speed MTU Alias Oper Admin Type Asym PFC + ----------- --------------- ------- ----- --------------- ------ ------- ------ ---------- + Ethernet0 49,50,51,52 100G 9100 hundredGigE1/1 down up N/A off + Ethernet4 53,54,55,56 100G 9100 hundredGigE1/2 down up N/A off + Ethernet8 57,58,59,60 100G 9100 hundredGigE1/3 down down N/A off + + ``` + +- Example (to only display the status for interface Ethernet0): + ``` + admin@sonic:~$ show interface status Ethernet0 + Interface Lanes Speed MTU Alias Oper Admin + ----------- -------- ------- ----- -------------- ------ ------- + Ethernet0 101,102 40G 9100 fortyGigE1/1/1 up up + ``` + +- Example (to only display the status for range of interfaces): + ``` + admin@sonic:~$ show interfaces status Ethernet8,Ethernet168-180 + Interface Lanes Speed MTU Alias Oper Admin Type Asym PFC + ----------- ----------------- ------- ----- --------------- ------ ------- ------ ---------- + Ethernet8 49,50,51,52 100G 9100 hundredGigE3 down down N/A N/A + Ethernet168 9,10,11,12 100G 9100 hundredGigE43 down down N/A N/A + Ethernet172 13,14,15,16 100G 9100 hundredGigE44 down down N/A N/A + Ethernet176 109,110,111,112 100G 9100 hundredGigE45 down down N/A N/A + Ethernet180 105,106,107,108 100G 9100 hundredGigE46 down down N/A N/A + ``` + +**show interfaces transceiver** + +This command is already explained [here](#Transceivers) + +### Interface Config Commands +This sub-section explains the following list of configuration on the interfaces. +1) ip - To add or remove IP address for the interface +2) pfc - to set the PFC configuration for the interface +3) shutdown - to administratively shut down the interface +4) speed - to set the interface speed +5) startup - to bring up the administratively shutdown interface +6) breakout - to set interface breakout mode +7) autoneg - to set interface auto negotiation mode +8) advertised-speeds - to set interface advertised speeds +9) advertised-types - to set interface advertised types +10) type - to set interface type +11) mpls - To add or remove MPLS operation for the interface +12) loopback-action - to set action for packet that ingress and gets routed on the same IP interface + +From 201904 release onwards, the “config interface” command syntax is changed and the format is as follows: + +- config interface interface_subcommand +i.e Interface name comes after the subcommand +- Ex: config interface startup Ethernet63 + +The syntax for all such interface_subcommands are given below under each command + +NOTE: In older versions of SONiC until 201811 release, the command syntax was `config interface interface_subcommand` + + +**config interface ip add [default_gw] (Versions >= 201904)** + +**config interface ip add (Versions <= 201811)** + +This command is used for adding the IP address for an interface. +IP address for either physical interface or for portchannel or for VLAN interface or for Loopback interface can be configured using this command. +While configuring the IP address for the management interface "eth0", users can provide the default gateway IP address as an optional parameter from release 201911. + + +- Usage: + + *Versions >= 201904* + ``` + config interface ip add + ``` + *Versions <= 201811* + ``` + config interface ip add + ``` + +- Example: + + *Versions >= 201904* + ``` + admin@sonic:~$ sudo config interface ip add Ethernet63 10.11.12.13/24 + admin@sonic:~$ sudo config interface ip add eth0 20.11.12.13/24 20.11.12.254 + ``` + *Versions <= 201811* + ``` + admin@sonic:~$ sudo config interface Ethernet63 ip add 10.11.12.13/24 + ``` + +VLAN interface names take the form of `vlan`. E.g., VLAN 100 will be named `vlan100` + +- Example: + + *Versions >= 201904* + ``` + admin@sonic:~$ sudo config interface ip add Vlan100 10.11.12.13/24 + ``` + *Versions <= 201811* + ``` + admin@sonic:~$ sudo config interface vlan100 ip add 10.11.12.13/24 + ``` + + +**config interface ip remove (Versions >= 201904)** + +**config interface ip remove (Versions <= 201811)** + +- Usage: + + *Versions >= 201904* + ``` + config interface ip remove + ``` + *Versions <= 201811* + ``` + config interface ip remove + ``` + +- Example: + + *Versions >= 201904* + ``` + admin@sonic:~$ sudo config interface ip remove Ethernet63 10.11.12.13/24 + admin@sonic:~$ sudo config interface ip remove eth0 20.11.12.13/24 + ``` + *Versions <= 201811* + ``` + admin@sonic:~$ sudo config interface Ethernet63 ip remove 10.11.12.13/24 + ``` + +VLAN interface names take the form of `vlan`. E.g., VLAN 100 will be named `vlan100` + +- Example: + + *Versions >= 201904* + ``` + admin@sonic:~$ sudo config interface ip remove vlan100 10.11.12.13/24 + ``` + *Versions <= 201811* + ``` + admin@sonic:~$ sudo config interface vlan100 ip remove 10.11.12.13/24 + ``` + +**config interface pfc priority (on | off)** + +This command is used to set PFC on a given priority of a given interface to either "on" or "off". Once it is successfully configured, it will show current losses priorities on the given interface. Otherwise, it will show error information + +- Example: + *Versions >= 201904* + ``` + admin@sonic:~$ sudo config interface pfc priority Ethernet0 3 off + + Interface Lossless priorities + ----------- --------------------- + Ethernet0 4 + + admin@sonic:~$ sudo config interface pfc priority Ethernet0 8 off + Usage: pfc config priority [OPTIONS] STATUS INTERFACE PRIORITY + + Error: Invalid value for "priority": invalid choice: 8. (choose from 0, 1, 2, 3, 4, 5, 6, 7) + + admin@sonic:~$ sudo config interface pfc priority Ethernet101 3 off + Cannot find interface Ethernet101 + + admin@sonic:~$ sudo config interface pfc priority Ethernet0 3 on + + Interface Lossless priorities + ----------- --------------------- + Ethernet0 3,4 + ``` + +**config interface pfc asymmetric (Versions >= 201904)** + +**config interface pfc asymmetric (Versions <= 201811)** + +This command is used for setting the asymmetric PFC for an interface to either "on" or "off". Once if it is configured, use "show interfaces status" to check the same. + +- Usage: + + *Versions >= 201904* + ``` + config interface pfc asymmetric on/off (for 201904+ version) + ``` + *Versions <= 201811* + ``` + config interface pfc asymmetric on/off (for 201811- version) + ``` + +- Example: + + *Versions >= 201904* + ``` + admin@sonic:~$ sudo config interface pfc asymmetric Ethernet60 on + ``` + *Versions <= 201811* + ``` + admin@sonic:~$ sudo config interface Ethernet60 pfc asymmetric on + ``` + +**config interface shutdown (Versions >= 201904)** + +**config interface shutdown (Versions <= 201811)** + +This command is used to administratively shut down either the Physical interface or port channel interface. Once if it is configured, use "show interfaces status" to check the same. + +- Usage: + + *Versions >= 201904* + ``` + config interface shutdown (for 201904+ version) + ``` + *Versions <= 201811* + ``` + config interface shutdown (for 201811- version) + ``` + +- Example: + + *Versions >= 201904* + ``` + admin@sonic:~$ sudo config interface shutdown Ethernet63 + ``` + *Versions <= 201811* + ``` + admin@sonic:~$ sudo config interface Ethernet63 shutdown + ``` + + shutdown multiple interfaces + ``` + admin@sonic:~$ sudo config interface shutdown Ethernet8,Ethernet16-20,Ethernet32 + ``` + +**config interface startup (Versions >= 201904)** + +**config interface startup (Versions <= 201811)** + +This command is used for administratively bringing up the Physical interface or port channel interface.Once if it is configured, use "show interfaces status" to check the same. + +- Usage: + + *Versions >= 201904* + ``` + config interface startup (for 201904+ version) + ``` + *Versions <= 201811* + ``` + config interface startup (for 201811- version) + ``` + +- Example: + + *Versions >= 201904* + ``` + admin@sonic:~$ sudo config interface startup Ethernet63 + ``` + *Versions <= 201811* + ``` + admin@sonic:~$ sudo config interface Ethernet63 startup + ``` + + startup multiple interfaces + ``` + admin@sonic:~$ sudo config interface startup Ethernet8,Ethernet16-20,Ethernet32 + ``` + +**config interface speed (Versions >= 202006)** + +Dynamic breakout feature is supported in SONiC from 202006 version. +User can configure any speed specified under "breakout_modes" keys for the parent interface in the platform-specific port configuration file (i.e. platform.json). + +For example for a breakout mode of 2x50G[25G,10G] the default speed is 50G but the interface also supports 25G and 10G. + +Refer [DPB HLD DOC](https://github.com/Azure/SONiC/blob/master/doc/dynamic-port-breakout/sonic-dynamic-port-breakout-HLD.md#cli-design) to know more about this command. + +**config interface speed (Versions >= 201904)** + +**config interface speed (Versions <= 201811)** + +This command is used to configure the speed for the Physical interface. Use the value 40000 for setting it to 40G and 100000 for 100G. Users need to know the device to configure it properly. + +- Usage: + + *Versions >= 201904* + ``` + config interface speed + ``` + *Versions <= 201811* + ``` + config interface speed + ``` + +- Example (Versions >= 201904): + ``` + admin@sonic:~$ sudo config interface speed Ethernet63 40000 + ``` + +- Example (Versions <= 201811): + ``` + admin@sonic:~$ sudo config interface Ethernet63 speed 40000 + + ``` + +**config interface transceiver lpmode** + +This command is used to enable or disable low-power mode for an SFP transceiver + +- Usage: + + ``` + config interface transceiver lpmode (enable | disable) + ``` + +- Examples: + + ``` + user@sonic~$ sudo config interface transceiver lpmode Ethernet0 enable + Enabling low-power mode for port Ethernet0... OK + + user@sonic~$ sudo config interface transceiver lpmode Ethernet0 disable + Disabling low-power mode for port Ethernet0... OK + ``` + +**config interface transceiver reset** + +This command is used to reset an SFP transceiver + +- Usage: + + ``` + config interface transceiver reset + ``` + +- Examples: + + ``` + user@sonic~$ sudo config interface transceiver reset Ethernet0 + Resetting port Ethernet0... OK + ``` + +**config interface mtu (Versions >= 201904)** + +This command is used to configure the mtu for the Physical interface. Use the value 1500 for setting max transfer unit size to 1500 bytes. + +- Usage: + + *Versions >= 201904* + ``` + config interface mtu + ``` + +- Example (Versions >= 201904): + ``` + admin@sonic:~$ sudo config interface mtu Ethernet64 1500 + ``` + +**config interface tpid (Versions >= 202106)** + +This command is used to configure the TPID for the Physical/PortChannel interface. default is 0x8100. Other allowed values if supported by HW SKU (0x9100, 0x9200, 0x88A8). + +- Usage: + + *Versions >= 202106* + ``` + config interface tpid + ``` + +- Example (Versions >= 202106): + ``` + admin@sonic:~$ sudo config interface tpid Ethernet64 0x9200 + ``` + +**config interface breakout (Versions >= 202006)** + +This command is used to set active breakout mode available for user-specified interface based on the platform-specific port configuration file(i.e. platform.json) +and the current mode set for the interface. + +Based on the platform.json and the current mode set in interface, this command acts on setting breakout mode for the interface. + +Double tab i.e. to see the available breakout option customized for each interface provided by the user. + +- Usage: + ``` + sudo config interface breakout --help + Usage: config interface breakout [OPTIONS] MODE + + Set interface breakout mode + + Options: + -f, --force-remove-dependencies + Clear all depenedecies internally first. + -l, --load-predefined-config load predefied user configuration (alias, + lanes, speed etc) first. + -y, --yes + -v, --verbose Enable verbose output + -?, -h, --help Show this message and exit. + ``` +- Example : + ``` + admin@sonic:~$ sudo config interface breakout Ethernet0 + + 1x100G[40G] 2x50G 4x25G[10G] + ``` + + This command also provides "--force-remove-dependencies/-f" option to CLI, which will automatically determine and remove the configuration dependencies using Yang models. + + ``` + admin@sonic:~$ sudo config interface breakout Ethernet0 4x25G[10G] -f -l -v -y + ``` + +For details please refer [DPB HLD DOC](https://github.com/Azure/SONiC/blob/master/doc/dynamic-port-breakout/sonic-dynamic-port-breakout-HLD.md#cli-design) to know more about this command. + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +**config interface autoneg (Versions >= 202106)** + +This command is used to set port auto negotiation mode. + +- Usage: + ``` + sudo config interface autoneg --help + Usage: config interface autoneg [OPTIONS] + + Set interface auto negotiation mode + + Options: + -v, --verbose Enable verbose output + -h, -?, --help Show this message and exit. + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface autoneg Ethernet0 enabled + + admin@sonic:~$ sudo config interface autoneg Ethernet0 disabled + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +**config interface advertised-speeds (Versions >= 202106)** + +This command is used to set port advertised speed. + +- Usage: + ``` + sudo config interface advertised-speeds --help + Usage: config interface advertised-speeds [OPTIONS] + + Set interface advertised speeds + + Options: + -v, --verbose Enable verbose output + -h, -?, --help Show this message and exit. + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface advertised-speeds Ethernet0 all + + admin@sonic:~$ sudo config interface advertised-speeds Ethernet0 50000,100000 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +**config interface advertised-types (Versions >= 202106)** + +This command is used to set port advertised interface types. + +- Usage: + ``` + sudo config interface advertised-types --help + Usage: config interface advertised-types [OPTIONS] + + Set interface advertised types + + Options: + -v, --verbose Enable verbose output + -h, -?, --help Show this message and exit. + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface advertised-types Ethernet0 all + + admin@sonic:~$ sudo config interface advertised-types Ethernet0 CR,CR4 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +**config interface type (Versions >= 202106)** + +This command is used to set port interface type. + +- Usage: + ``` + sudo config interface type --help + Usage: config interface type [OPTIONS] + + Set interface type + + Options: + -v, --verbose Enable verbose output + -h, -?, --help Show this message and exit. + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface type Ethernet0 CR4 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +**config interface cable_length (Versions >= 202006)** + +This command is used to configure the length of the cable connected to a port. The cable_length is in unit of meters and must be suffixed with "m". + +For details please refer [dynamic buffer management](#dynamic-buffer-management) + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +**config interface lossless_pg (Versions >= 202006)** + +This command is used to configure the priority groups on which lossless traffic runs. + +For details please refer [dynamic buffer management](#dynamic-buffer-management) + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +**config interface headroom_override (Versions >= 202006)** + +This command is used to configure a static buffer profile on a port's lossless priorities. There shouldn't be any `lossless_pg` configured on the port when configuring `headroom_override`. The port's headroom won't be updated after `headroom_override` has been configured on the port. + +For details please refer [dynamic buffer management](#dynamic-buffer-management) + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +**config interface mpls add (Versions >= 202106)** + +This command is used for adding MPLS operation on the interface. +MPLS operation for either physical, portchannel, or VLAN interface can be configured using this command. + + +- Usage: + ``` + sudo config interface mpls add --help + Usage: config interface mpls add [OPTIONS] + + Add MPLS operation on the interface + + Options: + -?, -h, --help Show this message and exit. + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface mpls add Ethernet4 + ``` + +**config interface mpls remove (Versions >= 202106)** + +This command is used for removing MPLS operation on the interface. +MPLS operation for either physical, portchannel, or VLAN interface can be configured using this command. + +- Usage: + ``` + sudo config interface mpls remove --help + Usage: config interface mpls remove [OPTIONS] + + Remove MPLS operation from the interface + + Options: + -?, -h, --help Show this message and exit. + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface mpls remove Ethernet4 + ``` + +**config interface ip loopback-action (Versions >= 202205)** + +This command is used for setting the action being taken on packets that ingress and get routed on the same IP interface. +Loopback action can be set on IP interface from type physical, portchannel, VLAN interface and VLAN subinterface. +Loopback action can be drop or forward. + +- Usage: + ``` + config interface ip loopback-action --help + Usage: config interface ip loopback-action [OPTIONS] + + Set IP interface loopback action + + Options: + -?, -h, --help Show this message and exit. + ``` + +- Example: + ``` + admin@sonic:~$ config interface ip loopback-action Ethernet0 drop + admin@sonic:~$ config interface ip loopback-action Ethernet0 forward + + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) + +## Interface Naming Mode + +### Interface naming mode show commands +This command displays the current interface naming mode. Interface naming mode originally set to 'default'. Interfaces are referenced by default SONiC interface names. +Users can change the naming_mode using "config interface_naming_mode" command. + +**show interfaces naming_mode** + +This command displays the current interface naming mode + +- Usage: + ``` + show interfaces naming_mode + ``` + +- Examples: + ``` + admin@sonic:~$ show interfaces naming_mode + default + ``` + + - "default" naming mode will display all SONiC interface names in 'show' commands and accept SONiC interface names as parameters in 'config commands + + ``` + admin@sonic:~$ show interfaces naming_mode + alias + ``` + + - "alias" naming mode will display all hardware vendor interface aliases in 'show' commands and accept hardware vendor interface aliases as parameters in 'config commands + + +### Interface naming mode config commands + +**config interface_naming_ mode** + +This command is used to change the interface naming mode. +Users can select between default mode (SONiC interface names) or alias mode (Hardware vendor names). +The user must log out and log back in for changes to take effect. Note that the newly-applied interface mode will affect all interface-related show/config commands. + + +*NOTE: Some platforms do not support alias mapping. In such cases, this command is not applicable. Such platforms always use the same SONiC interface names.* + +- Usage: + ``` + config interface_naming_mode (default | alias) + ``` + + - Interface naming mode is originally set to 'default'. Interfaces are referenced by default SONiC interface names: + +- Example: + ``` + admin@sonic:~$ show interfaces naming_mode + default + + admin@sonic:~$ show interface status Ethernet0 + Interface Lanes Speed MTU Alias Oper Admin + ----------- -------- ------- ----- -------------- ------ ------- + Ethernet0 101,102 40G 9100 fortyGigE1/1/1 up up + + admin@sonic:~$ sudo config interface_naming_mode alias + Please logout and log back in for changes take effect. + ``` + + - After user logs out and logs back in again, interfaces will then referenced by hardware vendor aliases: + + ``` + admin@sonic:~$ show interfaces naming_mode + alias + + admin@sonic:~$ sudo config interface fortyGigE1/1/1 shutdown + admin@sonic:~$ show interface status fortyGigE1/1/1 + Interface Lanes Speed MTU Alias Oper Admin + ----------- -------- ------- ----- -------------- ------ ------- + Ethernet0 101,102 40G 9100 fortyGigE1/1/1 down down + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interface-naming-mode) + +## Interface Vrf binding + +### Interface vrf bind & unbind config commands + +**config interface vrf bind** + +This command is used to bind a interface to a vrf. +By default, all L3 interfaces will be in default vrf. Above vrf bind command will let users bind interface to a vrf. + +- Usage: + ``` + config interface vrf bind + ``` + +**config interface vrf unbind** + +This command is used to ubind a interface from a vrf. +This will move the interface to default vrf. + +- Usage: + ``` + config interface vrf unbind + ``` + + ### Interface vrf binding show commands + + To display interface vrf binding information, user can use show vrf command. Please refer sub-section [Vrf-show-command](#vrf-show-commands). + +Go Back To [Beginning of the document](#) or [Beginning of this section](#interface-vrf-binding) + +## IP / IPv6 + +### IP show commands + +This sub-section explains the various IP protocol specific show commands that are used to display the following. +1) routes +2) bgp details - Explained in the [bgp section](#show-bgp) +3) IP interfaces +4) prefix-list +5) protocol + +#### show ip route + +This command displays either all the route entries from the routing table or a specific route. + +- Usage: + ``` + show ip route [] [] + ``` + +- Example: + ``` + admin@sonic:~$ show ip route + Codes: K - kernel route, C - connected, S - static, R - RIP, + O - OSPF, I - IS-IS, B - BGP, P - PIM, A - Babel, + > - selected route, * - FIB route + S>* 0.0.0.0/0 [200/0] via 10.11.162.254, eth0 + C>* 1.1.0.0/16 is directly connected, Vlan100 + C>* 10.1.1.0/31 is directly connected, Ethernet112 + C>* 10.1.1.2/31 is directly connected, Ethernet116 + C>* 10.11.162.0/24 is directly connected, eth0 + C>* 127.0.0.0/8 is directly connected, lo + C>* 240.127.1.0/24 is directly connected, docker0 + ``` + + - Optionally, you can specify an IP address in order to display only routes to that particular IP address + +- Example: + ``` + admin@sonic:~$ show ip route 10.1.1.0 + Routing entry for 10.1.1.0/31 + Known via "connected", distance 0, metric 0, best + * directly connected, Ethernet112 + ``` + + - Vrf-name can also be specified to get IPv4 routes programmed in the vrf. + + - Example: + ``` + admin@sonic:~$ show ip route vrf Vrf-red + Codes: K - kernel route, C - connected, S - static, R - RIP, + O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, + T - Table, v - VNC, V - VNC-Direct, A - Babel, D - SHARP, + F - PBR, f - OpenFabric, + > - selected route, * - FIB route + VRF Vrf-red: + C>* 11.1.1.1/32 is directly connected, Loopback11, 21:50:47 + C>* 100.1.1.0/24 is directly connected, Vlan100, 03w1d06h + + admin@sonic:~$ show ip route vrf Vrf-red 11.1.1.1/32 + Routing entry for 11.1.1.1/32 + Known via "connected", distance 0, metric 0, vrf Vrf-red, best + Last update 21:57:53 ago + * directly connected, Loopback11 + ``` + +#### show ip interfaces + +This command displays the details about all the Layer3 IP interfaces in the device for which IP address has been assigned. +The type of interfaces include the following. +1) Front panel physical ports. +2) PortChannel. +3) VLAN interface. +4) Loopback interfaces +5) docker interface and +6) management interface + +- Usage: + ``` + show ip interfaces + ``` + +- Example: + ``` + admin@sonic:~$ show ip interfaces + Interface Master IPv4 address/mask Admin/Oper BGP Neighbor Neighbor IP Flags + ------------- ------------ ------------------ -------------- ------------- ------------- ------- + Loopback0 1.0.0.1/32 up/up N/A N/A + Loopback11 Vrf-red 11.1.1.1/32 up/up N/A N/A + Loopback100 Vrf-blue 100.0.0.1/32 up/up N/A N/A + PortChannel01 10.0.0.56/31 up/down DEVICE1 10.0.0.57 + PortChannel02 10.0.0.58/31 up/down DEVICE2 10.0.0.59 + PortChannel03 10.0.0.60/31 up/down DEVICE3 10.0.0.61 + PortChannel04 10.0.0.62/31 up/down DEVICE4 10.0.0.63 + Vlan100 Vrf-red 1001.1.1/24 up/up N/A N/A + Vlan1000 192.168.0.1/27 up/up N/A N/A + docker0 240.127.1.1/24 up/down N/A N/A + eth0 10.3.147.252/23 up/up N/A N/A + lo 127.0.0.1/8 up/up N/A N/A + ``` + +#### show ip protocol + +This command displays the route-map that is configured for the routing protocol. +Refer the routing stack [Quagga Command Reference](https://www.quagga.net/docs/quagga.pdf) or [FRR Command Reference](https://buildmedia.readthedocs.org/media/pdf/frrouting/latest/frrouting.pdf) to know more about this command. + +- Usage: + ``` + show ip protocol + ``` + +- Example: + ``` + admin@sonic:~$ show ip protocol + Protocol : route-map + ------------------------ + system : none + kernel : none + connected : none + static : none + rip : none + ripng : none + ospf : none + ospf6 : none + isis : none + bgp : RM_SET_SRC + pim : none + hsls : none + olsr : none + babel : none + any : none + ``` + +### IPv6 show commands + +This sub-section explains the various IPv6 protocol specific show commands that are used to display the following. +1) routes +2) IPv6 bgp details - Explained in the [bgp section](#show-bgp) +3) IP interfaces +4) protocol + +**show ipv6 route** + +This command displays either all the IPv6 route entries from the routing table or a specific IPv6 route. + +- Usage: + ``` + show ipv6 route [] [] + ``` + +- Example: + ``` + admin@sonic:~$ show ipv6 route + Codes: K - kernel route, C - connected, S - static, R - RIPng, + O - OSPFv6, I - IS-IS, B - BGP, A - Babel, + > - selected route, * - FIB route + + C>* ::1/128 is directly connected, lo + C>* 2018:2001::/126 is directly connected, Ethernet112 + C>* 2018:2002::/126 is directly connected, Ethernet116 + C>* fc00:1::32/128 is directly connected, lo + C>* fc00:1::102/128 is directly connected, lo + C>* fc00:2::102/128 is directly connected, eth0 + C * fe80::/64 is directly connected, Vlan100 + C * fe80::/64 is directly connected, Ethernet112 + C * fe80::/64 is directly connected, Ethernet116 + C * fe80::/64 is directly connected, Bridge + C * fe80::/64 is directly connected, PortChannel0011 + C>* fe80::/64 is directly connected, eth0 + ``` + - Optionally, you can specify an IPv6 address in order to display only routes to that particular IPv6 address + + +- Example: + ``` + admin@sonic:~$ show ipv6 route fc00:1::32 + Routing entry for fc00:1::32/128 + Known via "connected", distance 0, metric 0, best + * directly connected, lo + ``` + + Vrf-name can also be specified to get IPv6 routes programmed in the vrf. + + - Example: + ``` + admin@sonic:~$ show ipv6 route vrf Vrf-red + Codes: K - kernel route, C - connected, S - static, R - RIP, + O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, + T - Table, v - VNC, V - VNC-Direct, A - Babel, D - SHARP, + F - PBR, f - OpenFabric, + > - selected route, * - FIB route + VRF Vrf-red: + C>* 1100::1/128 is directly connected, Loopback11, 21:50:47 + C>* 100::/112 is directly connected, Vlan100, 03w1d06h + C>* fe80::/64 is directly connected, Loopback11, 21:50:47 + C>* fe80::/64 is directly connected, Vlan100, 03w1d06h + + admin@sonic:~$ show ipv6 route vrf Vrf-red 1100::1/128 + Routing entry for 1100::1/128 + Known via "connected", distance 0, metric 0, vrf Vrf-red, best + Last update 21:57:53 ago + * directly connected, Loopback11 + ``` + +**show ipv6 interfaces** + +This command displays the details about all the Layer3 IPv6 interfaces in the device for which IPv6 address has been assigned. +The type of interfaces include the following. +1) Front panel physical ports. +2) PortChannel. +3) VLAN interface. +4) Loopback interfaces +5) management interface + +- Usage: + ``` + show ipv6 interfaces + ``` + +- Example: + ``` + admin@sonic:~$ show ipv6 interfaces + Interface Master IPv6 address/mask Admin/Oper BGP Neighbor Neighbor IP + ----------- -------- ---------------------------------------- ------------ -------------- ------------- + Bridge fe80::7c45:1dff:fe08:cdd%Bridge/64 up/up N/A N/A + Loopback11 Vrf-red 1100::1/128 up/up + PortChannel01 fc00::71/126 up/down DEVICE1 fc00::72 + PortChannel02 fc00::75/126 up/down DEVICE2 fc00::76 + PortChannel03 fc00::79/126 up/down DEVICE3 fc00::7a + PortChannel04 fc00::7d/126 up/down DEVICE4 fc00::7e + Vlan100 Vrf-red 100::1/112 up/up N/A N/A + fe80::eef4:bbff:fefe:880a%Vlan100/64 + eth0 fe80::eef4:bbff:fefe:880a%eth0/64 up/up N/A N/A + lo fc00:1::32/128 up/up N/A N/A + ``` + +**show ipv6 protocol** + +This command displays the route-map that is configured for the IPv6 routing protocol. +Refer the routing stack [Quagga Command Reference](https://www.quagga.net/docs/quagga.pdf) or [FRR Command Reference](https://buildmedia.readthedocs.org/media/pdf/frrouting/latest/frrouting.pdf) to know more about this command. + + +- Usage: + ``` + show ipv6 protocol + ``` + +- Example: + ``` + admin@sonic:~$ show ipv6 protocol + Protocol : route-map + ------------------------ + system : none + kernel : none + connected : none + static : none + rip : none + ripng : none + ospf : none + ospf6 : none + isis : none + bgp : RM_SET_SRC6 + pim : none + hsls : none + olsr : none + babel : none + any : none + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#ip--ipv6) + +## IPv6 Link Local + +### IPv6 Link Local config commands + +This section explains all the commands that are supported in SONiC to configure IPv6 Link-local. + +**config interface ipv6 enable use-link-local-only ** + +This command enables user to enable an interface to forward L3 traffic with out configuring an address. This command creates the routing interface based on the auto generated IPv6 link-local address. This command can be used even if an address is configured on the interface. + +- Usage: + ``` + config interface ipv6 enable use-link-local-only + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface ipv6 enable use-link-local-only Vlan206 + admin@sonic:~$ sudo config interface ipv6 enable use-link-local-only PortChannel007 + admin@sonic:~$ sudo config interface ipv6 enable use-link-local-only Ethernet52 + ``` + +**config interface ipv6 disable use-link-local-only ** + +This command enables user to disable use-link-local-only configuration on an interface. + +- Usage: + ``` + config interface ipv6 disable use-link-local-only + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface ipv6 disable use-link-local-only Vlan206 + admin@sonic:~$ sudo config interface ipv6 disable use-link-local-only PortChannel007 + admin@sonic:~$ sudo config interface ipv6 disable use-link-local-only Ethernet52 + ``` + +**config ipv6 enable link-local** + +This command enables user to enable use-link-local-only command on all the interfaces globally. + +- Usage: + ``` + sudo config ipv6 enable link-local + ``` + +- Example: + ``` + admin@sonic:~$ sudo config ipv6 enable link-local + ``` + +**config ipv6 disable link-local** + +This command enables user to disable use-link-local-only command on all the interfaces globally. + +- Usage: + ``` + sudo config ipv6 disable link-local + ``` + +- Example: + ``` + admin@sonic:~$ sudo config ipv6 disable link-local + ``` + +### IPv6 Link Local show commands + +**show ipv6 link-local-mode** + +This command displays the link local mode of all the interfaces. + +- Usage: + ``` + show ipv6 link-local-mode + ``` + +- Example: + ``` + root@sonic:/home/admin# show ipv6 link-local-mode + +------------------+----------+ + | Interface Name | Mode | + +==================+==========+ + | Ethernet16 | Disabled | + +------------------+----------+ + | Ethernet18 | Enabled | + +------------------+----------+ + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#ipv6-link-local) + +## Kubernetes + +### Kubernetes show commands + +**show kubernetes server config** + +This command displays the kubernetes server configuration, if any, else would report as not configured. + +- Usage: + ``` + show kubernetes server config + ``` + +- Example: + ``` + admin@sonic:~$ show kubernetes server config + ip port insecure disable + ----------- ------ ---------- --------- + 10.3.157.24 6443 True False + ``` + +**show kubernetes server status** + +This command displays the kubernetes server status. + +- Usage: + ``` + show kubernetes server status + ``` + +- Example: + ``` + admin@sonic:~$ show kubernetes server status + ip port connected update-time + ----------- ------ ----------- ------------------- + 10.3.157.24 6443 true 2020-11-15 18:25:05 + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#Kubernetes) + +## Linux Kernel Dump + +This section demonstrates the show commands and configuration commands of Linux kernel dump mechanism in SONiC. + +### Linux Kernel Dump show commands + +**show kdump config** + +This command shows the configuration of Linux kernel dump. + +- Usage: + ``` + show kdump config + ``` + +- Example: + ``` + admin@sonic:$ show kdump config + Kdump administrative mode: Disabled + Kdump operational mode: Unready + Kdump memory researvation: 0M-2G:256M,2G-4G:320M,4G-8G:384M,8G-:448M + Maximum number of Kdump files: 3 + ``` + +**show kdump files** + +This command shows the Linux kernel core dump files and dmesg files which are +generated by kernel dump tool. + +- Usage: + ``` + show kdump files + ``` + +- Example: + ``` + admin@sonic:~$ show kdump files + Kernel core dump files Kernel dmesg files + ------------------------------------------ ------------------------------------------ + /var/crash/202106242344/kdump.202106242344 /var/crash/202106242344/dmesg.202106242344 + /var/crash/202106242337/kdump.202106242337 /var/crash/202106242337/dmesg.202106242337 + ``` + +**show kdump logging ** + +By default, this command will show the last 10 lines of latest dmesg file. +This command can also accept a specific file name and number of lines as arguments. + +- Usage: + ``` + show kdump logging + ``` + +- Example: + ``` + admin@sonic:~$ show kdump logging + [ 157.642053] RSP: 002b:00007fff1beee708 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 + [ 157.732635] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007fc3887d4504 + [ 157.818015] RDX: 0000000000000002 RSI: 000055d388eceb40 RDI: 0000000000000001 + [ 157.903401] RBP: 000055d388eceb40 R08: 000000000000000a R09: 00007fc3888255f0 + [ 157.988784] R10: 000000000000000a R11: 0000000000000246 R12: 00007fc3888a6760 + [ 158.074166] R13: 0000000000000002 R14: 00007fc3888a1760 R15: 0000000000000002 + [ 158.159553] Modules linked in: nft_chain_route_ipv6(E) nft_chain_route_ipv4(E) xt_TCPMSS(E) dummy(E) team_mode_loadbalance(E) team(E) sx_bfd(OE) sx_netdev(OE) psample(E) sx_core(OE) 8021q(E) garp(E) mrp(E) mst_pciconf(OE) mst_pci(OE) xt_hl(E) xt_tcpudp(E) ip6_tables(E) nft_compat(E) nft_chain_nat_ipv4(E) nf_nat_ipv4(E) nft_counter(E) xt_conntrack(E) nf_nat(E) jc42(E) nf_conntrack_netlink(E) nf_conntrack(E) nf_defrag_ipv6(E) nf_defrag_ipv4(E) libcrc32c(E) xfrm_user(E) xfrm_algo(E) mlxsw_minimal(E) mlxsw_i2c(E) i2c_mux_reg(E) i2c_mux(E) i2c_mlxcpld(E) leds_mlxreg(E) mlxreg_io(E) mlxreg_hotplug(E) mei_wdt(E) evdev(E) intel_rapl(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) kvm_intel(E) mlx_platform(E) kvm(E) irqbypass(E) crct10dif_pclmul(E) crc32_pclmul(E) ghash_clmulni_intel(E) intel_cstate(E) intel_uncore(E) + [ 159.016731] intel_rapl_perf(E) pcspkr(E) sg(E) iTCO_wdt(E) iTCO_vendor_support(E) mei_me(E) mei(E) bonding(E) pcc_cpufreq(E) video(E) button(E) ebt_vlan(E) ebtable_broute(E) bridge(E) stp(E) llc(E) ebtable_nat(E) ebtable_filter(E) ebtables(E) nf_tables(E) nfnetlink(E) xdpe12284(E) at24(E) ledtrig_timer(E) tmp102(E) lm75(E) drm(E) coretemp(E) max1363(E) industrialio_triggered_buffer(E) kfifo_buf(E) industrialio(E) tps53679(E) fuse(E) pmbus(E) pmbus_core(E) i2c_dev(E) configfs(E) ip_tables(E) x_tables(E) autofs4(E) loop(E) ext4(E) crc16(E) mbcache(E) jbd2(E) crc32c_generic(E) fscrypto(E) ecb(E) crypto_simd(E) cryptd(E) glue_helper(E) aes_x86_64(E) nvme(E) nvme_core(E) nls_utf8(E) nls_cp437(E) nls_ascii(E) vfat(E) fat(E) overlay(E) squashfs(E) zstd_decompress(E) xxhash(E) sd_mod(E) gpio_ich(E) ahci(E) + [ 159.864532] libahci(E) mlxsw_core(E) devlink(E) ehci_pci(E) ehci_hcd(E) crc32c_intel(E) libata(E) i2c_i801(E) scsi_mod(E) usbcore(E) usb_common(E) lpc_ich(E) mfd_core(E) e1000e(E) fan(E) thermal(E) + [ 160.075846] CR2: 0000000000000000 + ``` +You can specify a file name in order to show its +last 10 lines. + +- Example: + ``` + admin@sonic:~$ show kdump logging dmesg.202106242337 + [ 654.120195] RSP: 002b:00007ffe697690f8 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 + [ 654.210778] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007fcfca27b504 + [ 654.296157] RDX: 0000000000000002 RSI: 000055a6e4d1b3f0 RDI: 0000000000000001 + [ 654.381543] RBP: 000055a6e4d1b3f0 R08: 000000000000000a R09: 00007fcfca2cc5f0 + [ 654.466925] R10: 000000000000000a R11: 0000000000000246 R12: 00007fcfca34d760 + [ 654.552310] R13: 0000000000000002 R14: 00007fcfca348760 R15: 0000000000000002 + [ 654.637694] Modules linked in: binfmt_misc(E) nft_chain_route_ipv6(E) nft_chain_route_ipv4(E) xt_TCPMSS(E) dummy(E) team_mode_loadbalance(E) team(E) sx_bfd(OE) sx_netdev(OE) psample(E) sx_core(OE) 8021q(E) garp(E) mrp(E) mst_pciconf(OE) mst_pci(OE) xt_hl(E) xt_tcpudp(E) ip6_tables(E) nft_chain_nat_ipv4(E) nf_nat_ipv4(E) nft_compat(E) nft_counter(E) xt_conntrack(E) nf_nat(E) jc42(E) nf_conntrack_netlink(E) nf_conntrack(E) nf_defrag_ipv6(E) nf_defrag_ipv4(E) libcrc32c(E) xfrm_user(E) xfrm_algo(E) mlxsw_minimal(E) mlxsw_i2c(E) i2c_mux_reg(E) i2c_mux(E) mlxreg_hotplug(E) mlxreg_io(E) i2c_mlxcpld(E) leds_mlxreg(E) mei_wdt(E) evdev(E) intel_rapl(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) kvm_intel(E) kvm(E) mlx_platform(E) irqbypass(E) crct10dif_pclmul(E) crc32_pclmul(E) ghash_clmulni_intel(E) intel_cstate(E) + [ 655.493833] intel_uncore(E) intel_rapl_perf(E) pcspkr(E) sg(E) iTCO_wdt(E) iTCO_vendor_support(E) mei_me(E) mei(E) bonding(E) video(E) button(E) pcc_cpufreq(E) ebt_vlan(E) ebtable_broute(E) bridge(E) stp(E) llc(E) ebtable_nat(E) ebtable_filter(E) ebtables(E) nf_tables(E) nfnetlink(E) xdpe12284(E) at24(E) ledtrig_timer(E) tmp102(E) drm(E) lm75(E) coretemp(E) max1363(E) industrialio_triggered_buffer(E) kfifo_buf(E) industrialio(E) fuse(E) tps53679(E) pmbus(E) pmbus_core(E) i2c_dev(E) configfs(E) ip_tables(E) x_tables(E) autofs4(E) loop(E) ext4(E) crc16(E) mbcache(E) jbd2(E) crc32c_generic(E) fscrypto(E) ecb(E) crypto_simd(E) cryptd(E) glue_helper(E) aes_x86_64(E) nvme(E) nvme_core(E) nls_utf8(E) nls_cp437(E) nls_ascii(E) vfat(E) fat(E) overlay(E) squashfs(E) zstd_decompress(E) xxhash(E) sd_mod(E) + [ 656.337476] gpio_ich(E) ahci(E) mlxsw_core(E) libahci(E) devlink(E) crc32c_intel(E) libata(E) i2c_i801(E) scsi_mod(E) lpc_ich(E) mfd_core(E) ehci_pci(E) ehci_hcd(E) usbcore(E) e1000e(E) usb_common(E) fan(E) thermal(E) + [ 656.569590] CR2: 0000000000000000 + ``` +You can also specify a file name and number of lines in order to show the +last number of lines. + +- Example: + ``` + admin@sonic:~$ show kdump logging dmesg.202106242337 -l 20 + [ 653.525427] __handle_sysrq.cold.9+0x45/0xf2 + [ 653.576487] write_sysrq_trigger+0x2b/0x30 + [ 653.625472] proc_reg_write+0x39/0x60 + [ 653.669252] vfs_write+0xa5/0x1a0 + [ 653.708881] ksys_write+0x57/0xd0 + [ 653.748501] do_syscall_64+0x53/0x110 + [ 653.792287] entry_SYSCALL_64_after_hwframe+0x44/0xa9 + [ 653.852707] RIP: 0033:0x7fcfca27b504 + [ 653.895452] Code: 00 f7 d8 64 89 02 48 c7 c0 ff ff ff ff eb b3 0f 1f 80 00 00 00 00 48 8d 05 f9 61 0d 00 8b 00 85 c0 75 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 41 54 49 89 d4 55 48 89 f5 53 + [ 654.120195] RSP: 002b:00007ffe697690f8 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 + [ 654.210778] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007fcfca27b504 + [ 654.296157] RDX: 0000000000000002 RSI: 000055a6e4d1b3f0 RDI: 0000000000000001 + [ 654.381543] RBP: 000055a6e4d1b3f0 R08: 000000000000000a R09: 00007fcfca2cc5f0 + [ 654.466925] R10: 000000000000000a R11: 0000000000000246 R12: 00007fcfca34d760 + [ 654.552310] R13: 0000000000000002 R14: 00007fcfca348760 R15: 0000000000000002 + [ 654.637694] Modules linked in: binfmt_misc(E) nft_chain_route_ipv6(E) nft_chain_route_ipv4(E) xt_TCPMSS(E) dummy(E) team_mode_loadbalance(E) team(E) sx_bfd(OE) sx_netdev(OE) psample(E) sx_core(OE) 8021q(E) garp(E) mrp(E) mst_pciconf(OE) mst_pci(OE) xt_hl(E) xt_tcpudp(E) ip6_tables(E) nft_chain_nat_ipv4(E) nf_nat_ipv4(E) nft_compat(E) nft_counter(E) xt_conntrack(E) nf_nat(E) jc42(E) nf_conntrack_netlink(E) nf_conntrack(E) nf_defrag_ipv6(E) nf_defrag_ipv4(E) libcrc32c(E) xfrm_user(E) xfrm_algo(E) mlxsw_minimal(E) mlxsw_i2c(E) i2c_mux_reg(E) i2c_mux(E) mlxreg_hotplug(E) mlxreg_io(E) i2c_mlxcpld(E) leds_mlxreg(E) mei_wdt(E) evdev(E) intel_rapl(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) kvm_intel(E) kvm(E) mlx_platform(E) irqbypass(E) crct10dif_pclmul(E) crc32_pclmul(E) ghash_clmulni_intel(E) intel_cstate(E) + [ 655.493833] intel_uncore(E) intel_rapl_perf(E) pcspkr(E) sg(E) iTCO_wdt(E) iTCO_vendor_support(E) mei_me(E) mei(E) bonding(E) video(E) button(E) pcc_cpufreq(E) ebt_vlan(E) ebtable_broute(E) bridge(E) stp(E) llc(E) ebtable_nat(E) ebtable_filter(E) ebtables(E) nf_tables(E) nfnetlink(E) xdpe12284(E) at24(E) ledtrig_timer(E) tmp102(E) drm(E) lm75(E) coretemp(E) max1363(E) industrialio_triggered_buffer(E) kfifo_buf(E) industrialio(E) fuse(E) tps53679(E) pmbus(E) pmbus_core(E) i2c_dev(E) configfs(E) ip_tables(E) x_tables(E) autofs4(E) loop(E) ext4(E) crc16(E) mbcache(E) jbd2(E) crc32c_generic(E) fscrypto(E) ecb(E) crypto_simd(E) cryptd(E) glue_helper(E) aes_x86_64(E) nvme(E) nvme_core(E) nls_utf8(E) nls_cp437(E) nls_ascii(E) vfat(E) fat(E) overlay(E) squashfs(E) zstd_decompress(E) xxhash(E) sd_mod(E) + [ 656.337476] gpio_ich(E) ahci(E) mlxsw_core(E) libahci(E) devlink(E) crc32c_intel(E) libata(E) i2c_i801(E) scsi_mod(E) lpc_ich(E) mfd_core(E) ehci_pci(E) ehci_hcd(E) usbcore(E) e1000e(E) usb_common(E) fan(E) thermal(E) + [ 656.569590] CR2: 0000000000000000 + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#kdump) + +## LLDP + +### LLDP show commands + +**show lldp table** + +This command displays the brief summary of all LLDP neighbors. + +- Usage: + ``` + show lldp table + ``` + +- Example: + ``` + admin@sonic:~$ show lldp table + Capability codes: (R) Router, (B) Bridge, (O) Other + LocalPort RemoteDevice RemotePortID Capability RemotePortDescr + ----------- ----------------- ------------------- ------------ -------------------- + Ethernet112 T1-1 hundredGigE1/2 BR T0-2:hundredGigE1/29 + Ethernet116 T1-2 hundredGigE1/2 BR T0-2:hundredGigE1/30 + eth0 swtor-b2lab2-1610 GigabitEthernet 0/2 OBR + -------------------------------------------------- + Total entries displayed: 3 + ``` + +**show lldp neighbors** + +This command displays more details about all LLDP neighbors or only the neighbors connected to a specific interface. + +- Usage: + ``` + show lldp neighbors + ``` + +- Example1: To display all neighbors in all interfaces + ``` + admin@sonic:~$ show lldp neighbors + ------------------------------------------------------------------------------- + LLDP neighbors: + ------------------------------------------------------------------------------- + Interface: eth0, via: LLDP, RID: 1, Time: 0 day, 12:21:21 + Chassis: + ChassisID: mac 00:01:e8:81:e3:45 + SysName: swtor-b2lab2-1610 + SysDescr: Dell Force10 Networks Real Time Operating System Software. Dell Force10 Operating System Version: 1.0. Dell Force10 Application Software Version: 8.3.3.10d. Copyright (c) 1999-2012 by Dell Inc. All Rights Reserved.Build Time: Tue Sep 22 11:21:54 PDT 2015 + TTL: 20 + Capability: Repeater, on + Capability: Bridge, on + Capability: Router, on + Port: + PortID: ifname GigabitEthernet 0/2 + VLAN: 162, pvid: yes + ------------------------------------------------------------------------------- + Interface: Ethernet116, via: LLDP, RID: 3, Time: 0 day, 12:20:49 + Chassis: + ChassisID: mac 4c:76:25:e7:f0:c0 + SysName: T1-2 + SysDescr: Debian GNU/Linux 8 (jessie) Linux 4.9.0-8-amd64 #1 SMP Debian 4.9.110-3+deb9u6 (2015-12-19) x86_64 + TTL: 120 + MgmtIP: 10.11.162.40 + Capability: Bridge, on + Capability: Router, on + Capability: Wlan, off + Capability: Station, off + Port: + PortID: local hundredGigE1/2 + PortDescr: T0-2:hundredGigE1/30 + ------------------------------------------------------------------------------- + ``` + +Optionally, you can specify an interface name in order to display only that particular interface + +- Example2: + ``` + admin@sonic:~$ show lldp neighbors Ethernet112 + show lldp neighbors Ethernet112 + ------------------------------------------------------------------------------- + LLDP neighbors: + ------------------------------------------------------------------------------- + Interface: Ethernet112, via: LLDP, RID: 2, Time: 0 day, 19:24:17 + Chassis: + ChassisID: mac 4c:76:25:e5:e6:c0 + SysName: T1-1 + SysDescr: Debian GNU/Linux 8 (jessie) Linux 4.9.0-8-amd64 #1 SMP Debian 4.9.110-3+deb9u6 (2015-12-19) x86_64 + TTL: 120 + MgmtIP: 10.11.162.41 + Capability: Bridge, on + Capability: Router, on + Capability: Wlan, off + Capability: Station, off + Port: + PortID: local hundredGigE1/2 + PortDescr: T0-2:hundredGigE1/29 + ------------------------------------------------------------------------------- + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#lldp) + + +## Loading, Reloading And Saving Configuration + +This section explains the commands that are used to load the configuration from either the ConfigDB or from the minigraph. + +### Loading configuration from JSON file + +**config load** + +This command is used to load the configuration from a JSON file like the file which SONiC saves its configuration to, `/etc/sonic/config_db.json` +This command loads the configuration from the input file (if user specifies this optional filename, it will use that input file. Otherwise, it will use the default `/etc/sonic/config_db.json` file as the input file) into CONFIG_DB. +The configuration present in the input file is applied on top of the already running configuration. +This command does not flush the config DB before loading the new configuration (i.e., If the configuration present in the input file is same as the current running configuration, nothing happens) +If the config present in the input file is not present in running configuration, it will be added. +If the config present in the input file differs (when key matches) from that of the running configuration, it will be modified as per the new values for those keys. + +When user specifies the optional argument "-y" or "--yes", this command forces the loading without prompting the user for confirmation. +If the argument is not specified, it prompts the user to confirm whether user really wants to load this configuration file. + +- Usage: + ``` + config load [-y|--yes] [] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config load + Load config from the file /etc/sonic/config_db.json? [y/N]: y + Running command: /usr/local/bin/sonic-cfggen -j /etc/sonic/config_db.json --write-to-db + ``` + +### Loading configuration from minigraph (XML) file + +**config load_minigraph** + +This command is used to load the configuration from /etc/sonic/minigraph.xml. +When users do not want to use configuration from config_db.json, they can copy the minigraph.xml configuration file to the device and load it using this command. +This command restarts various services running in the device and it takes some time to complete the command. + +NOTE: If the user had logged in using SSH, users might get disconnected and some configuration failures might happen which might be hard to recover. Users need to reconnect their SSH sessions after configuring the management IP address. It is recommended to execute this command from console port +NOTE: Management interface IP address and default route (or specific route) may require reconfiguration in case if those parameters are not part of the minigraph.xml. + +When user specifies the optional argument "-y" or "--yes", this command forces the loading without prompting the user for confirmation. +If the argument is not specified, it prompts the user to confirm whether user really wants to load this configuration file. + +When user specifies the optional argument "-n" or "--no-service-restart", this command loads the configuration without restarting dependent services +running on the device. One use case for this option is during boot time when config-setup service loads minigraph configuration and there is no services +running on the device. + +When user specifies the optional argument "-t" or "--traffic-shift-away", this command executes TSA command at the end to ensure the device remains in maintenance after loading minigraph. + +- Usage: + ``` + config load_minigraph [-y|--yes] [-n|--no-service-restart] [-t|--traffic-shift-away] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config load_minigraph + Reload config from minigraph? [y/N]: y + Running command: /usr/local/bin/sonic-cfggen -j /etc/sonic/config_db.json --write-to-db + ``` + +### Reloading Configuration + +**config reload** + +This command is used to clear current configuration and import new configurationn from the input file or from /etc/sonic/config_db.json. +This command shall stop all services before clearing the configuration and it then restarts those services. + +This command restarts various services running in the device and it takes some time to complete the command. +NOTE: If the user had logged in using SSH, users **might get disconnected** depending upon the new management IP address. Users need to reconnect their SSH sessions. +In general, it is recommended to execute this command from console port after disconnecting all SSH sessions to the device. +When users to do “config reload” the newly loaded config may have management IP address, or it may not have management IP address. +If mgmtIP is there in the newly loaded config file, that mgmtIP might be same as previously configured value or it might be different. +This difference in mgmtIP address values results in following possible behaviours. + +Case1: Previously configured mgmtIP is same as newly loaded mgmtIP. The SSH session may not be affected at all, but it’s possible that there will be a brief interruption in the SSH session. But, assuming the client’s timeout value isn’t on the order of a couple of seconds, the session would most likely just resume again as soon as the interface is reconfigured and up with the same IP. +Case2: Previously configured mgmtIP is different from newly loaded mgmtIP. Users will lose their SSH connections. +Case3: Newly loaded config does not have any mgmtIP. Users will lose their SSH connections. + +NOTE: Management interface IP address and default route (or specific route) may require reconfiguration in case if those parameters are not part of the minigraph.xml. + +When user specifies the optional argument "-y" or "--yes", this command forces the loading without prompting the user for confirmation. +If the argument is not specified, it prompts the user to confirm whether user really wants to load this configuration file. + +When user specifies the optional argument "-n" or "--no-service-restart", this command clear and loads the configuration without restarting dependent services +running on the device. One use case for this option is during boot time when config-setup service loads existing old configuration and there is no services +running on the device. + +When user specifies the optional argument "-f" or "--force", this command ignores the system sanity checks. By default a list of sanity checks are performed and if one of the checks fail, the command will not execute. The sanity checks include ensuring the system status is not starting, all the essential services are up and swss is in ready state. + +- Usage: + ``` + config reload [-y|--yes] [-l|--load-sysinfo] [] [-n|--no-service-restart] [-f|--force] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config reload + Clear current config and reload config from the file /etc/sonic/config_db.json? [y/N]: y + Running command: systemctl stop dhcp_relay + Running command: systemctl stop swss + Running command: systemctl stop snmp + Warning: Stopping snmp.service, but it can still be activated by: + snmp.timer + Running command: systemctl stop lldp + Running command: systemctl stop pmon + Running command: systemctl stop bgp + Running command: systemctl stop teamd + Running command: /usr/local/bin/sonic-cfggen -H -k Force10-Z9100-C32 --write-to-db + Running command: /usr/local/bin/sonic-cfggen -j /etc/sonic/config_db.json --write-to-db + Running command: systemctl restart hostname-config + Running command: systemctl restart interfaces-config + Timeout, server 10.11.162.42 not responding. + ``` + When some sanity checks fail below error messages can be seen + ``` + admin@sonic:~$ sudo config reload -y + System is not up. Retry later or use -f to avoid system checks + ``` + ``` + admin@sonic:~$ sudo config reload -y + Relevant services are not up. Retry later or use -f to avoid system checks + ``` + ``` + admin@sonic:~$ sudo config reload -y + SwSS container is not ready. Retry later or use -f to avoid system checks + ``` + + +### Loading Management Configuration + +**config load_mgmt_config** + +This command is used to reconfigure hostname and mgmt interface based on device description file. +This command either uses the optional file specified as arguement or looks for the file "/etc/sonic/device_desc.xml". +If the file does not exist or if the file does not have valid fields for "hostname" and "ManagementAddress" (or "ManagementAddressV6"), it fails. + +When user specifies the optional argument "-y" or "--yes", this command forces the loading without prompting the user for confirmation. +If the argument is not specified, it prompts the user to confirm whether user really wants to load this configuration file. + +- Usage: + ``` + config load_mgmt_config [-y|--yes] [] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config load_mgmt_config + Reload config from minigraph? [y/N]: y + Running command: /usr/local/bin/sonic-cfggen -M /etc/sonic/device_desc.xml --write-to-db + ``` + + +### Saving Configuration to a File for Persistence + +**config save** + +This command is to save the config DB configuration into the user-specified filename or into the default /etc/sonic/config_db.json. This saves the configuration into the disk which is available even after reboots. +Saved file can be transferred to remote machines for debugging. If users wants to load the configuration from this new file at any point of time, they can use "config load" command and provide this newly generated file as input. If users wants this newly generated file to be used during reboot, they need to copy this file to /etc/sonic/config_db.json. + +- Usage: + ``` + config save [-y|--yes] [] + ``` + +- Example (Save configuration to /etc/sonic/config_db.json): + ``` + admin@sonic:~$ sudo config save -y + ``` + +- Example (Save configuration to a specified file): + ``` + admin@sonic:~$ sudo config save -y /etc/sonic/config2.json + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#loading-reloading-and-saving-configuration) + +## Loopback Interfaces + +### Loopback show commands + +Please check [show ip interfaces](#show-ip-interfaces) + +### Loopback config commands + +This sub-section explains how to create and delete loopback interfaces. + +**config interface loopback** + +This command is used to add or delete loopback interfaces. +It is recommended to use loopback names in the format "Loopbackxxx", where "xxx" is number of 1 to 3 digits. Ex: "Loopback11". + +- Usage: + ``` + config loopback (add | del) + ``` + +- Example (Create the loopback with name "Loopback11"): + ``` + admin@sonic:~$ sudo config loopback add Loopback11 + ``` + +# MACsec Commands + +This sub-section explains the list of the configuration options available for MACsec. MACsec feature is as a plugin to SONiC, So please install MACsec package before using MACsec commands. + +## MACsec config command + +- Add MACsec profile +``` +admin@sonic:~$ sudo config macsec profile add --help +Usage: config macsec profile add [OPTIONS] + + Add MACsec profile + +Options: + --priority For Key server election. In 0-255 range with + 0 being the highest priority. [default: + 255] + --cipher_suite The cipher suite for MACsec. [default: GCM- + AES-128] + --primary_cak Primary Connectivity Association Key. + [required] + --primary_ckn Primary CAK Name. [required] + --policy MACsec policy. INTEGRITY_ONLY: All traffic, + except EAPOL, will be converted to MACsec + packets without encryption. SECURITY: All + traffic, except EAPOL, will be encrypted by + SecY. [default: security] + --enable_replay_protect / --disable_replay_protect + Whether enable replay protect. [default: + False] + --replay_window + Replay window size that is the number of + packets that could be out of order. This + field works only if ENABLE_REPLAY_PROTECT is + true. [default: 0] + --send_sci / --no_send_sci Send SCI in SecTAG field of MACsec header. + [default: True] + --rekey_period The period of proactively refresh (Unit + second). [default: 0] + -?, -h, --help Show this message and exit. +``` + +- Delete MACsec profile +``` +admin@sonic:~$ sudo config macsec profile del --help +Usage: config macsec profile del [OPTIONS] + + Delete MACsec profile + +Options: + -?, -h, --help Show this message and exit. +``` + +- Enable MACsec on the port +``` +admin@sonic:~$ sudo config macsec port add --help +Usage: config macsec port add [OPTIONS] + + Add MACsec port + +Options: + -?, -h, --help Show this message and exit. +``` + + +- Disable MACsec on the port +``` +admin@sonic:~$ sudo config macsec port del --help +Usage: config macsec port del [OPTIONS] + + Delete MACsec port + +Options: + -?, -h, --help Show this message and exit. + +``` + + +## MACsec show command + +- Show MACsec + +``` +admin@vlab-02:~$ show macsec --help +Usage: show macsec [OPTIONS] [INTERFACE_NAME] + +Options: + -d, --display [all] Show internal interfaces [default: all] + -n, --namespace [] Namespace name or all + -h, -?, --help Show this message and exit. + +``` + +``` +admin@vlab-02:~$ show macsec +MACsec port(Ethernet0) +--------------------- ----------- +cipher_suite GCM-AES-256 +enable true +enable_encrypt true +enable_protect true +enable_replay_protect false +replay_window 0 +send_sci true +--------------------- ----------- + MACsec Egress SC (5254008f4f1c0001) + ----------- - + encoding_an 2 + ----------- - + MACsec Egress SA (1) + ------------------------------------- ---------------------------------------------------------------- + auth_key 849B69D363E2B0AA154BEBBD7C1D9487 + next_pn 1 + sak AE8C9BB36EA44B60375E84BC8E778596289E79240FDFA6D7BA33D3518E705A5E + salt 000000000000000000000000 + ssci 0 + SAI_MACSEC_SA_ATTR_CURRENT_XPN 179 + SAI_MACSEC_SA_STAT_OCTETS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OCTETS_PROTECTED 0 + SAI_MACSEC_SA_STAT_OUT_PKTS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OUT_PKTS_PROTECTED 0 + ------------------------------------- ---------------------------------------------------------------- + MACsec Egress SA (2) + ------------------------------------- ---------------------------------------------------------------- + auth_key 5A8B8912139551D3678B43DD0F10FFA5 + next_pn 1 + sak 7F2651140F12C434F782EF9AD7791EE2CFE2BF315A568A48785E35FC803C9DB6 + salt 000000000000000000000000 + ssci 0 + SAI_MACSEC_SA_ATTR_CURRENT_XPN 87185 + SAI_MACSEC_SA_STAT_OCTETS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OCTETS_PROTECTED 0 + SAI_MACSEC_SA_STAT_OUT_PKTS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OUT_PKTS_PROTECTED 0 + ------------------------------------- ---------------------------------------------------------------- + MACsec Ingress SC (525400edac5b0001) + MACsec Ingress SA (1) + --------------------------------------- ---------------------------------------------------------------- + active true + auth_key 849B69D363E2B0AA154BEBBD7C1D9487 + lowest_acceptable_pn 1 + sak AE8C9BB36EA44B60375E84BC8E778596289E79240FDFA6D7BA33D3518E705A5E + salt 000000000000000000000000 + ssci 0 + SAI_MACSEC_SA_ATTR_CURRENT_XPN 103 + SAI_MACSEC_SA_STAT_IN_PKTS_DELAYED 0 + SAI_MACSEC_SA_STAT_IN_PKTS_INVALID 0 + SAI_MACSEC_SA_STAT_IN_PKTS_LATE 0 + SAI_MACSEC_SA_STAT_IN_PKTS_NOT_USING_SA 0 + SAI_MACSEC_SA_STAT_IN_PKTS_NOT_VALID 0 + SAI_MACSEC_SA_STAT_IN_PKTS_OK 0 + SAI_MACSEC_SA_STAT_IN_PKTS_UNCHECKED 0 + SAI_MACSEC_SA_STAT_IN_PKTS_UNUSED_SA 0 + SAI_MACSEC_SA_STAT_OCTETS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OCTETS_PROTECTED 0 + --------------------------------------- ---------------------------------------------------------------- + MACsec Ingress SA (2) + --------------------------------------- ---------------------------------------------------------------- + active true + auth_key 5A8B8912139551D3678B43DD0F10FFA5 + lowest_acceptable_pn 1 + sak 7F2651140F12C434F782EF9AD7791EE2CFE2BF315A568A48785E35FC803C9DB6 + salt 000000000000000000000000 + ssci 0 + SAI_MACSEC_SA_ATTR_CURRENT_XPN 91824 + SAI_MACSEC_SA_STAT_IN_PKTS_DELAYED 0 + SAI_MACSEC_SA_STAT_IN_PKTS_INVALID 0 + SAI_MACSEC_SA_STAT_IN_PKTS_LATE 0 + SAI_MACSEC_SA_STAT_IN_PKTS_NOT_USING_SA 0 + SAI_MACSEC_SA_STAT_IN_PKTS_NOT_VALID 0 + SAI_MACSEC_SA_STAT_IN_PKTS_OK 0 + SAI_MACSEC_SA_STAT_IN_PKTS_UNCHECKED 0 + SAI_MACSEC_SA_STAT_IN_PKTS_UNUSED_SA 0 + SAI_MACSEC_SA_STAT_OCTETS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OCTETS_PROTECTED 0 + --------------------------------------- ---------------------------------------------------------------- +MACsec port(Ethernet1) +--------------------- ----------- +cipher_suite GCM-AES-256 +enable true +enable_encrypt true +enable_protect true +enable_replay_protect false +replay_window 0 +send_sci true +--------------------- ----------- + MACsec Egress SC (5254008f4f1c0001) + ----------- - + encoding_an 1 + ----------- - + MACsec Egress SA (1) + ------------------------------------- ---------------------------------------------------------------- + auth_key 35FC8F2C81BCA28A95845A4D2A1EE6EF + next_pn 1 + sak 1EC8572B75A840BA6B3833DC550C620D2C65BBDDAD372D27A1DFEB0CD786671B + salt 000000000000000000000000 + ssci 0 + SAI_MACSEC_SA_ATTR_CURRENT_XPN 4809 + SAI_MACSEC_SA_STAT_OCTETS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OCTETS_PROTECTED 0 + SAI_MACSEC_SA_STAT_OUT_PKTS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OUT_PKTS_PROTECTED 0 + ------------------------------------- ---------------------------------------------------------------- + MACsec Ingress SC (525400edac5b0001) + MACsec Ingress SA (1) + --------------------------------------- ---------------------------------------------------------------- + active true + auth_key 35FC8F2C81BCA28A95845A4D2A1EE6EF + lowest_acceptable_pn 1 + sak 1EC8572B75A840BA6B3833DC550C620D2C65BBDDAD372D27A1DFEB0CD786671B + salt 000000000000000000000000 + ssci 0 + SAI_MACSEC_SA_ATTR_CURRENT_XPN 5033 + SAI_MACSEC_SA_STAT_IN_PKTS_DELAYED 0 + SAI_MACSEC_SA_STAT_IN_PKTS_INVALID 0 + SAI_MACSEC_SA_STAT_IN_PKTS_LATE 0 + SAI_MACSEC_SA_STAT_IN_PKTS_NOT_USING_SA 0 + SAI_MACSEC_SA_STAT_IN_PKTS_NOT_VALID 0 + SAI_MACSEC_SA_STAT_IN_PKTS_OK 0 + SAI_MACSEC_SA_STAT_IN_PKTS_UNCHECKED 0 + SAI_MACSEC_SA_STAT_IN_PKTS_UNUSED_SA 0 + SAI_MACSEC_SA_STAT_OCTETS_ENCRYPTED 0 + SAI_MACSEC_SA_STAT_OCTETS_PROTECTED 0 + --------------------------------------- ---------------------------------------------------------------- +``` + +## MACsec clear command + +Clear MACsec counters which is to reset all MACsec counters to ZERO. + +``` +admin@sonic:~$ sonic-clear macsec --help +Usage: sonic-clear macsec [OPTIONS] + + Clear MACsec counts. This clear command will generated a cache for next + show commands which will base on this cache as the zero baseline to show + the increment of counters. + +Options: + --clean-cache BOOLEAN If the option of clean cache is true, next show + commands will show the raw counters which based on + the service booted instead of the last clear command. + -h, -?, --help Show this message and exit. +``` + +## VRF Configuration + +### VRF show commands + +**show vrf** + +This command displays all vrfs configured on the system along with interface binding to the vrf. +If vrf-name is also provided as part of the command, if the vrf is created it will display all interfaces binding to the vrf, if vrf is not created nothing will be displayed. + +- Usage: + ``` + show vrf [] + ``` + +- Example: + ```` + admin@sonic:~$ show vrf + VRF Interfaces + ------- ------------ + default Vlan20 + Vrf-red Vlan100 + Loopback11 + Eth0.100 + Vrf-blue Loopback100 + Loopback102 + Ethernet0.10 + PortChannel101 + ```` + +### VRF config commands + +**config vrf add ** + +This command creates vrf in SONiC system with provided vrf-name. + +- Usage: + ``` +config vrf add +``` +Note: vrf-name should always start with keyword "Vrf" + +**config vrf del ** + +This command deletes vrf with name vrf-name. + +- Usage: + ``` +config vrf del +``` + +## Management VRF + +### Management VRF Show commands + +**show mgmt-vrf** + +This command displays whether the management VRF is enabled or disabled. It also displays the details about the the links (eth0, mgmt, lo-m) that are related to management VRF. + +- Usage: + ``` + show mgmt-vrf + ``` + +- Example: + ``` + admin@sonic:~$ show mgmt-vrf + + ManagementVRF : Enabled + + Management VRF interfaces in Linux: + 348: mgmt: mtu 65536 qdisc noqueue state UP mode DEFAULT group default qlen 1000 + link/ether f2:2a:d9:bc:e8:f0 brd ff:ff:ff:ff:ff:ff + 2: eth0: mtu 1500 qdisc mq master mgmt state UP mode DEFAULT group default qlen 1000 + link/ether 4c:76:25:f4:f9:f3 brd ff:ff:ff:ff:ff:ff + 350: lo-m: mtu 1500 qdisc noqueue master mgmt state UNKNOWN mode DEFAULT group default qlen 1000 + link/ether b2:4c:c6:f3:e9:92 brd ff:ff:ff:ff:ff:ff + + NOTE: The management interface "eth0" shows the "master" as "mgmt" since it is part of management VRF. + ``` + +**show mgmt-vrf routes** + +This command displays the routes that are present in the routing table 5000 that is meant for management VRF. + +- Usage: + ``` + show mgmt-vrf routes + ``` + +- Example: + ``` + admin@sonic:~$ show mgmt-vrf routes + + Routes in Management VRF Routing Table: + default via 10.16.210.254 dev eth0 metric 201 + broadcast 10.16.210.0 dev eth0 proto kernel scope link src 10.16.210.75 + 10.16.210.0/24 dev eth0 proto kernel scope link src 10.16.210.75 + local 10.16.210.75 dev eth0 proto kernel scope host src 10.16.210.75 + broadcast 10.16.210.255 dev eth0 proto kernel scope link src 10.16.210.75 + broadcast 127.0.0.0 dev lo-m proto kernel scope link src 127.0.0.1 + 127.0.0.0/8 dev lo-m proto kernel scope link src 127.0.0.1 + local 127.0.0.1 dev lo-m proto kernel scope host src 127.0.0.1 + broadcast 127.255.255.255 dev lo-m proto kernel scope link src 127.0.0.1 + ``` + +**show management_interface address** + +This command displays the IP address(es) configured for the management interface "eth0" and the management network default gateway. + +- Usage: + ``` + show management_interface address + ``` + +- Example: + ``` + admin@sonic:~$ show management_interface address + Management IP address = 10.16.210.75/24 + Management NetWork Default Gateway = 10.16.210.254 + Management IP address = FC00:2::32/64 + Management Network Default Gateway = fc00:2::1 + ``` + +**show snmpagentaddress** + +This command displays the configured SNMP agent IP addresses. + +- Usage: + ``` + show snmpagentaddress + ``` + +- Example: + ``` + admin@sonic:~$ show snmpagentaddress + ListenIP ListenPort ListenVrf + ---------- ------------ ----------- + 1.2.3.4 787 mgmt + ``` + +**show snmptrap** + +This command displays the configured SNMP Trap server IP addresses. + +- Usage: + ``` + show snmptrap + ``` + +- Example: + ``` + admin@sonic:~$ show snmptrap + Version TrapReceiverIP Port VRF Community + --------- ---------------- ------ ----- ----------- + 2 31.31.31.31 456 mgmt public + ``` + +### Management VRF Config commands + +**config vrf add mgmt** + +This command enables the management VRF in the system. This command restarts the "interfaces-config" service which in turn regenerates the /etc/network/interfaces file and restarts the "networking" service. This creates a new interface and l3mdev CGROUP with the name as "mgmt" and enslaves the management interface "eth0" into this master interface "mgmt". Note that the VRFName "mgmt" (or "management") is reserved for management VRF. i.e. Data VRFs should not use these reserved VRF names. + +- Usage: + ``` + config vrf add mgmt + ``` + +- Example: + ``` + admin@sonic:~$ sudo config vrf add mgmt + ``` + +**config vrf del mgmt** + +This command disables the management VRF in the system. This command restarts the "interfaces-config" service which in turn regenerates the /etc/network/interfaces file and restarts the "networking" service. This deletes the interface "mgmt" and deletes the l3mdev CGROUP named "mgmt" and puts back the management interface "eth0" into the default VRF. Note that the VRFName "mgmt" (or "management") is reserved for management VRF. i.e. Data VRFs should not use these reserved VRF names. + +- Usage: + ``` + config vrf del mgmt + ``` + +- Example: + ``` + admin@sonic:~$ sudo config vrf del mgmt + ``` + +**config snmpagentaddress add** + +This command adds the SNMP agent IP address on which the SNMP agent is expected to listen. When SNMP agent is expected to work as part of management VRF, users should specify the optional vrf_name parameter as "mgmt". This configuration goes into snmpd.conf that is used by SNMP agent. SNMP service is restarted to make this configuration effective in SNMP agent. + +- Usage: + ``` + config snmpagentaddress add [-p ] [-v ] agentip + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmpagentaddress add -v mgmt -p 123 21.22.13.14 + + Note: For this example, configuration goes into /etc/snmp/snmpd.conf inside snmp docker as follows. When "-v" parameter is not used, the additional "%" in the following line will not be present. + + agentAddress 21.22.13.14:123%mgmt + ``` + +**config snmpagentaddress del** + +This command deletes the SNMP agent IP address on which the SNMP agent is expected to listen. When users had added the agent IP as part of "mgmt" VRF, users should specify the optional vrf_name parameter as "mgmt" while deleting as well. This configuration is removed from snmpd.conf that is used by SNMP agent. SNMP service is restarted to make this configuration effective in SNMP agent. + +- Usage: + ``` + config snmpagentaddress del [-p ] [-v ] agentip + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmpagentaddress del -v mgmt -p 123 21.22.13.14 + + ``` + +**config snmptrap modify** + +This command modifies the SNMP trap server IP address to which the SNMP agent is expected to send the traps. Users can configure one server IP addrss for each SNMP version to send the traps. When SNMP agent is expected to send traps as part of management VRF, users should specify the optional vrf_name parameter as "mgmt". This configuration goes into snmpd.conf that is used by SNMP agent. SNMP service is restarted to make this configuration effective in SNMP agent. + +- Usage: + ``` + config snmptrap modify [-p ] [-v ] [-c ] trapserverip + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmptrap modify 2 -p 456 -v mgmt 21.21.21.21 + + For this example, configuration goes into /etc/snmp/snmpd.conf inside snmp docker as follows. When "-v" parameter is not used, the additional "%" in the following line will not be present. In case of SNMPv1, "trapsink" will be updated, in case of v2, "trap2sink" will be updated and in case of v3, "informsink" will be updated. + + trap2sink 31.31.31.31:456%mgmt public + + ``` + +**config snmptrap del** + +This command deletes the SNMP Trap server IP address to which SNMP agent is expected to send TRAPs. When users had added the trap server IP as part of "mgmt" VRF, users should specify the optional vrf_name parameter as "mgmt" while deleting as well. This configuration is removed from snmpd.conf that is used by SNMP agent. SNMP service is restarted to make this configuration effective in SNMP agent. + +- Usage: + ``` + config snmptrap del [-p ] [-v ] [-c ] trapserverip + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmptrap del -v mgmt -p 123 21.22.13.14 + + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#management-vrf) + +## Muxcable + +### Muxcable Show commands + +**show muxcable status** + +This command displays all the status of either all the ports which are connected to muxcable or any individual port selected by the user. The resultant table or json output will show the current status of muxcable on the port (auto/active) and also the health of the muxcable. + +- Usage: + ``` + show muxcable status [OPTIONS] [PORT] + ``` + +While displaying the muxcable status, users can configure the following fields + +- PORT optional - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + +With no optional argument, all the ports muxcable status will be displayed in tabular form, or user can pass --json option to display in json format + +- Example: + ``` + admin@sonic:~$ show muxcable status + PORT STATUS HEALTH + ---------- -------- -------- + Ethernet32 active HEALTHY + Ethernet0 auto HEALTHY + ``` + ``` + admin@sonic:~$ show muxcable status --json + ``` + ```json + { + "MUX_CABLE": { + "Ethernet32": { + "STATUS": "active", + "HEALTH": "HEALTHY" + }, + "Ethernet0": { + "STATUS": "auto", + "HEALTH": "HEALTHY" + } + } + } + + ``` + ``` + admin@sonic:~$ show muxcable status Ethernet0 + PORT STATUS HEALTH + --------- -------- -------- + Ethernet0 auto HEALTHY + ``` + ``` + admin@sonic:~$ show muxcable status Ethernet0 --json + ``` + ```json + { + "MUX_CABLE": { + "Ethernet0": { + "STATUS": "auto", + "HEALTH": "HEALTHY" + } + } + } + ``` + +**show muxcable config** + +This command displays all the configurations of either all the ports which are connected to muxcable or any individual port selected by the user. The resultant table or json output will show the current configurations of muxcable on the port(active/standby) and also the ipv4 and ipv6 address of the port as well as peer TOR ip address with the hostname. + +- Usage: + ``` + show muxcable config [OPTIONS] [PORT] + ``` + +With no optional argument, all the ports muxcable configuration will be displayed in tabular form +While displaying the muxcable configuration, users can configure the following fields + +- PORT optional - Port name should be a valid port +- --json optional - option to display the result in json format. By default output will be in tabular format. + +- Example: + ``` + admin@sonic:~$ show muxcable config + SWITCH_NAME PEER_TOR + ------------- ---------- + sonic 10.1.1.1 + port state ipv4 ipv6 + --------- ------- -------- -------- + Ethernet0 active 10.1.1.1 fc00::75 + ``` + ``` + admin@sonic:~$ show muxcable config --json + ``` + ```json + { + "MUX_CABLE": { + "PEER_TOR": "10.1.1.1", + "PORTS": { + "Ethernet0": { + "STATE": "active", + "SERVER": { + "IPv4": "10.1.1.1", + "IPv6": "fc00::75" + } + } + } + } + } + ``` + ``` + admin@sonic:~$ show muxcable config Ethernet0 + SWITCH_NAME PEER_TOR + ------------- ---------- + sonic 10.1.1.1 + port state ipv4 ipv6 + --------- ------- -------- -------- + Ethernet0 active 10.1.1.1 fc00::75 + ``` + ``` + admin@sonic:~$ show muxcable config Ethernet0 --json + ``` + ```json + { + "MUX_CABLE": { + "PORTS": { + "Ethernet0": { + "STATE": "active", + "SERVER": { + "IPv4": "10.1.1.1", + "IPv6": "fc00::75" + } + } + } + } + } + ``` + +**show muxcable ber-info** + +This command displays the ber(Bit error rate) of the port user provides on the target user provides. The target provided as an integer corresponds to actual target as. +0 -> local +1 -> tor 1 +2 -> tor 2 +3 -> nic + +- Usage: + ``` + Usage: show muxcable ber-info [OPTIONS] PORT TARGET + ``` + + +- PORT required - Port number should be a valid port +- TARGET required - the actual target to get the ber info of. + +- Example: + ``` + admin@sonic:~$ show muxcable ber-info 1 1 + Lane1 Lane2 + ------- ------- + 0 0 + ``` + +**show muxcable ber-info** + +This command displays the eye info in mv(milli volts) of the port user provides on the target user provides. The target provided as an integer corresponds to actual target as. +0 -> local +1 -> tor 1 +2 -> tor 2 +3 -> nic + +- Usage: + ``` + Usage: show muxcable eye-info [OPTIONS] PORT TARGET + ``` + +- PORT required - Port number should be a valid port +- TARGET required - the actual target to get the eye info of. + +- Example: + ``` + admin@sonic:~$ show muxcable ber-info 1 1 + Lane1 Lane2 + ------- ------- + 632 622 + + ``` +**show muxcable health ** + +This command displays the hardware health of the Y-cable which are connected to muxcable. The resultant table or json output will show the current hadrware health of the cable as Ok, Not Ok, Unknown. + +- Usage: + ``` + show muxcable health [OPTIONS] [PORT] + ``` + +While displaying the muxcable health, users need to provide the following fields + +- PORT required - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + +-Ok means the cable is healthy + +in order to detemine whether the health of the cable is Ok +the following are checked +- the vendor name is correct able to be read +- the FW is correctly loaded for SerDes by reading the appropriate register val +- the Counters for UART are displaying healthy status + i.e Error Counters , retry Counters for UART or internal xfer protocols are below a threshold + + +- Example: + ``` + admin@sonic:~$ show muxcable health Ethernet4 + PORT ATTR HEALTH + --------- ------ -------- + Ethernet4 health Ok + ``` + ``` + admin@sonic:~$ show muxcable health Ethernet4 --json + ``` + ```json + { + "health": "Ok" + } + + ``` + + +**show muxcable queueinfo ** + +This command displays the queue info of the Y-cable which are connected to muxcable. The resultant table or json output will show the queue info in terms transactions for the UART stats in particular currently relevant to the MCU of the cable. + +- Usage: + ``` + show muxcable queueinfo [OPTIONS] [PORT] + ``` + +While displaying the muxcable queueinfo, users need to provide the following fields + +- PORT required - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + +the result will be displayed like this, each item in the dictionary shows the health of the attribute in the queue +``` +"{'VSC': {'r_ptr': 0, 'w_ptr': 0, 'total_count': 0, 'free_count': 0, 'buff_addr': 0, 'node_size': 0}, 'UART1': {'r_ptr': 0, 'w_ptr': 0, 'total_count': 0, 'free_count': 0, 'buff_addr': 209870, 'node_size': 1682183}, 'UART2': {'r_ptr': 13262, 'w_ptr': 3, 'total_count': 0, 'free_count': 0, 'buff_addr': 12, 'node_size': 0} +``` + +- Example: + ``` + admin@sonic:~$ show muxcable queueinfo Ethernet0 + PORT ATTR VALUE + --------- ---------- ------- + Ethernet0 uart_stat1 2 + Ethernet0 uart_stat2 1 + ``` + ``` + admin@sonic:~$ show muxcable queueinfo Ethernet4 --json + ``` + ```json + { + "uart_stat1": "2", + "uart_stat2": "1", + + } + ``` + +**show muxcable operationtime ** + +This command displays the operationtime of the Y-cable which are connected to muxcable. The resultant table or json output will show the current operation time of the cable as `hh:mm:ss` format. Operation time means the time since the last time the reseated/reset of the cable is done, and the time would be in the format specified + +- Usage: + ``` + show muxcable operationtime [OPTIONS] [PORT] + ``` + +While displaying the muxcable operationtime, users need to provide the following fields + +- PORT required - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + + +- Example: + ``` + admin@sonic:~$ show muxcable operationtime Ethernet4 + PORT ATTR OPERATION_TIME + --------- -------------- ---------------- + Ethernet4 operation_time 00:22:22 + ``` + ``` + admin@sonic:~$ show muxcable operationtime Ethernet4 --json + ``` + ```json + { + "operation_time": "00:22:22" + } + ``` + +**show muxcable resetcause ** + +This command displays the resetcause of the Y-cable which are connected to muxcable. The resultant table or json output will show the most recent reset cause of the cable as string format. + +- Usage: + ``` + show muxcable resetcause [OPTIONS] [PORT] + ``` + +While displaying the muxcable resetcause, users need to provide the following fields + +- PORT required - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + +the reset cause only records NIC MCU reset status. The NIC MCU will automatically broadcast the reset cause status to each TORs, corresponding values returned +display cold reset if the last reset is cold reset (ex. HW/SW reset, power reset the cable, or reboot the NIC server) +display warm reset if the last reset is warm reset (ex. sudo config mux firmware activate....) +the value is persistent, no clear on read + +- Example: + ``` + admin@sonic:~$ show muxcable resetcause Ethernet4 + PORT ATTR RESETCAUSE + --------- ----------- ------------ + Ethernet4 reset_cause warm reset + ``` + ``` + admin@sonic:~$ show muxcable resetcause Ethernet4 --json + ``` + ```json + { + "reset_cause": "warm reset" + } + ``` + + +### Muxcable Config commands + + +**config muxcable mode** + +This command is used for setting the configuration of a muxcable Port/all ports to be active or auto. The user has to enter a port number or else all to make the muxcable config operation on all the ports. Depending on the status of the muxcable port state the resultant output could be OK or INPROGRESS . OK would imply no change on the state, INPROGRESS would mean the toggle is happening in the background. + +- Usage: + ``` + config muxcable mode [OPTIONS] + ``` + +While configuring the muxcable, users needs to configure the following fields for the operation + +- operation_state, permitted operation to be configured which can only be auto or active +- PORT optional - Port name should be a valid port +- --json optional - option to display the result in json format. By default output will be in tabular format. + + +- Example: + ``` + admin@sonic:~$ sudo config muxcable mode active Ethernet0 + port state + --------- ------- + Ethernet0 OK + ``` + ``` + admin@sonic:~$ sudo config muxcable mode --json active Ethernet0 + ``` + ```json + { + "Ethernet0": "OK" + } + ``` + ``` + admin@sonic:~$ sudo config muxcable mode active all + port state + ---------- ---------- + Ethernet0 OK + Ethernet32 INPROGRESS + ``` + ``` + admin@sonic:~$ sudo config muxcable mode active all --json + ``` + ```json + { + "Ethernet32": "INPROGRESS", + "Ethernet0": "OK" + } + ``` +**config muxcable prbs enable/disable** + +This command is used for setting the configuration and enable/diable of prbs on a port user provides. While enabling in addition to port the user also needs to provides the target, prbs mode and lane map on which the user intends to run prbs on. The target reflects where the enable/dsiable will happen. + +- Usage: + ``` + config muxcable prbs enable [OPTIONS] PORT TARGET MODE_VALUE LANE_MAP + config muxcable prbs disable [OPTIONS] PORT TARGET + ``` + +While configuring the muxcable, users needs to configure the following fields for the operation + +- PORT required - Port number should be a valid port +- TARGET required - the actual target to run the prbs on + 0 -> local side, + 1 -> TOR 1 + 2 -> TOR 2 + 3 -> NIC +- MODE_VALUE required - the mode/type for configuring the PRBS mode. + 0x00 = PRBS 9, 0x01 = PRBS 15, 0x02 = PRBS 23, 0x03 = PRBS 31 +- LANE_MAP required - an integer representing the lane_map to be run PRBS on + 0bit for lane 0, 1bit for lane1 and so on. + for example 3 -> 0b'0011 , means running on lane0 and lane1 +- Example: + ``` + admin@sonic:~$ sudo config muxcable prbs enable 1 1 3 3 + PRBS config sucessful + admin@sonic:~$ sudo config muxcable prbs disable 1 0 + PRBS disable sucessful + ``` + +**config muxcable loopback enable/disable** + +This command is used for setting the configuration and enable/disable of loopback on a port user provides. While enabling in addition to port the user also needs to provides the target and lane map on which the user intends to run loopback on. The target reflects where the enable/dsiable will happen. + +- Usage: + ``` + config muxcable loopback enable [OPTIONS] PORT TARGET LANE_MAP + config muxcable loopback disable [OPTIONS] PORT TARGET + ``` + +While configuring the muxcable, users needs to configure the following fields for the operation + +- PORT required - Port number should be a valid port +- TARGET required - the actual target to run the loopback on + 0 -> local side, + 1 -> TOR 1 + 2 -> TOR 2 + 3 -> NIC +- LANE_MAP required - an integer representing the lane_map to be run loopback on + 0bit for lane 0, 1bit for lane1 and so on. + for example 3 -> 0b'0011 , means running on lane0 and lane1 + +- Example: + ``` + admin@sonic:~$ sudo config muxcable loopback enable 1 1 3 + loopback config sucessful + admin@sonic:~$ sudo config muxcable loopback disable 1 0 + loopback disable sucessfull + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#muxcable) + +## Mirroring + +### Mirroring Show commands + +**show mirror_session** + +This command displays all the mirror sessions that are configured. + +- Usage: + ``` + show mirror_session + ``` + +- Example: + ``` + admin@sonic:~$ show mirror_session + ERSPAN Sessions + Name Status SRC IP DST IP GRE DSCP TTL Queue Policer Monitor Port SRC Port Direction + ------ -------- -------- -------- ----- ------ ----- ------- --------- -------------- ---------- ----------- + everflow0 active 10.1.0.32 10.0.0.7 + + SPAN Sessions + Name Status DST Port SRC Port Direction + ------ -------- ---------- ------------- ----------- + port0 active Ethernet0 PortChannel10 rx + ``` + +### Mirroring Config commands + +**config mirror_session** + +This command is used to add or remove mirroring sessions. Mirror session is identified by "session_name". +This command supports configuring both SPAN/ERSPAN sessions. +In SPAN user can configure mirroring of list of source ports/LAG to destination port in ingress/egress/both directions. +In ERSPAN user can configure mirroring of list of source ports/LAG to a destination IP. +Both SPAN/ERSPAN support ACL based mirroring and can be used in ACL configurations. + +While adding a new ERSPAN session, users need to configure the following fields that are used while forwarding the mirrored packets. + +1) source IP address, +2) destination IP address, +3) DSCP (QoS) value with which mirrored packets are forwarded +4) TTL value +5) optional - GRE Type in case if user wants to send the packet via GRE tunnel. GRE type could be anything; it could also be left as empty; by default, it is 0x8949 for Mellanox; and 0x88be for the rest of the chips. +6) optional - Queue in which packets shall be sent out of the device. Valid values 0 to 7 for most of the devices. Users need to know their device and the number of queues supported in that device. +7) optional - Policer which will be used to control the rate at which frames are mirrored. +8) optional - List of source ports which can have both Ethernet and LAG ports. +9) optional - Direction - Mirror session direction when configured along with Source port. (Supported rx/tx/both. default direction is both) + +- Usage: + ``` + config mirror_session erspan add [gre_type] [queue] [policer ] [source-port-list] [direction] + ``` + + The following command is also supported to be backward compatible. + This command will be deprecated in future releases. + ``` + config mirror_session add [gre_type] [queue] + ``` + +- Example: + ``` + root@T1-2:~# config mirror_session add mrr_legacy 1.2.3.4 20.21.22.23 8 100 0x6558 0 + root@T1-2:~# show mirror_session + Name Status SRC IP DST IP GRE DSCP TTL Queue Policer Monitor Port SRC Port Direction + --------- -------- -------- ----------- ------ ------ ----- ------- --------- -------------- ---------- ----------- + mrr_legacy inactive 1.2.3.4 20.21.22.23 0x6558 8 100 0 + + + root@T1-2:~# config mirror_session erspan add mrr_abcd 1.2.3.4 20.21.22.23 8 100 0x6558 0 + root@T1-2:~# show mirror_session + Name Status SRC IP DST IP GRE DSCP TTL Queue Policer Monitor Port SRC Port Direction + --------- -------- -------- ----------- ------ ------ ----- ------- --------- -------------- ---------- ----------- + mrr_abcd inactive 1.2.3.4 20.21.22.23 0x6558 8 100 0 + root@T1-2:~# + + root@T1-2:~# config mirror_session erspan add mrr_port 1.2.3.4 20.21.22.23 8 100 0x6558 0 Ethernet0 + root@T1-2:~# show mirror_session + Name Status SRC IP DST IP GRE DSCP TTL Queue Policer Monitor Port SRC Port Direction + --------- -------- -------- ----------- ------ ------ ----- ------- --------- -------------- ---------- ----------- + mrr_port inactive 1.2.3.4 20.21.22.23 0x6558 8 100 0 Ethernet0 both + root@T1-2:~# + ``` + +While adding a new SPAN session, users need to configure the following fields that are used while forwarding the mirrored packets. +1) destination port, +2) optional - List of source ports- List of source ports which can have both Ethernet and LAG ports. +3) optional - Direction - Mirror session direction when configured along with Source port. (Supported rx/tx/both. default direction is both) +4) optional - Queue in which packets shall be sent out of the device. Valid values 0 to 7 for most of the devices. Users need to know their device and the number of queues supported in that device. +5) optional - Policer which will be used to control the rate at which frames are mirrored. + +- Usage: + ``` + config mirror_session span add [source-port-list] [direction] [queue] [policer ] + ``` + +- Example: + ``` + root@T1-2:~# config mirror_session span add port0 Ethernet0 Ethernet4,PortChannel001,Ethernet8 + root@T1-2:~# show mirror_session + Name Status DST Port SRC Port Direction + ------ -------- ---------- --------------------------------- ----------- + port0 active Ethernet0 Ethernet4,PortChannel10,Ethernet8 both + root@T1-2:~# + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#mirroring) + +## NAT + +### NAT Show commands + +**show nat config** + +This command displays the NAT configuration. + +- Usage: + ``` + show nat config [static | pool | bindings | globalvalues | zones] + ``` + +With no optional arguments, the whole NAT configuration is displayed. + +- Example: + ``` + admin@sonic:~$ show nat config static + + Nat Type IP Protocol Global IP Global L4 Port Local IP Local L4 Port Twice-Nat Id + -------- ----------- ------------ -------------- ------------- ------------- ------------ + dnat all 65.55.45.5 --- 10.0.0.1 --- --- + dnat all 65.55.45.6 --- 10.0.0.2 --- --- + dnat tcp 65.55.45.7 2000 20.0.0.1 4500 1 + snat tcp 20.0.0.2 4000 65.55.45.8 1030 1 + + admin@sonic:~$ show nat config pool + + Pool Name Global IP Range Global L4 Port Range + ------------ ------------------------- -------------------- + Pool1 65.55.45.5 1024-65535 + Pool2 65.55.45.6-65.55.45.8 --- + Pool3 65.55.45.10-65.55.45.15 500-1000 + + admin@sonic:~$ show nat config bindings + + Binding Name Pool Name Access-List Nat Type Twice-Nat Id + ------------ ------------ ------------ -------- ------------ + Bind1 Pool1 --- snat --- + Bind2 Pool2 1 snat 1 + Bind3 Pool3 2 snat -- + + admin@sonic:~$ show nat config globalvalues + + Admin Mode : enabled + Global Timeout : 600 secs + TCP Timeout : 86400 secs + UDP Timeout : 300 secs + + admin@sonic:~$ show nat config zones + + Port Zone + ---- ---- + Ethernet2 0 + Vlan100 1 + ``` + +**show nat statistics** + +This command displays the NAT translation statistics for each entry. + +- Usage: + ``` + show nat statistics + ``` + +- Example: + ``` + admin@sonic:~$ show nat statistics + + Protocol Source Destination Packets Bytes + -------- --------- -------------- ------------- ------------- + all 10.0.0.1 --- 802 1009280 + all 10.0.0.2 --- 23 5590 + tcp 20.0.0.1:4500 --- 110 12460 + udp 20.0.0.1:4000 --- 1156 789028 + tcp 20.0.0.1:6000 --- 30 34800 + tcp 20.0.0.1:5000 65.55.42.1:2000 128 110204 + tcp 20.0.0.1:5500 65.55.42.1:2000 8 3806 + ``` + +**show nat translations** + +This command displays the NAT translation entries. + +- Usage: + ``` + show nat translations [count] + ``` +Giving the optional count argument displays only the details about the number of translation entries. +- Example: + ``` + admin@sonic:~$ show nat translations + + Static NAT Entries ................. 4 + Static NAPT Entries ................. 2 + Dynamic NAT Entries ................. 0 + Dynamic NAPT Entries ................. 4 + Static Twice NAT Entries ................. 0 + Static Twice NAPT Entries ................. 4 + Dynamic Twice NAT Entries ................ 0 + Dynamic Twice NAPT Entries ................ 0 + Total SNAT/SNAPT Entries ................ 9 + Total DNAT/DNAPT Entries ................ 9 + Total Entries ................ 14 + + Protocol Source Destination Translated Source Translated Destination + -------- --------- -------------- ----------------- ---------------------- + all 10.0.0.1 --- 65.55.42.2 --- + all --- 65.55.42.2 --- 10.0.0.1 + all 10.0.0.2 --- 65.55.42.3 --- + all --- 65.55.42.3 --- 10.0.0.2 + tcp 20.0.0.1:4500 --- 65.55.42.1:2000 --- + tcp --- 65.55.42.1:2000 --- 20.0.0.1:4500 + udp 20.0.0.1:4000 --- 65.55.42.1:1030 --- + udp --- 65.55.42.1:1030 --- 20.0.0.1:4000 + tcp 20.0.0.1:6000 --- 65.55.42.1:1024 --- + tcp --- 65.55.42.1:1024 --- 20.0.0.1:6000 + tcp 20.0.0.1:5000 65.55.42.1:2000 65.55.42.1:1025 20.0.0.1:4500 + tcp 20.0.0.1:4500 65.55.42.1:1025 65.55.42.1:2000 20.0.0.1:5000 + tcp 20.0.0.1:5500 65.55.42.1:2000 65.55.42.1:1026 20.0.0.1:4500 + tcp 20.0.0.1:4500 65.55.42.1:1026 65.55.42.1:2000 20.0.0.1:5500 + + admin@sonic:~$ show nat translations count + + Static NAT Entries ................. 4 + Static NAPT Entries ................. 2 + Dynamic NAT Entries ................. 0 + Dynamic NAPT Entries ................. 4 + Static Twice NAT Entries ................. 0 + Static Twice NAPT Entries ................. 4 + Dynamic Twice NAT Entries ................ 0 + Dynamic Twice NAPT Entries ................ 0 + Total SNAT/SNAPT Entries ................ 9 + Total DNAT/DNAPT Entries ................ 9 + Total Entries ................ 14 + ``` + +### NAT Config commands + +**config nat add static** + +This command is used to add a static NAT or NAPT entry. +When configuring the Static NAT entry, user has to specify the following fields with 'basic' keyword. + +1. Global IP address, +2. Local IP address, +3. NAT type (snat / dnat) to be applied on the Global IP address. Default value is dnat. This is optinoal argument. +4. Twice NAT Id. This is optional argument used in case of twice nat configuration. + +When configuring the Static NAPT entry, user has to specify the following fields. + +1. IP protocol type (tcp / udp) +2. Global IP address + Port +3. Local IP address + Port +4. NAT type (snat / dnat) to be applied on the Global IP address + Port. Default value is dnat. This is optional argument. +5. Twicw NAT Id. This is optional argument used in case of twice nat configuration. + +- Usage: + ``` + config nat add static /{/{basic (global-ip) (local-ip)/} | /{/{tcp | udp/} (global-ip) (global-port) (local-ip) (local-port)/}/} [-nat_type /{snat | dnat/}] [-twice_nat_id (value) ] + ``` + +To delete a static NAT or NAPT entry, use the command below. Giving the all argument deletes all the configured static NAT and NAPT entries. +``` +config nat remove static /{/{basic (global-ip) (local-ip)/} | /{/{tcp | udp/} (global-ip) (global-port) (local-ip) (local-port)/} | all/} +``` +- Example: + ``` + admin@sonic:~$ sudo config nat add static basic 65.55.45.1 12.12.12.14 -nat_type dnat + admin@sonic:~$ sudo config nat add static tcp 65.55.45.2 100 12.12.12.15 200 -nat_type dnat + + admin@sonic:~$ show nat translations + + Static NAT Entries ................. 2 + Static NAPT Entries ................. 2 + Dynamic NAT Entries ................. 0 + Dynamic NAPT Entries ................. 0 + Static Twice NAT Entries ................. 0 + Static Twice NAPT Entries ................. 0 + Dynamic Twice NAT Entries ................ 0 + Dynamic Twice NAPT Entries ................ 0 + Total SNAT/SNAPT Entries ................ 2 + Total DNAT/DNAPT Entries ................ 2 + Total Entries ................ 4 + + Protocol Source Destination Translated Source Translated Destination + -------- --------- -------------- ----------------- ---------------------- + all 12.12.12.14 --- 65.55.42.1 --- + all --- 65.55.42.1 --- 12.12.12.14 + tcp 12.12.12.15:200 --- 65.55.42.2:100 --- + tcp --- 65.55.42.2:100 --- 12.12.12.15:200 + ``` + +**config nat add pool** + +This command is used to create a NAT pool used for dynamic Source NAT or NAPT translations. +Pool can be configured in one of the following combinations. + +1. Global IP address range (or) +2. Global IP address + L4 port range (or) +3. Global IP address range + L4 port range. + +- Usage: + ``` + config nat add pool (pool-name) (global-ip-range) (global-port-range) + ``` +To delete a NAT pool, use the command. Pool cannot be removed if it is referenced by a NAT binding. Giving the pools argument removes all the configured pools. +``` +config nat remove {pool (pool-name) | pools} +``` +- Example: + ``` + admin@sonic:~$ sudo config nat add pool pool1 65.55.45.2-65.55.45.10 + admin@sonic:~$ sudo config nat add pool pool2 65.55.45.3 100-1024 + + admin@sonic:~$ show nat config pool + + Pool Name Global IP Range Global Port Range + ----------- ---------------------- ------------------- + pool1 65.55.45.2-65.55.45.10 --- + pool2 65.55.45.3 100-1024 + ``` + +**config nat add binding** + +This command is used to create a NAT binding between a pool and an ACL. The following fields are needed for configuring the binding. + + 1. ACL is an optional argument. If ACL argument is not given, the NAT binding is applicable to match all traffic. + 2. NAT type is an optional argument. Only DNAT type is supoprted for binding. + 3. Twice NAT Id is an optional argument. This Id is used to form a twice nat grouping with the static NAT/NAPT entry configured with the same Id. + +- Usage: + ``` + config nat add binding (binding-name) [(pool-name)] [(acl-name)] [-nat_type {snat | dnat}] [-twice_nat_id (value)] + ``` +To delete a NAT binding, use the command below. Giving the bindings argument removes all the configured bindings. +``` +config nat remove {binding (binding-name) | bindings} +``` +- Example: + ``` + admin@sonic:~$ sudo config nat add binding bind1 pool1 acl1 + admin@sonic:~$ sudo config nat add binding bind2 pool2 + + admin@sonic:~$ show nat config bindings + + Binding Name Pool Name Access-List Nat Type Twice-NAT Id + -------------- ----------- ------------- ---------- -------------- + bind1 pool1 acl1 snat --- + bind2 pool2 snat --- + ``` + +**config nat add interface** + +This command is used to configure NAT zone on an L3 interface. Default value of NAT zone on an L3 interface is 0. Valid range of zone values is 0-3. + +- Usage: + ``` + config nat add interface (interface-name) -nat_zone (value) + ``` +To reset the NAT zone on an interface, use the command below. Giving the interfaces argument resets the NAT zone on all the L3 interfaces to 0. +``` +config nat remove {interface (interface-name) | interfaces} +``` +- Example: + ``` + admin@sonic:~$ sudo config nat add interface Ethernet28 -nat_zone 1 + + admin@sonic:~$ show nat config zones + + Port Zone + ---------- ------ + Ethernet0 0 + Ethernet28 1 + Ethernet22 0 + Vlan2091 0 + ``` + +**config nat set** + +This command is used to set the NAT timeout values. Different timeout values can be configured for the NAT entry timeout, NAPT TCP entry timeout, NAPT UDP entry timeout. +Range for Global NAT entry timeout is 300 sec to 432000 sec, default value is 600 sec. +Range for TCP NAT/NAPT entry timeout is 300 sec to 432000 sec, default value is 86400 sec. +Range for UDP NAT/NAPT entry timeout is 120 sec to 600 sec, default value is 300 sec. + +- Usage: + ``` + config nat set {tcp-timeout (value) | timeout (value) | udp-timeout (value)} + ``` +To reset the timeout values to the default values, use the command +``` +config nat reset {tcp-timeout | timeout | udp-timeout} +``` +- Example: + ``` + admin@sonic:~$ sudo config nat add set tcp-timeout 3600 + + admin@sonic:~$ show nat config globalvalues + + Admin Mode : enabled + Global Timeout : 600 secs + TCP Timeout : 600 secs + UDP Timeout : 300 secs + ``` + +**config nat feature** + +This command is used to enable or disable the NAT feature. + +- Usage: + ``` + config nat feature {enable | disable} + ``` + +- Example: + ``` + admin@sonic:~$ sudo config nat feature enable + admin@sonic:~$ sudo config nat feature disable + ``` + +### NAT Clear commands + +**sonic-clear nat translations** + +This command is used to clear the dynamic NAT and NAPT translation entries. + +- Usage: + ``` + sonic-clear nat translations + ``` + +**sonic-clear nat statistics** + +This command is used to clear the statistics of all the NAT and NAPT entries. + +- Usage: + ``` + sonic-clear nat statistics + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#nat) + + +## NTP + +### NTP show commands + +**show ntp** + +This command displays a list of NTP peers known to the server as well as a summary of their state. + +- Usage: + ``` + show ntp + ``` + +- Example: + ``` + admin@sonic:~$ show ntp + synchronised to NTP server (204.2.134.164) at stratum 3 + time correct to within 326797 ms + polling server every 1024 s + + remote refid st t when poll reach delay offset jitter + ============================================================================== + 23.92.29.245 .XFAC. 16 u - 1024 0 0.000 0.000 0.000 + *204.2.134.164 46.233.231.73 2 u 916 1024 377 3.079 0.394 0.128 + ``` + + +### NTP Config Commands + +This sub-section of commands is used to add or remove the configured NTP servers. + +**config ntp add** + +This command is used to add a NTP server IP address to the NTP server list. Note that more that one NTP server IP address can be added in the device. + +- Usage: + ``` + config ntp add + ``` + +- Example: + ``` + admin@sonic:~$ sudo config ntp add 9.9.9.9 + NTP server 9.9.9.9 added to configuration + Restarting ntp-config service... + ``` + +**config ntp delete** + +This command is used to delete a configured NTP server IP address. + +- Usage: + ``` + config ntp del + ``` + +- Example: + ``` + admin@sonic:~$ sudo config ntp del 9.9.9.9 + NTP server 9.9.9.9 removed from configuration + Restarting ntp-config service... + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#NTP) + +# PFC Watchdog Commands +Detailed description of the PFC Watchdog could be fount on the [this wiki page](https://github.com/Azure/SONiC/wiki/PFC-Watchdog) + +**config pfcwd start \** + +This command starts PFC Watchdog + +- Usage: + ``` + config pfcwd start --action drop all 400 --restoration-time 400 + config pfcwd start --action forward Ethernet0 Ethernet8 400 + ``` + +**config pfcwd stop** + +This command stops PFC Watchdog + +- Usage: + ``` + config pfcwd stop + ``` + +**config pfcwd interval \** + +This command sets PFC Watchdog counter polling interval (in ms) + +- Usage: + ``` + config pfcwd interval 200 + ``` + +**config pfcwd counter_poll \** + +This command enables or disables PFCWD related counters polling + +- Usage: + ``` + config pfcwd counter_poll disable + ``` + +**config pfcwd big_red_switch \** + +This command enables or disables PFCWD's "BIG RED SWITCH"(BRS). After enabling BRS PFC Watchdog will be activated on all ports/queues it is configured for no matter whether the storm was detected or not + +- Usage: + ``` + config pfcwd big_red_switch enable + ``` + +**config pfcwd start_default** + +This command starts PFC Watchdog with the default settings. + +- Usage: + ``` + config pfcwd start_default + ``` + +Default values are the following: + + - detection time - 200ms + - restoration time - 200ms + - polling interval - 200ms + - action - 'drop' + +Additionally if number of ports in the system exceeds 32, all times will be multiplied by roughly /32. + + +**show pfcwd config** + +This command shows current PFC Watchdog configuration + +- Usage: + ``` + show pfcwd config + ``` + +**show pfcwd stats** + +This command shows current PFC Watchdog statistics (storms detected, packets dropped, etc) + +- Usage: + ``` + show pfcwd stats + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#pfc-watchdog-commands) + +## Platform Component Firmware + +### Platform Component Firmware show commands + +**show platform firmware status** + +This command displays platform components firmware status information. + +- Usage: +```bash +show platform firmware status +``` + +- Example: +```bash +admin@sonic:~$ sudo show platform firmware status +Chassis Module Component Version Description +--------- -------- ----------- ----------------------- ---------------------------------------- +MSN3800 N/A ONIE 2020.11-5.2.0022-9600 ONIE - Open Network Install Environment + SSD 0202-000 SSD - Solid-State Drive + BIOS 0ACLH004_02.02.008_9600 BIOS - Basic Input/Output System + CPLD1 CPLD000120_REV0900 CPLD - Complex Programmable Logic Device + CPLD2 CPLD000165_REV0500 CPLD - Complex Programmable Logic Device + CPLD3 CPLD000166_REV0300 CPLD - Complex Programmable Logic Device + CPLD4 CPLD000167_REV0100 CPLD - Complex Programmable Logic Device +``` + +**show platform firmware updates** + +This command displays platform components firmware updates information. + +- Usage: +```bash +show platform firmware updates [-i|--image] +``` + +- Options: + - _-i|--image_: show updates using current/next SONiC image + + Valid values: + - current + - next + + Default: + - current + +- Example: +```bash +admin@sonic:~$ sudo show platform firmware updates +Chassis Module Component Firmware Version (Current/Available) Status +--------- -------- ----------- ------------------------------------------ ------------------------------------------------- ------------------ +MSN3800 N/A ONIE /usr/local/lib/firmware/mellanox/onie.bin 2020.11-5.2.0022-9600 / 2020.11-5.2.0024-9600 update is required + SSD /usr/local/lib/firmware/mellanox/ssd.bin 0202-000 / 0204-000 update is required + BIOS /usr/local/lib/firmware/mellanox/bios.bin 0ACLH004_02.02.008_9600 / 0ACLH004_02.02.010_9600 update is required + CPLD1 /usr/local/lib/firmware/mellanox/cpld.mpfa CPLD000120_REV0900 / CPLD000120_REV0900 up-to-date + CPLD2 /usr/local/lib/firmware/mellanox/cpld.mpfa CPLD000165_REV0500 / CPLD000165_REV0500 up-to-date + CPLD3 /usr/local/lib/firmware/mellanox/cpld.mpfa CPLD000166_REV0300 / CPLD000166_REV0300 up-to-date + CPLD4 /usr/local/lib/firmware/mellanox/cpld.mpfa CPLD000167_REV0100 / CPLD000167_REV0100 up-to-date +``` + +- Note: + - current/next values for _-i|--image_ are taken from `sonic-installer list` + ```bash + admin@sonic:~$ sudo sonic-installer list + Current: SONiC-OS-202012.0-fb89c28c9 + Next: SONiC-OS-201911.0-2bec3004e + Available: + SONiC-OS-202012.0-fb89c28c9 + SONiC-OS-201911.0-2bec3004e + ``` + +**show platform firmware version** + +This command displays platform components firmware utility version. + +- Usage: +```bash +show platform firmware version +``` + +- Example: +```bash +admin@sonic:~$ show platform firmware version +fwutil version 2.0.0.0 +``` + +### Platform Component Firmware config commands + +**config platform firmware install** + +This command is used to install a platform component firmware. +Both modular and non modular chassis platforms are supported. + +- Usage: +```bash +config platform firmware install chassis component fw [-y|--yes] +config platform firmware install module component fw [-y|--yes] +``` + +- Options: + - _-y|--yes_: automatic yes to prompts. Assume "yes" as answer to all prompts and run non-interactively + +- Example: +```bash +admin@sonic:~$ sudo config platform firmware install chassis component BIOS fw /usr/local/lib/firmware/mellanox/sn3800/chassis1/bios.bin +Warning: Immediate cold reboot is required to complete BIOS firmware update. +New firmware will be installed, continue? [y/N]: y +Installing firmware: + /usr/local/lib/firmware/mellanox/sn3800/chassis1/bios.bin + +admin@sonic:~$ sudo config platform firmware install module Module1 component BIOS fw https://www.mellanox.com/fw/sn3800/module1/bios.bin +Warning: Immediate cold reboot is required to complete BIOS firmware update. +New firmware will be installed, continue? [y/N]: y +Downloading firmware: + [##################################################] 100% +Installing firmware: + /tmp/bios.bin +``` + +- Note: + - can be absolute path or URL + +**config platform firmware update** + +This command is used to update a platform component firmware from current/next SONiC image. +Both modular and non modular chassis platforms are supported. + +FW update requires `platform_components.json` to be created and placed at: +sonic-buildimage/device///platform_components.json + +Example: +1. Non modular chassis platform +```json +{ + "chassis": { + "Chassis1": { + "component": { + "BIOS": { + "firmware": "/usr/local/lib/firmware///chassis1/bios.bin", + "version": "" + }, + "CPLD": { + "firmware": "/usr/local/lib/firmware///chassis1/cpld.bin", + "version": "" + }, + "FPGA": { + "firmware": "/usr/local/lib/firmware///chassis1/fpga.bin", + "version": "" + } + } + } + } +} +``` + +2. Modular chassis platform +```json +{ + "chassis": { + "Chassis1": { + "component": { + "BIOS": { + "firmware": "/usr/local/lib/firmware///chassis1/bios.bin", + "version": "" + }, + "CPLD": { + "firmware": "/usr/local/lib/firmware///chassis1/cpld.bin", + "version": "" + }, + "FPGA": { + "firmware": "/usr/local/lib/firmware///chassis1/fpga.bin", + "version": "" + } + } + } + }, + "module": { + "Module1": { + "component": { + "CPLD": { + "firmware": "/usr/local/lib/firmware///module1/cpld.bin", + "version": "" + }, + "FPGA": { + "firmware": "/usr/local/lib/firmware///module1/fpga.bin", + "version": "" + } + } + } + } +} +``` + +- Usage: +```bash +config platform firmware update chassis component fw [-y|--yes] [-f|--force] [-i|--image] +config platform firmware update module component fw [-y|--yes] [-f|--force] [-i|--image] +``` + +- Options: + - _-y|--yes_: automatic yes to prompts. Assume "yes" as answer to all prompts and run non-interactively + - _-f|--force_: update FW regardless the current version + - _-i|--image_: update FW using current/next SONiC image + + Valid values: + - current + - next + + Default: + - current + +- Example: +```bash +admin@sonic:~$ sudo config platform firmware update chassis component BIOS fw +Warning: Immediate cold reboot is required to complete BIOS firmware update. +New firmware will be installed, continue? [y/N]: y +Updating firmware: + /usr/local/lib/firmware/mellanox/x86_64-mlnx_msn3800-r0/chassis1/bios.bin + +admin@sonic:~$ sudo config platform firmware update module Module1 component BIOS fw +Warning: Immediate cold reboot is required to complete BIOS firmware update. +New firmware will be installed, continue? [y/N]: y +Updating firmware: + /usr/local/lib/firmware/mellanox/x86_64-mlnx_msn3800-r0/module1/bios.bin +``` + +- Note: + - FW update will be disabled if component definition is not provided (e.g., 'BIOS': { }) + - FW version will be read from image if `version` field is not provided + - current/next values for _-i|--image_ are taken from `sonic-installer list` + ```bash + admin@sonic:~$ sudo sonic-installer list + Current: SONiC-OS-202012.0-fb89c28c9 + Next: SONiC-OS-201911.0-2bec3004e + Available: + SONiC-OS-202012.0-fb89c28c9 + SONiC-OS-201911.0-2bec3004e + ``` + +### Platform Component Firmware vendor specific behaviour + +#### Mellanox + +**CPLD update** + +On Mellanox platforms CPLD update can be done either for single or for all components at once. +The second approach is preferred. In this case an aggregated `vme` binary is used and +CPLD component can be specified arbitrary. + +- Example: +```bash +root@sonic:/home/admin# show platform firmware +Chassis Module Component Version Description +---------------------- -------- ----------- ----------------------- ---------------------------------------- +x86_64-mlnx_msn3800-r0 N/A BIOS 0ACLH004_02.02.007_9600 BIOS - Basic Input/Output System + CPLD1 CPLD000000_REV0400 CPLD - Complex Programmable Logic Device + CPLD2 CPLD000000_REV0300 CPLD - Complex Programmable Logic Device + CPLD3 CPLD000000_REV0300 CPLD - Complex Programmable Logic Device + CPLD4 CPLD000000_REV0100 CPLD - Complex Programmable Logic Device + +root@sonic:/home/admin# BURN_VME="$(pwd)/FUI000091_Burn_SN3800_CPLD000120_REV0600_CPLD000165_REV0400_CPLD000166_REV0300_CPLD000167_REV0100.vme" +root@sonic:/home/admin# REFRESH_VME="$(pwd)/FUI000091_Refresh_SN3800_CPLD000120_REV0600_CPLD000165_REV0400_CPLD000166_REV0300_CPLD000167_REV0100.vme" + +root@sonic:/home/admin# config platform firmware install chassis component CPLD1 fw -y ${BURN_VME} +root@sonic:/home/admin# config platform firmware install chassis component CPLD1 fw -y ${REFRESH_VME} + +root@sonic:/home/admin# show platform firmware +Chassis Module Component Version Description +---------------------- -------- ----------- ----------------------- ---------------------------------------- +x86_64-mlnx_msn3800-r0 N/A BIOS 0ACLH004_02.02.007_9600 BIOS - Basic Input/Output System + CPLD1 CPLD000000_REV0600 CPLD - Complex Programmable Logic Device + CPLD2 CPLD000000_REV0400 CPLD - Complex Programmable Logic Device + CPLD3 CPLD000000_REV0300 CPLD - Complex Programmable Logic Device + CPLD4 CPLD000000_REV0100 CPLD - Complex Programmable Logic Device +``` + +Note: the update will have the same effect if any of CPLD1/CPLD2/CPLD3/CPLD4 will be used + +Go Back To [Beginning of the document](#) or [Beginning of this section](#platform-component-firmware) + + +## Platform Specific Commands + +### Mellanox Platform Specific Commands + +There are few commands that are platform specific. Mellanox has used this feature and implemented Mellanox specific commands as follows. + +**show platform mlnx sniffer** + +This command shows the SDK sniffer status + +- Usage: + ``` + show platform mlnx sniffer + ``` + +- Example: + ``` + admin@sonic:~$ show platform mlnx sniffer + sdk sniffer is disabled + ``` + +**show platform mlnx sniffer** + +Another show command available on ‘show platform mlnx’ which is the issu status. +This means if ISSU is enabled on this SKU or not. A warm boot command can be executed only when ISSU is enabled on the SKU. + +- Usage: + ``` + show platform mlnx issu + ``` + +- Example: + ``` + admin@sonic:~$ show platform mlnx issu + ISSU is enabled + ``` + +In the case ISSU is disabled and warm-boot is called, the user will get a notification message explaining that the command cannot be invoked. + +- Example: + ``` + admin@sonic:~$ sudo warm-reboot + ISSU is not enabled on this HWSKU + Warm reboot is not supported + ``` + +**config platform mlnx** + +This command is valid only on mellanox devices. The sub-commands for "config platform" gets populated only on mellanox platforms. +There are no other subcommands on non-Mellanox devices and hence this command appears empty and useless in other platforms. +The platform mellanox command currently includes a single sub command which is the SDK sniffer. +The SDK sniffer is a troubleshooting tool which records the RPC calls from the Mellanox SDK user API library to the sx_sdk task into a .pcap file. +This .pcap file can be replayed afterward to get the exact same configuration state on SDK and FW to reproduce and investigate issues. + +A new folder will be created to store the sniffer files: "/var/log/mellanox/sniffer/". The result file will be stored in a .pcap file, which includes a time stamp of the starting time in the file name, for example, "sx_sdk_sniffer_20180224081306.pcap" +In order to have a complete .pcap file with all the RPC calls, the user should disable the SDK sniffer. Swss service will be restarted and no capturing is taken place from that moment. +It is recommended to review the .pcap file while sniffing is disabled. +Once SDK sniffer is enabled/disabled, the user is requested to approve that swss service will be restarted. +For example: To change SDK sniffer status, swss service will be restarted, continue? [y/N]: +In order to avoid that confirmation the -y / --yes option should be used. + +- Usage: + ``` + config platform mlnx sniffer sdk [-y|--yes] + ``` + +- Example: + ``` + admin@sonic:~$ config platform mlnx sniffer sdk + To change SDK sniffer status, swss service will be restarted, continue? [y/N]: y + NOTE: In order to avoid that confirmation the -y / --yes option should be used. + ``` + +### Barefoot Platform Specific Commands + +**show platform barefoot profile** + +This command displays active P4 profile and lists available ones. + +- Usage: + ``` + show platform barefoot profile + ``` + +- Example: + ``` + admin@sonic:~$ show platform barefoot profile + Current profile: x1 + Available profile(s): + x1 + x2 + ``` + +**config platform barefoot profile** + +This command sets P4 profile. + +- Usage: + ``` + config platform barefoot profile [-y|--yes] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config platform barefoot profile x1 + Swss service will be restarted, continue? [y/N]: y + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#platform-specific-commands) + + +## PortChannels + +### PortChannel Show commands + +**show interfaces portchannel** + +This command displays all the port channels that are configured in the device and its current status. + +- Usage: + ``` + show interfaces portchannel + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces portchannel + Flags: A - active, I - inactive, Up - up, Dw - Down, N/A - not available, S - selected, D - deselected + No. Team Dev Protocol Ports + ----- ------------- ----------- --------------------------- + 24 PortChannel24 LACP(A)(Up) Ethernet28(S) Ethernet24(S) + 48 PortChannel48 LACP(A)(Up) Ethernet52(S) Ethernet48(S) + 40 PortChannel40 LACP(A)(Up) Ethernet44(S) Ethernet40(S) + 0 PortChannel0 LACP(A)(Up) Ethernet0(S) Ethernet4(S) + 8 PortChannel8 LACP(A)(Up) Ethernet8(S) Ethernet12(S) + ``` + + +### PortChannel Config commands + +This sub-section explains how to configure the portchannel and its member ports. + +**config portchannel** + +This command is used to add or delete the portchannel. +It is recommended to use portchannel names in the format "PortChannelxxxx", where "xxxx" is number of 1 to 4 digits. Ex: "PortChannel0002". + +NOTE: If users specify any other name like "pc99", command will succeed, but such names are not supported. Such names are not printed properly in the "show interface portchannel" command. It is recommended not to use such names. + +When any port is already member of any other portchannel and if user tries to add the same port in some other portchannel (without deleting it from the current portchannel), the command fails internally. But, it does not print any error message. In such cases, remove the member from current portchannel and then add it to new portchannel. + +Command takes two optional arguements given below. +1) min-links - minimum number of links required to bring up the portchannel +2. fallback - true/false. LACP fallback feature can be enabled / disabled. When it is set to true, only one member port will be selected as active per portchannel during fallback mode. Refer https://github.com/Azure/SONiC/blob/master/doc/lag/LACP%20Fallback%20Feature%20for%20SONiC_v0.5.md for more details about fallback feature. + +A port channel can be deleted only if it does not have any members or the members are already deleted. When a user tries to delete a port channel and the port channel still has one or more members that exist, the deletion of port channel is blocked. + +- Usage: + ``` + config portchannel (add | del) [--min-links ] [--fallback (true | false)] + ``` + +- Example (Create the portchannel with name "PortChannel0011"): + ``` + admin@sonic:~$ sudo config portchannel add PortChannel0011 + ``` + +**config portchannel member** + +This command adds or deletes a member port to/from the already created portchannel. + +- Usage: + ``` + config portchannel member (add | del) + ``` + +- Example (Add interface Ethernet4 as member of the portchannel "PortChannel0011"): + ``` + admin@sonic:~$ sudo config portchannel member add PortChannel0011 Ethernet4 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#portchannels) + +## NVGRE + +This section explains the various show commands and configuration commands available for users. + +### NVGRE show commands + +This subsection explains how to display the NVGRE configuration. + +**show nvgre-tunnel** + +This command displays the NVGRE tunnel configuration. + +- Usage: +```bash +show nvgre-tunnel +``` + +- Example: +```bash +admin@sonic:~$ show nvgre-tunnel +TUNNEL NAME SRC IP +------------- -------- +tunnel_1 10.0.0.1 +``` + +**show nvgre-tunnel-map** + +This command displays the NVGRE tunnel map configuration. + +- Usage: +```bash +show nvgre-tunnel-map +``` + +- Example: +```bash +admin@sonic:~$ show nvgre-tunnel-map +TUNNEL NAME TUNNEL MAP NAME VLAN ID VSID +------------- ----------------- --------- ------ +tunnel_1 Vlan1000 1000 5000 +tunnel_1 Vlan2000 2000 6000 +``` + +### NVGRE config commands + +This subsection explains how to configure the NVGRE. + +**config nvgre-tunnel** + +This command is used to manage the NVGRE tunnel objects. +It supports add/delete operations. + +- Usage: +```bash +config nvgre-tunnel add --src-ip +config nvgre-tunnel delete +``` + +- Parameters: + - _tunnel-name_: the name of the NVGRE tunnel + - _src-ip_: source ip address + +- Examples: +```bash +config nvgre-tunnel add 'tunnel_1' --src-ip '10.0.0.1' +config nvgre-tunnel delete 'tunnel_1' +``` + +**config nvgre-tunnel-map** + +This command is used to manage the NVGRE tunnel map objects. +It supports add/delete operations. + +- Usage: +```bash +config nvgre-tunnel-map add --vlan-id --vsid +config nvgre-tunnel-map delete +``` + +- Parameters: + - _tunnel-name_: the name of the NVGRE tunnel + - _tunnel-map-name_: the name of the NVGRE tunnel map + - _vlan-id_: VLAN identifier + - _vsid_: Virtual Subnet Identifier + +- Examples: +```bash +config nvgre-tunnel-map add 'tunnel_1' 'Vlan2000' --vlan-id '2000' --vsid '6000' +config nvgre-tunnel-map delete 'tunnel_1' 'Vlan2000' +``` + +## Password Hardening + +### PW config commands + +**pw enable** + +Passwoed Hardening enable feature, set configuration: + +``` +root@r-panther-13:/home/admin# config passwh policies state --help +Usage: config passwh policies state [OPTIONS] STATE + + state of the feature + +Options: + -?, -h, --help Show this message and exit. +``` + +**pw classes** + +PW class is the type of characters the user is required to enter when setting/updating a PW. + +There are 4 classes. (see description in arc section) + +The user will be able to choose whether to enforce all PW class characters in the PW or only a subset of the characters. + +A CLI command will be available to the user for this configuration. Once a user has selected the class types he wants to enforce (from a pre-defined options list), this will enforce the PW selected by the user to have at least 1 character from each class in the selected option. + +The CLI classes options will be as follows: + +None - Meaning no required classes. + +lower- lowerLowercase Characters + +upper - Uppercase + +digit - Numbers + +special - Special symbols (seen in requirement chapter) + +multiple char enforcement + +There will be no enforcement of multiple characters from a specific class or a specific character (be either letter or symbol) to appear in the PW. + +The CLI command to configure the PW class type will be along the following lines: + +Set classes configuration: +``` +------------------------------------------------------------ +root@r-panther-13:/home/admin# config passwh policies lower-class --help +Usage: config passwh policies lower-class [OPTIONS] LOWER_CLASS + + password lower chars policy + +Options: + -?, -h, --help Show this message and exit. +------------------------------------------------------------ +root@r-panther-13:/home/admin# config passwh policies upper-class --help +Usage: config passwh policies upper-class [OPTIONS] UPPER_CLASS + + password upper chars policy + +Options: + -h, -?, --help Show this message and exit. +------------------------------------------------------------ +root@r-panther-13:/home/admin# config passwh policies digits-class --help +Usage: config passwh policies digits-class [OPTIONS] DIGITS_CLASS + + password digits chars policy + +Options: + -h, -?, --help Show this message and exit. +------------------------------------------------------------ +root@r-panther-13:/home/admin# config passwh policies special-class --help +Usage: config passwh policies special-class [OPTIONS] SPECIAL_CLASS + + password special chars policy + +Options: + -?, -h, --help Show this message and exit. +------------------------------------------------------------ +``` + +Note: Meaning: no must use of lower, no must use of upper, must use digit, must use special characters + +**pw length** + +Set len-min configuration: +``` +root@r-panther-13:/home/admin# config passwh policies len-min --help +Usage: config passwh policies len-min [OPTIONS] LEN_MIN + + password min length + +Options: + -?, -h, --help Show this message and exit. +``` + +Note: Where length is a number between 0 and 32. + +Once the user changed the minimum password length - the settings will be applied to the config node and will be enforced on the next pw change + +**pw age** + +* PW age expire + +Set configuration: +``` +root@r-panther-13:/home/admin# config passwh policies expiration --help +Usage: config passwh policies expiration [OPTIONS] EXPIRATION + + expiration time (days unit) + +Options: + -h, -?, --help Show this message and exit. +``` + +Notes: Where age is in days and between 1 and 365 days (default 180). +* PW Age Change Warning + +Set configuration: +``` +root@r-panther-13:/home/admin# config passwh policies expiration-warning --help +Usage: config passwh policies expiration-warning [OPTIONS] EXPIRATION_WARNING + + expiration warning time (days unit) + +Options: + -?, -h, --help Show this message and exit. +``` + +Notes: The warning_days can be configured between 1 and 30 days (default 15). + + +**pw username-match** + +Set configuration: + +``` +root@r-panther-13:/home/admin# config passwh policies username-passw-match --help +Usage: config passwh policies username-passw-match [OPTIONS] + USERNAME_PASSW_MATCH + + username password match + +Options: + -h, -?, --help Show this message and exit. +``` + +**pw saving** +Set configuration: + +``` +root@r-panther-13:/home/admin# config passwh policies history --help +Usage: config passwh policies history [OPTIONS] HISTORY + + num of old password that the system will recorded + +Options: + -h, -?, --help Show this message and exit. +``` + +### PW show commands + +**show passwh** + +Show command should be extended in order to add "passwh" alias: + +``` +root@r-panther-13:/home/admin# show passwh policies +STATE EXPIRATION EXPIRATION WARNING HISTORY LEN MAX LEN MIN USERNAME PASSW MATCH LOWER CLASS UPPER CLASS DIGITS CLASS SPECIAL CLASS +------- ------------ -------------------- --------- --------- --------- ---------------------- ------------- ------------- -------------- --------------- +enabled 30 10 4 100 30 false true true true true +``` + +## PBH + +This section explains the various show commands and configuration commands available for users. + +### PBH show commands + +This subsection explains how to display PBH configuration and statistics. + +**show pbh table** + +This command displays PBH table configuration. + +- Usage: +```bash +show pbh table +``` + +- Example: +```bash +admin@sonic:~$ show pbh table +NAME INTERFACE DESCRIPTION +--------- --------------- --------------- +pbh_table Ethernet0 NVGRE and VxLAN + Ethernet4 + PortChannel0001 + PortChannel0002 +``` + +**show pbh rule** + +This command displays PBH rule configuration. + +- Usage: +```bash +show pbh rule +``` + +- Example: +```bash +admin@sonic:~$ show pbh rule +TABLE RULE PRIORITY MATCH HASH ACTION COUNTER +--------- ------ ---------- ------------------------------------ ------------- ------------- --------- +pbh_table nvgre 2 ether_type: 0x0800 inner_v6_hash SET_ECMP_HASH DISABLED + ip_protocol: 0x2f + gre_key: 0x2500/0xffffff00 + inner_ether_type: 0x86dd +pbh_table vxlan 1 ether_type: 0x0800 inner_v4_hash SET_LAG_HASH ENABLED + ip_protocol: 0x11 + l4_dst_port: 0x12b5 + inner_ether_type: 0x0800 +``` + +**show pbh hash** + +This command displays PBH hash configuration. + +- Usage: +```bash +show pbh hash +``` + +- Example: +```bash +admin@sonic:~$ show pbh hash +NAME HASH FIELD +------------- ----------------- +inner_v4_hash inner_ip_proto + inner_l4_dst_port + inner_l4_src_port + inner_dst_ipv4 + inner_src_ipv4 +inner_v6_hash inner_ip_proto + inner_l4_dst_port + inner_l4_src_port + inner_dst_ipv6 + inner_src_ipv6 +``` + +**show pbh hash-field** + +This command displays PBH hash field configuration. + +- Usage: +```bash +show pbh hash-field +``` + +- Example: +```bash +admin@sonic:~$ show pbh hash-field +NAME FIELD MASK SEQUENCE SYMMETRIC +----------------- ----------------- --------- ---------- ----------- +inner_ip_proto INNER_IP_PROTOCOL N/A 1 No +inner_l4_dst_port INNER_L4_DST_PORT N/A 2 Yes +inner_l4_src_port INNER_L4_SRC_PORT N/A 2 Yes +inner_dst_ipv4 INNER_DST_IPV4 255.0.0.0 3 Yes +inner_src_ipv4 INNER_SRC_IPV4 0.0.0.255 3 Yes +inner_dst_ipv6 INNER_DST_IPV6 ffff:: 4 Yes +inner_src_ipv6 INNER_SRC_IPV6 ::ffff 4 Yes +``` + +- Note: + - _SYMMETRIC_ is an artificial column and is only used to indicate fields symmetry + +**show pbh statistics** + +This command displays PBH statistics. + +- Usage: +```bash +show pbh statistics +``` + +- Example: +```bash +admin@sonic:~$ show pbh statistics +TABLE RULE RX PACKETS COUNT RX BYTES COUNT +--------- ------ ------------------ ---------------- +pbh_table nvgre 0 0 +pbh_table vxlan 0 0 +``` + +- Note: + - _RX PACKETS COUNT_ and _RX BYTES COUNT_ can be cleared by user: + ```bash + admin@sonic:~$ sonic-clear pbh statistics + ``` + +### PBH config commands + +This subsection explains how to configure PBH. + +**config pbh table** + +This command is used to manage PBH table objects. +It supports add/update/remove operations. + +- Usage: +```bash +config pbh table add --interface-list --description +config pbh table update [ --interface-list ] [ --description ] +config pbh table delete +``` + +- Parameters: + - _table_name_: the name of the PBH table + - _interface_list_: interfaces to which PBH table is applied + - _description_: the description of the PBH table + +- Examples: +```bash +config pbh table add 'pbh_table' \ +--interface-list 'Ethernet0,Ethernet4,PortChannel0001,PortChannel0002' \ +--description 'NVGRE and VxLAN' +config pbh table update 'pbh_table' \ +--interface-list 'Ethernet0' +config pbh table delete 'pbh_table' +``` + +**config pbh rule** + +This command is used to manage PBH rule objects. +It supports add/update/remove operations. + +- Usage: +```bash +config pbh rule add --priority \ +[ --gre-key ] [ --ether-type ] [ --ip-protocol ] \ +[ --ipv6-next-header ] [ --l4-dst-port ] [ --inner-ether-type ] \ +--hash [ --packet-action ] [ --flow-counter ] +config pbh rule update [ --priority ] \ +[ --gre-key ] [ --ether-type ] [ --ip-protocol ] \ +[ --ipv6-next-header ] [ --l4-dst-port ] [ --inner-ether-type ] \ +[ --hash ] [ --packet-action ] [ --flow-counter ] +config pbh rule delete +``` + +- Parameters: + - _table_name_: the name of the PBH table + - _rule_name_: the name of the PBH rule + - _priority_: the priority of the PBH rule + - _gre_key_: packet match for the PBH rule: GRE key (value/mask) + - _ether_type_: packet match for the PBH rule: EtherType (IANA Ethertypes) + - _ip_protocol_: packet match for the PBH rule: IP protocol (IANA Protocol Numbers) + - _ipv6_next_header_: packet match for the PBH rule: IPv6 Next header (IANA Protocol Numbers) + - _l4_dst_port_: packet match for the PBH rule: L4 destination port + - _inner_ether_type_: packet match for the PBH rule: inner EtherType (IANA Ethertypes) + - _hash_: _hash_ object to apply with the PBH rule + - _packet_action_: packet action for the PBH rule + + Valid values: + - SET_ECMP_HASH + - SET_LAG_HASH + + Default: + - SET_ECMP_HASH + + - _flow_counter_: packet/byte counter for the PBH rule + + Valid values: + - DISABLED + - ENABLED + + Default: + - DISABLED + +- Examples: +```bash +config pbh rule add 'pbh_table' 'nvgre' \ +--priority '2' \ +--ether-type '0x0800' \ +--ip-protocol '0x2f' \ +--gre-key '0x2500/0xffffff00' \ +--inner-ether-type '0x86dd' \ +--hash 'inner_v6_hash' \ +--packet-action 'SET_ECMP_HASH' \ +--flow-counter 'DISABLED' +config pbh rule update 'pbh_table' 'nvgre' \ +--flow-counter 'ENABLED' +config pbh rule delete 'pbh_table' 'nvgre' +``` + +**config pbh hash** + +This command is used to manage PBH hash objects. +It supports add/update/remove operations. + +- Usage: +```bash +config pbh hash add --hash-field-list +config pbh hash update [ --hash-field-list ] +config pbh hash delete +``` + +- Parameters: + - _hash_name_: the name of the PBH hash + - _hash_field_list_: list of _hash-field_ objects to apply with the PBH hash + +- Examples: +```bash +config pbh hash add 'inner_v6_hash' \ +--hash-field-list 'inner_ip_proto,inner_l4_dst_port,inner_l4_src_port,inner_dst_ipv6,inner_src_ipv6' +config pbh hash update 'inner_v6_hash' \ +--hash-field-list 'inner_ip_proto' +config pbh hash delete 'inner_v6_hash' +``` + +**config pbh hash-field** + +This command is used to manage PBH hash field objects. +It supports add/update/remove operations. + +- Usage: +```bash +config pbh hash-field add \ +--hash-field [ --ip-mask ] --sequence-id +config pbh hash-field update \ +[ --hash-field ] [ --ip-mask ] [ --sequence-id ] +config pbh hash-field delete +``` + +- Parameters: + - _hash_field_name_: the name of the PBH hash field + - _hash_field_: native hash field for the PBH hash field + + Valid values: + - INNER_IP_PROTOCOL + - INNER_L4_DST_PORT + - INNER_L4_SRC_PORT + - INNER_DST_IPV4 + - INNER_SRC_IPV4 + - INNER_DST_IPV6 + - INNER_SRC_IPV6 + + - _ip_mask_: IPv4/IPv6 address mask for the PBH hash field + + Valid only: _hash_field_ is: + - INNER_DST_IPV4 + - INNER_SRC_IPV4 + - INNER_DST_IPV6 + - INNER_SRC_IPV6 + + - _sequence_id_: the order in which fields are hashed + +- Examples: +```bash +config pbh hash-field add 'inner_dst_ipv6' \ +--hash-field 'INNER_DST_IPV6' \ +--ip-mask 'ffff::' \ +--sequence-id '4' +config pbh hash-field update 'inner_dst_ipv6' \ +--ip-mask 'ffff:ffff::' +config pbh hash-field delete 'inner_dst_ipv6' +``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#pbh) + +## QoS + +### QoS Show commands + +#### PFC + +**show pfc counters** + +This command displays the details of Rx & Tx priority-flow-control (pfc) for all ports. This command can be used to clear the counters using -c option. + +- Usage: + ``` + show pfc counters + ``` + +- Example: + ``` + admin@sonic:~$ show pfc counters + Port Rx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 + ----------- ------ ------ ------ ------ ------ ------ ------ ------ + Ethernet0 0 0 0 0 0 0 0 0 + Ethernet4 0 0 0 0 0 0 0 0 + Ethernet8 0 0 0 0 0 0 0 0 + Ethernet12 0 0 0 0 0 0 0 0 + + Port Tx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 + ----------- ------ ------ ------ ------ ------ ------ ------ ------ + Ethernet0 0 0 0 0 0 0 0 0 + Ethernet4 0 0 0 0 0 0 0 0 + Ethernet8 0 0 0 0 0 0 0 0 + Ethernet12 0 0 0 0 0 0 0 0 + + ... + ``` + + +- NOTE: PFC counters can be cleared by the user with the following command: + ``` + admin@sonic:~$ sonic-clear pfccounters + ``` + +**show pfc asymmetric** + +This command displays the status of asymmetric PFC for all interfaces or a given interface. + +- Usage: + ``` + show pfc asymmetric [] + ``` + +- Example: + ``` + admin@sonic:~$ show pfc asymmetric + + Interface Asymmetric + ----------- ------------ + Ethernet0 off + Ethernet2 off + Ethernet4 off + Ethernet6 off + Ethernet8 off + Ethernet10 off + Ethernet12 off + Ethernet14 off + + admin@sonic:~$ show pfc asymmetric Ethernet0 + + Interface Asymmetric + ----------- ------------ + Ethernet0 off + ``` + +**show pfc priority** + +This command displays the lossless priorities for all interfaces or a given interface. + +- Usage: + ``` + show pfc priority [] + ``` + +- Example: + ``` + admin@sonic:~$ show pfc priority + + Interface Lossless priorities + ----------- --------------------- + Ethernet0 3,4 + Ethernet2 3,4 + Ethernet8 3,4 + Ethernet10 3,4 + Ethernet16 3,4 + + admin@sonic:~$ show pfc priority Ethernet0 + + Interface Lossless priorities + ----------- --------------------- + Ethernet0 3,4 + ``` + +#### Queue And Priority-Group + +This sub-section explains the following queue parameters that can be displayed using "show queue" command. +1) queue counters +2) queue watermark +3) priority-group watermark +4) queue persistent-watermark + + +**show queue counters** + +This command displays packet and byte counters for all queues of all ports or one specific-port given as arguement. +This command can be used to clear the counters for all queues of all ports. Note that port specific clear is not supported. + +- Usage: + ``` + show queue counters [] + ``` + +- Example: + ``` + admin@sonic:~$ show queue counters + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes + --------- ----- -------------- --------------- ----------- ------------ + Ethernet0 UC0 0 0 0 0 + Ethernet0 UC1 0 0 0 0 + Ethernet0 UC2 0 0 0 0 + Ethernet0 UC3 0 0 0 0 + Ethernet0 UC4 0 0 0 0 + Ethernet0 UC5 0 0 0 0 + Ethernet0 UC6 0 0 0 0 + Ethernet0 UC7 0 0 0 0 + Ethernet0 UC8 0 0 0 0 + Ethernet0 UC9 0 0 0 0 + Ethernet0 MC0 0 0 0 0 + Ethernet0 MC1 0 0 0 0 + Ethernet0 MC2 0 0 0 0 + Ethernet0 MC3 0 0 0 0 + Ethernet0 MC4 0 0 0 0 + Ethernet0 MC5 0 0 0 0 + Ethernet0 MC6 0 0 0 0 + Ethernet0 MC7 0 0 0 0 + Ethernet0 MC8 0 0 0 0 + Ethernet0 MC9 0 0 0 0 + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes + --------- ----- -------------- --------------- ----------- ------------ + Ethernet4 UC0 0 0 0 0 + Ethernet4 UC1 0 0 0 0 + Ethernet4 UC2 0 0 0 0 + Ethernet4 UC3 0 0 0 0 + Ethernet4 UC4 0 0 0 0 + Ethernet4 UC5 0 0 0 0 + Ethernet4 UC6 0 0 0 0 + Ethernet4 UC7 0 0 0 0 + Ethernet4 UC8 0 0 0 0 + Ethernet4 UC9 0 0 0 0 + Ethernet4 MC0 0 0 0 0 + Ethernet4 MC1 0 0 0 0 + Ethernet4 MC2 0 0 0 0 + Ethernet4 MC3 0 0 0 0 + Ethernet4 MC4 0 0 0 0 + Ethernet4 MC5 0 0 0 0 + Ethernet4 MC6 0 0 0 0 + Ethernet4 MC7 0 0 0 0 + Ethernet4 MC8 0 0 0 0 + Ethernet4 MC9 0 0 0 0 + + ... + ``` + +Optionally, you can specify an interface name in order to display only that particular interface + +- Example: + ``` + admin@sonic:~$ show queue counters Ethernet72 + ``` + +- NOTE: Queue counters can be cleared by the user with the following command: + ``` + admin@sonic:~$ sonic-clear queuecounters + ``` + +**show queue watermark** + +This command displays the user watermark for the queues (Egress shared pool occupancy per queue) for either the unicast queues or multicast queues for all ports + +- Usage: + ``` + show queue watermark (multicast | unicast) + ``` + +- Example: + ``` + admin@sonic:~$ show queue watermark unicast + Egress shared pool occupancy per unicast queue: + Port UC0 UC1 UC2 UC3 UC4 UC5 UC6 UC7 + ----------- ----- ----- ----- ----- ----- ----- ----- ----- + Ethernet0 0 0 0 0 0 0 0 0 + Ethernet4 0 0 0 0 0 0 0 0 + Ethernet8 0 0 0 0 0 0 0 0 + Ethernet12 0 0 0 0 0 0 0 0 + + admin@sonic:~$ show queue watermark multicast (Egress shared pool occupancy per multicast queue) + ``` + +**show priority-group** + +This command displays: +1) The user watermark or persistent-watermark for the Ingress "headroom" or "shared pool occupancy" per priority-group for all ports. +2) Dropped packets per priority-group for all ports + +- Usage: + ``` + show priority-group (watermark | persistent-watermark) (headroom | shared) + show priority-group drop counters + ``` + +- Example: + ``` + admin@sonic:~$ show priority-group watermark shared + Ingress shared pool occupancy per PG: + Port PG0 PG1 PG2 PG3 PG4 PG5 PG6 PG7 + ----------- ----- ----- ----- ----- ----- ----- ----- ----- + Ethernet0 0 0 0 0 0 0 0 0 + Ethernet4 0 0 0 0 0 0 0 0 + Ethernet8 0 0 0 0 0 0 0 0 + Ethernet12 0 0 0 0 0 0 0 0 + ``` + +- Example (Ingress headroom per PG): + ``` + admin@sonic:~$ show priority-group watermark headroom + ``` + +- Example (Ingress shared pool occupancy per PG): + ``` + admin@sonic:~$ show priority-group persistent-watermark shared + ``` + +- Example (Ingress headroom per PG): + ``` + admin@sonic:~$ show priority-group persistent-watermark headroom + ``` + +- Example (Ingress dropped packets per PG): + ``` + admin@sonic:~$ show priority-group drop counters + Ingress PG dropped packets: + Port PG0 PG1 PG2 PG3 PG4 PG5 PG6 PG7 + ----------- ----- ----- ----- ----- ----- ----- ----- ----- + Ethernet0 0 0 0 0 0 0 0 0 + Ethernet4 0 0 0 0 0 0 0 0 + Ethernet8 0 0 0 0 0 0 0 0 + Ethernet12 0 0 0 0 0 0 0 0 + ``` + +In addition to user watermark("show queue|priority-group watermark ..."), a persistent watermark is available. +It hold values independently of user watermark. This way user can use "user watermark" for debugging, clear it, etc, but the "persistent watermark" will not be affected. + +**show queue persistent-watermark** + +This command displays the user persistet-watermark for the queues (Egress shared pool occupancy per queue) for either the unicast queues or multicast queues for all ports + +- Usage: + ``` + show queue persistent-watermark (unicast | multicast) + ``` + +- Example: + ``` + admin@sonic:~$ show queue persistent-watermark unicast + Egress shared pool occupancy per unicast queue: + Port UC0 UC1 UC2 UC3 UC4 UC5 UC6 UC7 + ----------- ----- ----- ----- ----- ----- ----- ----- ----- + Ethernet0 N/A N/A N/A N/A N/A N/A N/A N/A + Ethernet4 N/A N/A N/A N/A N/A N/A N/A N/A + Ethernet8 N/A N/A N/A N/A N/A N/A N/A N/A + Ethernet12 N/A N/A N/A N/A N/A N/A N/A N/A + ``` + +- Example (Egress shared pool occupancy per multicast queue): + ``` + admin@sonic:~$ show queue persistent-watermark multicast + ``` + +- NOTE: "user watermark", "persistent watermark" and "ingress dropped packets" can be cleared by user: + + ``` + admin@sonic:~$ sonic-clear queue persistent-watermark unicast + + admin@sonic:~$ sonic-clear queue persistent-watermark multicast + + admin@sonic:~$ sonic-clear priority-group persistent-watermark shared + + admin@sonic:~$ sonic-clear priority-group persistent-watermark headroom + + admin@sonic:~$ sonic-clear priority-group drop counters + ``` + +#### Buffer Pool + +This sub-section explains the following buffer pool parameters that can be displayed using "show buffer_pool" command. +1) buffer pool watermark +2) buffer pool persistent-watermark + +**show buffer_pool watermark** + +This command displays the user watermark for all the buffer pools + +- Usage: + ``` + show buffer_pool watermark + ``` + +- Example: + ``` + admin@sonic:~$ show buffer_pool watermark + Shared pool maximum occupancy: + Pool Bytes + --------------------- ------- + ingress_lossless_pool 0 + lossy_pool 2464 + ``` + + +**show buffer_pool persistent-watermark** + +This command displays the user persistent-watermark for all the buffer pools + +- Usage: + ``` + show buffer_pool persistent-watermark + ``` + +- Example: + ``` + admin@sonic:~$ show buffer_pool persistent-watermark + Shared pool maximum occupancy: + Pool Bytes + --------------------- ------- + ingress_lossless_pool 0 + lossy_pool 2464 + ``` + + + +### QoS config commands + +**config qos clear** + +This command is used to clear all the QoS configuration from all the following QOS Tables in ConfigDB. + +1) TC_TO_PRIORITY_GROUP_MAP, +2) MAP_PFC_PRIORITY_TO_QUEUE, +3) TC_TO_QUEUE_MAP, +4) DSCP_TO_TC_MAP, +5) MPLS_TC_TO_TC_MAP, +6) SCHEDULER, +7) PFC_PRIORITY_TO_PRIORITY_GROUP_MAP, +8) PORT_QOS_MAP, +9) WRED_PROFILE, +10) QUEUE, +11) CABLE_LENGTH, +12) BUFFER_POOL, +13) BUFFER_PROFILE, +14) BUFFER_PG, +15) BUFFER_QUEUE + +- Usage: + ``` + config qos clear + ``` + +- Example: + ``` + admin@sonic:~$ sudo config qos clear + ``` + +**config qos reload** + +This command is used to reload the QoS configuration. +QoS configuration has got two sets of configurations. +1) Generic QOS Configuration - This gives complete list of all possible QOS configuration. Its given in the file /usr/share/sonic/templates/qos_config.j2 in the device. + Reference: https://github.com/Azure/sonic-buildimage/blob/master/files/build_templates/qos_config.j2 + Users have flexibility to have platform specific qos configuration by placing the qos_config.j2 file at /usr/share/sonic/device///. + If users want to modify any of this loaded QOS configuration, they can modify this file in the device and then issue the "config qos reload" command. + +2) Platform specific buffer configuration. Every platform has got platform specific and topology specific (T0 or T1 or T2) buffer configuration at /usr/share/sonic/device///buffers_defaults_tx.j2 + In addition to platform specific configuration file, a generic configuration file is also present at /usr/share/sonic/templates/buffers_config.j2. + Reference: https://github.com/Azure/sonic-buildimage/blob/master/files/build_templates/buffers_config.j2 + Users can either modify the platform specific configuration file, or the generic configuration file and then issue this "config qos reload" command. + +These configuration files are already loaded in the device as part of the reboot process. In case if users wants to modify any of these configurations, they need to modify the appropriate QOS tables and fields in these files and then use this reload command. +This command uses those modified buffers.json.j2 file & qos.json.j2 file and reloads the new QOS configuration. +If users have not made any changes in these configuration files, this command need not be executed. + +Some of the example QOS configurations that users can modify are given below. +1) TC_TO_PRIORITY_GROUP_MAP +2) MAP_PFC_PRIORITY_TO_QUEUE +3) TC_TO_QUEUE_MAP +4) DSCP_TO_TC_MAP +5) MPLS_TC_TO_TC_MAP +6) SCHEDULER +7) PFC_PRIORITY_TO_PRIORITY_GROUP_MAP +8) PORT_QOS_MAP +9) WRED_PROFILE +10) CABLE_LENGTH +11) BUFFER_QUEUE + +- Usage: + ``` + config qos reload + ``` + +- Example: + ``` + admin@sonic:~$ sudo config qos reload + Running command: /usr/local/bin/sonic-cfggen -d -t /usr/share/sonic/device/x86_64-dell_z9100_c2538-r0/Force10-Z9100-C32/buffers.json.j2 >/tmp/buffers.json + Running command: /usr/local/bin/sonic-cfggen -d -t /usr/share/sonic/device/x86_64-dell_z9100_c2538-r0/Force10-Z9100-C32/qos.json.j2 -y /etc/sonic/sonic_version.yml >/tmp/qos.json + Running command: /usr/local/bin/sonic-cfggen -j /tmp/buffers.json --write-to-db + Running command: /usr/local/bin/sonic-cfggen -j /tmp/qos.json --write-to-db + + In this example, it uses the buffers.json.j2 file and qos.json.j2 file from platform specific folders. + When there are no changes in the platform specific configutation files, they internally use the file "/usr/share/sonic/templates/buffers_config.j2" and "/usr/share/sonic/templates/qos_config.j2" to generate the configuration. + ``` + +**config qos reload --ports port_list** + +This command is used to reload the default QoS configuration on a group of ports. +Typically, the default QoS configuration is in the following tables. +1) PORT_QOS_MAP +2) QUEUE +3) BUFFER_PG +4) BUFFER_QUEUE +5) BUFFER_PORT_INGRESS_PROFILE_LIST +6) BUFFER_PORT_EGRESS_PROFILE_LIST +7) CABLE_LENGTH + +If there was QoS configuration in the above tables for the ports: + + - if `--force` option is provied, the existing QoS configuration will be replaced by the default QoS configuration, + - otherwise, the command will exit with nothing updated. + +- Usage: + ``` + config qos reload --ports [,port] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config qos reload --ports Ethernet0,Ethernet4 + + In this example, it updates the QoS configuration on port Ethernet0 and Ethernet4 to default. + If there was QoS configuration on the ports, the command will clear the existing QoS configuration on the port and reload to default. + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#qos) + +## Radius + +### show radius commands + +This command displays the global radius configuration that includes the auth_type, retransmit, timeout and passkey. + +- Usage: + ``` + show radius + ``` +- Example: + + ``` + admin@sonic:~$ show radius + RADIUS global auth_type pap (default) + RADIUS global retransmit 3 (default) + RADIUS global timeout 5 (default) + RADIUS global passkey (default) + + ``` + +### Radius config commands + +This command is to config the radius server for various parameter listed. + + - Usage: + ``` + config radius + ``` +- Example: + ``` + admin@sonic:~$ config radius + + add Specify a RADIUS server + authtype Specify RADIUS server global auth_type [chap | pap | mschapv2] + default set its default configuration + delete Delete a RADIUS server + nasip Specify RADIUS server global NAS-IP|IPV6-Address + passkey Specify RADIUS server global passkey + retransmit Specify RADIUS server global retry attempts <0 - 10> + sourceip Specify RADIUS server global source ip + statistics Specify RADIUS server global statistics [enable | disable |... + timeout Specify RADIUS server global timeout <1 - 60> + + ``` + +## sFlow + +### sFlow Show commands + +**show sflow** + +This command displays the global sFlow configuration that includes the admin state, collectors, the Agent ID and counter polling interval. + +- Usage: + ``` + show sflow + ``` + +- Example: + ``` + admin@sonic:~# show sflow + sFlow Global Information: + sFlow Admin State: up + sFlow Polling Interval: default + sFlow AgentID: lo + + 2 Collectors configured: + Name: collector_A IP addr: 10.11.46.2 UDP port: 6343 + Name: collector_lo IP addr: 127.0.0.1 UDP port: 6343 + ``` + + +**show sflow interface** + +This command displays the per-interface sflow admin status and the sampling rate. + +- Usage: + ``` + show sflow interface + ``` + +- Example: + ``` + admin@sonic:~# show sflow interface + + sFlow interface configurations + +-------------+---------------+-----------------+ + | Interface | Admin State | Sampling Rate | + +=============+===============+=================+ + | Ethernet0 | up | 4000 | + +-------------+---------------+-----------------+ + | Ethernet1 | up | 4000 | + +-------------+---------------+-----------------+ + ... + +-------------+---------------+-----------------+ + | Ethernet61 | up | 4000 | + +-------------+---------------+-----------------+ + | Ethernet62 | up | 4000 | + +-------------+---------------+-----------------+ + | Ethernet63 | up | 4000 | + +-------------+---------------+-----------------+ + + ``` + +### sFlow Config commands + +**config sflow collector add** + +This command is used to add a sFlow collector. Note that a maximum of 2 collectors is allowed. + +- Usage: + ``` + config sflow collector add [port ] + ``` + + - Parameters: + - collector-name: unique name of the sFlow collector + - ipv4-address : IP address of the collector in dotted decimal format for IPv4 + - ipv6-address : x: x: x: x::x format for IPv6 address of the collector (where :: notation specifies successive hexadecimal fields of zeros) + - port (OPTIONAL): specifies the UDP port of the collector (the range is from 0 to 65535. The default is 6343.) + +- Example: + ``` + admin@sonic:~# sudo config sflow collector add collector_A 10.11.46.2 + ``` + +**config sflow collector del** + +This command is used to delete a sFlow collector with the given name. + +- Usage: + ``` + config sflow collector del + ``` + + - Parameters: + - collector-name: unique name of the sFlow collector + +- Example: + ``` + admin@sonic:~# sudo config sflow collector del collector_A + ``` + +**config sflow agent-id** + +This command is used to add/delete the sFlow agent-id. This setting is global (applicable to both collectors) and optional. Only a single agent-id is allowed. If agent-id is not specified (with this CLI), an appropriate IP that belongs to the switch is used as the agent-id based on some simple heuristics. + +- Usage: + ``` + config sflow agent-id + ``` + + - Parameters: + - interface-name: specify the interface name whose ipv4 or ipv6 address will be used as the agent-id in sFlow datagrams. + +- Example: + ``` + admin@sonic:~# sudo config sflow agent-id add lo + ``` + +**config sflow** + +Globally, sFlow is disabled by default. When sFlow is enabled globally, the sflow deamon is started and sampling will start on all interfaces which have sFlow enabled at the interface level (see “config sflow interface…”). When sflow is disabled globally, sampling is stopped on all relevant interfaces and sflow daemon is stopped. + +- Usage: + ``` + config sflow + ``` +- Example: + ``` + admin@sonic:~# sudo config sflow enable + ``` +**config sflow interface** + +Enable/disable sflow at an interface level. By default, sflow is enabled on all interfaces at the interface level. Use this command to explicitly disable sFlow for a specific interface. An interface is sampled if sflow is enabled globally as well as at the interface level. Note that this configuration deals only with sFlow flow samples and not counter samples. + +- Usage: + ``` + config sflow interface + ``` + + - Parameters: + - interface-name: specify the interface for which sFlow flow samples have to be enabled/disabled. The “all” keyword is used as a convenience to enable/disable sflow at the interface level for all the interfaces. + +- Example: + ``` + admin@sonic:~# sudo config sflow interface disable Ethernet40 + ``` + +**config sflow interface sample-rate** + +Configure the sample-rate for a specific interface. + +The default sample rate for any interface is (ifSpeed / 1e6) where ifSpeed is in bits/sec. So, the default sample rate based on interface speed is: + + 1-in-1000 for a 1G link + 1-in-10,000 for a 10G link + 1-in-40,000 for a 40G link + 1-in-50,000 for a 50G link + 1-in-100,000 for a 100G link + +It is recommended not to change the defaults. This CLI is to be used only in case of exceptions (e.g., to set the sample-rate to the nearest power-of-2 if there are hardware restrictions in using the defaults) + +- Usage: + ``` + config sflow interface sample-rate + ``` + + - Parameters: + - interface-name: specify the interface for which the sampling rate value is to be set + - value: value is the average number of packets skipped before the sample is taken. "The sampling rate specifies random sampling probability as the ratio of packets observed to samples generated. For example a sampling rate of 256 specifies that, on average, 1 sample will be generated for every 256 packets observed." Valid range 256:8388608. + +- Example: + ``` + admin@sonic:~# sudo config sflow interface sample-rate Ethernet32 1000 + ``` +**config sflow polling-interval** + +This command is used to set the counter polling interval. Default is 20 seconds. + +- Usage: + ``` + config sflow polling-interval + ``` + + - Parameters: + - value: 0-300 seconds. Set polling-interval to 0 to disable counter polling + +- Example: + ``` + admin@sonic:~# sudo config sflow polling-interval 30 + ``` + + +Go Back To [Beginning of the document](#) or [Beginning of this section](#sflow) + +## SNMP + +### SNMP Show commands + +**show runningconfiguration snmp** + +This command displays the global SNMP configuration that includes the location, contact, community, and user settings. + +- Usage: + ``` + show runningconfiguration snmp + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp + Location + ------------ + Emerald City + + + SNMP_CONTACT SNMP_CONTACT_EMAIL + -------------- -------------------- + joe joe@contoso.com + + + Community String Community Type + ------------------ ---------------- + Jack RW + + + User Permission Type Type Auth Type Auth Password Encryption Type Encryption Password + ------ ----------------- ------ ----------- --------------- ----------------- --------------------- + Travis RO Priv SHA TravisAuthPass AES TravisEncryptPass + ``` + +**show runningconfiguration snmp location** + +This command displays the SNMP location setting. + +- Usage: + ``` + show runningconfiguration snmp location + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp location + Location + ------------ + Emerald City + ``` + +- Usage: + ``` + show runningconfiguration snmp location --json + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp location --json + {'Location': 'Emerald City'} + ``` + +**show runningconfiguration snmp contact** + +This command displays the SNMP contact setting. + +- Usage: + ``` + show runningconfiguration snmp contact + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp contact + Contact Contact Email + --------- --------------- + joe joe@contoso.com + ``` + +- Usage: + ``` + show runningconfiguration snmp contact --json + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp contact --json + {'joe': 'joe@contoso.com'} + ``` + +**show runningconfiguration snmp community** + +This command display the SNMP community settings. + +- Usage: + ``` + show runningconfiguration snmp community + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp community + Community String Community Type + ------------------ ---------------- + Jack RW + ``` + +- Usage: + ``` + show runningconfiguration snmp community --json + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp community --json + {'Jack': {'TYPE': 'RW'}} + ``` + +**show runningconfiguration snmp user** + +This command display the SNMP user settings. + +- Usage: + ``` + show runningconfiguration snmp user + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp user + User Permission Type Type Auth Type Auth Password Encryption Type Encryption Password + ------ ----------------- ------ ----------- --------------- ----------------- --------------------- + Travis RO Priv SHA TravisAuthPass AES TravisEncryptPass + ``` + +- Usage: + ``` + show runningconfiguration snmp user --json + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp user --json + {'Travis': {'SNMP_USER_TYPE': 'Priv', 'SNMP_USER_PERMISSION': 'RO', 'SNMP_USER_AUTH_TYPE': 'SHA', 'SNMP_USER_AUTH_PASSWORD': 'TravisAuthPass', 'SNMP_USER_ENCRYPTION_TYPE': 'AES', 'SNMP_USER_ENCRYPTION_PASSWORD': 'TravisEncryptPass'}} + ``` + + +### SNMP Config commands + +This sub-section explains how to configure SNMP. + +**config snmp location add/del/modify** + +This command is used to add, delete, or modify the SNMP location. + +- Usage: + ``` + config snmp location (add | del | modify) + ``` + +- Example (Add new SNMP location "Emerald City" if it does not already exist): + ``` + admin@sonic:~$ sudo config snmp location add Emerald City + SNMP Location Emerald City has been added to configuration + Restarting SNMP service... + ``` + +- Example (Delete SNMP location "Emerald City" if it already exists): + ``` + admin@sonic:~$ sudo config snmp location del Emerald City + SNMP Location Emerald City removed from configuration + Restarting SNMP service... + ``` + +- Example (Modify SNMP location "Emerald City" to "Redmond"): + ``` + admin@sonic:~$ sudo config snmp location modify Redmond + SNMP location Redmond modified in configuration + Restarting SNMP service... + ``` + +**config snmp contact add/del/modify** + +This command is used to add, delete, or modify the SNMP contact. + +- Usage: + ``` + config snmp contact add + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp contact add joe joe@contoso.com + Contact name joe and contact email joe@contoso.com have been added to configuration + Restarting SNMP service... + ``` + +- Usage: + ``` + config snmp contact del + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp contact del joe + SNMP contact joe removed from configuration + Restarting SNMP service... + ``` + +- Usage: + ``` + config snmp contact modify + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp contact modify test test@contoso.com + SNMP contact test and contact email test@contoso.com updated + Restarting SNMP service... + ``` + +**config snmp community add/del/replace** + +This command is used to add, delete, or replace the SNMP community. + +- Usage: + ``` + config snmp community add (RO | RW) + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp community add testcomm ro + SNMP community testcomm added to configuration + Restarting SNMP service... + ``` + +- Usage: + ``` + config snmp community del + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp community del testcomm + SNMP community testcomm removed from configuration + Restarting SNMP service... + ``` + +- Usage: + ``` + config snmp community replace + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp community replace testcomm newtestcomm + SNMP community newtestcomm added to configuration + SNMP community newtestcomm replace community testcomm + Restarting SNMP service... + ``` + +**config snmp user add/del** + +This command is used to add or delete the SNMP user for SNMPv3. + +- Usage: + ``` + config snmp user add (noAuthNoPriv | AuthNoPriv | Priv) (RO | RW) [[(MD5 | SHA | MMAC-SHA-2) ] [(DES |AES) ]] + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp user add testuser1 noauthnopriv ro + SNMP user testuser1 added to configuration + Restarting SNMP service... + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp user add testuser2 authnopriv ro sha testuser2_auth_pass + SNMP user testuser2 added to configuration + Restarting SNMP service... + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp user add testuser3 priv rw md5 testuser3_auth_pass aes testuser3_encrypt_pass + SNMP user testuser3 added to configuration + Restarting SNMP service... + ``` + +- Usage: + ``` + config snmp user del + ``` + +- Example: + ``` + admin@sonic:~$ sudo config snmp user del testuser1 + SNMP user testuser1 removed from configuration + Restarting SNMP service... + ``` + +## Startup & Running Configuration + +### Startup Configuration + +**show startupconfiguration bgp** + +This command is used to display the startup configuration for the BGP module. + +- Usage: + ``` + show startupconfiguration bgp + ``` + +- Example: + ``` + admin@sonic:~$ show startupconfiguration bgp + Routing-Stack is: quagga + ! + ! =========== Managed by sonic-cfggen DO NOT edit manually! ==================== + ! generated by templates/quagga/bgpd.conf.j2 with config DB data + ! file: bgpd.conf + ! + ! + hostname T1-2 + password zebra + log syslog informational + log facility local4 + ! enable password ! + ! + ! bgp multiple-instance + ! + route-map FROM_BGP_SPEAKER_V4 permit 10 + ! + route-map TO_BGP_SPEAKER_V4 deny 10 + ! + router bgp 65000 + bgp log-neighbor-changes + bgp bestpath as-path multipath-relax + no bgp default ipv4-unicast + bgp graceful-restart restart-time 180 + + + ``` + +### Running Configuration +This sub-section explains the show commands for displaying the running configuration for the following modules. +1) bgp +2) interfaces +3) ntp +4) snmp +5) all +6) acl +7) ports +8) syslog + +**show runningconfiguration all** + +This command displays the entire running configuration. + +- Usage: + ``` + show runningconfiguration all + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration all + ``` + +**show runningconfiguration bgp** + +This command displays the running configuration of the BGP module. + +- Usage: + ``` + show runningconfiguration bgp + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration bgp + ``` + +**show runningconfiguration interfaces** + +This command displays the running configuration for the "interfaces". + +- Usage: + ``` + show runningconfiguration interfaces + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration interfaces + ``` + +**show runningconfiguration ntp** + +This command displays the running configuration of the ntp module. + +- Usage: + ``` + show runningconfiguration ntp + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration ntp + NTP Servers + ------------- + 1.1.1.1 + 2.2.2.2 + ``` + +**show runningconfiguration syslog** + +This command displays the running configuration of the syslog module. + +- Usage: + ``` + show runningconfiguration syslog + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration syslog + Syslog Servers + ---------------- + 4.4.4.4 + 5.5.5.5 + ``` + + +**show runningconfiguration snmp** + +This command displays the running configuration of the snmp module. + +- Usage: + ``` + show runningconfiguration snmp + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration snmp + ``` + +**show runningconfiguration acl** + + This command displays the running configuration of the acls + +- Usage: + ``` + show runningconfiguration acl + ``` + +- Example: + ``` + admin@sonic:~$ show runningconfiguration acl + ``` + + **show runningconfiguration ports** + + This command displays the running configuration of the ports + +- Usage: + ``` + show runningconfiguration ports [] + ``` + +- Examples: + ``` + admin@sonic:~$ show runningconfiguration ports + ``` + + ``` + admin@sonic:~$ show runningconfiguration ports Ethernet0 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#Startup--Running-Configuration) + + +## Static routing + +### Static routing Config Commands + +This sub-section explains of commands is used to add or remove the static route. + +**config route add** + +This command is used to add a static route. Note that prefix /nexthop vrf`s and interface name are optional. + +- Usage: + + ``` + config route add prefix [vrf ] nexthop [vrf ] dev + ``` + +- Example: + + ``` + admin@sonic:~$ config route add prefix 2.2.3.4/32 nexthop 30.0.0.9 + admin@sonic:~$ config route add prefix 4.0.0.0/24 nexthop dev Ethernet32.10 + ``` + +It also supports ECMP, and adding a new nexthop to the existing prefix will complement it and not overwrite them. + +- Example: + + ``` + admin@sonic:~$ sudo config route add prefix 2.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.9 + admin@sonic:~$ sudo config route add prefix 2.2.3.4/32 nexthop vrf Vrf-BLUE 30.0.0.10 + ``` + +**config route del** + +This command is used to remove a static route. Note that prefix /nexthop vrf`s and interface name are optional. + +- Usage: + + ``` + config route del prefix [vrf ] nexthop [vrf ] dev + ``` + +- Example: + + ``` + admin@sonic:~$ sudo config route del prefix 2.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.9 + admin@sonic:~$ sudo config route del prefix 2.2.3.4/32 nexthop vrf Vrf-BLUE 30.0.0.10 + ``` + +This sub-section explains of command is used to show current routes. + +**show ip route** + +- Usage: + + ``` + show ip route + ``` + +- Example: + + ``` + admin@sonic:~$ show ip route + Codes: K - kernel route, C - connected, S - static, R - RIP, + O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, + T - Table, v - VNC, V - VNC-Direct, A - Babel, D - SHARP, + F - PBR, f - OpenFabric, + > - selected route, * - FIB route, q - queued, r - rejected, b - backup + + S>* 0.0.0.0/0 [200/0] via 192.168.111.3, eth0, weight 1, 3d03h58m + S> 1.2.3.4/32 [1/0] via 30.0.0.7, weight 1, 00:00:06 + C>* 10.0.0.18/31 is directly connected, Ethernet36, 3d03h57m + C>* 10.0.0.20/31 is directly connected, Ethernet40, 3d03h57m + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#static-routing) + +## Subinterfaces + +### Subinterfaces Show Commands + +**show subinterfaces status** + +This command displays all the subinterfaces that are configured on the device and its current status. + +- Usage: +``` +show subinterfaces status +``` + +- Example: +``` +admin@sonic:~$ show subinterfaces status +Sub port interface Speed MTU Vlan Admin Type +------------------ ------- ----- ------ ------- ------------------- + Eth64.10 100G 9100 100 up dot1q-encapsulation + Ethernet0.100 100G 9100 100 up dot1q-encapsulation +``` + +### Subinterfaces Config Commands + +This sub-section explains how to configure subinterfaces. + +**config subinterface** + +- Usage: +``` +config subinterface (add | del) [vlan <1-4094>] +``` + +- Example (Create the subinterfces with name "Ethernet0.100"): +``` +admin@sonic:~$ sudo config subinterface add Ethernet0.100 +``` + +- Example (Create the subinterfces with name "Eth64.100"): +``` +admin@sonic:~$ sudo config subinterface add Eth64.100 100 +``` + +- Example (Delete the subinterfces with name "Ethernet0.100"): +``` +admin@sonic:~$ sudo config subinterface del Ethernet0.100 +``` + +- Example (Delete the subinterfces with name "Eth64.100"): +``` +admin@sonic:~$ sudo config subinterface del Eth64.100 100 +``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#static-routing) + +## Syslog + +### Syslog Config Commands + +This sub-section of commands is used to add or remove the configured syslog servers. + +**config syslog add** + +This command is used to add a SYSLOG server to the syslog server list. Note that more that one syslog server can be added in the device. + +- Usage: + ``` + config syslog add + ``` + +- Example: + ``` + admin@sonic:~$ sudo config syslog add 1.1.1.1 + Syslog server 1.1.1.1 added to configuration + Restarting rsyslog-config service... + ``` + +**config syslog delete** + +This command is used to delete the syslog server configured. + +- Usage: + ``` + config syslog del + ``` + +- Example: + ``` + admin@sonic:~$ sudo config syslog del 1.1.1.1 + Syslog server 1.1.1.1 removed from configuration + Restarting rsyslog-config service... + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#syslog) + +## System State + +### Processes + +This command is used to determine the CPU utilization. It also lists the active processes along with their corresponding process ID and other relevant parameters. + +This sub-section explains the various "processes" specific data that includes the following. +1) cpu Show processes CPU info +2) memory Show processes memory info +3) summary Show processes info + +“show processes” commands provide a wrapper over linux’s “top” command. “show process cpu” sorts the processes being displayed by cpu-utilization, whereas “show process memory” does it attending to processes’ memory-utilization. + +**show processes cpu** + +This command displays the current CPU usage by process. This command uses linux's "top -bn 1 -o %CPU" command to display the output. + +- Usage: + ``` + show processes cpu + ``` + +*TIP: Users can pipe the output to "head" to display only the "n" number of lines (e.g., `show processes cpu | head -n 10`)* + +- Example: + ``` + admin@sonic:~$ show processes cpu + top - 23:50:08 up 1:18, 1 user, load average: 0.25, 0.29, 0.25 + Tasks: 161 total, 1 running, 160 sleeping, 0 stopped, 0 zombie + %Cpu(s): 3.8 us, 1.0 sy, 0.0 ni, 95.1 id, 0.1 wa, 0.0 hi, 0.0 si, 0.0 st + KiB Mem: 8181216 total, 1161060 used, 7020156 free, 105656 buffers + KiB Swap: 0 total, 0 used, 0 free. 557560 cached Mem + + PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND + 2047 root 20 0 683772 109288 39652 S 23.8 1.3 7:44.79 syncd + 1351 root 20 0 43360 5616 2844 S 11.9 0.1 1:41.56 redis-server + 10093 root 20 0 21944 2476 2088 R 5.9 0.0 0:00.03 top + 1 root 20 0 28992 5508 3236 S 0.0 0.1 0:06.42 systemd + 2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd + 3 root 20 0 0 0 0 S 0.0 0.0 0:00.56 ksoftirqd/0 + 5 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:0H + ... + ``` + +*TIP: Advanced users can view individual processes using variations of the `ps` command (e.g., `ps -ax | grep `)* + +**show processes memory** + +This command displays the current memory usage by processes. This command uses linux's "top -bn 1 -o %MEM" command to display the output. + +- Usage: + ``` + show processes memory + ``` + +*NOTE that pipe option can be used using " | head -n" to display only the "n" number of lines* + +- Example: + ``` + admin@sonic:~$ show processes memory + top - 23:41:24 up 7 days, 39 min, 2 users, load average: 1.21, 1.19, 1.18 + Tasks: 191 total, 2 running, 189 sleeping, 0 stopped, 0 zombie + %Cpu(s): 2.8 us, 20.7 sy, 0.0 ni, 76.3 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st + KiB Mem : 8162264 total, 5720412 free, 945516 used, 1496336 buff/cache + KiB Swap: 0 total, 0 free, 0 used. 6855632 avail Mem + + PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND + 18051 root 20 0 851540 274784 8344 S 0.0 3.4 0:02.77 syncd + 17760 root 20 0 1293428 259212 58732 S 5.9 3.2 96:46.22 syncd + 508 root 20 0 725364 76244 38220 S 0.0 0.9 4:54.49 dockerd + 30853 root 20 0 96348 56824 7880 S 0.0 0.7 0:00.98 show + 17266 root 20 0 509876 49772 30640 S 0.0 0.6 0:06.36 docker + 24891 admin 20 0 515864 49560 30644 S 0.0 0.6 0:05.54 docker + 17643 admin 20 0 575668 49428 30628 S 0.0 0.6 0:06.29 docker + 23885 admin 20 0 369552 49344 30840 S 0.0 0.6 0:05.57 docker + 18055 root 20 0 509076 49260 30296 S 0.0 0.6 0:06.36 docker + 17268 root 20 0 371120 49052 30372 S 0.0 0.6 0:06.45 docker + 1227 root 20 0 443284 48640 30100 S 0.0 0.6 0:41.91 docker + 23785 admin 20 0 443796 48552 30128 S 0.0 0.6 0:05.58 docker + 17820 admin 20 0 435088 48144 29480 S 0.0 0.6 0:06.33 docker + 506 root 20 0 1151040 43140 23964 S 0.0 0.5 8:51.08 containerd + 18437 root 20 0 84852 26388 7380 S 0.0 0.3 65:59.76 python3.6 + ``` + + +**show processes summary** + +This command displays the current summary information about all the processes + +- Usage: + ``` + show processes summary + ``` + +- Example: + ``` + admin@sonic:~$ show processes summary + PID PPID CMD %MEM %CPU + 1 0 /sbin/init 0.0 0.0 + 2 0 [kthreadd] 0.0 0.0 + 3 2 [ksoftirqd/0] 0.0 0.0 + 5 2 [kworker/0:0H] 0.0 0.0 + ... + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#System-State) + +### Services & Memory + +These commands are used to know the services that are running and the memory that is utilized currently. + + +**show services** + +This command displays the state of all the SONiC processes running inside a docker container. This helps to identify the status of SONiC’s critical processes. + +- Usage: + ``` + show services + ``` + +- Example: + ``` + admin@sonic:~$ show services + dhcp_relay docker + --------------------------- + UID PID PPID C STIME TTY TIME CMD + root 1 0 0 05:26 ? 00:00:12 /usr/bin/python /usr/bin/supervi + root 24 1 0 05:26 ? 00:00:00 /usr/sbin/rsyslogd -n + + nat docker + --------------------------- + USER PID PPID C STIME TTY TIME CMD + root 1 0 0 05:26 ? 00:00:12 /usr/bin/python /usr/bin/supervisord + root 18 1 0 05:26 ? 00:00:00 /usr/sbin/rsyslogd -n + root 23 1 0 05:26 ? 00:00:01 /usr/bin/natmgrd + root 34 1 0 05:26 ? 00:00:00 /usr/bin/natsyncd + + snmp docker + --------------------------- + UID PID PPID C STIME TTY TIME CMD + root 1 0 0 05:26 ? 00:00:16 /usr/bin/python /usr/bin/supervi + root 24 1 0 05:26 ? 00:00:02 /usr/sbin/rsyslogd -n + Debian-+ 29 1 0 05:26 ? 00:00:04 /usr/sbin/snmpd -f -LS4d -u Debi + root 31 1 1 05:26 ? 00:15:10 python3.6 -m sonic_ax_impl + + syncd docker + --------------------------- + UID PID PPID C STIME TTY TIME CMD + root 1 0 0 05:26 ? 00:00:13 /usr/bin/python /usr/bin/supervi + root 12 1 0 05:26 ? 00:00:00 /usr/sbin/rsyslogd -n + root 17 1 0 05:26 ? 00:00:00 /usr/bin/dsserve /usr/bin/syncd + root 27 17 22 05:26 ? 04:09:30 /usr/bin/syncd --diag -p /usr/sh + root 51 27 0 05:26 ? 00:00:01 /usr/bin/syncd --diag -p /usr/sh + + swss docker + --------------------------- + UID PID PPID C STIME TTY TIME CMD + root 1 0 0 05:26 ? 00:00:29 /usr/bin/python /usr/bin/supervi + root 25 1 0 05:26 ? 00:00:00 /usr/sbin/rsyslogd -n + root 30 1 0 05:26 ? 00:00:13 /usr/bin/orchagent -d /var/log/s + root 42 1 1 05:26 ? 00:12:40 /usr/bin/portsyncd -p /usr/share + root 45 1 0 05:26 ? 00:00:00 /usr/bin/intfsyncd + root 48 1 0 05:26 ? 00:00:03 /usr/bin/neighsyncd + root 59 1 0 05:26 ? 00:00:01 /usr/bin/vlanmgrd + root 92 1 0 05:26 ? 00:00:01 /usr/bin/intfmgrd + root 3606 1 0 23:36 ? 00:00:00 bash -c /usr/bin/arp_update; sle + root 3621 3606 0 23:36 ? 00:00:00 sleep 300 + + ... + ``` + +**show system-memory** + +This command displays the system-wide memory utilization information – just a wrapper over linux native “free” command + +- Usage: + ``` + show system-memory + ``` + +- Example: + ``` + admin@sonic:~$ show system-memory + Command: free -m -h + total used free shared buffers cached + Mem: 3.9G 2.0G 1.8G 33M 324M 791M + -/+ buffers/cache: 951M 2.9G + Swap: 0B 0B 0B + ``` + +**show mmu** + +This command displays virtual address to the physical address translation status of the Memory Management Unit (MMU). + +- Usage: + ``` + show mmu + ``` + +- Example: + ``` + admin@sonic:~$ show mmu + Pool: ingress_lossless_pool + ---- -------- + xoff 4194112 + type ingress + mode dynamic + size 10875072 + ---- -------- + + Pool: egress_lossless_pool + ---- -------- + type egress + mode static + size 15982720 + ---- -------- + + Pool: egress_lossy_pool + ---- ------- + type egress + mode dynamic + size 9243812 + ---- ------- + + Profile: egress_lossy_profile + ---------- ------------------------------- + dynamic_th 3 + pool [BUFFER_POOL|egress_lossy_pool] + size 1518 + ---------- ------------------------------- + + Profile: pg_lossless_100000_300m_profile + ---------- ----------------------------------- + xon_offset 2288 + dynamic_th -3 + xon 2288 + xoff 268736 + pool [BUFFER_POOL|ingress_lossless_pool] + size 1248 + ---------- ----------------------------------- + + Profile: egress_lossless_profile + --------- ---------------------------------- + static_th 3995680 + pool [BUFFER_POOL|egress_lossless_pool] + size 1518 + --------- ---------------------------------- + + Profile: pg_lossless_100000_40m_profile + ---------- ----------------------------------- + xon_offset 2288 + dynamic_th -3 + xon 2288 + xoff 177632 + pool [BUFFER_POOL|ingress_lossless_pool] + size 1248 + ---------- ----------------------------------- + + Profile: ingress_lossy_profile + ---------- ----------------------------------- + dynamic_th 3 + pool [BUFFER_POOL|ingress_lossless_pool] + size 0 + ---------- ----------------------------------- + + Profile: pg_lossless_40000_40m_profile + ---------- ----------------------------------- + xon_offset 2288 + dynamic_th -3 + xon 2288 + xoff 71552 + pool [BUFFER_POOL|ingress_lossless_pool] + size 1248 + ---------- ----------------------------------- + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#System-State) + +Go Back To [Beginning of the document](#) or [Beginning of this section](#System-Health) + +### System-Health + +These commands are used to monitor the system current running services and hardware state. + +**show system-health summary** + +This command displays the current status of 'Services' and 'Hardware' under monitoring. +If any of the elements under each of these two sections is 'Not OK' a proper message will appear under the relevant section. + +- Usage: + ``` + show system-health summary + ``` + +- Example: + ``` + admin@sonic:~$ show system-health summary + System status summary + + System status LED red + Services: + Status: Not OK + Not Running: 'telemetry', 'sflowmgrd' + Hardware: + Status: OK + ``` + ``` + admin@sonic:~$ show system-health summary + System status summary + + System status LED green + Services: + Status: OK + Hardware: + Status: OK + ``` + +**show system-health monitor-list** + +This command displays a list of all current 'Services' and 'Hardware' being monitored, their status and type. + +- Usage: + ``` + show system-health monitor-list + ``` + +- Example: + ``` + admin@sonic:~$ show system-health monitor-list + System services and devices monitor list + + Name Status Type + -------------- -------- ---------- + telemetry Not OK Process + orchagent Not OK Process + neighsyncd OK Process + vrfmgrd OK Process + dialout_client OK Process + zebra OK Process + rsyslog OK Process + snmpd OK Process + redis_server OK Process + intfmgrd OK Process + vxlanmgrd OK Process + lldpd_monitor OK Process + portsyncd OK Process + var-log OK Filesystem + lldpmgrd OK Process + syncd OK Process + sonic OK System + buffermgrd OK Process + portmgrd OK Process + staticd OK Process + bgpd OK Process + lldp_syncd OK Process + bgpcfgd OK Process + snmp_subagent OK Process + root-overlay OK Filesystem + fpmsyncd OK Process + sflowmgrd OK Process + vlanmgrd OK Process + nbrmgrd OK Process + PSU 2 OK PSU + psu_1_fan_1 OK Fan + psu_2_fan_1 OK Fan + fan11 OK Fan + fan10 OK Fan + fan12 OK Fan + ASIC OK ASIC + fan1 OK Fan + PSU 1 OK PSU + fan3 OK Fan + fan2 OK Fan + fan5 OK Fan + fan4 OK Fan + fan7 OK Fan + fan6 OK Fan + fan9 OK Fan + fan8 OK Fan + ``` + +**show system-health detail** + +This command displays the current status of 'Services' and 'Hardware' under monitoring. +If any of the elements under each of these two sections is 'Not OK' a proper message will appear under the relevant section. +In addition, displays a list of all current 'Services' and 'Hardware' being monitored and a list of ignored elements. + +- Usage: + ``` + show system-health detail + ``` + +- Example: + ``` + admin@sonic:~$ show system-health detail + System status summary + + System status LED red + Services: + Status: Not OK + Not Running: 'telemetry', 'orchagent' + Hardware: + Status: OK + + System services and devices monitor list + + Name Status Type + -------------- -------- ---------- + telemetry Not OK Process + orchagent Not OK Process + neighsyncd OK Process + vrfmgrd OK Process + dialout_client OK Process + zebra OK Process + rsyslog OK Process + snmpd OK Process + redis_server OK Process + intfmgrd OK Process + vxlanmgrd OK Process + lldpd_monitor OK Process + portsyncd OK Process + var-log OK Filesystem + lldpmgrd OK Process + syncd OK Process + sonic OK System + buffermgrd OK Process + portmgrd OK Process + staticd OK Process + bgpd OK Process + lldp_syncd OK Process + bgpcfgd OK Process + snmp_subagent OK Process + root-overlay OK Filesystem + fpmsyncd OK Process + sflowmgrd OK Process + vlanmgrd OK Process + nbrmgrd OK Process + PSU 2 OK PSU + psu_1_fan_1 OK Fan + psu_2_fan_1 OK Fan + fan11 OK Fan + fan10 OK Fan + fan12 OK Fan + ASIC OK ASIC + fan1 OK Fan + PSU 1 OK PSU + fan3 OK Fan + fan2 OK Fan + fan5 OK Fan + fan4 OK Fan + fan7 OK Fan + fan6 OK Fan + fan9 OK Fan + fan8 OK Fan + + System services and devices ignore list + + Name Status Type + ----------- -------- ------ + psu.voltage Ignored Device + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#System-Health) + +## VLAN & FDB + +### VLAN + +#### VLAN show commands + +**show vlan brief** + +This command displays brief information about all the vlans configured in the device. It displays the vlan ID, IP address (if configured for the vlan), list of vlan member ports, whether the port is tagged or in untagged mode, the DHCPv4 Helper Address, and the proxy ARP status + +- Usage: + ``` + show vlan brief + ``` + +- Example: + ``` + admin@sonic:~$ show vlan brief + + +-----------+--------------+-----------+----------------+-----------------------+-------------+ + | VLAN ID | IP Address | Ports | Port Tagging | DHCP Helper Address | Proxy ARP | + +===========+==============+===========+================+=======================+=============+ + | 100 | 1.1.2.2/16 | Ethernet0 | tagged | 192.0.0.1 | disabled | + | | | Ethernet4 | tagged | 192.0.0.2 | | + | | | | | 192.0.0.3 | | + +-----------+--------------+-----------+----------------+-----------------------+-------------+ + ``` + +**show vlan config** + +This command displays all the vlan configuration. + +- Usage: + ``` + show vlan config + ``` + +- Example: + ``` + admin@sonic:~$ show vlan config + Name VID Member Mode + ------- ----- --------- ------ + Vlan100 100 Ethernet0 tagged + Vlan100 100 Ethernet4 tagged + ``` + + +#### VLAN Config commands + +This sub-section explains how to configure the vlan and its member ports. + +**config vlan add/del** + +This command is used to add or delete the vlan. + +- Usage: + ``` + config vlan (add | del) + ``` + +- Example (Create the VLAN "Vlan100" if it does not already exist): + ``` + admin@sonic:~$ sudo config vlan add 100 + ``` + +**config vlan member add/del** + +This command is to add or delete a member port into the already created vlan. + +- Usage: + ``` + config vlan member add/del [-u|--untagged] + ``` + +*NOTE: Adding the -u or --untagged flag will set the member in "untagged" mode* + + +- Example: + ``` + admin@sonic:~$ sudo config vlan member add 100 Ethernet0 + This command will add Ethernet0 as member of the vlan 100 + + admin@sonic:~$ sudo config vlan member add 100 Ethernet4 + This command will add Ethernet4 as member of the vlan 100. + ``` + +**config proxy_arp enabled/disabled** + +This command is used to enable or disable proxy ARP for a VLAN interface + +- Usage: + ``` + config vlan proxy_arp enabled/disabled + ``` + +- Example: + ``` + admin@sonic:~$ sudo config vlan proxy_arp 1000 enabled + This command will enable proxy ARP for the interface 'Vlan1000' + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#vlan--FDB) + +### FDB + +#### FDB show commands + +**show mac** + +This command displays the MAC (FDB) entries either in full or partial as given below. +1) show mac - displays the full table +2) show mac -v - displays the MACs learnt on the particular VLAN ID. +3) show mac -p - displays the MACs learnt on the particular port. +4) show mac -a - display the MACs that match a specific mac-address +5) show mac -t - display the MACs that match a specific type (static/dynamic) +6) show mac -c - display the count of MAC addresses + +To show the default MAC address aging time on the switch. + +- Usage: + ``` + show mac [-v ] [-p ] [-a ] [-t ] [-c] + ``` + +- Example: + ``` + admin@sonic:~$ show mac + No. Vlan MacAddress Port Type + ----- ------ ----------------- ----------- ------- + 1 1000 E2:8C:56:85:4A:CD Ethernet192 Dynamic + 2 1000 A0:1B:5E:47:C9:76 Ethernet192 Dynamic + 3 1000 AA:54:EF:2C:EE:30 Ethernet192 Dynamic + 4 1000 A4:3F:F2:17:A3:FC Ethernet192 Dynamic + 5 1000 0C:FC:01:72:29:91 Ethernet192 Dynamic + 6 1000 48:6D:01:7E:C9:FD Ethernet192 Dynamic + 7 1000 1C:6B:7E:34:5F:A6 Ethernet192 Dynamic + 8 1000 EE:81:D9:7B:93:A9 Ethernet192 Dynamic + 9 1000 CC:F8:8D:BB:85:E2 Ethernet192 Dynamic + 10 1000 0A:52:B3:9C:FB:6C Ethernet192 Dynamic + 11 1000 C6:E2:72:02:D1:23 Ethernet192 Dynamic + 12 1000 8A:C9:5C:25:E9:28 Ethernet192 Dynamic + 13 1000 5E:CD:34:E4:94:18 Ethernet192 Dynamic + 14 1000 7E:49:1F:B5:91:B5 Ethernet192 Dynamic + 15 1000 AE:DD:67:F3:09:5A Ethernet192 Dynamic + 16 1000 DC:2F:D1:08:4B:DE Ethernet192 Dynamic + 17 1000 50:96:23:AD:F1:65 Ethernet192 Static + 18 1000 C6:C9:5E:AE:24:42 Ethernet192 Static + Total number of entries 18 + ``` + +Optionally, you can specify a VLAN ID or interface name or type or mac-address in order to display only that particular entries + +- Examples: + ``` + admin@sonic:~$ show mac -v 1000 + No. Vlan MacAddress Port Type + ----- ------ ----------------- ----------- ------- + 1 1000 E2:8C:56:85:4A:CD Ethernet192 Dynamic + 2 1000 A0:1B:5E:47:C9:76 Ethernet192 Dynamic + 3 1000 AA:54:EF:2C:EE:30 Ethernet192 Dynamic + 4 1000 A4:3F:F2:17:A3:FC Ethernet192 Dynamic + 5 1000 0C:FC:01:72:29:91 Ethernet192 Dynamic + 6 1000 48:6D:01:7E:C9:FD Ethernet192 Dynamic + 7 1000 1C:6B:7E:34:5F:A6 Ethernet192 Dynamic + 8 1000 EE:81:D9:7B:93:A9 Ethernet192 Dynamic + 9 1000 CC:F8:8D:BB:85:E2 Ethernet192 Dynamic + 10 1000 0A:52:B3:9C:FB:6C Ethernet192 Dynamic + 11 1000 C6:E2:72:02:D1:23 Ethernet192 Dynamic + 12 1000 8A:C9:5C:25:E9:28 Ethernet192 Dynamic + 13 1000 5E:CD:34:E4:94:18 Ethernet192 Dynamic + 14 1000 7E:49:1F:B5:91:B5 Ethernet192 Dynamic + 15 1000 AE:DD:67:F3:09:5A Ethernet192 Dynamic + 16 1000 DC:2F:D1:08:4B:DE Ethernet192 Dynamic + 17 1000 50:96:23:AD:F1:65 Ethernet192 Static + 18 1000 C6:C9:5E:AE:24:42 Ethernet192 Static + Total number of entries 18 + ``` + ``` + admin@sonic:~$ show mac -p Ethernet192 + No. Vlan MacAddress Port Type + ----- ------ ----------------- ----------- ------- + 1 1000 E2:8C:56:85:4A:CD Ethernet192 Dynamic + 2 1000 A0:1B:5E:47:C9:76 Ethernet192 Dynamic + 3 1000 AA:54:EF:2C:EE:30 Ethernet192 Dynamic + 4 1000 A4:3F:F2:17:A3:FC Ethernet192 Dynamic + 5 1000 0C:FC:01:72:29:91 Ethernet192 Dynamic + 6 1000 48:6D:01:7E:C9:FD Ethernet192 Dynamic + 7 1000 1C:6B:7E:34:5F:A6 Ethernet192 Dynamic + 8 1000 EE:81:D9:7B:93:A9 Ethernet192 Dynamic + 9 1000 CC:F8:8D:BB:85:E2 Ethernet192 Dynamic + 10 1000 0A:52:B3:9C:FB:6C Ethernet192 Dynamic + 11 1000 C6:E2:72:02:D1:23 Ethernet192 Dynamic + 12 1000 8A:C9:5C:25:E9:28 Ethernet192 Dynamic + 13 1000 5E:CD:34:E4:94:18 Ethernet192 Dynamic + 14 1000 7E:49:1F:B5:91:B5 Ethernet192 Dynamic + 15 1000 AE:DD:67:F3:09:5A Ethernet192 Dynamic + 16 1000 DC:2F:D1:08:4B:DE Ethernet192 Dynamic + 17 1000 50:96:23:AD:F1:65 Ethernet192 Static + 18 1000 C6:C9:5E:AE:24:42 Ethernet192 Static + Total number of entries 18 + ``` + ``` + admin@sonic:~$ show mac -a E2:8C:56:85:4A:CD + No. Vlan MacAddress Port Type + ----- ------ ----------------- ----------- ------- + 1 1000 E2:8C:56:85:4A:CD Ethernet192 Dynamic + Total number of entries 1 + ``` + ``` + admin@sonic:~$ show mac -t Static + No. Vlan MacAddress Port Type + ----- ------ ----------------- ----------- ------- + 2 1000 50:96:23:AD:F1:65 Ethernet192 Static + 2 1000 C6:C9:5E:AE:24:42 Ethernet192 Static + Total number of entries 2 + ``` + ``` + admin@sonic:~$ show mac -c + Total number of entries 18 + ``` + +**show mac aging-time** + +This command displays the default mac aging time on the switch + + ``` + admin@sonic:~$ show mac aging-time + Aging time for switch is 600 seconds + ``` + +**sonic-clear fdb all** + +Clear the FDB table + +- Usage: + ``` + sonic-clear fdb all + ``` +- Example: + ``` + admin@sonic:~$ sonic-clear fdb all + FDB entries are cleared. + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#vlan--FDB) + +## VxLAN & Vnet + +### VxLAN + +#### VxLAN show commands + +**show vxlan tunnel** + +This command displays brief information about all the vxlans configured in the device. It displays the vxlan tunnel name, source IP address, destination IP address (if configured), tunnel map name and mapping. + +- Usage: + + ``` + show vxlan tunnel + ``` + +- Example: + + ``` + admin@sonic:~$ show vxlan tunnel + vxlan tunnel name source ip destination ip tunnel map name tunnel map mapping(vni -> vlan) + ------------------- ----------- ---------------- ----------------- --------------------------------- + tunnel1 10.10.10.10 + tunnel2 10.10.10.10 20.10.10.10 tmap1 1234 -> 100 + tunnel3 10.10.10.10 30.10.10.10 tmap2 1235 -> 200 + ``` + +**show vxlan name ** + +This command displays configuration. + +- Usage: + + ``` + show vxlan name + ``` + +- Example: + + ``` + admin@sonic:~$ show vxlan name tunnel3 + vxlan tunnel name source ip destination ip tunnel map name tunnel map mapping(vni -> vlan) + ------------------- ----------- ---------------- ----------------- --------------------------------- + tunnel3 10.10.10.10 30.10.10.10 tmap2 1235 -> 200 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#vxlan--vnet) + +### Vnet + +#### Vnet show commands + +**show vnet brief** + +This command displays brief information about all the vnets configured in the device. It displays the vnet name, vxlan tunnel name, vni and peer list (if configured). + +- Usage: + + ``` + show vnet brief + ``` + +- Example: + + ``` + admin@sonic:~$ show vnet brief + vnet name vxlan tunnel vni peer list + ----------- -------------- ----- ------------------ + Vnet_2000 tunnel1 2000 + Vnet_3000 tunnel1 3000 Vnet_2000,Vnet4000 + ``` + +**show vnet name ** + +This command displays brief information about configured in the device. + +- Usage: + + ``` + show vnet name + ``` + +- Example: + + ``` + admin@sonic:~$ show vnet name Vnet_3000 + vnet name vxlan tunnel vni peer list + ----------- -------------- ----- ------------------ + Vnet_3000 tunnel1 3000 Vnet_2000,Vnet4000 + ``` + +**show vnet interfaces** + +This command displays vnet interfaces information about all the vnets configured in the device. + +- Usage: + + ``` + show vnet interfaces + ``` + +- Example: + + ``` + admin@sonic:~$ show vnet interfaces + vnet name interfaces + ----------- ------------ + Vnet_2000 Ethernet1 + Vnet_3000 Vlan2000 + ``` + +**show vnet neighbors** + +This command displays vnet neighbor information about all the vnets configured in the device. It displays the vnet name, neighbor IP address, neighbor mac address (if configured) and interface. + +- Usage: + + ``` + show vnet neighbors + ``` + +- Example: + + ``` + admin@sonic:~$ show vnet neighbors + Vnet_2000 neighbor mac_address interfaces + ----------- ----------- ------------- ------------ + 11.11.11.11 Ethernet1 + 11.11.11.12 Ethernet1 + + Vnet_3000 neighbor mac_address interfaces + ----------- ----------- ----------------- ------------ + 20.20.20.20 aa:bb:cc:dd:ee:ff Vlan2000 + ``` + +**show vnet routes all** + +This command displays all routes information about all the vnets configured in the device. + +- Usage: + + ``` + show vnet routes all + ``` + +- Example: + + ``` + admin@sonic:~$ show vnet routes all + vnet name prefix nexthop interface + ----------- -------------- --------- ----------- + Vnet_2000 100.100.3.0/24 Ethernet52 + Vnet_3000 100.100.4.0/24 Vlan2000 + + vnet name prefix endpoint mac address vni + ----------- -------------- ---------- ----------------- ----- + Vnet_2000 100.100.1.1/32 10.10.10.1 + Vnet_3000 100.100.2.1/32 10.10.10.2 00:00:00:00:03:04 + ``` + +**show vnet routes tunnel** + +This command displays tunnel routes information about all the vnets configured in the device. + +- Usage: + + ``` + show vnet routes tunnel + ``` + +- Example: + + ``` + admin@sonic:~$ show vnet routes tunnel + vnet name prefix endpoint mac address vni + ----------- -------------- ---------- ----------------- ----- + Vnet_2000 100.100.1.1/32 10.10.10.1 + Vnet_3000 100.100.2.1/32 10.10.10.2 00:00:00:00:03:04 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#vxlan--vnet) + +## Warm Reboot + +warm-reboot command initiates a warm reboot of the device. + +warm-reboot command doesn't require setting warm restart configuration. The +command will setup everything needed to perform warm reboot. + +This command requires root privilege. + +- Usage: + ``` + warm-reboot [-h|-?|-v|-f|-r|-k|-x|-c |-s|-D] + ``` + +- Parameters: + ``` + -h,-? : get this help + -v : turn on verbose mode + -f : force execution + -r : reboot with /sbin/reboot + -k : reboot with /sbin/kexec -e [default] + -x : execute script with -x flag + -c : specify control plane assistant IP list + -s : strict mode: do not proceed without: + - control plane assistant IP list. + -D : detached mode - closing terminal will not cause stopping reboot + ``` + +- Example: + ``` + admin@sonic:~$ sudo warm-reboot -v + Tue Oct 22 23:20:53 UTC 2019 Pausing orchagent ... + Tue Oct 22 23:20:53 UTC 2019 Stopping radv ... + Tue Oct 22 23:20:54 UTC 2019 Stopping bgp ... + Tue Oct 22 23:20:54 UTC 2019 Stopped bgp ... + Tue Oct 22 23:20:57 UTC 2019 Initialize pre-shutdown ... + Tue Oct 22 23:20:58 UTC 2019 Requesting pre-shutdown ... + Tue Oct 22 23:20:58 UTC 2019 Waiting for pre-shutdown ... + Tue Oct 22 23:20:59 UTC 2019 Pre-shutdown succeeded ... + Tue Oct 22 23:20:59 UTC 2019 Backing up database ... + Tue Oct 22 23:21:00 UTC 2019 Stopping teamd ... + Tue Oct 22 23:21:00 UTC 2019 Stopped teamd ... + Tue Oct 22 23:21:00 UTC 2019 Stopping syncd ... + Tue Oct 22 23:21:11 UTC 2019 Stopped syncd ... + Tue Oct 22 23:21:11 UTC 2019 Stopping all remaining containers ... + Tue Oct 22 23:21:13 UTC 2019 Stopped all remaining containers ... + Tue Oct 22 23:21:15 UTC 2019 Rebooting with /sbin/kexec -e to SONiC-OS-20191021.01 ... + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#Warm-Reboot) + +## Warm Restart + +Besides device level warm reboot, SONiC also provides docker based warm restart. This feature is currently supported by following dockers: BGP, teamD, and SWSS. A user can manage to restart a particular docker, with no interruption on packet forwarding and no effect on other services. This helps to reduce operational costs as well as development efforts. For example, to fix a bug in BGP routing stack, only the BGP docker image needs to be built, tested and upgraded. + +To achieve uninterrupted packet forwarding during the restarting stage and database reconciliation at the post restarting stage, warm restart enabled dockers with adjacency state machine facilitate standardized protocols. For example, a BGP restarting switch must have BGP "Graceful Restart" enabled, and its BGP neighbors must be "Graceful Restart Helper Capable", as specified in [IETF RFC4724](https://tools.ietf.org/html/rfc4724). + +Before warm restart BGP docker, the following BGP commands should be enabled: + ``` + bgp graceful-restart + bgp graceful-restart preserve-fw-state + ``` +In current SONiC release, the above two commands are enabled by default. + +It should be aware that during a warm restart, certain BGP fast convergence feature and black hole avoidance feature should either be disabled or be set to a lower preference to avoid conflicts with BGP graceful restart. + +For example, BGP BFD could be disabled via: + + ``` + no neighbor bfd + ``` + +otherwise, the fast failure detection would cause packet drop during warm reboot. + +Another commonly deployed blackhole avoidance feature: dynamic route priority adjustment, could be disabled via: + + ``` + no bgp max-med on-peerup + ``` + +to avoid large routes churn during BGP restart. + + +### Warm Restart show commands + +**show warm_restart config** + +This command displays all the configuration related to warm_restart. + +- Usage: + ``` + show warm_restart config + ``` + +- Example: + ``` + admin@sonic:~$ show warm_restart config + name enable timer_name timer_duration + ------ -------- ---------------- ---------------- + bgp true bgp_timer 100 + teamd false teamsyncd_timer 300 + swss false neighsyncd_timer 200 + system true NULL NULL + ``` + +**show warm_restart state** + +This command displays the warm_restart state. + +- Usage: + ``` + show warm_restart state + ``` + +- Example: + ``` + admin@sonic:~$ show warm_restart state + name restore_count state + ---------- --------------- ---------- + orchagent 0 + vlanmgrd 0 + bgp 1 reconciled + portsyncd 0 + teammgrd 1 + neighsyncd 0 + teamsyncd 1 + syncd 0 + natsyncd 0 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#warm-restart) + +### Warm Restart Config commands + +This sub-section explains the various configuration related to warm restart feature. Following parameters can be configured using this command. +1) bgp_timer +2) disable +3) enable +4) neighsyncd_timer +5) teamsyncd_timer +Each of these sub-commands are explained in the following section. + +Users can use an optional parameter "-s" to use the unix domain socket for communicating with the RedisDB which will be faster when compared to using the default network sockets. +All these commands have the following option. + +Options: + -s, --redis-unix-socket-path TEXT + unix socket path for redis connection + + +**config warm_restart bgp_timer** + +This command is used to set the bgp_timer value for warm_restart of BGP service. +bgp_timer holds the time interval utilized by fpmsyncd during warm-restart episodes. +During this interval fpmsyncd will recover all the routing state previously pushed to AppDB, as well as all the new state coming from zebra/bgpd. +Upon expiration of this timer, fpmsyncd will execute the reconciliation logic to eliminate all the stale entries from AppDB. +This timer should match the BGP-GR restart-timer configured within the elected routing-stack. +Supported range: 1-3600. + +- Usage: + ``` + config warm_restart [-s|--redis-unix-socket-path ] bgp_timer + ``` + + - Parameters: + - seconds: Range from 1 to 3600 + +- Example: + ``` + admin@sonic:~$ sudo config warm_restart bgp_timer 1000 + ``` + +**config warm_restart enable/disable** + +This command is used to enable or disable the warm_restart for a particular service that supports warm reboot. +Following four services support warm reboot. When user restarts the particular service using "systemctl restart ", this configured value will be checked for whether it is enabled or disabled. +If this configuration is enabled for that service, it will perform warm reboot for that service. Otherwise, it will do cold restart of the service. + +- Usage: + ``` + config warm_restart [-s|--redis-unix-socket-path ] enable [] + ``` + + - Parameters: + - module_name: Can be either system or swss or bgp or teamd. If "module_name" argument is not specified, it will enable "system" module. + +- Example (Set warm_restart as "enable" for the "system" service): + ``` + admin@sonic:~$ sudo config warm_restart enable + ``` + +- Example (Set warm_restart as "enable" for the "swss" service. When user does "systemctl restart swss", it will perform warm reboot instead of cold reboot) + ``` + admin@sonic:~$ sudo config warm_restart enable swss + ``` + +- Example (Set warm_restart as "enable" for the "teamd" service. When user does "systemctl restart teamd", it will perform warm reboot instead of cold reboot) + ``` + admin@sonic:~$ sudo config warm_restart enable teamd + ``` + + +**config warm_restart neighsyncd_timer** + +This command is used to set the neighsyncd_timer value for warm_restart of "swss" service. +neighsyncd_timer is the timer used for "swss" (neighsyncd) service during the warm restart. +Timer is started after the neighborTable is restored to internal data structures. +neighborsyncd then starts to read all Linux kernel entries and mark the entries in the data structures accordingly. +Once the timer is expired, reconciliation is done and the delta is pushed to appDB +Valid value is 1-9999. 0 is invalid. + +- Usage: + ``` + config warm_restart [-s|--redis-unix-socket-path ] neighsyncd_timer + ``` + + - Parameters: + - seconds: Range from 1 to 9999 + +- Example: + ``` + admin@sonic:~$ sudo config warm_restart neighsyncd_timer 2000 + ``` + + +**config warm_restart bgp_timer** + +This command is used to set the bgp_timer value for warm_restart of "bgp" service. +bgp_timer is the timer used for "bgp" service during the warm restart. +Timer is started after the BGP table is restored to internal data structures. +BGP services then start to read all Linux kernel entries and mark the entries in the data structures accordingly. +Once the timer is expired, reconciliation is done and the delta is pushed to appDB +Valid value is 1-9999. 0 is invalid. + +- Usage: + ``` + config warm_restart [-s|--redis-unix-socket-path ] bgp_timer + ``` + + - Parameters: + - seconds: Range from 1 to 9999 + +- Example: + ``` + admin@sonic:~$ sudo config warm_restart bgp_timer 2000 + ``` + +**config warm_restart teamsyncd_timer** + +This command is used to set the teamsyncd_timer value for warm_restart of teamd service. +teamsyncd_timer holds the time interval utilized by teamsyncd during warm-restart episodes. +The timer is started when teamsyncd starts. During the timer interval, teamsyncd will preserve all LAG interface changes, but it will not apply them. +The changes will only be applied when the timer expires. +When the changes are applied, the stale LAG entries will be removed, the new LAG entries will be created. +Supported range: 1-9999. 0 is invalid + +- Usage: + ``` + config warm_restart teamsyncd_timer + ``` + + - Parameters: + - seconds: Range from 1 to 9999 + +- Example: + ``` + admin@sonic:~$ sudo config warm_restart teamsyncd_timer 3000 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#warm-restart) + + +## Watermark + +### Watermark Show commands + +**show watermark telemetry interval** + +This command displays the configured interval for the telemetry. + +- Usage: + ``` + show watermark telemetry interval + ``` + +- Example: + ``` + admin@sonic:~$ show watermark telemetry interval + + Telemetry interval 120 second(s) + ``` + +### Watermark Config commands + +**config watermark telemetry interval** + +This command is used to configure the interval for telemetry. +The default interval is 120 seconds. +There is no regulation on the valid range of values; it leverages linux timer. + +- Usage: + ``` + config watermark telemetry interval + ``` + +- Example: + ``` + admin@sonic:~$ sudo config watermark telemetry interval 999 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#watermark) + + + +## Software Installation and Management + +SONiC images can be installed in one of two methods: +1. From within a running SONiC image using the `sonic-installer` utility +2. From the vendor's bootloader (E.g., ONIE, Aboot, etc.) + +SONiC packages are available as prebuilt Docker images and meant to be installed with the *sonic-package-manager* utility. + +### SONiC Package Manager + +The *sonic-package-manager* is a command line tool to manage (e.g. install, upgrade or uninstall) SONiC Packages. + +**sonic-package-manager list** + +This command lists all available SONiC packages, their desription, installed version and installation status. +SONiC package status can be *Installed*, *Not installed* or *Built-In*. "Built-In" status means that a feature is built-in to SONiC image and can't be upgraded or uninstalled. + +- Usage: + ``` + sonic-package-manager list + ``` + +- Example: + ``` + admin@sonic:~$ sonic-package-manager list + Name Repository Description Version Status + -------------- --------------------------- ---------------------------- --------- -------------- + cpu-report azure/cpu-report CPU report package N/A Not Installed + database docker-database SONiC database package 1.0.0 Built-In + dhcp-relay azure/docker-dhcp-relay SONiC dhcp-relay package 1.0.0 Installed + fpm-frr docker-fpm-frr SONiC fpm-frr package 1.0.0 Built-In + lldp docker-lldp SONiC lldp package 1.0.0 Built-In + macsec docker-macsec SONiC macsec package 1.0.0 Built-In + mgmt-framework docker-sonic-mgmt-framework SONiC mgmt-framework package 1.0.0 Built-In + nat docker-nat SONiC nat package 1.0.0 Built-In + pmon docker-platform-monitor SONiC pmon package 1.0.0 Built-In + radv docker-router-advertiser SONiC radv package 1.0.0 Built-In + sflow docker-sflow SONiC sflow package 1.0.0 Built-In + snmp docker-snmp SONiC snmp package 1.0.0 Built-In + swss docker-orchagent SONiC swss package 1.0.0 Built-In + syncd docker-syncd-mlnx SONiC syncd package 1.0.0 Built-In + teamd docker-teamd SONiC teamd package 1.0.0 Built-In + telemetry docker-sonic-telemetry SONiC telemetry package 1.0.0 Built-In + ``` + +**sonic-package-manager repository add** + +This command will add a new repository as source for SONiC packages to the database. *NOTE*: requires elevated (root) privileges to run + +- Usage: + ``` + Usage: sonic-package-manager repository add [OPTIONS] NAME REPOSITORY + + Add a new repository to database. + + NOTE: This command requires elevated (root) privileges to run. + + Options: + --default-reference TEXT Default installation reference. Can be a tag or + sha256 digest in repository. + --description TEXT Optional package entry description. + --help Show this message and exit. + ``` +- Example: + ``` + admin@sonic:~$ sudo sonic-package-manager repository add \ + cpu-report azure/sonic-cpu-report --default-reference 1.0.0 + ``` + +**sonic-package-manager repository remove** + +This command will remove a repository as source for SONiC packages from the database . The package has to be *Not Installed* in order to be removed from package database. *NOTE*: requires elevated (root) privileges to run + +- Usage: + ``` + Usage: sonic-package-manager repository remove [OPTIONS] NAME + + Remove repository from database. + + NOTE: This command requires elevated (root) privileges to run. + + Options: + --help Show this message and exit. + ``` +- Example: + ``` + admin@sonic:~$ sudo sonic-package-manager repository remove cpu-report + ``` + +**sonic-package-manager install** + +This command pulls and installs a package on SONiC host. *NOTE*: this command requires elevated (root) privileges to run + +- Usage: + ``` + Usage: sonic-package-manager install [OPTIONS] [PACKAGE_EXPR] + + Install/Upgrade package using [PACKAGE_EXPR] in format + "[=|@]". + + The repository to pull the package from is resolved by lookup in + package database, thus the package has to be added via "sonic- + package-manager repository add" command. + + In case when [PACKAGE_EXPR] is a package name "" this command + will install or upgrade to a version referenced by "default- + reference" in package database. + + NOTE: This command requires elevated (root) privileges to run. + + Options: + --enable Set the default state of the feature to enabled + and enable feature right after installation. NOTE: + user needs to execute "config save -y" to make + this setting persistent. + --set-owner [local|kube] Default owner configuration setting for a feature. + --from-repository TEXT Fetch package directly from image registry + repository. NOTE: This argument is mutually + exclusive with arguments: [package_expr, + from_tarball]. + --from-tarball FILE Fetch package from saved image tarball. NOTE: This + argument is mutually exclusive with arguments: + [package_expr, from_repository]. + -f, --force Force operation by ignoring package dependency + tree and package manifest validation failures. + -y, --yes Automatically answer yes on prompts. + -v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or DEBUG. + Default is INFO. + --skip-host-plugins Do not install host OS plugins provided by the + package (CLI, etc). NOTE: In case when package + host OS plugins are set as mandatory in package + manifest this option will fail the installation. + --allow-downgrade Allow package downgrade. By default an attempt to + downgrade the package will result in a failure + since downgrade might not be supported by the + package, thus requires explicit request from the + user. + --help Show this message and exit.. + ``` +- Example: + ``` + admin@sonic:~$ sudo sonic-package-manager install dhcp-relay=1.0.2 + ``` + ``` + admin@sonic:~$ sudo sonic-package-manager install dhcp-relay@latest + ``` + ``` + admin@sonic:~$ sudo sonic-package-manager install dhcp-relay@sha256:9780f6d83e45878749497a6297ed9906c19ee0cc48cc88dc63827564bb8768fd + ``` + ``` + admin@sonic:~$ sudo sonic-package-manager install --from-repository azure/sonic-cpu-report:latest + ``` + ``` + admin@sonic:~$ sudo sonic-package-manager install --from-tarball sonic-docker-image.gz + ``` + +**sonic-package-manager uninstall** + +This command uninstalls package from SONiC host. User needs to stop the feature prior to uninstalling it. +*NOTE*: this command requires elevated (root) privileges to run. + +- Usage: + ``` + Usage: sonic-package-manager uninstall [OPTIONS] NAME + + Uninstall package. + + NOTE: This command requires elevated (root) privileges to run. + + Options: + -f, --force Force operation by ignoring package dependency tree and + package manifest validation failures. + -y, --yes Automatically answer yes on prompts. + -v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or DEBUG. Default + is INFO. + --help Show this message and exit. + ``` +- Example: + ``` + admin@sonic:~$ sudo sonic-package-manager uninstall dhcp-relay + ``` + +**sonic-package-manager reset** + +This comamnd resets the package by reinstalling it to its default version. *NOTE*: this command requires elevated (root) privileges to run. + +- Usage: + ``` + Usage: sonic-package-manager reset [OPTIONS] NAME + + Reset package to the default version. + + NOTE: This command requires elevated (root) privileges to run. + + Options: + -f, --force Force operation by ignoring package dependency tree and + package manifest validation failures. + -y, --yes Automatically answer yes on prompts. + -v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or DEBUG. Default + is INFO. + --skip-host-plugins Do not install host OS plugins provided by the package + (CLI, etc). NOTE: In case when package host OS plugins + are set as mandatory in package manifest this option + will fail the installation. + --help Show this message and exit. + ``` +- Example: + ``` + admin@sonic:~$ sudo sonic-package-manager reset dhcp-relay + ``` + +**sonic-package-manager show package versions** + +This command will retrieve a list of all available versions for the given package from the configured upstream repository + +- Usage: + ``` + Usage: sonic-package-manager show package versions [OPTIONS] NAME + + Show available versions. + + Options: + --all Show all available tags in repository. + --plain Plain output. + --help Show this message and exit. + ``` +- Example: + ``` + admin@sonic:~$ sonic-package-manager show package versions dhcp-relay + • 1.0.0 + • 1.0.2 + • 2.0.0 + ``` + ``` + admin@sonic:~$ sonic-package-manager show package versions dhcp-relay --plain + 1.0.0 + 1.0.2 + 2.0.0 + ``` + ``` + admin@sonic:~$ sonic-package-manager show package versions dhcp-relay --all + • 1.0.0 + • 1.0.2 + • 2.0.0 + • latest + ``` + +**sonic-package-manager show package changelog** + +This command fetches the changelog from the package manifest and displays it. *NOTE*: package changelog can be retrieved from registry or read from image tarball without installing it. + +- Usage: + ``` + Usage: sonic-package-manager show package changelog [OPTIONS] [PACKAGE_EXPR] + + Show package changelog. + + Options: + --from-repository TEXT Fetch package directly from image registry + repository NOTE: This argument is mutually exclusive + with arguments: [from_tarball, package_expr]. + --from-tarball FILE Fetch package from saved image tarball NOTE: This + argument is mutually exclusive with arguments: + [package_expr, from_repository]. + --help Show this message and exit. + ``` +- Example: + ``` + admin@sonic:~$ sonic-package-manager show package changelog dhcp-relay + 1.0.0: + + • Initial release + + Author (author@email.com) Mon, 25 May 2020 12:25:00 +0300 + ``` + +**sonic-package-manager show package manifest** + +This command fetches the package manifest and displays it. *NOTE*: package manifest can be retrieved from registry or read from image tarball without installing it. + +- Usage: + ``` + Usage: sonic-package-manager show package manifest [OPTIONS] [PACKAGE_EXPR] + + Show package manifest. + + Options: + --from-repository TEXT Fetch package directly from image registry + repository NOTE: This argument is mutually exclusive + with arguments: [package_expr, from_tarball]. + --from-tarball FILE Fetch package from saved image tarball NOTE: This + argument is mutually exclusive with arguments: + [from_repository, package_expr]. + -v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or DEBUG + --help Show this message and exit. + ``` +- Example: + ``` + admin@sonic:~$ sonic-package-manager show package manifest dhcp-relay=2.0.0 + { + "version": "1.0.0", + "package": { + "version": "2.0.0", + "depends": [ + "database>=1.0.0,<2.0.0" + ] + }, + "service": { + "name": "dhcp_relay" + } + } + ``` + +### SONiC Installer +This is a command line tool available as part of the SONiC software; If the device is already running the SONiC software, this tool can be used to install an alternate image in the partition. +This tool has facility to install an alternate image, list the available images and to set the next reboot image. +This command requires elevated (root) privileges to run. + +**sonic-installer list** + +This command displays information about currently installed images. It displays a list of installed images, currently running image and image set to be loaded in next reboot. + +- Usage: + ``` + sonic-installer list + ``` + +- Example: + ``` + admin@sonic:~$ sudo sonic-installer list + Current: SONiC-OS-HEAD.XXXX + Next: SONiC-OS-HEAD.XXXX + Available: + SONiC-OS-HEAD.XXXX + SONiC-OS-HEAD.YYYY + ``` + +TIP: This output can be obtained without evelated privileges by running the `show boot` command. See [here](#show-system-status) for details. + +**sonic-installer install** + +This command is used to install a new image on the alternate image partition. This command takes a path to an installable SONiC image or URL and installs the image. + +- Usage: + ``` + sonic-installer install + ``` + +- Example: + ``` + admin@sonic:~$ sudo sonic-installer install https://sonic-jenkins.westus.cloudapp.azure.com/job/xxxx/job/buildimage-xxxx-all/xxx/artifact/target/sonic-xxxx.bin + New image will be installed, continue? [y/N]: y + Downloading image... + ...100%, 480 MB, 3357 KB/s, 146 seconds passed + Command: /tmp/sonic_image + Verifying image checksum ... OK. + Preparing image archive ... OK. + ONIE Installer: platform: XXXX + onie_platform: + Installing SONiC in SONiC + Installing SONiC to /host/image-xxxx + Directory /host/image-xxxx/ already exists. Cleaning up... + Archive: fs.zip + creating: /host/image-xxxx/boot/ + inflating: /host/image-xxxx/boot/vmlinuz-3.16.0-4-amd64 + inflating: /host/image-xxxx/boot/config-3.16.0-4-amd64 + inflating: /host/image-xxxx/boot/System.map-3.16.0-4-amd64 + inflating: /host/image-xxxx/boot/initrd.img-3.16.0-4-amd64 + creating: /host/image-xxxx/platform/ + extracting: /host/image-xxxx/platform/firsttime + inflating: /host/image-xxxx/fs.squashfs + inflating: /host/image-xxxx/dockerfs.tar.gz + Log file system already exists. Size: 4096MB + Installed SONiC base image SONiC-OS successfully + + Command: cp /etc/sonic/minigraph.xml /host/ + + Command: grub-set-default --boot-directory=/host 0 + + Done + ``` + +Installing a new image using the sonic-installer will keep using the packages installed on the currently running SONiC image and automatically migrate those. In order to perform clean SONiC installation use the *--skip-package-migration* option: + +- Example: + ``` + admin@sonic:~$ sudo sonic-installer install https://sonic-jenkins.westus.cloudapp.azure.com/job/xxxx/job/buildimage-xxxx-all/xxx/artifact/target/sonic-xxxx.bin --skip-package-migration + ``` + +**sonic-installer set_default** + +This command is be used to change the image which can be loaded by default in all the subsequent reboots. + +- Usage: + ``` + sonic-installer set_default + ``` + +- Example: + ``` + admin@sonic:~$ sudo sonic-installer set_default SONiC-OS-HEAD.XXXX + ``` + +**sonic-installer set_next_boot** + +This command is used to change the image that can be loaded in the *next* reboot only. Note that it will fallback to current image in all other subsequent reboots after the next reboot. + +- Usage: + ``` + sonic-installer set_next_boot + ``` + +- Example: + ``` + admin@sonic:~$ sudo sonic-installer set_next_boot SONiC-OS-HEAD.XXXX + ``` + +**sonic-installer remove** + +This command is used to remove the unused SONiC image from the disk. Note that it's *not* allowed to remove currently running image. + +- Usage: + ``` + sonic-installer remove [-y|--yes] + ``` + +- Example: + ``` + admin@sonic:~$ sudo sonic-installer remove SONiC-OS-HEAD.YYYY + Image will be removed, continue? [y/N]: y + Updating GRUB... + Done + Removing image root filesystem... + Done + Command: grub-set-default --boot-directory=/host 0 + + Image removed + ``` + +**sonic-installer cleanup** + +This command removes all unused images from the device, leaving only the currently active image and the image which will be booted into next (if different) installed. If there are no images which can be removed, the command will output `No image(s) to remove` + +- Usage: + ``` + sonic-installer cleanup [-y|--yes] + ``` + +- Example: + ``` + admin@sonic:~$ sudo sonic-installer cleanup + Remove images which are not current and next, continue? [y/N]: y + No image(s) to remove + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#software-installation-and-management) + + + +## Troubleshooting Commands + +For troubleshooting and debugging purposes, this command gathers pertinent information about the state of the device; information is as diverse as syslog entries, database state, routing-stack state, etc., It then compresses it into an archive file. This archive file can be sent to the SONiC development team for examination. +Resulting archive file is saved as `/var/dump/_YYYYMMDD_HHMMSS.tar.gz` + +- Usage: + ``` + show techsupport + ``` + +- Example: + ``` + admin@sonic:~$ show techsupport [--since=] + ``` + +If the SONiC system was running for quite some time `show techsupport` will produce a large dump file. To reduce the amount of syslog and core files gathered during system dump use `--since` option: + +- Examples: + ``` + admin@sonic:~$ show techsupport --since=yesterday # Will collect syslog and core files for the last 24 hours + ``` + ``` + admin@sonic:~$ show techsupport --since='hour ago' # Will collect syslog and core files for the last one hour + ``` + +### Debug Dumps + +In SONiC, there usually exists a set of tables related/relevant to a particular module. All of these might have to be looked at to confirm whether any configuration update is properly applied and propagated. This utility comes in handy because it prints a unified view of the redis-state for a given module + +- Usage: + ``` + Usage: dump state [OPTIONS] MODULE IDENTIFIER + Dump the redis-state of the identifier for the module specified + + Options: + -s, --show Display Modules Available + -d, --db TEXT Only dump from these Databases + -t, --table Print in tabular format [default: False] + -k, --key-map Only fetch the keys matched, don't extract field-value dumps [default: False] + -v, --verbose Prints any intermediate output to stdout useful for dev & troubleshooting [default: False] + -n, --namespace TEXT Dump the redis-state for this namespace. [default: DEFAULT_NAMESPACE] + --help Show this message and exit. + ``` + + +- Examples: + ``` + root@sonic# dump state --show + Module Identifier + -------- ------------ + port port_name + copp trap_id + ``` + + ``` + admin@sonic:~$ dump state copp arp_req --key-map --db ASIC_DB + { + "arp_req": { + "ASIC_DB": { + "keys": [ + "ASIC_STATE:SAI_OBJECT_TYPE_HOSTIF_TRAP:oid:0x22000000000c5b", + "ASIC_STATE:SAI_OBJECT_TYPE_HOSTIF_TRAP_GROUP:oid:0x11000000000c59", + "ASIC_STATE:SAI_OBJECT_TYPE_POLICER:oid:0x12000000000c5a", + "ASIC_STATE:SAI_OBJECT_TYPE_QUEUE:oid:0x15000000000626" + ], + "tables_not_found": [], + "vidtorid": { + "oid:0x22000000000c5b": "oid:0x200000000022", + "oid:0x11000000000c59": "oid:0x300000011", + "oid:0x12000000000c5a": "oid:0x200000012", + "oid:0x15000000000626": "oid:0x12e0000040015" + } + } + } + } + ``` + +### Event Driven Techsupport Invocation + +This feature/capability makes the techsupport invocation event-driven based on core dump generation. This feature is only applicable for the processes running in the containers. More detailed explanation can be found in the HLD https://github.com/Azure/SONiC/blob/master/doc/auto_techsupport_and_coredump_mgmt.md + +#### config auto-techsupport global commands + +**config auto-techsupport global state** + +- Usage: + ``` + config auto-techsupport global state + ``` + +- Example: + ``` + config auto-techsupport global state enabled + ``` + +**config auto-techsupport global rate-limit-interval ** + +- Usage: + ``` + config auto-techsupport global rate-limit-interval + ``` + - Parameters: + - rate-limit-interval: Minimum time in seconds to wait after the last techsupport creation time before invoking a new one. + +- Example: + ``` + config auto-techsupport global rate-limit-interval 200 + ``` + +**config auto-techsupport global max-techsupport-limit ** + +- Usage: + ``` + config auto-techsupport global max-techsupport-limit + ``` + - Parameters: + - max-techsupport-limit: A percentage value should be specified. This signifies maximum size to which /var/dump/ directory can be grown until. + +- Example: + ``` + config auto-techsupport global max-techsupport-limit 10.15 + ``` + +**config auto-techsupport global max-core-limit ** + +- Usage: + ``` + config auto-techsupport global max-core-limit + ``` + - Parameters: + - max-core-limit: A percentage value should be specified. This signifies maximum size to which /var/core/ directory can be grown until. + +- Example: + ``` + config auto-techsupport global max-core-limit 10.15 + ``` + +**config auto-techsupport global since** + +- Usage: + ``` + config auto-techsupport global since + ``` + - Parameters: + - since: This limits the auto-invoked techsupport to only collect the logs & core-dumps generated since the time provided. Any valid date string of the formats specified here can be used. (https://www.gnu.org/software/coreutils/manual/html_node/Date-input-formats.html). If this value is not explicitly configured or a non-valid string is provided, a default value of "2 days ago" is used. + +- Example: + ``` + config auto-techsupport global since + ``` + + +#### config auto-techsupport-feature commands + +**config auto-techsupport-feature add** + +- Usage: + ``` + config auto-techsupport-feature add --state --rate-limit-interval + ``` + - Parameters: + - state: enable/disable the capability for the specific feature/container. + - rate-limit-interval: Rate limit interval for the corresponding feature. Configure 0 to explicitly disable. For the techsupport to be generated by auto-techsupport, both the global and feature specific rate-limit-interval has to be passed + +- Example: + ``` + config auto-techsupport-feature add bgp --state enabled --rate-limit-interval 200 + ``` + + +**config auto-techsupport-feature delete** + +- Usage: + ``` + config auto-techsupport-feature delete + ``` + +- Example: + ``` + config auto-techsupport-feature delete swss + ``` + +**config auto-techsupport-feature update** + +- Usage: + ``` + config auto-techsupport-feature update --state + config auto-techsupport-feature update --rate-limit-interval + ``` + +- Example: + ``` + config auto-techsupport-feature update snmp --state enabled + config auto-techsupport-feature update swss --rate-limit-interval 200 + ``` + +#### Show CLI: + +**show auto-techsupport global** + +- Usage: + ``` + show auto-techsupport global + ``` + +- Example: + ``` + admin@sonic:~$ show auto-techsupport global + STATE RATE LIMIT INTERVAL (sec) MAX TECHSUPPORT LIMIT (%) MAX CORE LIMIT (%) SINCE + ------- --------------------------- -------------------------- ------------------ ---------- + enabled 180 10.0 5.0 2 days ago + ``` + +**show auto-techsupport-feature** + +- Usage: + ``` + show auto-techsupport-feature + ``` + +- Example: + ``` + admin@sonic:~$ show auto-techsupport-feature + FEATURE NAME STATE RATE LIMIT INTERVAL (sec) + -------------- -------- -------------------------- + bgp enabled 600 + database enabled 600 + dhcp_relay enabled 600 + lldp enabled 600 + swss disabled 800 + ``` + +**show auto-techsupport history** + +- Usage: + ``` + show auto-techsupport history + ``` + +- Example: + ``` + admin@sonic:~$ show auto-techsupport history + TECHSUPPORT DUMP TRIGGERED BY CORE DUMP + ---------------------------------------- -------------- ----------------------------- + sonic_dump_r-lionfish-16_20210901_221402 bgp bgpcfgd.1630534439.55.core.gz + sonic_dump_r-lionfish-16_20210901_203725 snmp python3.1630528642.23.core.gz + sonic_dump_r-lionfish-16_20210901_222408 teamd python3.1630535045.34.core.gz + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#troubleshooting-commands) + +## Routing Stack + +SONiC software is agnostic of the routing software that is being used in the device. For example, users can use either Quagga or FRR routing stack as per their requirement. +A separate shell (vtysh) is provided to configure such routing stacks. +Once if users go to "vtysh", they can use the routing stack specific commands as given in the following example. + +- Example (Quagga Routing Stack): + ``` + admin@sonic:~$ vtysh + + Hello, this is Quagga (version 0.99.24.1). + Copyright 1996-2005 Kunihiro Ishiguro, et al. + + sonic# show route-map (This command displays the route-map that is configured for the routing protocol.) + ZEBRA: + route-map RM_SET_SRC, permit, sequence 10 + Match clauses: + Set clauses: + src 10.12.0.102 + Call clause: + Action: + Exit routemap + ``` + +Refer the routing stack [Quagga Command Reference](https://www.quagga.net/docs/quagga.pdf) or [FRR Command Reference](https://buildmedia.readthedocs.org/media/pdf/frrouting/latest/frrouting.pdf) to know more about about the routing stack configuration. + + +Go Back To [Beginning of the document](#) or [Beginning of this section](#routing-stack) + + +## Quagga BGP Show Commands + +**show ip bgp summary** + +This command displays the summary of all IPv4 bgp neighbors that are configured and the corresponding states. + +- Usage: + ``` + show ip bgp summary + ``` + +- Example: + ``` + admin@sonic:~$ show ip bgp summary + BGP router identifier 1.2.3.4, local AS number 65061 + RIB entries 6124, using 670 KiB of memory + Peers 2, using 143 KiB of memory + + Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd + 192.168.1.161 4 65501 88698 102781 0 0 0 08w5d14h 2 + 192.168.1.163 4 65502 88698 102780 0 0 0 08w5d14h 2 + + Total number of neighbors 2 + ``` + +**show ip bgp neighbors** + +This command displays all the details of IPv4 & IPv6 BGP neighbors when no optional argument is specified. + +When the optional argument IPv4_address is specified, it displays the detailed neighbor information about that specific IPv4 neighbor. + +Command has got additional optional arguments to display only the advertised routes, or the received routes, or all routes. + +In order to get details for an IPv6 neigbor, use "show ipv6 bgp neighbor " command. + +- Usage: + ``` + show ip bgp neighbors [ [advertised-routes | received-routes | routes]] + ``` + +- Example: + ``` + admin@sonic:~$ show ip bgp neighbors + BGP neighbor is 192.168.1.161, remote AS 65501, local AS 65061, external link + Description: ARISTA01T0 + BGP version 4, remote router ID 1.2.3.4 + BGP state = Established, up for 08w5d14h + Last read 00:00:46, hold time is 180, keepalive interval is 60 seconds + Neighbor capabilities: + 4 Byte AS: advertised and received + Dynamic: received + Route refresh: advertised and received(old & new) + Address family IPv4 Unicast: advertised and received + Graceful Restart Capabilty: advertised and received + Remote Restart timer is 120 seconds + Address families by peer: + IPv4 Unicast(not preserved) + Graceful restart informations: + End-of-RIB send: IPv4 Unicast + End-of-RIB received: IPv4 Unicast + Message statistics: + Inq depth is 0 + Outq depth is 0 + Sent Rcvd + Opens: 1 1 + Notifications: 0 0 + Updates: 14066 3 + Keepalives: 88718 88698 + Route Refresh: 0 0 + Capability: 0 0 + Total: 102785 88702 + Minimum time between advertisement runs is 30 seconds + + For address family: IPv4 Unicast + Community attribute sent to this neighbor(both) + 2 accepted prefixes + + Connections established 1; dropped 0 + Last reset never + Local host: 192.168.1.160, Local port: 32961 + Foreign host: 192.168.1.161, Foreign port: 179 + Nexthop: 192.168.1.160 + Nexthop global: fe80::f60f:1bff:fe89:bc00 + Nexthop local: :: + BGP connection: non shared network + Read thread: on Write thread: off + ``` + +Optionally, you can specify an IP address in order to display only that particular neighbor. In this mode, you can optionally specify whether you want to display all routes advertised to the specified neighbor, all routes received from the specified neighbor or all routes (received and accepted) from the specified neighbor. + + +- Examples: + ``` + admin@sonic:~$ show ip bgp neighbors 192.168.1.161 + + admin@sonic:~$ show ip bgp neighbors 192.168.1.161 advertised-routes + + admin@sonic:~$ show ip bgp neighbors 192.168.1.161 received-routes + + admin@sonic:~$ show ip bgp neighbors 192.168.1.161 routes + ``` + +**show ipv6 bgp summary** + +This command displays the summary of all IPv4 bgp neighbors that are configured and the corresponding states. + +- Usage: + ``` + show ipv6 bgp summary + ``` + +- Example: + ``` + admin@sonic:~$ show ipv6 bgp summary + BGP router identifier 10.1.0.32, local AS number 65100 + RIB entries 12809, using 1401 KiB of memory + Peers 8, using 36 KiB of memory + + Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd + fc00::72 4 64600 12588 12591 0 0 0 06:51:17 6402 + fc00::76 4 64600 12587 6190 0 0 0 06:51:28 6402 + fc00::7a 4 64600 12587 9391 0 0 0 06:51:23 6402 + fc00::7e 4 64600 12589 12592 0 0 0 06:51:25 6402 + + Total number of neighbors 4 + ``` + +**show ipv6 bgp neighbors** + +This command displays all the details of one particular IPv6 Border Gateway Protocol (BGP) neighbor. Option is also available to display only the advertised routes, or the received routes, or all routes. + +- Usage: + ``` + show ipv6 bgp neighbors (advertised-routes | received-routes | routes) + ``` + +- Examples: + ``` + admin@sonic:~$ show ipv6 bgp neighbors fc00::72 advertised-routes + + admin@sonic:~$ show ipv6 bgp neighbors fc00::72 received-routes + + admin@sonic:~$ show ipv6 bgp neighbors fc00::72 routes + ``` + +**show route-map** + +This command displays the routing policy that takes precedence over the other route processes that are configured. + +- Usage: + ``` + show route-map + ``` + +- Example: + ``` + admin@sonic:~$ show route-map + ZEBRA: + route-map RM_SET_SRC, permit, sequence 10 + Match clauses: + Set clauses: + src 10.12.0.102 + Call clause: + Action: + Exit routemap + ZEBRA: + route-map RM_SET_SRC6, permit, sequence 10 + Match clauses: + Set clauses: + src fc00:1::102 + Call clause: + Action: + Exit routemap + BGP: + route-map FROM_BGP_SPEAKER_V4, permit, sequence 10 + Match clauses: + Set clauses: + Call clause: + Action: + Exit routemap + BGP: + route-map TO_BGP_SPEAKER_V4, deny, sequence 10 + Match clauses: + Set clauses: + Call clause: + Action: + Exit routemap + BGP: + route-map ISOLATE, permit, sequence 10 + Match clauses: + Set clauses: + as-path prepend 65000 + Call clause: + Action: + Exit routemap + ``` +Go Back To [Beginning of the document](#) or [Beginning of this section](#quagga-bgp-show-commands) + +# ZTP Configuration And Show Commands + +This section explains all the Zero Touch Provisioning commands that are supported in SONiC. + +## ZTP show commands + + +This command displays the current ZTP configuration of the switch. It also displays detailed information about current state of a ZTP session. It displays information related to all configuration sections as defined in the switch provisioning information discovered in a particular ZTP session. + +- Usage: + show ztp status + + show ztp status --verbose + +- Example: + +``` +root@B1-SP1-7712:/home/admin# show ztp status +ZTP Admin Mode : True +ZTP Service : Inactive +ZTP Status : SUCCESS +ZTP Source : dhcp-opt67 (eth0) +Runtime : 05m 31s +Timestamp : 2019-09-11 19:12:24 UTC + +ZTP Service is not running + +01-configdb-json: SUCCESS +02-connectivity-check: SUCCESS +``` +Use the verbose option to display more detailed information. + +``` +root@B1-SP1-7712:/home/admin# show ztp status --verbose +Command: ztp status --verbose +------------------------------------- +ZTP +------------------------------------- +ZTP Admin Mode : True +ZTP Service : Inactive +ZTP Status : SUCCESS +ZTP Source : dhcp-opt67 (eth0) +Runtime : 05m 31s +Timestamp : 2019-09-11 19:12:16 UTC +ZTP JSON Version : 1.0 + +ZTP Service is not running + +---------------------------------------- +01-configdb-json +---------------------------------------- +Status : SUCCESS +Runtime : 02m 48s +Timestamp : 2019-09-11 19:11:55 UTC +Exit Code : 0 +Ignore Result : False + +---------------------------------------- +02-connectivity-check +---------------------------------------- +Status : SUCCESS +Runtime : 04s +Timestamp : 2019-09-11 19:12:16 UTC +Exit Code : 0 +Ignore Result : False +``` + +- Description + + - **ZTP Admin Mode** - Displays if the ZTP feature is administratively enabled or disabled. Possible values are True or False. This value is configurable using "config ztp enabled" and "config ztp disable" commands. + - **ZTP Service** - Displays the ZTP service status. The following are possible values this field can display: + - *Active Discovery*: ZTP service is operational and is performing DHCP discovery to learn switch provisioning information + - *Processing*: ZTP service has discovered switch provisioning information and is processing it + - **ZTP Status** - Displays the current state and result of ZTP session. The following are possible values this field can display: + - *IN-PROGRESS*: ZTP session is currently in progress. ZTP service is processing switch provisioning information. + - *SUCCESS*: ZTP service has successfully processed the switch provisioning information. + - *FAILED*: ZTP service has failed to process the switch provisioning information. + - *Not Started*: ZTP service has not started processing the discovered switch provisioning information. + - **ZTP Source** - Displays the DHCP option and then interface name from which switch provisioning information has been discovered. + - **Runtime** - Displays the time taken for ZTP process to complete from start to finish. For individual configuration sections it indicates the time taken to process the associated configuration section. + - **Timestamp** - Displays the date/time stamp when the status field has last changed. + - **ZTP JSON Version** - Version of ZTP JSON file used for describing switch provisioning information. + - **Status** - Displays the current state and result of a configuration section. The following are possible values this field can display: + - *IN-PROGRESS*: Corresponding configuration section is currently being processed. + - *SUCCESS*: Corresponding configuration section was processed successfully. + - *FAILED*: Corresponding configuration section failed to execute successfully. + - *Not Started*: ZTP service has not started processing the corresponding configuration section. + - *DISABLED*: Corresponding configuration section has been marked as disabled and will not be processed. + - **Exit Code** - Displays the program exit code of the configuration section executed. Non-zero exit code indicates that the configuration section has failed to execute successfully. + - **Ignore Result** - If this value is True, the result of the corresponding configuration section is ignored and not used to evaluate the overall ZTP result. + - **Activity String** - In addition to above information an activity string is displayed indicating the current action being performed by the ZTP service and how much time it has been performing the mentioned activity. Below is an example. + - (04m 12s) Discovering provisioning data + +## ZTP configuration commands + +This sub-section explains the list of the configuration options available for ZTP. + + + +**config ztp enable** + +Use this command to enable ZTP administrative mode + +- Example: + +``` +root@sonic:/home/admin# config ztp enable +Running command: ztp enable +``` + + + +**config ztp disable** + +Use this command to disable ZTP administrative mode. This command can also be used to abort a current ZTP session and load the factory default switch configuration. + +- Usage: + config ztp disable + + config ztp disable -y + +- Example: + +``` +root@sonic:/home/admin# config ztp disable +Active ZTP session will be stopped and disabled, continue? [y/N]: y +Running command: ztp disable -y +``` + + +**config ztp run** + +Use this command to manually restart a new ZTP session. This command deletes the existing */etc/sonic/config_db.json* file and stats ZTP service. It also erases the previous ZTP session data. ZTP configuration is loaded on to the switch and ZTP discovery is performed. + +- Usage: + config ztp run + + config ztp run -y + +- Example: + +``` +root@sonic:/home/admin# config ztp run +ZTP will be restarted. You may lose switch data and connectivity, continue? [y/N]: y +Running command: ztp run -y +``` + +Go Back To [Beginning of the document](#SONiC-COMMAND-LINE-INTERFACE-GUIDE) or [Beginning of this section](#ztp-configuration-and-show-commands) diff --git a/generic_config_updater/change_applier.py b/generic_config_updater/change_applier.py index 63ca98049..29afc1a52 100644 --- a/generic_config_updater/change_applier.py +++ b/generic_config_updater/change_applier.py @@ -3,17 +3,20 @@ import jsondiff import importlib import os +import subprocess import tempfile from collections import defaultdict from swsscommon.swsscommon import ConfigDBConnector -from .gu_common import genericUpdaterLogging +from sonic_py_common import multi_asic +from .gu_common import GenericConfigUpdaterError, genericUpdaterLogging SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) -UPDATER_CONF_FILE = f"{SCRIPT_DIR}/generic_config_updater.conf.json" +UPDATER_CONF_FILE = f"{SCRIPT_DIR}/gcu_services_validator.conf.json" logger = genericUpdaterLogging.get_logger(title="Change Applier") print_to_console = False + def set_verbose(verbose=False): global print_to_console, logger @@ -32,8 +35,8 @@ def log_error(m): logger.log(logger.LOG_PRIORITY_ERROR, m, print_to_console) -def get_config_db(): - config_db = ConfigDBConnector() +def get_config_db(scope=multi_asic.DEFAULT_NAMESPACE): + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=scope) config_db.connect() return config_db @@ -60,22 +63,29 @@ class DryRunChangeApplier: def __init__(self, config_wrapper): self.config_wrapper = config_wrapper - def apply(self, change): self.config_wrapper.apply_change_to_config_db(change) + def remove_backend_tables_from_config(self, data): + return data + class ChangeApplier: updater_conf = None - def __init__(self): - self.config_db = get_config_db() + def __init__(self, scope=multi_asic.DEFAULT_NAMESPACE): + self.scope = scope + self.config_db = get_config_db(self.scope) + self.backend_tables = [ + "BUFFER_PG", + "BUFFER_PROFILE", + "FLEX_COUNTER_TABLE" + ] if (not ChangeApplier.updater_conf) and os.path.exists(UPDATER_CONF_FILE): with open(UPDATER_CONF_FILE, "r") as s: ChangeApplier.updater_conf = json.load(s) - def _invoke_cmd(self, cmd, old_cfg, upd_cfg, keys): # cmd is in the format as . # @@ -87,7 +97,6 @@ def _invoke_cmd(self, cmd, old_cfg, upd_cfg, keys): return method_to_call(old_cfg, upd_cfg, keys) - def _services_validate(self, old_cfg, upd_cfg, keys): lst_svcs = set() lst_cmds = set() @@ -113,7 +122,6 @@ def _services_validate(self, old_cfg, upd_cfg, keys): log_debug("service invoked: {}".format(cmd)) return 0 - def _upd_data(self, tbl, run_tbl, upd_tbl, upd_keys): for key in set(run_tbl.keys()).union(set(upd_tbl.keys())): run_data = run_tbl.get(key, None) @@ -124,24 +132,23 @@ def _upd_data(self, tbl, run_tbl, upd_tbl, upd_keys): upd_keys[tbl][key] = {} log_debug("Patch affected tbl={} key={}".format(tbl, key)) - def _report_mismatch(self, run_data, upd_data): log_error("run_data vs expected_data: {}".format( str(jsondiff.diff(run_data, upd_data))[0:40])) - def apply(self, change): run_data = self._get_running_config() upd_data = prune_empty_table(change.apply(copy.deepcopy(run_data))) upd_keys = defaultdict(dict) for tbl in sorted(set(run_data.keys()).union(set(upd_data.keys()))): - self._upd_data(tbl, run_data.get(tbl, {}), - upd_data.get(tbl, {}), upd_keys) + self._upd_data(tbl, run_data.get(tbl, {}), upd_data.get(tbl, {}), upd_keys) ret = self._services_validate(run_data, upd_data, upd_keys) if not ret: run_data = self._get_running_config() + self.remove_backend_tables_from_config(upd_data) + self.remove_backend_tables_from_config(run_data) if upd_data != run_data: self._report_mismatch(run_data, upd_data) ret = -1 @@ -149,13 +156,34 @@ def apply(self, change): log_error("Failed to apply Json change") return ret + def remove_backend_tables_from_config(self, data): + for key in self.backend_tables: + data.pop(key, None) def _get_running_config(self): - (_, fname) = tempfile.mkstemp(suffix="_changeApplier") - os.system("sonic-cfggen -d --print-data > {}".format(fname)) - run_data = {} - with open(fname, "r") as s: - run_data = json.load(s) - if os.path.isfile(fname): + _, fname = tempfile.mkstemp(suffix="_changeApplier") + + if self.scope: + cmd = ['sonic-cfggen', '-d', '--print-data', '-n', self.scope] + else: + cmd = ['sonic-cfggen', '-d', '--print-data'] + + with open(fname, "w") as file: + result = subprocess.Popen(cmd, stdout=file, stderr=subprocess.PIPE, text=True) + _, err = result.communicate() + + return_code = result.returncode + if return_code: os.remove(fname) + raise GenericConfigUpdaterError( + f"Failed to get running config for scope: {self.scope}," + + f"Return code: {return_code}, Error: {err}") + + run_data = {} + try: + with open(fname, "r") as file: + run_data = json.load(file) + finally: + if os.path.isfile(fname): + os.remove(fname) return run_data diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py new file mode 100644 index 000000000..a52a7f5a5 --- /dev/null +++ b/generic_config_updater/field_operation_validators.py @@ -0,0 +1,132 @@ +import os +import re +import json +import jsonpointer +import subprocess +from sonic_py_common import device_info +from .gu_common import GenericConfigUpdaterError + + +SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) +GCU_TABLE_MOD_CONF_FILE = f"{SCRIPT_DIR}/gcu_field_operation_validators.conf.json" +GET_HWSKU_CMD = "sonic-cfggen -d -v DEVICE_METADATA.localhost.hwsku" + +def get_asic_name(): + asic = "unknown" + + if os.path.exists(GCU_TABLE_MOD_CONF_FILE): + with open(GCU_TABLE_MOD_CONF_FILE, "r") as s: + gcu_field_operation_conf = json.load(s) + else: + raise GenericConfigUpdaterError("GCU table modification validators config file not found") + + asic_mapping = gcu_field_operation_conf["helper_data"]["rdma_config_update_validator"] + asic_type = device_info.get_sonic_version_info()['asic_type'] + + if asic_type == 'cisco-8000': + asic = "cisco-8000" + elif asic_type == 'mellanox' or asic_type == 'vs' or asic_type == 'broadcom': + proc = subprocess.Popen(GET_HWSKU_CMD, shell=True, universal_newlines=True, stdout=subprocess.PIPE) + output, err = proc.communicate() + hwsku = output.rstrip('\n') + if asic_type == 'mellanox' or asic_type == 'vs': + spc1_hwskus = asic_mapping["mellanox_asics"]["spc1"] + spc2_hwskus = asic_mapping["mellanox_asics"]["spc2"] + spc3_hwskus = asic_mapping["mellanox_asics"]["spc3"] + spc4_hwskus = asic_mapping["mellanox_asics"]["spc4"] + if hwsku.lower() in [spc1_hwsku.lower() for spc1_hwsku in spc1_hwskus]: + asic = "spc1" + return asic + if hwsku.lower() in [spc2_hwsku.lower() for spc2_hwsku in spc2_hwskus]: + asic = "spc2" + return asic + if hwsku.lower() in [spc3_hwsku.lower() for spc3_hwsku in spc3_hwskus]: + asic = "spc3" + return asic + if hwsku.lower() in [spc4_hwsku.lower() for spc4_hwsku in spc4_hwskus]: + asic = "spc4" + return asic + if asic_type == 'broadcom' or asic_type == 'vs': + broadcom_asics = asic_mapping["broadcom_asics"] + for asic_shorthand, hwskus in broadcom_asics.items(): + if asic != "unknown": + break + for hwsku_cur in hwskus: + if hwsku_cur.lower() in hwsku.lower(): + asic = asic_shorthand + break + + return asic + + +def rdma_config_update_validator(patch_element): + asic = get_asic_name() + if asic == "unknown": + return False + version_info = device_info.get_sonic_version_info() + build_version = version_info.get('build_version') + version_substrings = build_version.split('.') + branch_version = None + + for substring in version_substrings: + if substring.isdigit() and re.match(r'^\d{8}$', substring): + branch_version = substring + + path = patch_element["path"] + table = jsonpointer.JsonPointer(path).parts[0] + + # Helper function to return relevant cleaned paths, consdiers case where the jsonpatch value is a dict + # For paths like /PFC_WD/Ethernet112/action, remove Ethernet112 from the path so that we can clearly determine the relevant field (i.e. action, not Ethernet112) + def _get_fields_in_patch(): + cleaned_fields = [] + + field_elements = jsonpointer.JsonPointer(path).parts[1:] + cleaned_field_elements = [elem for elem in field_elements if not any(char.isdigit() for char in elem)] + cleaned_field = '/'.join(cleaned_field_elements).lower() + + + if 'value' in patch_element.keys() and isinstance(patch_element['value'], dict): + for key in patch_element['value']: + if len(cleaned_field) > 0: + cleaned_fields.append(cleaned_field + '/' + key) + else: + cleaned_fields.append(key) + else: + cleaned_fields.append(cleaned_field) + + return cleaned_fields + + if os.path.exists(GCU_TABLE_MOD_CONF_FILE): + with open(GCU_TABLE_MOD_CONF_FILE, "r") as s: + gcu_field_operation_conf = json.load(s) + else: + raise GenericConfigUpdaterError("GCU table modification validators config file not found") + + tables = gcu_field_operation_conf["tables"] + scenarios = tables[table]["validator_data"]["rdma_config_update_validator"] + + cleaned_fields = _get_fields_in_patch() + for cleaned_field in cleaned_fields: + scenario = None + for key in scenarios.keys(): + if cleaned_field in scenarios[key]["fields"]: + scenario = scenarios[key] + break + + if scenario is None: + return False + + if scenario["platforms"][asic] == "": + return False + + if patch_element['op'] not in scenario["operations"]: + return False + + if branch_version is not None: + if asic in scenario["platforms"]: + if branch_version < scenario["platforms"][asic]: + return False + else: + return False + + return True diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json new file mode 100644 index 000000000..eeb9038de --- /dev/null +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -0,0 +1,156 @@ +{ + "README": [ + "field_operation_validators provides, module & method name as ", + " .", + "NOTE: module name could have '.'", + " ", + "The last element separated by '.' is considered as ", + "method name", + "", + "e.g. 'show.acl.test_acl'", + "", + "field_operation_validators for a given table defines a list of validators that all must pass for modification to the specified field and table to be allowed", + "", + "validator_data provides data relevant to each validator", + "" + ], + "helper_data": { + "rdma_config_update_validator": { + "mellanox_asics": { + "spc1": [ "ACS-MSN2700", "ACS-MSN2740", "ACS-MSN2100", "ACS-MSN2410", "ACS-MSN2010", "Mellanox-SN2700", "Mellanox-SN2700-D48C8" ], + "spc2": [ "ACS-MSN3800", "Mellanox-SN3800-D112C8" ], + "spc3": [ "ACS-MSN4700", "ACS-MSN4600", "ACS-MSN4600C", "ACS-MSN4410", "Mellanox-SN4600C-D112C8", "Mellanox-SN4600C-C64", "Mellanox-SN4700-O8C48" ], + "spc4": [ "ACS-SN5600"] + }, + "broadcom_asics": { + "th": [ "Force10-S6100", "Arista-7060CX-32S-C32", "Arista-7060CX-32S-C32-T1", "Arista-7060CX-32S-D48C8", "Celestica-DX010-C32", "Seastone-DX010" ], + "th2": [ "Arista-7260CX3-D108C8", "Arista-7260CX3-C64", "Arista-7260CX3-Q64" ], + "td2": [ "Force10-S6000", "Force10-S6000-Q24S32", "Arista-7050-QX32", "Arista-7050-QX-32S", "Nexus-3164", "Arista-7050QX32S-Q32" ], + "td3": [ "Arista-7050CX3-32S-C32", "Arista-7050CX3-32S-D48C8" ] + } + } + }, + "tables": { + "PFC_WD": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "PFCWD enable/disable": { + "fields": [ + "restoration_time", + "detection_time", + "action", + "global/poll_interval", + "" + ], + "operations": ["remove", "add", "replace"], + "platforms": { + "spc1": "20181100", + "spc2": "20191100", + "spc3": "20220500", + "spc4": "20221100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "20201200" + } + } + } + } + }, + "BUFFER_POOL": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "Shared/headroom pool size changes": { + "fields": [ + "ingress_lossless_pool/xoff", + "ingress_lossless_pool/size", + "egress_lossy_pool/size" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20191100", + "spc2": "20191100", + "spc3": "20220500", + "spc4": "20221100", + "td2": "", + "th": "20221100", + "th2": "20221100", + "td3": "20221100", + "cisco-8000": "" + } + } + } + } + }, + "BUFFER_PROFILE": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "Dynamic threshold tuning": { + "fields": [ + "dynamic_th" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20181100", + "spc2": "20191100", + "spc3": "20220500", + "spc4": "20221100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "" + } + }, + "PG headroom modification": { + "fields": [ + "xoff" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20191100", + "spc2": "20191100", + "spc3": "20220500", + "spc4": "20221100", + "td2": "", + "th": "20221100", + "th2": "20221100", + "td3": "20221100", + "cisco-8000": "" + } + } + } + } + }, + "WRED_PROFILE": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "ECN tuning": { + "fields": [ + "azure_lossless/green_min_threshold", + "azure_lossless/green_max_threshold", + "azure_lossless/green_drop_probability" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20181100", + "spc2": "20191100", + "spc3": "20220500", + "spc4": "20221100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "" + } + } + } + } + } + } +} diff --git a/generic_config_updater/generic_config_updater.conf.json b/generic_config_updater/gcu_services_validator.conf.json similarity index 83% rename from generic_config_updater/generic_config_updater.conf.json rename to generic_config_updater/gcu_services_validator.conf.json index 417da035c..852b58728 100644 --- a/generic_config_updater/generic_config_updater.conf.json +++ b/generic_config_updater/gcu_services_validator.conf.json @@ -45,6 +45,12 @@ }, "ACL_RULE": { "services_to_validate": [ "caclmgrd-service" ] + }, + "NTP_SERVER": { + "services_to_validate": [ "ntp-service" ] + }, + "VLAN_INTERFACE": { + "services_to_validate": [ "vlanintf-service" ] } }, "services": { @@ -65,6 +71,12 @@ }, "caclmgrd-service": { "validate_commands": [ "generic_config_updater.services_validator.caclmgrd_validator" ] + }, + "ntp-service": { + "validate_commands": [ "generic_config_updater.services_validator.ntp_validator" ] + }, + "vlanintf-service": { + "validate_commands": [ "generic_config_updater.services_validator.vlanintf_validator" ] } } } diff --git a/generic_config_updater/generic_updater.py b/generic_config_updater/generic_updater.py index ee7af6562..3401d05a4 100644 --- a/generic_config_updater/generic_updater.py +++ b/generic_config_updater/generic_updater.py @@ -1,15 +1,71 @@ import json +import jsonpointer import os +import subprocess + from enum import Enum -from .gu_common import GenericConfigUpdaterError, ConfigWrapper, \ - DryRunConfigWrapper, PatchWrapper, genericUpdaterLogging +from .gu_common import HOST_NAMESPACE, GenericConfigUpdaterError, EmptyTableError, ConfigWrapper, \ + DryRunConfigWrapper, PatchWrapper, genericUpdaterLogging from .patch_sorter import StrictPatchSorter, NonStrictPatchSorter, ConfigSplitter, \ - TablesWithoutYangConfigSplitter, IgnorePathsFromYangConfigSplitter + TablesWithoutYangConfigSplitter, IgnorePathsFromYangConfigSplitter from .change_applier import ChangeApplier, DryRunChangeApplier +from sonic_py_common import multi_asic CHECKPOINTS_DIR = "/etc/sonic/checkpoints" CHECKPOINT_EXT = ".cp.json" + +def extract_scope(path): + if not path: + raise Exception("Wrong patch with empty path.") + pointer = jsonpointer.JsonPointer(path) + parts = pointer.parts + if not parts: + raise GenericConfigUpdaterError("Wrong patch with empty path.") + if parts[0].startswith("asic"): + if not parts[0][len("asic"):].isnumeric(): + raise GenericConfigUpdaterError(f"Error resolving path: '{path}' due to incorrect ASIC number.") + scope = parts[0] + remainder = "/" + "/".join(parts[1:]) + elif parts[0] == HOST_NAMESPACE: + scope = HOST_NAMESPACE + remainder = "/" + "/".join(parts[1:]) + else: + scope = "" + remainder = path + return scope, remainder + + +def get_cmd_output(cmd): + proc = subprocess.Popen(cmd, text=True, stdout=subprocess.PIPE) + return proc.communicate()[0], proc.returncode + + +def get_config_json(): + scope_list = [multi_asic.DEFAULT_NAMESPACE] + all_running_config = {} + if multi_asic.is_multi_asic(): + scope_list.extend(multi_asic.get_namespace_list()) + for scope in scope_list: + command = ["sonic-cfggen", "-d", "--print-data"] + if scope != multi_asic.DEFAULT_NAMESPACE: + command += ["-n", scope] + + running_config_text, returncode = get_cmd_output(command) + if returncode: + raise GenericConfigUpdaterError( + f"Fetch all runningconfiguration failed as output:{running_config_text}") + running_config = json.loads(running_config_text) + + if multi_asic.is_multi_asic(): + if scope == multi_asic.DEFAULT_NAMESPACE: + scope = HOST_NAMESPACE + all_running_config[scope] = running_config + else: + all_running_config = running_config + return all_running_config + + class ConfigLock: def acquire_lock(self): # TODO: Implement ConfigLock @@ -24,70 +80,79 @@ class ConfigFormat(Enum): CONFIGDB = 1 SONICYANG = 2 + class PatchApplier: def __init__(self, patchsorter=None, changeapplier=None, config_wrapper=None, - patch_wrapper=None): + patch_wrapper=None, + scope=multi_asic.DEFAULT_NAMESPACE): + self.scope = scope self.logger = genericUpdaterLogging.get_logger(title="Patch Applier", print_all_to_console=True) - self.config_wrapper = config_wrapper if config_wrapper is not None else ConfigWrapper() - self.patch_wrapper = patch_wrapper if patch_wrapper is not None else PatchWrapper() + self.config_wrapper = config_wrapper if config_wrapper is not None else ConfigWrapper(scope=self.scope) + self.patch_wrapper = patch_wrapper if patch_wrapper is not None else PatchWrapper(scope=self.scope) self.patchsorter = patchsorter if patchsorter is not None else StrictPatchSorter(self.config_wrapper, self.patch_wrapper) - self.changeapplier = changeapplier if changeapplier is not None else ChangeApplier() + self.changeapplier = changeapplier if changeapplier is not None else ChangeApplier(scope=self.scope) - def apply(self, patch): - self.logger.log_notice("Patch application starting.") - self.logger.log_notice(f"Patch: {patch}") + def apply(self, patch, sort=True): + scope = self.scope if self.scope else HOST_NAMESPACE + self.logger.log_notice(f"{scope}: Patch application starting.") + self.logger.log_notice(f"{scope}: Patch: {patch}") # Get old config - self.logger.log_notice("Getting current config db.") + self.logger.log_notice(f"{scope} getting current config db.") old_config = self.config_wrapper.get_config_db_as_json() # Generate target config - self.logger.log_notice("Simulating the target full config after applying the patch.") + self.logger.log_notice(f"{scope}: simulating the target full config after applying the patch.") target_config = self.patch_wrapper.simulate_patch(patch, old_config) + # Validate all JsonPatch operations on specified fields + self.logger.log_notice(f"{scope}: validating all JsonPatch operations are permitted on the specified fields") + self.config_wrapper.validate_field_operation(old_config, target_config) + # Validate target config does not have empty tables since they do not show up in ConfigDb - self.logger.log_notice("Validating target config does not have empty tables, " \ - "since they do not show up in ConfigDb.") + self.logger.log_notice(f"""{scope}: validating target config does not have empty tables, + since they do not show up in ConfigDb.""") empty_tables = self.config_wrapper.get_empty_tables(target_config) - if empty_tables: # if there are empty tables + if empty_tables: # if there are empty tables empty_tables_txt = ", ".join(empty_tables) - raise ValueError("Given patch is not valid because it will result in empty tables " \ - "which is not allowed in ConfigDb. " \ - f"Table{'s' if len(empty_tables) != 1 else ''}: {empty_tables_txt}") - + raise EmptyTableError(f"{scope}: given patch is not valid because it will result in empty tables \ + which is not allowed in ConfigDb. \ + Table{'s' if len(empty_tables) != 1 else ''}: {empty_tables_txt}") # Generate list of changes to apply - self.logger.log_notice("Sorting patch updates.") + self.logger.log_notice(f"{scope}: sorting patch updates.") changes = self.patchsorter.sort(patch) changes_len = len(changes) - self.logger.log_notice(f"The patch was sorted into {changes_len} " \ - f"change{'s' if changes_len != 1 else ''}{':' if changes_len > 0 else '.'}") - for change in changes: - self.logger.log_notice(f" * {change}") + self.logger.log_notice(f"The {scope} patch was converted into {changes_len} " \ + f"change{'s' if changes_len != 1 else ''}{':' if changes_len > 0 else '.'}") # Apply changes in order - self.logger.log_notice(f"Applying {changes_len} change{'s' if changes_len != 1 else ''} " \ + self.logger.log_notice(f"{scope}: applying {changes_len} change{'s' if changes_len != 1 else ''} " \ f"in order{':' if changes_len > 0 else '.'}") for change in changes: self.logger.log_notice(f" * {change}") self.changeapplier.apply(change) # Validate config updated successfully - self.logger.log_notice("Verifying patch updates are reflected on ConfigDB.") + self.logger.log_notice(f"{scope}: verifying patch updates are reflected on ConfigDB.") new_config = self.config_wrapper.get_config_db_as_json() - if not(self.patch_wrapper.verify_same_json(target_config, new_config)): - raise GenericConfigUpdaterError(f"After applying patch to config, there are still some parts not updated") + self.changeapplier.remove_backend_tables_from_config(target_config) + self.changeapplier.remove_backend_tables_from_config(new_config) + if not (self.patch_wrapper.verify_same_json(target_config, new_config)): + raise GenericConfigUpdaterError(f"{scope}: after applying patch to config, there are still some parts not updated") + + self.logger.log_notice(f"{scope} patch application completed.") - self.logger.log_notice("Patch application completed.") class ConfigReplacer: - def __init__(self, patch_applier=None, config_wrapper=None, patch_wrapper=None): + def __init__(self, patch_applier=None, config_wrapper=None, patch_wrapper=None, scope=multi_asic.DEFAULT_NAMESPACE): + self.scope = scope self.logger = genericUpdaterLogging.get_logger(title="Config Replacer", print_all_to_console=True) - self.patch_applier = patch_applier if patch_applier is not None else PatchApplier() - self.config_wrapper = config_wrapper if config_wrapper is not None else ConfigWrapper() - self.patch_wrapper = patch_wrapper if patch_wrapper is not None else PatchWrapper() + self.patch_applier = patch_applier if patch_applier is not None else PatchApplier(scope=self.scope) + self.config_wrapper = config_wrapper if config_wrapper is not None else ConfigWrapper(scope=self.scope) + self.patch_wrapper = patch_wrapper if patch_wrapper is not None else PatchWrapper(scope=self.scope) def replace(self, target_config): self.logger.log_notice("Config replacement starting.") @@ -105,31 +170,35 @@ def replace(self, target_config): self.logger.log_notice("Verifying config replacement is reflected on ConfigDB.") new_config = self.config_wrapper.get_config_db_as_json() - if not(self.patch_wrapper.verify_same_json(target_config, new_config)): + if not (self.patch_wrapper.verify_same_json(target_config, new_config)): raise GenericConfigUpdaterError(f"After replacing config, there is still some parts not updated") self.logger.log_notice("Config replacement completed.") + class FileSystemConfigRollbacker: def __init__(self, checkpoints_dir=CHECKPOINTS_DIR, config_replacer=None, - config_wrapper=None): + config_wrapper=None, + scope=multi_asic.DEFAULT_NAMESPACE): + self.scope = scope self.logger = genericUpdaterLogging.get_logger(title="Config Rollbacker", print_all_to_console=True) + self.util = Util(checkpoints_dir=checkpoints_dir) self.checkpoints_dir = checkpoints_dir - self.config_replacer = config_replacer if config_replacer is not None else ConfigReplacer() - self.config_wrapper = config_wrapper if config_wrapper is not None else ConfigWrapper() + self.config_replacer = config_replacer if config_replacer is not None else ConfigReplacer(scope=self.scope) + self.config_wrapper = config_wrapper if config_wrapper is not None else ConfigWrapper(scope=self.scope) def rollback(self, checkpoint_name): self.logger.log_notice("Config rollbacking starting.") self.logger.log_notice(f"Checkpoint name: {checkpoint_name}.") self.logger.log_notice(f"Verifying '{checkpoint_name}' exists.") - if not self._check_checkpoint_exists(checkpoint_name): + if not self.util.check_checkpoint_exists(checkpoint_name): raise ValueError(f"Checkpoint '{checkpoint_name}' does not exist") self.logger.log_notice(f"Loading checkpoint into memory.") - target_config = self._get_checkpoint_content(checkpoint_name) + target_config = self.util.get_checkpoint_content(checkpoint_name) self.logger.log_notice(f"Replacing config using 'Config Replacer'.") self.config_replacer.replace(target_config) @@ -141,29 +210,29 @@ def checkpoint(self, checkpoint_name): self.logger.log_notice(f"Checkpoint name: {checkpoint_name}.") self.logger.log_notice("Getting current config db.") - json_content = self.config_wrapper.get_config_db_as_json() + json_content = get_config_json() self.logger.log_notice("Getting checkpoint full-path.") - path = self._get_checkpoint_full_path(checkpoint_name) + path = self.util.get_checkpoint_full_path(checkpoint_name) self.logger.log_notice("Ensuring checkpoint directory exist.") - self._ensure_checkpoints_dir_exists() + self.util.ensure_checkpoints_dir_exists() self.logger.log_notice(f"Saving config db content to {path}.") - self._save_json_file(path, json_content) + self.util.save_json_file(path, json_content) self.logger.log_notice("Config checkpoint completed.") def list_checkpoints(self): self.logger.log_info("Listing checkpoints starting.") - + self.logger.log_info(f"Verifying checkpoints directory '{self.checkpoints_dir}' exists.") - if not self._checkpoints_dir_exist(): + if not self.util.checkpoints_dir_exist(): self.logger.log_info("Checkpoints directory is empty, returning empty checkpoints list.") return [] self.logger.log_info("Getting checkpoints in checkpoints directory.") - checkpoint_names = self._get_checkpoint_names() + checkpoint_names = self.util.get_checkpoint_names() checkpoints_len = len(checkpoint_names) self.logger.log_info(f"Found {checkpoints_len} checkpoint{'s' if checkpoints_len != 1 else ''}{':' if checkpoints_len > 0 else '.'}") @@ -179,58 +248,139 @@ def delete_checkpoint(self, checkpoint_name): self.logger.log_notice(f"Checkpoint name: {checkpoint_name}.") self.logger.log_notice(f"Checking checkpoint exists.") - if not self._check_checkpoint_exists(checkpoint_name): + if not self.util.check_checkpoint_exists(checkpoint_name): raise ValueError(f"Checkpoint '{checkpoint_name}' does not exist") self.logger.log_notice(f"Deleting checkpoint.") - self._delete_checkpoint(checkpoint_name) + self.util.delete_checkpoint(checkpoint_name) self.logger.log_notice("Deleting checkpoint completed.") - def _ensure_checkpoints_dir_exists(self): + +class MultiASICConfigReplacer(ConfigReplacer): + def __init__(self, + patch_applier=None, + config_wrapper=None, + patch_wrapper=None, + scope=multi_asic.DEFAULT_NAMESPACE): + self.logger = genericUpdaterLogging.get_logger(title="MultiASICConfigReplacer", + print_all_to_console=True) + self.scopelist = [HOST_NAMESPACE, *multi_asic.get_namespace_list()] + super().__init__(patch_applier, config_wrapper, patch_wrapper, scope) + + def replace(self, target_config): + config_keys = set(target_config.keys()) + missing_scopes = set(self.scopelist) - config_keys + if missing_scopes: + raise GenericConfigUpdaterError(f"To be replace config is missing scope: {missing_scopes}") + + for scope in self.scopelist: + scope_config = target_config.pop(scope) + if scope.lower() == HOST_NAMESPACE: + scope = multi_asic.DEFAULT_NAMESPACE + ConfigReplacer(scope=scope).replace(scope_config) + + +class MultiASICConfigRollbacker(FileSystemConfigRollbacker): + def __init__(self, + checkpoints_dir=CHECKPOINTS_DIR, + config_replacer=None, + config_wrapper=None): + self.logger = genericUpdaterLogging.get_logger(title="MultiASICConfigRollbacker", + print_all_to_console=True) + self.scopelist = [HOST_NAMESPACE, *multi_asic.get_namespace_list()] + self.checkpoints_dir = checkpoints_dir + self.util = Util(checkpoints_dir=checkpoints_dir) + super().__init__(config_wrapper=config_wrapper, config_replacer=config_replacer) + + def rollback(self, checkpoint_name): + self.logger.log_notice("Config rollbacking starting.") + self.logger.log_notice(f"Checkpoint name: {checkpoint_name}.") + self.logger.log_notice(f"Verifying '{checkpoint_name}' exists.") + + if not self.util.check_checkpoint_exists(checkpoint_name): + raise ValueError(f"Checkpoint '{checkpoint_name}' does not exist") + + self.logger.log_notice(f"Loading checkpoint '{checkpoint_name}' into memory.") + target_config = self.util.get_checkpoint_content(checkpoint_name) + self.logger.log_notice(f"Replacing config '{checkpoint_name}' using 'Config Replacer'.") + + for scope in self.scopelist: + config = target_config.pop(scope) + if scope.lower() == HOST_NAMESPACE: + scope = multi_asic.DEFAULT_NAMESPACE + ConfigReplacer(scope=scope).replace(config) + + self.logger.log_notice("Config rollbacking completed.") + + def checkpoint(self, checkpoint_name): + all_configs = get_config_json() + self.logger.log_notice("Config checkpoint starting.") + self.logger.log_notice(f"Checkpoint name: {checkpoint_name}.") + + self.logger.log_notice("Getting checkpoint full-path.") + path = self.util.get_checkpoint_full_path(checkpoint_name) + + self.logger.log_notice("Ensuring checkpoint directory exist.") + self.util.ensure_checkpoints_dir_exists() + + self.logger.log_notice(f"Saving config db content to {path}.") + self.util.save_json_file(path, all_configs) + + self.logger.log_notice("Config checkpoint completed.") + + +class Util: + def __init__(self, checkpoints_dir=CHECKPOINTS_DIR): + self.checkpoints_dir = checkpoints_dir + + def ensure_checkpoints_dir_exists(self): os.makedirs(self.checkpoints_dir, exist_ok=True) - def _save_json_file(self, path, json_content): + def save_json_file(self, path, json_content): with open(path, "w") as fh: fh.write(json.dumps(json_content)) - def _get_checkpoint_content(self, checkpoint_name): - path = self._get_checkpoint_full_path(checkpoint_name) + def get_checkpoint_content(self, checkpoint_name): + path = self.get_checkpoint_full_path(checkpoint_name) with open(path) as fh: text = fh.read() return json.loads(text) - def _get_checkpoint_full_path(self, name): + def get_checkpoint_full_path(self, name): return os.path.join(self.checkpoints_dir, f"{name}{CHECKPOINT_EXT}") - def _get_checkpoint_names(self): + def get_checkpoint_names(self): file_names = [] for file_name in os.listdir(self.checkpoints_dir): if file_name.endswith(CHECKPOINT_EXT): # Remove extension from file name. # Example assuming ext is '.cp.json', then 'checkpoint1.cp.json' becomes 'checkpoint1' file_names.append(file_name[:-len(CHECKPOINT_EXT)]) - return file_names - def _checkpoints_dir_exist(self): + def checkpoints_dir_exist(self): return os.path.isdir(self.checkpoints_dir) - def _check_checkpoint_exists(self, name): - path = self._get_checkpoint_full_path(name) + def check_checkpoint_exists(self, name): + path = self.get_checkpoint_full_path(name) return os.path.isfile(path) - def _delete_checkpoint(self, name): - path = self._get_checkpoint_full_path(name) + def delete_checkpoint(self, name): + path = self.get_checkpoint_full_path(name) return os.remove(path) + class Decorator(PatchApplier, ConfigReplacer, FileSystemConfigRollbacker): - def __init__(self, decorated_patch_applier=None, decorated_config_replacer=None, decorated_config_rollbacker=None): + def __init__(self, + decorated_patch_applier=None, + decorated_config_replacer=None, + decorated_config_rollbacker=None, + scope=multi_asic.DEFAULT_NAMESPACE): # initing base classes to make LGTM happy - PatchApplier.__init__(self) - ConfigReplacer.__init__(self) - FileSystemConfigRollbacker.__init__(self) - + PatchApplier.__init__(self, scope=scope) + ConfigReplacer.__init__(self, scope=scope) + FileSystemConfigRollbacker.__init__(self, scope=scope) self.decorated_patch_applier = decorated_patch_applier self.decorated_config_replacer = decorated_config_replacer self.decorated_config_rollbacker = decorated_config_rollbacker @@ -253,10 +403,16 @@ def list_checkpoints(self): def delete_checkpoint(self, checkpoint_name): self.decorated_config_rollbacker.delete_checkpoint(checkpoint_name) -class SonicYangDecorator(Decorator): - def __init__(self, patch_wrapper, config_wrapper, decorated_patch_applier=None, decorated_config_replacer=None): - Decorator.__init__(self, decorated_patch_applier, decorated_config_replacer) +class SonicYangDecorator(Decorator): + def __init__(self, + patch_wrapper, + config_wrapper, + decorated_patch_applier=None, + decorated_config_replacer=None, + scope=multi_asic.DEFAULT_NAMESPACE): + Decorator.__init__(self, decorated_patch_applier, decorated_config_replacer, scope=scope) + self.scope = scope self.patch_wrapper = patch_wrapper self.config_wrapper = config_wrapper @@ -268,17 +424,22 @@ def replace(self, target_config): config_db_target_config = self.config_wrapper.convert_sonic_yang_to_config_db(target_config) Decorator.replace(self, config_db_target_config) + class ConfigLockDecorator(Decorator): def __init__(self, decorated_patch_applier=None, decorated_config_replacer=None, decorated_config_rollbacker=None, - config_lock = ConfigLock()): - Decorator.__init__(self, decorated_patch_applier, decorated_config_replacer, decorated_config_rollbacker) - + config_lock=ConfigLock(), + scope=multi_asic.DEFAULT_NAMESPACE): + Decorator.__init__(self, + decorated_patch_applier, + decorated_config_replacer, + decorated_config_rollbacker, + scope=scope) self.config_lock = config_lock - def apply(self, patch): + def apply(self, patch, sort=True): self.execute_write_action(Decorator.apply, self, patch) def replace(self, target_config): @@ -295,74 +456,98 @@ def execute_write_action(self, action, *args): action(*args) self.config_lock.release_lock() + class GenericUpdateFactory: + def __init__(self, scope=multi_asic.DEFAULT_NAMESPACE): + self.scope = scope + def create_patch_applier(self, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths): self.init_verbose_logging(verbose) config_wrapper = self.get_config_wrapper(dry_run) change_applier = self.get_change_applier(dry_run, config_wrapper) - patch_wrapper = PatchWrapper(config_wrapper) + patch_wrapper = PatchWrapper(config_wrapper, scope=self.scope) patch_sorter = self.get_patch_sorter(ignore_non_yang_tables, ignore_paths, config_wrapper, patch_wrapper) patch_applier = PatchApplier(config_wrapper=config_wrapper, patchsorter=patch_sorter, patch_wrapper=patch_wrapper, - changeapplier=change_applier) + changeapplier=change_applier, + scope=self.scope) if config_format == ConfigFormat.CONFIGDB: pass elif config_format == ConfigFormat.SONICYANG: - patch_applier = SonicYangDecorator( - decorated_patch_applier = patch_applier, patch_wrapper=patch_wrapper, config_wrapper=config_wrapper) + patch_applier = SonicYangDecorator(decorated_patch_applier=patch_applier, + patch_wrapper=patch_wrapper, + config_wrapper=config_wrapper, + scope=self.scope) else: raise ValueError(f"config-format '{config_format}' is not supported") if not dry_run: - patch_applier = ConfigLockDecorator(decorated_patch_applier = patch_applier) + patch_applier = ConfigLockDecorator(decorated_patch_applier=patch_applier, scope=self.scope) return patch_applier def create_config_replacer(self, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths): self.init_verbose_logging(verbose) - config_wrapper = self.get_config_wrapper(dry_run) change_applier = self.get_change_applier(dry_run, config_wrapper) - patch_wrapper = PatchWrapper(config_wrapper) + patch_wrapper = PatchWrapper(config_wrapper, scope=self.scope) patch_sorter = self.get_patch_sorter(ignore_non_yang_tables, ignore_paths, config_wrapper, patch_wrapper) patch_applier = PatchApplier(config_wrapper=config_wrapper, patchsorter=patch_sorter, patch_wrapper=patch_wrapper, - changeapplier=change_applier) + changeapplier=change_applier, + scope=self.scope) + if multi_asic.is_multi_asic(): + config_replacer = MultiASICConfigReplacer(patch_applier=patch_applier, + config_wrapper=config_wrapper) + else: + config_replacer = ConfigReplacer(patch_applier=patch_applier, + config_wrapper=config_wrapper, + scope=self.scope) - config_replacer = ConfigReplacer(patch_applier=patch_applier, config_wrapper=config_wrapper) if config_format == ConfigFormat.CONFIGDB: pass elif config_format == ConfigFormat.SONICYANG: - config_replacer = SonicYangDecorator( - decorated_config_replacer = config_replacer, patch_wrapper=patch_wrapper, config_wrapper=config_wrapper) + config_replacer = SonicYangDecorator(decorated_config_replacer=config_replacer, + patch_wrapper=patch_wrapper, + config_wrapper=config_wrapper, + scope=self.scope) else: raise ValueError(f"config-format '{config_format}' is not supported") if not dry_run: - config_replacer = ConfigLockDecorator(decorated_config_replacer = config_replacer) + config_replacer = ConfigLockDecorator(decorated_config_replacer=config_replacer, scope=self.scope) return config_replacer def create_config_rollbacker(self, verbose, dry_run=False, ignore_non_yang_tables=False, ignore_paths=[]): self.init_verbose_logging(verbose) - config_wrapper = self.get_config_wrapper(dry_run) change_applier = self.get_change_applier(dry_run, config_wrapper) - patch_wrapper = PatchWrapper(config_wrapper) + patch_wrapper = PatchWrapper(config_wrapper, scope=self.scope) patch_sorter = self.get_patch_sorter(ignore_non_yang_tables, ignore_paths, config_wrapper, patch_wrapper) patch_applier = PatchApplier(config_wrapper=config_wrapper, patchsorter=patch_sorter, patch_wrapper=patch_wrapper, - changeapplier=change_applier) - - config_replacer = ConfigReplacer(config_wrapper=config_wrapper, patch_applier=patch_applier) - config_rollbacker = FileSystemConfigRollbacker(config_wrapper = config_wrapper, config_replacer = config_replacer) + changeapplier=change_applier, + scope=self.scope) + if multi_asic.is_multi_asic(): + config_replacer = MultiASICConfigReplacer(config_wrapper=config_wrapper, + patch_applier=patch_applier) + config_rollbacker = MultiASICConfigRollbacker(config_wrapper=config_wrapper, + config_replacer=config_replacer) + else: + config_replacer = ConfigReplacer(config_wrapper=config_wrapper, + patch_applier=patch_applier, + scope=self.scope) + config_rollbacker = FileSystemConfigRollbacker(config_wrapper=config_wrapper, + config_replacer=config_replacer, + scope=self.scope) if not dry_run: - config_rollbacker = ConfigLockDecorator(decorated_config_rollbacker = config_rollbacker) + config_rollbacker = ConfigLockDecorator(decorated_config_rollbacker=config_rollbacker, scope=self.scope) return config_rollbacker @@ -371,15 +556,15 @@ def init_verbose_logging(self, verbose): def get_config_wrapper(self, dry_run): if dry_run: - return DryRunConfigWrapper() + return DryRunConfigWrapper(scope=self.scope) else: - return ConfigWrapper() + return ConfigWrapper(scope=self.scope) def get_change_applier(self, dry_run, config_wrapper): if dry_run: return DryRunChangeApplier(config_wrapper) else: - return ChangeApplier() + return ChangeApplier(scope=self.scope) def get_patch_sorter(self, ignore_non_yang_tables, ignore_paths, config_wrapper, patch_wrapper): if not ignore_non_yang_tables and not ignore_paths: @@ -396,10 +581,11 @@ def get_patch_sorter(self, ignore_non_yang_tables, ignore_paths, config_wrapper, return NonStrictPatchSorter(config_wrapper, patch_wrapper, config_splitter) + class GenericUpdater: - def __init__(self, generic_update_factory=None): + def __init__(self, generic_update_factory=None, scope=multi_asic.DEFAULT_NAMESPACE): self.generic_update_factory = \ - generic_update_factory if generic_update_factory is not None else GenericUpdateFactory() + generic_update_factory if generic_update_factory is not None else GenericUpdateFactory(scope=scope) def apply_patch(self, patch, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths): patch_applier = self.generic_update_factory.create_patch_applier(config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths) diff --git a/generic_config_updater/gu_common.py b/generic_config_updater/gu_common.py index 356bff343..938aa1d03 100644 --- a/generic_config_updater/gu_common.py +++ b/generic_config_updater/gu_common.py @@ -1,20 +1,33 @@ import json import jsonpatch +import importlib from jsonpointer import JsonPointer import sonic_yang +import sonic_yang_ext import subprocess import yang as ly import copy import re -from sonic_py_common import logger +import os +from sonic_py_common import logger, multi_asic from enum import Enum YANG_DIR = "/usr/local/yang-models" SYSLOG_IDENTIFIER = "GenericConfigUpdater" +SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) +GCU_FIELD_OP_CONF_FILE = f"{SCRIPT_DIR}/gcu_field_operation_validators.conf.json" +HOST_NAMESPACE = "localhost" + class GenericConfigUpdaterError(Exception): pass +class IllegalPatchOperationError(ValueError): + pass + +class EmptyTableError(ValueError): + pass + class JsonChange: """ A class that describes a partial change to a JSON object. @@ -41,22 +54,29 @@ def __eq__(self, other): return False class ConfigWrapper: - def __init__(self, yang_dir = YANG_DIR): + def __init__(self, yang_dir=YANG_DIR, scope=multi_asic.DEFAULT_NAMESPACE): + self.scope = scope self.yang_dir = YANG_DIR self.sonic_yang_with_loaded_models = None def get_config_db_as_json(self): text = self._get_config_db_as_text() - return json.loads(text) + config_db_json = json.loads(text) + config_db_json.pop("bgpraw", None) + return config_db_json def _get_config_db_as_text(self): - # TODO: Getting configs from CLI is very slow, need to get it from sonic-cffgen directly - cmd = "show runningconfiguration all" - result = subprocess.Popen(cmd, shell=True, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + if self.scope is not None and self.scope != multi_asic.DEFAULT_NAMESPACE: + cmd = ['sonic-cfggen', '-d', '--print-data', '-n', self.scope] + else: + cmd = ['sonic-cfggen', '-d', '--print-data'] + + result = subprocess.Popen(cmd, shell=False, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) text, err = result.communicate() return_code = result.returncode if return_code: # non-zero means failure - raise GenericConfigUpdaterError(f"Failed to get running config, Return code: {return_code}, Error: {err}") + raise GenericConfigUpdaterError(f"Failed to get running config for namespace: {self.scope}," + f" Return code: {return_code}, Error: {err}") return text def get_sonic_yang_as_json(self): @@ -112,16 +132,139 @@ def validate_sonic_yang_config(self, sonic_yang_as_json): def validate_config_db_config(self, config_db_as_json): sy = self.create_sonic_yang_with_loaded_models() + # TODO: Move these validators to YANG models + supplemental_yang_validators = [self.validate_bgp_peer_group, + self.validate_lanes] + try: tmp_config_db_as_json = copy.deepcopy(config_db_as_json) sy.loadData(tmp_config_db_as_json) sy.validate_data_tree() - return True, None + + for supplemental_yang_validator in supplemental_yang_validators: + success, error = supplemental_yang_validator(config_db_as_json) + if not success: + return success, error except sonic_yang.SonicYangException as ex: return False, ex + return True, None + + def validate_field_operation(self, old_config, target_config): + """ + Some fields in ConfigDB are restricted and may not allow third-party addition, replacement, or removal. + Because YANG only validates state and not transitions, this method helps to JsonPatch operations/transitions for the specified fields. + """ + patch = jsonpatch.JsonPatch.from_diff(old_config, target_config) + + # illegal_operations_to_fields_map['remove'] yields a list of fields for which `remove` is an illegal operation + illegal_operations_to_fields_map = { + 'add':[], + 'replace': [], + 'remove': [ + '/PFC_WD/GLOBAL/POLL_INTERVAL', + '/PFC_WD/GLOBAL', + '/LOOPBACK_INTERFACE/Loopback0'] + } + for operation, field_list in illegal_operations_to_fields_map.items(): + for field in field_list: + if any(op['op'] == operation and field == op['path'] for op in patch): + raise IllegalPatchOperationError("Given patch operation is invalid. Operation: {} is illegal on field: {}".format(operation, field)) + + def _invoke_validating_function(cmd, jsonpatch_element): + # cmd is in the format as . + method_name = cmd.split(".")[-1] + module_name = ".".join(cmd.split(".")[0:-1]) + if module_name != "generic_config_updater.field_operation_validators" or "validator" not in method_name: + raise GenericConfigUpdaterError("Attempting to call invalid method {} in module {}. Module must be generic_config_updater.field_operation_validators, and method must be a defined validator".format(method_name, module_name)) + module = importlib.import_module(module_name, package=None) + method_to_call = getattr(module, method_name) + return method_to_call(jsonpatch_element) + + if os.path.exists(GCU_FIELD_OP_CONF_FILE): + with open(GCU_FIELD_OP_CONF_FILE, "r") as s: + gcu_field_operation_conf = json.load(s) + else: + raise GenericConfigUpdaterError("GCU field operation validators config file not found") + + for element in patch: + path = element["path"] + match = re.search(r'\/([^\/]+)(\/|$)', path) # This matches the table name in the path, eg if path if /PFC_WD/GLOBAL, the match would be PFC_WD + if match is not None: + table = match.group(1) + else: + raise GenericConfigUpdaterError("Invalid jsonpatch path: {}".format(path)) + validating_functions= set() + tables = gcu_field_operation_conf["tables"] + validating_functions.update(tables.get(table, {}).get("field_operation_validators", [])) + + for function in validating_functions: + if not _invoke_validating_function(function, element): + raise IllegalPatchOperationError("Modification of {} table is illegal- validating function {} returned False".format(table, function)) + + + def validate_lanes(self, config_db): + if "PORT" not in config_db: + return True, None + + ports = config_db["PORT"] + + # Validate each lane separately, make sure it is not empty, and is a number + port_to_lanes_map = {} + for port in ports: + attrs = ports[port] + if "lanes" in attrs: + lanes_str = attrs["lanes"] + lanes_with_whitespaces = lanes_str.split(",") + lanes = [lane.strip() for lane in lanes_with_whitespaces] + for lane in lanes: + if not lane: + return False, f"PORT '{port}' has an empty lane" + if not lane.isdigit(): + return False, f"PORT '{port}' has an invalid lane '{lane}'" + port_to_lanes_map[port] = lanes + + # Validate lanes are unique + # TODO: Move this attribute (platform with duplicated lanes in ports) to YANG models + dup_lanes_platforms = [ + 'x86_64-arista_7050cx3_32s', + 'x86_64-dellemc_s5232f_c3538-r0', + ] + metadata = config_db.get("DEVICE_METADATA", {}) + platform = metadata.get("localhost", {}).get("platform", None) + if platform not in dup_lanes_platforms: + existing = {} + for port in port_to_lanes_map: + lanes = port_to_lanes_map[port] + for lane in lanes: + if lane in existing: + return False, f"'{lane}' lane is used multiple times in PORT: {set([port, existing[lane]])}" + existing[lane] = port + return True, None + + def validate_bgp_peer_group(self, config_db): + if "BGP_PEER_RANGE" not in config_db: + return True, None + + visited = {} + table = config_db["BGP_PEER_RANGE"] + for peer_group_name in table: + peer_group = table[peer_group_name] + if "ip_range" not in peer_group: + continue + + # TODO: convert string to IpAddress object for better handling of IPs + # TODO: validate range intersection + ip_range = peer_group["ip_range"] + for ip in ip_range: + if ip in visited: + return False, f"{ip} is duplicated in BGP_PEER_RANGE: {set([peer_group_name, visited[ip]])}" + visited[ip] = peer_group_name + + return True, None + def crop_tables_without_yang(self, config_db_as_json): sy = self.create_sonic_yang_with_loaded_models() @@ -132,14 +275,14 @@ def crop_tables_without_yang(self, config_db_as_json): sy._cropConfigDB() return sy.jIn - + def get_empty_tables(self, config): empty_tables = [] for key in config.keys(): if not(config[key]): empty_tables.append(key) return empty_tables - + def remove_empty_tables(self, config): config_with_non_empty_tables = {} for table in config: @@ -160,8 +303,8 @@ def create_sonic_yang_with_loaded_models(self): class DryRunConfigWrapper(ConfigWrapper): # This class will simulate all read/write operations to ConfigDB on a virtual storage unit. - def __init__(self, initial_imitated_config_db = None): - super().__init__() + def __init__(self, initial_imitated_config_db=None, scope=multi_asic.DEFAULT_NAMESPACE): + super().__init__(scope=scope) self.logger = genericUpdaterLogging.get_logger(title="** DryRun", print_all_to_console=True) self.imitated_config_db = copy.deepcopy(initial_imitated_config_db) @@ -181,8 +324,9 @@ def _init_imitated_config_db_if_none(self): class PatchWrapper: - def __init__(self, config_wrapper=None): - self.config_wrapper = config_wrapper if config_wrapper is not None else ConfigWrapper() + def __init__(self, config_wrapper=None, scope=multi_asic.DEFAULT_NAMESPACE): + self.scope = scope + self.config_wrapper = config_wrapper if config_wrapper is not None else ConfigWrapper(self.scope) self.path_addressing = PathAddressing(self.config_wrapper) def validate_config_db_patch_has_yang_models(self, patch): @@ -375,7 +519,7 @@ def find_ref_paths(self, path, config): Finds the paths referencing any line under the given 'path' within the given 'config'. Example: path: /PORT - config: + config: { "VLAN_MEMBER": { "Vlan1000|Ethernet0": {}, @@ -520,10 +664,25 @@ def _get_xpath_tokens_from_list(self, model, token_index, path_tokens, config): if len(path_tokens)-1 == token_index: return xpath_tokens + type_1_list_model = self._get_type_1_list_model(model) + if type_1_list_model: + new_xpath_tokens = self._get_xpath_tokens_from_type_1_list(type_1_list_model, token_index+1, path_tokens, config[path_tokens[token_index]]) + xpath_tokens.extend(new_xpath_tokens) + return xpath_tokens + new_xpath_tokens = self._get_xpath_tokens_from_leaf(model, token_index+1, path_tokens,config[path_tokens[token_index]]) xpath_tokens.extend(new_xpath_tokens) return xpath_tokens + def _get_xpath_tokens_from_type_1_list(self, model, token_index, path_tokens, config): + type_1_list_name = model['@name'] + keyName = model['key']['@value'] + value = path_tokens[token_index] + keyToken = f"[{keyName}='{value}']" + itemToken = f"{type_1_list_name}{keyToken}" + + return [itemToken] + def _get_xpath_tokens_from_leaf(self, model, token_index, path_tokens, config): token = path_tokens[token_index] @@ -557,7 +716,7 @@ def _get_xpath_tokens_from_leaf(self, model, token_index, path_tokens, config): # /module-name:container/leaf-list[.='val'] # Source: Check examples in https://netopeer.liberouter.org/doc/libyang/master/html/howto_x_path.html return [f"{token}[.='{value}']"] - + # checking 'uses' statement if not isinstance(config[token], list): # leaf-list under uses is not supported yet in sonic_yang table = path_tokens[0] @@ -585,7 +744,7 @@ def _extractKey(self, tableKey, keys): def _get_list_model(self, model, token_index, path_tokens): parent_container_name = path_tokens[token_index] clist = model.get('list') - # Container contains a single list, just return it + # Container contains a single list, just return it # TODO: check if matching also by name is necessary if isinstance(clist, dict): return clist @@ -607,6 +766,15 @@ def _get_list_model(self, model, token_index, path_tokens): return None + def _get_type_1_list_model(self, model): + list_name = model['@name'] + if list_name not in sonic_yang_ext.Type_1_list_maps_model: + return None + + # Type 1 list is expected to have a single inner list model. + # No need to check if it is a dictionary of list models. + return model.get('list') + def convert_xpath_to_path(self, xpath, config, sy): """ Converts the given XPATH to JsonPatch path (i.e. JsonPointer). @@ -688,10 +856,66 @@ def _get_path_tokens_from_list(self, model, token_index, xpath_tokens, config): if next_token in key_dict: return path_tokens + type_1_list_model = self._get_type_1_list_model(model) + if type_1_list_model: + new_path_tokens = self._get_path_tokens_from_type_1_list(type_1_list_model, token_index+1, xpath_tokens, config[path_token]) + path_tokens.extend(new_path_tokens) + return path_tokens + new_path_tokens = self._get_path_tokens_from_leaf(model, token_index+1, xpath_tokens, config[path_token]) path_tokens.extend(new_path_tokens) return path_tokens + def _get_path_tokens_from_type_1_list(self, model, token_index, xpath_tokens, config): + type_1_inner_list_name = model['@name'] + + token = xpath_tokens[token_index] + list_tokens = token.split("[", 1) # split once on the first '[', first element will be the inner list name + inner_list_name = list_tokens[0] + + if type_1_inner_list_name != inner_list_name: + raise GenericConfigUpdaterError(f"Type 1 inner list name '{type_1_inner_list_name}' does match xpath inner list name '{inner_list_name}'.") + + key_dict = self._extract_key_dict(token) + + # If no keys specified return empty tokens, as we are already inside the correct table. + # Also note that the type 1 inner list name in SonicYang has no correspondence in ConfigDb and is ignored. + # Example where VLAN_MEMBER_LIST has no specific key/value: + # xpath: /sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP + # path: /DOT1P_TO_TC_MAP/Dot1p_to_tc_map1 + if not(key_dict): + return [] + + if len(key_dict) > 1: + raise GenericConfigUpdaterError(f"Type 1 inner list should have only 1 key in xpath, {len(key_dict)} specified. Key dictionary: {key_dict}") + + keyName = next(iter(key_dict.keys())) + value = key_dict[keyName] + + path_tokens = [value] + + # If this is the last xpath token, return the path tokens we have built so far, no need for futher checks + # Example: + # xpath: /sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP[dot1p='2'] + # path: /DOT1P_TO_TC_MAP/Dot1p_to_tc_map1/2 + if token_index+1 >= len(xpath_tokens): + return path_tokens + + # Checking if the next_token is actually a child leaf of the inner type 1 list, for which case + # just ignore the token, and return the already created ConfigDb path pointing to the whole object + # Example where the leaf specified is the key: + # xpath: /sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP[dot1p='2']/dot1p + # path: /DOT1P_TO_TC_MAP/Dot1p_to_tc_map1/2 + # Example where the leaf specified is not the key: + # xpath: /sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP[dot1p='2']/tc + # path: /DOT1P_TO_TC_MAP/Dot1p_to_tc_map1/2 + next_token = xpath_tokens[token_index+1] + leaf_model = self._get_model(model.get('leaf'), next_token) + if leaf_model: + return path_tokens + + raise GenericConfigUpdaterError(f"Type 1 inner list '{type_1_inner_list_name}' does not have a child leaf named '{next_token}'") + def _get_path_tokens_from_leaf(self, model, token_index, xpath_tokens, config): token = xpath_tokens[token_index] @@ -727,6 +951,19 @@ def _get_path_tokens_from_leaf(self, model, token_index, xpath_tokens, config): # leaf_list_name = match.group(1) leaf_list_value = match.group(1) list_config = config[leaf_list_name] + # Workaround for those fields who is defined as leaf-list in YANG model but have string value in config DB + # No need to lookup the item index in ConfigDb since the list is represented as a string, return path to string immediately + # Example: + # xpath: /sonic-buffer-port-egress-profile-list:sonic-buffer-port-egress-profile-list/BUFFER_PORT_EGRESS_PROFILE_LIST/BUFFER_PORT_EGRESS_PROFILE_LIST_LIST[port='Ethernet9']/profile_list[.='egress_lossy_profile'] + # path: /BUFFER_PORT_EGRESS_PROFILE_LIST/Ethernet9/profile_list + if isinstance(list_config, str): + return [leaf_list_name] + + if not isinstance(list_config, list): + raise ValueError(f"list_config is expected to be of type list or string. Found {type(list_config)}.\n " + \ + f"model: {model}\n token_index: {token_index}\n " + \ + f"xpath_tokens: {xpath_tokens}\n config: {config}") + list_idx = list_config.index(leaf_list_value) return [leaf_list_name, list_idx] diff --git a/generic_config_updater/patch_sorter.py b/generic_config_updater/patch_sorter.py index f23b347bd..528e3d515 100644 --- a/generic_config_updater/patch_sorter.py +++ b/generic_config_updater/patch_sorter.py @@ -399,10 +399,10 @@ def _get_paths_recursive(self, config, pattern_tokens, matching_tokens, idx, com if token == "*": matching_keys = config.keys() elif token.startswith("*|"): - suffix = token[2:] + suffix = token[1:] matching_keys = [key for key in config.keys() if key.endswith(suffix)] elif token.endswith("|*"): - prefix = token[:-2] + prefix = token[:-1] matching_keys = [key for key in config.keys() if key.startswith(prefix)] elif token in config: matching_keys = [token] @@ -544,6 +544,125 @@ def _get_default_value_from_settings(self, parent_path, field_name): return None +class CreateOnlyFilter: + """ + A filtering class for create-only fields. + """ + def __init__(self, path_addressing): + # TODO: create-only fields are hard-coded for now, it should be moved to YANG model + self.path_addressing = path_addressing + self.patterns = [ + ["PORT", "*", "lanes"], + ["LOOPBACK_INTERFACE", "*", "vrf_name"], + ["BGP_NEIGHBOR", "*", "holdtime"], + ["BGP_NEIGHBOR", "*", "keepalive"], + ["BGP_NEIGHBOR", "*", "name"], + ["BGP_NEIGHBOR", "*", "asn"], + ["BGP_NEIGHBOR", "*", "local_addr"], + ["BGP_NEIGHBOR", "*", "nhopself"], + ["BGP_NEIGHBOR", "*", "rrclient"], + ["BGP_PEER_RANGE", "*", "*"], + ["BGP_MONITORS", "*", "holdtime"], + ["BGP_MONITORS", "*", "keepalive"], + ["BGP_MONITORS", "*", "name"], + ["BGP_MONITORS", "*", "asn"], + ["BGP_MONITORS", "*", "local_addr"], + ["BGP_MONITORS", "*", "nhopself"], + ["BGP_MONITORS", "*", "rrclient"], + ["MIRROR_SESSION", "*", "*"], + ] + + def get_filter(self): + return JsonPointerFilter(self.patterns, + self.path_addressing) + +class RemoveCreateOnlyDependencyMoveValidator: + """ + A class to validate all dependencies of create-only fields have been removed before + modifying the create-only fields. + """ + def __init__(self, path_addressing): + self.path_addressing = path_addressing + self.create_only_filter = CreateOnlyFilter(path_addressing).get_filter() + + def validate(self, move, diff): + current_config = diff.current_config + target_config = diff.target_config # Final config after applying whole patch + + processed_tables = set() + for path in self.create_only_filter.get_paths(current_config): + tokens = self.path_addressing.get_path_tokens(path) + table_to_check = tokens[0] + + if table_to_check in processed_tables: + continue + else: + processed_tables.add(table_to_check) + + if table_to_check not in current_config: + continue + + current_members = current_config[table_to_check] + if not current_members: + continue + + if table_to_check not in target_config: + continue + + target_members = target_config[table_to_check] + if not target_members: + continue + + simulated_config = move.apply(current_config) # Config after applying just this move + + for member_name in current_members: + if member_name not in target_members: + continue + + if not self._validate_member(tokens, member_name, + current_config, target_config, simulated_config): + return False + + return True + + def _validate_member(self, tokens, member_name, current_config, target_config, simulated_config): + table_to_check, create_only_field = tokens[0], tokens[-1] + + current_field = self._get_create_only_field( + current_config, table_to_check, member_name, create_only_field) + target_field = self._get_create_only_field( + target_config, table_to_check, member_name, create_only_field) + + if current_field == target_field: + return True + + simulated_member = self.path_addressing.get_from_path( + simulated_config, f"/{table_to_check}/{member_name}") + + if simulated_member is None: + return True + + if table_to_check == "PORT": + current_admin_status = self.path_addressing.get_from_path( + current_config, f"/{table_to_check}/{member_name}/admin_status" + ) + simulated_admin_status = self.path_addressing.get_from_path( + simulated_config, f"/{table_to_check}/{member_name}/admin_status" + ) + if current_admin_status != simulated_admin_status and current_admin_status != "up": + return False + + member_path = f"/{table_to_check}/{member_name}" + for ref_path in self.path_addressing.find_ref_paths(member_path, simulated_config): + if not self.path_addressing.has_path(current_config, ref_path): + return False + + return True + + def _get_create_only_field(self, config, table_to_check, + member_name, create_only_field): + return config[table_to_check][member_name].get(create_only_field, None) + class DeleteWholeConfigMoveValidator: """ A class to validate not deleting whole config as it is not supported by JsonPatch lib. @@ -565,30 +684,6 @@ def validate(self, move, diff): is_valid, error = self.config_wrapper.validate_config_db_config(simulated_config) return is_valid -# TODO: Add this validation to YANG models instead -class UniqueLanesMoveValidator: - """ - A class to validate lanes and any port are unique between all ports. - """ - def validate(self, move, diff): - simulated_config = move.apply(diff.current_config) - - if "PORT" not in simulated_config: - return True - - ports = simulated_config["PORT"] - existing = set() - for port in ports: - attrs = ports[port] - if "lanes" in attrs: - lanes_str = attrs["lanes"] - lanes = lanes_str.split(", ") - for lane in lanes: - if lane in existing: - return False - existing.add(lane) - return True - class CreateOnlyMoveValidator: """ A class to validate create-only fields are only created, but never modified/updated. In other words: @@ -600,27 +695,7 @@ def __init__(self, path_addressing): self.path_addressing = path_addressing # TODO: create-only fields are hard-coded for now, it should be moved to YANG models - self.create_only_filter = JsonPointerFilter([ - ["PORT", "*", "lanes"], - ["LOOPBACK_INTERFACE", "*", "vrf_name"], - ["BGP_NEIGHBOR", "*", "holdtime"], - ["BGP_NEIGHBOR", "*", "keepalive"], - ["BGP_NEIGHBOR", "*", "name"], - ["BGP_NEIGHBOR", "*", "asn"], - ["BGP_NEIGHBOR", "*", "local_addr"], - ["BGP_NEIGHBOR", "*", "nhopself"], - ["BGP_NEIGHBOR", "*", "rrclient"], - ["BGP_PEER_RANGE", "*", "*"], - ["BGP_MONITORS", "*", "holdtime"], - ["BGP_MONITORS", "*", "keepalive"], - ["BGP_MONITORS", "*", "name"], - ["BGP_MONITORS", "*", "asn"], - ["BGP_MONITORS", "*", "local_addr"], - ["BGP_MONITORS", "*", "nhopself"], - ["BGP_MONITORS", "*", "rrclient"], - ["MIRROR_SESSION", "*", "*"], - ], - path_addressing) + self.create_only_filter = CreateOnlyFilter(path_addressing).get_filter() def validate(self, move, diff): simulated_config = move.apply(diff.current_config) @@ -945,6 +1020,8 @@ def validate(self, move, diff): for required_path, required_value in data[path]: current_value = self.identifier.get_value_or_default(current_config, required_path) simulated_value = self.identifier.get_value_or_default(simulated_config, required_path) + if simulated_value is None: # Simulated config does not have this value at all. + continue if current_value != simulated_value and simulated_value != required_value: return False @@ -1024,6 +1101,65 @@ def generate(self, diff): for move in single_run_generator.generate(): yield move +class RemoveCreateOnlyDependencyMoveGenerator: + """ + A class to generate the create-only fields' dependency removing moves + """ + def __init__(self, path_addressing): + self.path_addressing = path_addressing + self.create_only_filter = CreateOnlyFilter(path_addressing).get_filter() + + def generate(self, diff): + current_config = diff.current_config + target_config = diff.target_config # Final config after applying whole patch + + processed_tables = set() + for path in self.create_only_filter.get_paths(current_config): + tokens = self.path_addressing.get_path_tokens(path) + table_to_check, create_only_field = tokens[0], tokens[-1] + + if table_to_check in processed_tables: + continue + else: + processed_tables.add(table_to_check) + + if table_to_check not in current_config: + continue + + current_members = current_config[table_to_check] + if not current_members: + continue + + if table_to_check not in target_config: + continue + + target_members = target_config[table_to_check] + if not target_members: + continue + + for member_name in current_members: + if member_name not in target_members: + continue + + current_field = self._get_create_only_field( + current_config, table_to_check, member_name, create_only_field) + target_field = self._get_create_only_field( + target_config, table_to_check, member_name, create_only_field) + + if current_field == target_field: + continue + + member_path = f"/{table_to_check}/{member_name}" + + for ref_path in self.path_addressing.find_ref_paths(member_path, current_config): + yield JsonMove(diff, OperationType.REMOVE, + self.path_addressing.get_path_tokens(ref_path)) + + def _get_create_only_field(self, config, table_to_check, + member_name, create_only_field): + return config[table_to_check][member_name].get(create_only_field, None) + + class SingleRunLowLevelMoveGenerator: """ A class that can only run once to assist LowLevelMoveGenerator with generating the moves. @@ -1295,6 +1431,8 @@ def extend(self, move, diff): for required_path, required_value in data[path]: current_value = self.identifier.get_value_or_default(current_config, required_path) simulated_value = self.identifier.get_value_or_default(simulated_config, required_path) + if simulated_value is None: # Simulated config does not have this value at all. + continue if current_value != simulated_value and simulated_value != required_value: flip_path_value_tuples.add((required_path, required_value)) @@ -1497,7 +1635,8 @@ def __init__(self, operation_wrapper, config_wrapper, path_addressing): self.path_addressing = path_addressing def create(self, algorithm=Algorithm.DFS): - move_generators = [LowLevelMoveGenerator(self.path_addressing)] + move_generators = [RemoveCreateOnlyDependencyMoveGenerator(self.path_addressing), + LowLevelMoveGenerator(self.path_addressing)] # TODO: Enable TableLevelMoveGenerator once it is confirmed whole table can be updated at the same time move_non_extendable_generators = [KeyLevelMoveGenerator()] move_extenders = [RequiredValueMoveExtender(self.path_addressing, self.operation_wrapper), @@ -1507,9 +1646,9 @@ def create(self, algorithm=Algorithm.DFS): move_validators = [DeleteWholeConfigMoveValidator(), FullConfigMoveValidator(self.config_wrapper), NoDependencyMoveValidator(self.path_addressing, self.config_wrapper), - UniqueLanesMoveValidator(), CreateOnlyMoveValidator(self.path_addressing), RequiredValueMoveValidator(self.path_addressing), + RemoveCreateOnlyDependencyMoveValidator(self.path_addressing), NoEmptyTableMoveValidator(self.path_addressing)] move_wrapper = MoveWrapper(move_generators, move_non_extendable_generators, move_extenders, move_validators) diff --git a/generic_config_updater/services_validator.py b/generic_config_updater/services_validator.py index b059677c5..497cb4ee7 100644 --- a/generic_config_updater/services_validator.py +++ b/generic_config_updater/services_validator.py @@ -98,3 +98,27 @@ def caclmgrd_validator(old_config, upd_config, keys): # No update to ACL_RULE. return True + +def ntp_validator(old_config, upd_config, keys): + return _service_restart("ntp-config") + +def vlanintf_validator(old_config, upd_config, keys): + old_vlan_intf = old_config.get("VLAN_INTERFACE", {}) + upd_vlan_intf = upd_config.get("VLAN_INTERFACE", {}) + + # Get the tuple with format (iface, iface_ip) then check deleted tuple + # Example: + # old_keys = [("Vlan1000", "192.168.0.1")] + # upd_keys = [("Vlan1000", "192.168.0.2")] + old_keys = [ tuple(key.split("|")) + for key in old_vlan_intf if len(key.split("|")) == 2 ] + upd_keys = [ tuple(key.split("|")) + for key in upd_vlan_intf if len(key.split("|")) == 2 ] + + deleted_keys = list(set(old_keys) - set(upd_keys)) + for key in deleted_keys: + iface, iface_ip = key + rc = os.system(f"ip neigh flush dev {iface} {iface_ip}") + if rc: + return False + return True diff --git a/pcieutil/main.py b/pcieutil/main.py index ad6a1ebfa..0fef19359 100644 --- a/pcieutil/main.py +++ b/pcieutil/main.py @@ -54,7 +54,7 @@ def load_platform_pcieutil(): from sonic_platform.pcie import Pcie platform_pcieutil = Pcie(platform_path) except ImportError as e: - log.log_warning("Failed to load platform Pcie module. Error : {}, fallback to load Pcie common utility.".format(str(e)), True) + log.log_warning("Failed to load platform Pcie module. Warning : {}, fallback to load Pcie common utility.".format(str(e))) try: from sonic_platform_base.sonic_pcie.pcie_common import PcieUtil platform_pcieutil = PcieUtil(platform_path) diff --git a/pfcwd/main.py b/pfcwd/main.py index 4d3e73fb7..76fa31b4f 100644 --- a/pfcwd/main.py +++ b/pfcwd/main.py @@ -9,6 +9,7 @@ from tabulate import tabulate from utilities_common import multi_asic as multi_asic_util from utilities_common import constants +from utilities_common.general import load_db_config from sonic_py_common import logger SYSLOG_IDENTIFIER = "config" @@ -62,7 +63,7 @@ @click.group() def cli(): """ SONiC PFC Watchdog """ - + load_db_config() def get_all_queues(db, namespace=None, display=constants.DISPLAY_ALL): queue_names = db.get_all(db.COUNTERS_DB, 'COUNTERS_QUEUE_NAME_MAP') diff --git a/rcli/__init__.py b/rcli/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/rcli/linecard.py b/rcli/linecard.py new file mode 100644 index 000000000..73c13a73e --- /dev/null +++ b/rcli/linecard.py @@ -0,0 +1,150 @@ +import click +import os +import paramiko +import sys +import select +import socket +import sys +import termios +import tty + +from .utils import get_linecard_ip +from paramiko.py3compat import u +from paramiko import Channel + +EMPTY_OUTPUTS = ['', '\x1b[?2004l\r'] + +class Linecard: + + def __init__(self, linecard_name, username, password): + """ + Initialize Linecard object and store credentials, connection, and channel + + :param linecard_name: The name of the linecard you want to connect to + :param username: The username to use to connect to the linecard + :param password: The linecard password. If password not provided, it + will prompt the user for it + :param use_ssh_keys: Whether or not to use SSH keys to authenticate. + """ + self.ip = get_linecard_ip(linecard_name) + + if not self.ip: + sys.exit(1) + + self.linecard_name = linecard_name + self.username = username + self.password = password + + self.connection = self._connect() + + + def _connect(self): + connection = paramiko.SSHClient() + # if ip address not in known_hosts, ignore known_hosts error + connection.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + try: + connection.connect(self.ip, username=self.username, password=self.password) + except: + connection = None + return connection + + def _get_password(self): + """ + Prompts the user for a password, and returns the password + + :param username: The username that we want to get the password for + :type username: str + :return: The password for the username. + """ + + return getpass( + "Password for username '{}': ".format(self.username), + # Pass in click stdout stream - this is similar to using click.echo + stream=click.get_text_stream('stdout') + ) + + def _set_tty_params(self): + tty.setraw(sys.stdin.fileno()) + tty.setcbreak(sys.stdin.fileno()) + + def _is_data_to_read(self, read): + if self.channel in read: + return True + return False + + def _is_data_to_write(self, read): + if sys.stdin in read: + return True + return False + + def _write_to_terminal(self, data): + # Write channel output to terminal + sys.stdout.write(data) + sys.stdout.flush() + + def _start_interactive_shell(self): + oldtty = termios.tcgetattr(sys.stdin) + try: + self._set_tty_params() + self.channel.settimeout(0.0) + + while True: + #Continuously wait for commands and execute them + read, write, ex = select.select([self.channel, sys.stdin], [], []) + if self._is_data_to_read(read): + try: + # Get output from channel + x = u(self.channel.recv(1024)) + if len(x) == 0: + # logout message will be displayed + break + self._write_to_terminal(x) + except socket.timeout as e: + click.echo("Connection timed out") + break + if self._is_data_to_write(read): + # If we are able to send input, get the input from stdin + x = sys.stdin.read(1) + if len(x) == 0: + break + # Send the input to the channel + self.channel.send(x) + finally: + # Now that the channel has been exited, return to the previously-saved old tty + termios.tcsetattr(sys.stdin, termios.TCSADRAIN, oldtty) + pass + + + def start_shell(self) -> None: + """ + Opens a session, gets a pseudo-terminal, invokes a shell, and then + attaches the host shell to the remote shell. + """ + # Create shell session + self.channel = self.connection.get_transport().open_session() + self.channel.get_pty() + self.channel.invoke_shell() + # Use Paramiko Interactive script to connect to the shell + self._start_interactive_shell() + # After user exits interactive shell, close the connection + self.connection.close() + + + def execute_cmd(self, command) -> str: + """ + Takes a command as an argument, executes it on the remote shell, and returns the output + + :param command: The command to execute on the remote shell + :return: The output of the command. + """ + # Execute the command and gather errors and output + _, stdout, stderr = self.connection.exec_command(command + "\n") + output = stdout.read().decode('utf-8') + + if stderr: + # Error was present, add message to output + output += stderr.read().decode('utf-8') + + # Close connection and return output + self.connection.close() + return output diff --git a/rcli/rexec.py b/rcli/rexec.py new file mode 100644 index 000000000..8831d5585 --- /dev/null +++ b/rcli/rexec.py @@ -0,0 +1,51 @@ +import os +import click +import paramiko +import sys + +from .linecard import Linecard +from rcli import utils as rcli_utils +from sonic_py_common import device_info + +@click.command() +@click.argument('linecard_names', nargs=-1, type=str, required=True) +@click.option('-c', '--command', type=str, required=True) +@click.option('-u', '--username', type=str, default=None, help="Username for login") +def cli(linecard_names, command, username): + """ + Executes a command on one or many linecards + + :param linecard_names: A list of linecard names to execute the command on, + use `all` to execute on all linecards. + :param command: The command to execute on the linecard(s) + :param username: The username to use to login to the linecard(s) + """ + if not device_info.is_chassis(): + click.echo("This commmand is only supported Chassis") + sys.exit(1) + + if not username: + username = os.getlogin() + password = rcli_utils.get_password(username) + + if list(linecard_names) == ["all"]: + # Get all linecard names using autocompletion helper + linecard_names = rcli_utils.get_all_linecards(None, None, "") + + linecards = [] + # Iterate through each linecard, check if the login was successful + for linecard_name in linecard_names: + linecard = Linecard(linecard_name, username, password) + if not linecard.connection: + click.echo(f"Failed to connect to {linecard_name} with username {username}") + sys.exit(1) + linecards.append(linecard) + + for linecard in linecards: + if linecard.connection: + click.echo(f"======== {linecard.linecard_name} output: ========") + click.echo(linecard.execute_cmd(command)) + + +if __name__ == "__main__": + cli(prog_name='rexec') diff --git a/rcli/rshell.py b/rcli/rshell.py new file mode 100644 index 000000000..bac02d42d --- /dev/null +++ b/rcli/rshell.py @@ -0,0 +1,42 @@ +import os +import click +import paramiko +import sys + +from .linecard import Linecard +from sonic_py_common import device_info +from rcli import utils as rcli_utils + + +@click.command() +@click.argument('linecard_name', type=str, autocompletion=rcli_utils.get_all_linecards) +@click.option('-u', '--username', type=str, default=None, help="Username for login") +def cli(linecard_name, username): + """ + Open interactive shell for one linecard + + :param linecard_name: The name of the linecard to connect to + """ + if not device_info.is_chassis(): + click.echo("This commmand is only supported Chassis") + sys.exit(1) + + if not username: + username = os.getlogin() + password = rcli_utils.get_password(username) + + try: + linecard = Linecard(linecard_name, username, password) + if linecard.connection: + click.echo(f"Connecting to {linecard.linecard_name}") + # If connection was created, connection exists. + # Otherwise, user will see an error message. + linecard.start_shell() + click.echo("Connection Closed") + except paramiko.ssh_exception.AuthenticationException: + click.echo( + f"Login failed on '{linecard.linecard_name}' with username '{linecard.username}'") + + +if __name__=="__main__": + cli(prog_name='rshell') diff --git a/rcli/utils.py b/rcli/utils.py new file mode 100644 index 000000000..510e36058 --- /dev/null +++ b/rcli/utils.py @@ -0,0 +1,143 @@ +import click +from getpass import getpass +import os +import sys + +from swsscommon.swsscommon import SonicV2Connector + +CHASSIS_MODULE_INFO_TABLE = 'CHASSIS_MODULE_TABLE' +CHASSIS_MODULE_INFO_KEY_TEMPLATE = 'CHASSIS_MODULE {}' +CHASSIS_MODULE_INFO_DESC_FIELD = 'desc' +CHASSIS_MODULE_INFO_SLOT_FIELD = 'slot' +CHASSIS_MODULE_INFO_OPERSTATUS_FIELD = 'oper_status' +CHASSIS_MODULE_INFO_ADMINSTATUS_FIELD = 'admin_status' + +CHASSIS_MIDPLANE_INFO_TABLE = 'CHASSIS_MIDPLANE_TABLE' +CHASSIS_MIDPLANE_INFO_IP_FIELD = 'ip_address' +CHASSIS_MIDPLANE_INFO_ACCESS_FIELD = 'access' + +CHASSIS_MODULE_HOSTNAME_TABLE = 'CHASSIS_MODULE_HOSTNAME_TABLE' +CHASSIS_MODULE_HOSTNAME = 'module_hostname' + +def connect_to_chassis_state_db(): + chassis_state_db = SonicV2Connector(host="127.0.0.1") + chassis_state_db.connect(chassis_state_db.CHASSIS_STATE_DB) + return chassis_state_db + + +def connect_state_db(): + state_db = SonicV2Connector(host="127.0.0.1") + state_db.connect(state_db.STATE_DB) + return state_db + + +def get_linecard_module_name_from_hostname(linecard_name: str): + + chassis_state_db = connect_to_chassis_state_db() + keys = chassis_state_db.keys(chassis_state_db.CHASSIS_STATE_DB , '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, '*')) + for key in keys: + module_name = key.split('|')[1] + hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, key, CHASSIS_MODULE_HOSTNAME) + if hostname.replace('-', '').lower() == linecard_name.replace('-', '').lower(): + return module_name + + return None + +def get_linecard_ip(linecard_name: str): + """ + Given a linecard name, lookup its IP address in the midplane table + :param linecard_name: The name of the linecard you want to connect to + :type linecard_name: str + :return: IP address of the linecard + """ + # Adapted from `show chassis modules midplane-status` command logic: + # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py + + # if the user passes linecard hostname, then try to get the module name for that linecard + module_name = get_linecard_module_name_from_hostname(linecard_name) + # if the module name cannot be found from host, assume the user has passed module name + if module_name is None: + module_name = linecard_name + module_ip, module_access = get_module_ip_and_access_from_state_db(module_name) + + if not module_ip: + click.echo('Linecard {} not found'.format(linecard_name)) + return None + + if module_access != 'True': + click.echo('Linecard {} not accessible'.format(linecard_name)) + return None + return module_ip + +def get_module_ip_and_access_from_state_db(module_name): + state_db = connect_state_db() + data_dict = state_db.get_all( + state_db.STATE_DB, '{}|{}'.format(CHASSIS_MIDPLANE_INFO_TABLE,module_name )) + if data_dict is None: + return None, None + + linecard_ip = data_dict.get(CHASSIS_MIDPLANE_INFO_IP_FIELD, None) + access = data_dict.get(CHASSIS_MIDPLANE_INFO_ACCESS_FIELD, None) + + return linecard_ip, access + + +def get_all_linecards(ctx, args, incomplete) -> list: + """ + Return a list of all accessible linecard names. This function is used to + autocomplete linecard names in the CLI. + + :param ctx: The Click context object that is passed to the command function + :param args: The arguments passed to the Click command + :param incomplete: The string that the user has typed so far + :return: A list of all accessible linecard names. + """ + # Adapted from `show chassis modules midplane-status` command logic: + # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py + + chassis_state_db = connect_to_chassis_state_db() + state_db = connect_state_db() + + linecards = [] + keys = state_db.keys(state_db.STATE_DB,'{}|*'.format(CHASSIS_MIDPLANE_INFO_TABLE)) + for key in keys: + key_list = key.split('|') + if len(key_list) != 2: # error data in DB, log it and ignore + click.echo('Warn: Invalid Key {} in {} table'.format(key, CHASSIS_MIDPLANE_INFO_TABLE )) + continue + module_name = key_list[1] + linecard_ip, access = get_module_ip_and_access_from_state_db(module_name) + if linecard_ip is None: + continue + + if access != "True": + continue + + # get the hostname for this module + hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, module_name), CHASSIS_MODULE_HOSTNAME) + if hostname: + linecards.append(hostname) + else: + linecards.append(module_name) + + # Return a list of all matched linecards + return [lc for lc in linecards if incomplete in lc] + + +def get_password(username=None): + """ + Prompts the user for a password, and returns the password + + :param username: The username that we want to get the password for + :type username: str + :return: The password for the username. + """ + + if username is None: + username = os.getlogin() + + return getpass( + "Password for username '{}': ".format(username), + # Pass in click stdout stream - this is similar to using click.echo + stream=click.get_text_stream('stdout') + ) diff --git a/scripts/aclshow b/scripts/aclshow index db0cc40dd..db922a6cc 100755 --- a/scripts/aclshow +++ b/scripts/aclshow @@ -20,15 +20,13 @@ optional arguments: import argparse import json import os -from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector import sys +from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector +from utilities_common.cli import UserCache + from tabulate import tabulate -### temp file to save counter positions when doing clear counter action. -### if we could have a SAI command to clear counters will be better, so no need to maintain -### counters in temp loaction for clear conter action -COUNTER_POSITION = '/tmp/.counters_acl.p' COUNTERS = "COUNTERS" ACL_COUNTER_RULE_MAP = "ACL_COUNTER_RULE_MAP" @@ -38,6 +36,9 @@ ACL_HEADER = ["RULE NAME", "TABLE NAME", "PRIO", "PACKETS COUNT", "BYTES COUNT"] COUNTER_PACKETS_ATTR = "SAI_ACL_COUNTER_ATTR_PACKETS" COUNTER_BYTES_ATTR = "SAI_ACL_COUNTER_ATTR_BYTES" +USER_CACHE = UserCache() +COUNTERS_CACHE_DIR = USER_CACHE.get_directory() +COUNTERS_CACHE = os.path.join(COUNTERS_CACHE_DIR, 'aclstat') class AclStat(object): """ @@ -78,9 +79,9 @@ class AclStat(object): res[e['key'][0], e['key'][1]] = e['value'] return res - if os.path.isfile(COUNTER_POSITION): + if os.path.isfile(COUNTERS_CACHE): try: - with open(COUNTER_POSITION) as fp: + with open(COUNTERS_CACHE) as fp: self.saved_acl_counters = remap_keys(json.load(fp)) except Exception: pass @@ -207,7 +208,7 @@ class AclStat(object): def remap_keys(dict): return [{'key': k, 'value': v} for k, v in dict.items()] - with open(COUNTER_POSITION, 'w') as fp: + with open(COUNTERS_CACHE, 'w') as fp: json.dump(remap_keys(self.acl_counters), fp) def main(): diff --git a/scripts/coredump_gen_handler.py b/scripts/coredump_gen_handler.py index 03ba2de89..55dd1ee64 100644 --- a/scripts/coredump_gen_handler.py +++ b/scripts/coredump_gen_handler.py @@ -5,18 +5,11 @@ For more info, refer to the Event Driven TechSupport & CoreDump Mgmt HLD """ import os -import time import argparse import syslog -import re from swsscommon.swsscommon import SonicV2Connector from utilities_common.auto_techsupport_helper import * -# Explicity Pass this to the subprocess invoking techsupport -ENV_VAR = os.environ -PATH_PREV = ENV_VAR["PATH"] if "PATH" in ENV_VAR else "" -ENV_VAR["PATH"] = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:" + PATH_PREV - def handle_coredump_cleanup(dump_name, db): _, num_bytes = get_stats(os.path.join(CORE_DUMP_DIR, CORE_DUMP_PTRN)) @@ -49,8 +42,6 @@ def __init__(self, core_name, container_name, db): self.core_name = core_name self.container = container_name self.db = db - self.proc_mp = {} - self.core_ts_map = {} def handle_core_dump_creation_event(self): if self.db.get(CFG_DB, AUTO_TS, CFG_STATE) != "enabled": @@ -66,112 +57,8 @@ def handle_core_dump_creation_event(self): syslog.syslog(syslog.LOG_NOTICE, msg.format(self.container, self.core_name)) return - global_cooloff = self.db.get(CFG_DB, AUTO_TS, COOLOFF) - container_cooloff = self.db.get(CFG_DB, FEATURE_KEY, COOLOFF) - - try: - global_cooloff = float(global_cooloff) - except ValueError: - global_cooloff = 0.0 - - try: - container_cooloff = float(container_cooloff) - except ValueError: - container_cooloff = 0.0 - - cooloff_passed = self.verify_rate_limit_intervals(global_cooloff, container_cooloff) - if cooloff_passed: - since_cfg = self.get_since_arg() - new_file = self.invoke_ts_cmd(since_cfg) - if new_file: - self.write_to_state_db(int(time.time()), new_file) - - def write_to_state_db(self, timestamp, ts_dump): - name = strip_ts_ext(ts_dump) - key = TS_MAP + "|" + name - self.db.set(STATE_DB, key, CORE_DUMP, self.core_name) - self.db.set(STATE_DB, key, TIMESTAMP, str(timestamp)) - self.db.set(STATE_DB, key, CONTAINER, self.container) - - def get_since_arg(self): - since_cfg = self.db.get(CFG_DB, AUTO_TS, CFG_SINCE) - if not since_cfg: - return SINCE_DEFAULT - rc, _, stderr = subprocess_exec(["date", "--date={}".format(since_cfg)], env=ENV_VAR) - if rc == 0: - return since_cfg - return SINCE_DEFAULT - - def parse_ts_dump_name(self, ts_stdout): - """ Figure out the ts_dump name from the techsupport stdout """ - matches = re.findall(TS_PTRN, ts_stdout) - if matches: - return matches[-1] - syslog.syslog(syslog.LOG_ERR, "stdout of the 'show techsupport' cmd doesn't have the dump name") - return "" - - def invoke_ts_cmd(self, since_cfg, num_retry=0): - cmd_opts = ["show", "techsupport", "--silent", "--since", since_cfg] - cmd = " ".join(cmd_opts) - rc, stdout, stderr = subprocess_exec(cmd_opts, env=ENV_VAR) - new_dump = "" - if rc == EXT_LOCKFAIL: - syslog.syslog(syslog.LOG_NOTICE, "Another instance of techsupport running, aborting this. stderr: {}".format(stderr)) - elif rc == EXT_RETRY: - if num_retry <= MAX_RETRY_LIMIT: - return self.invoke_ts_cmd(since_cfg, num_retry+1) - else: - syslog.syslog(syslog.LOG_ERR, "MAX_RETRY_LIMIT for show techsupport invocation exceeded, stderr: {}".format(stderr)) - elif rc != EXT_SUCCESS: - syslog.syslog(syslog.LOG_ERR, "show techsupport failed with exit code {}, stderr: {}".format(rc, stderr)) - else: # EXT_SUCCESS - new_dump = self.parse_ts_dump_name(stdout) # Parse the dump name - if not new_dump: - syslog.syslog(syslog.LOG_ERR, "{} was run, but no techsupport dump is found".format(cmd)) - else: - syslog.syslog(syslog.LOG_INFO, "{} is successful, {} is created".format(cmd, new_dump)) - return new_dump - - def verify_rate_limit_intervals(self, global_cooloff, container_cooloff): - """Verify both the global and per-proc rate_limit_intervals have passed""" - curr_ts_list = get_ts_dumps(True) - if global_cooloff and curr_ts_list: - last_ts_dump_creation = os.path.getmtime(curr_ts_list[-1]) - if time.time() - last_ts_dump_creation < global_cooloff: - msg = "Global rate_limit_interval period has not passed. Techsupport Invocation is skipped. Core: {}" - syslog.syslog(syslog.LOG_INFO, msg.format(self.core_name)) - return False - - self.parse_ts_map() - if container_cooloff and self.container in self.core_ts_map: - last_creation_time = self.core_ts_map[self.container][0][0] - if time.time() - last_creation_time < container_cooloff: - msg = "Per Container rate_limit_interval for {} has not passed. Techsupport Invocation is skipped. Core: {}" - syslog.syslog(syslog.LOG_INFO, msg.format(self.container, self.core_name)) - return False - return True - - def parse_ts_map(self): - """Create proc_name, ts_dump & creation_time map""" - ts_keys = self.db.keys(STATE_DB, TS_MAP+"*") - if not ts_keys: - return - for ts_key in ts_keys: - data = self.db.get_all(STATE_DB, ts_key) - if not data: - continue - container_name = data.get(CONTAINER, "") - creation_time = data.get(TIMESTAMP, "") - try: - creation_time = int(creation_time) - except Exception: - continue # if the creation time is invalid, skip the entry - ts_dump = ts_key.split("|")[-1] - if container_name and container_name not in self.core_ts_map: - self.core_ts_map[container_name] = [] - self.core_ts_map[container_name].append((int(creation_time), ts_dump)) - for container_name in self.core_ts_map: - self.core_ts_map[container_name].sort() + invoke_ts_command_rate_limited(self.db, EVENT_TYPE_CORE, {CORE_DUMP: self.core_name}, self.container) + def main(): parser = argparse.ArgumentParser(description='Auto Techsupport Invocation and CoreDump Mgmt Script') diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index e41bef133..b6ae5a7e6 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -8,9 +8,12 @@ import re from sonic_py_common import device_info, logger +from swsssdk import ConfigDBConnector, SonicDBConfig from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector, SonicDBConfig +from minigraph import parse_xml INIT_CFG_FILE = '/etc/sonic/init_cfg.json' +MINIGRAPH_FILE = '/etc/sonic/minigraph.xml' # mock the redis for unit test purposes # try: @@ -21,6 +24,7 @@ sys.path.insert(0, modules_path) sys.path.insert(0, tests_path) INIT_CFG_FILE = os.path.join(mocked_db_path, "init_cfg.json") + MINIGRAPH_FILE = os.path.join(mocked_db_path, "minigraph.xml") except KeyError: pass @@ -44,12 +48,22 @@ def __init__(self, namespace, socket=None): none-zero values. build: sequentially increase within a minor version domain. """ - self.CURRENT_VERSION = 'version_2_0_5' + self.CURRENT_VERSION = 'version_3_0_7' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' self.TABLE_FIELD = 'VERSION' + # load config data from minigraph to get the default/hardcoded values from minigraph.py + # this is to avoid duplicating the hardcoded these values in db_migrator + self.minigraph_data = None + try: + if os.path.isfile(MINIGRAPH_FILE): + self.minigraph_data = parse_xml(MINIGRAPH_FILE) + except Exception as e: + log.log_error('Caught exception while trying to parse minigraph: ' + str(e)) + pass + db_kwargs = {} if socket: db_kwargs['unix_socket_path'] = socket @@ -71,11 +85,14 @@ def __init__(self, namespace, socket=None): self.stateDB.connect(self.stateDB.STATE_DB) version_info = device_info.get_sonic_version_info() - asic_type = version_info.get('asic_type') - self.asic_type = asic_type + self.asic_type = version_info.get('asic_type') + if not self.asic_type: + log.log_error("ASIC type information not obtained. DB migration will not be reliable") self.hwsku = device_info.get_hwsku() + if not self.hwsku: + log.log_error("HWSKU information not obtained. DB migration will not be reliable") - if asic_type == "mellanox": + if self.asic_type == "mellanox": from mellanox_buffer_migrator import MellanoxBufferMigrator self.mellanox_buffer_migrator = MellanoxBufferMigrator(self.configDB, self.appDB, self.stateDB) @@ -162,7 +179,7 @@ def migrate_mgmt_ports_on_s6100(self): self.appDB.set(self.appDB.APPL_DB, 'PORT_TABLE:PortConfigDone', 'count', str(total_count)) log.log_notice("Port count updated from {} to : {}".format(portCount, self.appDB.get(self.appDB.APPL_DB, 'PORT_TABLE:PortConfigDone', 'count'))) return True - + def migrate_intf_table(self): ''' Migrate all data from existing INTF table in APP DB during warmboot with IP Prefix @@ -173,22 +190,39 @@ def migrate_intf_table(self): if self.appDB is None: return - data = self.appDB.keys(self.appDB.APPL_DB, "INTF_TABLE:*") - - if data is None: + # Get Lo interface corresponding to IP(v4/v6) address from CONFIG_DB. + configdb_data = self.configDB.get_keys('LOOPBACK_INTERFACE') + lo_addr_to_int = dict() + for int_data in configdb_data: + if type(int_data) == tuple and len(int_data) > 1: + intf_name = int_data[0] + intf_addr = int_data[1] + lo_addr_to_int.update({intf_addr: intf_name}) + + lo_data = self.appDB.keys(self.appDB.APPL_DB, "INTF_TABLE:*") + if lo_data is None: return if_db = [] - for key in data: - if_name = key.split(":")[1] - if if_name == "lo": - self.appDB.delete(self.appDB.APPL_DB, key) - key = key.replace(if_name, "Loopback0") - log.log_info('Migrating lo entry to ' + key) - self.appDB.set(self.appDB.APPL_DB, key, 'NULL', 'NULL') - - if '/' not in key: - if_db.append(key.split(":")[1]) + for lo_row in lo_data: + # Example of lo_row: 'INTF_TABLE:lo:10.1.0.32/32' + # Delete the old row with name as 'lo'. A new row with name as Loopback will be added + lo_name_appdb = lo_row.split(":")[1] + if lo_name_appdb == "lo": + self.appDB.delete(self.appDB.APPL_DB, lo_row) + lo_addr = lo_row.split('INTF_TABLE:lo:')[1] + lo_name_configdb = lo_addr_to_int.get(lo_addr) + if lo_name_configdb is None or lo_name_configdb == '': + # an unlikely case where a Loopback address is present in APPLDB, but + # there is no corresponding interface for this address in CONFIGDB: + # Default to legacy implementation: hardcode interface name as Loopback0 + lo_new_row = lo_row.replace(lo_name_appdb, "Loopback0") + else: + lo_new_row = lo_row.replace(lo_name_appdb, lo_name_configdb) + self.appDB.set(self.appDB.APPL_DB, lo_new_row, 'NULL', 'NULL') + + if '/' not in lo_row: + if_db.append(lo_row.split(":")[1]) continue data = self.appDB.keys(self.appDB.APPL_DB, "INTF_TABLE:*") @@ -243,7 +277,6 @@ def migrate_config_db_buffer_tables_for_dynamic_calculation(self, speed_list, ca @append_item_method - a function which is called to append an item to the list of pending commit items any update to buffer configuration will be pended and won't be applied until all configuration is checked and aligns with the default one - 1. Buffer profiles for lossless PGs in BUFFER_PROFILE table will be removed if their names have the convention of pg_lossless___profile where the speed and cable_length belongs speed_list and cable_len_list respectively @@ -327,7 +360,6 @@ def prepare_dynamic_buffer_for_warm_reboot(self, buffer_pools=None, buffer_profi ''' This is the very first warm reboot of buffermgrd (dynamic) if the system reboot from old image by warm-reboot In this case steps need to be taken to get buffermgrd prepared (for warm reboot) - During warm reboot, buffer tables should be installed in the first place. However, it isn't able to achieve that when system is warm-rebooted from an old image without dynamic buffer supported, because the buffer info wasn't in the APPL_DB in the old image. @@ -335,7 +367,6 @@ def prepare_dynamic_buffer_for_warm_reboot(self, buffer_pools=None, buffer_profi During warm-reboot, db_migrator adjusts buffer info in CONFIG_DB by removing some fields according to requirement from dynamic buffer calculation. The buffer info before that adjustment needs to be copied to APPL_DB. - 1. set WARM_RESTART_TABLE|buffermgrd as {restore_count: 0} 2. Copy the following tables from CONFIG_DB into APPL_DB in case of warm reboot The separator in fields that reference objects in other table needs to be updated from '|' to ':' @@ -345,7 +376,6 @@ def prepare_dynamic_buffer_for_warm_reboot(self, buffer_pools=None, buffer_profi - BUFFER_QUEUE, separator updated for field 'profile - BUFFER_PORT_INGRESS_PROFILE_LIST, separator updated for field 'profile_list' - BUFFER_PORT_EGRESS_PROFILE_LIST, separator updated for field 'profile_list' - ''' warmreboot_state = self.stateDB.get(self.stateDB.STATE_DB, 'WARM_RESTART_ENABLE_TABLE|system', 'enable') mmu_size = self.stateDB.get(self.stateDB.STATE_DB, 'BUFFER_MAX_PARAM_TABLE|global', 'mmu_size') @@ -485,6 +515,180 @@ def migrate_qos_fieldval_reference_format(self): self.migrate_qos_db_fieldval_reference_remove(qos_table_list, self.configDB, self.configDB.CONFIG_DB, '|') return True + def migrate_vxlan_config(self): + log.log_notice('Migrate VXLAN table config') + # Collect VXLAN data from config DB + vxlan_data = self.configDB.keys(self.configDB.CONFIG_DB, "VXLAN_TUNNEL*") + if not vxlan_data: + # do nothing if vxlan entries are not present in configdb + return + for vxlan_table in vxlan_data: + vxlan_map_mapping = self.configDB.get_all(self.configDB.CONFIG_DB, vxlan_table) + tunnel_keys = vxlan_table.split(self.configDB.KEY_SEPARATOR) + tunnel_keys[0] = tunnel_keys[0] + "_TABLE" + vxlan_table = self.appDB.get_db_separator(self.appDB.APPL_DB).join(tunnel_keys) + for field, value in vxlan_map_mapping.items(): + # add entries from configdb to appdb only when they are missing + if not self.appDB.hexists(self.appDB.APPL_DB, vxlan_table, field): + log.log_notice('Copying vxlan entries from configdb to appdb: updated {} with {}:{}'.format( + vxlan_table, field, value)) + self.appDB.set(self.appDB.APPL_DB, vxlan_table, field, value) + + def migrate_restapi(self): + # RESTAPI - add missing key + if not self.minigraph_data or 'RESTAPI' not in self.minigraph_data: + return + restapi_data = self.minigraph_data['RESTAPI'] + log.log_notice('Migrate RESTAPI configuration') + config = self.configDB.get_entry('RESTAPI', 'config') + if not config: + self.configDB.set_entry("RESTAPI", "config", restapi_data.get("config")) + certs = self.configDB.get_entry('RESTAPI', 'certs') + if not certs: + self.configDB.set_entry("RESTAPI", "certs", restapi_data.get("certs")) + + def migrate_telemetry(self): + # TELEMETRY - add missing key + if not self.minigraph_data or 'TELEMETRY' not in self.minigraph_data: + return + telemetry_data = self.minigraph_data['TELEMETRY'] + log.log_notice('Migrate TELEMETRY configuration') + gnmi = self.configDB.get_entry('TELEMETRY', 'gnmi') + if not gnmi: + self.configDB.set_entry("TELEMETRY", "gnmi", telemetry_data.get("gnmi")) + certs = self.configDB.get_entry('TELEMETRY', 'certs') + if not certs: + self.configDB.set_entry("TELEMETRY", "certs", telemetry_data.get("certs")) + + def migrate_console_switch(self): + # CONSOLE_SWITCH - add missing key + if not self.minigraph_data or 'CONSOLE_SWITCH' not in self.minigraph_data: + return + console_switch_data = self.minigraph_data['CONSOLE_SWITCH'] + log.log_notice('Migrate CONSOLE_SWITCH configuration') + console_mgmt = self.configDB.get_entry('CONSOLE_SWITCH', 'console_mgmt') + if not console_mgmt: + self.configDB.set_entry("CONSOLE_SWITCH", "console_mgmt", + console_switch_data.get("console_mgmt")) + + def migrate_device_metadata(self): + # DEVICE_METADATA - synchronous_mode entry + if not self.minigraph_data or 'DEVICE_METADATA' not in self.minigraph_data: + return + log.log_notice('Migrate DEVICE_METADATA missing configuration') + metadata = self.configDB.get_entry('DEVICE_METADATA', 'localhost') + device_metadata_data = self.minigraph_data["DEVICE_METADATA"]["localhost"] + if 'synchronous_mode' not in metadata: + metadata['synchronous_mode'] = device_metadata_data.get("synchronous_mode") + self.configDB.set_entry('DEVICE_METADATA', 'localhost', metadata) + + def migrate_port_qos_map_global(self): + """ + Generate dscp_to_tc_map for switch. + """ + asics_require_global_dscp_to_tc_map = ["broadcom"] + if self.asic_type not in asics_require_global_dscp_to_tc_map: + return + dscp_to_tc_map_table_names = self.configDB.get_keys('DSCP_TO_TC_MAP') + if len(dscp_to_tc_map_table_names) == 0: + return + + qos_maps = self.configDB.get_table('PORT_QOS_MAP') + if 'global' not in qos_maps.keys(): + # We are unlikely to have more than 1 DSCP_TO_TC_MAP in previous versions + self.configDB.set_entry('PORT_QOS_MAP', 'global', {"dscp_to_tc_map": dscp_to_tc_map_table_names[0]}) + log.log_info("Created entry for global DSCP_TO_TC_MAP {}".format(dscp_to_tc_map_table_names[0])) + + def migrate_route_table(self): + """ + Handle route table migration. Migrations handled: + 1. 'weight' attr in ROUTE object was introduced 202205 onwards. + Upgrade from older branch to 202205 will require this 'weight' attr to be added explicitly + """ + route_table = self.appDB.get_table("ROUTE_TABLE") + for route_prefix, route_attr in route_table.items(): + if 'weight' not in route_attr: + if type(route_prefix) == tuple: + # IPv6 route_prefix is returned from db as tuple + route_key = "ROUTE_TABLE:" + ":".join(route_prefix) + else: + # IPv4 route_prefix is returned from db as str + route_key = "ROUTE_TABLE:{}".format(route_prefix) + self.appDB.set(self.appDB.APPL_DB, route_key, 'weight','') + + def migrate_routing_config_mode(self): + # DEVICE_METADATA - synchronous_mode entry + if not self.minigraph_data or 'DEVICE_METADATA' not in self.minigraph_data: + return + device_metadata_old = self.configDB.get_entry('DEVICE_METADATA', 'localhost') + device_metadata_new = self.minigraph_data['DEVICE_METADATA']['localhost'] + # overwrite the routing-config-mode as per minigraph parser + # Criteria for update: + # if config mode is missing in base OS or if base and target modes are not same + # Eg. in 201811 mode is "unified", and in newer branches mode is "separated" + if ('docker_routing_config_mode' not in device_metadata_old and 'docker_routing_config_mode' in device_metadata_new) or \ + (device_metadata_old.get('docker_routing_config_mode') != device_metadata_new.get('docker_routing_config_mode')): + device_metadata_old['docker_routing_config_mode'] = device_metadata_new.get('docker_routing_config_mode') + self.configDB.set_entry('DEVICE_METADATA', 'localhost', device_metadata_old) + + def update_edgezone_aggregator_config(self): + """ + Update cable length configuration in ConfigDB for T0 neighbor interfaces + connected to EdgeZone Aggregator devices, while resetting the port values to trigger a buffer change + 1. Find a list of all interfaces connected to an EdgeZone Aggregator device. + 2. If all the cable lengths are the same, do nothing and return. + 3. If there are different cable lengths, update CABLE_LENGTH values for these interfaces with a constant value of 40m. + """ + device_neighbor_metadata = self.configDB.get_table("DEVICE_NEIGHBOR_METADATA") + device_neighbors = self.configDB.get_table("DEVICE_NEIGHBOR") + cable_length = self.configDB.get_table("CABLE_LENGTH") + port_table = self.configDB.get_table("PORT") + edgezone_aggregator_devs = [] + edgezone_aggregator_intfs = [] + EDGEZONE_AGG_CABLE_LENGTH = "40m" + for k, v in device_neighbor_metadata.items(): + if v.get("type") == "EdgeZoneAggregator": + edgezone_aggregator_devs.append(k) + + if len(edgezone_aggregator_devs) == 0: + return + + for intf, intf_info in device_neighbors.items(): + if intf_info.get("name") in edgezone_aggregator_devs: + edgezone_aggregator_intfs.append(intf) + + cable_length_table = self.configDB.get_entry("CABLE_LENGTH", "AZURE") + first_cable_intf = next(iter(cable_length_table)) + first_cable_length = cable_length_table[first_cable_intf] + index = 0 + + for intf, length in cable_length_table.items(): + index += 1 + if first_cable_length != length: + break + elif index == len(cable_length_table): + # All cable lengths are the same, nothing to modify + return + + for intf, length in cable_length_table.items(): + if intf in edgezone_aggregator_intfs: + # Set new cable length values + self.configDB.set(self.configDB.CONFIG_DB, "CABLE_LENGTH|AZURE", intf, EDGEZONE_AGG_CABLE_LENGTH) + + def migrate_config_db_flex_counter_delay_status(self): + """ + Migrate "FLEX_COUNTER_TABLE|*": { "value": { "FLEX_COUNTER_DELAY_STATUS": "false" } } + Set FLEX_COUNTER_DELAY_STATUS true in case of fast-reboot + """ + + flex_counter_objects = self.configDB.get_keys('FLEX_COUNTER_TABLE') + for obj in flex_counter_objects: + flex_counter = self.configDB.get_entry('FLEX_COUNTER_TABLE', obj) + delay_status = flex_counter.get('FLEX_COUNTER_DELAY_STATUS') + if delay_status is None or delay_status == 'false': + flex_counter['FLEX_COUNTER_DELAY_STATUS'] = 'true' + self.configDB.mod_entry('FLEX_COUNTER_TABLE', obj, flex_counter) + def version_unknown(self): """ version_unknown tracks all SONiC versions that doesn't have a version @@ -621,18 +825,51 @@ def version_1_0_6(self): def version_2_0_0(self): """ - Version 2_0_0. + Version 2_0_0 """ log.log_info('Handling version_2_0_0') - self.migrate_config_db_port_table_for_auto_neg() + self.migrate_port_qos_map_global() self.set_version('version_2_0_1') return 'version_2_0_1' def version_2_0_1(self): """ - Version 2_0_1. + Handle and migrate missing config that results from cross branch upgrade to + 202012 as target. """ log.log_info('Handling version_2_0_1') + self.migrate_vxlan_config() + self.migrate_restapi() + self.migrate_telemetry() + self.migrate_console_switch() + self.migrate_device_metadata() + + self.set_version('version_2_0_2') + return 'version_2_0_2' + + def version_2_0_2(self): + """ + Version 2_0_2 + This is the latest version for 202012 branch + """ + log.log_info('Handling version_2_0_2') + self.set_version('version_3_0_0') + return 'version_3_0_0' + + def version_3_0_0(self): + """ + Version 3_0_0. + """ + log.log_info('Handling version_3_0_0') + self.migrate_config_db_port_table_for_auto_neg() + self.set_version('version_3_0_1') + return 'version_3_0_1' + + def version_3_0_1(self): + """ + Version 3_0_1. + """ + log.log_info('Handling version_3_0_1') warmreboot_state = self.stateDB.get(self.stateDB.STATE_DB, 'WARM_RESTART_ENABLE_TABLE|system', 'enable') if warmreboot_state != 'true': @@ -640,34 +877,34 @@ def version_2_0_1(self): for name, data in portchannel_table.items(): data['lacp_key'] = 'auto' self.configDB.set_entry('PORTCHANNEL', name, data) - self.set_version('version_2_0_2') - return 'version_2_0_2' + self.set_version('version_3_0_2') + return 'version_3_0_2' - def version_2_0_2(self): + def version_3_0_2(self): """ - Version 2_0_2. + Version 3_0_2. """ - log.log_info('Handling version_2_0_2') + log.log_info('Handling version_3_0_2') self.migrate_qos_fieldval_reference_format() - self.set_version('version_2_0_3') - return 'version_2_0_3' + self.set_version('version_3_0_3') + return 'version_3_0_3' - def version_2_0_3(self): + def version_3_0_3(self): """ - Version 2_0_3 + Version 3_0_3 """ - log.log_info('Handling version_2_0_3') + log.log_info('Handling version_3_0_3') if self.asic_type == "mellanox": self.mellanox_buffer_migrator.mlnx_reclaiming_unused_buffer() - self.set_version('version_2_0_4') - return 'version_2_0_4' + self.set_version('version_3_0_4') + return 'version_3_0_4' - def version_2_0_4(self): + def version_3_0_4(self): """ - Version 2_0_4 + Version 3_0_4 """ - log.log_info('Handling version_2_0_4') + log.log_info('Handling version_3_0_4') # Migrate "pfc_enable" to "pfc_enable" and "pfcwd_sw_enable" # 1. pfc_enable means enable pfc on certain queues # 2. pfcwd_sw_enable means enable PFC software watchdog on certain queues @@ -677,14 +914,46 @@ def version_2_0_4(self): if 'pfc_enable' in v: v['pfcwd_sw_enable'] = v['pfc_enable'] self.configDB.set_entry('PORT_QOS_MAP', k, v) + self.set_version('version_3_0_5') + return 'version_3_0_5' + + def version_3_0_5(self): + """ + Version 3_0_5 + """ + log.log_info('Handling version_3_0_5') + # Update state-db fast-reboot entry to enable if set to enable fast-reboot finalizer when using upgrade with fast-reboot + # since upgrading from previous version FAST_REBOOT table will be deleted when the timer will expire. + # reading FAST_REBOOT table can't be done with stateDB.get as it uses hget behind the scenes and the table structure is + # not using hash and won't work. + # FAST_REBOOT table exists only if fast-reboot was triggered. + keys = self.stateDB.keys(self.stateDB.STATE_DB, "FAST_REBOOT|system") + if keys: + enable_state = 'true' + else: + enable_state = 'false' + self.stateDB.set(self.stateDB.STATE_DB, 'FAST_RESTART_ENABLE_TABLE|system', 'enable', enable_state) + self.set_version('version_3_0_6') + return 'version_3_0_6' - return 'version_2_0_5' + def version_3_0_6(self): + """ + Version 3_0_6 + """ + log.log_info('Handling version_3_0_6') - def version_2_0_5(self): + if self.stateDB.keys(self.stateDB.STATE_DB, "FAST_REBOOT|system"): + self.migrate_config_db_flex_counter_delay_status() + + self.set_version('version_3_0_7') + return 'version_3_0_7' + + def version_3_0_7(self): """ + Version 3_0_7 Current latest version. Nothing to do here. """ - log.log_info('Handling version_2_0_5') + log.log_info('Handling version_3_0_7') return None def get_version(self): @@ -720,12 +989,20 @@ def common_migration_ops(self): new_cfg = {**init_cfg, **curr_cfg} self.configDB.set_entry(init_cfg_table, key, new_cfg) - self.migrate_copp_table() - if self.asic_type == "broadcom" and 'Force10-S6100' in self.hwsku: + if self.asic_type != "mellanox": + self.migrate_copp_table() + if self.asic_type == "broadcom" and 'Force10-S6100' in str(self.hwsku): self.migrate_mgmt_ports_on_s6100() else: log.log_notice("Asic Type: {}, Hwsku: {}".format(self.asic_type, self.hwsku)) + self.migrate_route_table() + + # Updating edgezone aggregator cable length config for T0 devices + self.update_edgezone_aggregator_config() + # update FRR config mode based on minigraph parser on target image + self.migrate_routing_config_mode() + def migrate(self): version = self.get_version() log.log_info('Upgrading from version ' + version) diff --git a/scripts/decode-syseeprom b/scripts/decode-syseeprom index eeb38306b..3d0b8d1db 100755 --- a/scripts/decode-syseeprom +++ b/scripts/decode-syseeprom @@ -228,8 +228,6 @@ def main(): (opts, args) = get_cmdline_opts() - use_db = opts.db and support_eeprom_db - # Get platform name platform = device_info.get_platform() @@ -238,6 +236,8 @@ def main(): if any(re.match(p, platform) for p in platforms_without_eeprom_db): support_eeprom_db = False + use_db = opts.db and support_eeprom_db + if opts.mgmtmac: print_mgmt_mac(use_db) elif opts.serial: diff --git a/scripts/dropstat b/scripts/dropstat index 6766d2a2c..f98fc2919 100755 --- a/scripts/dropstat +++ b/scripts/dropstat @@ -35,6 +35,7 @@ except KeyError: pass from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector +from utilities_common.cli import UserCache # COUNTERS_DB Tables @@ -80,8 +81,7 @@ std_switch_description_header = ['DEVICE'] def get_dropstat_dir(): - dropstat_dir_prefix = '/tmp/dropstat' - return "{}-{}/".format(dropstat_dir_prefix, os.getuid()) + return UserCache().get_directory() class DropStat(object): @@ -411,18 +411,7 @@ Examples: group = args.group counter_type = args.type - dropstat_dir = get_dropstat_dir() - - # Create the directory to hold clear results - if not os.path.exists(dropstat_dir): - try: - os.makedirs(dropstat_dir) - except IOError as e: - print(e) - sys.exit(e.errno) - dcstat = DropStat() - if command == 'clear': dcstat.clear_drop_counts() elif command == 'show': diff --git a/scripts/dualtor_neighbor_check.py b/scripts/dualtor_neighbor_check.py new file mode 100755 index 000000000..39de3c676 --- /dev/null +++ b/scripts/dualtor_neighbor_check.py @@ -0,0 +1,506 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +dualtor_neighbor_check.py + +This tool is designed to verify that, for dualtor SONiC, the neighbors learnt from +mux ports should have correct neighbor/route entry in ASIC. +""" +import argparse +import enum +import functools +import ipaddress +import json +import logging +import shlex +import sys +import syslog +import subprocess +import tabulate + +from natsort import natsorted + +from swsscommon import swsscommon +from sonic_py_common import daemon_base +try: + from swsssdk import port_util +except ImportError: + from sonic_py_common import port_util + + +DB_READ_SCRIPT = """ +-- this script is to read required tables from db: +-- APPL_DB: +-- - MUX_CABLE_TABLE +-- - HW_MUX_CABLE_TABLE +-- - NEIGH_TABLE +-- ASIC_DB: +-- - ASIC_STATE +-- +-- KEYS - None +-- ARGV[1] - APPL_DB db index +-- ARGV[2] - APPL_DB separator +-- ARGV[3] - APPL_DB neighbor table name +-- ARGV[4] - APPL_DB mux cable table name +-- ARGV[5] - APPL_DB hardware mux cable table name +-- ARGV[6] - ASIC_DB db index +-- ARGV[7] - ASIC_DB separator +-- ARGV[8] - ASIC_DB asic state table name + +local APPL_DB = 0 +local APPL_DB_SEPARATOR = ':' +local neighbor_table_name = 'NEIGH_TABLE' +local mux_state_table_name = 'MUX_CABLE_TABLE' +local hw_mux_state_table_name = 'HW_MUX_CABLE_TABLE' +local ASIC_DB = 1 +local ASIC_DB_SEPARATOR = ':' +local asic_state_table_name = 'ASIC_STATE' +local asic_route_key_prefix = 'SAI_OBJECT_TYPE_ROUTE_ENTRY' +local asic_neigh_key_prefix = 'SAI_OBJECT_TYPE_NEIGHBOR_ENTRY' +local asic_fdb_key_prefix = 'SAI_OBJECT_TYPE_FDB_ENTRY' + +if table.getn(ARGV) == 7 then + APPL_DB = ARGV[1] + APPL_DB_SEPARATOR = ARGV[2] + neighbor_table_name = ARGV[3] + mux_state_table_name = ARGV[4] + hw_mux_state_table_name = ARGV[5] + ASIC_DB = ARGV[6] + ASIC_DB_SEPARATOR = ARGV[7] + asic_state_table_name = ARGV[8] +end + +local neighbors = {} +local mux_states = {} +local hw_mux_states = {} +local asic_fdb = {} +local asic_route_table = {} +local asic_neighbor_table = {} + +-- read from APPL_DB +redis.call('SELECT', APPL_DB) + +-- read neighbors learnt from Vlan devices +local neighbor_table_vlan_prefix = neighbor_table_name .. APPL_DB_SEPARATOR .. 'Vlan' +local neighbor_keys = redis.call('KEYS', neighbor_table_vlan_prefix .. '*') +for i, neighbor_key in ipairs(neighbor_keys) do + local second_separator_index = string.find(neighbor_key, APPL_DB_SEPARATOR, string.len(neighbor_table_vlan_prefix), true) + if second_separator_index ~= nil then + local neighbor_ip = string.sub(neighbor_key, second_separator_index + 1) + local mac = string.lower(redis.call('HGET', neighbor_key, 'neigh')) + neighbors[neighbor_ip] = mac + end +end + +-- read mux states +local mux_state_table_prefix = mux_state_table_name .. APPL_DB_SEPARATOR +local mux_cables = redis.call('KEYS', mux_state_table_prefix .. '*') +for i, mux_cable_key in ipairs(mux_cables) do + local port_name = string.sub(mux_cable_key, string.len(mux_state_table_prefix) + 1) + local mux_state = redis.call('HGET', mux_cable_key, 'state') + if mux_state ~= nil then + mux_states[port_name] = mux_state + end +end + +local hw_mux_state_table_prefix = hw_mux_state_table_name .. APPL_DB_SEPARATOR +local hw_mux_cables = redis.call('KEYS', hw_mux_state_table_prefix .. '*') +for i, hw_mux_cable_key in ipairs(hw_mux_cables) do + local port_name = string.sub(hw_mux_cable_key, string.len(hw_mux_state_table_prefix) + 1) + local mux_state = redis.call('HGET', hw_mux_cable_key, 'state') + if mux_state ~= nil then + hw_mux_states[port_name] = mux_state + end +end + +-- read from ASIC_DB +redis.call('SELECT', ASIC_DB) + +-- read ASIC fdb entries +local fdb_prefix = asic_state_table_name .. ASIC_DB_SEPARATOR .. asic_fdb_key_prefix +local fdb_entries = redis.call('KEYS', fdb_prefix .. '*') +for i, fdb_entry in ipairs(fdb_entries) do + local bridge_port_id = redis.call('HGET', fdb_entry, 'SAI_FDB_ENTRY_ATTR_BRIDGE_PORT_ID') + local fdb_details = cjson.decode(string.sub(fdb_entry, string.len(fdb_prefix) + 2)) + local mac = string.lower(fdb_details['mac']) + asic_fdb[mac] = bridge_port_id +end + +-- read ASIC route table +local route_prefix = asic_state_table_name .. ASIC_DB_SEPARATOR .. asic_route_key_prefix +local route_entries = redis.call('KEYS', route_prefix .. '*') +for i, route_entry in ipairs(route_entries) do + local route_details = string.sub(route_entry, string.len(route_prefix) + 2) + table.insert(asic_route_table, route_details) +end + +-- read ASIC neigh table +local neighbor_prefix = asic_state_table_name .. ASIC_DB_SEPARATOR .. asic_neigh_key_prefix +local neighbor_entries = redis.call('KEYS', neighbor_prefix .. '*') +for i, neighbor_entry in ipairs(neighbor_entries) do + local neighbor_details = string.sub(neighbor_entry, string.len(neighbor_prefix) + 2) + table.insert(asic_neighbor_table, neighbor_details) +end + +local result = {} +result['neighbors'] = neighbors +result['mux_states'] = mux_states +result['hw_mux_states'] = hw_mux_states +result['asic_fdb'] = asic_fdb +result['asic_route_table'] = asic_route_table +result['asic_neigh_table'] = asic_neighbor_table + +return redis.status_reply(cjson.encode(result)) +""" + +DB_READ_SCRIPT_CONFIG_DB_KEY = "_DUALTOR_NEIGHBOR_CHECK_SCRIPT_SHA1" +ZERO_MAC = "00:00:00:00:00:00" +NEIGHBOR_ATTRIBUTES = ["NEIGHBOR", "MAC", "PORT", "MUX_STATE", "IN_MUX_TOGGLE", "NEIGHBOR_IN_ASIC", "TUNNEL_IN_ASIC", "HWSTATUS"] +NOT_AVAILABLE = "N/A" + + +class LogOutput(enum.Enum): + """Enum to represent log output.""" + SYSLOG = "SYSLOG" + STDOUT = "STDOUT" + + def __str__(self): + return self.value + + +class SyslogLevel(enum.IntEnum): + """Enum to represent syslog level.""" + ERROR = 3 + NOTICE = 5 + INFO = 6 + DEBUG = 7 + + def __str__(self): + return self.name + + +SYSLOG_LEVEL = SyslogLevel.INFO +WRITE_LOG_ERROR = None +WRITE_LOG_WARN = None +WRITE_LOG_INFO = None +WRITE_LOG_DEBUG = None + + +def parse_args(): + parser = argparse.ArgumentParser( + description="Verify neighbors state is consistent with mux state." + ) + parser.add_argument( + "-o", + "--log-output", + type=LogOutput, + choices=list(LogOutput), + default=LogOutput.STDOUT, + help="log output" + ) + parser.add_argument( + "-s", + "--syslog-level", + choices=["ERROR", "NOTICE", "INFO", "DEBUG"], + default=None, + help="syslog level" + ) + parser.add_argument( + "-l", + "--log-level", + choices=["ERROR", "WARNING", "INFO", "DEBUG"], + default=None, + help="stdout log level" + ) + args = parser.parse_args() + + if args.log_output == LogOutput.STDOUT: + if args.log_level is None: + args.log_level = logging.WARNING + else: + args.log_level = logging.getLevelName(args.log_level) + + if args.syslog_level is not None: + parser.error("Received syslog level with log output to stdout.") + if args.log_output == LogOutput.SYSLOG: + if args.syslog_level is None: + args.syslog_level = SyslogLevel.NOTICE + else: + args.syslog_level = SyslogLevel[args.syslog_level] + + if args.log_level is not None: + parser.error("Received stdout log level with log output to syslog.") + + return args + + +def write_syslog(level, message, *args): + if level > SYSLOG_LEVEL: + return + if args: + message %= args + if level == SyslogLevel.ERROR: + syslog.syslog(syslog.LOG_ERR, message) + elif level == SyslogLevel.NOTICE: + syslog.syslog(syslog.LOG_NOTICE, message) + elif level == SyslogLevel.INFO: + syslog.syslog(syslog.LOG_INFO, message) + elif level == SyslogLevel.DEBUG: + syslog.syslog(syslog.LOG_DEBUG, message) + else: + syslog.syslog(syslog.LOG_DEBUG, message) + + +def config_logging(args): + """Configures logging based on arguments.""" + global SYSLOG_LEVEL + global WRITE_LOG_ERROR + global WRITE_LOG_WARN + global WRITE_LOG_INFO + global WRITE_LOG_DEBUG + if args.log_output == LogOutput.STDOUT: + logging.basicConfig( + stream=sys.stdout, + level=args.log_level, + format="%(message)s" + ) + WRITE_LOG_ERROR = logging.error + WRITE_LOG_WARN = logging.warning + WRITE_LOG_INFO = logging.info + WRITE_LOG_DEBUG = logging.debug + elif args.log_output == LogOutput.SYSLOG: + SYSLOG_LEVEL = args.syslog_level + WRITE_LOG_ERROR = functools.partial(write_syslog, SyslogLevel.ERROR) + WRITE_LOG_WARN = functools.partial(write_syslog, SyslogLevel.NOTICE) + WRITE_LOG_INFO = functools.partial(write_syslog, SyslogLevel.INFO) + WRITE_LOG_DEBUG = functools.partial(write_syslog, SyslogLevel.DEBUG) + + +def run_command(cmd): + """Runs a command and returns its output.""" + WRITE_LOG_DEBUG("Running command: %s", cmd) + try: + p = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (output, _) = p.communicate() + except Exception as details: + raise RuntimeError("Failed to run command: %s", details) + WRITE_LOG_DEBUG("Command output: %s", output) + WRITE_LOG_DEBUG("Command return code: %s", p.returncode) + if p.returncode != 0: + raise RuntimeError("Command failed with return code %s: %s" % (p.returncode, output)) + return output.decode() + + +def redis_cli(redis_cmd): + """Call a redis command with return error check.""" + run_cmd = "sudo redis-cli %s" % redis_cmd + result = run_command(run_cmd).strip() + if "error" in result or "ERR" in result: + raise RuntimeError("Redis command '%s' failed: %s" % (redis_cmd, result)) + return result + + +def read_tables_from_db(appl_db): + """Reads required tables from db.""" + # NOTE: let's cache the db read script sha1 in APPL_DB under + # key "_DUALTOR_NEIGHBOR_CHECK_SCRIPT_SHA1" + db_read_script_sha1 = appl_db.get(DB_READ_SCRIPT_CONFIG_DB_KEY) + if not db_read_script_sha1: + redis_load_cmd = "SCRIPT LOAD \"%s\"" % DB_READ_SCRIPT + db_read_script_sha1 = redis_cli(redis_load_cmd).strip() + WRITE_LOG_INFO("loaded script sha1: %s", db_read_script_sha1) + appl_db.set(DB_READ_SCRIPT_CONFIG_DB_KEY, db_read_script_sha1) + + redis_run_cmd = "EVALSHA %s 0" % db_read_script_sha1 + result = redis_cli(redis_run_cmd).strip() + tables = json.loads(result) + + neighbors = tables["neighbors"] + mux_states = tables["mux_states"] + hw_mux_states = tables["hw_mux_states"] + asic_fdb = {k: v.lstrip("oid:0x") for k, v in tables["asic_fdb"].items()} + asic_route_table = tables["asic_route_table"] + asic_neigh_table = tables["asic_neigh_table"] + WRITE_LOG_DEBUG("neighbors: %s", json.dumps(neighbors, indent=4)) + WRITE_LOG_DEBUG("mux states: %s", json.dumps(mux_states, indent=4)) + WRITE_LOG_DEBUG("hw mux states: %s", json.dumps(hw_mux_states, indent=4)) + WRITE_LOG_DEBUG("ASIC FDB: %s", json.dumps(asic_fdb, indent=4)) + WRITE_LOG_DEBUG("ASIC route table: %s", json.dumps(asic_route_table, indent=4)) + WRITE_LOG_DEBUG("ASIC neigh table: %s", json.dumps(asic_neigh_table, indent=4)) + return neighbors, mux_states, hw_mux_states, asic_fdb, asic_route_table, asic_neigh_table + + +def get_if_br_oid_to_port_name_map(): + """Return port bridge oid to port name map.""" + db = swsscommon.SonicV2Connector(host="127.0.0.1") + try: + port_name_map = port_util.get_interface_oid_map(db)[1] + except IndexError: + port_name_map = {} + if_br_oid_map = port_util.get_bridge_port_map(db) + if_br_oid_to_port_name_map = {} + for if_br_oid, if_oid in if_br_oid_map.items(): + if if_oid in port_name_map: + if_br_oid_to_port_name_map[if_br_oid] = port_name_map[if_oid] + return if_br_oid_to_port_name_map + + +def is_dualtor(config_db): + """Check if it is a dualtor device.""" + device_metadata = config_db.get_table('DEVICE_METADATA') + return ("localhost" in device_metadata and + "subtype" in device_metadata['localhost'] and + device_metadata['localhost']['subtype'].lower() == 'dualtor') + + +def get_mux_cable_config(config_db): + """Return mux cable config from CONFIG_DB.""" + return config_db.get_table("MUX_CABLE") + + +def get_mux_server_to_port_map(mux_cables): + """Return mux server ip to port name map.""" + mux_server_to_port_map = {} + for port, mux_details in mux_cables.items(): + if "server_ipv4" in mux_details: + server_ipv4 = str(ipaddress.ip_interface(mux_details["server_ipv4"]).ip) + mux_server_to_port_map[server_ipv4] = port + if "server_ipv6" in mux_details: + server_ipv6 = str(ipaddress.ip_interface(mux_details["server_ipv6"]).ip) + mux_server_to_port_map[server_ipv6] = port + return mux_server_to_port_map + + +def get_mac_to_port_name_map(asic_fdb, if_oid_to_port_name_map): + """Return mac to port name map.""" + mac_to_port_name_map = {} + for mac, port_br_oid in asic_fdb.items(): + if port_br_oid in if_oid_to_port_name_map: + mac_to_port_name_map[mac] = if_oid_to_port_name_map[port_br_oid] + return mac_to_port_name_map + + +def check_neighbor_consistency(neighbors, mux_states, hw_mux_states, mac_to_port_name_map, + asic_route_table, asic_neigh_table, mux_server_to_port_map): + """Checks if neighbors are consistent with mux states.""" + + asic_route_destinations = set(json.loads(_)["dest"].split("/")[0] for _ in asic_route_table) + asic_neighs = set(json.loads(_)["ip"] for _ in asic_neigh_table) + + check_results = [] + for neighbor_ip in natsorted(list(neighbors.keys())): + mac = neighbors[neighbor_ip] + check_result = {attr: NOT_AVAILABLE for attr in NEIGHBOR_ATTRIBUTES} + check_result["NEIGHBOR"] = neighbor_ip + check_result["MAC"] = mac + + is_zero_mac = (mac == ZERO_MAC) + if mac not in mac_to_port_name_map and not is_zero_mac: + check_results.append(check_result) + continue + + check_result["NEIGHBOR_IN_ASIC"] = neighbor_ip in asic_neighs + check_result["TUNNEL_IN_ASIC"] = neighbor_ip in asic_route_destinations + if is_zero_mac: + # NOTE: for zero-mac neighbors, two situations: + # 1. new neighbor just learnt, no neighbor entry in ASIC, tunnel route present in ASIC. + # 2. neighbor expired, neighbor entry still present in ASIC, no tunnel route in ASIC. + check_result["HWSTATUS"] = check_result["NEIGHBOR_IN_ASIC"] or check_result["TUNNEL_IN_ASIC"] + else: + port_name = mac_to_port_name_map[mac] + # NOTE: mux server ips are always fixed to the mux port + if neighbor_ip in mux_server_to_port_map: + port_name = mux_server_to_port_map[neighbor_ip] + mux_state = mux_states[port_name] + hw_mux_state = hw_mux_states[port_name] + check_result["PORT"] = port_name + check_result["MUX_STATE"] = mux_state + check_result["IN_MUX_TOGGLE"] = mux_state != hw_mux_state + + if mux_state == "active": + check_result["HWSTATUS"] = (check_result["NEIGHBOR_IN_ASIC"] and (not check_result["TUNNEL_IN_ASIC"])) + elif mux_state == "standby": + check_result["HWSTATUS"] = ((not check_result["NEIGHBOR_IN_ASIC"]) and check_result["TUNNEL_IN_ASIC"]) + else: + # skip as unknown mux state + continue + + check_results.append(check_result) + + return check_results + + +def parse_check_results(check_results): + """Parse the check results to see if there are neighbors that are inconsistent with mux state.""" + failed_neighbors = [] + bool_to_yes_no = ("no", "yes") + bool_to_consistency = ("inconsistent", "consistent") + for check_result in check_results: + port = check_result["PORT"] + is_zero_mac = check_result["MAC"] == ZERO_MAC + if port == NOT_AVAILABLE and not is_zero_mac: + continue + in_toggle = check_result["IN_MUX_TOGGLE"] + hwstatus = check_result["HWSTATUS"] + if not is_zero_mac: + check_result["IN_MUX_TOGGLE"] = bool_to_yes_no[in_toggle] + check_result["NEIGHBOR_IN_ASIC"] = bool_to_yes_no[check_result["NEIGHBOR_IN_ASIC"]] + check_result["TUNNEL_IN_ASIC"] = bool_to_yes_no[check_result["TUNNEL_IN_ASIC"]] + check_result["HWSTATUS"] = bool_to_consistency[hwstatus] + if (not hwstatus): + if is_zero_mac: + failed_neighbors.append(check_result) + elif not in_toggle: + failed_neighbors.append(check_result) + + output_lines = tabulate.tabulate( + [[check_result[attr] for attr in NEIGHBOR_ATTRIBUTES] for check_result in check_results], + headers=NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ) + for output_line in output_lines.split("\n"): + WRITE_LOG_WARN(output_line) + + if failed_neighbors: + WRITE_LOG_ERROR("Found neighbors that are inconsistent with mux states: %s", [_["NEIGHBOR"] for _ in failed_neighbors]) + err_output_lines = tabulate.tabulate( + [[neighbor[attr] for attr in NEIGHBOR_ATTRIBUTES] for neighbor in failed_neighbors], + headers=NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ) + for output_line in err_output_lines.split("\n"): + WRITE_LOG_ERROR(output_line) + return False + return True + + +if __name__ == "__main__": + args = parse_args() + config_logging(args) + + config_db = swsscommon.ConfigDBConnector(use_unix_socket_path=False) + config_db.connect() + appl_db = daemon_base.db_connect("APPL_DB") + + mux_cables = get_mux_cable_config(config_db) + + if not is_dualtor(config_db) or not mux_cables: + WRITE_LOG_DEBUG("Not a valid dualtor setup, skip the check.") + sys.exit(0) + + mux_server_to_port_map = get_mux_server_to_port_map(mux_cables) + if_oid_to_port_name_map = get_if_br_oid_to_port_name_map() + neighbors, mux_states, hw_mux_states, asic_fdb, asic_route_table, asic_neigh_table = read_tables_from_db(appl_db) + mac_to_port_name_map = get_mac_to_port_name_map(asic_fdb, if_oid_to_port_name_map) + + check_results = check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = parse_check_results(check_results) + sys.exit(0 if res else 1) diff --git a/scripts/fabricstat b/scripts/fabricstat new file mode 100755 index 000000000..077b9fb2e --- /dev/null +++ b/scripts/fabricstat @@ -0,0 +1,383 @@ +#!/usr/bin/env python3 + +import argparse +from collections import OrderedDict, namedtuple +import json +import os +import sys + +from utilities_common import constants +from utilities_common.cli import json_serial, UserCache +from utilities_common.netstat import format_number_with_comma, table_as_json, ns_diff, format_prate +from natsort import natsorted +from tabulate import tabulate +from sonic_py_common import multi_asic +from swsscommon.swsscommon import APP_FABRIC_PORT_TABLE_NAME, COUNTERS_TABLE, COUNTERS_FABRIC_PORT_NAME_MAP, COUNTERS_FABRIC_QUEUE_NAME_MAP +import utilities_common.multi_asic as multi_asic_util + +# mock the redis for unit test purposes # +try: + if os.environ["UTILITIES_UNIT_TESTING"] == "1" or os.environ["UTILITIES_UNIT_TESTING"] == "2": + modules_path = os.path.join(os.path.dirname(__file__), "..") + tests_path = os.path.join(modules_path, "tests") + sys.path.insert(0, modules_path) + sys.path.insert(0, tests_path) + import mock_tables.dbconnector + if os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] == "multi_asic": + import mock_tables.mock_multi_asic + mock_tables.dbconnector.load_namespace_config() +except KeyError: + pass + +PORT_NAME_PREFIX = 'PORT' +COUNTER_TABLE_PREFIX = COUNTERS_TABLE+":" +FABRIC_PORT_STATUS_TABLE_PREFIX = APP_FABRIC_PORT_TABLE_NAME+"|" +FABRIC_PORT_STATUS_FIELD = "STATUS" +STATUS_NA = 'N/A' + +cnstat_dir = 'N/A' +cnstat_fqn_file_port = 'N/A' +cnstat_fqn_file_queue = 'N/A' + +class FabricStat(object): + def __init__(self, namespace): + self.db = None + self.namespace = namespace + self.multi_asic = multi_asic_util.MultiAsic(constants.DISPLAY_ALL, namespace) + + def get_cnstat_dict(self): + self.cnstat_dict = OrderedDict() + self.collect_stat() + return self.cnstat_dict + + @multi_asic_util.run_on_multi_asic + def collect_stat(self): + """ + Collect the statisitics from all the asics present on the + device and store in a dict + """ + self.cnstat_dict.update(self.get_cnstat()) + + def get_port_state(self, port_name): + """ + Get the port state + """ + full_table_id = FABRIC_PORT_STATUS_TABLE_PREFIX + port_name + oper_state = self.db.get(self.db.STATE_DB, full_table_id, FABRIC_PORT_STATUS_FIELD) + if oper_state is not None: + return oper_state + return STATUS_NA + + def get_counters(self, counter_bucket_dict, table_id): + fields = ["0"] * len(counter_bucket_dict) + for pos, counter_name in counter_bucket_dict.items(): + full_table_id = COUNTER_TABLE_PREFIX + table_id + counter_data = self.db.get(self.db.COUNTERS_DB, full_table_id, counter_name) + if counter_data is None: + fields[pos] = STATUS_NA + elif fields[pos] != STATUS_NA: + fields[pos] = str(int(fields[pos]) + int(counter_data)) + return fields + + def get_cnstat(self): + """ + Get the counters info from database. + """ + assert False, 'Need to override this method' + + def save_fresh_stats(self): + """ + Get stat for each port and save. + """ + assert False, 'Need to override this method' + + def cnstat_print(self, cnstat_dict, errors_only=False): + """ + Print the counter stat. + """ + assert False, 'Need to override this method' + +PortStat = namedtuple("PortStat", "in_cell, in_octet, out_cell, out_octet,\ + crc, fec_correctable, fec_uncorrectable, symbol_err") +port_counter_bucket_list = [ + 'SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS', + 'SAI_PORT_STAT_IF_IN_OCTETS', + 'SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS', + 'SAI_PORT_STAT_IF_OUT_OCTETS', + 'SAI_PORT_STAT_IF_IN_ERRORS', + 'SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES', + 'SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES', + 'SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS', + ] +port_counter_bucket_dict = {k : v for k, v in enumerate(port_counter_bucket_list)} + +portstat_header_all = ['ASIC', 'PORT', 'STATE', + 'IN_CELL', 'IN_OCTET', 'OUT_CELL', 'OUT_OCTET', + 'CRC', 'FEC_CORRECTABLE', 'FEC_UNCORRECTABLE', 'SYMBOL_ERR'] +portstat_header_errors_only = ['ASIC', 'PORT', 'STATE', + 'CRC', 'FEC_CORRECTABLE', 'FEC_UNCORRECTABLE', 'SYMBOL_ERR'] + +class FabricPortStat(FabricStat): + def get_cnstat(self): + counter_port_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_FABRIC_PORT_NAME_MAP) + cnstat_dict = OrderedDict() + if counter_port_name_map is None: + return cnstat_dict + for port_name in natsorted(counter_port_name_map): + cntr = self.get_counters(port_counter_bucket_dict, counter_port_name_map[port_name]) + cnstat_dict[port_name] = PortStat._make(cntr) + return cnstat_dict + + def save_fresh_stats(self): + # Get stat for each port and save + counter_port_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_FABRIC_PORT_NAME_MAP) + if counter_port_name_map is None: + print("No counters require cleaning") + return + cnstat_dict = self.get_cnstat() + asic_name = '0' + if self.namespace: + asic_name = multi_asic.get_asic_id_from_name(self.namespace) + try: + cnstat_fqn_file_port_name = cnstat_fqn_file_port + asic_name + json.dump(cnstat_dict, open(cnstat_fqn_file_port_name, 'w'), default=json_serial) + except IOError as e: + print(e.errno, e) + sys.exit(e.errno) + else: + print("Clear and update saved counters port") + + def cnstat_print(self, cnstat_dict, errors_only=False): + if len(cnstat_dict) == 0: + print("Counters %s empty" % self.namespace) + return + + table = [] + header = None + # Default ASIC name is 0 for single-ASIC systems. For multi-ASIC systems, + # derive name from namespace. + asic_name = '0' + if self.namespace: + asic_name = multi_asic.get_asic_id_from_name(self.namespace) + + cnstat_fqn_file_port_name = cnstat_fqn_file_port + asic_name + cnstat_cached_dict = {} + if os.path.isfile(cnstat_fqn_file_port_name): + try: + cnstat_cached_dict = json.load(open(cnstat_fqn_file_port_name, 'r')) + except IOError as e: + print(e.errno, e) + + for key, data in cnstat_dict.items(): + port_id = key[len(PORT_NAME_PREFIX):] + port_name = "PORT" + port_id + # The content in the for each port: + # "IN_CELL, IN_OCTET, OUT_CELL, OUT_OCTET, CRC, FEC_CORRECTABLE, FEC_UNCORRECTABL, SYMBOL_ERR" + # e.g. PORT76 ['0', '0', '36', '6669', '0', '13', '302626', '3'] + # Now, set default saved values to 0 + diff_cached = ['0', '0', '0', '0', '0', '0', '0', '0'] + if port_name in cnstat_cached_dict: + diff_cached = cnstat_cached_dict.get(port_name) + + if errors_only: + header = portstat_header_errors_only + table.append((asic_name, port_id, self.get_port_state(key), + ns_diff(data.crc, diff_cached[4]), + ns_diff(data.fec_correctable, diff_cached[5]), + ns_diff(data.fec_uncorrectable, diff_cached[6]), + ns_diff(data.symbol_err, diff_cached[7]))) + else: + header = portstat_header_all + table.append((asic_name, port_id, self.get_port_state(key), + ns_diff(data.in_cell, diff_cached[0]), + ns_diff(data.in_octet, diff_cached[1]), + ns_diff(data.out_cell, diff_cached[2]), + ns_diff(data.out_octet, diff_cached[3]), + ns_diff(data.crc, diff_cached[4]), + ns_diff(data.fec_correctable, diff_cached[5]), + ns_diff(data.fec_uncorrectable, diff_cached[6]), + ns_diff(data.symbol_err, diff_cached[7]))) + + print(tabulate(table, header, tablefmt='simple', stralign='right')) + print() + +QueueStat = namedtuple("QueueStat", "curlevel, watermarklevel, curbyte") + +queue_counter_bucket_list = [ + 'SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL', + 'SAI_QUEUE_STAT_WATERMARK_LEVEL', + 'SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES', +] +queue_counter_bucket_dict = {k : v for k, v in enumerate(queue_counter_bucket_list)} + +queuestat_header = ['ASIC', 'PORT', 'STATE', 'QUEUE_ID', 'CURRENT_BYTE', 'CURRENT_LEVEL', 'WATERMARK_LEVEL'] + +class FabricQueueStat(FabricStat): + def get_cnstat(self): + counter_queue_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_FABRIC_QUEUE_NAME_MAP) + cnstat_dict = OrderedDict() + if counter_queue_name_map is None: + return cnstat_dict + for port_queue_name in natsorted(counter_queue_name_map): + cntr = self.get_counters(queue_counter_bucket_dict, counter_queue_name_map[port_queue_name]) + cnstat_dict[port_queue_name] = QueueStat._make(cntr) + return cnstat_dict + + def save_fresh_stats(self): + # Get stat for each port and save + counter_port_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_FABRIC_PORT_NAME_MAP) + if counter_port_name_map is None: + print("No counters require cleaning") + return + cnstat_dict = self.get_cnstat() + asic_name = '0' + if self.namespace: + asic_name = multi_asic.get_asic_id_from_name(self.namespace) + try: + cnstat_fqn_file_queue_name = cnstat_fqn_file_queue + asic_name + json.dump(cnstat_dict, open(cnstat_fqn_file_queue_name, 'w'), default=json_serial) + except IOError as e: + print(e.errno, e) + sys.exit(e.errno) + else: + print("Clear and update saved counters queue") + + def cnstat_print(self, cnstat_dict, errors_only=False): + if len(cnstat_dict) == 0: + print("Counters %s empty" % self.namespace) + return + + table = [] + # Default ASIC name is 0 for single-ASIC systems. For multi-ASIC systems, + # derive name from namespace. + asic_name = '0' + if self.namespace: + asic_name = multi_asic.get_asic_id_from_name(self.namespace) + + cnstat_fqn_file_queue_name = cnstat_fqn_file_queue + asic_name + cnstat_cached_dict={} + if os.path.isfile(cnstat_fqn_file_queue_name): + try: + cnstat_cached_dict = json.load(open(cnstat_fqn_file_queue_name, 'r')) + except IOError as e: + print(e.errno, e) + + for key, data in cnstat_dict.items(): + port_name, queue_id = key.split(':') + # The content of saved counters queue for each port: + # portName:queueId CURRENT_LEVEL, WATERMARK_LEVEL, CURRENT_BYTE + # e.g. PORT90:0 ['N/A', 'N/A', 'N/A'] + # Now, set default saved values to 0 + diff_cached = ['0', '0', '0'] + if key in cnstat_cached_dict: + diff_cached = cnstat_cached_dict.get(key) + port_id = port_name[len(PORT_NAME_PREFIX):] + table.append((asic_name, port_id, self.get_port_state(port_name), queue_id, + ns_diff(data.curbyte, diff_cached[2]), + ns_diff(data.curlevel, diff_cached[0]), + ns_diff(data.watermarklevel, diff_cached[1]))) + + print(tabulate(table, queuestat_header, tablefmt='simple', stralign='right')) + print() + +class FabricReachability(FabricStat): + def reachability_print(self): + # Connect to database + self.db = multi_asic.connect_to_all_dbs_for_ns(self.namespace) + # Get the set of all fabric port keys + port_keys = self.db.keys(self.db.STATE_DB, FABRIC_PORT_STATUS_TABLE_PREFIX + '*') + # Create a new dictionary. The key values are the local port values + # in integer format. Only ports that have remote port data are added. + # Only ports that are "up" will be connected to a remote peer. + port_dict = {} + for port_key in port_keys: + port_data = self.db.get_all(self.db.STATE_DB, port_key) + if "REMOTE_PORT" in port_data: + port_number = int(port_key.replace("FABRIC_PORT_TABLE|PORT", "")) + port_dict.update({port_number: port_data}) + # Create ordered table of port data + header = ["Local Link", "Remote Module", "Remote Link", "Status"] + body = [] + for port_number in sorted(port_dict.keys()): + port_data = port_dict[port_number] + body.append((port_number, port_data["REMOTE_MOD"], \ + port_data["REMOTE_PORT"], port_data["STATUS"])) + if self.namespace: + print(f"\n{self.namespace}") + print(tabulate(body, header, tablefmt='simple', stralign='right')) + return + +def main(): + global cnstat_dir + global cnstat_fqn_file_port + global cnstat_fqn_file_queue + parser = argparse.ArgumentParser(description='Display the fabric port state and counters', + formatter_class=argparse.RawTextHelpFormatter, + epilog=""" +Examples: + fabricstat + fabricstat --namespace asic0 + fabricstat -p -n asic0 -e + fabricstat -q + fabricstat -q -n asic0 + fabricstat -C + fabricstat -D +""") + + parser.add_argument('-q','--queue', action='store_true', help='Display fabric queue stat, otherwise port stat') + parser.add_argument('-r','--reachability', action='store_true', help='Display reachability, otherwise port stat') + parser.add_argument('-n','--namespace', default=None, help='Display fabric ports counters for specific namespace') + parser.add_argument('-e', '--errors', action='store_true', help='Display errors') + parser.add_argument('-C','--clear', action='store_true', help='Copy & clear fabric counters') + parser.add_argument('-D','--delete', action='store_true', help='Delete saved stats') + + + args = parser.parse_args() + queue = args.queue + reachability = args.reachability + namespace = args.namespace + errors_only = args.errors + + save_fresh_stats = args.clear + delete_stats = args.delete + + cache = UserCache() + + cnstat_dir = cache.get_directory() + + cnstat_file = "fabricstatport" + cnstat_fqn_file_port = os.path.join(cnstat_dir, cnstat_file) + + cnstat_file = "fabricstatqueue" + cnstat_fqn_file_queue = os.path.join(cnstat_dir, cnstat_file) + + if delete_stats: + cache.remove() + sys.exit(0) + + def nsStat(ns, errors_only): + if queue: + stat = FabricQueueStat(ns) + elif reachability: + stat = FabricReachability(ns) + stat.reachability_print() + return + else: + stat = FabricPortStat(ns) + cnstat_dict = stat.get_cnstat_dict() + if save_fresh_stats: + stat.save_fresh_stats() + else: + stat.cnstat_print(cnstat_dict, errors_only) + + if namespace is None: + # All asics or all fabric asics + multi_asic = multi_asic_util.MultiAsic() + for ns in multi_asic.get_ns_list_based_on_options(): + nsStat(ns, errors_only) + else: + # Asic with namespace + nsStat(namespace, errors_only) + +if __name__ == "__main__": + main() diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 5749e3745..30b0c787d 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -17,17 +17,20 @@ STRICT=no REBOOT_METHOD="/sbin/kexec -e" ASSISTANT_IP_LIST="" ASSISTANT_SCRIPT="/usr/local/bin/neighbor_advertiser" +LAG_KEEPALIVE_SCRIPT="/usr/local/bin/lag_keepalive.py" WATCHDOG_UTIL="/usr/local/bin/watchdogutil" DEVPATH="/usr/share/sonic/device" PLATFORM=$(sonic-cfggen -H -v DEVICE_METADATA.localhost.platform) PLATFORM_PLUGIN="${REBOOT_TYPE}_plugin" LOG_SSD_HEALTH="/usr/local/bin/log_ssd_health" PLATFORM_FWUTIL_AU_REBOOT_HANDLE="platform_fw_au_reboot_handle" +PLATFORM_REBOOT_PRE_CHECK="platform_reboot_pre_check" SSD_FW_UPDATE="ssd-fw-upgrade" TAG_LATEST=yes DETACH=no LOG_PATH="/var/log/${REBOOT_TYPE}.txt" UIMAGE_HDR_SIZE=64 +REQUIRE_TEAMD_RETRY_COUNT=no # Require 100M available on the hard drive for warm reboot temp files, # Size is in 1K blocks: @@ -40,13 +43,12 @@ EXIT_FILE_SYSTEM_FULL=3 EXIT_NEXT_IMAGE_NOT_EXISTS=4 EXIT_ORCHAGENT_SHUTDOWN=10 EXIT_SYNCD_SHUTDOWN=11 -EXIT_FAST_REBOOT_DUMP_FAILURE=12 -EXIT_FILTER_FDB_ENTRIES_FAILURE=13 EXIT_COUNTERPOLL_DELAY_FAILURE=14 EXIT_DB_INTEGRITY_FAILURE=15 EXIT_NO_CONTROL_PLANE_ASSISTANT=20 EXIT_SONIC_INSTALLER_VERIFY_REBOOT=21 EXIT_PLATFORM_FW_AU_FAILURE=22 +EXIT_TEAMD_RETRY_COUNT_FAILURE=23 function error() { @@ -77,6 +79,8 @@ function showHelpAndExit() echo " - control plane assistant IP list." echo " -t : Don't tag the current kube images as latest" echo " -D : detached mode - closing terminal will not cause stopping reboot" + echo " -n : don't require peer devices to be running SONiC with retry count feature [default]" + echo " -N : require peer devices to be running SONiC with retry count feature" exit "${EXIT_SUCCESS}" } @@ -121,30 +125,26 @@ function parseOptions() D ) DETACH=yes ;; + n ) + REQUIRE_TEAMD_RETRY_COUNT=no + ;; + N ) + REQUIRE_TEAMD_RETRY_COUNT=yes + ;; esac done } -function common_clear() +function clear_boot() { + # common_clear debug "${REBOOT_TYPE} failure ($?) cleanup ..." /sbin/kexec -u || /bin/true teardown_control_plane_assistant -} - -function clear_fast_boot() -{ - common_clear - - sonic-db-cli STATE_DB DEL "FAST_REBOOT|system" &>/dev/null || /bin/true -} - -function clear_warm_boot() -{ - common_clear + #clear_warm_boot result=$(timeout 10s config warm_restart disable; res=$?; if [[ $res == 124 ]]; then echo timeout; else echo "code ($res)"; fi) || /bin/true debug "Cancel warm-reboot: ${result}" @@ -152,6 +152,11 @@ function clear_warm_boot() if [[ -f ${WARM_DIR}/${REDIS_FILE} ]]; then mv -f ${WARM_DIR}/${REDIS_FILE} ${WARM_DIR}/${REDIS_FILE}.${TIMESTAMP} || /bin/true fi + + #clear_fast_boot + if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then + sonic-db-cli STATE_DB HSET "FAST_RESTART_ENABLE_TABLE|system" "enable" "false" &>/dev/null || /bin/true + fi } function init_warm_reboot_states() @@ -159,7 +164,7 @@ function init_warm_reboot_states() # If the current running instance was booted up with warm reboot. Then # the current DB contents will likely mark warm reboot is done. # Clear these states so that the next boot up image won't get confused. - if [[ "$REBOOT_TYPE" = "warm-reboot" || "$REBOOT_TYPE" = "fastfast-reboot" ]]; then + if [[ "$REBOOT_TYPE" = "warm-reboot" || "$REBOOT_TYPE" = "fastfast-reboot" || "$REBOOT_TYPE" = "fast-reboot" ]]; then sonic-db-cli STATE_DB eval " for _, key in ipairs(redis.call('keys', 'WARM_RESTART_TABLE|*')) do redis.call('hdel', key, 'state') @@ -181,6 +186,10 @@ function initialize_pre_shutdown() function request_pre_shutdown() { + if [ -x ${DEVPATH}/${PLATFORM}/${PLATFORM_REBOOT_PRE_CHECK} ]; then + debug "Requesting platform reboot pre-check ..." + ${DEVPATH}/${PLATFORM}/${PLATFORM_REBOOT_PRE_CHECK} ${REBOOT_TYPE} + fi debug "Requesting pre-shutdown ..." STATE=$(timeout 5s docker exec syncd /usr/bin/syncd_request_shutdown --pre &> /dev/null; if [[ $? == 124 ]]; then echo "timed out"; fi) if [[ x"${STATE}" == x"timed out" ]]; then @@ -266,7 +275,8 @@ function backup_database() and not string.match(k, 'FG_ROUTE_TABLE|') \ and not string.match(k, 'WARM_RESTART_ENABLE_TABLE|') \ and not string.match(k, 'VXLAN_TUNNEL_TABLE|') \ - and not string.match(k, 'BUFFER_MAX_PARAM_TABLE|') then + and not string.match(k, 'BUFFER_MAX_PARAM_TABLE|') \ + and not string.match(k, 'FAST_RESTART_ENABLE_TABLE|') then redis.call('del', k) end end @@ -371,7 +381,7 @@ function check_docker_exec() function check_db_integrity() { - if [[ "$REBOOT_TYPE" = "warm-reboot" || "$REBOOT_TYPE" = "fastfast-reboot" ]]; then + if [[ "$REBOOT_TYPE" = "warm-reboot" || "$REBOOT_TYPE" = "fastfast-reboot" || "$REBOOT_TYPE" = "fast-reboot" ]]; then CHECK_DB_INTEGRITY=0 /usr/local/bin/check_db_integrity.py || CHECK_DB_INTEGRITY=$? if [[ CHECK_DB_INTEGRITY -ne 0 ]]; then @@ -440,7 +450,7 @@ function load_aboot_secureboot_kernel() { function load_kernel() { # Load kernel into the memory - /sbin/kexec -l "$KERNEL_IMAGE" --initrd="$INITRD" --append="$BOOT_OPTIONS" + /sbin/kexec -a -l "$KERNEL_IMAGE" --initrd="$INITRD" --append="$BOOT_OPTIONS" } function unload_kernel() @@ -452,21 +462,16 @@ function unload_kernel() } function save_counters_folder() { - debug "Saving counters folder before warmboot..." - - counters_folder="/host/counters" - if [[ ! -d $counters_folder ]]; then - mkdir $counters_folder - fi - if [[ "$REBOOT_TYPE" = "warm-reboot" || "$REBOOT_TYPE" = "fastfast-reboot" ]]; then - modules=("portstat-0" "dropstat" "pfcstat-0" "queuestat-0" "intfstat-0") - for module in ${modules[@]} - do - statfile="/tmp/$module" - if [[ -d $statfile ]]; then - cp -rf $statfile $counters_folder - fi - done + if [[ "$REBOOT_TYPE" = "warm-reboot" ]]; then + debug "Saving counters folder before warmboot..." + counters_folder="/host/counters" + counters_cache="/tmp/cache" + if [[ ! -d $counters_folder ]]; then + mkdir $counters_folder + fi + if [[ -d $counters_cache ]]; then + cp -rf $counters_cache $counters_folder + fi fi } @@ -530,9 +535,12 @@ sonic_asic_type=$(sonic-cfggen -y /etc/sonic/sonic_version.yml -v asic_type) BOOT_TYPE_ARG="cold" case "$REBOOT_TYPE" in "fast-reboot") + check_warm_restart_in_progress BOOT_TYPE_ARG=$REBOOT_TYPE - trap clear_fast_boot EXIT HUP INT QUIT TERM KILL ABRT ALRM - sonic-db-cli STATE_DB SET "FAST_REBOOT|system" "1" "EX" "180" &>/dev/null + trap clear_boot EXIT HUP INT QUIT TERM KILL ABRT ALRM + sonic-db-cli STATE_DB HSET "FAST_RESTART_ENABLE_TABLE|system" "enable" "true" &>/dev/null + config warm_restart teamsyncd_timer 1 + config warm_restart enable system ;; "warm-reboot") check_warm_restart_in_progress @@ -545,7 +553,7 @@ case "$REBOOT_TYPE" in else BOOT_TYPE_ARG="warm" fi - trap clear_warm_boot EXIT HUP INT QUIT TERM KILL ABRT ALRM + trap clear_boot EXIT HUP INT QUIT TERM KILL ABRT ALRM config warm_restart enable system ;; *) @@ -603,34 +611,27 @@ else load_kernel fi -if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then - # Dump the ARP and FDB tables to files also as default routes for both IPv4 and IPv6 - # into /host/fast-reboot - DUMP_DIR=/host/fast-reboot - mkdir -p $DUMP_DIR - FAST_REBOOT_DUMP_RC=0 - /usr/local/bin/fast-reboot-dump.py -t $DUMP_DIR || FAST_REBOOT_DUMP_RC=$? - if [[ FAST_REBOOT_DUMP_RC -ne 0 ]]; then - error "Failed to run fast-reboot-dump.py. Exit code: $FAST_REBOOT_DUMP_RC" - unload_kernel - exit "${EXIT_FAST_REBOOT_DUMP_FAILURE}" - fi - - FILTER_FDB_ENTRIES_RC=0 - # Filter FDB entries using MAC addresses from ARP table - /usr/local/bin/filter_fdb_entries -f $DUMP_DIR/fdb.json -a $DUMP_DIR/arp.json -c $CONFIG_DB_FILE || FILTER_FDB_ENTRIES_RC=$? - if [[ FILTER_FDB_ENTRIES_RC -ne 0 ]]; then - error "Failed to filter FDb entries. Exit code: $FILTER_FDB_ENTRIES_RC" - unload_kernel - exit "${EXIT_FILTER_FDB_ENTRIES_FAILURE}" - fi -fi - init_warm_reboot_states setup_control_plane_assistant -if [[ "$REBOOT_TYPE" = "warm-reboot" || "$REBOOT_TYPE" = "fastfast-reboot" ]]; then +TEAMD_INCREASE_RETRY_COUNT=0 +if [[ "${REBOOT_TYPE}" = "warm-reboot" || "${REBOOT_TYPE}" = "fastfast-reboot" ]]; then + TEAMD_RETRY_COUNT_PROBE_RC=0 + /usr/local/bin/teamd_increase_retry_count.py --probe-only || TEAMD_RETRY_COUNT_PROBE_RC=$? + if [[ ${TEAMD_RETRY_COUNT_PROBE_RC} -ne 0 ]]; then + if [[ "${REQUIRE_TEAMD_RETRY_COUNT}" = "yes" ]]; then + error "Could not confirm that all neighbor devices are running SONiC with the retry count feature" + exit "${EXIT_TEAMD_RETRY_COUNT_FAILURE}" + else + debug "Warning: Retry count feature support unknown for one or more neighbor devices; assuming that it's not available" + fi + else + TEAMD_INCREASE_RETRY_COUNT=1 + fi +fi + +if [[ "$REBOOT_TYPE" = "warm-reboot" || "$REBOOT_TYPE" = "fastfast-reboot" || "$REBOOT_TYPE" = "fast-reboot" ]]; then # Freeze orchagent for warm restart # Ask orchagent_restart_check to try freeze 5 times with interval of 2 seconds, # it is possible that the orchagent is in transient state and no opportunity to freeze @@ -658,13 +659,30 @@ if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then fi fi +if [[ ( "${REBOOT_TYPE}" = "warm-reboot" || "${REBOOT_TYPE}" = "fastfast-reboot" ) && "${TEAMD_INCREASE_RETRY_COUNT}" -eq 1 ]]; then + /usr/local/bin/teamd_increase_retry_count.py +fi + # We are fully committed to reboot from this point on because critical # service will go down and we cannot recover from it. set +e +if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then + # Clear all routes except of default and connected routes for faster reconciliation time. + debug "Clearing routes..." + python /usr/local/bin/fast-reboot-filter-routes.py +fi + # disable trap-handlers which were set before trap '' EXIT HUP INT QUIT TERM KILL ABRT ALRM +# start sending LACPDUs to keep the LAGs refreshed +# this is a non-blocking call, and the process will die in 300s +debug "Starting lag_keepalive to send LACPDUs ..." +timeout 300 python ${LAG_KEEPALIVE_SCRIPT} & +# give the lag_keepalive script a chance to get ready (30s) and collect one lacpdu before going down (30s) +sleep 60 + if [ -x ${LOG_SSD_HEALTH} ]; then debug "Collecting logs to check ssd health before ${REBOOT_TYPE}..." ${LOG_SSD_HEALTH} @@ -686,6 +704,12 @@ else fi for service in ${SERVICES_TO_STOP}; do + # Skip the masked services + state=$(systemctl is-enabled ${service}) + if [[ $state == "masked" ]]; then + continue + fi + debug "Stopping ${service} ..." # TODO: These exceptions for nat, sflow, lldp @@ -723,41 +747,27 @@ for service in ${SERVICES_TO_STOP}; do if [[ "x$sonic_asic_type" == x"mellanox" ]]; then check_issu_bank_file fi + fi - # Warm reboot: dump state to host disk - if [[ "$REBOOT_TYPE" = "fastfast-reboot" ]]; then - sonic-db-cli ASIC_DB FLUSHDB > /dev/null - sonic-db-cli COUNTERS_DB FLUSHDB > /dev/null - sonic-db-cli FLEX_COUNTER_DB FLUSHDB > /dev/null - fi + if [[ "$REBOOT_TYPE" = "fastfast-reboot" || "$REBOOT_TYPE" = "fast-reboot" ]]; then + # Advanced reboot: dump state to host disk + sonic-db-cli ASIC_DB FLUSHDB > /dev/null + sonic-db-cli COUNTERS_DB FLUSHDB > /dev/null + sonic-db-cli FLEX_COUNTER_DB FLUSHDB > /dev/null + fi - # TODO: backup_database preserves FDB_TABLE - # need to cleanup as well for fastfast boot case - backup_database + if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then + # Flush RESTAPI_DB in fast-reboot to avoid stale status + sonic-db-cli RESTAPI_DB FLUSHDB > /dev/null fi + + # TODO: backup_database preserves FDB_TABLE + # need to cleanup as well for fastfast boot case + backup_database + fi done -# Kill other containers to make the reboot faster -# We call `docker kill ...` to ensure the container stops as quickly as possible, -# then immediately call `systemctl stop ...` to prevent the service from -# restarting the container automatically. -debug "Stopping all remaining containers ..." -if test -f /usr/local/bin/ctrmgr_tools.py -then - /usr/local/bin/ctrmgr_tools.py kill-all -else - for CONTAINER_NAME in $(docker ps --format '{{.Names}}'); do - CONTAINER_STOP_RC=0 - docker kill $CONTAINER_NAME &> /dev/null || CONTAINER_STOP_RC=$? - systemctl stop $CONTAINER_NAME || debug "Ignore stopping $CONTAINER_NAME error $?" - if [[ CONTAINER_STOP_RC -ne 0 ]]; then - debug "Failed killing container $CONTAINER_NAME RC $CONTAINER_STOP_RC ." - fi - done -fi -debug "Stopped all remaining containers ..." - # Stop the docker container engine. Otherwise we will have a broken docker storage systemctl stop docker.service || debug "Ignore stopping docker service error $?" @@ -814,6 +824,17 @@ fi # Reboot: explicitly call Linux native reboot under sbin debug "Rebooting with ${REBOOT_METHOD} to ${NEXT_SONIC_IMAGE} ..." + +LOGS_ON_TMPFS=0 +df --output=fstype /var/log* | grep -c 'tmpfs' || LOGS_ON_TMPFS=$? +if [[ LOGS_ON_TMPFS -eq 0 ]]; then + debug "Backup shutdown logs to /host/logs_before_reboot" + mkdir -p /host/logs_before_reboot || /bin/true + # maxdepth 2: find files within 2 nested directories (eg. /var/log/ and /var/log/swss/) + # mmin 30: find files written in past 30 minutes + find /var/log -maxdepth 2 -mmin -30 -type f | xargs -I {} cp {} /host/logs_before_reboot/ || /bin/true +fi + exec ${REBOOT_METHOD} # Should never reach here diff --git a/scripts/fast-reboot-filter-routes.py b/scripts/fast-reboot-filter-routes.py new file mode 100755 index 000000000..9328b79ed --- /dev/null +++ b/scripts/fast-reboot-filter-routes.py @@ -0,0 +1,91 @@ +#!/usr/bin/env python3 + +import json +import sys +import os +import utilities_common.cli as clicommon +import syslog +import traceback +import click +from swsscommon.swsscommon import ConfigDBConnector + +ROUTE_IDX = 1 + +def get_connected_routes(): + cmd = 'sudo vtysh -c "show ip route connected json"' + connected_routes = [] + try: + output, ret = clicommon.run_command(cmd, return_cmd=True) + if ret != 0: + click.echo(output.rstrip('\n')) + sys.exit(ret) + if output is not None: + route_info = json.loads(output) + for route in route_info.keys(): + connected_routes.append(route) + except Exception: + ctx = click.get_current_context() + ctx.fail("Unable to get connected routes from bgp") + + return connected_routes + +def get_route(db, route): + key = 'ROUTE_TABLE:%s' % route + val = db.keys(db.APPL_DB, key) + if val: + return val[0].split(":", 1)[ROUTE_IDX] + else: + return None + +def generate_default_route_entries(): + db = ConfigDBConnector() + db.db_connect(db.APPL_DB) + + default_routes = [] + + ipv4_default = get_route(db, '0.0.0.0/0') + if ipv4_default is not None: + default_routes.append(ipv4_default) + + ipv6_default = get_route(db, '::/0') + if ipv6_default is not None: + default_routes.append(ipv6_default) + + return default_routes + +def filter_routes(preserved_routes): + db = ConfigDBConnector() + db.db_connect(db.APPL_DB) + + key = 'ROUTE_TABLE:*' + routes = db.keys(db.APPL_DB, key) + + for route in routes: + stripped_route = route.split(":", 1)[ROUTE_IDX] + if stripped_route not in preserved_routes: + db.delete(db.APPL_DB, route) + +def main(): + default_routes = generate_default_route_entries() + connected_routes = get_connected_routes() + preserved_routes = set(default_routes + connected_routes) + filter_routes(preserved_routes) + return 0 + +if __name__ == '__main__': + res = 0 + try: + syslog.openlog('fast-reboot-filter-routes') + res = main() + except KeyboardInterrupt: + syslog.syslog(syslog.LOG_NOTICE, "SIGINT received. Quitting") + res = 1 + except Exception as e: + syslog.syslog(syslog.LOG_ERR, "Got an exception %s: Traceback: %s" % (str(e), traceback.format_exc())) + res = 2 + finally: + syslog.closelog() + try: + sys.exit(res) + except SystemExit: + os._exit(res) diff --git a/scripts/flow_counters_stat b/scripts/flow_counters_stat index 61c754e33..ac5ef94be 100755 --- a/scripts/flow_counters_stat +++ b/scripts/flow_counters_stat @@ -27,6 +27,7 @@ import utilities_common.multi_asic as multi_asic_util from flow_counter_util.route import build_route_pattern, extract_route_pattern, exit_if_route_flow_counter_not_support, DEFAULT_VRF, COUNTERS_ROUTE_TO_PATTERN_MAP from utilities_common import constants from utilities_common.netstat import format_number_with_comma, table_as_json, ns_diff, format_prate +from utilities_common.cli import UserCache # Flow counter meta data, new type of flow counters can extend this dictinary to reuse existing logic flow_counter_meta = { @@ -57,9 +58,10 @@ class FlowCounterStats(object): meta_data = flow_counter_meta[args.type] self.name_map = meta_data['name_map'] self.headers = meta_data['headers'] - self.data_file = os.path.join('/tmp/{}-stats-{}'.format(args.type, os.getuid())) - if self.args.delete and os.path.exists(self.data_file): - os.remove(self.data_file) + self.cache = UserCache() + self.data_file = os.path.join(self.cache.get_directory(), "flow-counter-stats") + if self.args.delete: + self.cache.remove() self.data = {} def show(self): diff --git a/scripts/generate_dump b/scripts/generate_dump index 922331495..2b454049a 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -106,7 +106,6 @@ save_bcmcmd() { local filename=$2 local filepath="${LOGDIR}/$filename" local do_gzip=${3:-false} - local tarpath="${BASE}/dump/$filename" local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" local cmd=$(escape_quotes "$cmd") if [ ! -d $LOGDIR ]; then @@ -141,12 +140,9 @@ save_bcmcmd() { fi if $do_gzip; then gzip ${filepath} 2>/dev/null - tarpath="${tarpath}.gz" filepath="${filepath}.gz" fi - ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tarpath" \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ - && $RM $V -rf "$filepath" + end_t=$(date +%s%3N) echo "[ save_bcmcmd:$cmd ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } @@ -180,7 +176,7 @@ save_bcmcmd_all_ns() { } ############################################################################### -# Runs a comamnd and saves its output to the incrementally built tar. +# Runs a comamnd and saves its output to the file. # Command gets timedout if it runs for more than TIMEOUT_MIN minutes. # Globals: # LOGDIR @@ -208,7 +204,6 @@ save_cmd() { local filename=$2 local filepath="${LOGDIR}/$filename" local do_gzip=${3:-false} - local tarpath="${BASE}/dump/$filename" local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" local cleanup_method=${4:-dummy_cleanup_method} local redirect='&>' @@ -230,7 +225,6 @@ save_cmd() { # as one argument, e.g. vtysh -c "COMMAND HERE" needs to have # "COMMAND HERE" bunched together as 1 arg to vtysh -c if $do_gzip; then - tarpath="${tarpath}.gz" filepath="${filepath}.gz" # cleanup_method will run in a sub-shell, need declare it first local cmds="$cleanup_method_declration; $cmd $redirect_eval | $cleanup_method | gzip -c > '${filepath}'" @@ -260,13 +254,34 @@ save_cmd() { fi fi - ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tarpath" \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ - && $RM $V -rf "$filepath" end_t=$(date +%s%3N) echo "[ save_cmd:$cmd ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } +############################################################################### +# Save all collected data to tar archive. +# Globals: +# DUMPDIR +# TAR +# TARFILE +# V +# BASE +# Arguments: +# None +# Returns: +# None +############################################################################### +save_to_tar() { + trap 'handle_error $? $LINENO' ERR + local start_t=$(date +%s%3N) + local end_t=0 + + $TAR $V -rhf $TARFILE -C $DUMPDIR "$BASE" + + end_t=$(date +%s%3N) + echo "[ save_to_tar ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO +} + ############################################################################### # Dummy cleanup method. # Globals: @@ -407,7 +422,7 @@ get_vtysh_namespace() { ############################################################################### # Runs a vtysh command in all namesapces for a multi ASIC platform, and in # default (host) namespace in single ASIC platforms. Saves its output to the -# incrementally built tar. +# file. # Globals: # None # Arguments: @@ -437,7 +452,7 @@ save_vtysh() { } ############################################################################### -# Runs an ip command and saves its output to the incrementally built tar. +# Runs an ip command and saves its output to the file. # Globals: # None # Arguments: @@ -456,7 +471,7 @@ save_ip() { } ############################################################################### -# Runs a bridge command and saves its output to the incrementally built tar. +# Runs a bridge command and saves its output to the file. # Globals: # None # Arguments: @@ -527,6 +542,40 @@ save_bgp_neighbor() { done } +############################################################################### +# Iterates all EVPN neighbors and runs save_vtysh to save each neighbor's +# advertised-routes and received-routes +# On multi ASIC platform, collects information from all namespaces +# Globals: +# None +# Arguments: +# Optional arg namespace +# Returns: +# None +############################################################################### +save_bgp_evpn_neighbor() { + trap 'handle_error $? $LINENO' ERR + local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" + local asic_id=${1:-""} + local ns=$(get_vtysh_namespace $asic_id) + + evpn_neighbors=$(${timeout_cmd} bash -c "vtysh -c 'show bgp l2vpn evpn summary' | cut -d ' ' -f1") + local parse_neighbors=false + for word in $evpn_neighbors; do + if [[ $word == "Neighbor" ]]; then + parse_neighbors=true + continue + elif [[ $word == "Total" ]]; then + parse_neighbors=false + continue + fi + if [ "$parse_neighbors" = true ]; then + save_cmd "vtysh $ns -c \"show bgp l2vpn evpn neighbors $word advertised-routes\"" "bgp.evpn.neighbor.$word.adv$asic_id" + save_cmd "vtysh $ns -c \"show bgp l2vpn evpn neighbors $word routes\"" "bgp.evpn.neighbor.$word.rcv$asic_id" + fi + done +} + ############################################################################### # Iterates all ASIC namespaces on multi ASIC platform and on default (host) # namespace on single ASIC platform @@ -549,6 +598,28 @@ save_bgp_neighbor_all_ns() { fi } +############################################################################### +# Iterates all ASIC namespaces on multi ASIC platform and on default (host) +# namespace on single ASIC platform +# Globals: +# NUM_ASICS +# Arguments: +# None +# Returns: +# None +############################################################################### +save_bgp_evpn_neighbor_all_ns() { + trap 'handle_error $? $LINENO' ERR + if [[ ( "$NUM_ASICS" == 1 ) ]] ; then + save_bgp_evpn_neighbor + else + for (( i=0; i<$NUM_ASICS; i++ )) + do + save_bgp_evpn_neighbor $i + done + fi +} + ############################################################################### # Dump the nat config, iptables rules and conntrack nat entries # Globals: @@ -624,6 +695,23 @@ save_bgp_info() { save_bgp_neighbor_all_ns } +############################################################################### +# Save EVPN related info +# Globals: +# None +# Arguments: +# None +# Returns: +# None +############################################################################### +save_evpn_info() { + trap 'handle_error $? $LINENO' ERR + save_vtysh "show bgp l2vpn evpn" "bgp.l2vpn.evpn" + save_vtysh "show bgp l2vpn evpn route detail" "bgp.evpn.route" + save_vtysh "show evpn vni detail" "bgp.evpn.vni" + save_vtysh "show evpn arp-cache vni all" "bgp.evpn.arp" + save_bgp_evpn_neighbor_all_ns +} ############################################################################### # Save FRR related info # Globals: @@ -696,8 +784,8 @@ save_proc() { ( [ -e $f ] && $CP $V -r $f $TARDIR/proc ) || echo "$f not found" > $TARDIR/$f fi done - $TAR $V -rhf $TARFILE -C $DUMPDIR --mode=+rw $BASE/proc - $RM $V -rf $TARDIR/proc + + chmod ugo+rw -R $DUMPDIR/$BASE/proc } ############################################################################### @@ -764,7 +852,7 @@ save_platform_info() { } ############################################################################### -# Runs a comamnd and saves its output to the incrementally built tar. +# Runs a comamnd and saves its output to the file. # Globals: # LOGDIR # BASE @@ -779,6 +867,7 @@ save_platform_info() { # filename: the full path of the file to save # base_dir: the directory in $TARDIR/ to stage the file # do_gzip: (OPTIONAL) true or false. Should the output be gzipped +# do_tar_append: (OPTIONAL) true or false. Should the output be added to final tar archive # Returns: # None ############################################################################### @@ -791,7 +880,7 @@ save_file() { local gz_path="$TARDIR/$supp_dir/$(basename $orig_path)" local tar_path="${BASE}/$supp_dir/$(basename $orig_path)" local do_gzip=${3:-true} - local do_tar_append=${4:-true} + local do_tar_append=${4:-false} if [ ! -d "$TARDIR/$supp_dir" ]; then $MKDIR $V -p "$TARDIR/$supp_dir" fi @@ -817,6 +906,7 @@ save_file() { || abort "${EXT_PROCFS_SAVE_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ && $RM $V -f "$gz_path" fi + end_t=$(date +%s%3N) echo "[ save_file:$orig_path] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } @@ -866,6 +956,49 @@ enable_logrotate() { sed -i '/\/usr\/sbin\/logrotate/s/^#*//g' /etc/cron.d/logrotate } +############################################################################### +# Create a relative symbolic link of an existing file +# Globals: +# BASE +# MKDIR +# TAR +# TARFILE +# DUMPDIR +# V +# RM +# NOOP +# Arguments: +# filename: the full path of the file +# dest_dir: destination dir where the link is created +# src_sir: directory under $TARDIR where the actual file exists +# Returns: +# None +############################################################################### +save_symlink() { + trap 'handle_error $? $LINENO' ERR + local start_t=$(date +%s%3N) + local end_t=0 + local filename=$1 + local dest_dir=$2 + local src_dir=$3 + local do_tar_append=${4:-true} + local file_basename=$(basename $filename) + local tar_path="$BASE/$dest_dir/$file_basename" + + $MKDIR $V -p "$TARDIR/$dest_dir" + + ${CMD_PREFIX}pushd $TARDIR/$dest_dir + ${CMD_PREFIX}ln -s ../$src_dir/$file_basename $file_basename + ${CMD_PREFIX}popd + + if $do_tar_append; then + ($TAR $V -rf $TARFILE -C $DUMPDIR "$tar_path" \ + || abort "${EXT_PROCFS_SAVE_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ + && $RM $V -f "$DUMPDIR/$tar_path" + fi + end_t=$(date +%s%3N) + echo "[ save_symlink:$filename] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO +} ############################################################################### # Collect Mellanox specific information @@ -882,26 +1015,25 @@ collect_mellanox() { local sai_dump_folder="/tmp/saisdkdump" local sai_dump_filename="${sai_dump_folder}/sai_sdk_dump_$(date +"%m_%d_%Y_%I_%M_%p")" - ${CMD_PREFIX}docker exec syncd mkdir -p $sai_dump_folder - ${CMD_PREFIX}docker exec syncd saisdkdump -f $sai_dump_filename + if [[ "$( docker container inspect -f '{{.State.Running}}' syncd )" == "true" ]]; then + if [[ x"$(sonic-db-cli APPL_DB EXISTS PORT_TABLE:PortInitDone)" == x"1" ]]; then + # Run saisdkdump only after the create_switch is known to be successful + ${CMD_PREFIX}docker exec syncd mkdir -p $sai_dump_folder + ${CMD_PREFIX}docker exec syncd saisdkdump -f $sai_dump_filename - copy_from_docker syncd $sai_dump_folder $sai_dump_folder - echo "$sai_dump_folder" - for file in `ls $sai_dump_folder`; do - save_file ${sai_dump_folder}/${file} sai_sdk_dump true - done + if [ $? != 0 ]; then + echo "Failed to collect saisdkdump." + fi - ${CMD_PREFIX}rm -rf $sai_dump_folder - ${CMD_PREFIX}docker exec syncd rm -rf $sai_dump_folder + copy_from_docker syncd $sai_dump_folder $sai_dump_folder + echo "$sai_dump_folder" + for file in `ls $sai_dump_folder`; do + save_file ${sai_dump_folder}/${file} sai_sdk_dump true + done - # Save SDK error dumps - local sdk_dump_path=`${CMD_PREFIX}docker exec syncd cat /tmp/sai.profile|grep "SAI_DUMP_STORE_PATH"|cut -d = -f2` - if [[ -d $sdk_dump_path ]]; then - copy_from_docker syncd $sdk_dump_path /tmp/sdk-dumps - for file in $(find /tmp/sdk-dumps -type f); do - save_file ${file} sai_sdk_dump false - done - rm -rf /tmp/sdk-dumps + ${CMD_PREFIX}rm -rf $sai_dump_folder + ${CMD_PREFIX}docker exec syncd rm -rf $sai_dump_folder + fi fi # run 'hw-management-generate-dump.sh' script and save the result file @@ -925,6 +1057,53 @@ collect_mellanox() { } +############################################################################### +# Collect dfw dumps if any. Applies to only MLNX platform +# Globals: +# CMD_PREFIX +# Arguments: +# None +# Returns: +# None +############################################################################### +collect_mellanox_dfw_dumps() { + trap 'handle_error $? $LINENO' ERR + local platform=$(python3 -c "from sonic_py_common import device_info; print(device_info.get_platform())") + local hwsku=$(python3 -c "from sonic_py_common import device_info; print(device_info.get_hwsku())") + local sdk_dump_path=`cat /usr/share/sonic/device/${platform}/${hwsku}/sai.profile|grep "SAI_DUMP_STORE_PATH"|cut -d = -f2` + + if [[ ! -d $sdk_dump_path ]]; then + # This would mean the SAI_DUMP_STORE_PATH is not mounted on the host and is only accessible though the container + # This is a bad design and not recommended But there is nothing which restricts against it and thus the special handling + if [[ "$( docker container inspect -f '{{.State.Running}}' syncd )" == "true" ]]; then + $RM $V -rf /tmp/dfw-sdk-dumps + $MKDIR $V -p /tmp/dfw-sdk-dumps + copy_from_docker syncd $sdk_dump_path /tmp/dfw-sdk-dumps + else + echo "ERROR: dfw dumps cannot be collected" + fi + sdk_dump_path="/tmp/dfw-sdk-dumps" + fi + + for file in $(find_files "$sdk_dump_path"); do + if $TAR -tf $TARFILE | grep $BASE/log/$(basename $file); then + # If this path sits under "/var/log/" dir, the files + # would've already been collected and thus just add a sym link + if [ ! -z "${file##*.gz}" ]; then + # files saved under log/ are zipped with gz + file=$file.gz + fi + ${CMD_PREFIX}save_symlink ${file} sai_sdk_dump log + else + if [ ! -z "${file##*.gz}" ]; then + ${CMD_PREFIX}save_file ${file} sai_sdk_dump true true + else + ${CMD_PREFIX}save_file ${file} sai_sdk_dump false true + fi + fi + done +} + ############################################################################### # Collect Broadcom specific information # Globals: @@ -985,33 +1164,117 @@ collect_broadcom() { save_bcmcmd_all_ns "-t5 version" "broadcom.version" save_bcmcmd_all_ns "-t5 soc" "broadcom.soc" save_bcmcmd_all_ns "-t5 ps" "broadcom.ps" - save_bcmcmd_all_ns "\"l3 nat_ingress show\"" "broadcom.nat.ingress" - save_bcmcmd_all_ns "\"l3 nat_egress show\"" "broadcom.nat.egress" - save_bcmcmd_all_ns "\"ipmc table show\"" "broadcom.ipmc" - save_bcmcmd_all_ns "\"multicast show\"" "broadcom.multicast" - save_bcmcmd_all_ns "\"conf show\"" "conf.summary" - save_bcmcmd_all_ns "\"fp show\"" "fp.summary" - save_bcmcmd_all_ns "\"pvlan show\"" "pvlan.summary" - save_bcmcmd_all_ns "\"l2 show\"" "l2.summary" - save_bcmcmd_all_ns "\"l3 intf show\"" "l3.intf.summary" - save_bcmcmd_all_ns "\"l3 defip show\"" "l3.defip.summary" - save_bcmcmd_all_ns "\"l3 l3table show\"" "l3.l3table.summary" - save_bcmcmd_all_ns "\"l3 egress show\"" "l3.egress.summary" - save_bcmcmd_all_ns "\"l3 ecmp egress show\"" "l3.ecmp.egress.summary" - save_bcmcmd_all_ns "\"l3 multipath show\"" "l3.multipath.summary" - save_bcmcmd_all_ns "\"l3 ip6host show\"" "l3.ip6host.summary" - save_bcmcmd_all_ns "\"l3 ip6route show\"" "l3.ip6route.summary" - save_bcmcmd_all_ns "\"mc show\"" "multicast.summary" - save_bcmcmd_all_ns "\"cstat *\"" "cstat.summary" - save_bcmcmd_all_ns "\"mirror show\"" "mirror.summary" - save_bcmcmd_all_ns "\"mirror dest show\"" "mirror.dest.summary" - save_bcmcmd_all_ns "\"port *\"" "port.summary" - save_bcmcmd_all_ns "\"d chg my_station_tcam\"" "mystation.tcam.summary" + if [ -e /usr/share/sonic/device/${platform}/platform_asic ]; then + bcm_family=`cat /usr/share/sonic/device/${platform}/platform_asic` + else + echo "'/usr/share/sonic/device/${platform}/platform_asic' does not exist" > /tmp/error + save_file /tmp/error sai false + return + fi + + if [ "$bcm_family" == "broadcom-dnx" ]; then + supervisor=0 + PLATFORM_ENV_CONF=/usr/share/sonic/device/${platform}/platform_env.conf + if [ -f "$PLATFORM_ENV_CONF" ]; then + source $PLATFORM_ENV_CONF + fi + if [[ x"$supervisor" != x"1" ]]; then + + save_bcmcmd_all_ns "\"l2 show\"" "l2.summary" + save_bcmcmd_all_ns "\"field group list\"" "fpgroup.list.summary" + total_fp_groups=34 + for (( fp_grp=0; fp_grp<$total_fp_groups; fp_grp++ )) + do + save_bcmcmd_all_ns "\"field group info group=$fp_grp\"" "fpgroup$fp_grp.info.summary" + done + save_bcmcmd_all_ns "\"dbal table dump table=IPV4_UNICAST_PRIVATE_LPM_FORWARD\"" "l3.ipv4.lpm.summary" + save_bcmcmd_all_ns "\"dbal table dump table=IPV6_UNICAST_PRIVATE_LPM_FORWARD\"" "l3.ipv6.lpm.summary" + save_bcmcmd_all_ns "\"dbal table dump table=IPV4_UNICAST_PRIVATE_HOST\"" "l3.ipv4.host.summary" + save_bcmcmd_all_ns "\"dbal table dump table=IPV6_UNICAST_PRIVATE_HOST\"" "l3.ipv6.host.summary" + save_bcmcmd_all_ns "\"dbal table dump table=SUPER_FEC_1ST_HIERARCHY\"" "l3.egress.fec.summary" + save_bcmcmd_all_ns "\"dbal table dump table=ECMP_TABLE\"" "ecmp.table.summary" + save_bcmcmd_all_ns "\"dbal table dump table=ECMP_GROUP_PROFILE_TABLE\"" "ecmp.group.summary" + save_bcmcmd_all_ns "\"dbal table dump table=ING_VSI_INFO_DB\"" "ing.vsi.summary" + save_bcmcmd_all_ns "\"dbal table dump table=L3_MY_MAC_DA_PREFIXES\"" "l3.mymac.summary" + save_bcmcmd_all_ns "\"dbal table dump table=INGRESS_VLAN_MEMBERSHIP\"" "ing.vlan.summary" + save_bcmcmd_all_ns "\"dbal table dump table=LOCAL_SBC_IN_LIF_MATCH_INFO_SW\"" "sbc.inlif.summary" + save_bcmcmd_all_ns "\"dbal table dump table=SNIF_COMMAND_TABLE\"" "snif.command.summary" + save_bcmcmd_all_ns "\"port mgmt dump full\"" "port.mgmt.summary" + save_bcmcmd_all_ns "\"tm lag\"" "tm.lag.summary" + save_bcmcmd_all_ns "\"pp info fec\"" "pp.fec.summary" + save_bcmcmd_all_ns "\"nif sts\"" "nif.sts.summary" + save_bcmcmd_all_ns "\"tm ing q map\"" "tm.ingress.qmap.summary" + save_bcmcmd_all_ns "\"tm ing vsq resources\"" "tm.ing.vsq.res.summary" + for group in {a..f} + do + save_bcmcmd_all_ns "\"tm ing vsq non g=$group\"" "tm.ing.vsq.non.group-$group.summary" + done + fi + save_bcmcmd_all_ns "\"port pm info\"" "port.pm.summary" + save_bcmcmd_all_ns "\"conf show\"" "conf.show.summary" + save_bcmcmd_all_ns "\"show counters\"" "show.counters.summary" + save_bcmcmd_all_ns "\"diag counter g\"" "diag.counter.summary" + save_bcmcmd_all_ns "\"fabric connectivity\"" "fabric.connect.summary" + save_bcmcmd_all_ns "\"port status\"" "port.status.summary" + else + save_bcmcmd_all_ns "\"l3 nat_ingress show\"" "broadcom.nat.ingress" + save_bcmcmd_all_ns "\"l3 nat_egress show\"" "broadcom.nat.egress" + save_bcmcmd_all_ns "\"ipmc table show\"" "broadcom.ipmc" + save_bcmcmd_all_ns "\"multicast show\"" "broadcom.multicast" + save_bcmcmd_all_ns "\"conf show\"" "conf.summary" + save_bcmcmd_all_ns "\"fp show\"" "fp.summary" + save_bcmcmd_all_ns "\"pvlan show\"" "pvlan.summary" + save_bcmcmd_all_ns "\"l2 show\"" "l2.summary" + save_bcmcmd_all_ns "\"l3 intf show\"" "l3.intf.summary" + save_bcmcmd_all_ns "\"l3 defip show\"" "l3.defip.summary" + save_bcmcmd_all_ns "\"l3 l3table show\"" "l3.l3table.summary" + save_bcmcmd_all_ns "\"l3 egress show\"" "l3.egress.summary" + save_bcmcmd_all_ns "\"l3 ecmp egress show\"" "l3.ecmp.egress.summary" + save_bcmcmd_all_ns "\"l3 multipath show\"" "l3.multipath.summary" + save_bcmcmd_all_ns "\"l3 ip6host show\"" "l3.ip6host.summary" + save_bcmcmd_all_ns "\"l3 ip6route show\"" "l3.ip6route.summary" + save_bcmcmd_all_ns "\"mc show\"" "multicast.summary" + save_bcmcmd_all_ns "\"cstat *\"" "cstat.summary" + save_bcmcmd_all_ns "\"mirror show\"" "mirror.summary" + save_bcmcmd_all_ns "\"mirror dest show\"" "mirror.dest.summary" + save_bcmcmd_all_ns "\"port *\"" "port.summary" + save_bcmcmd_all_ns "\"d chg my_station_tcam\"" "mystation.tcam.summary" + fi copy_from_masic_docker "syncd" "/var/log/diagrun.log" "/var/log/diagrun.log" copy_from_masic_docker "syncd" "/var/log/bcm_diag_post" "/var/log/bcm_diag_post" } +############################################################################### +# Collect Cisco-8000 specific information +# Globals: +# None +# Arguments: +# None +# Returns: +# None +############################################################################### +collect_cisco_8000() { + trap 'handle_error $? $LINENO' ERR + local platform=$(show platform summary --json | python -c 'import sys, json; \ + print(json.load(sys.stdin)["platform"])') + + if [ -d /usr/share/sonic/device/${platform} ]; then + pushd /usr/share/sonic/device/${platform} > /dev/null + for file in $(find . -path "./*plugin*" -prune -o -path "./*.xml" -prune -o -path "./*.yaml" -prune -o -print); do + if [ -f ${file} ]; then + save_file ${file} sai false + fi + done + popd > /dev/null + else + echo "'/usr/share/sonic/device/${platform}' does not exist" > /tmp/error + save_file /tmp/error sai false + fi + + save_cmd "show platform versions" "platform.versions" +} + ############################################################################### # Save log file # Globals: @@ -1027,8 +1290,26 @@ save_log_files() { trap enable_logrotate HUP INT QUIT TERM KILL ABRT ALRM start_t=$(date +%s%3N) + log_dir_1="/var/log/" + log_dir_2="/var/log.tmpfs/" + file_list="" + + if [ -d "$log_dir_1" ]; then + file_list_1=$(find_files ${log_dir_1}) + file_list="${file_list} ${file_list_1}" + fi + + if [ -d "$log_dir_2" ]; then + file_list_2=$(find_files ${log_dir_2}) + file_list="${file_list} ${file_list_2}" + fi + # gzip up all log files individually before placing them in the incremental tarball - for file in $(find_files "/var/log/"); do + for file in $file_list; do + dest_dir="log" + if [[ $file == *"tmpfs"* ]]; then + dest_dir="log.tmpfs" + fi # ignore the sparse file lastlog if [ "$file" = "/var/log/lastlog" ]; then continue @@ -1036,16 +1317,12 @@ save_log_files() { # don't gzip already-gzipped log files :) # do not append the individual files to the main tarball if [ -z "${file##*.gz}" ]; then - save_file $file log false false + save_file $file $dest_dir false else - save_file $file log true false + save_file $file $dest_dir true fi done - # Append the log folder to the main tarball - ($TAR $V -rhf $TARFILE -C $DUMPDIR ${BASE}/log \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting for safety") \ - && $RM $V -rf $TARDIR/log end_t=$(date +%s%3N) echo "[ TAR /var/log Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1070,11 +1347,7 @@ save_warmboot_files() { else mkdir -p $TARDIR $CP $V -rf /host/warmboot $TARDIR - - ($TAR $V --warning=no-file-removed -rhf $TARFILE -C $DUMPDIR --mode=+rw \ - $BASE/warmboot \ - || abort "${EXT_TAR_FAILED}" "Tar append operation failed. Aborting for safety.") \ - && $RM $V -rf $TARDIR + chmod ugo+rw -R $DUMPDIR/$BASE/warmboot fi end_t=$(date +%s%3N) echo "[ Warm-boot Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1118,6 +1391,38 @@ save_crash_files() { fi } +############################################################################### +# Collect SAI failure dump files under /var/log/sai_failure_dump/. These files are +# created because of the orchagent abort triggered by SAI programming failure +# Globals: +# None +# Arguments: +# None +# Returns: +# None +############################################################################### +save_sai_failure_dump(){ + for file in $(find_files "/var/log/sai_failure_dump/"); do + if $TAR -tf $TARFILE | grep $BASE/log/$(basename $file); then + # if the files are already collected under the log/ dir + # just add a symbolic link + if [ ! -z "${file##*.gz}" ]; then + # files saved under log/ are zipped with gz + file=$file.gz + fi + ${CMD_PREFIX}save_symlink ${file} sai_failure_dump log + else + if [ ! -z "${file##*.gz}" ]; then + ${CMD_PREFIX}save_file ${file} sai_failure_dump true true + else + ${CMD_PREFIX}save_file ${file} sai_failure_dump false true + fi + fi + #Clean up the file once its part of tech support + rm -f $file + done +} + ############################################################################### # Get number of ASICs in the platform # Globals: @@ -1236,99 +1541,113 @@ main() { /proc/pagetypeinfo /proc/partitions /proc/sched_debug /proc/slabinfo \ /proc/softirqs /proc/stat /proc/swaps /proc/sysvipc /proc/timer_list \ /proc/uptime /proc/version /proc/vmallocinfo /proc/vmstat \ - /proc/zoneinfo \ - || abort "${EXT_PROCFS_SAVE_FAILED}" "Proc saving operation failed. Aborting for safety." + /proc/zoneinfo & end_t=$(date +%s%3N) echo "[ Capture Proc State ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO - # Save logs and cores early - save_log_files - save_crash_files - save_warmboot_files - # Save all the processes within each docker - save_cmd "show services" services.summary + save_cmd "show services" services.summary & # Save reboot cause information - save_cmd "show reboot-cause" reboot.cause + save_cmd "show reboot-cause" reboot.cause & + wait local asic="$(/usr/local/bin/sonic-cfggen -y /etc/sonic/sonic_version.yml -v asic_type)" + local device_type=`sonic-db-cli CONFIG_DB hget 'DEVICE_METADATA|localhost' type` # 1st counter snapshot early. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 1 - save_cmd "systemd-analyze blame" "systemd.analyze.blame" - save_cmd "systemd-analyze dump" "systemd.analyze.dump" - save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" + save_cmd "systemd-analyze blame" "systemd.analyze.blame" & + save_cmd "systemd-analyze dump" "systemd.analyze.dump" & + save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" & + wait + + save_platform_info & - save_platform_info + save_cmd "show vlan brief" "vlan.summary" & + save_cmd "show version" "version" & + save_cmd "show platform summary" "platform.summary" & + wait - save_cmd "show vlan brief" "vlan.summary" - save_cmd "show version" "version" - save_cmd "show platform summary" "platform.summary" - save_cmd "cat /host/machine.conf" "machine.conf" - save_cmd "docker stats --no-stream" "docker.stats" + save_cmd "cat /host/machine.conf" "machine.conf" & + save_cmd "docker stats --no-stream" "docker.stats" & + save_cmd "sensors" "sensors" & + wait - save_cmd "sensors" "sensors" - save_cmd "lspci -vvv -xx" "lspci" - save_cmd "lsusb -v" "lsusb" - save_cmd "sysctl -a" "sysctl" + save_cmd "lspci -vvv -xx" "lspci" & + save_cmd "lsusb -v" "lsusb" & + save_cmd "sysctl -a" "sysctl" & + wait - save_ip_info - save_bridge_info + save_ip_info & + save_bridge_info & + wait - save_frr_info - save_bgp_info + save_frr_info & + save_bgp_info & + save_evpn_info & + wait - save_cmd "show interface status -d all" "interface.status" - save_cmd "show interface transceiver presence" "interface.xcvrs.presence" - save_cmd "show interface transceiver eeprom --dom" "interface.xcvrs.eeprom" - save_cmd "show ip interface -d all" "ip.interface" + save_cmd "show interface status -d all" "interface.status" & + save_cmd "show interface transceiver presence" "interface.xcvrs.presence" & + save_cmd "show interface transceiver eeprom --dom" "interface.xcvrs.eeprom" & + save_cmd "show ip interface -d all" "ip.interface" & + wait - save_cmd "lldpctl" "lldpctl" + save_cmd "lldpctl" "lldpctl" & if [[ ( "$NUM_ASICS" > 1 ) ]]; then for (( i=0; i<$NUM_ASICS; i++ )) do - save_cmd "docker exec lldp$i lldpcli show statistics" "lldp$i.statistics" - save_cmd "docker logs bgp$i" "docker.bgp$i.log" - save_cmd "docker logs swss$i" "docker.swss$i.log" + save_cmd "docker exec lldp$i lldpcli show statistics" "lldp$i.statistics" & + save_cmd "docker logs bgp$i" "docker.bgp$i.log" & + save_cmd "docker logs swss$i" "docker.swss$i.log" & done else - save_cmd "docker exec lldp lldpcli show statistics" "lldp.statistics" - save_cmd "docker logs bgp" "docker.bgp.log" - save_cmd "docker logs swss" "docker.swss.log" + save_cmd "docker exec lldp lldpcli show statistics" "lldp.statistics" & + save_cmd "docker logs bgp" "docker.bgp.log" & + save_cmd "docker logs swss" "docker.swss.log" & fi - - save_cmd "ps aux" "ps.aux" - save_cmd "top -b -n 1" "top" - save_cmd "free" "free" - save_cmd "vmstat 1 5" "vmstat" - save_cmd "vmstat -m" "vmstat.m" - save_cmd "vmstat -s" "vmstat.s" - save_cmd "mount" "mount" - save_cmd "df" "df" - save_cmd "dmesg" "dmesg" - - save_nat_info - save_bfd_info - save_redis_info + wait + + save_cmd "ps aux" "ps.aux" & + save_cmd "top -b -n 1" "top" & + save_cmd "free" "free" & + wait + save_cmd "vmstat 1 5" "vmstat" & + save_cmd "vmstat -m" "vmstat.m" & + save_cmd "vmstat -s" "vmstat.s" & + wait + save_cmd "mount" "mount" & + save_cmd "df" "df" & + save_cmd "dmesg" "dmesg" & + wait + + save_nat_info & + save_bfd_info & + wait + save_redis_info & if $DEBUG_DUMP then - save_dump_state_all_ns + save_dump_state_all_ns & fi + wait - save_cmd "docker ps -a" "docker.ps" - save_cmd "docker top pmon" "docker.pmon" + save_cmd "docker ps -a" "docker.ps" & + save_cmd "docker top pmon" "docker.pmon" & if [[ -d ${PLUGINS_DIR} ]]; then local -r dump_plugins="$(find ${PLUGINS_DIR} -type f -executable)" for plugin in $dump_plugins; do # save stdout output of plugin and gzip it - save_cmd "$plugin" "$(basename $plugin)" true + save_cmd "$plugin" "$(basename $plugin)" true & done fi + wait - save_saidump + if [[ "$device_type" != "SpineRouter" ]]; then + save_saidump + fi if [[ "$asic" = "mellanox" ]]; then collect_mellanox @@ -1338,12 +1657,13 @@ main() { collect_broadcom fi + if [ "$asic" = "cisco-8000" ]; then + collect_cisco_8000 + fi + # 2nd counter snapshot late. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 2 - $RM $V -rf $TARDIR - $MKDIR $V -p $TARDIR - $MKDIR $V -p $LOGDIR # Copying the /etc files to a directory and then tar it $CP -r /etc $TARDIR/etc rm_list=$(find -L $TARDIR/etc -maxdepth 5 -type l) @@ -1355,30 +1675,30 @@ main() { # Remove secret from /etc files before tar remove_secret_from_etc_files $TARDIR - start_t=$(date +%s%3N) - ($TAR $V --warning=no-file-removed -rhf $TARFILE -C $DUMPDIR --mode=+rw \ - --exclude="etc/alternatives" \ - --exclude="*/etc/passwd*" \ - --exclude="*/etc/shadow*" \ - --exclude="*/etc/group*" \ - --exclude="*/etc/gshadow*" \ - --exclude="*/etc/ssh*" \ - --exclude="*get_creds*" \ - --exclude="*snmpd.conf*" \ - --exclude="*/etc/mlnx" \ - --exclude="*/etc/mft" \ - --exclude="*/etc/sonic/*.cer" \ - --exclude="*/etc/sonic/*.crt" \ - --exclude="*/etc/sonic/*.pem" \ - --exclude="*/etc/sonic/*.key" \ - --exclude="*/etc/ssl/*.pem" \ - --exclude="*/etc/ssl/certs/*" \ - --exclude="*/etc/ssl/private/*" \ - $BASE/etc \ - || abort "${EXT_TAR_FAILED}" "Tar append operation failed. Aborting for safety.") \ - && $RM $V -rf $TARDIR - end_t=$(date +%s%3N) - echo "[ TAR /etc Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO + # Remove unecessary files + $RM $V -rf $TARDIR/etc/alternatives $TARDIR/etc/passwd* \ + $TARDIR/etc/shadow* $TARDIR/etc/group* $TARDIR/etc/gshadow* \ + $TARDIR/etc/ssh* $TARDIR/etc/mlnx $TARDIR/etc/mft \ + $TARDIR/etc/ssl/certs/* $TARDIR/etc/ssl/private/* + rm_list=$(find -L $TARDIR -type f \( -iname \*.cer -o -iname \*.crt -o \ + -iname \*.pem -o -iname \*.key -o -iname \*snmpd.conf\* -o -iname \*get_creds\* \)) + if [ ! -z "$rm_list" ] + then + rm $rm_list + fi + + save_log_files & + save_crash_files & + save_warmboot_files & + wait + + save_to_tar + + save_sai_failure_dump + + if [[ "$asic" = "mellanox" ]]; then + collect_mellanox_dfw_dumps + fi finalize } @@ -1388,7 +1708,7 @@ main() { ############################################################################### finalize() { # Save techsupport timing profile info - save_file $TECHSUPPORT_TIME_INFO log false + save_file $TECHSUPPORT_TIME_INFO log false true if $DO_COMPRESS; then RC=0 @@ -1615,7 +1935,7 @@ else rm_lock_and_exit else # Lock is valid and the other instance is active. Exit Now - echo "Accquiring lock failed, PID ${PID_PROG} is active" >&2 + echo "Another instance of techsupport running with PID: ${PID_PROG}, please retry after some time..." >&2 exit $EXT_LOCKFAIL fi fi diff --git a/scripts/intfstat b/scripts/intfstat index 1d5da781b..30cfbf084 100755 --- a/scripts/intfstat +++ b/scripts/intfstat @@ -28,6 +28,7 @@ from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate from utilities_common.netstat import ns_diff, table_as_json, STATUS_NA, format_brate, format_prate +from utilities_common.cli import UserCache from swsscommon.swsscommon import SonicV2Connector nstat_fields = ( @@ -274,63 +275,34 @@ def main(): delete_saved_stats = args.delete delete_all_stats = args.delete_all use_json = args.json - tag_name = args.tag if args.tag else "" - uid = str(os.getuid()) + tag_name = args.tag wait_time_in_seconds = args.period interface_name = args.interface if args.interface else "" - # fancy filename with dashes: uid-tag / uid etc - filename_components = [uid, tag_name] + cnstat_file = "intfstat" - cnstat_file = "-".join(filter(None, filename_components)) + cache = UserCache(tag=tag_name) - cnstat_dir = "/tmp/intfstat-" + uid + cache_general = UserCache() + cnstat_dir = cache.get_directory() + cnstat_general_dir = cache_general.get_directory() + + cnstat_fqn_general_file = cnstat_general_dir + "/" + cnstat_file cnstat_fqn_file = cnstat_dir + "/" + cnstat_file if delete_all_stats: - # There is nothing to delete - if not os.path.isdir(cnstat_dir): - sys.exit(0) - - for file in os.listdir(cnstat_dir): - os.remove(cnstat_dir + "/" + file) - - try: - os.rmdir(cnstat_dir) - sys.exit(0) - except IOError as e: - print(e.errno, e) - sys.exit(e) + cache.remove_all() if delete_saved_stats: - try: - os.remove(cnstat_fqn_file) - except IOError as e: - if e.errno != ENOENT: - print(e.errno, e) - sys.exit(1) - finally: - if os.listdir(cnstat_dir) == []: - os.rmdir(cnstat_dir) - sys.exit(0) + cache.remove() intfstat = Intfstat() cnstat_dict, ratestat_dict = intfstat.get_cnstat(rif=interface_name) - # At this point, either we'll create a file or open an existing one. - if not os.path.exists(cnstat_dir): - try: - os.makedirs(cnstat_dir) - except IOError as e: - print(e.errno, e) - sys.exit(1) - if save_fresh_stats: try: # Add the information also to the general file - i.e. without the tag name - if tag_name != '' and tag_name in cnstat_fqn_file.split('/')[-1]: - gen_index = cnstat_fqn_file.rfind('/') - cnstat_fqn_general_file = cnstat_fqn_file[:gen_index] + cnstat_fqn_file[gen_index:].split('-')[0] + if tag_name is not None: if os.path.isfile(cnstat_fqn_general_file): try: general_data = pickle.load(open(cnstat_fqn_general_file, 'rb')) @@ -354,9 +326,6 @@ def main(): sys.exit(0) if wait_time_in_seconds == 0: - gen_index = cnstat_fqn_file.rfind('/') - cnstat_fqn_general_file = cnstat_fqn_file[:gen_index] + cnstat_fqn_file[gen_index:].split('-')[0] - if os.path.isfile(cnstat_fqn_file) or (os.path.isfile(cnstat_fqn_general_file)): try: cnstat_cached_dict = {} diff --git a/scripts/intfutil b/scripts/intfutil index 375e2c1d9..fb351687a 100755 --- a/scripts/intfutil +++ b/scripts/intfutil @@ -5,13 +5,6 @@ import os import re import sys -from natsort import natsorted -from tabulate import tabulate -from utilities_common import constants -from utilities_common import multi_asic as multi_asic_util -from utilities_common.intf_filter import parse_interface_in_filter -from sonic_py_common.interface import get_intf_longname - # mock the redis for unit test purposes # try: if os.environ["UTILITIES_UNIT_TESTING"] == "2": @@ -20,6 +13,8 @@ try: sys.path.insert(0, modules_path) sys.path.insert(0, tests_path) import mock_tables.dbconnector + from mock_platform_sfputil.mock_platform_sfputil import mock_platform_sfputil_helper + mock_platform_sfputil_helper() if os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] == "multi_asic": import mock_tables.mock_multi_asic mock_tables.dbconnector.load_namespace_config() @@ -27,6 +22,14 @@ try: except KeyError: pass +from natsort import natsorted +from tabulate import tabulate +from utilities_common import constants +from utilities_common import multi_asic as multi_asic_util +from utilities_common.intf_filter import parse_interface_in_filter +from utilities_common.platform_sfputil_helper import is_rj45_port, RJ45_PORT_TYPE +from sonic_py_common.interface import get_intf_longname + # ========================== Common interface-utils logic ========================== @@ -49,7 +52,9 @@ PORT_RMT_ADV_SPEEDS = 'rmt_adv_speeds' PORT_INTERFACE_TYPE = 'interface_type' PORT_ADV_INTERFACE_TYPES = 'adv_interface_types' PORT_TPID = "tpid" -OPTICS_TYPE_RJ45 = 'RJ45' +OPTICS_TYPE_RJ45 = RJ45_PORT_TYPE +PORT_LINK_TRAINING = 'link_training' +PORT_LINK_TRAINING_STATUS = 'link_training_status' VLAN_SUB_INTERFACE_SEPARATOR = "." VLAN_SUB_INTERFACE_TYPE = "802.1q-encapsulation" @@ -159,10 +164,10 @@ def appl_db_port_status_get(appl_db, intf_name, status_type): if status is None: return "N/A" if status_type == PORT_SPEED and status != "N/A": - optics_type = state_db_port_optics_get(appl_db, intf_name, PORT_OPTICS_TYPE) + optics_type = port_optics_get(appl_db, intf_name, PORT_OPTICS_TYPE) status = port_speed_parse(status, optics_type) elif status_type == PORT_ADV_SPEEDS and status != "N/A" and status != "all": - optics_type = state_db_port_optics_get(appl_db, intf_name, PORT_OPTICS_TYPE) + optics_type = port_optics_get(appl_db, intf_name, PORT_OPTICS_TYPE) speed_list = status.split(',') new_speed_list = [] for s in natsorted(speed_list): @@ -179,7 +184,7 @@ def state_db_port_status_get(db, intf_name, field): if not status: return "N/A" if field in [PORT_RMT_ADV_SPEEDS] and status not in ["N/A", "all"]: - optics_type = state_db_port_optics_get(db, intf_name, PORT_OPTICS_TYPE) + optics_type = port_optics_get(db, intf_name, PORT_OPTICS_TYPE) speed_list = status.split(',') new_speed_list = [] for s in natsorted(speed_list): @@ -196,7 +201,7 @@ def port_oper_speed_get(db, intf_name): if oper_speed is None or oper_speed == "N/A" or oper_status != "up": return appl_db_port_status_get(db, intf_name, PORT_SPEED) else: - optics_type = state_db_port_optics_get(db, intf_name, PORT_OPTICS_TYPE) + optics_type = port_optics_get(db, intf_name, PORT_OPTICS_TYPE) return port_speed_parse(oper_speed, optics_type) def port_oper_speed_get_raw(db, intf_name): @@ -209,14 +214,17 @@ def port_oper_speed_get_raw(db, intf_name): speed = db.get(db.APPL_DB, PORT_STATUS_TABLE_PREFIX + intf_name, PORT_SPEED) return speed -def state_db_port_optics_get(state_db, intf_name, type): +def port_optics_get(state_db, intf_name, type): """ Get optic type info for port """ full_table_id = PORT_TRANSCEIVER_TABLE_PREFIX + intf_name optics_type = state_db.get(state_db.STATE_DB, full_table_id, type) if optics_type is None: - return "N/A" + if is_rj45_port(intf_name): + return OPTICS_TYPE_RJ45 + else: + return "N/A" return optics_type def merge_dicts(x,y): @@ -323,13 +331,13 @@ def po_speed_dict(po_int_dict, appl_db): # If no speed was returned, append None without format po_list.append(None) else: - optics_type = state_db_port_optics_get(appl_db, value[0], PORT_OPTICS_TYPE) + optics_type = port_optics_get(appl_db, value[0], PORT_OPTICS_TYPE) interface_speed = port_speed_parse(interface_speed, optics_type) po_list.append(interface_speed) elif len(value) > 1: for intf in value: temp_speed = port_oper_speed_get_raw(appl_db, intf) - optics_type = state_db_port_optics_get(appl_db, intf, PORT_OPTICS_TYPE) + optics_type = port_optics_get(appl_db, intf, PORT_OPTICS_TYPE) temp_speed = int(temp_speed) if temp_speed else 0 agg_speed_list.append(temp_speed) interface_speed = sum(agg_speed_list) @@ -475,7 +483,7 @@ class IntfStatus(object): config_db_vlan_port_keys_get(self.combined_int_to_vlan_po_dict, self.front_panel_ports_list, key), appl_db_port_status_get(self.db, key, PORT_OPER_STATUS), appl_db_port_status_get(self.db, key, PORT_ADMIN_STATUS), - state_db_port_optics_get(self.db, key, PORT_OPTICS_TYPE), + port_optics_get(self.db, key, PORT_OPTICS_TYPE), appl_db_port_status_get(self.db, key, PORT_PFC_ASYM_STATUS))) for po, value in self.portchannel_speed_dict.items(): @@ -739,6 +747,67 @@ class IntfTpid(object): self.table += self.generate_intf_tpid() +# ========================== interface-link-training logic ========================== +header_link_training = ['Interface', 'LT Oper', 'LT Admin', 'Oper', 'Admin'] + +class IntfLinkTrainingStatus(object): + + def __init__(self, intf_name, namespace_option, display_option): + self.db = None + self.config_db = None + self.table = [] + self.multi_asic = multi_asic_util.MultiAsic( + display_option, namespace_option) + + if intf_name is not None and intf_name == SUB_PORT: + self.intf_name = None + else: + self.intf_name = intf_name + + def display_link_training_status(self): + self.get_intf_link_training_status() + # Sorting and tabulating the result table. + sorted_table = natsorted(self.table) + print(tabulate(sorted_table, header_link_training, tablefmt="simple", stralign='right')) + + @multi_asic_util.run_on_multi_asic + def get_intf_link_training_status(self): + self.front_panel_ports_list = get_frontpanel_port_list(self.config_db) + self.appl_db_keys = appl_db_keys_get(self.db, self.front_panel_ports_list, self.intf_name) + if self.appl_db_keys: + self.table += self.generate_link_training_status() + + def generate_link_training_status(self): + """ + Generate interface-link-training output + """ + + i = {} + table = [] + key = [] + + # + # Iterate through all the keys and append port's associated state to + # the result table. + # + for i in self.appl_db_keys: + key = re.split(':', i, maxsplit=1)[-1].strip() + if key in self.front_panel_ports_list: + if self.multi_asic.skip_display(constants.PORT_OBJ, key): + continue + lt_admin = appl_db_port_status_get(self.db, key, PORT_LINK_TRAINING) + if lt_admin not in ['on', 'off']: + lt_admin = '-' + lt_status = state_db_port_status_get(self.db, key, PORT_LINK_TRAINING_STATUS) + if lt_status in ['N/A', '', None]: + lt_status = 'off' + table.append((key, + lt_status.replace('_', ' '), + lt_admin, + appl_db_port_status_get(self.db, key, PORT_OPER_STATUS), + appl_db_port_status_get(self.db, key, PORT_ADMIN_STATUS))) + return table + def main(): parser = argparse.ArgumentParser(description='Display Interface information', formatter_class=argparse.RawTextHelpFormatter) @@ -759,6 +828,9 @@ def main(): elif args.command == "tpid": interface_tpid = IntfTpid(args.interface, args.namespace, args.display) interface_tpid.display_intf_tpid() + elif args.command == "link_training": + interface_lt_status = IntfLinkTrainingStatus(args.interface, args.namespace, args.display) + interface_lt_status.display_link_training_status() sys.exit(0) diff --git a/scripts/ipintutil b/scripts/ipintutil index 5eb1f6652..c61c622a8 100755 --- a/scripts/ipintutil +++ b/scripts/ipintutil @@ -193,9 +193,13 @@ def get_ip_intfs_in_namespace(af, namespace, display): return ip_intfs -def display_ip_intfs(ip_intfs): +def display_ip_intfs(ip_intfs,address_family): header = ['Interface', 'Master', 'IPv4 address/mask', 'Admin/Oper', 'BGP Neighbor', 'Neighbor IP'] + + if address_family == 'ipv6': + header[2] = 'IPv6 address/mask' + data = [] for ip_intf, v in natsorted(ip_intfs.items()): ip_address = v['ipaddr'][0][1] @@ -265,7 +269,7 @@ def main(): load_db_config() ip_intfs = get_ip_intfs(af, namespace, display) - display_ip_intfs(ip_intfs) + display_ip_intfs(ip_intfs,args.address_family) sys.exit(0) diff --git a/scripts/lag_keepalive.py b/scripts/lag_keepalive.py new file mode 100644 index 000000000..04ac01a07 --- /dev/null +++ b/scripts/lag_keepalive.py @@ -0,0 +1,102 @@ +#!/usr/bin/env python3 + +from scapy.config import conf +conf.ipv6_enabled = False +from scapy.all import sendp, sniff +from swsscommon.swsscommon import ConfigDBConnector +import time, threading, traceback +import syslog + +SYSLOG_ID = 'lag_keepalive' + + +def log_info(msg): + syslog.openlog(SYSLOG_ID) + syslog.syslog(syslog.LOG_INFO, msg) + syslog.closelog() + + +def log_error(msg): + syslog.openlog(SYSLOG_ID) + syslog.syslog(syslog.LOG_ERR, msg) + syslog.closelog() + + +def sniff_lacpdu(device_mac, lag_member, lag_member_to_packet): + sniffed_packet = sniff(iface=lag_member, + filter="ether proto 0x8809 and ether src {}".format(device_mac), + count=1, timeout=30) + lag_member_to_packet[lag_member] = sniffed_packet + + +def get_lacpdu_per_lag_member(): + appDB = ConfigDBConnector() + appDB.db_connect('APPL_DB') + appDB_lag_info = appDB.get_keys('LAG_MEMBER_TABLE') + configDB = ConfigDBConnector() + configDB.db_connect('CONFIG_DB') + device_mac = configDB.get(configDB.CONFIG_DB, "DEVICE_METADATA|localhost", "mac") + hwsku = configDB.get(configDB.CONFIG_DB, "DEVICE_METADATA|localhost", "hwsku") + active_lag_members = list() + lag_member_to_packet = dict() + sniffer_threads = list() + for lag_entry in appDB_lag_info: + lag_name = str(lag_entry[0]) + oper_status = appDB.get(appDB.APPL_DB,"LAG_TABLE:{}".format(lag_name), "oper_status") + if oper_status == "up": + # only apply the workaround for active lags + lag_member = str(lag_entry[1]) + active_lag_members.append(lag_member) + # use threading to capture lacpdus from several lag members simultaneously + sniffer_thread = threading.Thread(target=sniff_lacpdu, + args=(device_mac, lag_member, lag_member_to_packet)) + sniffer_thread.start() + sniffer_threads.append(sniffer_thread) + + # sniff for lacpdu should finish in <= 30s. sniff timeout is also set to 30s + for sniffer in sniffer_threads: + sniffer.join(timeout=30) + + return active_lag_members, lag_member_to_packet + + +def lag_keepalive(lag_member_to_packet): + while True: + for lag_member, packet in lag_member_to_packet.items(): + try: + sendp(packet, iface=lag_member, verbose=False) + except Exception: + # log failure and continue to send lacpdu + traceback_msg = traceback.format_exc() + log_error("Failed to send LACPDU packet from interface {} with error: {}".format( + lag_member, traceback_msg)) + continue + log_info("sent LACPDU packets via {}".format(lag_member_to_packet.keys())) + time.sleep(1) + + +def main(): + while True: + try: + active_lag_members, lag_member_to_packet = get_lacpdu_per_lag_member() + if len(active_lag_members) != len(lag_member_to_packet.keys()): + log_error("Failed to capture LACPDU packets for some lag members. " +\ + "Active lag members: {}. LACPDUs captured for: {}".format( + active_lag_members, lag_member_to_packet.keys())) + + log_info("ready to send LACPDU packets via {}".format(lag_member_to_packet.keys())) + except Exception: + traceback_msg = traceback.format_exc() + log_error("Failed to get LAG members and LACPDUs with error: {}".format( + traceback_msg)) + # keep attempting until sniffed packets are ready + continue + # if no exceptions are thrown, break from loop as LACPDUs are ready to be sent + break + + if lag_member_to_packet: + # start an infinite loop to keep sending lacpdus from lag member ports + lag_keepalive(lag_member_to_packet) + +if __name__ == "__main__": + main() diff --git a/scripts/mellanox_buffer_migrator.py b/scripts/mellanox_buffer_migrator.py index 6706969be..187e77afd 100755 --- a/scripts/mellanox_buffer_migrator.py +++ b/scripts/mellanox_buffer_migrator.py @@ -101,7 +101,7 @@ def __init__(self, configDB, appDB, stateDB): self.sku = device_data.get('hwsku') self.ready = True if not self.platform or not self.sku: - log.log_error("Trying to get DEVICE_METADATA from DB but doesn't exist, skip migration") + log.log_notice("Trying to get DEVICE_METADATA from DB but doesn't exist, skip migration") self.ready = False self.spc1_platforms = ["x86_64-mlnx_msn2010-r0", "x86_64-mlnx_msn2100-r0", "x86_64-mlnx_msn2410-r0", "x86_64-mlnx_msn2700-r0", "x86_64-mlnx_msn2740-r0"] diff --git a/scripts/memory_threshold_check.py b/scripts/memory_threshold_check.py new file mode 100644 index 000000000..ba54c7296 --- /dev/null +++ b/scripts/memory_threshold_check.py @@ -0,0 +1,243 @@ +#!/usr/bin/env python3 + +import sys + +import sonic_py_common.logger +from swsscommon.swsscommon import ConfigDBConnector, SonicV2Connector +from utilities_common.auto_techsupport_helper import STATE_DB + +# Exit codes +EXIT_SUCCESS = 0 # Success +EXIT_FAILURE = 1 # General failure occurred, no techsupport is invoked +EXIT_THRESHOLD_CROSSED = 2 # Memory threshold crossed, techsupport is invoked + +SYSLOG_IDENTIFIER = "memory_threshold_check" + +# Config DB tables +AUTO_TECHSUPPORT = "AUTO_TECHSUPPORT" +AUTO_TECHSUPPORT_FEATURE = "AUTO_TECHSUPPORT_FEATURE" + +# State DB docker stats table +DOCKER_STATS = "DOCKER_STATS" + +# (%) Default value for available memory left in the system +DEFAULT_MEMORY_AVAILABLE_THRESHOLD = 10 +# (MB) Default value for minimum available memory in the system to run techsupport +DEFAULT_MEMORY_AVAILABLE_MIN_THRESHOLD = 200 +# (%) Default value for available memory inside container +DEFAULT_MEMORY_AVAILABLE_FEATURE_THRESHOLD = 0 + +MB_TO_KB_MULTIPLIER = 1024 + +# Global logger instance +logger = sonic_py_common.logger.Logger(SYSLOG_IDENTIFIER) + + +class MemoryCheckerException(Exception): + """General memory checker exception""" + + pass + + +class MemoryStats: + """MemoryStats provides an interface to query memory statistics of the system and per feature.""" + + def __init__(self, state_db): + """Initialize MemoryStats + + Args: + state_db (swsscommon.DBConnector): state DB connector instance + """ + self.state_db = state_db + + def get_sys_memory_stats(self): + """Returns system memory statistic dictionary, reflects the /proc/meminfo + + Returns: + Dictionary of strings to integers where integer values + represent memory amount in Kb, e.g: + { + "MemTotal": 8104856, + "MemAvailable": 6035192, + ... + } + """ + with open("/proc/meminfo") as fd: + lines = fd.read().split("\n") + rows = [line.split() for line in lines] + + # e.g row is ('MemTotal:', '8104860', 'kB') + # key is the first element with removed remove last ':'. + # value is the second element converted to int. + def row_to_key(row): + return row[0][:-1] + + def row_to_value(row): + return int(row[1]) + + return {row_to_key(row): row_to_value(row) for row in rows if len(row) >= 2} + + def get_containers_memory_usage(self): + """Returns per container memory usage, reflects the DOCKER_STATS state DB table + + Returns: + Dictionary of strings to floats where floating point values + represent memory usage of the feature container which is carefully + calculated for us by the dockerd and published by procdockerstatsd, e.g: + + { + "swss": 1.5, + "teamd": 10.92, + ... + } + """ + result = {} + dockers = self.state_db.keys(STATE_DB, DOCKER_STATS + "|*") + stats = [ + stat for stat in [self.state_db.get_all(STATE_DB, key) for key in dockers] if stat is not None + ] + + for stat in stats: + try: + name = stat["NAME"] + mem_usage = float(stat["MEM%"]) + except KeyError as err: + continue + except ValueError as err: + logger.log_error(f'Failed to parse memory usage for "{stat}": {err}') + raise MemoryCheckerException(err) + + result[name] = mem_usage + + return result + + +class Config: + def __init__(self, cfg_db): + self.table = cfg_db.get_table(AUTO_TECHSUPPORT) + self.feature_table = cfg_db.get_table(AUTO_TECHSUPPORT_FEATURE) + + config = self.table.get("GLOBAL") + + self.memory_available_threshold = self.parse_value_from_db( + config, + "available_mem_threshold", + float, + DEFAULT_MEMORY_AVAILABLE_THRESHOLD, + ) + self.memory_available_min_threshold = self.parse_value_from_db( + config, + "min_available_mem", + float, + DEFAULT_MEMORY_AVAILABLE_MIN_THRESHOLD, + ) * MB_TO_KB_MULTIPLIER + + keys = self.feature_table.keys() + self.feature_config = {} + for key in keys: + config = self.feature_table.get(key) + + self.feature_config[key] = self.parse_value_from_db( + config, + "available_mem_threshold", + float, + DEFAULT_MEMORY_AVAILABLE_FEATURE_THRESHOLD, + ) + + @staticmethod + def parse_value_from_db(config, key, converter, default): + value = config.get(key) + if not value: + return default + try: + return converter(value) + except ValueError as err: + logger.log_error(f'Failed to parse {key} value "{value}": {err}') + raise MemoryCheckerException(err) + + +class MemoryChecker: + """Business logic of the memory checker""" + + def __init__(self, stats, config): + """Initialize MemoryChecker""" + self.stats = stats + self.config = config + + def run_check(self): + """Runs the checks and returns a tuple of check result boolean + and a container name or empty string if the check failed for the host. + + Returns: + (bool, str) + """ + # don't bother getting stats if available memory threshold is set to 0 + if self.config.memory_available_threshold: + memory_stats = self.stats.get_sys_memory_stats() + memory_free = memory_stats["MemAvailable"] + memory_total = memory_stats["MemTotal"] + memory_free_threshold = ( + memory_total * self.config.memory_available_threshold / 100 + ) + memory_min_free_threshold = self.config.memory_available_min_threshold + + # free memory amount is less then configured minimum required memory for + # running "show techsupport" + if memory_free <= memory_min_free_threshold: + logger.log_error( + f"Free memory {memory_free} is less then " + f"min free memory threshold {memory_min_free_threshold}" + ) + return (False, "") + + # free memory amount is less then configured threshold + if memory_free <= memory_free_threshold: + logger.log_error( + f"Free memory {memory_free} is less then " + f"free memory threshold {memory_free_threshold}" + ) + return (False, "") + + container_memory_usage = self.stats.get_containers_memory_usage() + for feature, memory_available_threshold in self.config.feature_config.items(): + for container, memory_usage in container_memory_usage.items(): + # startswith to handle multi asic instances + if not container.startswith(feature): + continue + + # free memory amount is less then configured threshold + if (100 - memory_usage) <= memory_available_threshold: + logger.log_error( + f"Available {100 - memory_usage} for {feature} is less " + f"then free memory threshold {memory_available_threshold}" + ) + return (False, feature) + + return (True, "") + + +def main(): + cfg_db = ConfigDBConnector(use_unix_socket_path=True) + cfg_db.connect() + state_db = SonicV2Connector(use_unix_socket_path=True) + state_db.connect(STATE_DB) + + config = Config(cfg_db) + mem_stats = MemoryStats(state_db) + mem_checker = MemoryChecker(mem_stats, config) + + try: + passed, name = mem_checker.run_check() + if not passed: + return EXIT_THRESHOLD_CROSSED, name + except MemoryCheckerException as err: + logger.log_error(f"Failure occurred {err}") + return EXIT_FAILURE, "" + + return EXIT_SUCCESS, "" + + +if __name__ == "__main__": + rc, component = main() + print(component) + sys.exit(rc) diff --git a/scripts/memory_threshold_check_handler.py b/scripts/memory_threshold_check_handler.py new file mode 100644 index 000000000..1d8a82fb2 --- /dev/null +++ b/scripts/memory_threshold_check_handler.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python3 + +import sys +import os +import syslog +from swsscommon.swsscommon import SonicV2Connector +from utilities_common.auto_techsupport_helper import * + +# Exit codes +EXIT_SUCCESS = 0 # Success +EXIT_FAILURE = 1 # General failure occurred, no techsupport is invoked + +def main(): + output = os.environ.get("MONIT_DESCRIPTION") + syslog.openlog(logoption=syslog.LOG_PID) + db = SonicV2Connector(use_unix_socket_path=True) + db.connect(CFG_DB) + db.connect(STATE_DB) + if not output: + syslog.syslog( + syslog.LOG_ERR, + "Expected to get output from environment variable MONIT_DESCRIPTION" + ) + return EXIT_FAILURE + if "--" not in output: + syslog.syslog(syslog.LOG_ERR, "Unexpected value in environment variable MONIT_DESCRIPTION") + return EXIT_FAILURE + + monit_output = output.split("--")[1].strip() + # If the output of memory_threshold_check is empty + # that means that memory threshold check failed for the host. + # In this case monit inserts "no output" string in MONIT_DESCRIPTION + if monit_output == "no output": + container = None + else: + container = monit_output + invoke_ts_command_rate_limited(db, EVENT_TYPE_MEMORY, container) + + return EXIT_SUCCESS + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/scripts/mmuconfig b/scripts/mmuconfig index c0338a176..ebeb74fda 100755 --- a/scripts/mmuconfig +++ b/scripts/mmuconfig @@ -3,7 +3,7 @@ """ mmuconfig is the utility to show and change mmu configuration -usage: mmuconfig [-h] [-v] [-l] [-p PROFILE] [-a ALPHA] [-vv] +usage: mmuconfig [-h] [-v] [-l] [-p PROFILE] [-a ALPHA] [-vv] [-s staticth] optional arguments: -h --help show this help message and exit @@ -12,6 +12,7 @@ optional arguments: -l --list show mmu configuration -p --profile specify buffer profile name -a --alpha set n for dyanmic threshold alpha 2^(n) + -s --staticth set static threshold """ @@ -20,14 +21,17 @@ import sys import argparse import tabulate import traceback +import json BUFFER_POOL_TABLE_NAME = "BUFFER_POOL" BUFFER_PROFILE_TABLE_NAME = "BUFFER_PROFILE" DEFAULT_LOSSLESS_BUFFER_PARAMETER_NAME = "DEFAULT_LOSSLESS_BUFFER_PARAMETER" DYNAMIC_THRESHOLD = "dynamic_th" +STATIC_THRESHOLD = "static_th" BUFFER_PROFILE_FIELDS = { - "alpha": DYNAMIC_THRESHOLD + "alpha": DYNAMIC_THRESHOLD, + "staticth" : STATIC_THRESHOLD } # mock the redis for unit test purposes # @@ -44,18 +48,11 @@ except KeyError: from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector -BUFFER_POOL_TABLE_NAME = "BUFFER_POOL" -BUFFER_PROFILE_TABLE_NAME = "BUFFER_PROFILE" - -DYNAMIC_THRESHOLD = "dynamic_th" -BUFFER_PROFILE_FIELDS = { - "alpha": DYNAMIC_THRESHOLD -} - class MmuConfig(object): - def __init__(self, verbose, config): + def __init__(self, verbose, config, filename): self.verbose = verbose self.config = config + self.filename = filename # Set up db connections if self.config: @@ -120,24 +117,34 @@ class MmuConfig(object): print("No buffer profile information available") def set(self, profile, field_alias, value): - if os.geteuid() != 0: + if os.geteuid() != 0 and os.environ.get("UTILITIES_UNIT_TESTING", "0") != "2": sys.exit("Root privileges required for this operation") field = BUFFER_PROFILE_FIELDS[field_alias] + buf_profs = self.db.get_table(BUFFER_PROFILE_TABLE_NAME) + v = int(value) if field == DYNAMIC_THRESHOLD: - v = int(value) if v < -8 or v > 8: sys.exit("Invalid alpha value: 2^(%s)" % (value)) - buf_profs = self.db.get_table(BUFFER_PROFILE_TABLE_NAME) if profile in buf_profs and DYNAMIC_THRESHOLD not in buf_profs[profile]: sys.exit("%s not using dynamic thresholding" % (profile)) + elif field == STATIC_THRESHOLD: + if v < 0: + sys.exit("Invalid static threshold value: (%s)" % (value)) + + if profile in buf_profs and STATIC_THRESHOLD not in buf_profs[profile]: + sys.exit("%s not using static threshold" % (profile)) else: sys.exit("Set field %s not supported" % (field)) if self.verbose: print("Setting %s %s value to %s" % (profile, field, value)) self.db.mod_entry(BUFFER_PROFILE_TABLE_NAME, profile, {field: value}) + if self.filename is not None: + prof_table = self.db.get_table(BUFFER_PROFILE_TABLE_NAME) + with open(self.filename, "w") as fd: + json.dump(prof_table, fd) def main(config): @@ -148,6 +155,7 @@ def main(config): parser.add_argument('-l', '--list', action='store_true', help='show mmu configuration') parser.add_argument('-p', '--profile', type=str, help='specify buffer profile name', default=None) parser.add_argument('-a', '--alpha', type=str, help='set n for dyanmic threshold alpha 2^(n)', default=None) + parser.add_argument('-s', '--staticth', type=str, help='set static threshold', default=None) parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.0') else: parser = argparse.ArgumentParser(description='Show buffer state', @@ -157,16 +165,23 @@ def main(config): parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.0') parser.add_argument('-vv', '--verbose', action='store_true', help='verbose output', default=False) + parser.add_argument('-f', '--filename', help='file used by mock tests', type=str, default=None) + + if os.environ.get("UTILITIES_UNIT_TESTING", "0") == "2": + sys.argv.extend(['-f', '/tmp/mmuconfig']) + args = parser.parse_args() try: - mmu_cfg = MmuConfig(args.verbose, config) + mmu_cfg = MmuConfig(args.verbose, config, args.filename) if args.list: mmu_cfg.list() elif config and args.profile: if args.alpha: mmu_cfg.set(args.profile, "alpha", args.alpha) + elif args.staticth: + mmu_cfg.set(args.profile, "staticth", args.staticth) else: parser.print_help() sys.exit(1) diff --git a/scripts/neighbor_advertiser b/scripts/neighbor_advertiser index 131c17216..f8a119ab0 100644 --- a/scripts/neighbor_advertiser +++ b/scripts/neighbor_advertiser @@ -43,7 +43,7 @@ MIRROR_ACL_TABLE_NAME = 'EVERFLOW' MIRROR_ACL_TABLEV6_NAME = 'EVERFLOWV6' MIRROR_ACL_RULE_NAME = 'rule_arp' MIRROR_ACL_RULEV6_NAME = 'rule_nd' -VXLAN_TUNNEL_NAME = 'neighbor_advertiser' +VXLAN_TUNNEL_NAME = 'neigh_adv' VXLAN_TUNNEL_MAP_PREFIX = 'map_' diff --git a/scripts/pfcstat b/scripts/pfcstat index 6d1136152..fb7e6018b 100755 --- a/scripts/pfcstat +++ b/scripts/pfcstat @@ -18,9 +18,6 @@ from natsort import natsorted from tabulate import tabulate from sonic_py_common.multi_asic import get_external_ports -from utilities_common.netstat import ns_diff, STATUS_NA, format_number_with_comma -from utilities_common import multi_asic as multi_asic_util -from utilities_common import constants # mock the redis for unit test purposes # try: @@ -37,6 +34,12 @@ try: except KeyError: pass +from utilities_common.netstat import ns_diff, STATUS_NA, format_number_with_comma +from utilities_common import multi_asic as multi_asic_util +from utilities_common import constants +from utilities_common.cli import UserCache + + PStats = namedtuple("PStats", "pfc0, pfc1, pfc2, pfc3, pfc4, pfc5, pfc6, pfc7") header_Rx = ['Port Rx', 'PFC0', 'PFC1', 'PFC2', 'PFC3', 'PFC4', 'PFC5', 'PFC6', 'PFC7'] @@ -224,10 +227,10 @@ Examples: save_fresh_stats = args.clear delete_all_stats = args.delete - uid = str(os.getuid()) - cnstat_file = uid + cache = UserCache() + cnstat_file = 'pfcstat' - cnstat_dir = os.path.join(os.sep, "tmp", "pfcstat-{}".format(uid)) + cnstat_dir = cache.get_directory() cnstat_fqn_file_rx = os.path.join(cnstat_dir, "{}rx".format(cnstat_file)) cnstat_fqn_file_tx = os.path.join(cnstat_dir, "{}tx".format(cnstat_file)) @@ -239,15 +242,7 @@ Examples: pfcstat = Pfcstat(args.namespace, args.show) if delete_all_stats: - for file in os.listdir(cnstat_dir): - os.remove(os.path.join(cnstat_dir, file)) - - try: - os.rmdir(cnstat_dir) - sys.exit(0) - except IOError as e: - print(e.errno, e) - sys.exit(e) + cache.remove() """ Get the counters of pfc rx counter @@ -259,14 +254,6 @@ Examples: """ cnstat_dict_tx = deepcopy(pfcstat.get_cnstat(False)) - # At this point, either we'll create a file or open an existing one. - if not os.path.exists(cnstat_dir): - try: - os.makedirs(cnstat_dir) - except IOError as e: - print(e.errno, e) - sys.exit(1) - if save_fresh_stats: try: pickle.dump(cnstat_dict_rx, open(cnstat_fqn_file_rx, 'wb')) diff --git a/scripts/pg-drop b/scripts/pg-drop index b437e53bb..40b4e863d 100755 --- a/scripts/pg-drop +++ b/scripts/pg-drop @@ -26,6 +26,7 @@ try: except KeyError: pass +from utilities_common.cli import UserCache from swsscommon.swsscommon import ConfigDBConnector, SonicV2Connector STATUS_NA = 'N/A' @@ -38,8 +39,7 @@ COUNTERS_PG_PORT_MAP = "COUNTERS_PG_PORT_MAP" COUNTERS_PG_INDEX_MAP = "COUNTERS_PG_INDEX_MAP" def get_dropstat_dir(): - dropstat_dir_prefix = '/tmp/dropstat' - return "{}-{}/".format(dropstat_dir_prefix, os.getuid()) + return UserCache().get_directory() class PgDropStat(object): @@ -58,15 +58,15 @@ class PgDropStat(object): Get port ID using object ID """ port_id = self.counters_db.get(self.counters_db.COUNTERS_DB, COUNTERS_PG_PORT_MAP, oid) - if port_id is None: - print("Port is not available for oid '{}'".format(oid), file=sys.stderr) + if not port_id: + print("Port is not available for oid '{}'".format(oid)) sys.exit(1) return port_id # Get all ports self.counter_port_name_map = self.counters_db.get_all(self.counters_db.COUNTERS_DB, COUNTERS_PORT_NAME_MAP) - if self.counter_port_name_map is None: - print("COUNTERS_PORT_NAME_MAP is empty!", file=sys.stderr) + if not self.counter_port_name_map: + print("COUNTERS_PORT_NAME_MAP is empty!") sys.exit(1) self.port_pg_map = {} @@ -78,8 +78,8 @@ class PgDropStat(object): # Get PGs for each port counter_pg_name_map = self.counters_db.get_all(self.counters_db.COUNTERS_DB, COUNTERS_PG_NAME_MAP) - if counter_pg_name_map is None: - print("COUNTERS_PG_NAME_MAP is empty!", file=sys.stderr) + if not counter_pg_name_map: + print("COUNTERS_PG_NAME_MAP is empty!") sys.exit(1) for pg in counter_pg_name_map: @@ -101,8 +101,8 @@ class PgDropStat(object): oid - object ID for entry in redis """ pg_index = self.counters_db.get(self.counters_db.COUNTERS_DB, COUNTERS_PG_INDEX_MAP, oid) - if pg_index is None: - print("Priority group index is not available for oid '{}'".format(table_id), file=sys.stderr) + if not pg_index: + print("Priority group index is not available for oid '{}'".format(oid)) sys.exit(1) return pg_index @@ -111,21 +111,31 @@ class PgDropStat(object): Construct header for table with PG counters """ if pg_drop_type is None: - print("Header info is not available!", file=sys.stderr) + print("Header info is not available!") sys.exit(1) self.header_list = ['Port'] header_map = pg_drop_type["obj_map"] - single_key = list(header_map.keys())[0] - header_len = len(header_map[single_key]) - min_idx = sys.maxsize - for name, counter_oid in header_map[single_key].items(): - curr_idx = int(pg_drop_type["idx_func"](counter_oid)) - min_idx = min(min_idx, curr_idx) + header_idx_set = set() + for port in header_map.keys(): + for element in header_map[port].keys(): + element_idx = int(element.split(':')[1]) + header_idx_set.add(element_idx) - self.min_idx = min_idx - self.header_list += ["{}{}".format(pg_drop_type["header_prefix"], idx) for idx in range(self.min_idx, self.min_idx + header_len)] + if len(header_idx_set) == 0: + print("Header info is not available!") + sys.exit(1) + + header_idx_list = list(header_idx_set) + header_idx_list.sort() + + self.header_idx_to_pos = {} + for i in header_idx_list: + self.header_idx_to_pos[i] = header_idx_list.index(i) + + self.min_idx = header_idx_list[0] + self.header_list += ["{}{}".format(pg_drop_type["header_prefix"], idx) for idx in header_idx_list] def get_counters(self, table_prefix, port_obj, idx_func, counter_name): """ @@ -143,7 +153,7 @@ class PgDropStat(object): full_table_id = table_prefix + obj_id old_collected_data = port_drop_ckpt.get(name,{})[full_table_id] if len(port_drop_ckpt) > 0 else 0 idx = int(idx_func(obj_id)) - pos = idx - self.min_idx + pos = self.header_idx_to_pos[idx] counter_data = self.counters_db.get(self.counters_db.COUNTERS_DB, full_table_id, counter_name) if counter_data is None: fields[pos] = STATUS_NA diff --git a/scripts/portconfig b/scripts/portconfig index 25647cc45..8dc68d4e0 100755 --- a/scripts/portconfig +++ b/scripts/portconfig @@ -21,9 +21,13 @@ optional arguments: -S --adv-speeds port advertised speeds -t --interface-type port interface type -T --adv-interface-types port advertised interface types + -lt --link-training port link training mode + -P --tx-power 400G ZR modulet target Tx output power (dBm) + -F --laser-freq 400G ZR module 75GHz grid frequency (GHz) """ import os import sys +import decimal import argparse # mock the redis for unit test purposes # @@ -49,6 +53,9 @@ PORT_AUTONEG_CONFIG_FIELD_NAME = "autoneg" PORT_ADV_SPEEDS_CONFIG_FIELD_NAME = "adv_speeds" PORT_INTERFACE_TYPE_CONFIG_FIELD_NAME = "interface_type" PORT_ADV_INTERFACE_TYPES_CONFIG_FIELD_NAME = "adv_interface_types" +PORT_LINK_TRAINING_CONFIG_FIELD_NAME = "link_training" +PORT_XCVR_LASER_FREQ_FIELD_NAME = "laser_freq" +PORT_XCVR_TX_POWER_FIELD_NAME = "tx_power" PORT_CHANNEL_TABLE_NAME = "PORTCHANNEL" PORT_CHANNEL_MBR_TABLE_NAME = "PORTCHANNEL_MEMBER" TPID_CONFIG_FIELD_NAME = "tpid" @@ -58,7 +65,7 @@ SWITCH_CAPABILITY = "SWITCH_CAPABILITY|switch" # STATE_DB constants PORT_STATE_TABLE_NAME = "PORT_TABLE" PORT_STATE_SUPPORTED_SPEEDS = "supported_speeds" - +PORT_STATE_SUPPORTED_FECS = "supported_fecs" VALID_INTERFACE_TYPE_SET = set(['CR','CR2','CR4','SR','SR2','SR4', 'LR','LR4','KR','KR4','CAUI','GMII', @@ -111,6 +118,9 @@ class portconfig(object): print(port_tables[port]) def set_speed(self, port, speed): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + if self.verbose: print("Setting speed %s on port %s" % (speed, port)) supported_speeds_str = self.get_supported_speeds(port) or '' @@ -122,22 +132,68 @@ class portconfig(object): self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_SPEED_CONFIG_FIELD_NAME: speed}) def set_fec(self, port, fec): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + if self.verbose: print("Setting fec %s on port %s" % (fec, port)) + supported_fecs = self.get_supported_fecs(port) + if fec not in supported_fecs: + if supported_fecs: + print('fec {} is not in {}'.format(fec, supported_fecs)) + else: + print('Setting fec is not supported on port {}'.format(port)) + exit(1) self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_FEC_CONFIG_FIELD_NAME: fec}) def set_mtu(self, port, mtu): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + if self.verbose: print("Setting mtu %s on port %s" % (mtu, port)) self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_MTU_CONFIG_FIELD_NAME: mtu}) + def set_link_training(self, port, mode): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + + if self.verbose: + print("Setting link-training %s on port %s" % (mode, port)) + lt_modes = ['on', 'off'] + if mode not in lt_modes: + print('Invalid mode specified: {}'.format(mode)) + print('Valid modes: {}'.format(','.join(lt_modes))) + exit(1) + self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_LINK_TRAINING_CONFIG_FIELD_NAME: mode}) + def set_autoneg(self, port, mode): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + if self.verbose: print("Setting autoneg %s on port %s" % (mode, port)) mode = 'on' if mode == 'enabled' else 'off' self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_AUTONEG_CONFIG_FIELD_NAME: mode}) + def set_tx_power(self, port, tx_power): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + + print("Setting target Tx output power to %s dBm on port %s" % (tx_power, port)) + self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_XCVR_TX_POWER_FIELD_NAME: tx_power}) + + def set_laser_freq(self, port, laser_freq): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + + print("Setting laser frequency to %s GHz on port %s" % (laser_freq, port)) + self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_XCVR_LASER_FREQ_FIELD_NAME: laser_freq}) + def set_adv_speeds(self, port, adv_speeds): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + if self.verbose: print("Setting adv_speeds %s on port %s" % (adv_speeds, port)) @@ -159,6 +215,9 @@ class portconfig(object): self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_ADV_SPEEDS_CONFIG_FIELD_NAME: adv_speeds}) def set_interface_type(self, port, interface_type): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + if self.is_rj45_port: print("Setting RJ45 ports' type is not supported") exit(1) @@ -171,6 +230,9 @@ class portconfig(object): self.db.mod_entry(PORT_TABLE_NAME, port, {PORT_INTERFACE_TYPE_CONFIG_FIELD_NAME: interface_type}) def set_adv_interface_types(self, port, adv_interface_types): + if self.is_lag: + raise Exception("Invalid port %s" % (port)) + if self.is_rj45_port: print("Setting RJ45 ports' advertised types is not supported") exit(1) @@ -198,6 +260,26 @@ class portconfig(object): state_db.connect(state_db.STATE_DB) return state_db.get(state_db.STATE_DB, '{}|{}'.format(PORT_STATE_TABLE_NAME, port), PORT_STATE_SUPPORTED_SPEEDS) + def get_supported_fecs(self, port): + # If there is supported_fecs exposed in STATE_DB, let's use it. + # Otherwise, take the default + if not self.namespace: + state_db = SonicV2Connector(host="127.0.0.1") + else: + state_db = SonicV2Connector(host="127.0.0.1", namespace=self.namespace, use_unix_socket_path=True) + state_db.connect(state_db.STATE_DB) + + supported_fecs_str = state_db.get(state_db.STATE_DB, '{}|{}'.format(PORT_STATE_TABLE_NAME, port), PORT_STATE_SUPPORTED_FECS) + if supported_fecs_str: + if supported_fecs_str != 'N/A': + supported_fecs_list = supported_fecs_str.split(',') + else: + supported_fecs_list = [] + else: + supported_fecs_list = ["rs", "fc", "none"] + + return supported_fecs_list + def set_tpid(self, port, tpid): if self.verbose: print("Setting tpid %s on port %s" % (tpid, port)) @@ -248,7 +330,7 @@ def main(): parser.add_argument('-p', '--port', type=str, help='port name (e.g. Ethernet0)', required=True, default=None) parser.add_argument('-l', '--list', action='store_true', help='list port parametars', default=False) parser.add_argument('-s', '--speed', type=int, help='port speed value in Mbit', default=None) - parser.add_argument('-f', '--fec', type=str, help='port fec mode value in (none, rs, fc)', default=None) + parser.add_argument('-f', '--fec', type=str, help='port fec mode value (default is: none, rs, fc)', default=None) parser.add_argument('-m', '--mtu', type=int, help='port mtu value in bytes', default=None) parser.add_argument('-tp', '--tpid', type=str, help='port TPID value in hex (e.g. 0x8100)', default=None) parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.0') @@ -263,6 +345,12 @@ def main(): help = 'port interface type', default=None) parser.add_argument('-T', '--adv-interface-types', type = str, required = False, help = 'port advertised interface types', default=None) + parser.add_argument('-lt', '--link-training', type = str, required = False, + help = 'port link training mode', default=None) + parser.add_argument('-P', '--tx-power', type=float, required=False, + help='Tx output power(dBm)', default=None) + parser.add_argument('-F', '--laser-freq', type=int, required=False, + help='Laser frequency(GHz)', default=None) args = parser.parse_args() # Load database config files @@ -271,13 +359,17 @@ def main(): port = portconfig(args.verbose, args.port, args.namespace) if args.list: port.list_params(args.port) - elif args.speed or args.fec or args.mtu or args.autoneg or args.adv_speeds or args.interface_type or args.adv_interface_types or args.tpid: + elif args.speed or args.fec or args.mtu or args.link_training or args.autoneg or args.adv_speeds or \ + args.interface_type or args.adv_interface_types or args.tpid or \ + args.tx_power or args.laser_freq: if args.speed: port.set_speed(args.port, args.speed) if args.fec: port.set_fec(args.port, args.fec) if args.mtu: port.set_mtu(args.port, args.mtu) + if args.link_training: + port.set_link_training(args.port, args.link_training) if args.autoneg: port.set_autoneg(args.port, args.autoneg) if args.adv_speeds: @@ -288,6 +380,17 @@ def main(): port.set_adv_interface_types(args.port, args.adv_interface_types) if args.tpid: port.set_tpid(args.port, args.tpid) + if args.tx_power: + d = decimal.Decimal(str(args.tx_power)) + if d.as_tuple().exponent < -1: + print("Error: tx power must be with single decimal place") + sys.exit(1) + port.set_tx_power(args.port, args.tx_power) + if args.laser_freq: + if args.laser_freq <= 0: + print("Error: Frequency must be > 0") + sys.exit(1) + port.set_laser_freq(args.port, args.laser_freq) else: parser.print_help() sys.exit(1) diff --git a/scripts/portstat b/scripts/portstat index 24c085e9c..85f611fe5 100755 --- a/scripts/portstat +++ b/scripts/portstat @@ -17,6 +17,7 @@ from collections import OrderedDict, namedtuple from natsort import natsorted from tabulate import tabulate from sonic_py_common import multi_asic +from sonic_py_common import device_info # mock the redis for unit test purposes # try: @@ -38,6 +39,8 @@ from utilities_common.intf_filter import parse_interface_in_filter import utilities_common.multi_asic as multi_asic_util from utilities_common.netstat import ns_diff, table_as_json, format_brate, format_prate, format_util, format_number_with_comma +from utilities_common.cli import UserCache + """ The order and count of statistics mentioned below needs to be in sync with the values in portstat script So, any fields added/deleted in here should be reflected in portstat script also @@ -48,12 +51,14 @@ NStats = namedtuple("NStats", "rx_ok, rx_err, rx_drop, rx_ovr, tx_ok,\ rx_uca, rx_mca, rx_bca, rx_all,\ tx_64, tx_65_127, tx_128_255, tx_256_511, tx_512_1023, tx_1024_1518, tx_1519_2047, tx_2048_4095, tx_4096_9216, tx_9217_16383,\ tx_uca, tx_mca, tx_bca, tx_all,\ - rx_jbr, rx_frag, rx_usize, rx_ovrrun") + rx_jbr, rx_frag, rx_usize, rx_ovrrun,\ + fec_corr, fec_uncorr, fec_symbol_err") header_all = ['IFACE', 'STATE', 'RX_OK', 'RX_BPS', 'RX_PPS', 'RX_UTIL', 'RX_ERR', 'RX_DRP', 'RX_OVR', 'TX_OK', 'TX_BPS', 'TX_PPS', 'TX_UTIL', 'TX_ERR', 'TX_DRP', 'TX_OVR'] header_std = ['IFACE', 'STATE', 'RX_OK', 'RX_BPS', 'RX_UTIL', 'RX_ERR', 'RX_DRP', 'RX_OVR', 'TX_OK', 'TX_BPS', 'TX_UTIL', 'TX_ERR', 'TX_DRP', 'TX_OVR'] header_errors_only = ['IFACE', 'STATE', 'RX_ERR', 'RX_DRP', 'RX_OVR', 'TX_ERR', 'TX_DRP', 'TX_OVR'] +header_fec_only = ['IFACE', 'STATE', 'FEC_CORR', 'FEC_UNCORR', 'FEC_SYMBOL_ERR'] header_rates_only = ['IFACE', 'STATE', 'RX_OK', 'RX_BPS', 'RX_PPS', 'RX_UTIL', 'TX_OK', 'TX_BPS', 'TX_PPS', 'TX_UTIL'] rates_key_list = [ 'RX_BPS', 'RX_PPS', 'RX_UTIL', 'TX_BPS', 'TX_PPS', 'TX_UTIL' ] @@ -64,7 +69,7 @@ RateStats = namedtuple("RateStats", ratestat_fields) The order and count of statistics mentioned below needs to be in sync with the values in portstat script So, any fields added/deleted in here should be reflected in portstat script also """ -BUCKET_NUM = 42 +BUCKET_NUM = 45 counter_bucket_dict = { 0:['SAI_PORT_STAT_IF_IN_UCAST_PKTS', 'SAI_PORT_STAT_IF_IN_NON_UCAST_PKTS'], 1:['SAI_PORT_STAT_IF_IN_ERRORS'], @@ -107,7 +112,10 @@ counter_bucket_dict = { 38:['SAI_PORT_STAT_ETHER_STATS_JABBERS'], 39:['SAI_PORT_STAT_ETHER_STATS_FRAGMENTS'], 40:['SAI_PORT_STAT_ETHER_STATS_UNDERSIZE_PKTS'], - 41:['SAI_PORT_STAT_IP_IN_RECEIVES'] + 41:['SAI_PORT_STAT_IP_IN_RECEIVES'], + 42:['SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES'], + 43:['SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES'], + 44:['SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS'] } STATUS_NA = 'N/A' @@ -246,7 +254,7 @@ class Portstat(object): return STATUS_NA - def cnstat_print(self, cnstat_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, rates_only, detail=False): + def cnstat_print(self, cnstat_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, fec_stats_only, rates_only, detail=False): """ Print the cnstat. """ @@ -291,6 +299,12 @@ class Portstat(object): format_number_with_comma(data.tx_err), format_number_with_comma(data.tx_drop), format_number_with_comma(data.tx_ovr))) + elif fec_stats_only: + header = header_fec_only + table.append((key, self.get_port_state(key), + format_number_with_comma(data.fec_corr), + format_number_with_comma(data.fec_uncorr), + format_number_with_comma(data.fec_symbol_err))) elif rates_only: header = header_rates_only table.append((key, self.get_port_state(key), @@ -317,11 +331,13 @@ class Portstat(object): format_number_with_comma(data.tx_err), format_number_with_comma(data.tx_drop), format_number_with_comma(data.tx_ovr))) - - if use_json: - print(table_as_json(table, header)) - else: - print(tabulate(table, header, tablefmt='simple', stralign='right')) + if table: + if use_json: + print(table_as_json(table, header)) + else: + print(tabulate(table, header, tablefmt='simple', stralign='right')) + if (multi_asic.is_multi_asic() or device_info.is_chassis()) and not use_json: + print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def cnstat_intf_diff_print(self, cnstat_new_dict, cnstat_old_dict, intf_list): """ @@ -384,7 +400,10 @@ class Portstat(object): print("Time Since Counters Last Cleared............... " + str(cnstat_old_dict.get('time'))) - def cnstat_diff_print(self, cnstat_new_dict, cnstat_old_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, rates_only, detail=False): + def cnstat_diff_print(self, cnstat_new_dict, cnstat_old_dict, + ratestat_dict, intf_list, use_json, + print_all, errors_only, fec_stats_only, + rates_only, detail=False): """ Print the difference between two cnstat results. """ @@ -461,6 +480,19 @@ class Portstat(object): format_number_with_comma(cntr.tx_err), format_number_with_comma(cntr.tx_drop), format_number_with_comma(cntr.tx_ovr))) + elif fec_stats_only: + header = header_fec_only + if old_cntr is not None: + table.append((key, self.get_port_state(key), + ns_diff(cntr.fec_corr, old_cntr.fec_corr), + ns_diff(cntr.fec_uncorr, old_cntr.fec_uncorr), + ns_diff(cntr.fec_symbol_err, old_cntr.fec_symbol_err))) + else: + table.append((key, self.get_port_state(key), + format_number_with_comma(cntr.fec_corr), + format_number_with_comma(cntr.fec_uncorr), + format_number_with_comma(cntr.fec_symbol_err))) + elif rates_only: header = header_rates_only if old_cntr is not None: @@ -517,12 +549,13 @@ class Portstat(object): format_number_with_comma(cntr.tx_err), format_number_with_comma(cntr.tx_drop), format_number_with_comma(cntr.tx_ovr))) - - if use_json: - print(table_as_json(table, header)) - else: - print(tabulate(table, header, tablefmt='simple', stralign='right')) - + if table: + if use_json: + print(table_as_json(table, header)) + else: + print(tabulate(table, header, tablefmt='simple', stralign='right')) + if (multi_asic.is_multi_asic() or device_info.is_chassis()) and not use_json: + print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def main(): parser = argparse.ArgumentParser(description='Display the ports state and counters', @@ -547,6 +580,7 @@ Examples: parser.add_argument('-d', '--delete', action='store_true', help='Delete saved stats, either the uid or the specified tag') parser.add_argument('-D', '--delete-all', action='store_true', help='Delete all saved stats') parser.add_argument('-e', '--errors', action='store_true', help='Display interface errors') + parser.add_argument('-f', '--fec-stats', action='store_true', help='Display FEC related statistics') parser.add_argument('-j', '--json', action='store_true', help='Display in JSON format') parser.add_argument('-r', '--raw', action='store_true', help='Raw stats (unmodified output of netstat)') parser.add_argument('-R', '--rate', action='store_true', help='Display interface rates') @@ -563,11 +597,11 @@ Examples: delete_saved_stats = args.delete delete_all_stats = args.delete_all errors_only = args.errors + fec_stats_only = args.fec_stats rates_only = args.rate use_json = args.json raw_stats = args.raw tag_name = args.tag - uid = str(os.getuid()) wait_time_in_seconds = args.period print_all = args.all intf_fs = args.interface @@ -575,36 +609,17 @@ Examples: display_option = args.show detail = args.detail - if tag_name is not None: - cnstat_file = uid + "-" + tag_name - else: - cnstat_file = uid + cache = UserCache(tag=tag_name) - cnstat_dir = "/tmp/portstat-" + uid + cnstat_file = "portstat" + cnstat_dir = cache.get_directory() cnstat_fqn_file = cnstat_dir + "/" + cnstat_file if delete_all_stats: - for file in os.listdir(cnstat_dir): - os.remove(cnstat_dir + "/" + file) - - try: - os.rmdir(cnstat_dir) - sys.exit(0) - except IOError as e: - print(e.errno, e) - sys.exit(e) + cache.remove_all() if delete_saved_stats: - try: - os.remove(cnstat_fqn_file) - except IOError as e: - if e.errno != ENOENT: - print(e.errno, e) - sys.exit(1) - finally: - if os.listdir(cnstat_dir) == []: - os.rmdir(cnstat_dir) - sys.exit(0) + cache.remove() intf_list = parse_interface_in_filter(intf_fs) @@ -619,18 +634,9 @@ Examples: # Now decide what information to display if raw_stats: - portstat.cnstat_print(cnstat_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, rates_only) + portstat.cnstat_print(cnstat_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, fec_stats_only, rates_only) sys.exit(0) - # At this point, either we'll create a file or open an existing one. - if not os.path.exists(cnstat_dir): - try: - os.makedirs(cnstat_dir) - except IOError as e: - print(e.errno, e) - sys.exit(1) - - if save_fresh_stats: try: pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) @@ -647,7 +653,7 @@ Examples: cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) if not detail: print("Last cached time was " + str(cnstat_cached_dict.get('time'))) - portstat.cnstat_diff_print(cnstat_dict, cnstat_cached_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, rates_only, detail) + portstat.cnstat_diff_print(cnstat_dict, cnstat_cached_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, fec_stats_only, rates_only, detail) except IOError as e: print(e.errno, e) else: @@ -655,13 +661,13 @@ Examples: print("\nFile '%s' does not exist" % cnstat_fqn_file) print("Did you run 'portstat -c -t %s' to record the counters via tag %s?\n" % (tag_name, tag_name)) else: - portstat.cnstat_print(cnstat_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, rates_only, detail) + portstat.cnstat_print(cnstat_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, fec_stats_only, rates_only, detail) else: #wait for the specified time and then gather the new stats and output the difference. time.sleep(wait_time_in_seconds) print("The rates are calculated within %s seconds period" % wait_time_in_seconds) cnstat_new_dict, ratestat_new_dict = portstat.get_cnstat_dict() - portstat.cnstat_diff_print(cnstat_new_dict, cnstat_dict, ratestat_new_dict, intf_list, use_json, print_all, errors_only, rates_only, detail) + portstat.cnstat_diff_print(cnstat_new_dict, cnstat_dict, ratestat_new_dict, intf_list, use_json, print_all, errors_only, fec_stats_only, rates_only, detail) if __name__ == "__main__": main() diff --git a/scripts/queuestat b/scripts/queuestat index b7f4f1d38..590fd8bf4 100755 --- a/scripts/queuestat +++ b/scripts/queuestat @@ -15,6 +15,7 @@ import sys from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate +from sonic_py_common import multi_asic # mock the redis for unit test purposes # try: @@ -24,14 +25,21 @@ try: sys.path.insert(0, modules_path) sys.path.insert(0, tests_path) import mock_tables.dbconnector # lgtm [py/unused-import] + if os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] == "multi_asic": + import mock_tables.mock_multi_asic + mock_tables.dbconnector.load_namespace_config() except KeyError: pass from swsscommon.swsscommon import SonicV2Connector +from utilities_common.cli import UserCache +from utilities_common import constants +import utilities_common.multi_asic as multi_asic_util QueueStats = namedtuple("QueueStats", "queueindex, queuetype, totalpacket, totalbytes, droppacket, dropbytes") header = ['Port', 'TxQ', 'Counter/pkts', 'Counter/bytes', 'Drop/pkts', 'Drop/bytes'] +voq_header = ['Port', 'Voq', 'Counter/pkts', 'Counter/bytes', 'Drop/pkts', 'Drop/bytes'] counter_bucket_dict = { 'SAI_QUEUE_STAT_PACKETS': 2, @@ -46,13 +54,17 @@ from utilities_common.netstat import ns_diff, STATUS_NA QUEUE_TYPE_MC = 'MC' QUEUE_TYPE_UC = 'UC' QUEUE_TYPE_ALL = 'ALL' +QUEUE_TYPE_VOQ = 'VOQ' SAI_QUEUE_TYPE_MULTICAST = "SAI_QUEUE_TYPE_MULTICAST" SAI_QUEUE_TYPE_UNICAST = "SAI_QUEUE_TYPE_UNICAST" +SAI_QUEUE_TYPE_UNICAST_VOQ = "SAI_QUEUE_TYPE_UNICAST_VOQ" SAI_QUEUE_TYPE_ALL = "SAI_QUEUE_TYPE_ALL" COUNTER_TABLE_PREFIX = "COUNTERS:" COUNTERS_PORT_NAME_MAP = "COUNTERS_PORT_NAME_MAP" +COUNTERS_SYSTEM_PORT_NAME_MAP = "COUNTERS_SYSTEM_PORT_NAME_MAP" COUNTERS_QUEUE_NAME_MAP = "COUNTERS_QUEUE_NAME_MAP" +COUNTERS_VOQ_NAME_MAP= "COUNTERS_VOQ_NAME_MAP" COUNTERS_QUEUE_TYPE_MAP = "COUNTERS_QUEUE_TYPE_MAP" COUNTERS_QUEUE_INDEX_MAP = "COUNTERS_QUEUE_INDEX_MAP" COUNTERS_QUEUE_PORT_MAP = "COUNTERS_QUEUE_PORT_MAP" @@ -79,9 +91,16 @@ def build_json(port, cnstat): class Queuestat(object): - def __init__(self): - self.db = SonicV2Connector(use_unix_socket_path=False) - self.db.connect(self.db.COUNTERS_DB) + def __init__(self, namespace, voq=False): + self.db = None + self.multi_asic = multi_asic_util.MultiAsic(constants.DISPLAY_ALL, namespace) + if namespace is not None: + for ns in self.multi_asic.get_ns_list_based_on_options(): + self.db = multi_asic.connect_to_all_dbs_for_ns(ns) + else: + self.db = SonicV2Connector(use_unix_socket_path=False) + self.db.connect(self.db.COUNTERS_DB) + self.voq = voq def get_queue_port(table_id): port_table_id = self.db.get(self.db.COUNTERS_DB, COUNTERS_QUEUE_PORT_MAP, table_id) @@ -92,7 +111,11 @@ class Queuestat(object): return port_table_id # Get all ports - self.counter_port_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_PORT_NAME_MAP) + if voq: + self.counter_port_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_SYSTEM_PORT_NAME_MAP) + else: + self.counter_port_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_PORT_NAME_MAP) + if self.counter_port_name_map is None: print("COUNTERS_PORT_NAME_MAP is empty!") sys.exit(1) @@ -104,8 +127,13 @@ class Queuestat(object): self.port_queues_map[port] = {} self.port_name_map[self.counter_port_name_map[port]] = port + counter_queue_name_map = None # Get Queues for each port - counter_queue_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_QUEUE_NAME_MAP) + if voq: + counter_queue_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_VOQ_NAME_MAP) + else: + counter_queue_name_map = self.db.get_all(self.db.COUNTERS_DB, COUNTERS_QUEUE_NAME_MAP) + if counter_queue_name_map is None: print("COUNTERS_QUEUE_NAME_MAP is empty!") sys.exit(1) @@ -139,6 +167,8 @@ class Queuestat(object): return QUEUE_TYPE_MC elif queue_type == SAI_QUEUE_TYPE_UNICAST: return QUEUE_TYPE_UC + elif queue_type == SAI_QUEUE_TYPE_UNICAST_VOQ: + return QUEUE_TYPE_VOQ elif queue_type == SAI_QUEUE_TYPE_ALL: return QUEUE_TYPE_ALL else: @@ -168,7 +198,7 @@ class Queuestat(object): cnstat_dict[queue] = get_counters(queue_map[queue]) return cnstat_dict - def cnstat_print(self, port, cnstat_dict, json_opt): + def cnstat_print(self, port, cnstat_dict, json_opt, non_zero): """ Print the cnstat. If JSON option is True, return data in JSON format. @@ -181,18 +211,22 @@ class Queuestat(object): if json_opt: json_output[port][key] = data continue - table.append((port, data.queuetype + str(data.queueindex), - data.totalpacket, data.totalbytes, - data.droppacket, data.dropbytes)) + + if not non_zero or data.totalpacket != '0' or data.totalbytes != '0' or data.droppacket !='0' or data.dropbytes != '0': + table.append((port, data.queuetype + str(data.queueindex), + data.totalpacket, data.totalbytes, + data.droppacket, data.dropbytes)) if json_opt: json_output[port].update(build_json(port, table)) return json_output else: - print(tabulate(table, header, tablefmt='simple', stralign='right')) - print() + hdr = voq_header if self.voq else header + if table: + print(tabulate(table, hdr, tablefmt='simple', stralign='right')) + print() - def cnstat_diff_print(self, port, cnstat_new_dict, cnstat_old_dict, json_opt): + def cnstat_diff_print(self, port, cnstat_new_dict, cnstat_old_dict, json_opt, non_zero): """ Print the difference between two cnstat results. If JSON option is True, return data in JSON format. @@ -210,12 +244,16 @@ class Queuestat(object): old_cntr = cnstat_old_dict.get(key) if old_cntr is not None: - table.append((port, cntr.queuetype + str(cntr.queueindex), - ns_diff(cntr.totalpacket, old_cntr.totalpacket), - ns_diff(cntr.totalbytes, old_cntr.totalbytes), - ns_diff(cntr.droppacket, old_cntr.droppacket), - ns_diff(cntr.dropbytes, old_cntr.dropbytes))) - else: + if not non_zero or ns_diff(cntr.totalpacket, old_cntr.totalpacket) != '0' or \ + ns_diff(cntr.totalbytes, old_cntr.totalbytes) != '0' or \ + ns_diff(cntr.droppacket, old_cntr.droppacket) != '0' or \ + ns_diff(cntr.dropbytes, old_cntr.dropbytes) != '0': + table.append((port, cntr.queuetype + str(cntr.queueindex), + ns_diff(cntr.totalpacket, old_cntr.totalpacket), + ns_diff(cntr.totalbytes, old_cntr.totalbytes), + ns_diff(cntr.droppacket, old_cntr.droppacket), + ns_diff(cntr.dropbytes, old_cntr.dropbytes))) + elif not non_zero or cntr.totalpacket != '0' or cntr.totalbytes != '0' or cntr.droppacket !='0' or cntr.dropbytes != '0': table.append((port, cntr.queuetype + str(cntr.queueindex), cntr.totalpacket, cntr.totalbytes, cntr.droppacket, cntr.dropbytes)) @@ -224,10 +262,13 @@ class Queuestat(object): json_output[port].update(build_json(port, table)) return json_output else: - print(tabulate(table, header, tablefmt='simple', stralign='right')) - print() + hdr = voq_header if self.voq else header + if table: + print(port + " Last cached time was " + str(cnstat_old_dict.get('time'))) + print(tabulate(table, hdr, tablefmt='simple', stralign='right')) + print() - def get_print_all_stat(self, json_opt): + def get_print_all_stat(self, json_opt, non_zero): """ Get stat for each port If JSON option is True, collect data for each port and @@ -244,22 +285,21 @@ class Queuestat(object): cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_name, 'rb')) if json_opt: json_output[port].update({"cached_time":cnstat_cached_dict.get('time')}) - json_output.update(self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt)) + json_output.update(self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt, non_zero)) else: - print(port + " Last cached time was " + str(cnstat_cached_dict.get('time'))) - self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt) + self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt, non_zero) except IOError as e: print(e.errno, e) else: if json_opt: - json_output.update(self.cnstat_print(port, cnstat_dict, json_opt)) + json_output.update(self.cnstat_print(port, cnstat_dict, json_opt, non_zero)) else: - self.cnstat_print(port, cnstat_dict, json_opt) + self.cnstat_print(port, cnstat_dict, json_opt, non_zero) if json_opt: print(json_dump(json_output)) - def get_print_port_stat(self, port, json_opt): + def get_print_port_stat(self, port, json_opt, non_zero): """ Get stat for the port If JSON option is True print data in JSON format @@ -278,29 +318,22 @@ class Queuestat(object): cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_name, 'rb')) if json_opt: json_output[port].update({"cached_time":cnstat_cached_dict.get('time')}) - json_output.update(self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt)) + json_output.update(self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt, non_zero)) else: print("Last cached time was " + str(cnstat_cached_dict.get('time'))) - self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt) + self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt, non_zero) except IOError as e: print(e.errno, e) else: if json_opt: - json_output.update(self.cnstat_print(port, cnstat_dict, json_opt)) + json_output.update(self.cnstat_print(port, cnstat_dict, json_opt, non_zero)) else: - self.cnstat_print(port, cnstat_dict, json_opt) + self.cnstat_print(port, cnstat_dict, json_opt, non_zero) if json_opt: print(json_dump(json_output)) def save_fresh_stats(self): - if not os.path.exists(cnstat_dir): - try: - os.makedirs(cnstat_dir) - except IOError as e: - print(e.errno, e) - sys.exit(1) - # Get stat for each port and save for port in natsorted(self.counter_port_name_map): cnstat_dict = self.get_cnstat(self.port_queues_map[port]) @@ -331,41 +364,38 @@ Examples: parser.add_argument('-d', '--delete', action='store_true', help='Delete saved stats') parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.0') parser.add_argument('-j', '--json_opt', action='store_true', help='Print in JSON format') + parser.add_argument('-V', '--voq', action='store_true', help='display voq stats') + parser.add_argument('-n','--namespace', default=None, help='Display queue counters for specific namespace') + parser.add_argument('-nz','--non_zero', action='store_true', help='Display non-zero queue counters') args = parser.parse_args() save_fresh_stats = args.clear - delete_all_stats = args.delete + delete_stats = args.delete json_opt = args.json_opt + voq = args.voq + namespace = args.namespace + non_zero = args.non_zero port_to_show_stats = args.port - uid = str(os.getuid()) - cnstat_file = uid - - cnstat_dir = "/tmp/queuestat-" + uid - cnstat_fqn_file = cnstat_dir + "/" + cnstat_file + cache = UserCache() - if delete_all_stats: - for file in os.listdir(cnstat_dir): - os.remove(cnstat_dir + "/" + file) + cnstat_dir = cache.get_directory() + cnstat_fqn_file = os.path.join(cnstat_dir, 'queuestat') - try: - os.rmdir(cnstat_dir) - sys.exit(0) - except IOError as e: - print(e.errno, e) - sys.exit(e) + if delete_stats: + cache.remove() - queuestat = Queuestat() + queuestat = Queuestat( namespace, voq ) if save_fresh_stats: queuestat.save_fresh_stats() sys.exit(0) if port_to_show_stats!=None: - queuestat.get_print_port_stat(port_to_show_stats, json_opt) + queuestat.get_print_port_stat(port_to_show_stats, json_opt, non_zero) else: - queuestat.get_print_all_stat(json_opt) + queuestat.get_print_all_stat(json_opt, non_zero) sys.exit(0) diff --git a/scripts/reboot b/scripts/reboot index fa7315b3b..a081497d2 100755 --- a/scripts/reboot +++ b/scripts/reboot @@ -33,7 +33,7 @@ EXIT_PLATFORM_FW_AU_FAILURE=22 PLATFORM_FWUTIL_AU_REBOOT_HANDLE="platform_fw_au_reboot_handle" REBOOT_SCRIPT_NAME=$(basename $0) REBOOT_TYPE="${REBOOT_SCRIPT_NAME}" -TAG_LATEST=yes +TAG_LATEST=no function debug() { @@ -72,8 +72,21 @@ function stop_sonic_services() fi if [[ x"$ASIC_TYPE" != x"mellanox" ]]; then - debug "Stopping syncd process..." - docker exec -i syncd /usr/bin/syncd_request_shutdown --cold > /dev/null + ASIC_CONF=${DEVPATH}/$PLATFORM/asic.conf + if [ -f "$ASIC_CONF" ]; then + source $ASIC_CONF + fi + if [[ ($NUM_ASIC -gt 1) ]]; then + asic_num=0 + while [[ ($asic_num -lt $NUM_ASIC) ]]; do + debug "Stopping syncd$asic_num process..." + docker exec -i syncd$asic_num /usr/bin/syncd_request_shutdown --cold > /dev/null + ((asic_num = asic_num + 1)) + done + else + debug "Stopping syncd process..." + docker exec -i syncd /usr/bin/syncd_request_shutdown --cold > /dev/null + fi sleep 3 fi stop_pmon_service @@ -173,6 +186,25 @@ function parse_options() done } +function linecard_reboot_notify_supervisor() +{ + is_linecard=$(python3 -c 'from sonic_py_common import device_info; print("True") if device_info.is_chassis() == True and device_info.is_supervisor() == False else print("False")') + if [ $is_linecard == "True" ]; then + key=$(sonic-db-cli STATE_DB keys "CHASSIS_MODULE_TABLE|LINE-CARD*") + status=$? + if [ $status -eq 0 ]; then + module="${key#CHASSIS_MODULE_TABLE}" + if [ ! -z module ]; then + sonic-db-cli CHASSIS_STATE_DB hset "CHASSIS_MODULE_REBOOT_INFO_TABLE${module}" "reboot" "expected" + status=$? + if [ $status -ne 0 ]; then + debug "Failed to notify Supervisor: Linecard reboot is expected" + fi + fi + fi + fi +} + parse_options $@ # Exit if not superuser @@ -191,6 +223,9 @@ reboot_pre_check # Tag remotely deployed images as local tag_images +# Linecard reboot notify supervisor +linecard_reboot_notify_supervisor + # Stop SONiC services gracefully. stop_sonic_services diff --git a/scripts/route_check.py b/scripts/route_check.py index fdbdd0a5f..bfe375218 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -46,8 +46,11 @@ import signal import traceback +from ipaddress import ip_network from swsscommon import swsscommon from utilities_common import chassis +from sonic_py_common import multi_asic +from utilities_common.general import load_db_config APPL_DB_NAME = 'APPL_DB' ASIC_DB_NAME = 'ASIC_DB' @@ -71,6 +74,8 @@ PRINT_MSG_LEN_MAX = 1000 +REDIS_TIMEOUT_MSECS = 0 + class Level(Enum): ERR = 'ERR' INFO = 'INFO' @@ -141,7 +146,7 @@ def add_prefix(ip): ip = ip + PREFIX_SEPARATOR + "32" else: ip = ip + PREFIX_SEPARATOR + "128" - return ip + return str(ip_network(ip)) def add_prefix_ifnot(ip): @@ -150,7 +155,7 @@ def add_prefix_ifnot(ip): :param ip: IP to add prefix as string. :return ip with prefix """ - return ip if ip.find(PREFIX_SEPARATOR) != -1 else add_prefix(ip) + return str(ip_network(ip)) if ip.find(PREFIX_SEPARATOR) != -1 else add_prefix(ip) def is_local(ip): @@ -269,12 +274,12 @@ def is_vrf(k): return k.startswith("Vrf") -def get_routes(): +def get_appdb_routes(namespace): """ helper to read route table from APPL-DB. :return list of sorted routes with prefix ensured """ - db = swsscommon.DBConnector(APPL_DB_NAME, 0) + db = swsscommon.DBConnector(APPL_DB_NAME, REDIS_TIMEOUT_MSECS, True, namespace) print_message(syslog.LOG_DEBUG, "APPL DB connected for routes") tbl = swsscommon.Table(db, 'ROUTE_TABLE') keys = tbl.getKeys() @@ -288,15 +293,15 @@ def get_routes(): return sorted(valid_rt) -def get_route_entries(): +def get_asicdb_routes(namespace): """ helper to read present route entries from ASIC-DB and as well initiate selector for ASIC-DB:ASIC-state updates. :return (selector, subscriber, ) """ - db = swsscommon.DBConnector(ASIC_DB_NAME, 0) + db = swsscommon.DBConnector(ASIC_DB_NAME, REDIS_TIMEOUT_MSECS, True, namespace) subs = swsscommon.SubscriberStateTable(db, ASIC_TABLE_NAME) - print_message(syslog.LOG_DEBUG, "ASIC DB connected") + print_message(syslog.LOG_DEBUG, "ASIC DB {} connected".format(namespace)) rt = [] while True: @@ -314,12 +319,12 @@ def get_route_entries(): return (selector, subs, sorted(rt)) -def get_interfaces(): +def get_interfaces(namespace): """ helper to read interface table from APPL-DB. :return sorted list of IP addresses with added prefix """ - db = swsscommon.DBConnector(APPL_DB_NAME, 0) + db = swsscommon.DBConnector(APPL_DB_NAME, REDIS_TIMEOUT_MSECS, True, namespace) print_message(syslog.LOG_DEBUG, "APPL DB connected for interfaces") tbl = swsscommon.Table(db, 'INTF_TABLE') keys = tbl.getKeys() @@ -339,20 +344,20 @@ def get_interfaces(): return sorted(intf) -def filter_out_local_interfaces(keys): +def filter_out_local_interfaces(namespace, keys): """ helper to filter out local interfaces :param keys: APPL-DB:ROUTE_TABLE Routes to check. :return keys filtered out of local """ rt = [] - local_if_lst = {'eth0', 'docker0'} + local_if_lst = {'eth0', 'eth1', 'docker0'} #eth1 is added to skip route installed in AAPL_DB on packet-chassis local_if_lo = [r'tun0', r'lo', r'Loopback\d+'] chassis_local_intfs = chassis.get_chassis_local_interfaces() local_if_lst.update(set(chassis_local_intfs)) - - db = swsscommon.DBConnector(APPL_DB_NAME, 0) + + db = swsscommon.DBConnector(APPL_DB_NAME, REDIS_TIMEOUT_MSECS, True, namespace) tbl = swsscommon.Table(db, 'ROUTE_TABLE') for k in keys: @@ -372,20 +377,20 @@ def filter_out_local_interfaces(keys): return rt -def filter_out_voq_neigh_routes(keys): +def filter_out_voq_neigh_routes(namespace, keys): """ helper to filter out voq neigh routes. These are the routes statically added for the voq neighbors. We skip writing route entries in asic db for these. We filter out reporting error on all the host routes written on inband interface prefixed with "Ethernte-IB" - :param keys: APPL-DB:ROUTE_TABLE Routes to check. + :param namespace: Asic namespace, keys: APPL-DB:ROUTE_TABLE Routes to check. :return keys filtered out for voq neigh routes """ rt = [] local_if_re = [r'Ethernet-IB\d+'] - db = swsscommon.DBConnector(APPL_DB_NAME, 0) + db = swsscommon.DBConnector(APPL_DB_NAME, REDIS_TIMEOUT_MSECS, True, namespace) tbl = swsscommon.Table(db, 'ROUTE_TABLE') for k in keys: @@ -417,13 +422,13 @@ def filter_out_default_routes(lst): return upd -def filter_out_vnet_routes(routes): +def filter_out_vnet_routes(namespace, routes): """ Helper to filter out VNET routes :param routes: list of routes to filter :return filtered list of routes. """ - db = swsscommon.DBConnector('APPL_DB', 0) + db = swsscommon.DBConnector('APPL_DB', REDIS_TIMEOUT_MSECS, True, namespace) vnet_route_table = swsscommon.Table(db, 'VNET_ROUTE_TABLE') vnet_route_tunnel_table = swsscommon.Table(db, 'VNET_ROUTE_TUNNEL_TABLE') @@ -433,7 +438,7 @@ def filter_out_vnet_routes(routes): vnet_routes = [] for vnet_route_db_key in vnet_routes_db_keys: - vnet_route_attrs = vnet_route_db_key.split(':') + vnet_route_attrs = vnet_route_db_key.split(':', 1) vnet_name = vnet_route_attrs[0] vnet_route = vnet_route_attrs[1] vnet_routes.append(vnet_route) @@ -447,7 +452,136 @@ def filter_out_vnet_routes(routes): return updated_routes -def check_routes(): +def is_dualtor(config_db): + device_metadata = config_db.get_table('DEVICE_METADATA') + subtype = device_metadata['localhost'].get('subtype', '') + return subtype.lower() == 'dualtor' + + +def filter_out_standalone_tunnel_routes(namespace, routes): + + config_db = multi_asic.connect_config_db_for_ns(namespace) + + if not is_dualtor(config_db): + return routes + + app_db = swsscommon.DBConnector('APPL_DB', REDIS_TIMEOUT_MSECS, True, namespace) + neigh_table = swsscommon.Table(app_db, 'NEIGH_TABLE') + neigh_keys = neigh_table.getKeys() + standalone_tunnel_route_ips = [] + updated_routes = [] + + for neigh in neigh_keys: + _, mac = neigh_table.hget(neigh, 'neigh') + if mac == '00:00:00:00:00:00': + # remove preceding 'VlanXXXX' to get just the neighbor IP + neigh_ip = ':'.join(neigh.split(':')[1:]) + standalone_tunnel_route_ips.append(neigh_ip) + + if not standalone_tunnel_route_ips: + return routes + + for route in routes: + ip, subnet = route.split('/') + ip_version = ipaddress.ip_address(ip).version + + # we want to keep the route if it is not a standalone tunnel route. + # if the route subnet contains more than one address, it is not a + # standalone tunnel route + if (ip not in standalone_tunnel_route_ips) or \ + ((ip_version == 6 and subnet != '128') or (ip_version == 4 and subnet != '32')): + updated_routes.append(route) + + return updated_routes + + +def get_soc_ips(config_db): + mux_table = config_db.get_table('MUX_CABLE') + soc_ips = [] + for _, mux_entry in mux_table.items(): + if mux_entry.get("cable_type", "") == "active-active": + if "soc_ipv4" in mux_entry and mux_entry["soc_ipv4"]: + soc_ips.append(mux_entry["soc_ipv4"]) + + if "soc_ipv6" in mux_entry and mux_entry["soc_ipv6"]: + soc_ips.append(mux_entry["soc_ipv6"]) + + return soc_ips + + +def filter_out_soc_ip_routes(namespace, routes): + """ + Ignore ASIC only routes for SOC IPs + + For active-active cables, we want the tunnel route for SOC IPs + to only be programmed to the ASIC and not to the kernel. This is to allow + gRPC connections coming from ycabled to always use the direct link (since this + will use the kernel routing table), but still provide connectivity to any external + traffic in case of a link issue (since this traffic will be forwarded by the ASIC). + """ + config_db = multi_asic.connect_config_db_for_ns(namespace) + + if not is_dualtor(config_db): + return routes + + soc_ips = get_soc_ips(config_db) + + if not soc_ips: + return routes + + updated_routes = [] + for route in routes: + if route not in soc_ips: + updated_routes.append(route) + + return updated_routes + + +def get_vlan_neighbors(namespace): + """Return a list of VLAN neighbors.""" + db = swsscommon.DBConnector(APPL_DB_NAME, REDIS_TIMEOUT_MSECS, True, namespace) + print_message(syslog.LOG_DEBUG, "APPL DB connected for neighbors") + tbl = swsscommon.Table(db, 'NEIGH_TABLE') + neigh_entries = tbl.getKeys() + + valid_neighs = [] + for neigh_entry in neigh_entries: + if ':' in neigh_entry: + device, prefix = neigh_entry.split(':', 1) + if device.startswith("Vlan"): + valid_neighs.append(add_prefix_ifnot(prefix.lower())) + + print_message(syslog.LOG_DEBUG, "Vlan neighbors:", json.dumps(valid_neighs, indent=4)) + return valid_neighs + + +def filter_out_vlan_neigh_route_miss(namespace, rt_appl_miss, rt_asic_miss): + """Ignore any route miss for vlan neighbor IPs.""" + + def _filter_out_neigh_route(routes, neighs): + updated_routes = [] + ignored_routes = [] + for route in routes: + if route in neighs: + ignored_routes.append(route) + else: + updated_routes.append(route) + return updated_routes, ignored_routes + + config_db = multi_asic.connect_config_db_for_ns(namespace) + + print_message(syslog.LOG_DEBUG, "Ignore vlan neighbor route miss") + if is_dualtor(config_db): + vlan_neighs = set(get_vlan_neighbors(namespace)) + rt_appl_miss, ignored_rt_appl_miss = _filter_out_neigh_route(rt_appl_miss, vlan_neighs) + print_message(syslog.LOG_DEBUG, "Ignored appl route miss:", json.dumps(ignored_rt_appl_miss, indent=4)) + rt_asic_miss, ignored_rt_asic_miss = _filter_out_neigh_route(rt_asic_miss, vlan_neighs) + print_message(syslog.LOG_DEBUG, "Ignored asic route miss:", json.dumps(ignored_rt_asic_miss, indent=4)) + + return rt_appl_miss, rt_asic_miss + + +def check_routes(namespace): """ The heart of this script which runs the checks. Read APPL-DB & ASIC-DB, the relevant tables for route checking. @@ -463,54 +597,79 @@ def check_routes(): :return (0, None) on sucess, else (-1, results) where results holds the unjustifiable entries. """ - intf_appl_miss = [] - rt_appl_miss = [] - rt_asic_miss = [] + namespace_list = [] + if namespace is not multi_asic.DEFAULT_NAMESPACE and namespace in multi_asic.get_namespace_list(): + namespace_list.append(namespace) + else: + namespace_list = multi_asic.get_namespace_list() + print_message(syslog.LOG_INFO, "Checking routes for namespaces: ", namespace_list) results = {} - adds = [] - deletes = [] + adds = {} + deletes = {} + for namespace in namespace_list: + intf_appl_miss = [] + rt_appl_miss = [] + rt_asic_miss = [] + adds[namespace] = [] + deletes[namespace] = [] + + selector, subs, rt_asic = get_asicdb_routes(namespace) - selector, subs, rt_asic = get_route_entries() + rt_appl = get_appdb_routes(namespace) + intf_appl = get_interfaces(namespace) - rt_appl = get_routes() - intf_appl = get_interfaces() + # Diff APPL-DB routes & ASIC-DB routes + rt_appl_miss, rt_asic_miss = diff_sorted_lists(rt_appl, rt_asic) - # Diff APPL-DB routes & ASIC-DB routes - rt_appl_miss, rt_asic_miss = diff_sorted_lists(rt_appl, rt_asic) + # Check missed ASIC routes against APPL-DB INTF_TABLE + _, rt_asic_miss = diff_sorted_lists(intf_appl, rt_asic_miss) + rt_asic_miss = filter_out_default_routes(rt_asic_miss) + rt_asic_miss = filter_out_vnet_routes(namespace, rt_asic_miss) + rt_asic_miss = filter_out_standalone_tunnel_routes(namespace, rt_asic_miss) + rt_asic_miss = filter_out_soc_ip_routes(namespace, rt_asic_miss) - # Check missed ASIC routes against APPL-DB INTF_TABLE - _, rt_asic_miss = diff_sorted_lists(intf_appl, rt_asic_miss) - rt_asic_miss = filter_out_default_routes(rt_asic_miss) - rt_asic_miss = filter_out_vnet_routes(rt_asic_miss) - # Check APPL-DB INTF_TABLE with ASIC table route entries - intf_appl_miss, _ = diff_sorted_lists(intf_appl, rt_asic) + # Check APPL-DB INTF_TABLE with ASIC table route entries + intf_appl_miss, _ = diff_sorted_lists(intf_appl, rt_asic) - if rt_appl_miss: - rt_appl_miss = filter_out_local_interfaces(rt_appl_miss) + if rt_appl_miss: + rt_appl_miss = filter_out_local_interfaces(namespace, rt_appl_miss) - if rt_appl_miss: - rt_appl_miss = filter_out_voq_neigh_routes(rt_appl_miss) + if rt_appl_miss: + rt_appl_miss = filter_out_voq_neigh_routes(namespace, rt_appl_miss) - if rt_appl_miss or rt_asic_miss: - # Look for subscribe updates for a second - adds, deletes = get_subscribe_updates(selector, subs) + # NOTE: On dualtor environment, ignore any route miss for the + # neighbors learned from the vlan subnet. + if rt_appl_miss or rt_asic_miss: + rt_appl_miss, rt_asic_miss = filter_out_vlan_neigh_route_miss(namespace, rt_appl_miss, rt_asic_miss) + + if rt_appl_miss or rt_asic_miss: + # Look for subscribe updates for a second + adds[namespace], deletes[namespace] = get_subscribe_updates(selector, subs) # Drop all those for which SET received - rt_appl_miss, _ = diff_sorted_lists(rt_appl_miss, adds) + rt_appl_miss, _ = diff_sorted_lists(rt_appl_miss, adds[namespace]) # Drop all those for which DEL received - rt_asic_miss, _ = diff_sorted_lists(rt_asic_miss, deletes) + rt_asic_miss, _ = diff_sorted_lists(rt_asic_miss, deletes[namespace]) + + if rt_appl_miss: + if namespace not in results: + results[namespace] = {} + results[namespace]["missed_ROUTE_TABLE_routes"] = rt_appl_miss - if rt_appl_miss: - results["missed_ROUTE_TABLE_routes"] = rt_appl_miss + if intf_appl_miss: + if namespace not in results: + results[namespace] = {} + results[namespace]["missed_INTF_TABLE_entries"] = intf_appl_miss + + if rt_asic_miss: + if namespace not in results: + results[namespace] = {} + results[namespace]["Unaccounted_ROUTE_ENTRY_TABLE_entries"] = rt_asic_miss - if intf_appl_miss: - results["missed_INTF_TABLE_entries"] = intf_appl_miss - if rt_asic_miss: - results["Unaccounted_ROUTE_ENTRY_TABLE_entries"] = rt_asic_miss if results: print_message(syslog.LOG_WARNING, "Failure results: {", json.dumps(results, indent=4), "}") @@ -535,8 +694,18 @@ def main(): parser.add_argument('-m', "--mode", type=Level, choices=list(Level), default='ERR') parser.add_argument("-i", "--interval", type=int, default=0, help="Scan interval in seconds") parser.add_argument("-s", "--log_to_syslog", action="store_true", default=True, help="Write message to syslog") + parser.add_argument('-n','--namespace', default=multi_asic.DEFAULT_NAMESPACE, help='Verify routes for this specific namespace') args = parser.parse_args() + namespace = args.namespace + if namespace is not multi_asic.DEFAULT_NAMESPACE and not multi_asic.is_multi_asic(): + print_message(syslog.LOG_ERR, "Namespace option is not valid for a single-ASIC device") + return -1, None + + if namespace is not multi_asic.DEFAULT_NAMESPACE and namespace not in multi_asic.get_namespace_list(): + print_message(syslog.LOG_ERR, "Namespace option is not valid. Choose one of {}".format(multi_asic.get_namespace_list())) + return -1, None + set_level(args.mode, args.log_to_syslog) if args.interval: @@ -550,10 +719,11 @@ def main(): interval = 1 signal.signal(signal.SIGALRM, handler) + load_db_config() while True: signal.alarm(TIMEOUT_SECONDS) - ret, res= check_routes() + ret, res= check_routes(namespace) signal.alarm(0) if interval: diff --git a/scripts/route_check_test.sh b/scripts/route_check_test.sh index 505253863..b78351f7a 100755 --- a/scripts/route_check_test.sh +++ b/scripts/route_check_test.sh @@ -2,22 +2,95 @@ # add a route, interface & route-entry to simulate error # -sonic-db-cli APPL_DB hmset "ROUTE_TABLE:20c0:d9b8:99:80::/64" "nexthop" "fc00::72,fc00::76,fc00::7a,fc00::7e" "ifname" "PortChannel01,PortChannel02,PortChannel03,PortChannel04" +CONFIG_FILE="/etc/sonic/config_db.json" +if [ ! -e "$CONFIG_FILE" ]; then + echo "File $CONFIG_FILE not found. returning.." + exit 1 +fi -sonic-db-cli ASIC_DB hmset "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"192.193.120.255/25\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000022\"}" "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID" "oid:0x5000000000614" +# Extract platform and hwsku from DEVICE_METADATA using awk +platform=$(awk -F'"' '/"DEVICE_METADATA":/,/\}/{if(/"platform":/) print $4}' "$CONFIG_FILE") -sonic-db-cli APPL_DB hmset "INTF_TABLE:PortChannel01:10.0.0.99/31" "scope" "global" "family" "IPv4" +# Print the values +echo "Platform: $platform" -echo "expect errors!\n------\nRunning Route Check...\n" -./route_check.py -echo "return value: $?" +PLATFORM_DIR="/usr/share/sonic/device/$platform" +if [ ! -d "$PLATFORM_DIR" ]; then + echo "Directory $PLATFORM_DIR not found. returning.." + exit 1 +fi -sonic-db-cli APPL_DB del "ROUTE_TABLE:20c0:d9b8:99:80::/64" -sonic-db-cli ASIC_DB del "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"192.193.120.255/25\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000022\"}" -sonic-db-cli APPL_DB del "INTF_TABLE:PortChannel01:10.0.0.99/31" +ASIC_CONF_FILE="$PLATFORM_DIR/asic.conf" +echo "$ASIC_CONF_FILE" +num_asic=1 +# Check if asic.conf exists +if [ -f "$ASIC_CONF_FILE" ]; then + if grep -q "^NUM_ASIC=" "$ASIC_CONF_FILE"; then + # Extract the value of NUM_ASIC into a local variable + num_asic=$(grep "^NUM_ASIC=" "$ASIC_CONF_FILE" | cut -d'=' -f2) + else + # Print a message if NUM_ASIC is not present + echo "NUM_ASIC not found.. returning.." + exit 1 + fi +fi -echo "expect success!\n------\nRunning Route Check...\n" -./route_check.py -echo "return value: $?" +echo "num_asic: $num_asic" + +if [ "$num_asic" -gt 1 ]; then + # test on asic0 + # add a route, interface & route-entry to simulate error + # + sonic-db-cli -n asic0 APPL_DB hmset "ROUTE_TABLE:20c0:d9b8:99:80::/64" "nexthop" "fc00::72,fc00::76,fc00::7a,fc00::7e" "ifname" "PortChannel01,PortChannel02,PortChannel03,PortChannel04" > /dev/null + sonic-db-cli -n asic0 ASIC_DB hmset "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"192.193.120.255/25\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000022\"}" "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID" "oid:0x5000000000614" > /dev/null + sonic-db-cli -n asic0 APPL_DB hmset "INTF_TABLE:PortChannel01:10.0.0.99/31" "scope" "global" "family" "IPv4" > /dev/null + + echo "------" + echo "expect errors!" + echo "Running Route Check..." + ./route_check.py + echo "return value: $?" + + sonic-db-cli -n asic0 APPL_DB del "ROUTE_TABLE:20c0:d9b8:99:80::/64" > /dev/null + sonic-db-cli -n asic0 ASIC_DB del "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"192.193.120.255/25\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000022\"}" > /dev/null + sonic-db-cli -n asic0 APPL_DB del "INTF_TABLE:PortChannel01:10.0.0.99/31" > /dev/null + +else + # add a route, interface & route-entry to simulate error + # + sonic-db-cli APPL_DB hmset "ROUTE_TABLE:20c0:d9b8:99:80::/64" "nexthop" "fc00::72,fc00::76,fc00::7a,fc00::7e" "ifname" "PortChannel01,PortChannel02,PortChannel03,PortChannel04" > /dev/null + sonic-db-cli ASIC_DB hmset "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"192.193.120.255/25\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000022\"}" "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID" "oid:0x5000000000614" > /dev/null + sonic-db-cli APPL_DB hmset "INTF_TABLE:PortChannel01:10.0.0.99/31" "scope" "global" "family" "IPv4" > /dev/null + + echo "------" + echo "expect errors!" + echo "Running Route Check..." + ./route_check.py + echo "return value: $?" + + sonic-db-cli APPL_DB del "ROUTE_TABLE:20c0:d9b8:99:80::/64" > /dev/null + sonic-db-cli ASIC_DB del "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"192.193.120.255/25\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000022\"}" > /dev/null + sonic-db-cli APPL_DB del "INTF_TABLE:PortChannel01:10.0.0.99/31" > /dev/null + + # add standalone tunnel route to simulate unreachable neighbor scenario on dual ToR + # in this scenario, we expect the route mismatch to be ignored + sonic-db-cli APPL_DB hmset "NEIGH_TABLE:Vlan1000:fc02:1000::99" "neigh" "00:00:00:00:00:00" "family" "IPv6" > /dev/null + sonic-db-cli ASIC_DB hmset 'ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{"dest":"fc02:1000::99/128","switch_id":"oid:0x21000000000000","vr":"oid:0x300000000007c"}' "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID" "oid:0x400000000167d" "SAI_ROUTE_ENTRY_ATTR_PACKET_ACTION" "SAI_PACKET_ACTION_FORWARD" > /dev/null + + echo "------" + echo "expect success on dualtor, expect error on all other devices!" + echo "Running Route Check..." + ./route_check.py + echo "return value: $?" + + sonic-db-cli APPL_DB del "NEIGH_TABLE:Vlan1000:fc02:1000::99" > /dev/null + sonic-db-cli ASIC_DB del 'ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{"dest":"fc02:1000::99/128","switch_id":"oid:0x21000000000000","vr":"oid:0x300000000007c"}' > /dev/null + + echo "------" + echo "expect success!" + echo "Running Route Check..." + ./route_check.py + echo "return value: $?" +fi diff --git a/scripts/sfpshow b/scripts/sfpshow index 9e0633327..47de963b7 100755 --- a/scripts/sfpshow +++ b/scripts/sfpshow @@ -16,8 +16,15 @@ import click from natsort import natsorted from sonic_py_common.interface import front_panel_prefix, backplane_prefix, inband_prefix, recirc_prefix from sonic_py_common import multi_asic +from utilities_common.sfp_helper import covert_application_advertisement_to_output_string +from utilities_common.sfp_helper import ( + QSFP_DATA_MAP, + CMIS_DATA_MAP, + QSFP_STATUS_MAP, + CMIS_STATUS_MAP, + CCMIS_STATUS_MAP, +) from tabulate import tabulate -from utilities_common import multi_asic as multi_asic_util # Mock the redis DB for unit test purposes try: @@ -27,32 +34,18 @@ try: sys.path.insert(0, modules_path) sys.path.insert(0, test_path) import mock_tables.dbconnector + from mock_platform_sfputil.mock_platform_sfputil import mock_platform_sfputil_helper + mock_platform_sfputil_helper() if os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] == "multi_asic": import mock_tables.mock_multi_asic mock_tables.dbconnector.load_namespace_config() except KeyError: pass -# TODO: We should share these maps and the formatting functions between sfputil and sfpshow -QSFP_DATA_MAP = { - 'model': 'Vendor PN', - 'vendor_oui': 'Vendor OUI', - 'vendor_date': 'Vendor Date Code(YYYY-MM-DD Lot)', - 'manufacturer': 'Vendor Name', - 'vendor_rev': 'Vendor Rev', - 'serial': 'Vendor SN', - 'type': 'Identifier', - 'ext_identifier': 'Extended Identifier', - 'ext_rateselect_compliance': 'Extended RateSelect Compliance', - 'cable_length': 'cable_length', - 'cable_type': 'Length', - 'nominal_bit_rate': 'Nominal Bit Rate(100Mbs)', - 'specification_compliance': 'Specification compliance', - 'encoding': 'Encoding', - 'connector': 'Connector', - 'application_advertisement': 'Application Advertisement' -} +from utilities_common import multi_asic as multi_asic_util +from utilities_common.platform_sfputil_helper import is_rj45_port, RJ45_PORT_TYPE +# TODO: We should share these maps and the formatting functions between sfputil and sfpshow SFP_DOM_CHANNEL_MONITOR_MAP = { 'rx1power': 'RXPower', 'tx1bias': 'TXBias', @@ -215,6 +208,38 @@ QSFP_DD_DOM_VALUE_UNIT_MAP = { 'voltage': 'Volts' } +ZR_PM_HEADER = ['Parameter', 'Unit', 'Min', 'Avg', 'Max', + 'Threshold\nHigh\nAlarm', 'Threshold\nHigh\nWarning', + 'Threshold\nCrossing\nAlert-High', + 'Threshold\nLow\nAlarm', 'Threshold\nLow\nWarning', + 'Threshold\nCrossing\nAlert-Low'] + +ZR_PM_VALUE_KEY_SUFFIXS = ['min', 'avg', 'max'] + +ZR_PM_THRESHOLD_KEY_SUFFIXS = ['highalarm', + 'highwarning', 'lowalarm', 'lowwarning'] + +# mapping from parameter_name to [unit, parameter_key_prefix] +ZR_PM_INFO_MAP = { + 'Tx Power': ['dBm', 'tx_power'], + 'Rx Total Power': ['dBm', 'rx_tot_power'], + 'Rx Signal Power': ['dBm', 'rx_sig_power'], + 'CD-short link': ['ps/nm', 'cd'], + 'PDL': ['dB', 'pdl'], + 'OSNR': ['dB', 'osnr'], + 'eSNR': ['dB', 'esnr'], + 'CFO': ['MHz', 'cfo'], + 'DGD': ['ps', 'dgd'], + 'SOPMD': ['ps^2', 'sopmd'], + 'SOP ROC': ['krad/s', 'soproc'], + 'Pre-FEC BER': ['N/A', 'prefec_ber'], + 'Post-FEC BER': ['N/A', 'uncorr_frames'], + 'EVM': ['%', 'evm'] +} + +ZR_PM_NOT_APPLICABLE_STR = 'Transceiver performance monitoring not applicable' + +QSFP_STATUS_NOT_APPLICABLE_STR = 'Transceiver status info not applicable' def display_invalid_intf_eeprom(intf_name): output = intf_name + ': SFP EEPROM Not detected\n' @@ -228,8 +253,15 @@ def display_invalid_intf_presence(intf_name): click.echo(tabulate(port_table, header)) -class SFPShow(object): +def display_invalid_intf_pm(intf_name): + output = intf_name + ': %s\n' % ZR_PM_NOT_APPLICABLE_STR + click.echo(output) + +def display_invalid_intf_status(intf_name): + output = intf_name + ': %s\n' % QSFP_STATUS_NOT_APPLICABLE_STR + click.echo(output) +class SFPShow(object): def __init__(self, intf_name, namespace_option, dump_dom=False): super(SFPShow, self).__init__() self.db = None @@ -237,6 +269,8 @@ class SFPShow(object): self.dump_dom = dump_dom self.table = [] self.intf_eeprom: Dict[str, str] = {} + self.intf_pm: Dict[str, str] = {} + self.intf_status: Dict[str, str] = {} self.multi_asic = multi_asic_util.MultiAsic(namespace_option=namespace_option) # Convert dict values to cli output string @@ -259,18 +293,31 @@ class SFPShow(object): units) return output + # Convert sfp status in DB to cli output string + def convert_sfp_status_to_output_string(self, sfp_status_dict, status_map): + indent = ' ' * 8 + output = '' + for key in status_map.keys(): + if key not in sfp_status_dict: + continue + output += '{}{}: {}\n'.format(indent, status_map[key], sfp_status_dict[key]) + + return output + # Convert sfp info in DB to cli output string def convert_sfp_info_to_output_string(self, sfp_info_dict): indent = ' ' * 8 output = '' + is_sfp_cmis = 'cmis_rev' in sfp_info_dict - sorted_qsfp_data_map_keys = sorted(QSFP_DATA_MAP, key=QSFP_DATA_MAP.get) - for key in sorted_qsfp_data_map_keys: + data_map = CMIS_DATA_MAP if is_sfp_cmis else QSFP_DATA_MAP + sorted_data_map_keys = sorted(data_map, key=data_map.get) + for key in sorted_data_map_keys: if key == 'cable_type': output += '{}{}: {}\n'.format(indent, sfp_info_dict['cable_type'], sfp_info_dict['cable_length']) elif key == 'cable_length': pass - elif key == 'specification_compliance': + elif key == 'specification_compliance' and not(is_sfp_cmis): if sfp_info_dict['type'] == "QSFP-DD Double Density 8X Pluggable Transceiver": output += '{}{}: {}\n'.format(indent, QSFP_DATA_MAP[key], sfp_info_dict[key]) else: @@ -284,8 +331,10 @@ class SFPShow(object): output += '{}{}: {}\n'.format((indent * 2), compliance_key, spec_compliance_dict[compliance_key]) except ValueError as e: output += '{}N/A\n'.format((indent * 2)) + elif key == 'application_advertisement': + output += covert_application_advertisement_to_output_string(indent, sfp_info_dict) else: - output += '{}{}: {}\n'.format(indent, QSFP_DATA_MAP[key], sfp_info_dict[key]) + output += '{}{}: {}\n'.format(indent, data_map[key], sfp_info_dict[key]) return output @@ -392,38 +441,126 @@ class SFPShow(object): output = '' sfp_info_dict = state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(interface_name)) - output = 'SFP EEPROM detected\n' - sfp_info_output = self.convert_sfp_info_to_output_string(sfp_info_dict) - output += sfp_info_output + if sfp_info_dict: + if sfp_info_dict['type'] == RJ45_PORT_TYPE: + output = 'SFP EEPROM is not applicable for RJ45 port\n' + else: + output = 'SFP EEPROM detected\n' + sfp_info_output = self.convert_sfp_info_to_output_string(sfp_info_dict) + output += sfp_info_output + + if dump_dom: + sfp_type = sfp_info_dict['type'] + dom_info_dict = state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_DOM_SENSOR|{}'.format(interface_name)) + dom_info_dict.update(state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_DOM_THRESHOLD|{}'.format(interface_name))) + dom_output = self.convert_dom_to_output_string(sfp_type, dom_info_dict) + output += dom_output + else: + if is_rj45_port(interface_name): + output = 'SFP EEPROM is not applicable for RJ45 port\n' + else: + output = "SFP EEPROM Not detected\n" - if dump_dom: - sfp_type = sfp_info_dict['type'] - dom_info_dict = state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_DOM_SENSOR|{}'.format(interface_name)) - dom_output = self.convert_dom_to_output_string(sfp_type, dom_info_dict) - output += dom_output + return output + # Convert sfp status info in DB to cli output string + def convert_interface_sfp_status_to_cli_output_string(self, state_db, interface_name): + sfp_status_dict = state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_STATUS|{}'.format(interface_name)) + if sfp_status_dict and len(sfp_status_dict) > 2: + # common section + output = '\n' + self.convert_sfp_status_to_output_string(sfp_status_dict, QSFP_STATUS_MAP) + # CMIS specific section + if 'module_state' in sfp_status_dict: + output += self.convert_sfp_status_to_output_string(sfp_status_dict, CMIS_STATUS_MAP) + # C-CMIS specific section + if 'tuning_in_progress' in sfp_status_dict: + output += self.convert_sfp_status_to_output_string(sfp_status_dict, CCMIS_STATUS_MAP) + else: + output = QSFP_STATUS_NOT_APPLICABLE_STR + '\n' + return output + + def convert_pm_prefix_to_threshold_prefix(self, pm_prefix): + if pm_prefix == 'uncorr_frames': + return 'postfecber' + elif pm_prefix == 'cd': + return 'cdshort' + else: + return pm_prefix.replace('_', '') + + def beautify_pm_field(self, prefix, field): + if field is None: + return 'N/A' + elif prefix in {'prefec_ber'}: + return "{:.2E}".format(field) if field != 0 else '0.0' + else: + return str(field) + + def convert_interface_sfp_pm_to_cli_output_string(self, state_db, interface_name): + sfp_pm_dict = state_db.get_all( + self.db.STATE_DB, 'TRANSCEIVER_PM|{}'.format(interface_name)) + sfp_threshold_dict = state_db.get_all( + state_db.STATE_DB, 'TRANSCEIVER_DOM_THRESHOLD|{}'.format(interface_name)) + table = [] + indent_num = 4 + indent = ' ' * indent_num + if sfp_pm_dict: + output = '\n' + indent + for param_name, (unit, prefix) in ZR_PM_INFO_MAP.items(): + row = [param_name, unit] + values = [] + for suffix in ZR_PM_VALUE_KEY_SUFFIXS: + key = prefix + '_' + suffix + values.append( + float(sfp_pm_dict[key]) if key in sfp_pm_dict else None) + + thresholds = [] + for suffix in ZR_PM_THRESHOLD_KEY_SUFFIXS: + key = self.convert_pm_prefix_to_threshold_prefix( + prefix) + suffix + if key in sfp_threshold_dict and sfp_threshold_dict[key] != 'N/A': + thresholds.append(float(sfp_threshold_dict[key])) + else: + thresholds.append(None) + + tca_high, tca_low = None, None + if values[2] is not None and thresholds[0] is not None: + # TCA-High: max > high_alarm + tca_high = values[2] > thresholds[0] + if values[0] is not None and thresholds[2] is not None: + # TCA-low: min < low_alarm + tca_low = values[0] < thresholds[2] + + for field in values + thresholds[:2] + [tca_high] + thresholds[2:] + [tca_low]: + row.append(self.beautify_pm_field(prefix, field)) + table.append(row) + + output += tabulate(table, + ZR_PM_HEADER, disable_numparse=True).replace('\n', '\n' + indent) + output += '\n' + else: + output = ZR_PM_NOT_APPLICABLE_STR + '\n' return output @multi_asic_util.run_on_multi_asic def get_eeprom(self): if self.intf_name is not None: - presence = self.db.exists(self.db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(self.intf_name)) - if presence: - self.intf_eeprom[self.intf_name] = self.convert_interface_sfp_info_to_cli_output_string( - self.db, self.intf_name, self.dump_dom) - else: - self.intf_eeprom[self.intf_name] = "SFP EEPROM Not detected\n" + self.intf_eeprom[self.intf_name] = self.convert_interface_sfp_info_to_cli_output_string( + self.db, self.intf_name, self.dump_dom) else: port_table_keys = self.db.keys(self.db.APPL_DB, "PORT_TABLE:*") for i in port_table_keys: interface = re.split(':', i, maxsplit=1)[-1].strip() if interface and interface.startswith(front_panel_prefix()) and not interface.startswith((backplane_prefix(), inband_prefix(), recirc_prefix())): - presence = self.db.exists(self.db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(interface)) - if presence: - self.intf_eeprom[interface] = self.convert_interface_sfp_info_to_cli_output_string( - self.db, interface, self.dump_dom) - else: - self.intf_eeprom[interface] = "SFP EEPROM Not detected\n" + self.intf_eeprom[interface] = self.convert_interface_sfp_info_to_cli_output_string( + self.db, interface, self.dump_dom) + + def convert_interface_sfp_presence_state_to_cli_output_string(self, state_db, interface_name): + sfp_info_dict = state_db.get_all(self.db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(interface_name)) + if sfp_info_dict: + output = 'Present' + else: + output = 'Not present' + return output @multi_asic_util.run_on_multi_asic @@ -431,24 +568,44 @@ class SFPShow(object): port_table = [] if self.intf_name is not None: - presence = self.db.exists(self.db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(self.intf_name)) - if presence: - port_table.append((self.intf_name, 'Present')) - else: - port_table.append((self.intf_name, 'Not present')) + presence_string = self.convert_interface_sfp_presence_state_to_cli_output_string(self.db, self.intf_name) + port_table.append((self.intf_name, presence_string)) else: port_table_keys = self.db.keys(self.db.APPL_DB, "PORT_TABLE:*") for i in port_table_keys: key = re.split(':', i, maxsplit=1)[-1].strip() if key and key.startswith(front_panel_prefix()) and not key.startswith((backplane_prefix(), inband_prefix(), recirc_prefix())): - presence = self.db.exists(self.db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(key)) - if presence: - port_table.append((key, 'Present')) - else: - port_table.append((key, 'Not present')) + presence_string = self.convert_interface_sfp_presence_state_to_cli_output_string(self.db, key) + port_table.append((key, presence_string)) self.table += port_table + @multi_asic_util.run_on_multi_asic + def get_pm(self): + if self.intf_name is not None: + self.intf_pm[self.intf_name] = self.convert_interface_sfp_pm_to_cli_output_string( + self.db, self.intf_name) + else: + port_table_keys = self.db.keys(self.db.APPL_DB, "PORT_TABLE:*") + for i in port_table_keys: + interface = re.split(':', i, maxsplit=1)[-1].strip() + if interface and interface.startswith(front_panel_prefix()) and not interface.startswith((backplane_prefix(), inband_prefix(), recirc_prefix())): + self.intf_pm[interface] = self.convert_interface_sfp_pm_to_cli_output_string( + self.db, interface) + + @multi_asic_util.run_on_multi_asic + def get_status(self): + if self.intf_name is not None: + self.intf_status[self.intf_name] = self.convert_interface_sfp_status_to_cli_output_string( + self.db, self.intf_name) + else: + port_table_keys = self.db.keys(self.db.APPL_DB, "PORT_TABLE:*") + for i in port_table_keys: + interface = re.split(':', i, maxsplit=1)[-1].strip() + if interface and interface.startswith(front_panel_prefix()) and not interface.startswith((backplane_prefix(), inband_prefix(), recirc_prefix())): + self.intf_status[interface] = self.convert_interface_sfp_status_to_cli_output_string( + self.db, interface) + def display_eeprom(self): click.echo("\n".join([f"{k}: {v}" for k, v in natsorted(self.intf_eeprom.items())])) @@ -457,6 +614,13 @@ class SFPShow(object): sorted_port_table = natsorted(self.table) click.echo(tabulate(sorted_port_table, header)) + def display_pm(self): + click.echo( + "\n".join([f"{k}: {v}" for k, v in natsorted(self.intf_pm.items())])) + + def display_status(self): + click.echo( + "\n".join([f"{k}: {v}" for k, v in natsorted(self.intf_status.items())])) # This is our main entrypoint - the main 'sfpshow' command @@ -484,6 +648,23 @@ def eeprom(port, dump_dom, namespace): sfp.get_eeprom() sfp.display_eeprom() +# 'info' subcommand + +@cli.command() +@click.option('-p', '--port', metavar='', help="Display SFP EEPROM data for port only") +@click.option('-n', '--namespace', default=None, help="Display interfaces for specific namespace") +def info(port, namespace): + if port and multi_asic.is_multi_asic() and namespace is None: + try: + namespace = multi_asic.get_namespace_for_port(port) + except Exception: + display_invalid_intf_eeprom(port) + sys.exit(1) + + sfp = SFPShow(port, namespace) + sfp.get_eeprom() + sfp.display_eeprom() + # 'presence' subcommand @@ -502,6 +683,42 @@ def presence(port, namespace): sfp.get_presence() sfp.display_presence() +# 'pm' subcommand + + +@cli.command() +@click.option('-p', '--port', metavar='', help="Display SFP PM for port only") +@click.option('-n', '--namespace', default=None, help="Display interfaces for specific namespace") +def pm(port, namespace): + if port and multi_asic.is_multi_asic() and namespace is None: + try: + namespace = multi_asic.get_namespace_for_port(port) + except Exception: + display_invalid_intf_pm(port) + sys.exit(1) + + sfp = SFPShow(port, namespace) + sfp.get_pm() + sfp.display_pm() + +# 'pm' subcommand + + +@cli.command() +@click.option('-p', '--port', metavar='', help="Display SFP status for port only") +@click.option('-n', '--namespace', default=None, help="Display interfaces for specific namespace") +def status(port, namespace): + if port and multi_asic.is_multi_asic() and namespace is None: + try: + namespace = multi_asic.get_namespace_for_port(port) + except Exception: + display_invalid_intf_status(port) + sys.exit(1) + + sfp = SFPShow(port, namespace) + sfp.get_status() + sfp.display_status() + if __name__ == "__main__": cli() diff --git a/scripts/storyteller b/scripts/storyteller index b342c722c..5d1420673 100755 --- a/scripts/storyteller +++ b/scripts/storyteller @@ -20,6 +20,7 @@ regex_dict = { 'lag' : r'link becomes\|addLag\|PortChannel.*oper state', 'reboot' : r'BOOT\|rc.local\|old_config\|minigraph.xml\|Rebooting\|reboot\|executeOperationsOnAsic\|getAsicView\|dumpVidToAsicOperatioId\|neighbor_adv\|Pausing\|shutdown\|warm', 'service' : r'Starting\|Stopping\|Started\|Stopped', + 'linkprober': r'Received link prober event, new state' } @@ -86,7 +87,7 @@ def main(): parser.add_argument('-l', '--log', help='log file prefix, e.g. syslog; default: syslog', type=str, required=False, default='syslog') - parser.add_argument('-c', '--category', help='Categories: bgp, crash, interface, lag, reboot, service Specify multiple categories as c1,c2,c3; default: reboot', + parser.add_argument('-c', '--category', help='Categories: bgp, crash, interface, lag, reboot, service, linkprober Specify multiple categories as c1,c2,c3; default: reboot', type=str, required=False, default='reboot') parser.add_argument('-p', '--logpath', help='log file path, e.g. /var/log; default: /var/log', type=str, required=False, default='/var/log') diff --git a/scripts/teamd_increase_retry_count.py b/scripts/teamd_increase_retry_count.py new file mode 100755 index 000000000..d5151b69b --- /dev/null +++ b/scripts/teamd_increase_retry_count.py @@ -0,0 +1,330 @@ +#!/usr/bin/python3 + +import subprocess +import json +from scapy.config import conf +conf.ipv6_enabled = False +conf.verb = False +from scapy.fields import ByteField, ShortField, MACField, XStrFixedLenField, ConditionalField +from scapy.layers.l2 import Ether +from scapy.sendrecv import sendp, sniff +from scapy.packet import Packet, split_layers, bind_layers +import scapy.contrib.lacp +import os +import re +import sys +from threading import Thread, Event +import time +import argparse +import signal + +from sonic_py_common import logger +from swsscommon.swsscommon import DBConnector, Table + +log = logger.Logger() +revertTeamdRetryCountChanges = False +DEFAULT_RETRY_COUNT = 3 +EXTENDED_RETRY_COUNT = 5 +SLOW_PROTOCOL_MAC_ADDRESS = "01:80:c2:00:00:02" +LACP_ETHERTYPE = 0x8809 + +class LACPRetryCount(Packet): + name = "LACPRetryCount" + fields_desc = [ + ByteField("version", 0xf1), + ByteField("actor_type", 1), + ByteField("actor_length", 20), + ShortField("actor_system_priority", 0), + MACField("actor_system", None), + ShortField("actor_key", 0), + ShortField("actor_port_priority", 0), + ShortField("actor_port_number", 0), + ByteField("actor_state", 0), + XStrFixedLenField("actor_reserved", "", 3), + ByteField("partner_type", 2), + ByteField("partner_length", 20), + ShortField("partner_system_priority", 0), + MACField("partner_system", None), + ShortField("partner_key", 0), + ShortField("partner_port_priority", 0), + ShortField("partner_port_number", 0), + ByteField("partner_state", 0), + XStrFixedLenField("partner_reserved", "", 3), + ByteField("collector_type", 3), + ByteField("collector_length", 16), + ShortField("collector_max_delay", 0), + XStrFixedLenField("collector_reserved", "", 12), + ConditionalField(ByteField("actor_retry_count_type", 0x80), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("actor_retry_count_length", 4), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("actor_retry_count", 0), lambda pkt:pkt.version == 0xf1), + ConditionalField(XStrFixedLenField("actor_retry_count_reserved", "", 1), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("partner_retry_count_type", 0x81), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("partner_retry_count_length", 4), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("partner_retry_count", 0), lambda pkt:pkt.version == 0xf1), + ConditionalField(XStrFixedLenField("partner_retry_count_reserved", "", 1), lambda pkt:pkt.version == 0xf1), + ByteField("terminator_type", 0), + ByteField("terminator_length", 0), + ConditionalField(XStrFixedLenField("reserved", "", 42), lambda pkt:pkt.version == 0xf1), + ConditionalField(XStrFixedLenField("reserved", "", 50), lambda pkt:pkt.version != 0xf1), + ] + +split_layers(scapy.contrib.lacp.SlowProtocol, scapy.contrib.lacp.LACP, subtype=1) +bind_layers(scapy.contrib.lacp.SlowProtocol, LACPRetryCount, subtype=1) + +class LacpPacketListenThread(Thread): + def __init__(self, port, targetMacAddress, sendReadyEvent): + Thread.__init__(self) + self.port = port + self.targetMacAddress = targetMacAddress + self.sendReadyEvent = sendReadyEvent + self.detectedNewVersion = False + + def lacpPacketCallback(self, pkt): + if pkt["LACPRetryCount"].version == 0xf1: + self.detectedNewVersion = True + return self.detectedNewVersion + + def run(self): + sniff(stop_filter=self.lacpPacketCallback, iface=self.port, filter="ether proto {} and ether src {}".format(LACP_ETHERTYPE, self.targetMacAddress), + store=0, timeout=30, started_callback=self.sendReadyEvent.set) + +def getPortChannels(): + applDb = DBConnector("APPL_DB", 0) + configDb = DBConnector("CONFIG_DB", 0) + portChannelTable = Table(applDb, "LAG_TABLE") + portChannels = portChannelTable.getKeys() + activePortChannels = [] + for portChannel in portChannels: + state = portChannelTable.get(portChannel) + if not state or not state[0]: + continue + isAdminUp = False + isOperUp = False + for key, value in state[1]: + if key == "admin_status": + isAdminUp = value == "up" + elif key == "oper_status": + isOperUp = value == "up" + if isAdminUp and isOperUp: + activePortChannels.append(portChannel) + + # Now find out which BGP sessions on these port channels are admin up. This needs to go + # through a circuitious sequence of steps. + # + # 1. Get the local IPv4/IPv6 address assigned to each port channel. + # 2. Find out which BGP session (in CONFIG_DB) has a local_addr attribute of the local + # IPv4/IPv6 address. + # 3. Check the admin_status field of that table in CONFIG_DB. + portChannelData = {} + portChannelInterfaceTable = Table(configDb, "PORTCHANNEL_INTERFACE") + portChannelInterfaces = portChannelInterfaceTable.getKeys() + for portChannelInterface in portChannelInterfaces: + if "|" not in portChannelInterface: + continue + portChannel = portChannelInterface.split("|")[0] + ipAddress = portChannelInterface.split("|")[1].split("/")[0].lower() + if portChannel not in activePortChannels: + continue + portChannelData[ipAddress] = { + "portChannel": portChannel, + "adminUp": False + } + + deviceMetadataTable = Table(configDb, "DEVICE_METADATA") + metadata = deviceMetadataTable.get("localhost") + defaultBgpStatus = True + for key, value in metadata[1]: + if key == "default_bgp_status": + defaultBgpStatus = value == "up" + break + + bgpTable = Table(configDb, "BGP_NEIGHBOR") + bgpNeighbors = bgpTable.getKeys() + for bgpNeighbor in bgpNeighbors: + neighborData = bgpTable.get(bgpNeighbor) + if not neighborData[0]: + continue + localAddr = None + isAdminUp = defaultBgpStatus + for key, value in neighborData[1]: + if key == "local_addr": + if value not in portChannelData: + break + localAddr = value.lower() + elif key == "admin_status": + isAdminUp = value == "up" + if not localAddr: + continue + portChannelData[localAddr]["adminUp"] = isAdminUp + + return set([portChannelData[x]["portChannel"] for x in portChannelData.keys() if portChannelData[x]["adminUp"]]) + +def getPortChannelConfig(portChannelName): + (processStdout, _) = getCmdOutput(["teamdctl", portChannelName, "state", "dump"]) + return json.loads(processStdout) + +def getLldpNeighbors(): + (processStdout, _) = getCmdOutput(["lldpctl", "-f", "json"]) + return json.loads(processStdout) + +def craftLacpPacket(portChannelConfig, portName, isResetPacket=False, newVersion=True): + portConfig = portChannelConfig["ports"][portName] + actorConfig = portConfig["runner"]["actor_lacpdu_info"] + partnerConfig = portConfig["runner"]["partner_lacpdu_info"] + l2 = Ether(dst=SLOW_PROTOCOL_MAC_ADDRESS, src=portConfig["ifinfo"]["dev_addr"], type=LACP_ETHERTYPE) + l3 = scapy.contrib.lacp.SlowProtocol(subtype=0x01) + l4 = LACPRetryCount() + if newVersion: + l4.version = 0xf1 + else: + l4.version = 0x1 + l4.actor_system_priority = actorConfig["system_priority"] + l4.actor_system = actorConfig["system"] + l4.actor_key = actorConfig["key"] + l4.actor_port_priority = actorConfig["port_priority"] + l4.actor_port_number = actorConfig["port"] + l4.actor_state = actorConfig["state"] + l4.partner_system_priority = partnerConfig["system_priority"] + l4.partner_system = partnerConfig["system"] + l4.partner_key = partnerConfig["key"] + l4.partner_port_priority = partnerConfig["port_priority"] + l4.partner_port_number = partnerConfig["port"] + l4.partner_state = partnerConfig["state"] + if newVersion: + l4.actor_retry_count = EXTENDED_RETRY_COUNT if not isResetPacket else DEFAULT_RETRY_COUNT + l4.partner_retry_count = DEFAULT_RETRY_COUNT + packet = l2 / l3 / l4 + return packet + +def sendLacpPackets(packets, revertPackets): + global revertTeamdRetryCountChanges + while not revertTeamdRetryCountChanges: + for port, packet in packets: + sendp(packet, iface=port) + time.sleep(15) + if revertTeamdRetryCountChanges: + for port, packet in revertPackets: + sendp(packet, iface=port) + +def abortTeamdChanges(signum, frame): + global revertTeamdRetryCountChanges + log.log_info("Got signal {}, reverting teamd retry count change".format(signum)) + revertTeamdRetryCountChanges = True + +def getCmdOutput(cmd): + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE) + return proc.communicate()[0], proc.returncode + +def main(probeOnly=False): + if os.geteuid() != 0: + log.log_error("Root privileges required for this operation", also_print_to_console=True) + sys.exit(1) + portChannels = getPortChannels() + if not portChannels: + log.log_info("No port channels retrieved; exiting") + return + failedPortChannels = [] + if probeOnly: + for portChannel in portChannels: + config = getPortChannelConfig(portChannel) + lldpInfo = getLldpNeighbors() + portChannelChecked = False + for portName in config["ports"].keys(): + if not "runner" in config["ports"][portName] or \ + not "partner_lacpdu_info" in config["ports"][portName]["runner"] or \ + not "actor_lacpdu_info" in config["ports"][portName]["runner"]: + log.log_error("ERROR: Missing information from teamd about {}; skipping".format(portName)) + failedPortChannels.append(portChannel) + break + + interfaceLldpInfo = [k for k in lldpInfo["lldp"]["interface"] if portName in k] + if not interfaceLldpInfo: + log.log_warning("WARNING: No LLDP info available for {}; skipping".format(portName)) + continue + interfaceLldpInfo = interfaceLldpInfo[0][portName] + peerName = list(interfaceLldpInfo["chassis"].keys())[0] + peerInfo = interfaceLldpInfo["chassis"][peerName] + if "descr" not in peerInfo: + log.log_warning("WARNING: No peer description available via LLDP for {}; skipping".format(portName)) + continue + portChannelChecked = True + if "sonic" not in peerInfo["descr"].lower(): + log.log_warning("WARNING: Peer device is not a SONiC device; skipping") + failedPortChannels.append(portChannel) + break + + sendReadyEvent = Event() + + # Start sniffing thread + lacpThread = LacpPacketListenThread(portName, config["ports"][portName]["runner"]["partner_lacpdu_info"]["system"], sendReadyEvent) + lacpThread.start() + + # Generate and send probe packet after sniffing has started + probePacket = craftLacpPacket(config, portName) + sendReadyEvent.wait() + sendp(probePacket, iface=portName) + + lacpThread.join() + + resetProbePacket = craftLacpPacket(config, portName, newVersion=False) + # 2-second sleep for making sure all processing is done on the peer device + time.sleep(2) + sendp(resetProbePacket, iface=portName, count=2, inter=0.5) + + if lacpThread.detectedNewVersion: + log.log_notice("SUCCESS: Peer device {} is running version of SONiC with teamd retry count feature".format(peerName), also_print_to_console=True) + break + else: + log.log_warning("WARNING: Peer device {} is running version of SONiC without teamd retry count feature".format(peerName), also_print_to_console=True) + failedPortChannels.append(portChannel) + break + if not portChannelChecked: + log.log_warning("WARNING: No information available about peer device on port channel {}".format(portChannel), also_print_to_console=True) + failedPortChannels.append(portChannel) + if failedPortChannels: + log.log_error("ERROR: There are port channels/peer devices that failed the probe: {}".format(failedPortChannels), also_print_to_console=True) + sys.exit(2) + else: + global revertTeamdRetryCountChanges + signal.signal(signal.SIGUSR1, abortTeamdChanges) + signal.signal(signal.SIGTERM, abortTeamdChanges) + (_, rc) = getCmdOutput(["config", "portchannel", "retry-count", "get", list(portChannels)[0]]) + if rc == 0: + # Currently running on SONiC version with teamd retry count feature + for portChannel in portChannels: + getCmdOutput(["config", "portchannel", "retry-count", "set", portChannel, str(EXTENDED_RETRY_COUNT)]) + pid = os.fork() + if pid == 0: + # Running in a new process, detached from parent process + while not revertTeamdRetryCountChanges: + time.sleep(15) + if revertTeamdRetryCountChanges: + for portChannel in portChannels: + getCmdOutput(["config", "portchannel", "retry-count", "set", portChannel, str(DEFAULT_RETRY_COUNT)]) + else: + lacpPackets = [] + revertLacpPackets = [] + for portChannel in portChannels: + config = getPortChannelConfig(portChannel) + for portName in config["ports"].keys(): + if not "runner" in config["ports"][portName] or \ + not "partner_lacpdu_info" in config["ports"][portName]["runner"] or \ + not "actor_lacpdu_info" in config["ports"][portName]["runner"]: + log.log_error("ERROR: Missing information from teamd about {}; skipping".format(portName)) + break + + packet = craftLacpPacket(config, portName) + lacpPackets.append((portName, packet)) + packet = craftLacpPacket(config, portName, isResetPacket=True) + revertLacpPackets.append((portName, packet)) + pid = os.fork() + if pid == 0: + # Running in a new process, detached from parent process + sendLacpPackets(lacpPackets, revertLacpPackets) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Teamd retry count changer.') + parser.add_argument('--probe-only', action='store_true', + help='Probe the peer devices only, to verify that they support the teamd retry count feature') + args = parser.parse_args() + main(args.probe_only) diff --git a/scripts/tunnelstat b/scripts/tunnelstat index 00aab5d83..8b045ec68 100755 --- a/scripts/tunnelstat +++ b/scripts/tunnelstat @@ -29,6 +29,7 @@ from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate from utilities_common.netstat import ns_diff, table_as_json, STATUS_NA, format_prate +from utilities_common.cli import UserCache from swsscommon.swsscommon import SonicV2Connector @@ -112,12 +113,12 @@ class Tunnelstat(object): if counter_tunnel_type_map is None: print("No %s in the DB!" % COUNTERS_TUNNEL_TYPE_MAP) - sys.exit(1) + sys.exit(1) if tun_type and tun_type not in counter_types: print("Unknown tunnel type %s" % tun_type) sys.exit(1) - + if tunnel and not tunnel in counter_tunnel_name_map: print("Interface %s missing from %s! Make sure it exists" % (tunnel, COUNTERS_TUNNEL_NAME_MAP)) sys.exit(2) @@ -250,56 +251,26 @@ def main(): delete_all_stats = args.delete_all use_json = args.json tag_name = args.tag if args.tag else "" - uid = str(os.getuid()) wait_time_in_seconds = args.period tunnel_name = args.tunnel if args.tunnel else "" tunnel_type = args.type if args.type else "" - # fancy filename with dashes: uid-tag-tunnel / uid-tunnel / uid-tag etc - filename_components = [uid, tag_name] - cnstat_file = "-".join(filter(None, filename_components)) + cache = UserCache(tag=tag_name) + + cnstat_file = "tunnelstat" - cnstat_dir = "/tmp/tunnelstat-" + uid + cnstat_dir = cache.get_directory() cnstat_fqn_file = cnstat_dir + "/" + cnstat_file if delete_all_stats: - # There is nothing to delete - if not os.path.isdir(cnstat_dir): - sys.exit(0) - - for file in os.listdir(cnstat_dir): - os.remove(cnstat_dir + "/" + file) - - try: - os.rmdir(cnstat_dir) - sys.exit(0) - except IOError as e: - print(e.errno, e) - sys.exit(e) + cache.remove_all() if delete_saved_stats: - try: - os.remove(cnstat_fqn_file) - except IOError as e: - if e.errno != ENOENT: - print(e.errno, e) - sys.exit(1) - finally: - if os.listdir(cnstat_dir) == []: - os.rmdir(cnstat_dir) - sys.exit(0) + cache.remove() tunnelstat = Tunnelstat() cnstat_dict,ratestat_dict = tunnelstat.get_cnstat(tunnel=tunnel_name, tun_type=tunnel_type) - # At this point, either we'll create a file or open an existing one. - if not os.path.exists(cnstat_dir): - try: - os.makedirs(cnstat_dir) - except IOError as e: - print(e.errno, e) - sys.exit(1) - if save_fresh_stats: try: pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) diff --git a/scripts/vnet_route_check.py b/scripts/vnet_route_check.py index b2c798dfb..dcd56af18 100755 --- a/scripts/vnet_route_check.py +++ b/scripts/vnet_route_check.py @@ -47,7 +47,7 @@ RC_OK = 0 RC_ERR = -1 - +default_vrf_oid = "" report_level = syslog.LOG_ERR write_to_syslog = True @@ -93,7 +93,7 @@ def get_vnet_intfs(): vnet_intfs = {} for intf_key in intfs_keys: - intf_attrs = intfs_table.get(intf_key)[1] + intf_attrs = dict(intfs_table.get(intf_key)[1]) if 'vnet_name' in intf_attrs: vnet_name = intf_attrs['vnet_name'] @@ -110,14 +110,9 @@ def get_all_rifs_oids(): Format: { : } ''' db = swsscommon.DBConnector('COUNTERS_DB', 0) - rif_table = swsscommon.Table(db, 'COUNTERS_RIF_NAME_MAP') - rif_keys = rif_table.getKeys() - - rif_name_oid_map = {} - for rif_name in rif_keys: - rif_name_oid_map[rif_name] = rif_table.get(rif_name)[1] + rif_name_oid_map = dict(rif_table.get('')[1]) return rif_name_oid_map @@ -156,8 +151,8 @@ def get_vrf_entries(): db_keys = rif_table.getKeys() for db_key in db_keys: - if 'SAI_OBJECT_TYPE_ROUTER_INTERFACE' in db_key: - rif_attrs = rif_table.get(db_key)[1] + if (db_key == f'SAI_OBJECT_TYPE_ROUTER_INTERFACE:{vnet_rifs_oids[vnet_rif_name]}'): + rif_attrs = dict(rif_table.get(db_key)[1]) rif_vrf_map[vnet_rif_name] = rif_attrs['SAI_ROUTER_INTERFACE_ATTR_VIRTUAL_ROUTER_ID'] return rif_vrf_map @@ -216,7 +211,7 @@ def get_vnet_routes_from_app_db(): vnet_routes = {} for vnet_route_db_key in vnet_routes_db_keys: - vnet_route_list = vnet_route_db_key.split(':') + vnet_route_list = vnet_route_db_key.split(':',1) vnet_name = vnet_route_list[0] vnet_route = vnet_route_list[1] @@ -224,8 +219,22 @@ def get_vnet_routes_from_app_db(): vnet_routes[vnet_name] = {} vnet_routes[vnet_name]['routes'] = [] - intf = vnet_intfs[vnet_name][0] - vnet_routes[vnet_name]['vrf_oid'] = vnet_vrfs.get(intf, 'None') + if vnet_name not in vnet_intfs: + # this route has no vnet_intf and may be part of default VRF. + vnet_table = swsscommon.Table(db, 'VNET_TABLE') + scope_value = "" + # "Vnet_v4_in_v4-0": [("vxlan_tunnel", "tunnel_v4"), ("scope", "default"), ("vni", "10000"), ("peer_list", "")] + for key,value in vnet_table.get(vnet_name)[1]: + if key == "scope": + scope_value = value + break + if scope_value == 'default': + vnet_routes[vnet_name]['vrf_oid'] = default_vrf_oid + else: + assert "Non-default VRF route present without vnet interface." + else: + intf = vnet_intfs[vnet_name][0] + vnet_routes[vnet_name]['vrf_oid'] = vnet_vrfs.get(intf, 'None') vnet_routes[vnet_name]['routes'].append(vnet_route) @@ -242,10 +251,12 @@ def get_vnet_routes_from_asic_db(): vnet_vrfs = get_vrf_entries() vnet_vrfs_oids = [vnet_vrfs[k] for k in vnet_vrfs] + vnet_vrfs_oids.append(default_vrf_oid) vnet_intfs = get_vnet_intfs() vrf_oid_to_vnet_map = {} + vrf_oid_to_vnet_map[default_vrf_oid] = 'default_VRF' for vnet_name, vnet_rifs in vnet_intfs.items(): for vnet_rif, vrf_oid in vnet_vrfs.items(): @@ -281,7 +292,22 @@ def get_vnet_routes_from_asic_db(): return vnet_routes -def get_vnet_routes_diff(routes_1, routes_2): +def check_routes_with_default_vrf(vnet_name, vnet_attrs, routes_1, routes): + for vnet_route in vnet_attrs['routes']: + ispresent = False + for vnet_name_other, vnet_attrs_other in routes_1.items(): + if vnet_route in vnet_attrs_other['routes']: + ispresent = True + if not ispresent: + if vnet_name not in routes: + routes[vnet_name] = {} + routes[vnet_name]['routes'] = [] + routes[vnet_name]['routes'].append(vnet_route) + + return + + +def get_vnet_routes_diff(routes_1, routes_2, verify_default_vrf_routes = False): ''' Returns all routes present in routes_2 dictionary but missed in routes_1 Format: { : { 'routes': [ ] } } ''' @@ -289,15 +315,21 @@ def get_vnet_routes_diff(routes_1, routes_2): routes = {} for vnet_name, vnet_attrs in routes_2.items(): - if vnet_name not in routes_1: - routes[vnet_name] = routes + if vnet_attrs['vrf_oid'] == default_vrf_oid: + if verify_default_vrf_routes: + check_routes_with_default_vrf(vnet_name, vnet_attrs, routes_1, routes) + else: + continue else: - for vnet_route in vnet_attrs['routes']: - if vnet_route not in routes_1[vnet_name]['routes']: - if vnet_name not in routes: - routes[vnet_name] = {} - routes[vnet_name]['routes'] = [] - routes[vnet_name]['routes'].append(vnet_route) + if vnet_name not in routes_1: + routes[vnet_name] = vnet_attrs['routes'].copy() + else: + for vnet_route in vnet_attrs['routes']: + if vnet_route not in routes_1[vnet_name]['routes']: + if vnet_name not in routes: + routes[vnet_name] = {} + routes[vnet_name]['routes'] = [] + routes[vnet_name]['routes'].append(vnet_route) return routes @@ -331,11 +363,16 @@ def main(): # Don't run VNET routes consistancy logic if there is no VNET configuration if not check_vnet_cfg(): return rc + asic_db = swsscommon.DBConnector('ASIC_DB', 0) + virtual_router = swsscommon.Table(asic_db, 'ASIC_STATE:SAI_OBJECT_TYPE_VIRTUAL_ROUTER') + if virtual_router.getKeys() != []: + global default_vrf_oid + default_vrf_oid = virtual_router.getKeys()[0] app_db_vnet_routes = get_vnet_routes_from_app_db() asic_db_vnet_routes = get_vnet_routes_from_asic_db() - missed_in_asic_db_routes = get_vnet_routes_diff(asic_db_vnet_routes, app_db_vnet_routes) + missed_in_asic_db_routes = get_vnet_routes_diff(asic_db_vnet_routes, app_db_vnet_routes,True) missed_in_app_db_routes = get_vnet_routes_diff(app_db_vnet_routes, asic_db_vnet_routes) missed_in_sdk_routes = get_sdk_vnet_routes_diff(asic_db_vnet_routes) @@ -356,8 +393,8 @@ def main(): rc = RC_ERR print_message(syslog.LOG_ERR, json.dumps(res, indent=4)) print_message(syslog.LOG_ERR, 'Vnet Route Mismatch reported') - - return rc, res + return rc, res + return rc if __name__ == "__main__": diff --git a/scripts/watermarkstat b/scripts/watermarkstat index ffcec56fa..6ff3587e7 100755 --- a/scripts/watermarkstat +++ b/scripts/watermarkstat @@ -21,8 +21,16 @@ try: tests_path = os.path.join(modules_path, "tests") sys.path.insert(0, modules_path) sys.path.insert(0, tests_path) - import mock_tables.dbconnector + from mock_tables import dbconnector + if os.environ["WATERMARKSTAT_UNIT_TESTING"] == "1": + input_path = os.path.join(tests_path, "wm_input") + mock_db_path = os.path.join(input_path, "mock_db") + + for mock_db in os.listdir(mock_db_path): + name, ext = os.path.splitext(mock_db) + if ext == ".json": + dbconnector.dedicated_dbs[name.upper()] = os.path.join(mock_db_path, name) except KeyError: pass @@ -201,23 +209,37 @@ class Watermarkstat(object): return pg_index - def build_header(self, wm_type): + def build_header(self, wm_type, counter_type): if wm_type is None: print("Header info is not available!", file=sys.stderr) sys.exit(1) self.header_list = ['Port'] header_map = wm_type["obj_map"] - single_key = list(header_map.keys())[0] - header_len = len(header_map[single_key]) - min_idx = sys.maxsize - for name, counter_oid in header_map[single_key].items(): - curr_idx = int(wm_type["idx_func"](counter_oid)) - min_idx = min(min_idx, curr_idx) + header_idx_set = set() + for port in header_map.keys(): + for element in header_map[port].keys(): + element_idx = int(element.split(':')[1]) + header_idx_set.add(element_idx) + + if len(header_idx_set) == 0: + if counter_type != 'q_shared_multi': + print("Object map is empty!", file=sys.stderr) + sys.exit(1) + else: + print("Object map from the COUNTERS_DB is empty because the multicast queues are not configured in the CONFIG_DB!") + sys.exit(0) + + header_idx_list = list(header_idx_set) + header_idx_list.sort() + + self.header_idx_to_pos = {} + for i in header_idx_list: + self.header_idx_to_pos[i] = header_idx_list.index(i) - self.min_idx = min_idx - self.header_list += ["{}{}".format(wm_type["header_prefix"], idx) for idx in range(self.min_idx, self.min_idx + header_len)] + self.min_idx = header_idx_list[0] + self.header_list += ["{}{}".format(wm_type["header_prefix"], idx) for idx in header_idx_list] def get_counters(self, table_prefix, port_obj, idx_func, watermark): """ @@ -230,7 +252,7 @@ class Watermarkstat(object): for name, obj_id in port_obj.items(): full_table_id = table_prefix + obj_id idx = int(idx_func(obj_id)) - pos = idx - self.min_idx + pos = self.header_idx_to_pos[idx] counter_data = self.counters_db.get(self.counters_db.COUNTERS_DB, full_table_id, watermark) if counter_data is None or counter_data == '': fields[pos] = STATUS_NA @@ -254,7 +276,7 @@ class Watermarkstat(object): data = STATUS_NA table.append((buf_pool, data)) else: - self.build_header(type) + self.build_header(type, key) # Get stat for each port for port in natsorted(self.counter_port_name_map): row_data = list() diff --git a/setup.py b/setup.py index 7ee1eb857..a3af4c6c1 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ 'pddf_psuutil', 'pddf_thermalutil', 'pddf_ledutil', + 'rcli', 'show', 'show.interfaces', 'show.plugins', @@ -63,7 +64,7 @@ 'sonic_cli_gen', ], package_data={ - 'generic_config_updater': ['generic_config_updater.conf.json'], + 'generic_config_updater': ['gcu_services_validator.conf.json', 'gcu_field_operation_validators.conf.json'], 'show': ['aliases.ini'], 'sonic_installer': ['aliases.ini'], 'tests': ['acl_input/*', @@ -95,11 +96,14 @@ 'scripts/disk_check.py', 'scripts/dropconfig', 'scripts/dropstat', + 'scripts/dualtor_neighbor_check.py', 'scripts/dump_nat_entries.py', 'scripts/ecnconfig', + 'scripts/fabricstat', 'scripts/fanshow', 'scripts/fast-reboot', 'scripts/fast-reboot-dump.py', + 'scripts/fast-reboot-filter-routes.py', 'scripts/fdbclear', 'scripts/fdbshow', 'scripts/fibshow', @@ -110,6 +114,7 @@ 'scripts/intfutil', 'scripts/intfstat', 'scripts/ipintutil', + 'scripts/lag_keepalive.py', 'scripts/lldpshow', 'scripts/log_ssd_health', 'scripts/mellanox_buffer_migrator.py', @@ -135,6 +140,7 @@ 'scripts/soft-reboot', 'scripts/storyteller', 'scripts/syseeprom-to-json', + 'scripts/teamd_increase_retry_count.py', 'scripts/tempershow', 'scripts/tunnelstat', 'scripts/update_json.py', @@ -146,6 +152,8 @@ 'scripts/centralize_database', 'scripts/null_route_helper', 'scripts/coredump_gen_handler.py', + 'scripts/memory_threshold_check.py', + 'scripts/memory_threshold_check_handler.py', 'scripts/techsupport_cleanup.py', 'scripts/check_db_integrity.py' ], @@ -171,6 +179,8 @@ 'pddf_psuutil = pddf_psuutil.main:cli', 'pddf_thermalutil = pddf_thermalutil.main:cli', 'pddf_ledutil = pddf_ledutil.main:cli', + 'rexec = rcli.rexec:cli', + 'rshell = rcli.rshell:cli', 'show = show.main:cli', 'sonic-clear = clear.main:cli', 'sonic-installer = sonic_installer.main:sonic_installer', @@ -183,7 +193,9 @@ ] }, install_requires=[ + 'bcrypt==3.2.2', 'click==7.0', + 'cryptography==3.3.2', 'click-log>=0.3.2', 'docker>=4.4.4', 'docker-image-py>=0.1.10', @@ -198,11 +210,12 @@ 'natsort>=6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2 'netaddr>=0.8.0', 'netifaces>=0.10.7', + 'paramiko==2.11.0', 'pexpect>=4.8.0', 'semantic-version>=2.8.5', 'prettyprinter>=0.18.0', 'pyroute2>=0.5.14, <0.6.1', - 'requests>=2.25.0', + 'requests>=2.25.0, <=2.31.0', 'sonic-config-engine', 'sonic-platform-common', 'sonic-py-common', @@ -212,6 +225,7 @@ 'toposort==1.6', 'www-authenticate==0.9.2', 'xmltodict==0.12.0', + 'lazy-object-proxy', ], setup_requires= [ 'pytest-runner', diff --git a/sfputil/main.py b/sfputil/main.py index 91cb372ba..42630de7e 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -16,9 +16,12 @@ import click import sonic_platform import sonic_platform_base.sonic_sfp.sfputilhelper +from sonic_platform_base.sfp_base import SfpBase from swsscommon.swsscommon import SonicV2Connector from natsort import natsorted from sonic_py_common import device_info, logger, multi_asic +from utilities_common.sfp_helper import covert_application_advertisement_to_output_string +from utilities_common.sfp_helper import QSFP_DATA_MAP from tabulate import tabulate VERSION = '3.0' @@ -43,26 +46,12 @@ MAX_LPL_FIRMWARE_BLOCK_SIZE = 116 #Bytes -# TODO: We should share these maps and the formatting functions between sfputil and sfpshow -QSFP_DATA_MAP = { - 'model': 'Vendor PN', - 'vendor_oui': 'Vendor OUI', - 'vendor_date': 'Vendor Date Code(YYYY-MM-DD Lot)', - 'manufacturer': 'Vendor Name', - 'vendor_rev': 'Vendor Rev', - 'serial': 'Vendor SN', - 'type': 'Identifier', - 'ext_identifier': 'Extended Identifier', - 'ext_rateselect_compliance': 'Extended RateSelect Compliance', - 'cable_length': 'cable_length', - 'cable_type': 'Length', - 'nominal_bit_rate': 'Nominal Bit Rate(100Mbs)', - 'specification_compliance': 'Specification compliance', - 'encoding': 'Encoding', - 'connector': 'Connector', - 'application_advertisement': 'Application Advertisement' -} +PAGE_SIZE = 128 +PAGE_OFFSET = 128 + +SFF8472_A0_SIZE = 256 +# TODO: We should share these maps and the formatting functions between sfputil and sfpshow QSFP_DD_DATA_MAP = { 'model': 'Vendor PN', 'vendor_oui': 'Vendor OUI', @@ -267,6 +256,7 @@ 'voltage': 'Volts' } +RJ45_PORT_TYPE = 'RJ45' # Global platform-specific Chassis class instance platform_chassis = None @@ -289,6 +279,17 @@ def is_sfp_present(port_name): return bool(presence) + +def is_port_type_rj45(port_name): + physical_port = logical_port_to_physical_port_index(port_name) + + try: + port_types = platform_chassis.get_port_or_cage_type(physical_port) + return SfpBase.SFP_PORT_TYPE_BIT_RJ45 == port_types + except NotImplementedError: + pass + + return False # ========================== Methods for formatting output ========================== # Convert dict values to cli output string @@ -325,27 +326,15 @@ def convert_sfp_info_to_output_string(sfp_info_dict): elif key == 'cable_length': pass elif key == 'specification_compliance': - if sfp_info_dict['type'] == "QSFP-DD Double Density 8X Pluggable Transceiver" or \ - sfp_info_dict['type'] == "OSFP 8X Pluggable Transceiver" or \ - sfp_info_dict['type'] == "QSFP+ or later with CMIS": - output += '{}{}: {}\n'.format(indent, QSFP_DD_DATA_MAP[key], sfp_info_dict[key]) - else: - output += '{}{}:\n'.format(indent, QSFP_DD_DATA_MAP['specification_compliance']) - - spec_compliance_dict = {} - try: - spec_compliance_dict = ast.literal_eval(sfp_info_dict['specification_compliance']) - sorted_compliance_key_table = natsorted(spec_compliance_dict) - for compliance_key in sorted_compliance_key_table: - output += '{}{}: {}\n'.format((indent * 2), compliance_key, spec_compliance_dict[compliance_key]) - except ValueError as e: - output += '{}N/A\n'.format((indent * 2)) - elif key == 'application_advertisement': - pass + output += '{}{}: {}\n'.format(indent, QSFP_DD_DATA_MAP[key], sfp_info_dict[key]) elif key == 'supported_max_tx_power' or key == 'supported_min_tx_power': - output += '{}{}: {}dBm\n'.format(indent, QSFP_DD_DATA_MAP[key], sfp_info_dict[key]) + if key in sfp_info_dict: # C-CMIS compliant / coherent modules + output += '{}{}: {}dBm\n'.format(indent, QSFP_DD_DATA_MAP[key], sfp_info_dict[key]) elif key == 'supported_max_laser_freq' or key == 'supported_min_laser_freq': - output += '{}{}: {}GHz\n'.format(indent, QSFP_DD_DATA_MAP[key], sfp_info_dict[key]) + if key in sfp_info_dict: # C-CMIS compliant / coherent modules + output += '{}{}: {}GHz\n'.format(indent, QSFP_DD_DATA_MAP[key], sfp_info_dict[key]) + elif key == 'application_advertisement': + output += covert_application_advertisement_to_output_string(indent, sfp_info_dict) else: try: output += '{}{}: {}\n'.format(indent, QSFP_DD_DATA_MAP[key], sfp_info_dict[key]) @@ -360,21 +349,16 @@ def convert_sfp_info_to_output_string(sfp_info_dict): elif key == 'cable_length': pass elif key == 'specification_compliance': - if sfp_info_dict['type'] == "QSFP-DD Double Density 8X Pluggable Transceiver" or \ - sfp_info_dict['type'] == "OSFP 8X Pluggable Transceiver" or \ - sfp_info_dict['type'] == "QSFP+ or later with CMIS": - output += '{}{}: {}\n'.format(indent, QSFP_DATA_MAP[key], sfp_info_dict[key]) - else: - output += '{}{}:\n'.format(indent, QSFP_DATA_MAP['specification_compliance']) + output += '{}{}:\n'.format(indent, QSFP_DATA_MAP['specification_compliance']) - spec_compliance_dict = {} - try: - spec_compliance_dict = ast.literal_eval(sfp_info_dict['specification_compliance']) - sorted_compliance_key_table = natsorted(spec_compliance_dict) - for compliance_key in sorted_compliance_key_table: - output += '{}{}: {}\n'.format((indent * 2), compliance_key, spec_compliance_dict[compliance_key]) - except ValueError as e: - output += '{}N/A\n'.format((indent * 2)) + spec_compliance_dict = {} + try: + spec_compliance_dict = ast.literal_eval(sfp_info_dict['specification_compliance']) + sorted_compliance_key_table = natsorted(spec_compliance_dict) + for compliance_key in sorted_compliance_key_table: + output += '{}{}: {}\n'.format((indent * 2), compliance_key, spec_compliance_dict[compliance_key]) + except ValueError as e: + output += '{}N/A\n'.format((indent * 2)) else: output += '{}{}: {}\n'.format(indent, QSFP_DATA_MAP[key], sfp_info_dict[key]) @@ -649,6 +633,11 @@ def eeprom(port, dump_dom, namespace): for physical_port in physical_port_list: port_name = get_physical_port_name(logical_port_name, i, ganged) + if is_port_type_rj45(port_name): + output += "{}: SFP EEPROM is not applicable for RJ45 port\n".format(port_name) + output += '\n' + continue + try: presence = platform_chassis.get_sfp(physical_port).get_presence() except NotImplementedError: @@ -689,6 +678,148 @@ def eeprom(port, dump_dom, namespace): click.echo(output) +# 'eeprom-hexdump' subcommand +@show.command() +@click.option('-p', '--port', metavar='', required=True, help="Display SFP EEPROM hexdump for port ") +@click.option('-n', '--page', metavar='', help="Display SFP EEEPROM hexdump for ") +def eeprom_hexdump(port, page): + """Display EEPROM hexdump of SFP transceiver(s) for a given port name and page number""" + output = "" + + if platform_sfputil.is_logical_port(port) == 0: + click.echo("Error: invalid port {}".format(port)) + print_all_valid_port_values() + sys.exit(ERROR_INVALID_PORT) + + if page is None: + page = '0' + + logical_port_name = port + physical_port = logical_port_to_physical_port_index(logical_port_name) + + if is_port_type_rj45(logical_port_name): + click.echo("{}: SFP EEPROM Hexdump is not applicable for RJ45 port".format(port)) + sys.exit(ERROR_INVALID_PORT) + + try: + presence = platform_chassis.get_sfp(physical_port).get_presence() + except NotImplementedError: + click.echo("Sfp.get_presence() is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) + + if not presence: + click.echo("SFP EEPROM not detected") + sys.exit(ERROR_NOT_IMPLEMENTED) + else: + try: + id = platform_chassis.get_sfp(physical_port).read_eeprom(0, 1) + if id is None: + click.echo("Error: Failed to read EEPROM for offset 0!") + sys.exit(ERROR_NOT_IMPLEMENTED) + except NotImplementedError: + click.echo("Sfp.read_eeprom() is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) + + if id[0] == 0x3: + output = eeprom_hexdump_sff8472(port, physical_port, page) + else: + output = eeprom_hexdump_sff8636(port, physical_port, page) + + output += '\n' + + click.echo(output) + +def eeprom_hexdump_sff8472(port, physical_port, page): + try: + output = "" + indent = ' ' * 8 + output += 'EEPROM hexdump for port {} page {}h'.format(port, page) + output += '\n{}A0h dump'.format(indent) + page_dump = platform_chassis.get_sfp(physical_port).read_eeprom(0, SFF8472_A0_SIZE) + if page_dump is None: + click.echo("Error: Failed to read EEPROM for A0h!") + sys.exit(ERROR_NOT_IMPLEMENTED) + + output += hexdump(indent, page_dump, 0) + page_dump = platform_chassis.get_sfp(physical_port).read_eeprom(SFF8472_A0_SIZE, PAGE_SIZE) + if page_dump is None: + click.echo("Error: Failed to read EEPROM for A2h!") + sys.exit(ERROR_NOT_IMPLEMENTED) + else: + output += '\n\n{}A2h dump (lower 128 bytes)'.format(indent) + output += hexdump(indent, page_dump, 0) + + page_dump = platform_chassis.get_sfp(physical_port).read_eeprom(SFF8472_A0_SIZE + PAGE_OFFSET + (int(page, base=16) * PAGE_SIZE), PAGE_SIZE) + if page_dump is None: + click.echo("Error: Failed to read EEPROM for A2h upper page!") + sys.exit(ERROR_NOT_IMPLEMENTED) + else: + output += '\n\n{}A2h dump (upper 128 bytes) page {}h'.format(indent, page) + output += hexdump(indent, page_dump, PAGE_OFFSET) + except NotImplementedError: + click.echo("Sfp.read_eeprom() is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) + except ValueError: + click.echo("Please enter a numeric page number") + sys.exit(ERROR_NOT_IMPLEMENTED) + + return output + +def eeprom_hexdump_sff8636(port, physical_port, page): + try: + output = "" + indent = ' ' * 8 + output += 'EEPROM hexdump for port {} page {}h'.format(port, page) + output += '\n{}Lower page 0h'.format(indent) + page_dump = platform_chassis.get_sfp(physical_port).read_eeprom(0, PAGE_SIZE) + if page_dump is None: + click.echo("Error: Failed to read EEPROM for page 0!") + sys.exit(ERROR_NOT_IMPLEMENTED) + + output += hexdump(indent, page_dump, 0) + page_dump = platform_chassis.get_sfp(physical_port).read_eeprom(int(page, base=16) * PAGE_SIZE + PAGE_OFFSET, PAGE_SIZE) + if page_dump is None: + click.echo("Error: Failed to read EEPROM!") + sys.exit(ERROR_NOT_IMPLEMENTED) + else: + output += '\n\n{}Upper page {}h'.format(indent, page) + output += hexdump(indent, page_dump, PAGE_OFFSET) + except NotImplementedError: + click.echo("Sfp.read_eeprom() is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) + except ValueError: + click.echo("Please enter a numeric page number") + sys.exit(ERROR_NOT_IMPLEMENTED) + + return output + +def convert_byte_to_valid_ascii_char(byte): + if byte < 32 or 126 < byte: + return '.' + else: + return chr(byte) + +def hexdump(indent, data, mem_address): + ascii_string = '' + result = '' + for byte in data: + ascii_string = ascii_string + convert_byte_to_valid_ascii_char(byte) + byte_string = "{:02x}".format(byte) + if mem_address % 16 == 0: + mem_address_string = "{:08x}".format(mem_address) + result += '\n{}{} '.format(indent, mem_address_string) + result += '{} '.format(byte_string) + elif mem_address % 16 == 15: + result += '{} '.format(byte_string) + result += '|{}|'.format(ascii_string) + ascii_string = "" + elif mem_address % 16 == 8: + result += ' {} '.format(byte_string) + else: + result += '{} '.format(byte_string) + mem_address += 1 + + return result # 'presence' subcommand @show.command() @@ -710,6 +841,7 @@ def presence(port): logical_port_list = [port] + logical_port_list = natsort.natsorted(logical_port_list) for logical_port_name in logical_port_list: ganged = False i = 1 @@ -769,9 +901,9 @@ def fetch_error_status_from_platform_api(port): # Code to fetch the error status get_error_status_code = \ "try:\n"\ - " errors=['{}:{}'.format(sfp.index, sfp.get_error_description()) for sfp in sfp_list]\n" \ + " errors=['{}'.format(sfp.get_error_description()) for sfp in sfp_list]\n" \ "except NotImplementedError as e:\n"\ - " errors=['{}:{}'.format(sfp.index, 'OK (Not implemented)') for sfp in sfp_list]\n" \ + " errors=['{}'.format('OK (Not implemented)') for sfp in sfp_list]\n" \ "print(errors)\n" get_error_status_command = "docker exec pmon python3 -c \"{}{}{}\"".format( @@ -785,25 +917,25 @@ def fetch_error_status_from_platform_api(port): output_list = output.split('\n') for output_str in output_list: - # The output of all SFP error status are a list consisting of element with convention of ':' + # The output of all SFP error status are a list consisting of sorted physical port indices # Besides, there can be some logs captured during the platform API executing # So, first of all, we need to skip all the logs until find the output list of SFP error status if output_str[0] == '[' and output_str[-1] == ']': output_list = ast.literal_eval(output_str) break - output_dict = {} - for output in output_list: - sfp_index, error_status = output.split(':') - output_dict[int(sfp_index)] = error_status - - output = [] - for logical_port_name in logical_port_list: - physical_port_list = logical_port_name_to_physical_port_list(logical_port_name) - port_name = get_physical_port_name(logical_port_name, 1, False) + physical_port_set = set() + for port in logical_port_list: + physical_port_set.add(logical_port_to_physical_port_index(port)) - output.append([port_name, output_dict.get(physical_port_list[0])]) + physical_port_list = list(physical_port_set) + # Map of + error_map = {physical_port_list[i] : output_list[i] for i in range(len(physical_port_list))} + output = [] + for i in range(len(logical_port_list)): + physical_port = logical_port_to_physical_port_index(logical_port_list[i]) + output.append([logical_port_list[i], error_map[physical_port] if not is_port_type_rj45(logical_port_list[i]) else 'N/A']) return output def fetch_error_status_from_state_db(port, state_db): @@ -825,15 +957,18 @@ def fetch_error_status_from_state_db(port, state_db): sorted_ports = natsort.natsorted(status) output = [] for port in sorted_ports: - statestring = status[port].get('status') - description = status[port].get('error') - if statestring == '1': - description = 'OK' - elif statestring == '0': - description = 'Unplugged' - elif description == 'N/A': - log.log_error("Inconsistent state found for port {}: state is {} but error description is N/A".format(port, statestring)) - description = 'Unknown state: {}'.format(statestring) + if is_port_type_rj45(port): + description = "N/A" + else: + statestring = status[port].get('status') + description = status[port].get('error') + if statestring == '1': + description = 'OK' + elif statestring == '0': + description = 'Unplugged' + elif description == 'N/A': + log.log_error("Inconsistent state found for port {}: state is {} but error description is N/A".format(port, statestring)) + description = 'Unknown state: {}'.format(statestring) output.append([port, description]) @@ -856,15 +991,15 @@ def error_status(port, fetch_from_hardware): if fetch_from_hardware: output_table = fetch_error_status_from_platform_api(port) else: - # Connect to STATE_DB - state_db = SonicV2Connector(host='127.0.0.1') - if state_db is not None: - state_db.connect(state_db.STATE_DB) - else: - click.echo("Failed to connect to STATE_DB") - return - - output_table = fetch_error_status_from_state_db(port, state_db) + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + state_db = SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + if state_db is not None: + state_db.connect(state_db.STATE_DB) + output_table.extend(fetch_error_status_from_state_db(port, state_db)) + else: + click.echo("Failed to connect to STATE_DB") + return click.echo(tabulate(output_table, table_header, tablefmt='simple')) @@ -898,24 +1033,27 @@ def lpmode(port): click.echo("Error: No physical ports found for logical port '{}'".format(logical_port_name)) return - if len(physical_port_list) > 1: - ganged = True + if is_port_type_rj45(logical_port_name): + output_table.append([logical_port_name, "N/A"]) + else: + if len(physical_port_list) > 1: + ganged = True - for physical_port in physical_port_list: - port_name = get_physical_port_name(logical_port_name, i, ganged) + for physical_port in physical_port_list: + port_name = get_physical_port_name(logical_port_name, i, ganged) - try: - lpmode = platform_chassis.get_sfp(physical_port).get_lpmode() - except NotImplementedError: - click.echo("This functionality is currently not implemented for this platform") - sys.exit(ERROR_NOT_IMPLEMENTED) + try: + lpmode = platform_chassis.get_sfp(physical_port).get_lpmode() + except NotImplementedError: + click.echo("This functionality is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) - if lpmode: - output_table.append([port_name, "On"]) - else: - output_table.append([port_name, "Off"]) + if lpmode: + output_table.append([port_name, "On"]) + else: + output_table.append([port_name, "Off"]) - i += 1 + i += 1 click.echo(tabulate(output_table, table_header, tablefmt='simple')) @@ -938,6 +1076,10 @@ def fwversion(port_name): physical_port = logical_port_to_physical_port_index(port_name) sfp = platform_chassis.get_sfp(physical_port) + if is_port_type_rj45(port_name): + click.echo("Show firmware version is not applicable for RJ45 port {}.".format(port_name)) + sys.exit(EXIT_FAIL) + try: presence = sfp.get_presence() except NotImplementedError: @@ -973,6 +1115,10 @@ def set_lpmode(logical_port, enable): click.echo("Error: No physical ports found for logical port '{}'".format(logical_port)) return + if is_port_type_rj45(logical_port): + click.echo("{} low-power mode is not applicable for RJ45 port {}.".format("Enabling" if enable else "Disabling", logical_port)) + sys.exit(EXIT_FAIL) + if len(physical_port_list) > 1: ganged = True @@ -1029,6 +1175,10 @@ def reset(port_name): click.echo("Error: No physical ports found for logical port '{}'".format(port_name)) return + if is_port_type_rj45(port_name): + click.echo("Reset is not applicable for RJ45 port {}.".format(port_name)) + sys.exit(EXIT_FAIL) + if len(physical_port_list) > 1: ganged = True @@ -1048,6 +1198,18 @@ def reset(port_name): i += 1 +def update_firmware_info_to_state_db(port_name): + physical_port = logical_port_to_physical_port_index(port_name) + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + state_db = SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + if state_db is not None: + state_db.connect(state_db.STATE_DB) + active_firmware, inactive_firmware = platform_chassis.get_sfp(physical_port).get_transceiver_info_firmware_versions() + state_db.set(state_db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(port_name), "active_firmware", active_firmware) + state_db.set(state_db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(port_name), "inactive_firmware", inactive_firmware) + # 'firmware' subgroup @cli.group() def firmware(): @@ -1091,6 +1253,59 @@ def run_firmware(port_name, mode): return status +def is_fw_switch_done(port_name): + """ + Make sure the run_firmware cmd is done + @port_name: + Returns 1 on success, and exit_code = -1 on failure + """ + status = 0 + physical_port = logical_port_to_physical_port_index(port_name) + sfp = platform_chassis.get_sfp(physical_port) + + try: + api = sfp.get_xcvr_api() + except NotImplementedError: + click.echo("This functionality is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) + + try: + MAX_WAIT = 60 # 60s timeout. + is_busy = 1 # Initial to 1 for entering while loop at least one time. + timeout_time = time.time() + MAX_WAIT + while is_busy and (time.time() < timeout_time): + fw_info = api.get_module_fw_info() + is_busy = 1 if (fw_info['status'] == False) and (fw_info['result'] is not None) else 0 + time.sleep(2) + + if fw_info['status'] == True: + (ImageA, ImageARunning, ImageACommitted, ImageAInvalid, + ImageB, ImageBRunning, ImageBCommitted, ImageBInvalid, _, _) = fw_info['result'] + + if (ImageARunning == 1) and (ImageAInvalid == 1): # ImageA is running, but also invalid. + click.echo("FW info error : ImageA shows running, but also shows invalid!") + status = -1 # Abnormal status. + elif (ImageBRunning == 1) and (ImageBInvalid == 1): # ImageB is running, but also invalid. + click.echo("FW info error : ImageB shows running, but also shows invalid!") + status = -1 # Abnormal status. + elif (ImageARunning == 1) and (ImageACommitted == 0): # ImageA is running, but not committed. + click.echo("FW images switch successful : ImageA is running") + status = 1 # run_firmware is done. + elif (ImageBRunning == 1) and (ImageBCommitted == 0): # ImageB is running, but not committed. + click.echo("FW images switch successful : ImageB is running") + status = 1 # run_firmware is done. + else: # No image is running, or running and committed image is same. + click.echo("FW info error : Failed to switch into uncommitted image!") + status = -1 # Failure for Switching images. + else: + click.echo("FW switch : Timeout!") + status = -1 # Timeout or check code error or CDB not supported. + + except NotImplementedError: + click.echo("This functionality is not applicable for this transceiver") + + return status + def commit_firmware(port_name): status = 0 physical_port = logical_port_to_physical_port_index(port_name) @@ -1147,7 +1362,10 @@ def download_firmware(port_name, filepath): sys.exit(EXIT_FAIL) # Increase the optoe driver's write max to speed up firmware download - sfp.set_optoe_write_max(SMBUS_BLOCK_WRITE_SIZE) + try: + sfp.set_optoe_write_max(SMBUS_BLOCK_WRITE_SIZE) + except NotImplementedError: + click.echo("Platform doesn't implement optoe write max change. Skipping value increase.") with click.progressbar(length=file_size, label="Downloading ...") as bar: address = 0 @@ -1173,22 +1391,30 @@ def download_firmware(port_name, filepath): remaining -= count # Restore the optoe driver's write max to '1' (default value) - sfp.set_optoe_write_max(1) + try: + sfp.set_optoe_write_max(1) + except NotImplementedError: + click.echo("Platform doesn't implement optoe write max change. Skipping value restore!") status = api.cdb_firmware_download_complete() + update_firmware_info_to_state_db(port_name) click.echo('CDB: firmware download complete') return status # 'run' subcommand @firmware.command() @click.argument('port_name', required=True, default=None) -@click.option('--mode', default="1", type=click.Choice(["0", "1", "2", "3"]), show_default=True, +@click.option('--mode', default="0", type=click.Choice(["0", "1", "2", "3"]), show_default=True, help="0 = Non-hitless Reset to Inactive Image\n \ 1 = Hitless Reset to Inactive Image (Default)\n \ 2 = Attempt non-hitless Reset to Running Image\n \ 3 = Attempt Hitless Reset to Running Image\n") def run(port_name, mode): - """Run the firmware with default mode=1""" + """Run the firmware with default mode=0""" + + if is_port_type_rj45(port_name): + click.echo("This functionality is not applicable for RJ45 port {}.".format(port_name)) + sys.exit(EXIT_FAIL) if not is_sfp_present(port_name): click.echo("{}: SFP EEPROM not detected\n".format(port_name)) @@ -1199,6 +1425,7 @@ def run(port_name, mode): click.echo('Failed to run firmware in mode={}! CDB status: {}'.format(mode, status)) sys.exit(EXIT_FAIL) + update_firmware_info_to_state_db(port_name) click.echo("Firmware run in mode={} success".format(mode)) # 'commit' subcommand @@ -1207,6 +1434,10 @@ def run(port_name, mode): def commit(port_name): """Commit the running firmware""" + if is_port_type_rj45(port_name): + click.echo("This functionality is not applicable for RJ45 port {}.".format(port_name)) + sys.exit(EXIT_FAIL) + if not is_sfp_present(port_name): click.echo("{}: SFP EEPROM not detected\n".format(port_name)) sys.exit(EXIT_FAIL) @@ -1216,6 +1447,7 @@ def commit(port_name): click.echo('Failed to commit firmware! CDB status: {}'.format(status)) sys.exit(EXIT_FAIL) + update_firmware_info_to_state_db(port_name) click.echo("Firmware commit successful") # 'upgrade' subcommand @@ -1227,6 +1459,10 @@ def upgrade(port_name, filepath): physical_port = logical_port_to_physical_port_index(port_name) + if is_port_type_rj45(port_name): + click.echo("This functionality is not applicable for RJ45 port {}.".format(port_name)) + sys.exit(EXIT_FAIL) + if not is_sfp_present(port_name): click.echo("{}: SFP EEPROM not detected\n".format(port_name)) sys.exit(EXIT_FAIL) @@ -1240,12 +1476,17 @@ def upgrade(port_name, filepath): click.echo("Firmware download complete failed! CDB status = {}".format(status)) sys.exit(EXIT_FAIL) - status = run_firmware(port_name, 1) + default_mode = 0 + status = run_firmware(port_name, default_mode) if status != 1: - click.echo('Failed to run firmware in mode=1 ! CDB status: {}'.format(status)) + click.echo('Failed to run firmware in mode={} ! CDB status: {}'.format(default_mode, status)) sys.exit(EXIT_FAIL) - click.echo("Firmware run in mode 1 successful") + click.echo("Firmware run in mode {} successful".format(default_mode)) + + if is_fw_switch_done(port_name) != 1: + click.echo('Failed to switch firmware images!') + sys.exit(EXIT_FAIL) status = commit_firmware(port_name) if status != 1: @@ -1261,6 +1502,10 @@ def upgrade(port_name, filepath): def download(port_name, filepath): """Download firmware on the transceiver""" + if is_port_type_rj45(port_name): + click.echo("This functionality is not applicable for RJ45 port {}.".format(port_name)) + sys.exit(EXIT_FAIL) + if not is_sfp_present(port_name): click.echo("{}: SFP EEPROM not detected\n".format(port_name)) sys.exit(EXIT_FAIL) @@ -1285,6 +1530,10 @@ def unlock(port_name, password): physical_port = logical_port_to_physical_port_index(port_name) sfp = platform_chassis.get_sfp(physical_port) + if is_port_type_rj45(port_name): + click.echo("This functionality is not applicable for RJ45 port {}.".format(port_name)) + sys.exit(EXIT_FAIL) + if not is_sfp_present(port_name): click.echo("{}: SFP EEPROM not detected\n".format(port_name)) sys.exit(EXIT_FAIL) diff --git a/show/bgp_common.py b/show/bgp_common.py index 6bf332859..b51e9f187 100644 --- a/show/bgp_common.py +++ b/show/bgp_common.py @@ -367,21 +367,15 @@ def show_routes(args, namespace, display, verbose, ipver): # Not ip address just ignore it found_other_parms = 1 - if multi_asic.is_multi_asic(): - if not found_json and not found_other_parms: - arg_strg += "json" + # using the same format for both multiasic or non-multiasic + if not found_json and not found_other_parms: + arg_strg += "json" combined_route = {} for ns in ns_l: # Need to add "ns" to form bgpX so it is sent to the correct bgpX docker to handle the request - # If not MultiASIC, skip namespace argument cmd = "show {} route {}".format(ipver, arg_strg) - if multi_asic.is_multi_asic(): - output = bgp_util.run_bgp_show_command(cmd, ns) - else: - output = bgp_util.run_bgp_show_command(cmd) - print("{}".format(output)) - return + output = bgp_util.run_bgp_show_command(cmd, ns) # in case no output or something went wrong with user specified cmd argument(s) error it out # error from FRR always start with character "%" diff --git a/show/chassis_modules.py b/show/chassis_modules.py index acc0263b6..6ccf60714 100644 --- a/show/chassis_modules.py +++ b/show/chassis_modules.py @@ -12,6 +12,7 @@ CHASSIS_MODULE_INFO_SLOT_FIELD = 'slot' CHASSIS_MODULE_INFO_OPERSTATUS_FIELD = 'oper_status' CHASSIS_MODULE_INFO_ADMINSTATUS_FIELD = 'admin_status' +CHASSIS_MODULE_INFO_SERIAL_FIELD = 'serial' CHASSIS_MIDPLANE_INFO_TABLE = 'CHASSIS_MIDPLANE_TABLE' CHASSIS_MIDPLANE_INFO_IP_FIELD = 'ip_address' @@ -33,7 +34,7 @@ def modules(): def status(db, chassis_module_name): """Show chassis-modules status""" - header = ['Name', 'Description', 'Physical-Slot', 'Oper-Status', 'Admin-Status'] + header = ['Name', 'Description', 'Physical-Slot', 'Oper-Status', 'Admin-Status', 'Serial'] chassis_cfg_table = db.cfgdb.get_table('CHASSIS_MODULE') state_db = SonicV2Connector(host="127.0.0.1") @@ -59,13 +60,14 @@ def status(db, chassis_module_name): desc = data_dict[CHASSIS_MODULE_INFO_DESC_FIELD] slot = data_dict[CHASSIS_MODULE_INFO_SLOT_FIELD] oper_status = data_dict[CHASSIS_MODULE_INFO_OPERSTATUS_FIELD] + serial = data_dict[CHASSIS_MODULE_INFO_SERIAL_FIELD] admin_status = 'up' config_data = chassis_cfg_table.get(key_list[1]) if config_data is not None: admin_status = config_data.get(CHASSIS_MODULE_INFO_ADMINSTATUS_FIELD) - table.append((key_list[1], desc, slot, oper_status, admin_status)) + table.append((key_list[1], desc, slot, oper_status, admin_status, serial)) if table: click.echo(tabulate(table, header, tablefmt='simple', stralign='right')) diff --git a/show/fabric.py b/show/fabric.py new file mode 100644 index 000000000..2e55887a0 --- /dev/null +++ b/show/fabric.py @@ -0,0 +1,47 @@ +import click + +import utilities_common.multi_asic as multi_asic_util +import utilities_common.cli as clicommon + +@click.group(cls=clicommon.AliasedGroup) +def fabric(): + """Show fabric information""" + pass + +@fabric.group(invoke_without_command=True) +def counters(): + """Show fabric port counters""" + pass + +@fabric.group(invoke_without_command=True) +@multi_asic_util.multi_asic_click_option_namespace +@click.option('-e', '--errors', is_flag=True) +def reachability(namespace, errors): + """Show fabric reachability""" + cmd = "fabricstat -r" + if namespace is not None: + cmd += " -n {}".format(namespace) + if errors: + cmd += " -e" + clicommon.run_command(cmd) + +@counters.command() +@multi_asic_util.multi_asic_click_option_namespace +@click.option('-e', '--errors', is_flag=True) +def port(namespace, errors): + """Show fabric port stat""" + cmd = "fabricstat" + if namespace is not None: + cmd += " -n {}".format(namespace) + if errors: + cmd += " -e" + clicommon.run_command(cmd) + +@counters.command() +@multi_asic_util.multi_asic_click_option_namespace +def queue(namespace): + """Show fabric queue stat""" + cmd = "fabricstat -q" + if namespace is not None: + cmd += " -n {}".format(namespace) + clicommon.run_command(cmd) diff --git a/show/feature.py b/show/feature.py index 547d8d172..60ff80321 100644 --- a/show/feature.py +++ b/show/feature.py @@ -156,11 +156,11 @@ def feature_autorestart(db, feature_name): feature_table = db.cfgdb.get_table('FEATURE') if feature_name: if feature_table and feature_name in feature_table: - body.append([feature_name, feature_table[feature_name]['auto_restart']]) + body.append([feature_name, feature_table[ feature_name ].get('auto_restart', 'unknown')]) else: click.echo("Can not find feature {}".format(feature_name)) sys.exit(1) else: for name in natsorted(list(feature_table.keys())): - body.append([name, feature_table[name]['auto_restart']]) + body.append([name, feature_table[ name ].get('auto_restart', 'unknown')]) click.echo(tabulate(body, header)) diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index 75dbdfd1e..4f1862685 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -307,9 +307,9 @@ def expected(db, interfacename): body.append([interfacename, device, neighbor_dict[interfacename]['port'], - neighbor_metadata_dict[device]['lo_addr'], - neighbor_metadata_dict[device]['mgmt_addr'], - neighbor_metadata_dict[device]['type']]) + neighbor_metadata_dict[device]['lo_addr'] if 'lo_addr' in neighbor_metadata_dict[device] else 'None', + neighbor_metadata_dict[device]['mgmt_addr'] if 'mgmt_addr' in neighbor_metadata_dict[device] else 'None', + neighbor_metadata_dict[device]['type'] if 'type' in neighbor_metadata_dict[device] else 'None']) except KeyError: click.echo("No neighbor information available for interface {}".format(interfacename)) return @@ -320,9 +320,9 @@ def expected(db, interfacename): body.append([port, device, neighbor_dict[port]['port'], - neighbor_metadata_dict[device]['lo_addr'], - neighbor_metadata_dict[device]['mgmt_addr'], - neighbor_metadata_dict[device]['type']]) + neighbor_metadata_dict[device]['lo_addr'] if 'lo_addr' in neighbor_metadata_dict[device] else 'None', + neighbor_metadata_dict[device]['mgmt_addr'] if 'mgmt_addr' in neighbor_metadata_dict[device] else 'None', + neighbor_metadata_dict[device]['type'] if 'type' in neighbor_metadata_dict[device] else 'None']) except KeyError: pass @@ -338,7 +338,7 @@ def expected(db, interfacename): @click.pass_context def mpls(ctx, interfacename, namespace, display): """Show Interface MPLS status""" - + #Edge case: Force show frontend interfaces on single asic if not (multi_asic.is_multi_asic()): if (display == 'frontend' or display == 'all' or display is None): @@ -346,7 +346,7 @@ def mpls(ctx, interfacename, namespace, display): else: print("Error: Invalid display option command for single asic") return - + display = "all" if interfacename else display masic = multi_asic_util.MultiAsic(display_option=display, namespace_option=namespace) ns_list = masic.get_ns_list_based_on_options() @@ -372,13 +372,13 @@ def mpls(ctx, interfacename, namespace, display): if (interfacename is not None): if (interfacename != ifname): continue - + intf_found = True - + if (display != "all"): if ("Loopback" in ifname): continue - + if ifname.startswith("Ethernet") and multi_asic.is_port_internal(ifname, ns): continue @@ -391,11 +391,11 @@ def mpls(ctx, interfacename, namespace, display): if 'mpls' not in mpls_intf or mpls_intf['mpls'] == 'disable': intfs_data.update({ifname: 'disable'}) else: - intfs_data.update({ifname: mpls_intf['mpls']}) - + intfs_data.update({ifname: mpls_intf['mpls']}) + # Check if interface is valid if (interfacename is not None and not intf_found): - ctx.fail('interface {} doesn`t exist'.format(interfacename)) + ctx.fail('interface {} doesn`t exist'.format(interfacename)) header = ['Interface', 'MPLS State'] body = [] @@ -446,6 +446,74 @@ def eeprom(interfacename, dump_dom, namespace, verbose): clicommon.run_command(cmd, display_cmd=verbose) +@transceiver.command() +@click.argument('interfacename', required=False) +@click.option('--namespace', '-n', 'namespace', default=None, show_default=True, + type=click.Choice(multi_asic_util.multi_asic_ns_choices()), help='Namespace name or all') +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def pm(interfacename, namespace, verbose): + """Show interface transceiver performance monitoring information""" + + ctx = click.get_current_context() + + cmd = "sfpshow pm" + + if interfacename is not None: + interfacename = try_convert_interfacename_from_alias( + ctx, interfacename) + + cmd += " -p {}".format(interfacename) + + if namespace is not None: + cmd += " -n {}".format(namespace) + + clicommon.run_command(cmd, display_cmd=verbose) + +@transceiver.command('status') # 'status' is the actual sub-command name under 'transceiver' command +@click.argument('interfacename', required=False) +@click.option('--namespace', '-n', 'namespace', default=None, show_default=True, + type=click.Choice(multi_asic_util.multi_asic_ns_choices()), help='Namespace name or all') +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def transceiver_status(interfacename, namespace, verbose): + """Show interface transceiver status information""" + + ctx = click.get_current_context() + + cmd = 'sfpshow status' + + if interfacename is not None: + interfacename = try_convert_interfacename_from_alias( + ctx, interfacename) + + cmd += " -p {}".format(interfacename) + + if namespace is not None: + cmd += " -n {}".format(namespace) + + clicommon.run_command(cmd, display_cmd=verbose) + +@transceiver.command() +@click.argument('interfacename', required=False) +@click.option('--namespace', '-n', 'namespace', default=None, show_default=True, + type=click.Choice(multi_asic_util.multi_asic_ns_choices()), help='Namespace name or all') +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def info(interfacename, namespace, verbose): + """Show interface transceiver information""" + + ctx = click.get_current_context() + + cmd = "sfpshow info" + + if interfacename is not None: + interfacename = try_convert_interfacename_from_alias(ctx, interfacename) + + cmd += " -p {}".format(interfacename) + + if namespace is not None: + cmd += " -n {}".format(namespace) + + clicommon.run_command(cmd, display_cmd=verbose) + @transceiver.command() @click.argument('interfacename', required=False) @click.option('--verbose', is_flag=True, help="Enable verbose output") @@ -558,6 +626,23 @@ def errors(verbose, period, namespace, display): clicommon.run_command(cmd, display_cmd=verbose) +# 'fec-stats' subcommand ("show interfaces counters errors") +@counters.command('fec-stats') +@click.option('-p', '--period') +@multi_asic_util.multi_asic_click_options +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def fec_stats(verbose, period, namespace, display): + """Show interface counters fec-stats""" + cmd = "portstat -f" + if period is not None: + cmd += " -p {}".format(period) + + cmd += " -s {}".format(display) + if namespace is not None: + cmd += " -n {}".format(namespace) + + clicommon.run_command(cmd, display_cmd=verbose) + # 'rates' subcommand ("show interfaces counters rates") @counters.command() @click.option('-p', '--period') @@ -639,3 +724,36 @@ def autoneg_status(interfacename, namespace, display, verbose): cmd += " -n {}".format(namespace) clicommon.run_command(cmd, display_cmd=verbose) + +# +# link-training group (show interfaces link-training ...) +# +@interfaces.group(name='link-training', cls=clicommon.AliasedGroup) +def link_training(): + """Show interface link-training information""" + pass + +# 'link-training status' subcommand ("show interfaces link-training status") +@link_training.command(name='status') +@click.argument('interfacename', required=False) +@multi_asic_util.multi_asic_click_options +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def link_training_status(interfacename, namespace, display, verbose): + """Show interface link-training status""" + + ctx = click.get_current_context() + + cmd = "intfutil -c link_training" + + #ignore the display option when interface name is passed + if interfacename is not None: + interfacename = try_convert_interfacename_from_alias(ctx, interfacename) + + cmd += " -i {}".format(interfacename) + else: + cmd += " -d {}".format(display) + + if namespace is not None: + cmd += " -n {}".format(namespace) + + clicommon.run_command(cmd, display_cmd=verbose) diff --git a/show/kdump.py b/show/kdump.py index 2d93154c6..e5ce7cde7 100644 --- a/show/kdump.py +++ b/show/kdump.py @@ -49,7 +49,7 @@ def get_kdump_oper_mode(): returns "Not Ready"; """ oper_mode = "Not Ready" - command_stdout = clicommon.run_command("/usr/sbin/kdump-config status", return_cmd=True) + command_stdout, _ = clicommon.run_command("/usr/sbin/kdump-config status", return_cmd=True) for line in command_stdout.splitlines(): if ": ready to kdump" in line: @@ -99,7 +99,7 @@ def get_kdump_core_files(): dump_file_list = [] cmd_message = None - command_stdout = clicommon.run_command(find_core_dump_files, return_cmd=True) + command_stdout, _ = clicommon.run_command(find_core_dump_files, return_cmd=True) dump_file_list = command_stdout.splitlines() if not dump_file_list: @@ -123,7 +123,7 @@ def get_kdump_dmesg_files(): dmesg_file_list = [] cmd_message = None - command_stdout = clicommon.run_command(find_dmesg_files, return_cmd=True) + command_stdout, _ = clicommon.run_command(find_dmesg_files, return_cmd=True) dmesg_file_list = command_stdout.splitlines() if not dmesg_file_list: diff --git a/show/kube.py b/show/kube.py index 5ab8cf3f6..a120c4629 100644 --- a/show/kube.py +++ b/show/kube.py @@ -45,7 +45,7 @@ def config(db): # (
, , ) ("ip", "ip" "", False), ("port", "port", "6443"), - ("insecure", "insecure", "False"), + ("insecure", "insecure", "True"), ("disable","disable", "False") ] diff --git a/show/main.py b/show/main.py index 198940bc3..8d0857b1c 100755 --- a/show/main.py +++ b/show/main.py @@ -5,11 +5,12 @@ import re import click +import lazy_object_proxy import utilities_common.cli as clicommon import utilities_common.multi_asic as multi_asic_util from importlib import reload from natsort import natsorted -from sonic_py_common import device_info +from sonic_py_common import device_info, multi_asic from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector from tabulate import tabulate from utilities_common import util_base @@ -17,6 +18,7 @@ from datetime import datetime import utilities_common.constants as constants from utilities_common.general import load_db_config +from json.decoder import JSONDecodeError # mock the redis for unit test purposes # try: @@ -39,6 +41,7 @@ from . import bgp_common from . import chassis_modules from . import dropcounters +from . import fabric from . import feature from . import fgnhg from . import flow_counters @@ -125,8 +128,30 @@ def run_command(command, display_cmd=False, return_cmd=False): if rc != 0: sys.exit(rc) -# Global class instance for SONiC interface name to alias conversion -iface_alias_converter = clicommon.InterfaceAliasConverter() +def get_cmd_output(cmd): + proc = subprocess.Popen(cmd, text=True, stdout=subprocess.PIPE) + return proc.communicate()[0], proc.returncode + +def get_config_json_by_namespace(namespace): + cmd = ['sonic-cfggen', '-d', '--print-data'] + if namespace is not None and namespace != multi_asic.DEFAULT_NAMESPACE: + cmd += ['-n', namespace] + + stdout, rc = get_cmd_output(cmd) + if rc: + click.echo("Failed to get cmd output '{}':rc {}".format(cmd, rc)) + raise click.Abort() + + try: + config_json = json.loads(stdout) + except JSONDecodeError as e: + click.echo("Failed to load output '{}':{}".format(cmd, e)) + raise click.Abort() + + return config_json + +# Lazy global class instance for SONiC interface name to alias conversion +iface_alias_converter = lazy_object_proxy.Proxy(lambda: clicommon.InterfaceAliasConverter()) @@ -175,6 +200,7 @@ def cli(ctx): cli.add_command(acl.acl) cli.add_command(chassis_modules.chassis) cli.add_command(dropcounters.dropcounters) +cli.add_command(fabric.fabric) cli.add_command(feature.feature) cli.add_command(fgnhg.fgnhg) cli.add_command(flow_counters.flowcnt_route) @@ -542,9 +568,12 @@ def queue(): # 'counters' subcommand ("show queue counters") @queue.command() @click.argument('interfacename', required=False) +@multi_asic_util.multi_asic_click_options @click.option('--verbose', is_flag=True, help="Enable verbose output") @click.option('--json', is_flag=True, help="JSON output") -def counters(interfacename, verbose, json): +@click.option('--voq', is_flag=True, help="VOQ counters") +@click.option('--nonzero', is_flag=True, help="Non Zero Counters") +def counters(interfacename, namespace, display, verbose, json, voq, nonzero): """Show queue counters""" cmd = "queuestat" @@ -556,9 +585,18 @@ def counters(interfacename, verbose, json): if interfacename is not None: cmd += " -p {}".format(interfacename) + if namespace is not None: + cmd += " -n {}".format(namespace) + if json: cmd += " -j" + if voq: + cmd += " -V" + + if nonzero: + cmd += " -nz" + run_command(cmd, display_cmd=verbose) # @@ -805,15 +843,49 @@ def ip(): # Addresses from all scopes are included. Interfaces with no addresses are # excluded. # -@ip.command() + +@ip.group(invoke_without_command=True) @multi_asic_util.multi_asic_click_options -def interfaces(namespace, display): - cmd = "sudo ipintutil -a ipv4" - if namespace is not None: - cmd += " -n {}".format(namespace) +@click.pass_context +def interfaces(ctx, namespace, display): + if ctx.invoked_subcommand is None: + cmd = "sudo ipintutil -a ipv4" + if namespace is not None: + cmd += " -n {}".format(namespace) - cmd += " -d {}".format(display) - clicommon.run_command(cmd) + cmd += " -d {}".format(display) + clicommon.run_command(cmd) + +# +# 'show ip interfaces loopback-action' command +# + +@interfaces.command() +def loopback_action(): + """show ip interfaces loopback-action""" + config_db = ConfigDBConnector() + config_db.connect() + header = ['Interface', 'Action'] + body = [] + + if_tbl = config_db.get_table('INTERFACE') + vlan_if_tbl = config_db.get_table('VLAN_INTERFACE') + po_if_tbl = config_db.get_table('PORTCHANNEL_INTERFACE') + sub_if_tbl = config_db.get_table('VLAN_SUB_INTERFACE') + + all_tables = {} + for tbl in [if_tbl, vlan_if_tbl, po_if_tbl, sub_if_tbl]: + all_tables.update(tbl) + + if all_tables: + ifs_action = [] + ifs = list(all_tables.keys()) + for iface in ifs: + if 'loopback_action' in all_tables[iface]: + action = all_tables[iface]['loopback_action'] + ifs_action.append([iface, action]) + body = natsorted(ifs_action) + click.echo(tabulate(body, header)) # # 'route' subcommand ("show ip route") @@ -1053,14 +1125,18 @@ def table(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def logging(process, lines, follow, verbose): """Show system log""" + if os.path.exists("/var/log.tmpfs"): + log_path = "/var/log.tmpfs" + else: + log_path = "/var/log" if follow: - cmd = "sudo tail -F /var/log/syslog" + cmd = "sudo tail -F {}/syslog".format(log_path) run_command(cmd, display_cmd=verbose) else: - if os.path.isfile("/var/log/syslog.1"): - cmd = "sudo cat /var/log/syslog.1 /var/log/syslog" + if os.path.isfile("{}/syslog.1".format(log_path)): + cmd = "sudo cat {}/syslog.1 {}/syslog".format(log_path, log_path) else: - cmd = "sudo cat /var/log/syslog" + cmd = "sudo cat {}/syslog".format(log_path) if process is not None: cmd += " | grep '{}'".format(process) @@ -1089,6 +1165,7 @@ def version(verbose): sys_date = datetime.now() click.echo("\nSONiC Software Version: SONiC.{}".format(version_info['build_version'])) + click.echo("SONiC OS Version: {}".format(version_info['sonic_os_version'])) click.echo("Distribution: Debian {}".format(version_info['debian_version'])) click.echo("Kernel: {}".format(version_info['kernel_version'])) click.echo("Build commit: {}".format(version_info['commit_id'])) @@ -1138,7 +1215,7 @@ def users(verbose): @cli.command() @click.option('--since', required=False, help="Collect logs and core files since given date") -@click.option('-g', '--global-timeout', default=30, type=int, help="Global timeout in minutes. Default 30 mins") +@click.option('-g', '--global-timeout', required=False, type=int, help="Global timeout in minutes. WARN: Dump might be incomplete if enforced") @click.option('-c', '--cmd-timeout', default=5, type=int, help="Individual command timeout in minutes. Default 5 mins") @click.option('--verbose', is_flag=True, help="Enable verbose output") @click.option('--allow-process-stop', is_flag=True, help="Dump additional data which may require system interruption") @@ -1147,7 +1224,10 @@ def users(verbose): @click.option('--redirect-stderr', '-r', is_flag=True, help="Redirect an intermediate errors to STDERR") def techsupport(since, global_timeout, cmd_timeout, verbose, allow_process_stop, silent, debug_dump, redirect_stderr): """Gather information for troubleshooting""" - cmd = "sudo timeout --kill-after={}s -s SIGTERM --foreground {}m".format(COMMAND_TIMEOUT, global_timeout) + cmd = "sudo" + + if global_timeout: + cmd += " timeout --kill-after={}s -s SIGTERM --foreground {}m".format(COMMAND_TIMEOUT, global_timeout) if allow_process_stop: cmd += " -a" @@ -1185,8 +1265,25 @@ def runningconfiguration(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def all(verbose): """Show full running configuration""" - cmd = "sonic-cfggen -d --print-data" - run_command(cmd, display_cmd=verbose) + output = {} + bgpraw_cmd = "show running-config" + + import utilities_common.bgp_util as bgp_util + # In multiaisc, the namespace is changed to 'localhost' by design + host_config = get_config_json_by_namespace(multi_asic.DEFAULT_NAMESPACE) + output['localhost'] = host_config + + if multi_asic.is_multi_asic(): + ns_list = multi_asic.get_namespace_list() + for ns in ns_list: + ns_config = get_config_json_by_namespace(ns) + if bgp_util.is_bgp_feature_state_enabled(ns): + ns_config['bgpraw'] = bgp_util.run_bgp_show_command(bgpraw_cmd, ns, exit_on_fail=False) + output[ns] = ns_config + click.echo(json.dumps(output, indent=4)) + else: + host_config['bgpraw'] = bgp_util.run_bgp_show_command(bgpraw_cmd, exit_on_fail=False) + click.echo(json.dumps(output['localhost'], indent=4)) # 'acl' subcommand ("show runningconfiguration acl") @@ -1215,10 +1312,40 @@ def ports(portname, verbose): # 'bgp' subcommand ("show runningconfiguration bgp") @runningconfiguration.command() @click.option('--verbose', is_flag=True, help="Enable verbose output") -def bgp(verbose): - """Show BGP running configuration""" - cmd = 'sudo {} -c "show running-config"'.format(constants.RVTYSH_COMMAND) - run_command(cmd, display_cmd=verbose) +@click.option('--namespace', '-n', 'namespace', required=False, default=None, type=str, show_default=False, + help='Option needed for multi-asic only: provide namespace name', + callback=multi_asic_util.multi_asic_namespace_validation_callback) +def bgp(namespace, verbose): + """ + Show BGP running configuration + Note: + multi-asic can run 'show run bgp' and show from all asics, or 'show run bgp -n ' + single-asic only run 'show run bgp', '-n' is not available + """ + + if multi_asic.is_multi_asic(): + if namespace and namespace not in multi_asic.get_namespace_list(): + ctx = click.get_current_context() + ctx.fail("invalid value for -n/--namespace option. provide namespace from list {}".format(multi_asic.get_namespace_list())) + if not multi_asic.is_multi_asic() and namespace: + ctx = click.get_current_context() + ctx.fail("-n/--namespace is not available for single asic") + + output = "" + cmd = "show running-config bgp" + import utilities_common.bgp_util as bgp_util + if multi_asic.is_multi_asic(): + if not namespace: + ns_list = multi_asic.get_namespace_list() + for ns in ns_list: + output += "\n------------Showing running config bgp on {}------------\n".format(ns) + output += bgp_util.run_bgp_show_command(cmd, ns) + else: + output += "\n------------Showing running config bgp on {}------------\n".format(namespace) + output += bgp_util.run_bgp_show_command(cmd, namespace) + else: + output += bgp_util.run_bgp_show_command(cmd) + print(output) # 'interfaces' subcommand ("show runningconfiguration interfaces") @@ -1794,7 +1921,7 @@ def bfd(): def summary(db): """Show bfd session information""" bfd_headers = ["Peer Addr", "Interface", "Vrf", "State", "Type", "Local Addr", - "TX Interval", "RX Interval", "Multiplier", "Multihop"] + "TX Interval", "RX Interval", "Multiplier", "Multihop", "Local Discriminator"] bfd_keys = db.db.keys(db.db.STATE_DB, "BFD_SESSION_TABLE|*") @@ -1805,8 +1932,10 @@ def summary(db): for key in bfd_keys: key_values = key.split('|') values = db.db.get_all(db.db.STATE_DB, key) + if "local_discriminator" not in values.keys(): + values["local_discriminator"] = "NA" bfd_body.append([key_values[3], key_values[2], key_values[1], values["state"], values["type"], values["local_addr"], - values["tx_interval"], values["rx_interval"], values["multiplier"], values["multihop"]]) + values["tx_interval"], values["rx_interval"], values["multiplier"], values["multihop"], values["local_discriminator"]]) click.echo(tabulate(bfd_body, bfd_headers)) @@ -1818,7 +1947,7 @@ def summary(db): def peer(db, peer_ip): """Show bfd session information for BFD peer""" bfd_headers = ["Peer Addr", "Interface", "Vrf", "State", "Type", "Local Addr", - "TX Interval", "RX Interval", "Multiplier", "Multihop"] + "TX Interval", "RX Interval", "Multiplier", "Multihop", "Local Discriminator"] bfd_keys = db.db.keys(db.db.STATE_DB, "BFD_SESSION_TABLE|*|{}".format(peer_ip)) delimiter = db.db.get_db_separator(db.db.STATE_DB) @@ -1834,8 +1963,10 @@ def peer(db, peer_ip): for key in bfd_keys: key_values = key.split(delimiter) values = db.db.get_all(db.db.STATE_DB, key) + if "local_discriminator" not in values.keys(): + values["local_discriminator"] = "NA" bfd_body.append([key_values[3], key_values[2], key_values[1], values.get("state"), values.get("type"), values.get("local_addr"), - values.get("tx_interval"), values.get("rx_interval"), values.get("multiplier"), values.get("multihop")]) + values.get("tx_interval"), values.get("rx_interval"), values.get("multiplier"), values.get("multihop"), values.get("local_discriminator")]) click.echo(tabulate(bfd_body, bfd_headers)) diff --git a/show/muxcable.py b/show/muxcable.py index a6cd008c2..6a94e7f7a 100644 --- a/show/muxcable.py +++ b/show/muxcable.py @@ -1,3 +1,4 @@ + import json import sys import time @@ -13,12 +14,13 @@ from swsscommon import swsscommon from tabulate import tabulate from utilities_common import platform_sfputil_helper +from utilities_common.general import get_optional_value_for_key_in_config_tbl platform_sfputil = None REDIS_TIMEOUT_MSECS = 0 SELECT_TIMEOUT = 1000 -HWMODE_MUXDIRECTION_TIMEOUT = 0.1 +HWMODE_MUXDIRECTION_TIMEOUT = 0.5 # The empty namespace refers to linux host namespace. EMPTY_NAMESPACE = '' @@ -33,6 +35,26 @@ VENDOR_NAME = "Credo" VENDOR_MODEL_REGEX = re.compile(r"CAC\w{3}321P2P\w{2}MS") +#define table names that interact with Cli +XCVRD_GET_BER_CMD_TABLE = "XCVRD_GET_BER_CMD" +XCVRD_GET_BER_RSP_TABLE = "XCVRD_GET_BER_RSP" +XCVRD_GET_BER_RES_TABLE = "XCVRD_GET_BER_RES" +XCVRD_GET_BER_CMD_ARG_TABLE = "XCVRD_GET_BER_CMD_ARG" + +def get_asic_index_for_port(port): + asic_index = None + if platform_sfputil is not None: + asic_index = platform_sfputil_helper.get_asic_id_for_logical_port(port) + if asic_index is None: + # TODO this import is only for unit test purposes, and should be removed once sonic_platform_base + # is fully mocked + import sonic_platform_base.sonic_sfp.sfputilhelper + asic_index = sonic_platform_base.sonic_sfp.sfputilhelper.SfpUtilHelper().get_asic_id_for_logical_port(port) + if asic_index is None: + port_name = platform_sfputil_helper.get_interface_alias(port, db) + click.echo("Got invalid asic index for port {}, cant retreive mux status".format(port_name)) + return 0 + return asic_index def db_connect(db_name, namespace=EMPTY_NAMESPACE): return swsscommon.DBConnector(db_name, REDIS_TIMEOUT_MSECS, True, namespace) @@ -96,6 +118,51 @@ def check_port_in_mux_cable_table(port): return False + +def get_per_port_firmware(port): + + state_db = {} + mux_info_dict = {} + mux_info_full_dict = {} + + # Getting all front asic namespace and correspding config and state DB connector + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + state_db[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + state_db[asic_id].connect(state_db[asic_id].STATE_DB) + + if platform_sfputil is not None: + asic_index = platform_sfputil_helper.get_asic_id_for_logical_port(port) + + if asic_index is None: + # TODO this import is only for unit test purposes, and should be removed once sonic_platform_base + # is fully mocked + import sonic_platform_base.sonic_sfp.sfputilhelper + asic_index = sonic_platform_base.sonic_sfp.sfputilhelper.SfpUtilHelper().get_asic_id_for_logical_port(port) + if asic_index is None: + click.echo("Got invalid asic index for port {}, cant retrieve mux cable table entries".format(port)) + return False + + + mux_info_full_dict[asic_index] = state_db[asic_index].get_all( + state_db[asic_index].STATE_DB, 'MUX_CABLE_INFO|{}'.format(port)) + + res_dir = {} + res_dir = mux_info_full_dict[asic_index] + mux_info_dict["version_nic_active"] = res_dir.get("version_nic_active", None) + mux_info_dict["version_nic_inactive"] = res_dir.get("version_nic_inactive", None) + mux_info_dict["version_nic_next"] = res_dir.get("version_nic_next", None) + mux_info_dict["version_peer_active"] = res_dir.get("version_peer_active", None) + mux_info_dict["version_peer_inactive"] = res_dir.get("version_peer_inactive", None) + mux_info_dict["version_peer_next"] = res_dir.get("version_peer_next", None) + mux_info_dict["version_self_active"] = res_dir.get("version_self_active", None) + mux_info_dict["version_self_inactive"] = res_dir.get("version_self_inactive", None) + mux_info_dict["version_self_next"] = res_dir.get("version_self_next", None) + + return mux_info_dict + def get_response_for_version(port, mux_info_dict): state_db = {} xcvrd_show_fw_res_tbl = {} @@ -214,9 +281,11 @@ def get_result(port, res_dict, cmd ,result, table_name): (status, fvp) = xcvrd_show_fw_res_tbl[asic_index].get(port) res_dir = dict(fvp) + delete_all_keys_in_db_table("STATE_DB", table_name) + return res_dir -def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_name, cmd_arg_table_name, rsp_table_name ,port, cmd_timeout_secs, param_dict= None, arg=None): +def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_name, cmd_arg_table_name, rsp_table_name , res_table_name, port, cmd_timeout_secs, param_dict= None, arg=None): res_dict = {} state_db, appl_db = {}, {} @@ -229,6 +298,8 @@ def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_ time_start = time.time() + delete_all_keys_in_db_tables_helper(cmd_table_name, rsp_table_name, cmd_arg_table_name, res_table_name) + sel = swsscommon.Select() namespaces = multi_asic.get_front_end_namespaces() for namespace in namespaces: @@ -343,11 +414,26 @@ def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_ firmware_rsp_tbl[asic_index]._del(port) break - delete_all_keys_in_db_table("STATE_DB", rsp_table_name) + + delete_all_keys_in_db_tables_helper(cmd_table_name, rsp_table_name, cmd_arg_table_name, None) return res_dict +def delete_all_keys_in_db_tables_helper(cmd_table_name, rsp_table_name, cmd_arg_table_name = None, res_table_name = None): + + delete_all_keys_in_db_table("APPL_DB", cmd_table_name) + delete_all_keys_in_db_table("STATE_DB", rsp_table_name) + if cmd_arg_table_name is not None: + delete_all_keys_in_db_table("APPL_DB", cmd_arg_table_name) + + if res_table_name is not None: + delete_all_keys_in_db_table("STATE_DB", res_table_name) + + return 0 + + + # 'muxcable' command ("show muxcable") # @@ -400,13 +486,15 @@ def get_switch_name(config_db): sys.exit(STATUS_FAIL) -def create_json_dump_per_port_status(db, port_status_dict, muxcable_info_dict, muxcable_health_dict, muxcable_metrics_dict, asic_index, port): +def create_json_dump_per_port_status(db, port_status_dict, muxcable_info_dict, muxcable_grpc_dict, muxcable_health_dict, muxcable_metrics_dict, asic_index, port): res_dict = {} status_value = get_value_for_key_in_dict(muxcable_info_dict[asic_index], port, "state", "MUX_CABLE_TABLE") port_name = platform_sfputil_helper.get_interface_alias(port, db) port_status_dict["MUX_CABLE"][port_name] = {} port_status_dict["MUX_CABLE"][port_name]["STATUS"] = status_value + gRPC_value = get_value_for_key_in_dict(muxcable_grpc_dict[asic_index], port, "state", "MUX_CABLE_TABLE") + port_status_dict["MUX_CABLE"][port_name]["SERVER_STATUS"] = gRPC_value health_value = get_value_for_key_in_dict(muxcable_health_dict[asic_index], port, "state", "MUX_LINKMGR_TABLE") port_status_dict["MUX_CABLE"][port_name]["HEALTH"] = health_value res_dict = get_hwmode_mux_direction_port(db, port) @@ -427,7 +515,7 @@ def create_json_dump_per_port_status(db, port_status_dict, muxcable_info_dict, m last_switch_end_time = muxcable_metrics_dict[asic_index].get("linkmgrd_switch_active_end") port_status_dict["MUX_CABLE"][port_name]["LAST_SWITCHOVER_TIME"] = last_switch_end_time -def create_table_dump_per_port_status(db, print_data, muxcable_info_dict, muxcable_health_dict, muxcable_metrics_dict, asic_index, port): +def create_table_dump_per_port_status(db, print_data, muxcable_info_dict, muxcable_grpc_dict, muxcable_health_dict, muxcable_metrics_dict, asic_index, port): print_port_data = [] res_dict = {} @@ -435,6 +523,7 @@ def create_table_dump_per_port_status(db, print_data, muxcable_info_dict, muxcab res_dict = get_hwmode_mux_direction_port(db, port) status_value = get_value_for_key_in_dict(muxcable_info_dict[asic_index], port, "state", "MUX_CABLE_TABLE") #status_value = get_value_for_key_in_tbl(y_cable_asic_table, port, "status") + gRPC_value = get_value_for_key_in_dict(muxcable_grpc_dict[asic_index], port, "state", "MUX_CABLE_TABLE") health_value = get_value_for_key_in_dict(muxcable_health_dict[asic_index], port, "state", "MUX_LINKMGR_TABLE") last_switch_end_time = "" @@ -446,6 +535,7 @@ def create_table_dump_per_port_status(db, print_data, muxcable_info_dict, muxcab port_name = platform_sfputil_helper.get_interface_alias(port, db) print_port_data.append(port_name) print_port_data.append(status_value) + print_port_data.append(gRPC_value) print_port_data.append(health_value) if res_dict[2] == "False": hwstatus = "absent" @@ -460,7 +550,7 @@ def create_table_dump_per_port_status(db, print_data, muxcable_info_dict, muxcab print_data.append(print_port_data) -def create_table_dump_per_port_config(db ,print_data, per_npu_configdb, asic_id, port): +def create_table_dump_per_port_config(db ,print_data, per_npu_configdb, asic_id, port, is_dualtor_active_active): port_list = [] port_name = platform_sfputil_helper.get_interface_alias(port, db) @@ -471,6 +561,20 @@ def create_table_dump_per_port_config(db ,print_data, per_npu_configdb, asic_id, port_list.append(ipv4_value) ipv6_value = get_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "server_ipv6", "MUX_CABLE") port_list.append(ipv6_value) + cable_type = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "cable_type", "MUX_CABLE") + if cable_type is not None: + port_list.append(cable_type) + soc_ipv4_value = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "soc_ipv4", "MUX_CABLE") + if soc_ipv4_value is not None: + port_list.append(soc_ipv4_value) + is_dualtor_active_active[0] = True + soc_ipv6_value = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "soc_ipv6", "MUX_CABLE") + if soc_ipv6_value is not None: + if cable_type is None: + port_list.append("") + if soc_ipv4_value is None: + port_list.append("") + port_list.append(soc_ipv6_value) print_data.append(port_list) @@ -484,7 +588,61 @@ def create_json_dump_per_port_config(db, port_status_dict, per_npu_configdb, asi port_status_dict["MUX_CABLE"]["PORTS"][port_name]["SERVER"]["IPv4"] = ipv4_value ipv6_value = get_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "server_ipv6", "MUX_CABLE") port_status_dict["MUX_CABLE"]["PORTS"][port_name]["SERVER"]["IPv6"] = ipv6_value - + cable_type = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "cable_type", "MUX_CABLE") + if cable_type is not None: + port_status_dict["MUX_CABLE"]["PORTS"][port_name]["SERVER"]["cable_type"] = cable_type + soc_ipv4_value = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "soc_ipv4", "MUX_CABLE") + if soc_ipv4_value is not None: + port_status_dict["MUX_CABLE"]["PORTS"][port_name]["SERVER"]["soc_ipv4"] = soc_ipv4_value + soc_ipv6_value = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "soc_ipv6", "MUX_CABLE") + if soc_ipv6_value is not None: + port_status_dict["MUX_CABLE"]["PORTS"][port_name]["SERVER"]["soc_ipv6"] = soc_ipv6_value + +def get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port): + + mux_cfg_dict = per_npu_configdb[asic_id].get_all( + per_npu_configdb[asic_id].CONFIG_DB, 'MUX_CABLE|{}'.format(port)) + dest_names = ["server_ipv4", "server_ipv6", "soc_ipv4", "soc_ipv6"] + + for name in dest_names: + dest_address = mux_cfg_dict.get(name, None) + + if dest_address is not None: + kernel_route_keys = per_npu_appl_db[asic_id].keys( + per_npu_appl_db[asic_id].APPL_DB, 'TUNNEL_ROUTE_TABLE:*{}'.format(dest_address)) + if_kernel_tunnel_route_programed = kernel_route_keys is not None and len(kernel_route_keys) + + asic_route_keys = per_npu_asic_db[asic_id].keys( + per_npu_asic_db[asic_id].ASIC_DB, 'ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:*{}*'.format(dest_address)) + if_asic_tunnel_route_programed = asic_route_keys is not None and len(asic_route_keys) + + if if_kernel_tunnel_route_programed or if_asic_tunnel_route_programed: + port_tunnel_route["TUNNEL_ROUTE"][port] = port_tunnel_route["TUNNEL_ROUTE"].get(port, {}) + port_tunnel_route["TUNNEL_ROUTE"][port][name] = {} + port_tunnel_route["TUNNEL_ROUTE"][port][name]['DEST'] = dest_address + + port_tunnel_route["TUNNEL_ROUTE"][port][name]['kernel'] = if_kernel_tunnel_route_programed + port_tunnel_route["TUNNEL_ROUTE"][port][name]['asic'] = if_asic_tunnel_route_programed + +def create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port): + + get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port) + +def create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port): + + port_tunnel_route = {} + port_tunnel_route["TUNNEL_ROUTE"] = {} + get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port) + + for port, route in port_tunnel_route["TUNNEL_ROUTE"].items(): + for dest_name, values in route.items(): + print_line = [] + print_line.append(port) + print_line.append(dest_name) + print_line.append(values['DEST']) + print_line.append('added' if values['kernel'] else '-') + print_line.append('added' if values['asic'] else '-') + print_data.append(print_line) @muxcable.command() @click.argument('port', required=False, default=None) @@ -496,10 +654,13 @@ def status(db, port, json_output): port = platform_sfputil_helper.get_interface_name(port, db) port_table_keys = {} + appl_db_muxcable_tbl_keys = {} port_health_table_keys = {} port_metrics_table_keys = {} per_npu_statedb = {} + per_npu_appl_db = {} muxcable_info_dict = {} + muxcable_grpc_dict = {} muxcable_health_dict = {} muxcable_metrics_dict = {} @@ -511,6 +672,11 @@ def status(db, port, json_output): per_npu_statedb[asic_id] = SonicV2Connector(use_unix_socket_path=False, namespace=namespace) per_npu_statedb[asic_id].connect(per_npu_statedb[asic_id].STATE_DB) + per_npu_appl_db[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + per_npu_appl_db[asic_id].connect(per_npu_appl_db[asic_id].APPL_DB) + + appl_db_muxcable_tbl_keys[asic_id] = per_npu_appl_db[asic_id].keys( + per_npu_appl_db[asic_id].APPL_DB, 'MUX_CABLE_TABLE:*') port_table_keys[asic_id] = per_npu_statedb[asic_id].keys( per_npu_statedb[asic_id].STATE_DB, 'MUX_CABLE_TABLE|*') port_health_table_keys[asic_id] = per_npu_statedb[asic_id].keys( @@ -532,17 +698,20 @@ def status(db, port, json_output): click.echo("Got invalid asic index for port {}, cant retreive mux status".format(port_name)) sys.exit(STATUS_FAIL) - muxcable_info_dict[asic_index] = per_npu_statedb[asic_index].get_all( + muxcable_info_dict[asic_index] = per_npu_appl_db[asic_index].get_all( + per_npu_appl_db[asic_index].APPL_DB, 'MUX_CABLE_TABLE:{}'.format(port)) + muxcable_grpc_dict[asic_index] = per_npu_statedb[asic_index].get_all( per_npu_statedb[asic_index].STATE_DB, 'MUX_CABLE_TABLE|{}'.format(port)) muxcable_health_dict[asic_index] = per_npu_statedb[asic_index].get_all( per_npu_statedb[asic_index].STATE_DB, 'MUX_LINKMGR_TABLE|{}'.format(port)) muxcable_metrics_dict[asic_index] = per_npu_statedb[asic_index].get_all( per_npu_statedb[asic_index].STATE_DB, 'MUX_METRICS_TABLE|{}'.format(port)) + if muxcable_info_dict[asic_index] is not None: - logical_key = "MUX_CABLE_TABLE|{}".format(port) + logical_key = "MUX_CABLE_TABLE:{}".format(port) logical_health_key = "MUX_LINKMGR_TABLE|{}".format(port) logical_metrics_key = "MUX_METRICS_TABLE|{}".format(port) - if logical_key in port_table_keys[asic_index] and logical_health_key in port_health_table_keys[asic_index]: + if logical_key in appl_db_muxcable_tbl_keys[asic_index] and logical_health_key in port_health_table_keys[asic_index]: if logical_metrics_key not in port_metrics_table_keys[asic_index]: muxcable_metrics_dict[asic_index] = {} @@ -551,7 +720,7 @@ def status(db, port, json_output): port_status_dict = {} port_status_dict["MUX_CABLE"] = {} - create_json_dump_per_port_status(db, port_status_dict, muxcable_info_dict, + create_json_dump_per_port_status(db, port_status_dict, muxcable_info_dict, muxcable_grpc_dict, muxcable_health_dict, muxcable_metrics_dict, asic_index, port) click.echo("{}".format(json.dumps(port_status_dict, indent=4))) @@ -559,10 +728,10 @@ def status(db, port, json_output): else: print_data = [] - create_table_dump_per_port_status(db, print_data, muxcable_info_dict, + create_table_dump_per_port_status(db, print_data, muxcable_info_dict, muxcable_grpc_dict, muxcable_health_dict, muxcable_metrics_dict, asic_index, port) - headers = ['PORT', 'STATUS', 'HEALTH', 'HWSTATUS', 'LAST_SWITCHOVER_TIME'] + headers = ['PORT', 'STATUS', 'SERVER_STATUS', 'HEALTH', 'HWSTATUS', 'LAST_SWITCHOVER_TIME'] click.echo(tabulate(print_data, headers=headers)) sys.exit(STATUS_SUCCESSFUL) @@ -581,9 +750,11 @@ def status(db, port, json_output): port_status_dict["MUX_CABLE"] = {} for namespace in namespaces: asic_id = multi_asic.get_asic_index_from_namespace(namespace) - for key in natsorted(port_table_keys[asic_id]): - port = key.split("|")[1] - muxcable_info_dict[asic_id] = per_npu_statedb[asic_id].get_all( + for key in natsorted(appl_db_muxcable_tbl_keys[asic_id]): + port = key.split(":")[1] + muxcable_info_dict[asic_id] = per_npu_appl_db[asic_id].get_all( + per_npu_appl_db[asic_id].APPL_DB, 'MUX_CABLE_TABLE:{}'.format(port)) + muxcable_grpc_dict[asic_id] = per_npu_statedb[asic_id].get_all( per_npu_statedb[asic_id].STATE_DB, 'MUX_CABLE_TABLE|{}'.format(port)) muxcable_health_dict[asic_id] = per_npu_statedb[asic_id].get_all( per_npu_statedb[asic_id].STATE_DB, 'MUX_LINKMGR_TABLE|{}'.format(port)) @@ -591,7 +762,7 @@ def status(db, port, json_output): per_npu_statedb[asic_id].STATE_DB, 'MUX_METRICS_TABLE|{}'.format(port)) if not muxcable_metrics_dict[asic_id]: muxcable_metrics_dict[asic_id] = {} - create_json_dump_per_port_status(db, port_status_dict, muxcable_info_dict, + create_json_dump_per_port_status(db, port_status_dict, muxcable_info_dict, muxcable_grpc_dict, muxcable_health_dict, muxcable_metrics_dict, asic_id, port) click.echo("{}".format(json.dumps(port_status_dict, indent=4))) @@ -599,20 +770,22 @@ def status(db, port, json_output): print_data = [] for namespace in namespaces: asic_id = multi_asic.get_asic_index_from_namespace(namespace) - for key in natsorted(port_table_keys[asic_id]): - port = key.split("|")[1] + for key in natsorted(appl_db_muxcable_tbl_keys[asic_id]): + port = key.split(":")[1] + muxcable_info_dict[asic_id] = per_npu_appl_db[asic_id].get_all( + per_npu_appl_db[asic_id].APPL_DB, 'MUX_CABLE_TABLE:{}'.format(port)) muxcable_health_dict[asic_id] = per_npu_statedb[asic_id].get_all( per_npu_statedb[asic_id].STATE_DB, 'MUX_LINKMGR_TABLE|{}'.format(port)) - muxcable_info_dict[asic_id] = per_npu_statedb[asic_id].get_all( + muxcable_grpc_dict[asic_id] = per_npu_statedb[asic_id].get_all( per_npu_statedb[asic_id].STATE_DB, 'MUX_CABLE_TABLE|{}'.format(port)) muxcable_metrics_dict[asic_id] = per_npu_statedb[asic_id].get_all( per_npu_statedb[asic_id].STATE_DB, 'MUX_METRICS_TABLE|{}'.format(port)) if not muxcable_metrics_dict[asic_id]: muxcable_metrics_dict[asic_id] = {} - create_table_dump_per_port_status(db, print_data, muxcable_info_dict, + create_table_dump_per_port_status(db, print_data, muxcable_info_dict, muxcable_grpc_dict, muxcable_health_dict, muxcable_metrics_dict, asic_id, port) - headers = ['PORT', 'STATUS', 'HEALTH', 'HWSTATUS','LAST_SWITCHOVER_TIME'] + headers = ['PORT', 'STATUS', 'SERVER_STATUS', 'HEALTH', 'HWSTATUS', 'LAST_SWITCHOVER_TIME'] click.echo(tabulate(print_data, headers=headers)) sys.exit(STATUS_SUCCESSFUL) @@ -688,8 +861,10 @@ def config(db, port, json_output): else: print_data = [] print_peer_tor = [] + is_dualtor_active_active = [False] - create_table_dump_per_port_config(db, print_data, per_npu_configdb, asic_id, port) + + create_table_dump_per_port_config(db, print_data, per_npu_configdb, asic_id, port, is_dualtor_active_active) headers = ['SWITCH_NAME', 'PEER_TOR'] peer_tor_data = [] @@ -697,7 +872,10 @@ def config(db, port, json_output): peer_tor_data.append(peer_switch_value) print_peer_tor.append(peer_tor_data) click.echo(tabulate(print_peer_tor, headers=headers)) - headers = ['port', 'state', 'ipv4', 'ipv6'] + if is_dualtor_active_active[0]: + headers = ['port', 'state', 'ipv4', 'ipv6', 'cable_type', 'soc_ipv4', 'soc_ipv6'] + else: + headers = ['port', 'state', 'ipv4', 'ipv6'] click.echo(tabulate(print_data, headers=headers)) sys.exit(CONFIG_SUCCESSFUL) @@ -733,10 +911,12 @@ def config(db, port, json_output): else: print_data = [] print_peer_tor = [] + is_dualtor_active_active = [False] + for namespace in namespaces: asic_id = multi_asic.get_asic_index_from_namespace(namespace) for port in natsorted(port_mux_tbl_keys[asic_id]): - create_table_dump_per_port_config(db, print_data, per_npu_configdb, asic_id, port) + create_table_dump_per_port_config(db, print_data, per_npu_configdb, asic_id, port, is_dualtor_active_active) headers = ['SWITCH_NAME', 'PEER_TOR'] peer_tor_data = [] @@ -744,7 +924,10 @@ def config(db, port, json_output): peer_tor_data.append(peer_switch_value) print_peer_tor.append(peer_tor_data) click.echo(tabulate(print_peer_tor, headers=headers)) - headers = ['port', 'state', 'ipv4', 'ipv6'] + if is_dualtor_active_active[0]: + headers = ['port', 'state', 'ipv4', 'ipv6', 'cable_type', 'soc_ipv4', 'soc_ipv6'] + else: + headers = ['port', 'state', 'ipv4', 'ipv6'] click.echo(tabulate(print_data, headers=headers)) sys.exit(CONFIG_SUCCESSFUL) @@ -777,7 +960,7 @@ def berinfo(db, port, target, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 10, param_dict, "ber") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 10, param_dict, "ber") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -829,7 +1012,7 @@ def eyeinfo(db, port, target, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 10, param_dict, "eye") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 10, param_dict, "eye") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -880,7 +1063,7 @@ def fecstatistics(db, port, target, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 10, param_dict, "fec_stats") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 10, param_dict, "fec_stats") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -931,7 +1114,7 @@ def pcsstatistics(db, port, target, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 10, param_dict, "pcs_stats") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 10, param_dict, "pcs_stats") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -980,7 +1163,7 @@ def debugdumpregisters(db, port, option, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 100, param_dict, "debug_dump") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 100, param_dict, "debug_dump") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -1024,7 +1207,7 @@ def alivecablestatus(db, port, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", None, "XCVRD_GET_BER_RSP", port, 10, None, "cable_alive") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", None, "XCVRD_GET_BER_RSP", None, port, 10, None, "cable_alive") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -1096,7 +1279,7 @@ def get_hwmode_mux_direction_port(db, port): if port is not None: res_dict = update_and_get_response_for_xcvr_cmd( - "state", "state", "True", "XCVRD_SHOW_HWMODE_DIR_CMD", "XCVRD_SHOW_HWMODE_DIR_RES", "XCVRD_SHOW_HWMODE_DIR_RSP", port, HWMODE_MUXDIRECTION_TIMEOUT, None, "probe") + "state", "state", "True", "XCVRD_SHOW_HWMODE_DIR_CMD", "XCVRD_SHOW_HWMODE_DIR_RES", "XCVRD_SHOW_HWMODE_DIR_RSP", None, port, HWMODE_MUXDIRECTION_TIMEOUT, None, "probe") result = get_result(port, res_dict, "muxdirection" , result, "XCVRD_SHOW_HWMODE_DIR_RES") @@ -1105,6 +1288,67 @@ def get_hwmode_mux_direction_port(db, port): return res_dict +def create_active_active_mux_direction_json_result(result, port, db): + + port = platform_sfputil_helper.get_interface_alias(port, db) + result["HWMODE"][port] = {} + res_dict = get_grpc_cached_version_mux_direction_per_port(db, port) + result["HWMODE"][port]["Direction"] = res_dict["self_mux_direction"] + result["HWMODE"][port]["Presence"] = res_dict["presence"] + result["HWMODE"][port]["PeerDirection"] = res_dict["peer_mux_direction"] + result["HWMODE"][port]["ConnectivityState"] = res_dict["grpc_connection_status"] + + rc = res_dict["rc"] + + return rc + +def create_active_standby_mux_direction_json_result(result, port, db): + + res_dict = get_hwmode_mux_direction_port(db, port) + port = platform_sfputil_helper.get_interface_alias(port, db) + result["HWMODE"][port] = {} + result["HWMODE"][port]["Direction"] = res_dict[1] + result["HWMODE"][port]["Presence"] = res_dict[2] + + rc = res_dict[0] + + return rc + +def create_active_active_mux_direction_result(body, port, db): + + res_dict = get_grpc_cached_version_mux_direction_per_port(db, port) + temp_list = [] + port = platform_sfputil_helper.get_interface_alias(port, db) + temp_list.append(port) + temp_list.append(res_dict["self_mux_direction"]) + temp_list.append(res_dict["presence"]) + temp_list.append(res_dict["peer_mux_direction"]) + temp_list.append(res_dict["grpc_connection_status"]) + body.append(temp_list) + + rc = res_dict["rc"] + + return rc + +def create_active_standby_mux_direction_result(body, port, db): + + res_dict = get_hwmode_mux_direction_port(db, port) + + temp_list = [] + port = platform_sfputil_helper.get_interface_alias(port, db) + temp_list.append(port) + temp_list.append(res_dict[1]) + temp_list.append(res_dict[2]) + body.append(temp_list) + + rc = res_dict[0] + + delete_all_keys_in_db_table("APPL_DB", "XCVRD_SHOW_HWMODE_DIR_CMD") + delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RSP") + delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RES") + + return rc + @muxcable.group(cls=clicommon.AbbreviationGroup) def hwmode(): """Shows the muxcable hardware information directly""" @@ -1113,8 +1357,9 @@ def hwmode(): @hwmode.command() @click.argument('port', metavar='', required=False, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") @clicommon.pass_db -def muxdirection(db, port): +def muxdirection(db, port, json_output): """Shows the current direction of the muxcable {active/standy}""" port = platform_sfputil_helper.get_interface_name(port, db) @@ -1122,41 +1367,58 @@ def muxdirection(db, port): delete_all_keys_in_db_table("APPL_DB", "XCVRD_SHOW_HWMODE_DIR_CMD") delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RSP") delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RES") + per_npu_configdb = {} - if port is not None: + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + per_npu_configdb[asic_id] = ConfigDBConnector(use_unix_socket_path=False, namespace=namespace) + per_npu_configdb[asic_id].connect() + + if port is not None: + + asic_index = get_asic_index_for_port(port) + cable_type = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_index], port, "cable_type", "MUX_CABLE") if check_port_in_mux_cable_table(port) == False: click.echo("Not Y-cable port") return CONFIG_FAIL - res_dict = get_hwmode_mux_direction_port(db, port) - - body = [] - temp_list = [] - headers = ['Port', 'Direction', 'Presence'] - port = platform_sfputil_helper.get_interface_alias(port, db) - temp_list.append(port) - temp_list.append(res_dict[1]) - temp_list.append(res_dict[2]) - body.append(temp_list) - - rc = res_dict[0] - click.echo(tabulate(body, headers=headers)) + if json_output: + result = {} + result ["HWMODE"] = {} + if cable_type == "active-active": + rc = create_active_active_mux_direction_json_result(result, port, db) + else: + rc = False + rc = create_active_standby_mux_direction_json_result(result, port, db) + click.echo("{}".format(json.dumps(result, indent=4))) - delete_all_keys_in_db_table("APPL_DB", "XCVRD_SHOW_HWMODE_DIR_CMD") - delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RSP") - delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RES") + else: + body = [] + if cable_type == "active-active": + headers = ['Port', 'Direction', 'Presence', 'PeerDirection', 'ConnectivityState'] + rc = create_active_active_mux_direction_result(body, port, db) + else: + rc = create_active_standby_mux_direction_result(body, port, db) + headers = ['Port', 'Direction', 'Presence'] + click.echo(tabulate(body, headers=headers)) - return rc + rc_exit = EXIT_SUCCESS if rc==0 else EXIT_FAIL + sys.exit(rc_exit) else: logical_port_list = platform_sfputil_helper.get_logical_list() - rc_exit = True + rc_exit = EXIT_SUCCESS body = [] + active_active = False + if json_output: + result = {} + result ["HWMODE"] = {} - for port in logical_port_list: + for port in natsorted(logical_port_list): if platform_sfputil is not None: physical_port_list = platform_sfputil_helper.logical_port_name_to_physical_port_list(port) @@ -1182,28 +1444,39 @@ def muxdirection(db, port): if port != logical_port_list_per_port[0]: continue - temp_list = [] + + asic_index = get_asic_index_for_port(port) + cable_type = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_index], port, "cable_type", "MUX_CABLE") + if json_output: + if cable_type == "active-active": + rc = create_active_active_mux_direction_json_result(result, port, db) + active_active = True + else: + rc = create_active_standby_mux_direction_json_result(result, port, db) - res_dict = get_hwmode_mux_direction_port(db, port) + else: + if cable_type == 'active-active': + rc = create_active_active_mux_direction_result(body, port, db) + active_active = True + else: + rc = create_active_standby_mux_direction_result(body, port, db) - port = platform_sfputil_helper.get_interface_alias(port, db) - temp_list.append(port) - temp_list.append(res_dict[1]) - temp_list.append(res_dict[2]) - body.append(temp_list) - rc = res_dict[0] if rc != 0: - rc_exit = False + rc_exit = EXIT_FAIL - headers = ['Port', 'Direction', 'Presence'] - click.echo(tabulate(body, headers=headers)) - delete_all_keys_in_db_table("APPL_DB", "XCVRD_SHOW_HWMODE_DIR_CMD") - delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RSP") - delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RES") - if rc_exit == False: - sys.exit(EXIT_FAIL) + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + if active_active: + + headers = ['Port', 'Direction', 'Presence', 'PeerDirection', 'ConnectivityState'] + else: + headers = ['Port', 'Direction', 'Presence'] + click.echo(tabulate(body, headers=headers)) + + sys.exit(rc_exit) @hwmode.command() @@ -1226,7 +1499,7 @@ def switchmode(db, port): res_dict[0] = CONFIG_FAIL res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "state", "state", "True", "XCVRD_SHOW_HWMODE_SWMODE_CMD", None, "XCVRD_SHOW_HWMODE_SWMODE_RSP", port, 1, None, "probe") + "state", "state", "True", "XCVRD_SHOW_HWMODE_SWMODE_CMD", None, "XCVRD_SHOW_HWMODE_SWMODE_RSP", None, port, 1, None, "probe") body = [] temp_list = [] @@ -1282,7 +1555,7 @@ def switchmode(db, port): res_dict[0] = CONFIG_FAIL res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "state", "state", "True", "XCVRD_SHOW_HWMODE_SWMODE_CMD", None, "XCVRD_SHOW_HWMODE_SWMODE_RSP", port, 1, None, "probe") + "state", "state", "True", "XCVRD_SHOW_HWMODE_SWMODE_CMD", None, "XCVRD_SHOW_HWMODE_SWMODE_RSP", None, port, 1, None, "probe") port = platform_sfputil_helper.get_interface_alias(port, db) temp_list.append(port) temp_list.append(res_dict[1]) @@ -1449,7 +1722,7 @@ def version(db, port, active): delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_FW_RSP") delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_FW_RES") - if port is not None: + if port is not None and port != "all": res_dict = {} mux_info_dict, mux_info_active_dict = {}, {} @@ -1467,7 +1740,7 @@ def version(db, port, active): mux_info_dict["version_self_next"] = "N/A" res_dict = update_and_get_response_for_xcvr_cmd( - "firmware_version", "status", "True", "XCVRD_SHOW_FW_CMD", None, "XCVRD_SHOW_FW_RSP", port, 20, None, "probe") + "firmware_version", "status", "True", "XCVRD_SHOW_FW_CMD", None, "XCVRD_SHOW_FW_RSP", None, port, 20, None, "probe") if res_dict[1] == "True": mux_info_dict = get_response_for_version(port, mux_info_dict) @@ -1482,6 +1755,65 @@ def version(db, port, active): click.echo("{}".format(json.dumps(mux_info_active_dict, indent=4))) else: click.echo("{}".format(json.dumps(mux_info_dict, indent=4))) + + elif port == "all" and port is not None: + + logical_port_list = platform_sfputil_helper.get_logical_list() + + rc_exit = True + + for port in logical_port_list: + + if platform_sfputil is not None: + physical_port_list = platform_sfputil_helper.logical_port_name_to_physical_port_list(port) + + if not isinstance(physical_port_list, list): + continue + if len(physical_port_list) != 1: + continue + + if not check_port_in_mux_cable_table(port): + continue + + physical_port = physical_port_list[0] + + logical_port_list_for_physical_port = platform_sfputil_helper.get_physical_to_logical() + + logical_port_list_per_port = logical_port_list_for_physical_port.get(physical_port, None) + + """ This check is required for checking whether or not this logical port is the one which is + actually mapped to physical port and by convention it is always the first port. + TODO: this should be removed with more logic to check which logical port maps to actual physical port + being used""" + + if port != logical_port_list_per_port[0]: + continue + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + mux_info_dict = get_per_port_firmware(port) + if not isinstance(mux_info_dict, dict): + mux_info_dict = {} + rc_exit = False + + mux_info = {} + mux_info_active_dict = {} + if active is True: + for key in mux_info_dict: + if key.endswith("_active"): + mux_info_active_dict[key] = mux_info_dict[key] + mux_info[port] = mux_info_active_dict + click.echo("{}".format(json.dumps(mux_info, indent=4))) + else: + mux_info[port] = mux_info_dict + click.echo("{}".format(json.dumps(mux_info, indent=4))) + + if rc_exit == False: + sys.exit(EXIT_FAIL) + + sys.exit(CONFIG_SUCCESSFUL) + else: port_name = platform_sfputil_helper.get_interface_name(port, db) click.echo("Did not get a valid Port for mux firmware version".format(port_name)) @@ -1561,6 +1893,7 @@ def metrics(db, port, json_output): def event_log(db, port, json_output): """Show muxcable event log """ + click.confirm(('Muxcable at port {} will retreive cable logs from MCU, Caution: approx wait time could be ~2 minutes Continue?'.format(port)), abort=True) port = platform_sfputil_helper.get_interface_name(port, db) delete_all_keys_in_db_table("APPL_DB", "XCVRD_EVENT_LOG_CMD") delete_all_keys_in_db_table("STATE_DB", "XCVRD_EVENT_LOG_RSP") @@ -1576,7 +1909,7 @@ def event_log(db, port, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "show_event", "status", "True", "XCVRD_EVENT_LOG_CMD", None, "XCVRD_EVENT_LOG_RSP", port, 1000, None, "probe") + "show_event", "status", "True", "XCVRD_EVENT_LOG_CMD", None, "XCVRD_EVENT_LOG_RSP", None, port, 1000, None, "probe") if res_dict[1] == "True": result = get_event_logs(port, res_dict, mux_info_dict) @@ -1618,7 +1951,7 @@ def get_fec_anlt_speed(db, port, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_fec", "status", "True", "XCVRD_GET_FEC_CMD", None, "XCVRD_GET_FEC_RSP", port, 10, None, "probe") + "get_fec", "status", "True", "XCVRD_GET_FEC_CMD", None, "XCVRD_GET_FEC_RSP", None, port, 10, None, "probe") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_FEC_RES") @@ -1656,7 +1989,7 @@ def packetloss(db, port, json_output): for namespace in namespaces: asic_id = multi_asic.get_asic_index_from_namespace(namespace) - per_npu_statedb[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + per_npu_statedb[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) per_npu_statedb[asic_id].connect(per_npu_statedb[asic_id].STATE_DB) pckloss_table_keys[asic_id] = per_npu_statedb[asic_id].keys( @@ -1708,3 +2041,446 @@ def packetloss(db, port, json_output): click.echo(tabulate(print_count, headers=count_headers)) click.echo(tabulate(print_event, headers=event_headers)) + +@muxcable.command() +@click.argument('port', metavar='', required=False, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def tunnel_route(db, port, json_output): + """show muxcable tunnel-route """ + + port = platform_sfputil_helper.get_interface_name(port, db) + + per_npu_appl_db = {} + per_npu_asic_db = {} + per_npu_configdb = {} + mux_tbl_keys = {} + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + + per_npu_appl_db[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + per_npu_appl_db[asic_id].connect(per_npu_appl_db[asic_id].APPL_DB) + + per_npu_asic_db[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + per_npu_asic_db[asic_id].connect(per_npu_asic_db[asic_id].ASIC_DB) + + per_npu_configdb[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + per_npu_configdb[asic_id].connect(per_npu_configdb[asic_id].CONFIG_DB) + + mux_tbl_keys[asic_id] = per_npu_configdb[asic_id].keys( + per_npu_configdb[asic_id].CONFIG_DB, "MUX_CABLE|*") + + if port is not None: + + logical_port_list = platform_sfputil_helper.get_logical_list() + + if port not in logical_port_list: + port_name = platform_sfputil_helper.get_interface_alias(port, db) + click.echo(("ERR: Not a valid logical port for dualtor firmware {}".format(port_name))) + sys.exit(CONFIG_FAIL) + + asic_index = None + if platform_sfputil is not None: + asic_index = platform_sfputil_helper.get_asic_id_for_logical_port(port) + if asic_index is None: + # TODO this import is only for unit test purposes, and should be removed once sonic_platform_base + # is fully mocked + import sonic_platform_base.sonic_sfp.sfputilhelper + asic_index = sonic_platform_base.sonic_sfp.sfputilhelper.SfpUtilHelper().get_asic_id_for_logical_port(port) + if asic_index is None: + port_name = platform_sfputil_helper.get_interface_alias(port, db) + click.echo("Got invalid asic index for port {}, cant retreive tunnel route info".format(port_name)) + sys.exit(STATUS_FAIL) + + if mux_tbl_keys[asic_index] is not None and "MUX_CABLE|{}".format(port) in mux_tbl_keys[asic_index]: + if json_output: + port_tunnel_route = {} + port_tunnel_route["TUNNEL_ROUTE"] = {} + + create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_index, port) + + click.echo("{}".format(json.dumps(port_tunnel_route, indent=4))) + + else: + print_data = [] + + create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_index, port) + + headers = ['PORT', 'DEST_TYPE', 'DEST_ADDRESS', 'kernel', 'asic'] + + click.echo(tabulate(print_data, headers=headers)) + else: + click.echo("this is not a valid port present on dualToR".format(port)) + sys.exit(STATUS_FAIL) + + else: + if json_output: + port_tunnel_route = {} + port_tunnel_route["TUNNEL_ROUTE"] = {} + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + for key in natsorted(mux_tbl_keys[asic_id]): + port = key.split("|")[1] + + create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port) + + click.echo("{}".format(json.dumps(port_tunnel_route, indent=4))) + else: + print_data = [] + + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + for key in natsorted(mux_tbl_keys[asic_id]): + port = key.split("|")[1] + + create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port) + + headers = ['PORT', 'DEST_TYPE', 'DEST_ADDRESS', 'kernel', 'asic'] + + click.echo(tabulate(print_data, headers=headers)) + + sys.exit(STATUS_SUCCESSFUL) + + +def get_grpc_cached_version_mux_direction_per_port(db, port): + + + state_db = {} + mux_info_dict = {} + mux_info_full_dict = {} + trans_info_full_dict = {} + mux_info_dict["rc"] = 1 + + # Getting all front asic namespace and correspding config and state DB connector + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + state_db[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + state_db[asic_id].connect(state_db[asic_id].STATE_DB) + + if platform_sfputil is not None: + asic_index = platform_sfputil_helper.get_asic_id_for_logical_port(port) + + if asic_index is None: + # TODO this import is only for unit test purposes, and should be removed once sonic_platform_base + # is fully mocked + import sonic_platform_base.sonic_sfp.sfputilhelper + asic_index = sonic_platform_base.sonic_sfp.sfputilhelper.SfpUtilHelper().get_asic_id_for_logical_port(port) + if asic_index is None: + click.echo("Got invalid asic index for port {}, cant retrieve mux cable table entries".format(port)) + return mux_info_dict + + + mux_info_full_dict[asic_index] = state_db[asic_index].get_all( + state_db[asic_index].STATE_DB, 'MUX_CABLE_INFO|{}'.format(port)) + trans_info_full_dict[asic_index] = state_db[asic_index].get_all( + state_db[asic_index].STATE_DB, 'TRANSCEIVER_STATUS|{}'.format(port)) + + res_dir = {} + res_dir = mux_info_full_dict[asic_index] + mux_info_dict["self_mux_direction"] = res_dir.get("self_mux_direction", None) + mux_info_dict["peer_mux_direction"] = res_dir.get("peer_mux_direction", None) + mux_info_dict["grpc_connection_status"] = res_dir.get("grpc_connection_status", None) + + trans_dir = {} + trans_dir = trans_info_full_dict[asic_index] + + status = trans_dir.get("status", "0") + presence = "True" if status == "1" else "False" + + mux_info_dict["presence"] = presence + + mux_info_dict["rc"] = 0 + + return mux_info_dict + + +@muxcable.group(cls=clicommon.AbbreviationGroup) +def grpc(): + """Shows the muxcable hardware information directly""" + pass + + +@grpc.command() +@click.argument('port', metavar='', required=False, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def muxdirection(db, port, json_output): + """Shows the current direction of the FPGA facing port on Tx Side {active/standy}""" + + port = platform_sfputil_helper.get_interface_name(port, db) + + + if port is not None: + + if check_port_in_mux_cable_table(port) == False: + click.echo("Not Y-cable port") + return CONFIG_FAIL + + if json_output: + result = {} + result ["HWMODE"] = {} + rc = create_active_active_mux_direction_json_result(result, port, db) + click.echo("{}".format(json.dumps(result, indent=4))) + + else: + body = [] + + headers = ['Port', 'Direction', 'Presence', 'PeerDirection', 'ConnectivityState'] + rc = create_active_active_mux_direction_result(body, port, db) + click.echo(tabulate(body, headers=headers)) + + rc_exit = EXIT_SUCCESS if rc==0 else EXIT_FAIL + sys.exit(rc_exit) + + else: + + + logical_port_list = platform_sfputil_helper.get_logical_list() + + rc_exit = EXIT_SUCCESS + body = [] + if json_output: + result = {} + result ["HWMODE"] = {} + + for port in natsorted(logical_port_list): + + if platform_sfputil is not None: + physical_port_list = platform_sfputil_helper.logical_port_name_to_physical_port_list(port) + + if not isinstance(physical_port_list, list): + continue + if len(physical_port_list) != 1: + continue + + if not check_port_in_mux_cable_table(port): + continue + + physical_port = physical_port_list[0] + logical_port_list_for_physical_port = platform_sfputil_helper.get_physical_to_logical() + + logical_port_list_per_port = logical_port_list_for_physical_port.get(physical_port, None) + + """ This check is required for checking whether or not this logical port is the one which is + actually mapped to physical port and by convention it is always the first port. + TODO: this should be removed with more logic to check which logical port maps to actual physical port + being used""" + + if port != logical_port_list_per_port[0]: + continue + + if json_output: + rc = create_active_active_mux_direction_json_result(result, port, db) + else: + rc = create_active_active_mux_direction_result(body, port, db) + + if rc != 0: + rc_exit = EXIT_FAIL + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['Port', 'Direction', 'Presence', 'PeerDirection', 'ConnectivityState'] + + click.echo(tabulate(body, headers=headers)) + + sys.exit(rc_exit) + +@muxcable.command() +@click.argument('port', metavar='', required=True, default=None) +@click.argument('option', required=False, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def queueinfo(db, port, option, json_output): + """Show muxcable queue info information, preagreed by vendors""" + + port = platform_sfputil_helper.get_interface_name(port, db) + + if port is not None: + + res_dict = {} + result = {} + param_dict = {} + param_dict["option"] = option + + + res_dict[0] = CONFIG_FAIL + res_dict[1] = "unknown" + + res_dict = update_and_get_response_for_xcvr_cmd( + "get_ber", "status", "True", XCVRD_GET_BER_CMD_TABLE, XCVRD_GET_BER_CMD_ARG_TABLE, XCVRD_GET_BER_RSP_TABLE, XCVRD_GET_BER_RES_TABLE, port, 100, param_dict, "queue_info") + + if res_dict[1] == "True": + result = get_result(port, res_dict, "fec" , result, XCVRD_GET_BER_RES_TABLE) + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['PORT', 'ATTR', 'VALUE'] + res = [[port]+[key] + [val] for key, val in result.items()] + click.echo(tabulate(res, headers=headers)) + else: + click.echo("Did not get a valid Port for queue info information".format(port)) + sys.exit(CONFIG_FAIL) + + +@muxcable.command() +@click.argument('port', metavar='', required=True, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def health(db, port, json_output): + """Show muxcable health information as Ok or Not Ok""" + + """ + in order to detemine whether the health of the cable is Ok + the following are checked + - the vendor name is correct able to be read + - the FW is correctly loaded for SerDes by reading the appropriate register val + - the Counters for UART are displaying healthy status + i.e Error Counters , retry Counters for UART or internal xfer protocols are below a threshold + """ + + port = platform_sfputil_helper.get_interface_name(port, db) + + if port is not None: + + res_dict = {} + result = {} + + + res_dict[0] = CONFIG_FAIL + res_dict[1] = "unknown" + + res_dict = update_and_get_response_for_xcvr_cmd( + "get_ber", "status", "True", XCVRD_GET_BER_CMD_TABLE, None, XCVRD_GET_BER_RSP_TABLE, XCVRD_GET_BER_RES_TABLE, port, 10, None, "health_check") + + if res_dict[1] == "True": + result = get_result(port, res_dict, "fec" , result, XCVRD_GET_BER_RES_TABLE) + + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + cable_health = result.get("health_check", None) + + if cable_health == "False": + result["health_check"] = "Not Ok" + elif cable_health == "True": + result["health_check"] = "Ok" + else: + result["health_check"] = "Unknown" + + + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['PORT', 'ATTR', 'HEALTH'] + res = [[port]+[key] + [val] for key, val in result.items()] + click.echo(tabulate(res, headers=headers)) + else: + click.echo("Did not get a valid Port for cable health status".format(port)) + sys.exit(CONFIG_FAIL) + +@muxcable.command() +@click.argument('port', metavar='', required=True, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def resetcause(db, port, json_output): + """Show muxcable resetcause information """ + + port = platform_sfputil_helper.get_interface_name(port, db) + + """ + the reset cause only records NIC MCU reset status. The NIC MCU will automatically broadcast the reset cause status to each TORs, corresponding values returned + return 0 if the last reset is cold reset (ex. HW/SW reset, power reset the cable, or reboot the NIC server) + return 1 if the last reset is warm reset (ex. sudo config mux firmware activate....) + the value is persistent, no clear on read + """ + if port is not None: + + res_dict = {} + result = {} + + + res_dict[0] = CONFIG_FAIL + res_dict[1] = "unknown" + + res_dict = update_and_get_response_for_xcvr_cmd( + "get_ber", "status", "True", XCVRD_GET_BER_CMD_TABLE, None, XCVRD_GET_BER_RSP_TABLE, XCVRD_GET_BER_RES_TABLE, port, 10, None, "reset_cause") + + if res_dict[1] == "True": + result = get_result(port, res_dict, "fec" , result, XCVRD_GET_BER_RES_TABLE) + + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + reset_cause = result.get("reset_cause", None) + + if reset_cause == "0": + result["reset_cause"] = "cold reset" + elif reset_cause == "1": + result["reset_cause"] = "warm reset" + else: + result["reset_cause"] = "Unknown" + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['PORT', 'ATTR', 'RESETCAUSE'] + res = [[port]+[key] + [val] for key, val in result.items()] + click.echo(tabulate(res, headers=headers)) + else: + click.echo("Did not get a valid Port for cable resetcause information".format(port)) + sys.exit(CONFIG_FAIL) + +@muxcable.command() +@click.argument('port', metavar='', required=True, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def operationtime(db, port, json_output): + """Show muxcable operation time hh:mm:ss forrmat""" + + port = platform_sfputil_helper.get_interface_name(port, db) + + if port is not None: + + res_dict = {} + result = {} + + + res_dict[0] = CONFIG_FAIL + res_dict[1] = "unknown" + + res_dict = update_and_get_response_for_xcvr_cmd( + "get_ber", "status", "True", XCVRD_GET_BER_CMD_TABLE, None, XCVRD_GET_BER_RSP_TABLE, XCVRD_GET_BER_RES_TABLE, port, 10, None, "operation_time") + + if res_dict[1] == "True": + result = get_result(port, res_dict, "fec" , result, XCVRD_GET_BER_RES_TABLE) + + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + actual_time = result.get("operation_time", 0) + if actual_time is not None: + time = '{0:02.0f}:{1:02.0f}'.format(*divmod(int(actual_time) * 60, 60)) + result['operation_time'] = time + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['PORT', 'ATTR', 'OPERATION_TIME'] + res = [[port]+[key] + [val] for key, val in result.items()] + click.echo(tabulate(res, headers=headers)) + else: + click.echo("Did not get a valid Port for operation time".format(port)) + sys.exit(CONFIG_FAIL) diff --git a/show/plugins/auto_techsupport.py b/show/plugins/auto_techsupport.py index 9bcda1b04..2afb0bf9c 100644 --- a/show/plugins/auto_techsupport.py +++ b/show/plugins/auto_techsupport.py @@ -61,6 +61,8 @@ def AUTO_TECHSUPPORT_GLOBAL(db): "RATE LIMIT INTERVAL (sec)", "MAX TECHSUPPORT LIMIT (%)", "MAX CORE LIMIT (%)", + "AVAILABLE MEM THRESHOLD (%)", + "MIN AVAILABLE MEM (Kb)", "SINCE", ] @@ -84,6 +86,14 @@ def AUTO_TECHSUPPORT_GLOBAL(db): entry, {'name': 'max_core_limit', 'description': 'Max Limit in percentage for the cummulative size of core dumps. No cleanup is performed if the value isn\'t congiured or is 0.0', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} ), + format_attr_value( + entry, + {'name': 'available_mem_threshold', 'description': 'Memory threshold; 0 to disable techsupport invocation on memory usage threshold crossing.', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'min_available_mem', 'description': 'Minimum Free memory (in MB) that should be available for the techsupport execution to start', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), format_attr_value( entry, {'name': 'since', 'description': "Only collect the logs & core-dumps generated since the time provided. A default value of '2 days ago' is used if this value is not set explicitly or a non-valid string is provided", 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} @@ -98,14 +108,15 @@ def AUTO_TECHSUPPORT_GLOBAL(db): @clicommon.pass_db def AUTO_TECHSUPPORT_history(db): keys = db.db.keys("STATE_DB", "AUTO_TECHSUPPORT_DUMP_INFO|*") - header = ["TECHSUPPORT DUMP", "TRIGGERED BY", "CORE DUMP"] + header = ["TECHSUPPORT DUMP", "TRIGGERED BY", "EVENT TYPE", "CORE DUMP"] body = [] for key in keys: dump = key.split("|")[-1] fv_pairs = db.db.get_all("STATE_DB", key) core_dump = fv_pairs.get("core_dump", "") container = fv_pairs.get("container_name", "") - body.append([dump, container, core_dump]) + event_type = fv_pairs.get("event_type", "") + body.append([dump, container, event_type, core_dump]) click.echo(tabulate.tabulate(body, header, numalign="left")) @@ -120,6 +131,7 @@ def AUTO_TECHSUPPORT_FEATURE(db): "FEATURE NAME", "STATE", "RATE LIMIT INTERVAL (sec)", + "AVAILABLE MEM THRESHOLD (%)", ] body = [] @@ -139,6 +151,10 @@ def AUTO_TECHSUPPORT_FEATURE(db): entry, {'name': 'rate_limit_interval', 'description': 'Rate limit interval for the corresponding feature. Configure 0 to explicitly disable', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} ), + format_attr_value( + entry, + {'name': 'available_mem_threshold', 'description': 'Memory threshold; 0 to disable techsupport invocation on memory usage threshold crossing.', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), ] body.append(row) click.echo(tabulate.tabulate(body, header, numalign="left")) diff --git a/show/plugins/cisco-8000.py b/show/plugins/cisco-8000.py index c3e5e0327..2113336bd 100644 --- a/show/plugins/cisco-8000.py +++ b/show/plugins/cisco-8000.py @@ -1,36 +1,25 @@ #!/usr/bin/env python ######################################################### -# Copyright 2021 Cisco Systems, Inc. +# Copyright 2021-2022 Cisco Systems, Inc. # All rights reserved. # # CLI Extensions for show command ######################################################### try: - import click - import yaml - from show import platform from sonic_py_common import device_info import utilities_common.cli as clicommon except ImportError as e: - raise ImportError("%s - required module not found" % str(e)) + raise ImportError("%s - required module not found".format(str(e))) -PLATFORM_PY = '/opt/cisco/bin/platform.py' - -@click.command() -def inventory(): - """Show Platform Inventory""" - args = [ PLATFORM_PY, 'inventoryshow' ] - clicommon.run_command(args) +try: + from sonic_platform.cli import PLATFORM_CLIS +except ImportError: + PLATFORM_CLIS = [] -@click.command() -def idprom(): - """Show Platform Idprom Inventory""" - args = [ PLATFORM_PY, 'idprom' ] - clicommon.run_command(args) def register(cli): - version_info = device_info.get_sonic_version_info() - if (version_info and version_info.get('asic_type') == 'cisco-8000'): - cli.commands['platform'].add_command(inventory) - cli.commands['platform'].add_command(idprom) + version_info = device_info.get_sonic_version_info() + if version_info and version_info.get("asic_type") == "cisco-8000": + for c in PLATFORM_CLIS: + cli.commands["platform"].add_command(c) diff --git a/show/plugins/pbh.py b/show/plugins/pbh.py index e50f6507a..407c59616 100644 --- a/show/plugins/pbh.py +++ b/show/plugins/pbh.py @@ -14,14 +14,14 @@ import utilities_common.cli as clicommon from swsscommon.swsscommon import SonicV2Connector -PBH_COUNTERS_LOCATION = '/tmp/.pbh_counters.txt' - COUNTER_PACKETS_ATTR = "SAI_ACL_COUNTER_ATTR_PACKETS" COUNTER_BYTES_ATTR = "SAI_ACL_COUNTER_ATTR_BYTES" COUNTERS = "COUNTERS" ACL_COUNTER_RULE_MAP = "ACL_COUNTER_RULE_MAP" +PBH_COUNTERS_CACHE_FILENAME = "pbh-counters" + pbh_hash_field_tbl_name = 'PBH_HASH_FIELD' pbh_hash_tbl_name = 'PBH_HASH' pbh_table_tbl_name = 'PBH_TABLE' @@ -428,15 +428,18 @@ def deserialize_pbh_counters(): obj: counters dict. """ + cache = clicommon.UserCache('pbh') + counters_cache_file = os.path.join(cache.get_directory(), PBH_COUNTERS_CACHE_FILENAME) + def remap_keys(obj): res = {} for e in obj: res[e['key'][0], e['key'][1]] = e['value'] return res - if os.path.isfile(PBH_COUNTERS_LOCATION): + if os.path.isfile(counters_cache_file): try: - with open(PBH_COUNTERS_LOCATION, 'r') as f: + with open(counters_cache_file, 'r') as f: return remap_keys(json.load(f)) except Exception as err: pass diff --git a/show/plugins/sonic-passwh_yang.py b/show/plugins/sonic-passwh_yang.py new file mode 100644 index 000000000..04f56877a --- /dev/null +++ b/show/plugins/sonic-passwh_yang.py @@ -0,0 +1,126 @@ +""" +Auto-generated show CLI plugin. + + +""" + +import click +import tabulate +import utilities_common.cli as clicommon + + + + + +def format_attr_value(entry, attr): + """ Helper that formats attribute to be presented in the table output. + + Args: + entry (Dict[str, str]): CONFIG DB entry configuration. + attr (Dict): Attribute metadata. + + Returns: + str: fomatted attribute value. + """ + + if attr["is-leaf-list"]: + return "\n".join(entry.get(attr["name"], [])) + return entry.get(attr["name"], "N/A") + + +@click.group(name="passw-hardening", + cls=clicommon.AliasedGroup) +def PASSW_HARDENING(): + """ PASSWORD HARDENING part of config_db.json """ + + pass + + + +@PASSW_HARDENING.command(name="policies") +@clicommon.pass_db +def PASSW_HARDENING_POLICIES(db): + """ """ + + header = [ + +"STATE", +"EXPIRATION", +"EXPIRATION WARNING", +"HISTORY CNT", +"LEN MIN", +"REJECT USER PASSW MATCH", +"LOWER CLASS", +"UPPER CLASS", +"DIGITS CLASS", +"SPECIAL CLASS", + +] + + body = [] + + table = db.cfgdb.get_table("PASSW_HARDENING") + entry = table.get("POLICIES", {}) + row = [ + format_attr_value( + entry, + {'name': 'state', 'description': 'state of the feature', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'expiration', 'description': 'expiration time (days unit)', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'expiration_warning', 'description': 'expiration warning time (days unit)', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'history_cnt', 'description': 'num of old password that the system will recorded', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'len_min', 'description': 'password min length', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'reject_user_passw_match', 'description': 'username password match', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'lower_class', 'description': 'password lower chars policy', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'upper_class', 'description': 'password upper chars policy', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'digits_class', 'description': 'password digits chars policy', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), + format_attr_value( + entry, + {'name': 'special_class', 'description': 'password special chars policy', 'is-leaf-list': False, 'is-mandatory': False, 'group': ''} + ), +] + + body.append(row) + click.echo(tabulate.tabulate(body, header)) + + + + + +def register(cli): + """ Register new CLI nodes in root CLI. + + Args: + cli (click.core.Command): Root CLI node. + Raises: + Exception: when root CLI already has a command + we are trying to register. + """ + cli_node = PASSW_HARDENING + if cli_node.name in cli.commands: + raise Exception(f"{cli_node.name} already exists in CLI") + cli.add_command(PASSW_HARDENING) diff --git a/show/vnet.py b/show/vnet.py index 21d46af7f..239e6d220 100644 --- a/show/vnet.py +++ b/show/vnet.py @@ -3,7 +3,7 @@ from natsort import natsorted from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector from tabulate import tabulate - +import ipaddress # # 'vnet' command ("show vnet") @@ -14,6 +14,56 @@ def vnet(): pass +@vnet.command() +@click.argument('args', metavar='[community:string]', required=False) +def advertised_routes(args): + """Show vnet advertised-routes [community string XXXX:XXXX]""" + state_db = SonicV2Connector() + state_db.connect(state_db.STATE_DB) + appl_db = SonicV2Connector() + appl_db.connect(appl_db.APPL_DB) + community_filter = '' + profile_filter = 'NO_PROFILE' + if args and len(args) > 0: + community_filter = args + + bgp_profile_keys = appl_db.keys(appl_db.APPL_DB, "BGP_PROFILE_TABLE:*") + bgp_profile_keys = natsorted(bgp_profile_keys) if bgp_profile_keys else [] + profiles = {} + for profilekey in bgp_profile_keys: + val = appl_db.get_all(appl_db.APPL_DB, profilekey) + if val: + community_id = val.get('community_id') + profiles[profilekey.split(':')[1]] = community_id + if community_filter and community_filter == community_id: + profile_filter = profilekey.split(':')[1] + break; + + adv_table_keys = state_db.keys(state_db.STATE_DB, "ADVERTISE_NETWORK_TABLE|*") + adv_table_keys = natsorted(adv_table_keys) if adv_table_keys else [] + header = ['Prefix', 'Profile', 'Community Id'] + table = [] + for k in adv_table_keys: + ip = k.split('|')[1] + val = state_db.get_all(appl_db.STATE_DB, k) + profile = val.get('profile') if val else 'NA' + if community_filter: + if profile == profile_filter: + r = [] + r.append(ip) + r.append(profile) + r.append(community_filter) + table.append(r) + else: + r = [] + r.append(ip) + r.append(profile) + if profile in profiles.keys(): + r.append(profiles[profile]) + table.append(r) + click.echo(tabulate(table, header)) + + @vnet.command() @click.argument('vnet_name', required=True) def name(vnet_name): @@ -195,19 +245,125 @@ def neighbors(): if not bool(vnet_intfs): click.echo(tabulate(table, header)) +@vnet.command() +@click.argument('args', metavar='[IPADDRESS]', nargs=1, required=False) +def endpoint(args): + """Show Vxlan tunnel endpoint status""" + """Specify IPv4 or IPv6 address for detail""" + + state_db = SonicV2Connector() + state_db.connect(state_db.STATE_DB) + appl_db = SonicV2Connector() + appl_db.connect(appl_db.APPL_DB) + filter_by_ip = '' + if args and len(args) > 0: + try: + filter_by_ip = ipaddress.ip_network(args) + except ValueError: + # Not ip address just ignore it + print ("wrong parameter",args) + return + # Fetching data from appl_db for VNET TUNNEL ROUTES + vnet_rt_keys = appl_db.keys(appl_db.APPL_DB, "VNET_ROUTE_TUNNEL_TABLE:*") + vnet_rt_keys = natsorted(vnet_rt_keys) if vnet_rt_keys else [] + bfd_keys = state_db.keys(state_db.STATE_DB, "BFD_SESSION_TABLE|*") + if not filter_by_ip: + header = ['Endpoint', 'Endpoint Monitor', 'prefix count', 'status'] + prefix_count = {} + monitor_dict = {} + table = [] + for k in vnet_rt_keys: + val = appl_db.get_all(appl_db.APPL_DB, k) + endpoints = val.get('endpoint').split(',') if 'endpoint' in val else [] + if 'endpoint_monitor' in val: + monitors = val.get('endpoint_monitor').split(',') + else: + continue + for idx, endpoint in enumerate(endpoints): + monitor_dict[endpoint] = monitors[idx] + if endpoint not in prefix_count: + prefix_count[endpoint] = 0 + prefix_count[endpoint] += 1 + for endpoint in prefix_count: + r = [] + r.append(endpoint) + r.append(monitor_dict[endpoint]) + r.append(prefix_count[endpoint]) + bfd_session_key = "BFD_SESSION_TABLE|default|default|" + monitor_dict[endpoint] + if bfd_session_key in bfd_keys: + val_state = state_db.get_all(state_db.STATE_DB, bfd_session_key) + r.append(val_state.get('state')) + else: + r.append('Unknown') + table.append(r) + else: + table = [] + header = ['Endpoint', 'Endpoint Monitor', 'prefix', 'status'] + state = 'Unknown' + prefix = [] + monitor_list = [] + have_status = False + for k in vnet_rt_keys: + val = appl_db.get_all(appl_db.APPL_DB, k) + endpoints = val.get('endpoint').split(',') + monitors = val.get('endpoint_monitor').split(',') + for idx, endpoint in enumerate(endpoints): + if args == endpoint: + prefix.append(k.split(":", 2)[2]) + if not have_status: + bfd_session_key = "BFD_SESSION_TABLE|default|default|" + monitors[idx] + if bfd_session_key in bfd_keys: + val_state = state_db.get_all(state_db.STATE_DB, bfd_session_key) + state = val_state.get('state') + have_status = True + monitor_list.append( monitors[idx]) + break + if prefix: + r = [] + r.append(args) + r.append(monitor_list) + r.append(prefix) + r.append(state) + table.append(r) + click.echo(tabulate(table, header)) + @vnet.group() def routes(): """Show vnet routes related information""" pass +def pretty_print(table, r, epval, mac_addr, vni, state): + endpoints = epval.split(',') + row_width = 3 + max_len = 0 + for ep in endpoints: + max_len = len(ep) if len(ep) > max_len else max_len + if max_len > 15: + row_width = 2 + iter = 0 + while iter < len(endpoints): + if iter +row_width > len(endpoints): + r.append(",".join(endpoints[iter:])) + else: + r.append(",".join(endpoints[iter:iter + row_width])) + if iter == 0: + r.append(mac_addr) + r.append(vni) + r.append(state) + else: + r.extend(["", "", ""]) + iter += row_width + table.append(r) + r = ["",""] @routes.command() def all(): """Show all vnet routes""" appl_db = SonicV2Connector() appl_db.connect(appl_db.APPL_DB) - + state_db = SonicV2Connector() + state_db.connect(state_db.STATE_DB) header = ['vnet name', 'prefix', 'nexthop', 'interface'] # Fetching data from appl_db for VNET ROUTES @@ -227,7 +383,7 @@ def all(): click.echo() - header = ['vnet name', 'prefix', 'endpoint', 'mac address', 'vni'] + header = ['vnet name', 'prefix', 'endpoint', 'mac address', 'vni', 'status'] # Fetching data from appl_db for VNET TUNNEL ROUTES vnet_rt_keys = appl_db.keys(appl_db.APPL_DB, "VNET_ROUTE_TUNNEL_TABLE:*") @@ -237,11 +393,20 @@ def all(): for k in vnet_rt_keys: r = [] r.extend(k.split(":", 2)[1:]) + state_db_key = '|'.join(k.split(":",2)) val = appl_db.get_all(appl_db.APPL_DB, k) - r.append(val.get('endpoint')) - r.append(val.get('mac_address')) - r.append(val.get('vni')) - table.append(r) + val_state = state_db.get_all(state_db.STATE_DB, state_db_key) + epval = val.get('endpoint') + if len(epval) < 40: + r.append(epval) + r.append(val.get('mac_address')) + r.append(val.get('vni')) + if val_state: + r.append(val_state.get('state')) + table.append(r) + continue + state = val_state.get('state') if val_state else "" + pretty_print(table, r, epval, val.get('mac_address'), val.get('vni'), state ) click.echo(tabulate(table, header)) diff --git a/show/vxlan.py b/show/vxlan.py index 0a00a28b0..3d0455290 100644 --- a/show/vxlan.py +++ b/show/vxlan.py @@ -32,10 +32,17 @@ def name(vxlan_name): vxlan_map_keys = config_db.keys(config_db.CONFIG_DB, 'VXLAN_TUNNEL_MAP{}{}{}*'.format(config_db.KEY_SEPARATOR, vxlan_name, config_db.KEY_SEPARATOR)) if vxlan_map_keys: - vxlan_map_mapping = config_db.get_all(config_db.CONFIG_DB, vxlan_map_keys[0]) - r.append(vxlan_map_keys[0].split(config_db.KEY_SEPARATOR, 2)[2]) - r.append("{} -> {}".format(vxlan_map_mapping.get('vni'), vxlan_map_mapping.get('vlan'))) - table.append(r) + for key in natsorted(vxlan_map_keys): + vxlan_map_mapping = config_db.get_all(config_db.CONFIG_DB, key) + r.append(key.split(config_db.KEY_SEPARATOR, 2)[2]) + r.append("{} -> {}".format(vxlan_map_mapping.get('vni'), vxlan_map_mapping.get('vlan'))) + table.append(r) + r = [] + r.append(' ') + r.append(' ') + r.append(' ') + else: + table.append(r) click.echo(tabulate(table, header)) @@ -59,10 +66,17 @@ def tunnel(): vxlan_map_keys = config_db.keys(config_db.CONFIG_DB, 'VXLAN_TUNNEL_MAP{}{}{}*'.format(config_db.KEY_SEPARATOR, k, config_db.KEY_SEPARATOR)) if vxlan_map_keys: - vxlan_map_mapping = config_db.get_all(config_db.CONFIG_DB, vxlan_map_keys[0]) - r.append(vxlan_map_keys[0].split(config_db.KEY_SEPARATOR, 2)[2]) - r.append("{} -> {}".format(vxlan_map_mapping.get('vni'), vxlan_map_mapping.get('vlan'))) - table.append(r) + for key in natsorted(vxlan_map_keys): + vxlan_map_mapping = config_db.get_all(config_db.CONFIG_DB, key) + r.append(key.split(config_db.KEY_SEPARATOR, 2)[2]) + r.append("{} -> {}".format(vxlan_map_mapping.get('vni'), vxlan_map_mapping.get('vlan'))) + table.append(r) + r = [] + r.append(' ') + r.append(' ') + r.append(' ') + else: + table.append(r) click.echo(tabulate(table, header)) @@ -84,14 +98,14 @@ def interface(): vtepname = key1.pop(); if 'src_ip' in vxlan_table[key]: vtep_sip = vxlan_table[key]['src_ip'] - if vtep_sip is not '0.0.0.0': + if vtep_sip != '0.0.0.0': output = '\tVTEP Name : ' + vtepname + ', SIP : ' + vxlan_table[key]['src_ip'] else: output = '\tVTEP Name : ' + vtepname click.echo(output) - if vtep_sip is not '0.0.0.0': + if vtep_sip != '0.0.0.0': vxlan_table = config_db.get_table('VXLAN_EVPN_NVO') vxlan_keys = vxlan_table.keys() if vxlan_keys is not None: @@ -293,8 +307,8 @@ def remotemac(remote_vtep_ip, count): vxlan_table = db.get_all(db.APPL_DB, key); if vxlan_table is None: continue - rmtip = vxlan_table['remote_vtep'] - if remote_vtep_ip != 'all' and rmtip != remote_vtep_ip: + rmtip = vxlan_table.get('remote_vtep') + if remote_vtep_ip != 'all' and rmtip != remote_vtep_ip or rmtip is None: continue if count is None: body.append([vlan, mac, rmtip, vxlan_table['vni'], vxlan_table['type']]) diff --git a/sonic-utilities-data/bash_completion.d/rexec b/sonic-utilities-data/bash_completion.d/rexec new file mode 100644 index 000000000..1199fd067 --- /dev/null +++ b/sonic-utilities-data/bash_completion.d/rexec @@ -0,0 +1,21 @@ +_rexec_completion() { + local IFS=$' +' + COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \ + COMP_CWORD=$COMP_CWORD \ + _REXEC_COMPLETE=complete $1 ) ) + return 0 +} + +_rexec_completionetup() { + local COMPLETION_OPTIONS="" + local BASH_VERSION_ARR=(${BASH_VERSION//./ }) + # Only BASH version 4.4 and later have the nosort option. + if [ ${BASH_VERSION_ARR[0]} -gt 4 ] || ([ ${BASH_VERSION_ARR[0]} -eq 4 ] && [ ${BASH_VERSION_ARR[1]} -ge 4 ]); then + COMPLETION_OPTIONS="-o nosort" + fi + + complete $COMPLETION_OPTIONS -F _rexec_completion rexec +} + +_rexec_completionetup; \ No newline at end of file diff --git a/sonic-utilities-data/bash_completion.d/rshell b/sonic-utilities-data/bash_completion.d/rshell new file mode 100644 index 000000000..012f754dd --- /dev/null +++ b/sonic-utilities-data/bash_completion.d/rshell @@ -0,0 +1,21 @@ +_rshell_completion() { + local IFS=$' +' + COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \ + COMP_CWORD=$COMP_CWORD \ + _RSHELL_COMPLETE=complete $1 ) ) + return 0 +} + +_rshell_completionetup() { + local COMPLETION_OPTIONS="" + local BASH_VERSION_ARR=(${BASH_VERSION//./ }) + # Only BASH version 4.4 and later have the nosort option. + if [ ${BASH_VERSION_ARR[0]} -gt 4 ] || ([ ${BASH_VERSION_ARR[0]} -eq 4 ] && [ ${BASH_VERSION_ARR[1]} -ge 4 ]); then + COMPLETION_OPTIONS="-o nosort" + fi + + complete $COMPLETION_OPTIONS -F _rshell_completion rshell +} + +_rshell_completionetup; \ No newline at end of file diff --git a/sonic-utilities-data/templates/service_mgmt.sh.j2 b/sonic-utilities-data/templates/service_mgmt.sh.j2 index e46ba4738..9237e0487 100644 --- a/sonic-utilities-data/templates/service_mgmt.sh.j2 +++ b/sonic-utilities-data/templates/service_mgmt.sh.j2 @@ -28,7 +28,7 @@ if [[ -f /etc/sonic/${SERVICE}_dependent ]]; then fi if [[ -f /etc/sonic/${SERVICE}_multi_inst_dependent ]]; then - MULTI_INST_DEPENDENT="${MULTI_INST_DEPENDENT} cat /etc/sonic/${SERVICE}_multi_inst_dependent" + MULTI_INST_DEPENDENT="${MULTI_INST_DEPENDENT} $(cat /etc/sonic/${SERVICE}_multi_inst_dependent)" fi function debug() @@ -51,7 +51,8 @@ function check_warm_boot() function check_fast_boot() { - if [[ $($SONIC_DB_CLI STATE_DB GET "FAST_REBOOT|system") == "1" ]]; then + SYSTEM_FAST_REBOOT=`sonic-db-cli STATE_DB hget "FAST_RESTART_ENABLE_TABLE|system" enable` + if [[ x"${SYSTEM_FAST_REBOOT}" == x"true" ]]; then FAST_BOOT="true" else FAST_BOOT="false" diff --git a/sonic-utilities-data/templates/timer.unit.j2 b/sonic-utilities-data/templates/timer.unit.j2 index a757b8deb..09989f2c5 100644 --- a/sonic-utilities-data/templates/timer.unit.j2 +++ b/sonic-utilities-data/templates/timer.unit.j2 @@ -12,4 +12,8 @@ OnBootSec=3min 30 sec Unit={{ manifest.service.name }}{% if multi_instance %}@%i{% endif %}.service [Install] -WantedBy=timers.target sonic.target +WantedBy=timers.target sonic.target sonic-delayed.target +{%- for service in manifest.service["wanted-by"] %} +WantedBy={{ service }}{% if multi_instance and service in multi_instance_services %}@%i{% endif %}.service +{%- endfor %} + diff --git a/sonic_installer/bootloader/aboot.py b/sonic_installer/bootloader/aboot.py index ab4c0ff38..8884ab543 100644 --- a/sonic_installer/bootloader/aboot.py +++ b/sonic_installer/bootloader/aboot.py @@ -146,6 +146,11 @@ def _get_image_cmdline(self, image): with open(os.path.join(image_path, KERNEL_CMDLINE_NAME)) as f: return f.read() + def _set_image_cmdline(self, image, cmdline): + image_path = self.get_image_path(image) + with open(os.path.join(image_path, KERNEL_CMDLINE_NAME), 'w') as f: + return f.write(cmdline) + def supports_package_migration(self, image): if is_secureboot(): # NOTE: unsafe until migration can guarantee migration safety @@ -204,6 +209,17 @@ def verify_next_image(self): image_path = os.path.join(self.get_image_path(image), DEFAULT_SWI_IMAGE) return self._verify_secureboot_image(image_path) + def set_fips(self, image, enable): + fips = "1" if enable else "0" + cmdline = self._get_image_cmdline(image) + cmdline = re.sub(r' sonic_fips=[^\s]', '', cmdline) + " sonic_fips=" + fips + self._set_image_cmdline(image, cmdline) + click.echo('Done') + + def get_fips(self, image): + cmdline = self._get_image_cmdline(image) + return 'sonic_fips=1' in cmdline + def _verify_secureboot_image(self, image_path): if is_secureboot(): cert = self.getCert(image_path) diff --git a/sonic_installer/bootloader/bootloader.py b/sonic_installer/bootloader/bootloader.py index aaeddeba2..d0919cdd5 100644 --- a/sonic_installer/bootloader/bootloader.py +++ b/sonic_installer/bootloader/bootloader.py @@ -57,6 +57,14 @@ def verify_secureboot_image(self, image_path): """verify that the image is secure running image""" raise NotImplementedError + def set_fips(self, image, enable): + """set fips""" + raise NotImplementedError + + def get_fips(self, image): + """returns true if fips set""" + raise NotImplementedError + def verify_next_image(self): """verify the next image for reboot""" image = self.get_next_image() diff --git a/sonic_installer/bootloader/grub.py b/sonic_installer/bootloader/grub.py index 11ee3de1f..9a00800be 100644 --- a/sonic_installer/bootloader/grub.py +++ b/sonic_installer/bootloader/grub.py @@ -85,6 +85,45 @@ def remove_image(self, image): run_command('grub-set-default --boot-directory=' + HOST_PATH + ' 0') click.echo('Image removed') + def get_linux_cmdline(self, image): + cmdline = None + config = open(HOST_PATH + '/grub/grub.cfg', 'r') + old_config = config.read() + menuentry = re.search("menuentry '" + image + "[^}]*}", old_config).group() + config.close() + for line in menuentry.split('\n'): + line = line.strip() + if line.startswith('linux '): + cmdline = line[6:].strip() + break + return cmdline + + def set_linux_cmdline(self, image, cmdline): + config = open(HOST_PATH + '/grub/grub.cfg', 'r') + old_config = config.read() + old_menuentry = re.search("menuentry '" + image + "[^}]*}", old_config).group() + config.close() + new_menuentry = old_menuentry + for line in old_menuentry.split('\n'): + line = line.strip() + if line.startswith('linux '): + new_menuentry = old_menuentry.replace(line, "linux " + cmdline) + break + config = open(HOST_PATH + '/grub/grub.cfg', 'w') + config.write(old_config.replace(old_menuentry, new_menuentry)) + config.close() + + def set_fips(self, image, enable): + fips = "1" if enable else "0" + cmdline = self.get_linux_cmdline(image) + cmdline = re.sub(r' sonic_fips=[^\s]', '', cmdline) + " sonic_fips=" + fips + self.set_linux_cmdline(image, cmdline) + click.echo('Done') + + def get_fips(self, image): + cmdline = self.get_linux_cmdline(image) + return 'sonic_fips=1' in cmdline + def platform_in_platforms_asic(self, platform, image_path): """ For those images that don't have devices list builtin, 'tar' will have non-zero returncode. diff --git a/sonic_installer/bootloader/uboot.py b/sonic_installer/bootloader/uboot.py index bc4b98dae..4286a14bb 100644 --- a/sonic_installer/bootloader/uboot.py +++ b/sonic_installer/bootloader/uboot.py @@ -5,6 +5,7 @@ import platform import subprocess import os +import re import click @@ -39,7 +40,7 @@ def get_next_image(self): proc = subprocess.Popen("/usr/bin/fw_printenv -n boot_next", shell=True, text=True, stdout=subprocess.PIPE) (out, _) = proc.communicate() image = out.rstrip() - if "sonic_image_2" in image: + if "sonic_image_2" in image and len(images) == 2: next_image_index = 1 else: next_image_index = 0 @@ -81,6 +82,22 @@ def remove_image(self, image): def verify_image_platform(self, image_path): return os.path.isfile(image_path) + def set_fips(self, image, enable): + fips = "1" if enable else "0" + proc = subprocess.Popen("/usr/bin/fw_printenv linuxargs", shell=True, text=True, stdout=subprocess.PIPE) + (out, _) = proc.communicate() + cmdline = out.strip() + cmdline = re.sub('^linuxargs=', '', cmdline) + cmdline = re.sub(r' sonic_fips=[^\s]', '', cmdline) + " sonic_fips=" + fips + cmdline = '"' + cmdline + '"' + run_command('/usr/bin/fw_setenv linuxargs ' + cmdline ) + click.echo('Done') + + def get_fips(self, image): + proc = subprocess.Popen("/usr/bin/fw_printenv linuxargs", shell=True, text=True, stdout=subprocess.PIPE) + (out, _) = proc.communicate() + return 'sonic_fips=1' in out + @classmethod def detect(cls): arch = platform.machine() diff --git a/sonic_installer/main.py b/sonic_installer/main.py index 1aaec8054..44a4c08da 100644 --- a/sonic_installer/main.py +++ b/sonic_installer/main.py @@ -306,16 +306,27 @@ def update_sonic_environment(bootloader, binary_image_version): umount(new_image_mount) +def get_docker_opts(): + """ Get options dockerd is started with """ + with open("/var/run/docker.pid") as pid_file: + pid = int(pid_file.read()) + + with open("/proc/{}/cmdline".format(pid)) as cmdline_file: + return cmdline_file.read().strip().split("\x00")[1:] + + def migrate_sonic_packages(bootloader, binary_image_version): """ Migrate SONiC packages to new SONiC image. """ + TMP_DIR = "tmp" SONIC_PACKAGE_MANAGER = "sonic-package-manager" PACKAGE_MANAGER_DIR = "/var/lib/sonic-package-manager/" DOCKER_CTL_SCRIPT = "/usr/lib/docker/docker.sh" DOCKERD_SOCK = "docker.sock" VAR_RUN_PATH = "/var/run/" + RESOLV_CONF_FILE = os.path.join("etc", "resolv.conf") + RESOLV_CONF_BACKUP_FILE = os.path.join("/", TMP_DIR, "resolv.conf.backup") - tmp_dir = "tmp" packages_file = "packages.json" packages_path = os.path.join(PACKAGE_MANAGER_DIR, packages_file) sonic_version = re.sub(IMAGE_PREFIX, '', binary_image_version) @@ -323,8 +334,10 @@ def migrate_sonic_packages(bootloader, binary_image_version): new_image_upper_dir = os.path.join(new_image_dir, UPPERDIR_NAME) new_image_work_dir = os.path.join(new_image_dir, WORKDIR_NAME) new_image_docker_dir = os.path.join(new_image_dir, DOCKERDIR_NAME) - new_image_mount = os.path.join("/", tmp_dir, "image-{0}-fs".format(sonic_version)) + new_image_mount = os.path.join("/", TMP_DIR, "image-{0}-fs".format(sonic_version)) new_image_docker_mount = os.path.join(new_image_mount, "var", "lib", "docker") + docker_default_config = os.path.join(new_image_mount, "etc", "default", "docker") + docker_default_config_backup = os.path.join(new_image_mount, TMP_DIR, "docker_config_backup") if not os.path.isdir(new_image_docker_dir): # NOTE: This codepath can be reached if the installation process did not @@ -349,21 +362,36 @@ def migrate_sonic_packages(bootloader, binary_image_version): if not os.path.exists(os.path.join(new_image_mount, os.path.relpath(DOCKER_CTL_SCRIPT, os.path.abspath(os.sep)))): echo_and_log("Warning: SONiC Application Extension is not supported in this image", LOG_WARN, fg="yellow") return + + # Start dockerd with same docker bridge, iptables configuration as on the host to not override docker configurations on the host. + # Dockerd has an option to start without creating a bridge, using --bridge=none option, however dockerd will remove the host docker0 in that case. + # Also, it is not possible to configure dockerd to start using a different bridge as it will also override the ip of the default docker0. + # Considering that, we start dockerd with same options the host dockerd is started. + run_command_or_raise(["cp", docker_default_config, docker_default_config_backup]) + run_command_or_raise(["sh", "-c", "echo 'DOCKER_OPTS=\"$DOCKER_OPTS {}\"' >> {}".format(" ".join(get_docker_opts()), docker_default_config)]) + run_command_or_raise(["chroot", new_image_mount, DOCKER_CTL_SCRIPT, "start"]) docker_started = True - run_command_or_raise(["cp", packages_path, os.path.join(new_image_mount, tmp_dir, packages_file)]) + run_command_or_raise(["cp", packages_path, os.path.join(new_image_mount, TMP_DIR, packages_file)]) run_command_or_raise(["touch", os.path.join(new_image_mount, "tmp", DOCKERD_SOCK)]) run_command_or_raise(["mount", "--bind", os.path.join(VAR_RUN_PATH, DOCKERD_SOCK), os.path.join(new_image_mount, "tmp", DOCKERD_SOCK)]) + + run_command_or_raise(["cp", os.path.join(new_image_mount, RESOLV_CONF_FILE), RESOLV_CONF_BACKUP_FILE]) + run_command_or_raise(["cp", os.path.join("/", RESOLV_CONF_FILE), os.path.join(new_image_mount, RESOLV_CONF_FILE)]) + run_command_or_raise(["chroot", new_image_mount, "sh", "-c", "command -v {}".format(SONIC_PACKAGE_MANAGER)]) run_command_or_raise(["chroot", new_image_mount, SONIC_PACKAGE_MANAGER, "migrate", - os.path.join("/", tmp_dir, packages_file), - "--dockerd-socket", os.path.join("/", tmp_dir, DOCKERD_SOCK), + os.path.join("/", TMP_DIR, packages_file), + "--dockerd-socket", os.path.join("/", TMP_DIR, DOCKERD_SOCK), "-y"]) finally: if docker_started: run_command_or_raise(["chroot", new_image_mount, DOCKER_CTL_SCRIPT, "stop"], raise_exception=False) + if os.path.exists(docker_default_config_backup): + run_command_or_raise(["mv", docker_default_config_backup, docker_default_config], raise_exception=False); + run_command_or_raise(["cp", RESOLV_CONF_BACKUP_FILE, os.path.join(new_image_mount, RESOLV_CONF_FILE)], raise_exception=False) umount(new_image_mount, recursive=True, read_only=False, remove_dir=False, raise_exception=False) umount(new_image_mount, raise_exception=False) @@ -616,6 +644,38 @@ def set_next_boot(image): sys.exit(1) bootloader.set_next_image(image) +# Set fips for image +@sonic_installer.command('set-fips') +@click.argument('image', required=False) +@click.option('--enable-fips/--disable-fips', is_flag=True, default=True, + help="Enable or disable FIPS, the default value is to enable FIPS") +def set_fips(image, enable_fips): + """ Set fips for the image """ + bootloader = get_bootloader() + if not image: + image = bootloader.get_next_image() + if image not in bootloader.get_installed_images(): + echo_and_log('Error: Image does not exist', LOG_ERR) + sys.exit(1) + bootloader.set_fips(image, enable=enable_fips) + click.echo('Set FIPS for the image successfully') + +# Get fips for image +@sonic_installer.command('get-fips') +@click.argument('image', required=False) +def get_fips(image): + """ Get the fips enabled or disabled status for the image """ + bootloader = get_bootloader() + if not image: + image = bootloader.get_next_image() + if image not in bootloader.get_installed_images(): + echo_and_log('Error: Image does not exist', LOG_ERR) + sys.exit(1) + enable = bootloader.get_fips(image) + if enable: + click.echo("FIPS is enabled") + else: + click.echo("FIPS is disabled") # Uninstall image @sonic_installer.command('remove') diff --git a/sonic_package_manager/manager.py b/sonic_package_manager/manager.py index f29bd4776..bd67c690c 100644 --- a/sonic_package_manager/manager.py +++ b/sonic_package_manager/manager.py @@ -653,6 +653,10 @@ def reset(self, name: str, force: bool = False, skip_host_plugins: bool = False) allow_downgrade=True, skip_host_plugins=skip_host_plugins) + @under_lock + def get_docker_client(self, dockerd_sock:str): + return docker.DockerClient(base_url=f'unix://{dockerd_sock}', timeout=120) + @under_lock def migrate_packages(self, old_package_database: PackageDatabase, @@ -695,7 +699,8 @@ def migrate_package(old_package_entry, # dockerd_sock is defined, so use docked_sock to connect to # dockerd and fetch package image from it. log.info(f'installing {name} from old docker library') - docker_api = DockerApi(docker.DockerClient(base_url=f'unix://{dockerd_sock}')) + docker_client = self.get_docker_client(dockerd_sock) + docker_api = DockerApi(docker_client) image = docker_api.get_image(old_package_entry.image_id) diff --git a/sonic_package_manager/service_creator/feature.py b/sonic_package_manager/service_creator/feature.py index 73e35566d..7928274a6 100644 --- a/sonic_package_manager/service_creator/feature.py +++ b/sonic_package_manager/service_creator/feature.py @@ -19,10 +19,10 @@ AUTO_TS_GLOBAL = "AUTO_TECHSUPPORT" AUTO_TS_FEATURE = "AUTO_TECHSUPPORT_FEATURE" CFG_STATE = "state" -# TODO: Enable available_mem_threshold once the mem_leak_auto_ts feature is available DEFAULT_AUTO_TS_FEATURE_CONFIG = { 'state': 'disabled', - 'rate_limit_interval': '600' + 'rate_limit_interval': '600', + 'available_mem_threshold': '10.0' } def is_enabled(cfg): diff --git a/tests/acl_input/acl1.json b/tests/acl_input/acl1.json index a9e4d3611..9320049d9 100644 --- a/tests/acl_input/acl1.json +++ b/tests/acl_input/acl1.json @@ -235,7 +235,7 @@ } } }, - "2": { + "100": { "config": { "sequence-id": 100 }, @@ -259,6 +259,105 @@ } } } + }, + "bmc_acl_northbound": { + "acl-entries": { + "acl-entry": { + "1": { + "config": { + "sequence-id": 1 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "ip": { + "config": { + "protocol": "0", + "source-ip-address": "172.17.0.200/30" + } + }, + "input_interface": { + "interface_ref": { + "config": { + "interface": "Ethernet0,Ethernet1,Ethernet2,Ethernet3,Ethernet4,Ethernet5,Ethernet6,Ethernet7,Ethernet8,Ethernet9,Ethernet10,Ethernet11,Ethernet12,Ethernet13,Ethernet14,Ethernet15,Ethernet16,Ethernet17,Ethernet18,Ethernet19,Ethernet20,Ethernet21,Ethernet22,Ethernet23,Ethernet25,Ethernet26,Ethernet27,Ethernet28,Ethernet29,Ethernet30,Ethernet31,Ethernet32,Ethernet33,Ethernet34,Ethernet35,Ethernet36,Ethernet37,Ethernet38,Ethernet39,Ethernet40,Ethernet41,Ethernet42,Ethernet43,Ethernet44,Ethernet45" + } + } + } + }, + "2": { + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "config": { + "sequence-id": 2 + }, + "ip": { + "config": { + "protocol": "1" + } + }, + "icmp": { + "config": { + "type": "136", + "code": "0" + } + } + } + } + }, + "config": { + "name": "bmc_acl_northbound" + } + }, + "bmc_acl_northbound_v6": { + "acl-entries": { + "acl-entry": { + "1": { + "config": { + "sequence-id": 1 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "ip": { + "config": { + "protocol": "0", + "destination-ip-address": "fc02::/64" + } + } + }, + "2": { + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "config": { + "sequence-id": 2 + }, + "ip": { + "config": { + "protocol": "58" + } + }, + "icmp": { + "config": { + "type": "136", + "code": "0" + } + } + } + } + }, + "config": { + "name": "bmc_acl_northbound_v6" + } } } } diff --git a/tests/acl_input/incremental_1.json b/tests/acl_input/incremental_1.json new file mode 100644 index 000000000..57ede08bf --- /dev/null +++ b/tests/acl_input/incremental_1.json @@ -0,0 +1,32 @@ +{ + "acl": { + "acl-sets": { + "acl-set": { + "ntp-acl": { + "acl-entries": { + "acl-entry": { + "1": { + "ip": { + "config": { + "source-ip-address": "20.0.0.12/32" + } + }, + "config": { + "sequence-id": 1 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + } + } + } + }, + "config": { + "name": "ntp-acl" + } + } + } + } + } +} \ No newline at end of file diff --git a/tests/acl_input/incremental_2.json b/tests/acl_input/incremental_2.json new file mode 100644 index 000000000..b7de6edba --- /dev/null +++ b/tests/acl_input/incremental_2.json @@ -0,0 +1,32 @@ +{ + "acl": { + "acl-sets": { + "acl-set": { + "ntp-acl": { + "acl-entries": { + "acl-entry": { + "1": { + "ip": { + "config": { + "source-ip-address": "20.0.0.12/32" + } + }, + "config": { + "sequence-id": 1 + }, + "actions": { + "config": { + "forwarding-action": "DROP" + } + } + } + } + }, + "config": { + "name": "ntp-acl" + } + } + } + } + } +} \ No newline at end of file diff --git a/tests/acl_loader_test.py b/tests/acl_loader_test.py index bae24de9a..4469d2ec3 100644 --- a/tests/acl_loader_test.py +++ b/tests/acl_loader_test.py @@ -1,6 +1,8 @@ +import importlib import sys import os import pytest +from unittest import mock test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -20,7 +22,7 @@ def test_acl_empty(self): def test_valid(self): yang_acl = AclLoader.parse_acl_json(os.path.join(test_path, 'acl_input/acl1.json')) - assert len(yang_acl.acl.acl_sets.acl_set) == 6 + assert len(yang_acl.acl.acl_sets.acl_set) == 8 def test_invalid(self): with pytest.raises(AclLoaderException): @@ -112,7 +114,6 @@ def test_icmp_translation(self, acl_loader): def test_icmpv6_translation(self, acl_loader): acl_loader.rules_info = {} acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/acl1.json')) - print(acl_loader.rules_info) assert acl_loader.rules_info[("DATAACL_2", "RULE_1")] == { "ICMPV6_TYPE": 1, "ICMPV6_CODE": 0, @@ -133,20 +134,54 @@ def test_icmpv6_translation(self, acl_loader): "PRIORITY": "9900" } + def test_icmp_translation_in_custom_acl_table_type(self, acl_loader): + acl_loader.rules_info = {} + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/acl1.json')) + assert acl_loader.rules_info[("BMC_ACL_NORTHBOUND", "RULE_2")] + assert acl_loader.rules_info[("BMC_ACL_NORTHBOUND", "RULE_2")] == { + "ICMP_TYPE": 136, + "ICMP_CODE": 0, + "IP_PROTOCOL": 1, + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9998" + } + + def test_icmpv6_translation_in_custom_acl_table_type(self, acl_loader): + acl_loader.rules_info = {} + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/acl1.json')) + assert acl_loader.rules_info[("BMC_ACL_NORTHBOUND_V6", "RULE_2")] + assert acl_loader.rules_info[("BMC_ACL_NORTHBOUND_V6", "RULE_2")] == { + "ICMPV6_TYPE": 136, + "ICMPV6_CODE": 0, + "IP_PROTOCOL": 58, + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9998" + } + def test_ingress_default_deny_rule(self, acl_loader): + acl_loader.set_mirror_stage("ingress") + acl_loader.get_session_name = mock.MagicMock(return_value="everflow_session_mock") acl_loader.rules_info = {} acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/acl1.json')) - print(acl_loader.rules_info) + # Verify L3 can add default deny rule correctly assert acl_loader.rules_info[('DATAACL', 'DEFAULT_RULE')] == { 'PRIORITY': '1', 'PACKET_ACTION': 'DROP', 'ETHER_TYPE': '2048' } + # Verify L3V6 can add default deny rule correctly assert acl_loader.rules_info[('DATAACL_2', 'DEFAULT_RULE')] == { 'PRIORITY': '1', 'PACKET_ACTION': 'DROP', 'IP_TYPE': 'IPV6ANY' } + # Verify acl-loader doesn't add default deny rule to MIRROR + assert ('EVERFLOW', 'DEFAULT_RULE') not in acl_loader.rules_info + # Verify acl-loader doesn't add default deny rule to MIRRORV6 + assert ('EVERFLOWV6', 'DEFAULT_RULE') not in acl_loader.rules_info + # Verify acl-loader doesn't add default deny rule to custom ACL table types + assert ('BMC_ACL_NORTHBOUND', 'DEFAULT_RULE') not in acl_loader.rules_info + assert ('BMC_ACL_NORTHBOUND_V6', 'DEFAULT_RULE') not in acl_loader.rules_info def test_egress_no_default_deny_rule(self, acl_loader): acl_loader.rules_info = {} @@ -196,7 +231,63 @@ def ttest_icmp_fields_with_non_icmpv6_protocol(self, acl_loader): assert not acl_loader.rules_info.get("RULE_1") - def test_icmp_fields_with_non_tcp_protocol(self, acl_loader): + def test_tcp_fields_with_non_tcp_protocol(self, acl_loader): acl_loader.rules_info = {} acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/tcp_bad_protocol_number.json')) assert not acl_loader.rules_info.get("RULE_1") + + def test_incremental_update(self, acl_loader): + acl_loader.rules_info = {} + acl_loader.tables_db_info['NTP_ACL'] = { + "stage": "INGRESS", + "type": "CTRLPLANE" + } + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/incremental_1.json')) + acl_loader.rules_db_info = acl_loader.rules_info + assert acl_loader.rules_info[(('NTP_ACL', 'RULE_1'))]["PACKET_ACTION"] == "ACCEPT" + acl_loader.per_npu_configdb = None + acl_loader.configdb.mod_entry = mock.MagicMock(return_value=True) + acl_loader.configdb.set_entry = mock.MagicMock(return_value=True) + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/incremental_2.json')) + acl_loader.incremental_update() + assert acl_loader.rules_info[(('NTP_ACL', 'RULE_1'))]["PACKET_ACTION"] == "DROP" + + + +class TestMasicAclLoader(object): + + + @pytest.fixture(scope="class") + def acl_loader(self): + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + + with mock.patch("sonic_py_common.multi_asic.get_all_namespaces", + mock.MagicMock(return_value={'front_ns': ['asic0', 'asic1'], 'back_ns': '', 'fabric_ns': ''})): + yield AclLoader() + + # mock single asic to avoid affecting other tests + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + + def test_check_npu_db(self, acl_loader): + assert len(acl_loader.per_npu_configdb) == 2 + assert len(acl_loader.per_npu_statedb) == 2 + + def test_incremental_update(self, acl_loader): + acl_loader.rules_info = {} + acl_loader.tables_db_info['NTP_ACL'] = { + "stage": "INGRESS", + "type": "CTRLPLANE" + } + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/incremental_1.json')) + acl_loader.rules_db_info = acl_loader.rules_info + assert acl_loader.rules_info[(('NTP_ACL', 'RULE_1'))]["PACKET_ACTION"] == "ACCEPT" + for configdb in acl_loader.per_npu_configdb.values(): + configdb.mod_entry = mock.MagicMock(return_value=True) + configdb.set_entry = mock.MagicMock(return_value=True) + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/incremental_2.json')) + acl_loader.incremental_update() + assert acl_loader.rules_info[(('NTP_ACL', 'RULE_1'))]["PACKET_ACTION"] == "DROP" diff --git a/tests/aclshow_test.py b/tests/aclshow_test.py index d0a92174f..8e2d20cbf 100644 --- a/tests/aclshow_test.py +++ b/tests/aclshow_test.py @@ -46,6 +46,7 @@ RULE_9 DATAACL 9991 901 900 RULE_10 DATAACL 9989 1001 1000 DEFAULT_RULE DATAACL 1 2 1 +RULE_1 DATAACL_5 9999 N/A N/A RULE_NO_COUNTER DATAACL_NO_COUNTER 9995 N/A N/A RULE_6 EVERFLOW 9994 601 600 RULE_08 EVERFLOW 9992 0 0 @@ -89,8 +90,8 @@ # Expected output for aclshow -r RULE_4,RULE_6 -vv rule4_rule6_verbose_output = '' + \ """Reading ACL info... -Total number of ACL Tables: 11 -Total number of ACL Rules: 20 +Total number of ACL Tables: 15 +Total number of ACL Rules: 21 RULE NAME TABLE NAME PRIO PACKETS COUNT BYTES COUNT ----------- ------------ ------ --------------- ------------- @@ -136,6 +137,7 @@ RULE_9 DATAACL 9991 0 0 RULE_10 DATAACL 9989 0 0 DEFAULT_RULE DATAACL 1 0 0 +RULE_1 DATAACL_5 9999 N/A N/A RULE_NO_COUNTER DATAACL_NO_COUNTER 9995 N/A N/A RULE_6 EVERFLOW 9994 0 0 RULE_08 EVERFLOW 9992 0 0 @@ -161,6 +163,7 @@ RULE_9 DATAACL 9991 0 0 RULE_10 DATAACL 9989 0 0 DEFAULT_RULE DATAACL 1 0 0 +RULE_1 DATAACL_5 9999 N/A N/A RULE_NO_COUNTER DATAACL_NO_COUNTER 9995 100 100 RULE_6 EVERFLOW 9994 0 0 RULE_08 EVERFLOW 9992 0 0 @@ -192,8 +195,8 @@ def nullify_counters(self): This method is used to empty dumped counters if exist in /tmp/.counters_acl.p (by default). """ - if os.path.isfile(aclshow.COUNTER_POSITION): - with open(aclshow.COUNTER_POSITION, 'w') as fp: + if os.path.isfile(aclshow.COUNTERS_CACHE): + with open(aclshow.COUNTERS_CACHE, 'w') as fp: json.dump([], fp) def runTest(self): diff --git a/tests/bgp_commands_test.py b/tests/bgp_commands_test.py index c86246878..a60ba8c81 100644 --- a/tests/bgp_commands_test.py +++ b/tests/bgp_commands_test.py @@ -1,15 +1,20 @@ import os import pytest +import importlib +import mock from click.testing import CliRunner from utilities_common import multi_asic from utilities_common import constants +from utilities_common import bgp_util +from utilities_common.db import Db from unittest.mock import patch from sonic_py_common import device_info +from sonic_py_common import multi_asic as masic show_bgp_summary_v4 = """\ IPv4 Unicast Summary: @@ -97,6 +102,74 @@ Error: bgp summary from bgp container not in json format """ +show_error_no_v6_neighbor_single_asic = """\ + +IPv6 Unicast Summary: +BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 +""" + +show_error_no_v4_neighbor_single_asic = """\ + +IPv4 Unicast Summary: +BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 +""" + +show_error_no_v6_neighbor_multi_asic = """\ + +IPv6 Unicast Summary: +asic0: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +asic1: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 +""" + +show_error_no_v4_neighbor_multi_asic = """\ + +IPv4 Unicast Summary: +asic0: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +asic1: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 +""" + show_bgp_summary_v4_chassis = """\ IPv4 Unicast Summary: @@ -207,13 +280,73 @@ Total number of neighbors 23 """ +SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS_ON_ALL_ASIC = """ +IPv4 Unicast Summary: +asic0: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +asic1: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 +""" + +SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS_ON_ASIC1 = """ +IPv4 Unicast Summary: +asic0: BGP router identifier 192.0.0.6, local AS number 65100 vrf-id 0 +BGP table version 59923 +asic1: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 3, using 3 bytes of memory +Peers 3, using 3 KiB of memory +Peer groups 3, using 3 bytes of memory + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ----- --------- --------- -------- ----- ------ --------- -------------- -------------- +10.0.0.1 4 65222 4633 11029 0 0 0 00:18:33 8514 ARISTA01T2 -class TestBgpCommands(object): +Total number of neighbors 1 +""" + +SHOW_BGP_SUMMARY_ALL_V4_NO_EXT_NEIGHBORS = """ +IPv4 Unicast Summary: +asic0: BGP router identifier 192.0.0.6, local AS number 65100 vrf-id 0 +BGP table version 59923 +asic1: BGP router identifier 192.0.0.8, local AS number 65100 vrf-id 0 +BGP table version 64918 +RIB entries 202298, using 37222832 bytes of memory +Peers 6, using 4444848 KiB of memory +Peer groups 4, using 256 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ----- --------- --------- -------- ----- ------ --------- -------------- ---------------------- +3.3.3.1 4 65100 277 9 0 0 0 00:00:14 33798 str2-sonic-lc1-1-ASIC0 +3.3.3.1 4 65100 280 14 0 0 0 00:00:22 33798 str2-sonic-lc1-1-ASIC1 +3.3.3.2 4 65100 277 9 0 0 0 00:00:14 33798 str2-sonic-lc2-1-ASIC0 +3.3.3.2 4 65100 280 14 0 0 0 00:00:22 33798 str2-sonic-lc3-1-ASIC0 +3.3.3.6 4 65100 14 14 0 0 0 00:00:23 4 str2-sonic-lc3-1-ASIC1 +3.3.3.8 4 65100 12 10 0 0 0 00:00:15 4 str2-sonic-lc1-1-ASIC1 + +Total number of neighbors 6 +""" + + +class TestBgpCommandsSingleAsic(object): @classmethod def setup_class(cls): print("SETUP") + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) from .mock_tables import dbconnector + dbconnector.load_namespace_config() @pytest.mark.parametrize('setup_single_bgp_instance', ['v4'], indirect=['setup_single_bgp_instance']) @@ -319,3 +452,142 @@ def test_bgp_summary_v4_all_chassis( print("{}".format(result.output)) assert result.exit_code == 0 assert result.output == show_bgp_summary_v4_all_chassis + + @pytest.mark.parametrize('setup_single_bgp_instance', + ['show_bgp_summary_no_neigh'], indirect=['setup_single_bgp_instance']) + def test_bgp_summary_no_v4_neigh( + self, + setup_bgp_commands, + setup_single_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ip"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_error_no_v4_neighbor_single_asic + + @pytest.mark.parametrize('setup_single_bgp_instance', + ['show_bgp_summary_no_neigh'], indirect=['setup_single_bgp_instance']) + def test_bgp_summary_no_v6_neigh( + self, + setup_bgp_commands, + setup_single_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ipv6"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_error_no_v6_neighbor_single_asic + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ['UTILITIES_UNIT_TESTING'] = "0" + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_database_config() + + + +class TestBgpCommandsMultiAsic(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + + + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['show_bgp_summary_no_neigh'], indirect=['setup_multi_asic_bgp_instance']) + def test_bgp_summary_multi_asic_no_v4_neigh( + self, + setup_bgp_commands, + setup_multi_asic_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ip"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_error_no_v4_neighbor_multi_asic + + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['show_bgp_summary_no_neigh'], indirect=['setup_multi_asic_bgp_instance']) + def test_bgp_summary_multi_asic_no_v6_neigh( + self, + setup_bgp_commands, + setup_multi_asic_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ipv6"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_error_no_v6_neighbor_multi_asic + + @patch.object(bgp_util, 'get_external_bgp_neighbors_dict', mock.MagicMock(return_value={})) + @patch.object(multi_asic.MultiAsic, 'get_ns_list_based_on_options', mock.Mock(return_value=['asic0', 'asic1'])) + @patch.object(multi_asic.MultiAsic, 'get_display_option', mock.MagicMock(return_value=constants.DISPLAY_EXTERNAL)) + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['show_bgp_summary_no_ext_neigh_on_all_asic'], + indirect=['setup_multi_asic_bgp_instance']) + @patch.object(device_info, 'is_chassis', mock.MagicMock(return_value=True)) + def test_bgp_summary_multi_asic_no_external_neighbors_on_all_asic( + self, + setup_bgp_commands, + setup_multi_asic_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ip"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS_ON_ALL_ASIC + + + @patch.object(multi_asic.MultiAsic, 'get_ns_list_based_on_options', mock.Mock(return_value=['asic0', 'asic1'])) + @patch.object(multi_asic.MultiAsic, 'get_display_option', mock.MagicMock(return_value=constants.DISPLAY_EXTERNAL)) + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['show_bgp_summary_no_ext_neigh_on_asic1'], + indirect=['setup_multi_asic_bgp_instance']) + @patch.object(device_info, 'is_chassis', mock.MagicMock(return_value=True)) + def test_bgp_summary_multi_asic_no_external_neighbor_on_asic1( + self, + setup_bgp_commands, + setup_multi_asic_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ip"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS_ON_ASIC1 + + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['show_bgp_summary_no_ext_neigh_on_all_asic'], indirect=['setup_multi_asic_bgp_instance']) + def test_bgp_summary_multi_asic_display_with_no_external_neighbor( + self, + setup_bgp_commands, + setup_multi_asic_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ip"].commands["bgp"].commands["summary"], ["-dall"]) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == SHOW_BGP_SUMMARY_ALL_V4_NO_EXT_NEIGHBORS + + def teardown_class(cls): + print("TEARDOWN") + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_database_config diff --git a/tests/buffer_input/buffer_test_vectors.py b/tests/buffer_input/buffer_test_vectors.py index b94d428a3..baa99608a 100644 --- a/tests/buffer_input/buffer_test_vectors.py +++ b/tests/buffer_input/buffer_test_vectors.py @@ -30,6 +30,13 @@ type ingress ---- ------- +Pool: ingress_lossless_pool_hbm +---- --------- +mode static +size 139458240 +type ingress +---- --------- + Profile: ingress_lossy_profile ---------- ------------------ dynamic_th 3 @@ -37,6 +44,13 @@ size 0 ---------- ------------------ +Profile: ingress_lossless_profile_hbm +--------- ------------------------- +static_th 12121212 +pool ingress_lossless_pool_hbm +size 0 +--------- ------------------------- + Profile: headroom_profile ---------- --------------------- dynamic_th 0 diff --git a/tests/chassis_modules_test.py b/tests/chassis_modules_test.py old mode 100644 new mode 100755 index e6dbe569d..64d36defe --- a/tests/chassis_modules_test.py +++ b/tests/chassis_modules_test.py @@ -11,33 +11,44 @@ import tests.mock_tables.dbconnector from utilities_common.db import Db from .utils import get_result_and_return_code +from unittest import mock +sys.modules['clicommon'] = mock.Mock() show_linecard0_shutdown_output="""\ -LINE-CARD0 line-card 1 Empty down +LINE-CARD0 line-card 1 Empty down LC1000101 """ show_linecard0_startup_output="""\ -LINE-CARD0 line-card 1 Empty up +LINE-CARD0 line-card 1 Empty up LC1000101 """ + +show_fabriccard0_shutdown_output = """\ +FABRIC-CARD0 fabric-card 17 Online down FC1000101 +""" + +show_fabriccard0_startup_output = """\ +FABRIC-CARD0 fabric-card 17 Online up FC1000101 +""" + header_lines = 2 warning_lines = 0 show_chassis_modules_output="""\ - Name Description Physical-Slot Oper-Status Admin-Status ------------- --------------- --------------- ------------- -------------- -FABRIC-CARD0 fabric-card 17 Online up -FABRIC-CARD1 fabric-card 18 Offline up - LINE-CARD0 line-card 1 Empty up - LINE-CARD1 line-card 2 Online down - SUPERVISOR0 supervisor-card 16 Online up + Name Description Physical-Slot Oper-Status Admin-Status Serial +------------ --------------- --------------- ------------- -------------- --------- +FABRIC-CARD0 fabric-card 17 Online up FC1000101 +FABRIC-CARD1 fabric-card 18 Offline up FC1000102 + LINE-CARD0 line-card 1 Empty up LC1000101 + LINE-CARD1 line-card 2 Online down LC1000102 + SUPERVISOR0 supervisor-card 16 Online up RP1000101 """ show_chassis_midplane_output="""\ - Name IP-Address Reachability ------------ ------------- -------------- - LINE-CARD0 192.168.1.1 True - LINE-CARD1 192.168.1.2 False -SUPERVISOR0 192.168.1.100 True + Name IP-Address Reachability +---------- ------------- -------------- +LINE-CARD0 192.168.1.100 True +LINE-CARD1 192.168.1.2 False +LINE-CARD2 192.168.1.1 True """ show_chassis_system_ports_output_asic0="""\ @@ -117,6 +128,11 @@ Linecard4|Asic2|PortChannel0001 2 22 Linecard4|Asic2|Ethernet29, Linecard4|Asic2|Ethernet30 """ + +def mock_run_command_side_effect(*args, **kwargs): + return '', 0 + + class TestChassisModules(object): @classmethod def setup_class(cls): @@ -190,6 +206,47 @@ def test_config_shutdown_module(self): #db.cfgdb.set_entry("CHASSIS_MODULE", "LINE-CARD0", { "admin_status" : "down" }) #db.get_data("CHASSIS_MODULE", "LINE-CARD0") + def test_config_shutdown_module_fabric(self): + with mock.patch("utilities_common.cli.run_command", + mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + runner = CliRunner() + db = Db() + + chassisdb = db.db + chassisdb.connect("CHASSIS_STATE_DB") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic6", "asic_id_in_module", "0") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic6", "asic_pci_address", "nokia-bdb:4:0") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic6", "name", "FABRIC-CARD0") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic7", "asic_id_in_module", "1") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic7", "asic_pci_address", "nokia-bdb:4:1") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic7", "name", "FABRIC-CARD0") + chassisdb.close("CHASSIS_STATE_DB") + + result = runner.invoke(config.config.commands["chassis"].commands["modules"].commands["shutdown"], + ["FABRIC-CARD0"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + result = runner.invoke(show.cli.commands["chassis"].commands["modules"].commands["status"], + ["FABRIC-CARD0"], obj=db) + print(result.exit_code) + print(result.output) + result_lines = result.output.strip('\n').split('\n') + assert result.exit_code == 0 + header_lines = 2 + result_out = " ".join((result_lines[header_lines]).split()) + assert result_out.strip('\n') == show_fabriccard0_shutdown_output.strip('\n') + + fvs = {'admin_status': 'down'} + db.cfgdb.set_entry('CHASSIS_MODULE', "FABRIC-CARD0", fvs) + result = runner.invoke(config.config.commands["chassis"].commands["modules"].commands["shutdown"], + ["FABRIC-CARD0"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert mock_run_command.call_count == 6 + def test_config_startup_module(self): runner = CliRunner() db = Db() @@ -206,6 +263,62 @@ def test_config_startup_module(self): result_out = " ".join((result_lines[header_lines]).split()) assert result_out.strip('\n') == show_linecard0_startup_output.strip('\n') + def test_config_startup_module_fabric(self): + with mock.patch("utilities_common.cli.run_command", + mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + runner = CliRunner() + db = Db() + + chassisdb = db.db + chassisdb.connect("CHASSIS_STATE_DB") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic6", "asic_id_in_module", "0") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic6", "asic_pci_address", "nokia-bdb:4:0") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic6", "name", "FABRIC-CARD0") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic7", "asic_id_in_module", "1") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic7", "asic_pci_address", "nokia-bdb:4:1") + chassisdb.set("CHASSIS_STATE_DB", "CHASSIS_FABRIC_ASIC_TABLE|asic7", "name", "FABRIC-CARD0") + chassisdb.close("CHASSIS_STATE_DB") + + # FC is down and doing startup + fvs = {'admin_status': 'down'} + db.cfgdb.set_entry('CHASSIS_MODULE', "FABRIC-CARD0", fvs) + + result = runner.invoke(config.config.commands["chassis"].commands["modules"].commands["startup"], + ["FABRIC-CARD0"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + result = runner.invoke(show.cli.commands["chassis"].commands["modules"].commands["status"], + ["FABRIC-CARD0"], obj=db) + print(result.exit_code) + print(result.output) + result_lines = result.output.strip('\n').split('\n') + assert result.exit_code == 0 + result_out = " ".join((result_lines[header_lines]).split()) + assert result_out.strip('\n') == show_fabriccard0_startup_output.strip('\n') + assert mock_run_command.call_count == 2 + + # FC is up and doing startup + fvs = {'admin_status': 'up'} + db.cfgdb.set_entry('CHASSIS_MODULE', "FABRIC-CARD0", fvs) + + result = runner.invoke(config.config.commands["chassis"].commands["modules"].commands["startup"], + ["FABRIC-CARD0"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + result = runner.invoke(show.cli.commands["chassis"].commands["modules"].commands["status"], + ["FABRIC-CARD0"], obj=db) + print(result.exit_code) + print(result.output) + result_lines = result.output.strip('\n').split('\n') + assert result.exit_code == 0 + result_out = " ".join((result_lines[header_lines]).split()) + assert result_out.strip('\n') == show_fabriccard0_startup_output.strip('\n') + assert mock_run_command.call_count == 2 + def test_config_incorrect_module(self): runner = CliRunner() db = Db() @@ -225,7 +338,7 @@ def test_midplane_show_all_count_lines(self): result = runner.invoke(show.cli.commands["chassis"].commands["modules"].commands["midplane-status"], []) print(result.output) result_lines = result.output.strip('\n').split('\n') - modules = ["LINE-CARD0", "LINE-CARD1", "SUPERVISOR0"] + modules = ["LINE-CARD0", "LINE-CARD1", "LINE-CARD2"] for i, module in enumerate(modules): assert module in result_lines[i + warning_lines + header_lines] assert len(result_lines) == warning_lines + header_lines + len(modules) diff --git a/tests/config_an_test.py b/tests/config_an_test.py index f16099e40..0af19898c 100644 --- a/tests/config_an_test.py +++ b/tests/config_an_test.py @@ -33,6 +33,9 @@ def test_config_autoneg(self, ctx): self.basic_check("autoneg", ["Ethernet0", "disabled"], ctx) self.basic_check("autoneg", ["Invalid", "enabled"], ctx, operator.ne) self.basic_check("autoneg", ["Ethernet0", "invalid"], ctx, operator.ne) + # Setting auto negotiation on a port channel is not supported + result = self.basic_check("autoneg", ["PortChannel0001", "enabled"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output def test_config_speed(self, ctx): self.basic_check("speed", ["Ethernet0", "40000"], ctx) @@ -42,6 +45,9 @@ def test_config_speed(self, ctx): assert 'Invalid speed' in result.output assert 'Valid speeds:' in result.output self.basic_check("speed", ["Ethernet0", "invalid"], ctx, operator.ne) + # Setting speed on a port channel is not supported + result = self.basic_check("speed", ["PortChannel0001", "100000"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output def test_config_adv_speeds(self, ctx): self.basic_check("advertised-speeds", ["Ethernet0", "40000,100000"], ctx) @@ -53,6 +59,9 @@ def test_config_adv_speeds(self, ctx): result = self.basic_check("advertised-speeds", ["Ethernet0", "50000,50000"], ctx, operator.ne) assert 'Invalid speed' in result.output assert 'duplicate' in result.output + # Setting advertised speeds on a port channel is not supported + result = self.basic_check("advertised-speeds", ["PortChannel0001", "40000,100000"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output def test_config_type(self, ctx): self.basic_check("type", ["Ethernet0", "CR4"], ctx) @@ -64,6 +73,9 @@ def test_config_type(self, ctx): assert 'Valid interface types:' in result.output result = self.basic_check("type", ["Ethernet16", "Invalid"], ctx, operator.ne) assert "Setting RJ45 ports' type is not supported" in result.output + # Setting type on a port channel is not supported + result = self.basic_check("type", ["PortChannel0001", "CR4"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output def test_config_adv_types(self, ctx): self.basic_check("advertised-types", ["Ethernet0", "CR4,KR4"], ctx) @@ -78,6 +90,33 @@ def test_config_adv_types(self, ctx): self.basic_check("advertised-types", ["Ethernet0", ""], ctx, operator.ne) result = self.basic_check("advertised-types", ["Ethernet16", "Invalid"], ctx, operator.ne) assert "Setting RJ45 ports' advertised types is not supported" in result.output + # Setting advertised types on a port channel is not supported + result = self.basic_check("advertised-types", ["PortChannel0001", "CR4,KR4"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output + + def test_config_mtu(self, ctx): + self.basic_check("mtu", ["Ethernet0", "1514"], ctx) + result = self.basic_check("mtu", ["PortChannel0001", "1514"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output + + def test_config_fec(self, ctx): + # Set a fec mode which is in supported_fec list but not default + # on an interface with supported_fec + self.basic_check("fec", ["Ethernet0", "test"], ctx) + # Set a fec mode which is one of default values on an interface without supported_fecs + self.basic_check("fec", ["Ethernet4", "rs"], ctx) + # Negative case: Set a fec mode which is default but not in port's supported_fecs + result = self.basic_check("fec", ["Ethernet0", "fc"], ctx, operator.ne) + assert "fec fc is not in ['rs', 'none', 'test']" in result.output + # Negative case: set a fec mode which is not default on an interface without supported_fecs + result = self.basic_check("fec", ["Ethernet4", "test"], ctx, operator.ne) + assert "fec test is not in ['rs', 'fc', 'none']" in result.output + # Negative case: set a fec mode on a port where setting fec is not supported + result = self.basic_check("fec", ["Ethernet112", "test"], ctx, operator.ne) + assert "Setting fec is not supported" in result.output + # Negative case: set a fec mode on a port channel is not supported + result = self.basic_check("fec", ["PortChannel0001", "none"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output def basic_check(self, command_name, para_list, ctx, op=operator.eq, expect_result=0): runner = CliRunner() diff --git a/tests/config_fabric_test.py b/tests/config_fabric_test.py new file mode 100644 index 000000000..1f56ea416 --- /dev/null +++ b/tests/config_fabric_test.py @@ -0,0 +1,95 @@ +import click +import config.main as config +import operator +import os +import pytest +import sys + +from click.testing import CliRunner +from utilities_common.db import Db + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, modules_path) + +@pytest.fixture(scope='module') +def ctx(scope='module'): + db = Db() + obj = {'config_db':db.cfgdb, 'namespace': ''} + yield obj + +class TestConfigFabric(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def basic_check(self, command_name, para_list, ctx): + # This function issues command of "config fabric xxxx", + # and returns the result of the command. + runner = CliRunner() + result = runner.invoke(config.config.commands["fabric"].commands[command_name], para_list, obj = ctx) + print(result.output) + return result + + def test_config_isolation(self, ctx): + # Issue command "config fabric port isolate 0", + # check if the result is expected. + result = self.basic_check("port", ["isolate", "0"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) + + # Issue command "config fabric port isolate 1", + # check if the result has the error message as port 1 is not in use. + result = self.basic_check("port", ["isolate", "1"], ctx) + assert "Port 1 is not in use" in result.output + + # Issue command "config fabric port unisolate 0", + # check if the result is expected. + result = self.basic_check("port", ["unisolate", "0"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) + + # Issue command "config fabric port unisolate 1", + # check if the result has the error message as port 1 is not in use. + result = self.basic_check("port", ["unisolate", "1"], ctx) + assert "Port 1 is not in use" in result.output + + def test_config_fabric_monitor_threshold(self, ctx): + # Issue command "config fabric port monitor error threshold <#> <#>" + # with an out of range number, check if the result has the error message. + result = self.basic_check("port", ["monitor", "error", "threshold", "1", "2000"], ctx) + assert "rxCells must be in range 10000...100000000" in result.output + + result = self.basic_check("port", ["monitor", "error", "threshold", "10000", "20000"], ctx) + assert "crcCells must be in range 1...1000" in result.output + + # Issue command "config fabric port monitor error threshold <#> <#>" + # with a number in the range, check if the result is expected. + result = self.basic_check("port", ["monitor", "error", "threshold", "1", "20000"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) + + # Issue command "config fabric port monitor poll threshold isolation <#>" + # with an out of range number, check if the result has the error message. + result = self.basic_check("port", ["monitor", "poll", "threshold", "isolation", "15"], ctx) + assert "pollCount must be in range 1...10" in result.output + + # Issue command "config fabric port monitor poll threshold isolation <#>" + # with a number in the range, check if the result is expected. + result = self.basic_check("port", ["monitor", "poll", "threshold", "isolation", "3"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) + + # Issue command "config fabric port monitor poll threshold recovery <#>" + # with an out of range number, check if the result has the error message. + result = self.basic_check("port", ["monitor", "poll", "threshold", "recovery", "15"], ctx) + assert "pollCount must be in range 1...10" in result.output + + # Issue command "config fabric port monitor poll threshold recovery <#>" + # with a number in the range, check if the result is expected. + result = self.basic_check("port", ["monitor", "poll", "threshold", "recovery", "8"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) diff --git a/tests/config_int_ip_test.py b/tests/config_int_ip_test.py index 6968fcbe4..d1addd0f6 100644 --- a/tests/config_int_ip_test.py +++ b/tests/config_int_ip_test.py @@ -105,6 +105,36 @@ def test_config_int_ip_rem_static( assert result.exit_code == 0 assert mock_run_command.call_count == 1 + @pytest.mark.parametrize('setup_single_bgp_instance', + ['ip_route_for_int_ip'], indirect=['setup_single_bgp_instance']) + def test_config_int_ip_rem_sub_intf( + self, + get_cmd_module, + setup_single_bgp_instance): + (config, _) = get_cmd_module + jsonfile_config = os.path.join(mock_db_path, "config_db") + from .mock_tables import dbconnector + dbconnector.dedicated_dbs['CONFIG_DB'] = jsonfile_config + + runner = CliRunner() + db = Db() + obj = {'config_db': db.cfgdb} + + # remove vlan IP`s + with mock.patch('utilities_common.cli.run_command') as mock_run_command: + print(db.cfgdb.get_table('INTERFACE')) + assert ('Ethernet16.16', '16.1.1.1/16') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert 'Ethernet16.16' in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], + ["Ethernet16.16", "16.1.1.1/16"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert mock_run_command.call_count == 1 + # removing IP should only remove the INTERFACE,IP key. The regular INTERFACE key should still exists for sub interface + assert ('Ethernet16.16', '16.1.1.1/16') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert 'Ethernet16.16' in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + class TestIntIpMultiasic(object): @pytest.fixture(scope="class", autouse=True) def setup_class(cls): diff --git a/tests/config_int_mtu_test.py b/tests/config_int_mtu_test.py new file mode 100644 index 000000000..c2037bcbe --- /dev/null +++ b/tests/config_int_mtu_test.py @@ -0,0 +1,26 @@ +import pytest +import config.main as config +from click.testing import CliRunner +from utilities_common.db import Db + +class TestConfigInterfaceMtu(object): + def test_interface_mtu_check(self): + runner = CliRunner() + db = Db() + result = runner.invoke(config.config.commands["interface"].commands["mtu"], + ["Ethernet0", "68"], obj=db) + assert result.exit_code != 0 + + result1 = runner.invoke(config.config.commands["interface"].commands["mtu"], + ["Ethernet0", "9216"], obj=db) + assert result1.exit_code != 0 + + def test_interface_invalid_mtu_check(self): + runner = CliRunner() + db = Db() + result = runner.invoke(config.config.commands["interface"].commands["mtu"], + ["Ethernet0", "67"], obj=db) + assert "Error: Invalid value" in result.output + result1 = runner.invoke(config.config.commands["interface"].commands["mtu"], + ["Ethernet0", "9217"], obj=db) + assert "Error: Invalid value" in result1.output diff --git a/tests/config_lt_test.py b/tests/config_lt_test.py new file mode 100644 index 000000000..8e8c1d6fb --- /dev/null +++ b/tests/config_lt_test.py @@ -0,0 +1,46 @@ +import click +import config.main as config +import operator +import os +import pytest +import sys + +from click.testing import CliRunner +from utilities_common.db import Db + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, modules_path) + + +@pytest.fixture(scope='module') +def ctx(scope='module'): + db = Db() + obj = {'config_db':db.cfgdb, 'namespace': ''} + yield obj + + +class TestConfigInterface(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_config_link_training(self, ctx): + self.basic_check("link-training", ["Ethernet0", "on"], ctx) + self.basic_check("link-training", ["Ethernet0", "off"], ctx) + self.basic_check("link-training", ["Invalid", "on"], ctx, operator.ne) + self.basic_check("link-training", ["Invalid", "off"], ctx, operator.ne) + self.basic_check("link-training", ["Ethernet0", "invalid"], ctx, operator.ne) + # Setting link training on a port channel is not supported + result = self.basic_check("link-training", ["PortChannel0001", "on"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output + + def basic_check(self, command_name, para_list, ctx, op=operator.eq, expect_result=0): + runner = CliRunner() + result = runner.invoke(config.config.commands["interface"].commands[command_name], para_list, obj = ctx) + print(result.output) + assert op(result.exit_code, expect_result) + return result diff --git a/tests/config_mirror_session_test.py b/tests/config_mirror_session_test.py index 986df2e71..de5e755a3 100644 --- a/tests/config_mirror_session_test.py +++ b/tests/config_mirror_session_test.py @@ -80,6 +80,18 @@ def test_mirror_session_add(): mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 0x1234, 100, None) + result = runner.invoke( + config.config.commands["mirror_session"].commands["add"], + ["test_session", "100.1.1.1", "2.2.2.2", "8", "63", "0", "0"]) + + mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 0, 0, None) + + result = runner.invoke( + config.config.commands["mirror_session"].commands["add"], + ["test_session", "100.1.1.1", "2.2.2.2", "8", "63"]) + + mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, None, None, None) + def test_mirror_session_erspan_add(): runner = CliRunner() @@ -125,7 +137,7 @@ def test_mirror_session_erspan_add(): ["test_session", "1.1.1.1", "2.2.2.2", "6", "63", "65536", "100"]) assert result.exit_code != 0 assert ERR_MSG_GRE_TYPE_FAILURE in result.stdout - + result = runner.invoke( config.config.commands["mirror_session"].commands["erspan"].commands["add"], ["test_session", "1.1.1.1", "2.2.2.2", "6", "63", "abcd", "100"]) @@ -153,6 +165,12 @@ def test_mirror_session_erspan_add(): mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 0x1234, 100, None, None, None) + result = runner.invoke( + config.config.commands["mirror_session"].commands["erspan"].commands["add"], + ["test_session", "100.1.1.1", "2.2.2.2", "8", "63", "0", "0"]) + + mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 0, 0, None, None, None) + def test_mirror_session_span_add(): runner = CliRunner() @@ -246,9 +264,12 @@ def test_mirror_session_span_add(): result = runner.invoke( config.config.commands["mirror_session"].commands["span"].commands["add"], ["test_session", "Ethernet8", "Ethernet4", "tx", "100"]) + + mocked.assert_called_with("test_session", "Ethernet8", "Ethernet4", "tx", 100, None) + result = runner.invoke( config.config.commands["mirror_session"].commands["span"].commands["add"], - ["test_session", "Ethernet0", "Ethernet4", "rx", "100"]) + ["test_session", "Ethernet0", "Ethernet4", "rx", "0"]) - mocked.assert_called_with("test_session", "Ethernet0", "Ethernet4", "rx", 100, None) + mocked.assert_called_with("test_session", "Ethernet0", "Ethernet4", "rx", 0, None) diff --git a/tests/config_override_input/empty_table_removal.json b/tests/config_override_input/empty_table_removal.json new file mode 100644 index 000000000..2230911ae --- /dev/null +++ b/tests/config_override_input/empty_table_removal.json @@ -0,0 +1,96 @@ +{ + "running_config": { + "ACL_TABLE": { + "DATAACL": { + "policy_desc": "DATAACL", + "ports": [ + "Ethernet4" + ], + "stage": "ingress", + "type": "L3" + }, + "NTP_ACL": { + "policy_desc": "NTP_ACL", + "services": [ + "NTP" + ], + "stage": "ingress", + "type": "CTRLPLANE" + } + }, + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "rate_limit_interval": "600", + "state": "enabled" + }, + "database": { + "rate_limit_interval": "600", + "state": "enabled" + } + }, + "PORT": { + "Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + }, + "Ethernet8": { + "admin_status": "up", + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + }, + "golden_config": { + "ACL_TABLE": { + } + }, + "expected_config": { + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "rate_limit_interval": "600", + "state": "enabled" + }, + "database": { + "rate_limit_interval": "600", + "state": "enabled" + } + }, + "PORT": { + "Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + }, + "Ethernet8": { + "admin_status": "up", + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + } +} diff --git a/tests/config_override_input/final_config_yang_failure.json b/tests/config_override_input/final_config_yang_failure.json new file mode 100644 index 000000000..51e5e4009 --- /dev/null +++ b/tests/config_override_input/final_config_yang_failure.json @@ -0,0 +1,71 @@ +{ + "running_config": { + "ACL_TABLE": { + "DATAACL": { + "policy_desc": "DATAACL", + "ports": [ + "Ethernet4" + ], + "stage": "ingress", + "type": "L3" + }, + "NTP_ACL": { + "policy_desc": "NTP_ACL", + "services": [ + "NTP" + ], + "stage": "ingress", + "type": "CTRLPLANE" + } + }, + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "rate_limit_interval": "600", + "state": "enabled" + }, + "database": { + "rate_limit_interval": "600", + "state": "enabled" + } + }, + "PORT": { + "Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + }, + "Ethernet8": { + "admin_status": "up", + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + }, + "golden_config": { + "PORT": { + "Ethernet12": { + "admin_status": "up", + "alias": "fortyGigE0/12", + "description": "Servers2:eth0", + "index": "3", + "lanes": "37,38,39,40", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + } +} diff --git a/tests/config_override_input/golden_input_yang_failure.json b/tests/config_override_input/golden_input_yang_failure.json new file mode 100644 index 000000000..4b533e159 --- /dev/null +++ b/tests/config_override_input/golden_input_yang_failure.json @@ -0,0 +1,89 @@ +{ + "running_config": { + "ACL_TABLE": { + "DATAACL": { + "policy_desc": "DATAACL", + "ports": [ + "Ethernet4" + ], + "stage": "ingress", + "type": "L3" + }, + "NTP_ACL": { + "policy_desc": "NTP_ACL", + "services": [ + "NTP" + ], + "stage": "ingress", + "type": "CTRLPLANE" + } + }, + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "rate_limit_interval": "600", + "state": "enabled" + }, + "database": { + "rate_limit_interval": "600", + "state": "enabled" + } + }, + "PORT": { + "Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + }, + "Ethernet8": { + "admin_status": "up", + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + }, + "golden_config": { + "ACL_TABLE": { + "EVERFLOWV6": { + "policy_desc": "EVERFLOWV6", + "ports": [ + "Ethernet0" + ], + "stage": "ingress", + "type": "MIRRORV6" + } + }, + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "state": "disabled" + }, + "database": { + "state": "disabled" + } + }, + "PORT": { + "Ethernet12": { + "admin_status": "up", + "alias": "fortyGigE0/12", + "description": "Servers2:eth0", + "index": "3", + "lanes": "37,38,39,40", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + } +} diff --git a/tests/config_override_input/multi_asic_dm_gen_sysinfo.json b/tests/config_override_input/multi_asic_dm_gen_sysinfo.json new file mode 100644 index 000000000..2cb92bbe8 --- /dev/null +++ b/tests/config_override_input/multi_asic_dm_gen_sysinfo.json @@ -0,0 +1,55 @@ +{ + "localhost": { + "DEVICE_METADATA": { + "localhost": { + "default_bgp_status": "down", + "default_pfcwd_status": "enable", + "deployment_id": "1", + "docker_routing_config_mode": "separated", + "hostname": "sonic-switch", + "hwsku": "Mellanox-SN3800-D112C8", + "peer_switch": "sonic-switch", + "type": "ToRRouter", + "suppress-fib-pending": "enabled" + } + } + }, + "asic0": { + "DEVICE_METADATA": { + "localhost": { + "asic_id": "01.00.0", + "asic_name": "asic0", + "bgp_asn": "65100", + "cloudtype": "None", + "default_bgp_status": "down", + "default_pfcwd_status": "enable", + "deployment_id": "None", + "docker_routing_config_mode": "separated", + "hostname": "sonic", + "hwsku": "multi_asic", + "region": "None", + "sub_role": "FrontEnd", + "type": "LeafRouter" + } + } + }, + "asic1": { + "DEVICE_METADATA": { + "localhost": { + "asic_id": "08:00.0", + "asic_name": "asic1", + "bgp_asn": "65100", + "cloudtype": "None", + "default_bgp_status": "down", + "default_pfcwd_status": "enable", + "deployment_id": "None", + "docker_routing_config_mode": "separated", + "hostname": "sonic", + "hwsku": "multi_asic", + "region": "None", + "sub_role": "BackEnd", + "type": "LeafRouter" + } + } + } +} diff --git a/tests/config_override_input/multi_asic_dm_rm.json b/tests/config_override_input/multi_asic_dm_rm.json new file mode 100644 index 000000000..a4c0dd5fa --- /dev/null +++ b/tests/config_override_input/multi_asic_dm_rm.json @@ -0,0 +1,11 @@ +{ + "localhost": { + "DEVICE_METADATA": {} + }, + "asic0": { + "DEVICE_METADATA": {} + }, + "asic1": { + "DEVICE_METADATA": {} + } +} diff --git a/tests/config_override_input/multi_asic_macsec_ov.json b/tests/config_override_input/multi_asic_macsec_ov.json new file mode 100644 index 000000000..ba86f6ef6 --- /dev/null +++ b/tests/config_override_input/multi_asic_macsec_ov.json @@ -0,0 +1,23 @@ +{ + "localhost": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + }, + "asic0": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + }, + "asic1": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + } +} diff --git a/tests/config_override_input/multi_asic_missing_asic.json b/tests/config_override_input/multi_asic_missing_asic.json new file mode 100644 index 000000000..db8ba8ec8 --- /dev/null +++ b/tests/config_override_input/multi_asic_missing_asic.json @@ -0,0 +1,8 @@ +{ + "localhost": { + "DEVICE_METADATA": {} + }, + "asic0": { + "DEVICE_METADATA": {} + } +} diff --git a/tests/config_override_input/multi_asic_missing_localhost.json b/tests/config_override_input/multi_asic_missing_localhost.json new file mode 100644 index 000000000..861c89717 --- /dev/null +++ b/tests/config_override_input/multi_asic_missing_localhost.json @@ -0,0 +1,11 @@ +{ + "host": { + "DEVICE_METADATA": {} + }, + "asic0": { + "DEVICE_METADATA": {} + }, + "asic1": { + "DEVICE_METADATA": {} + } +} diff --git a/tests/config_override_input/port_config_override.json b/tests/config_override_input/port_config_override.json new file mode 100644 index 000000000..3c80a7344 --- /dev/null +++ b/tests/config_override_input/port_config_override.json @@ -0,0 +1,134 @@ +{ + "running_config": { + "ACL_TABLE": { + "DATAACL": { + "policy_desc": "DATAACL", + "ports": [ + "Ethernet4" + ], + "stage": "ingress", + "type": "L3" + }, + "NTP_ACL": { + "policy_desc": "NTP_ACL", + "services": [ + "NTP" + ], + "stage": "ingress", + "type": "CTRLPLANE" + } + }, + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "rate_limit_interval": "600", + "state": "enabled" + }, + "database": { + "rate_limit_interval": "600", + "state": "enabled" + } + }, + "PORT": { + "Ethernet4": { + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + }, + "Ethernet8": { + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + }, + "golden_config": { + "PORT": { + "Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + }, + "Ethernet8": { + "admin_status": "down", + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + }, + "expected_config": { + "ACL_TABLE": { + "DATAACL": { + "policy_desc": "DATAACL", + "ports": [ + "Ethernet4" + ], + "stage": "ingress", + "type": "L3" + }, + "NTP_ACL": { + "policy_desc": "NTP_ACL", + "services": [ + "NTP" + ], + "stage": "ingress", + "type": "CTRLPLANE" + } + }, + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "rate_limit_interval": "600", + "state": "enabled" + }, + "database": { + "rate_limit_interval": "600", + "state": "enabled" + } + }, + "PORT": { + "Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + }, + "Ethernet8": { + "admin_status": "down", + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + } +} diff --git a/tests/config_override_input/running_config_yang_failure.json b/tests/config_override_input/running_config_yang_failure.json new file mode 100644 index 000000000..7060dd4d2 --- /dev/null +++ b/tests/config_override_input/running_config_yang_failure.json @@ -0,0 +1,89 @@ +{ + "running_config": { + "ACL_TABLE": { + "DATAACL": { + "policy_desc": "DATAACL", + "ports": [ + "Ethernet0" + ], + "stage": "ingress", + "type": "L3" + }, + "NTP_ACL": { + "policy_desc": "NTP_ACL", + "services": [ + "NTP" + ], + "stage": "ingress", + "type": "CTRLPLANE" + } + }, + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "rate_limit_interval": "600", + "state": "enabled" + }, + "database": { + "rate_limit_interval": "600", + "state": "enabled" + } + }, + "PORT": { + "Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + }, + "Ethernet8": { + "admin_status": "up", + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + }, + "golden_config": { + "ACL_TABLE": { + "EVERFLOWV6": { + "policy_desc": "EVERFLOWV6", + "ports": [ + "Ethernet12" + ], + "stage": "ingress", + "type": "MIRRORV6" + } + }, + "AUTO_TECHSUPPORT_FEATURE": { + "bgp": { + "state": "disabled" + }, + "database": { + "state": "disabled" + } + }, + "PORT": { + "Ethernet12": { + "admin_status": "up", + "alias": "fortyGigE0/12", + "description": "Servers2:eth0", + "index": "3", + "lanes": "37,38,39,40", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000", + "tpid": "0x8100" + } + } + } +} diff --git a/tests/config_override_test.py b/tests/config_override_test.py index bee2b4419..19d2ddc19 100644 --- a/tests/config_override_test.py +++ b/tests/config_override_test.py @@ -1,6 +1,7 @@ import os import json import filecmp +import importlib import config.main as config from click.testing import CliRunner @@ -15,10 +16,23 @@ PARTIAL_CONFIG_OVERRIDE = os.path.join(DATA_DIR, "partial_config_override.json") NEW_FEATURE_CONFIG = os.path.join(DATA_DIR, "new_feature_config.json") FULL_CONFIG_OVERRIDE = os.path.join(DATA_DIR, "full_config_override.json") +PORT_CONFIG_OVERRIDE = os.path.join(DATA_DIR, "port_config_override.json") +EMPTY_TABLE_REMOVAL = os.path.join(DATA_DIR, "empty_table_removal.json") +RUNNING_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "running_config_yang_failure.json") +GOLDEN_INPUT_YANG_FAILURE = os.path.join(DATA_DIR, "golden_input_yang_failure.json") +FINAL_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "final_config_yang_failure.json") +MULTI_ASIC_MACSEC_OV = os.path.join(DATA_DIR, "multi_asic_macsec_ov.json") +MULTI_ASIC_DEVICE_METADATA_RM = os.path.join(DATA_DIR, "multi_asic_dm_rm.json") +MULTI_ASIC_DEVICE_METADATA_GEN_SYSINFO = os.path.join(DATA_DIR, "multi_asic_dm_gen_sysinfo.json") +MULTI_ASIC_MISSING_LOCALHOST_OV = os.path.join(DATA_DIR, "multi_asic_missing_localhost.json") +MULTI_ASIC_MISSING_ASIC_OV = os.path.join(DATA_DIR, "multi_asic_missing_asic.json") # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') +config_mgmt_py_path = os.path.join(os.path.dirname(__file__), '..', 'config', 'config_mgmt.py') +config_mgmt = load_module_from_source('config_mgmt', config_mgmt_py_path) + def write_init_config_db(cfgdb, config): tables = cfgdb.get_config() @@ -127,6 +141,24 @@ def test_golden_config_db_full(self): db, config, read_data['running_config'], read_data['golden_config'], read_data['expected_config']) + def test_golden_config_db_port_config(self): + """Golden Config makes change to PORT admin_status""" + db = Db() + with open(PORT_CONFIG_OVERRIDE, "r") as f: + read_data = json.load(f) + self.check_override_config_table( + db, config, read_data['running_config'], read_data['golden_config'], + read_data['expected_config']) + + def test_golden_config_db_empty_table_removal(self): + """Golden Config empty table does table removal""" + db = Db() + with open(EMPTY_TABLE_REMOVAL, "r") as f: + read_data = json.load(f) + self.check_override_config_table( + db, config, read_data['running_config'], read_data['golden_config'], + read_data['expected_config']) + def check_override_config_table(self, db, config, running_config, golden_config, expected_config): def read_json_file_side_effect(filename): @@ -143,8 +175,256 @@ def read_json_file_side_effect(filename): assert result.exit_code == 0 assert current_config == expected_config + def test_yang_verification_enabled(self): + def is_yang_config_validation_enabled_side_effect(filename): + return True + + def config_mgmt_side_effect(configdb): + return config_mgmt.ConfigMgmt(source=CONFIG_DB_JSON_FILE) + + db = Db() + with open(FULL_CONFIG_OVERRIDE, "r") as f: + read_data = json.load(f) + + # ConfigMgmt will call ConfigDBConnector to load default config_db.json. + # Here I modify the ConfigMgmt initialization and make it initiated with + # a source file which share the same as what we write to cfgdb. + CONFIG_DB_JSON_FILE = "startConfigDb.json" + write_config_to_file(read_data['running_config'], CONFIG_DB_JSON_FILE) + with mock.patch('config.main.device_info.is_yang_config_validation_enabled', + mock.MagicMock(side_effect=is_yang_config_validation_enabled_side_effect)), \ + mock.patch('config.main.ConfigMgmt', + mock.MagicMock(side_effect=config_mgmt_side_effect)): + self.check_override_config_table( + db, config, read_data['running_config'], read_data['golden_config'], + read_data['expected_config']) + + + def test_running_config_yang_failure(self): + def is_yang_config_validation_enabled_side_effect(filename): + return True + db = Db() + with open(RUNNING_CONFIG_YANG_FAILURE, "r") as f: + read_data = json.load(f) + with mock.patch('config.main.device_info.is_yang_config_validation_enabled', + mock.MagicMock(side_effect=is_yang_config_validation_enabled_side_effect)): + self.check_yang_verification_failure( + db, config, read_data['running_config'], read_data['golden_config'], "running config") + + def test_golden_input_yang_failure(self): + def is_yang_config_validation_enabled_side_effect(filename): + return True + db = Db() + with open(GOLDEN_INPUT_YANG_FAILURE, "r") as f: + read_data = json.load(f) + with mock.patch('config.main.device_info.is_yang_config_validation_enabled', + mock.MagicMock(side_effect=is_yang_config_validation_enabled_side_effect)): + self.check_yang_verification_failure( + db, config, read_data['running_config'], read_data['golden_config'], "config_input") + + def test_final_config_yang_failure(self): + def is_yang_config_validation_enabled_side_effect(filename): + return True + db = Db() + with open(FINAL_CONFIG_YANG_FAILURE, "r") as f: + read_data = json.load(f) + with mock.patch('config.main.device_info.is_yang_config_validation_enabled', + mock.MagicMock(side_effect=is_yang_config_validation_enabled_side_effect)): + self.check_yang_verification_failure( + db, config, read_data['running_config'], read_data['golden_config'], "updated_config") + + def check_yang_verification_failure(self, db, config, running_config, + golden_config, jname): + def read_json_file_side_effect(filename): + return golden_config + + def config_mgmt_side_effect(configdb): + return config_mgmt.ConfigMgmt(source=CONFIG_DB_JSON_FILE) + + # ConfigMgmt will call ConfigDBConnector to load default config_db.json. + # Here I modify the ConfigMgmt initialization and make it initiated with + # a source file which share the same as what we write to cfgdb. + CONFIG_DB_JSON_FILE = "startConfigDb.json" + write_config_to_file(running_config, CONFIG_DB_JSON_FILE) + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)), \ + mock.patch('config.main.ConfigMgmt', + mock.MagicMock(side_effect=config_mgmt_side_effect)): + write_init_config_db(db.cfgdb, running_config) + + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 1 + assert "Failed to validate {}. Error:".format(jname) in result.output + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ["UTILITIES_UNIT_TESTING"] = "0" + return + + +class TestConfigOverrideMultiasic(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + # change to multi asic config + from .mock_tables import dbconnector + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + dbconnector.load_namespace_config() + return + + def test_macsec_override(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_MACSEC_OV, "r") as f: + macsec_profile = json.load(f) + return macsec_profile + db = Db() + cfgdb_clients = db.cfgdb_clients + + # The profile_content was copied from MULTI_ASIC_MACSEC_OV, where all + # ns sharing the same content: {"profile": {"key": "value"}} + profile_content = {"profile": {"key": "value"}} + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + assert config_db.get_config()['MACSEC_PROFILE'] == profile_content + + def test_device_metadata_table_rm(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_DEVICE_METADATA_RM, "r") as f: + device_metadata = json.load(f) + return device_metadata + db = Db() + cfgdb_clients = db.cfgdb_clients + + for ns, config_db in cfgdb_clients.items(): + assert 'DEVICE_METADATA' in config_db.get_config() + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + assert 'DEVICE_METADATA' not in config_db.get_config() + + def test_device_metadata_keep_sysinfo(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_DEVICE_METADATA_GEN_SYSINFO, "r") as f: + device_metadata = json.load(f) + return device_metadata + db = Db() + cfgdb_clients = db.cfgdb_clients + + # Save original sysinfo in dict, compare later to see if it is override + orig_sysinfo = {} + for ns, config_db in cfgdb_clients.items(): + platform = config_db.get_config()['DEVICE_METADATA']['localhost'].get('platform') + mac = config_db.get_config()['DEVICE_METADATA']['localhost'].get('mac') + orig_sysinfo[ns] = {} + orig_sysinfo[ns]['platform'] = platform + orig_sysinfo[ns]['mac'] = mac + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + platform = config_db.get_config()['DEVICE_METADATA']['localhost'].get('platform') + mac = config_db.get_config()['DEVICE_METADATA']['localhost'].get('mac') + assert platform == orig_sysinfo[ns]['platform'] + assert mac == orig_sysinfo[ns]['mac'] + + def test_device_metadata_gen_sysinfo(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_DEVICE_METADATA_GEN_SYSINFO, "r") as f: + device_metadata = json.load(f) + return device_metadata + db = Db() + cfgdb_clients = db.cfgdb_clients + + # Remove original sysinfo and check if use generated ones + for ns, config_db in cfgdb_clients.items(): + metadata = config_db.get_config()['DEVICE_METADATA']['localhost'] + metadata.pop('platform', None) + metadata.pop('mac', None) + config_db.set_entry('DEVICE_METADATA', 'localhost', metadata) + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)),\ + mock.patch('sonic_py_common.device_info.get_platform', + return_value="multi_asic"),\ + mock.patch('sonic_py_common.device_info.get_system_mac', + return_value="11:22:33:44:55:66"): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + platform = config_db.get_config()['DEVICE_METADATA']['localhost'].get('platform') + mac = config_db.get_config()['DEVICE_METADATA']['localhost'].get('mac') + assert platform == "multi_asic" + assert mac == "11:22:33:44:55:66" + + def test_masic_missig_localhost_override(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_MISSING_LOCALHOST_OV, "r") as f: + wrong_format = json.load(f) + return wrong_format + db = Db() + cfgdb_clients = db.cfgdb_clients + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert "'localhost' not found in host config" in result.output + # make sure program aborted with return code 1 + assert result.exit_code == 1 + + def test_masic_missig_asic_override(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_MISSING_ASIC_OV, "r") as f: + wrong_format = json.load(f) + return wrong_format + db = Db() + cfgdb_clients = db.cfgdb_clients + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert "Override config not present for asic1" in result.output + # make sure program did not abort + assert result.exit_code == 0 + @classmethod def teardown_class(cls): print("TEARDOWN") os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + # change back to single asic config + from .mock_tables import dbconnector + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + dbconnector.load_namespace_config() return diff --git a/tests/config_test.py b/tests/config_test.py index 87865334a..b230caa1e 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -1,3 +1,5 @@ +import copy +import pytest import filecmp import importlib import os @@ -6,14 +8,16 @@ import jsonpatch import sys import unittest +import ipaddress from unittest import mock import click from click.testing import CliRunner -from sonic_py_common import device_info +from sonic_py_common import device_info, multi_asic from utilities_common.db import Db from utilities_common.general import load_module_from_source +from unittest.mock import MagicMock, patch, mock_open from generic_config_updater.generic_updater import ConfigFormat @@ -31,20 +35,69 @@ # Config Reload input Path mock_db_path = os.path.join(test_path, "config_reload_input") +# Load minigraph input Path +load_minigraph_input_path = os.path.join(test_path, "load_minigraph_input") +load_minigraph_platform_path = os.path.join(load_minigraph_input_path, "platform") +load_minigraph_platform_false_path = os.path.join(load_minigraph_input_path, "platform_false") load_minigraph_command_output="""\ Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -H -m --write-to-db -Running command: config qos reload --no-dynamic-buffer +Running command: config qos reload --no-dynamic-buffer --no-delay Running command: pfcwd start_default Restarting SONiC target ... Reloading Monit configuration ... Please note setting loaded from minigraph will be lost after system reboot. To preserve setting, run `config save`. """ +load_minigraph_platform_plugin_command_output="""\ +Stopping SONiC target ... +Running command: /usr/local/bin/sonic-cfggen -H -m --write-to-db +Running command: config qos reload --no-dynamic-buffer --no-delay +Running command: pfcwd start_default +Running Platform plugin ............! +Restarting SONiC target ... +Reloading Monit configuration ... +Please note setting loaded from minigraph will be lost after system reboot. To preserve setting, run `config save`. +""" + +load_mgmt_config_command_ipv4_only_output="""\ +Running command: /usr/local/bin/sonic-cfggen -M device_desc.xml --write-to-db +parse dummy device_desc.xml +change hostname to dummy +Running command: ifconfig eth0 10.0.0.100 netmask 255.255.255.0 +Running command: ip route add default via 10.0.0.1 dev eth0 table default +Running command: ip rule add from 10.0.0.100 table default +Running command: [ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid +Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. +""" + +load_mgmt_config_command_ipv6_only_output="""\ +Running command: /usr/local/bin/sonic-cfggen -M device_desc.xml --write-to-db +parse dummy device_desc.xml +change hostname to dummy +Running command: ifconfig eth0 add fc00:1::32/64 +Running command: ip -6 route add default via fc00:1::1 dev eth0 table default +Running command: ip -6 rule add from fc00:1::32 table default +Running command: [ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid +Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. +""" + +load_mgmt_config_command_ipv4_ipv6_output="""\ +Running command: /usr/local/bin/sonic-cfggen -M device_desc.xml --write-to-db +parse dummy device_desc.xml +change hostname to dummy +Running command: ifconfig eth0 10.0.0.100 netmask 255.255.255.0 +Running command: ip route add default via 10.0.0.1 dev eth0 table default +Running command: ip rule add from 10.0.0.100 table default +Running command: ifconfig eth0 add fc00:1::32/64 +Running command: ip -6 route add default via fc00:1::1 dev eth0 table default +Running command: ip -6 rule add from fc00:1::32 table default +Running command: [ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid +Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. +""" RELOAD_CONFIG_DB_OUTPUT = """\ -Running command: rm -rf /tmp/dropstat-* Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db Restarting SONiC target ... @@ -52,7 +105,6 @@ """ RELOAD_YANG_CFG_OUTPUT = """\ -Running command: rm -rf /tmp/dropstat-* Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -Y /tmp/config.json --write-to-db Restarting SONiC target ... @@ -60,7 +112,6 @@ """ RELOAD_MASIC_CONFIG_DB_OUTPUT = """\ -Running command: rm -rf /tmp/dropstat-* Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json -n asic0 --write-to-db @@ -70,9 +121,52 @@ """ reload_config_with_sys_info_command_output="""\ -Running command: rm -rf /tmp/dropstat-* Running command: /usr/local/bin/sonic-cfggen -H -k Seastone-DX010-25-50 --write-to-db""" +reload_config_with_disabled_service_output="""\ +Stopping SONiC target ... +Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db +Restarting SONiC target ... +Reloading Monit configuration ... +""" + +reload_config_with_untriggered_timer_output="""\ +Relevant services are not up. Retry later or use -f to avoid system checks +""" + +config_temp = { + "scope": { + "ACL_TABLE": { + "MY_ACL_TABLE": { + "policy_desc": "My ACL", + "ports": ["Ethernet1", "Ethernet2"], + "stage": "ingress", + "type": "L3" + } + }, + "PORT": { + "Ethernet1": { + "alias": "fortyGigE0/0", + "description": "fortyGigE0/0", + "index": "0", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" + }, + "Ethernet2": { + "alias": "fortyGigE0/100", + "description": "fortyGigE0/100", + "index": "25", + "lanes": "125,126,127,128", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" + } + } + } + } + def mock_run_command_side_effect(*args, **kwargs): command = args[0] @@ -81,20 +175,59 @@ def mock_run_command_side_effect(*args, **kwargs): if kwargs.get('return_cmd'): if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": - return 'snmp.timer' + return 'snmp.timer' , 0 + elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": + return 'swss', 0 + elif command == "systemctl is-enabled snmp.timer": + return 'enabled', 0 + else: + return '', 0 + +def mock_run_command_side_effect_disabled_timer(*args, **kwargs): + command = args[0] + + if kwargs.get('display_cmd'): + click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) + + if kwargs.get('return_cmd'): + if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": + return 'snmp.timer', 0 elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss' + return 'swss', 0 elif command == "systemctl is-enabled snmp.timer": - return 'enabled' + return 'masked', 0 + elif command == "systemctl show swss.service --property ActiveState --value": + return 'active', 0 + elif command == "systemctl show swss.service --property ActiveEnterTimestampMonotonic --value": + return '0', 0 else: - return '' + return '', 0 + +def mock_run_command_side_effect_untriggered_timer(*args, **kwargs): + command = args[0] + if kwargs.get('display_cmd'): + click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) + + if kwargs.get('return_cmd'): + if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": + return 'snmp.timer', 0 + elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": + return 'swss', 0 + elif command == "systemctl is-enabled snmp.timer": + return 'enabled', 0 + elif command == "systemctl show snmp.timer --property=LastTriggerUSecMonotonic --value": + return '0', 0 + else: + return '', 0 # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') class TestConfigReload(object): + dummy_cfg_file = os.path.join(os.sep, "tmp", "config.json") + @classmethod def setup_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "1" @@ -105,6 +238,7 @@ def setup_class(cls): import config.main importlib.reload(config.main) + open(cls.dummy_cfg_file, 'w').close() def test_config_reload(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: @@ -130,7 +264,73 @@ def test_config_reload(self, get_cmd_module, setup_single_broadcom_asic): assert result.exit_code == 0 - assert "\n".join([l.rstrip() for l in result.output.split('\n')][:2]) == reload_config_with_sys_info_command_output + assert "\n".join([l.rstrip() for l in result.output.split('\n')][:1]) == reload_config_with_sys_info_command_output + + def test_config_reload_untriggered_timer(self, get_cmd_module, setup_single_broadcom_asic): + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect_untriggered_timer)) as mock_run_command: + (config, show) = get_cmd_module + + jsonfile_config = os.path.join(mock_db_path, "config_db.json") + jsonfile_init_cfg = os.path.join(mock_db_path, "init_cfg.json") + + # create object + config.INIT_CFG_FILE = jsonfile_init_cfg + config.DEFAULT_CONFIG_DB_FILE = jsonfile_config + + db = Db() + runner = CliRunner() + obj = {'config_db': db.cfgdb} + + # simulate 'config reload' to provoke load_sys_info option + result = runner.invoke(config.config.commands["reload"], ["-l", "-y"], obj=obj) + + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + + assert result.exit_code == 1 + + assert "\n".join([l.rstrip() for l in result.output.split('\n')][:2]) == reload_config_with_untriggered_timer_output + + def test_config_reload_stdin(self, get_cmd_module, setup_single_broadcom_asic): + def mock_json_load(f): + device_metadata = { + "DEVICE_METADATA": { + "localhost": { + "docker_routing_config_mode": "split", + "hostname": "sonic", + "hwsku": "Seastone-DX010-25-50", + "mac": "00:e0:ec:89:6e:48", + "platform": "x86_64-cel_seastone-r0", + "type": "ToRRouter" + } + } + } + return device_metadata + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command,\ + mock.patch("json.load", mock.MagicMock(side_effect=mock_json_load)): + (config, show) = get_cmd_module + + dev_stdin = "/dev/stdin" + jsonfile_init_cfg = os.path.join(mock_db_path, "init_cfg.json") + + # create object + config.INIT_CFG_FILE = jsonfile_init_cfg + + db = Db() + runner = CliRunner() + obj = {'config_db': db.cfgdb} + + # simulate 'config reload' to provoke load_sys_info option + result = runner.invoke(config.config.commands["reload"], [dev_stdin, "-l", "-n", "-y"], obj=obj) + + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + + assert result.exit_code == 0 + + assert "\n".join([l.rstrip() for l in result.output.split('\n')][:1]) == reload_config_with_sys_info_command_output @classmethod def teardown_class(cls): @@ -152,6 +352,7 @@ def setup_class(cls): import config.main importlib.reload(config.main) + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: (config, show) = get_cmd_module @@ -162,12 +363,41 @@ def test_load_minigraph(self, get_cmd_module, setup_single_broadcom_asic): traceback.print_tb(result.exc_info[2]) assert result.exit_code == 0 assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == load_minigraph_command_output - # Verify "systemctl reset-failed" is called for services under sonic.target + # Verify "systemctl reset-failed" is called for services under sonic.target mock_run_command.assert_any_call('systemctl reset-failed swss') - # Verify "systemctl reset-failed" is called for services under sonic-delayed.target + # Verify "systemctl reset-failed" is called for services under sonic-delayed.target mock_run_command.assert_any_call('systemctl reset-failed snmp') assert mock_run_command.call_count == 11 + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=(load_minigraph_platform_path, None))) + def test_load_minigraph_platform_plugin(self, get_cmd_module, setup_single_broadcom_asic): + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + (config, show) = get_cmd_module + runner = CliRunner() + result = runner.invoke(config.config.commands["load_minigraph"], ["-y"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == load_minigraph_platform_plugin_command_output + # Verify "systemctl reset-failed" is called for services under sonic.target + mock_run_command.assert_any_call('systemctl reset-failed swss') + assert mock_run_command.call_count == 11 + + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=(load_minigraph_platform_false_path, None))) + def test_load_minigraph_platform_plugin_fail(self, get_cmd_module, setup_single_broadcom_asic): + print(load_minigraph_platform_false_path) + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + (config, show) = get_cmd_module + runner = CliRunner() + result = runner.invoke(config.config.commands["load_minigraph"], ["-y"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Platform plugin failed" in result.output + + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_port_config_bad_format(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( "utilities_common.cli.run_command", @@ -182,6 +412,7 @@ def test_load_minigraph_with_port_config_bad_format(self, get_cmd_module, setup_ port_config = [{}] self.check_port_config(None, config, port_config, "Failed to load port_config.json, Error: Bad format: PORT table not exists") + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_port_config_inconsistent_port(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( "utilities_common.cli.run_command", @@ -193,6 +424,7 @@ def test_load_minigraph_with_port_config_inconsistent_port(self, get_cmd_module, port_config = [{"PORT": {"Eth1": {"admin_status": "up"}}}] self.check_port_config(db, config, port_config, "Failed to load port_config.json, Error: Port Eth1 is not defined in current device") + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_port_config(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( "utilities_common.cli.run_command", @@ -210,6 +442,7 @@ def test_load_minigraph_with_port_config(self, get_cmd_module, setup_single_broa port_config = [{"PORT": {"Ethernet0": {"admin_status": "up"}}}] self.check_port_config(db, config, port_config, "config interface startup Ethernet0") + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def check_port_config(self, db, config, port_config, expected_output): def read_json_file_side_effect(filename): return port_config @@ -224,26 +457,71 @@ def is_file_side_effect(filename): assert result.exit_code == 0 assert expected_output in result.output - def test_load_minigraph_with_golden_config(self, get_cmd_module, setup_single_broadcom_asic): - with mock.patch( - "utilities_common.cli.run_command", - mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) + def test_load_minigraph_with_non_exist_golden_config_path(self, get_cmd_module): + def is_file_side_effect(filename): + return True if 'golden_config' in filename else False + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command, \ + mock.patch('os.path.isfile', mock.MagicMock(side_effect=is_file_side_effect)): (config, show) = get_cmd_module - db = Db() - golden_config = {} - self.check_golden_config(db, config, golden_config, - "config override-config-table /etc/sonic/golden_config_db.json") + runner = CliRunner() + result = runner.invoke(config.config.commands["load_minigraph"], ["--override_config", "--golden_config_path", "non_exist.json", "-y"]) + assert result.exit_code != 0 + assert "Cannot find 'non_exist.json'" in result.output - def check_golden_config(self, db, config, golden_config, expected_output): + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) + def test_load_minigraph_with_specified_golden_config_path(self, get_cmd_module): def is_file_side_effect(filename): return True if 'golden_config' in filename else False - with mock.patch('os.path.isfile', mock.MagicMock(side_effect=is_file_side_effect)): + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command, \ + mock.patch('os.path.isfile', mock.MagicMock(side_effect=is_file_side_effect)): + (config, show) = get_cmd_module + runner = CliRunner() + result = runner.invoke(config.config.commands["load_minigraph"], ["--override_config", "--golden_config_path", "golden_config.json", "-y"]) + assert result.exit_code == 0 + assert "config override-config-table golden_config.json" in result.output + + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) + def test_load_minigraph_with_default_golden_config_path(self, get_cmd_module): + def is_file_side_effect(filename): + return True if 'golden_config' in filename else False + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command, \ + mock.patch('os.path.isfile', mock.MagicMock(side_effect=is_file_side_effect)): + (config, show) = get_cmd_module + runner = CliRunner() + result = runner.invoke(config.config.commands["load_minigraph"], ["--override_config", "-y"]) + assert result.exit_code == 0 + assert "config override-config-table /etc/sonic/golden_config_db.json" in result.output + + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) + def test_load_minigraph_with_traffic_shift_away(self, get_cmd_module): + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + (config, show) = get_cmd_module runner = CliRunner() - result = runner.invoke(config.config.commands["load_minigraph"], ["-y"], obj=db) + result = runner.invoke(config.config.commands["load_minigraph"], ["-ty"]) print(result.exit_code) print(result.output) + traceback.print_tb(result.exc_info[2]) assert result.exit_code == 0 - assert expected_output in result.output + assert "TSA" in result.output + + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) + def test_load_minigraph_with_traffic_shift_away_with_golden_config(self, get_cmd_module): + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + def is_file_side_effect(filename): + return True if 'golden_config' in filename else False + with mock.patch('os.path.isfile', mock.MagicMock(side_effect=is_file_side_effect)): + (config, show) = get_cmd_module + db = Db() + golden_config = {} + runner = CliRunner() + result = runner.invoke(config.config.commands["load_minigraph"], ["-ty", "--override_config"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + assert "TSA" in result.output + assert "[WARNING] Golden configuration may override Traffic-shift-away state" in result.output @classmethod def teardown_class(cls): @@ -259,9 +537,66 @@ def setup_class(cls): print("SETUP") import config.main importlib.reload(config.main) - open(cls.dummy_cfg_file, 'w').close() + + def add_sysinfo_to_cfg_file(self): + with open(self.dummy_cfg_file, 'w') as f: + device_metadata = { + "DEVICE_METADATA": { + "localhost": { + "platform": "some_platform", + "mac": "02:42:f0:7f:01:05" + } + } + } + f.write(json.dumps(device_metadata)) + + def test_reload_config_invalid_input(self, get_cmd_module, setup_single_broadcom_asic): + open(self.dummy_cfg_file, 'w').close() + with mock.patch( + "utilities_common.cli.run_command", + mock.MagicMock(side_effect=mock_run_command_side_effect) + ) as mock_run_command: + (config, show) = get_cmd_module + runner = CliRunner() + + result = runner.invoke( + config.config.commands["reload"], + [self.dummy_cfg_file, '-y', '-f']) + + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + + def test_reload_config_no_sysinfo(self, get_cmd_module, setup_single_broadcom_asic): + with open(self.dummy_cfg_file, 'w') as f: + device_metadata = { + "DEVICE_METADATA": { + "localhost": { + "hwsku": "some_hwsku" + } + } + } + f.write(json.dumps(device_metadata)) + + with mock.patch( + "utilities_common.cli.run_command", + mock.MagicMock(side_effect=mock_run_command_side_effect) + ) as mock_run_command: + (config, show) = get_cmd_module + runner = CliRunner() + + result = runner.invoke( + config.config.commands["reload"], + [self.dummy_cfg_file, '-y', '-f']) + + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 def test_reload_config(self, get_cmd_module, setup_single_broadcom_asic): + self.add_sysinfo_to_cfg_file() with mock.patch( "utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect) @@ -280,7 +615,28 @@ def test_reload_config(self, get_cmd_module, setup_single_broadcom_asic): assert "\n".join([l.rstrip() for l in result.output.split('\n')]) \ == RELOAD_CONFIG_DB_OUTPUT + def test_config_reload_disabled_service(self, get_cmd_module, setup_single_broadcom_asic): + self.add_sysinfo_to_cfg_file() + with mock.patch( + "utilities_common.cli.run_command", + mock.MagicMock(side_effect=mock_run_command_side_effect_disabled_timer) + ) as mock_run_command: + (config, show) = get_cmd_module + + runner = CliRunner() + result = runner.invoke(config.config.commands["reload"], [self.dummy_cfg_file, "-y"]) + + print(result.exit_code) + print(result.output) + print(reload_config_with_disabled_service_output) + traceback.print_tb(result.exc_info[2]) + + assert result.exit_code == 0 + + assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == reload_config_with_disabled_service_output + def test_reload_config_masic(self, get_cmd_module, setup_multi_broadcom_masic): + self.add_sysinfo_to_cfg_file() with mock.patch( "utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect) @@ -289,7 +645,7 @@ def test_reload_config_masic(self, get_cmd_module, setup_multi_broadcom_masic): runner = CliRunner() # 3 config files: 1 for host and 2 for asic cfg_files = "{},{},{}".format( - self.dummy_cfg_file, + self.dummy_cfg_file, self.dummy_cfg_file, self.dummy_cfg_file) result = runner.invoke( @@ -313,7 +669,7 @@ def test_reload_yang_config(self, get_cmd_module, runner = CliRunner() result = runner.invoke(config.config.commands["reload"], - [self.dummy_cfg_file, '-y','-f' ,'-t', 'config_yang']) + [self.dummy_cfg_file, '-y', '-f', '-t', 'config_yang']) print(result.exit_code) print(result.output) @@ -328,7 +684,7 @@ def teardown_class(cls): os.remove(cls.dummy_cfg_file) print("TEARDOWN") - + class TestConfigCbf(object): @classmethod def setup_class(cls): @@ -436,6 +792,34 @@ def setup_class(cls): import config.main importlib.reload(config.main) + def _keys(args, kwargs): + if not TestConfigQos._keys_counter: + return [] + TestConfigQos._keys_counter-=1 + return ["BUFFER_POOL_TABLE:egress_lossy_pool"] + + def test_qos_wait_until_clear_empty(self): + from config.main import _wait_until_clear + + with mock.patch('swsscommon.swsscommon.SonicV2Connector.keys', side_effect=TestConfigQos._keys): + TestConfigQos._keys_counter = 1 + empty = _wait_until_clear(["BUFFER_POOL_TABLE:*"], 0.5,2) + assert empty + + def test_qos_wait_until_clear_not_empty(self): + from config.main import _wait_until_clear + + with mock.patch('swsscommon.swsscommon.SonicV2Connector.keys', side_effect=TestConfigQos._keys): + TestConfigQos._keys_counter = 10 + empty = _wait_until_clear(["BUFFER_POOL_TABLE:*"], 0.5,2) + assert not empty + + @mock.patch('config.main._wait_until_clear') + def test_qos_clear_no_wait(self, _wait_until_clear): + from config.main import _clear_qos + _clear_qos(True, False) + _wait_until_clear.assert_called_with(['BUFFER_*_TABLE:*', 'BUFFER_*_SET'], interval=0.5, timeout=0, verbose=False) + def test_qos_reload_single( self, get_cmd_module, setup_qos_mock_apis, setup_single_broadcom_asic @@ -593,6 +977,7 @@ def setUp(self): self.any_checkpoints_list = ["checkpoint1", "checkpoint2", "checkpoint3"] self.any_checkpoints_list_as_text = json.dumps(self.any_checkpoints_list, indent=4) + @patch('config.main.validate_patch', mock.Mock(return_value=True)) def test_apply_patch__no_params__get_required_params_error_msg(self): # Arrange unexpected_exit_code = 0 @@ -605,6 +990,7 @@ def test_apply_patch__no_params__get_required_params_error_msg(self): self.assertNotEqual(unexpected_exit_code, result.exit_code) self.assertTrue(expected_output in result.output) + @patch('config.main.validate_patch', mock.Mock(return_value=True)) def test_apply_patch__help__gets_help_msg(self): # Arrange expected_exit_code = 0 @@ -617,6 +1003,7 @@ def test_apply_patch__help__gets_help_msg(self): self.assertEqual(expected_exit_code, result.exit_code) self.assertTrue(expected_output in result.output) + @patch('config.main.validate_patch', mock.Mock(return_value=True)) def test_apply_patch__only_required_params__default_values_used_for_optional_params(self): # Arrange expected_exit_code = 0 @@ -635,6 +1022,7 @@ def test_apply_patch__only_required_params__default_values_used_for_optional_par mock_generic_updater.apply_patch.assert_called_once() mock_generic_updater.apply_patch.assert_has_calls([expected_call_with_default_values]) + @patch('config.main.validate_patch', mock.Mock(return_value=True)) def test_apply_patch__all_optional_params_non_default__non_default_values_used(self): # Arrange expected_exit_code = 0 @@ -664,6 +1052,7 @@ def test_apply_patch__all_optional_params_non_default__non_default_values_used(s mock_generic_updater.apply_patch.assert_called_once() mock_generic_updater.apply_patch.assert_has_calls([expected_call_with_non_default_values]) + @patch('config.main.validate_patch', mock.Mock(return_value=True)) def test_apply_patch__exception_thrown__error_displayed_error_code_returned(self): # Arrange unexpected_exit_code = 0 @@ -699,6 +1088,7 @@ def test_apply_patch__optional_parameters_passed_correctly(self): ["--ignore-path", "/ANY_TABLE"], mock.call(self.any_patch, ConfigFormat.CONFIGDB, False, False, False, ("/ANY_TABLE",))) + @patch('config.main.validate_patch', mock.Mock(return_value=True)) def validate_apply_patch_optional_parameter(self, param_args, expected_call): # Arrange expected_exit_code = 0 @@ -1226,3 +1616,441 @@ def validate_list_checkpoints_optional_parameter(self, param_args, expected_call self.assertTrue(expected_output in result.output) mock_generic_updater.list_checkpoints.assert_called_once() mock_generic_updater.list_checkpoints.assert_has_calls([expected_call]) + + +class TestConfigLoadMgmtConfig(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "1" + print("SETUP") + + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + + import config.main + importlib.reload(config.main) + + def test_config_load_mgmt_config_ipv4_only(self, get_cmd_module, setup_single_broadcom_asic): + device_desc_result = { + 'DEVICE_METADATA': { + 'localhost': { + 'hostname': 'dummy' + } + }, + 'MGMT_INTERFACE': { + ('eth0', '10.0.0.100/24') : { + 'gwaddr': ipaddress.ip_address(u'10.0.0.1') + } + } + } + self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv4_only_output, 5) + + def test_config_load_mgmt_config_ipv6_only(self, get_cmd_module, setup_single_broadcom_asic): + device_desc_result = { + 'DEVICE_METADATA': { + 'localhost': { + 'hostname': 'dummy' + } + }, + 'MGMT_INTERFACE': { + ('eth0', 'FC00:1::32/64') : { + 'gwaddr': ipaddress.ip_address(u'fc00:1::1') + } + } + } + self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv6_only_output, 5) + + def test_config_load_mgmt_config_ipv4_ipv6(self, get_cmd_module, setup_single_broadcom_asic): + device_desc_result = { + 'DEVICE_METADATA': { + 'localhost': { + 'hostname': 'dummy' + } + }, + 'MGMT_INTERFACE': { + ('eth0', '10.0.0.100/24') : { + 'gwaddr': ipaddress.ip_address(u'10.0.0.1') + }, + ('eth0', 'FC00:1::32/64') : { + 'gwaddr': ipaddress.ip_address(u'fc00:1::1') + } + } + } + self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv4_ipv6_output, 8) + + def check_output(self, get_cmd_module, parse_device_desc_xml_result, expected_output, expected_command_call_count): + def parse_device_desc_xml_side_effect(filename): + print("parse dummy device_desc.xml") + return parse_device_desc_xml_result + def change_hostname_side_effect(hostname): + print("change hostname to {}".format(hostname)) + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + with mock.patch('config.main.parse_device_desc_xml', mock.MagicMock(side_effect=parse_device_desc_xml_side_effect)): + with mock.patch('config.main._change_hostname', mock.MagicMock(side_effect=change_hostname_side_effect)): + (config, show) = get_cmd_module + runner = CliRunner() + with runner.isolated_filesystem(): + with open('device_desc.xml', 'w') as f: + f.write('dummy') + result = runner.invoke(config.config.commands["load_mgmt_config"], ["-y", "device_desc.xml"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == expected_output + assert mock_run_command.call_count == expected_command_call_count + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ['UTILITIES_UNIT_TESTING'] = "0" + + # change back to single asic config + from .mock_tables import dbconnector + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + dbconnector.load_namespace_config() + + +class TestApplyPatchMultiAsic(unittest.TestCase): + def setUp(self): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + import config.main + importlib.reload(config.main) + # change to multi asic config + from .mock_tables import dbconnector + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + dbconnector.load_namespace_config() + + self.runner = CliRunner() + self.patch_file_path = 'path/to/patch.json' + self.replace_file_path = 'path/to/replace.json' + self.patch_content = [ + { + "op": "add", + "path": "/localhost/ACL_TABLE/NEW_ACL_TABLE", + "value": { + "policy_desc": "New ACL Table", + "ports": ["Ethernet1", "Ethernet2"], + "stage": "ingress", + "type": "L3" + } + }, + { + "op": "add", + "path": "/asic0/ACL_TABLE/NEW_ACL_TABLE", + "value": { + "policy_desc": "New ACL Table", + "ports": ["Ethernet3", "Ethernet4"], + "stage": "ingress", + "type": "L3" + } + }, + { + "op": "replace", + "path": "/asic1/PORT/Ethernet1/mtu", + "value": "9200" + } + ] + + test_config = copy.deepcopy(config_temp) + data = test_config.pop("scope") + self.all_config = {} + self.all_config["localhost"] = data + self.all_config["asic0"] = data + self.all_config["asic0"]["bgpraw"] = "" + self.all_config["asic1"] = data + self.all_config["asic1"]["bgpraw"] = "" + + @patch('config.main.validate_patch', mock.Mock(return_value=True)) + def test_apply_patch_multiasic(self): + # Mock open to simulate file reading + with mock.patch('builtins.open', mock.mock_open(read_data=json.dumps(self.patch_content)), create=True) as mocked_open: + # Mock GenericUpdater to avoid actual patch application + with mock.patch('config.main.GenericUpdater') as mock_generic_updater: + mock_generic_updater.return_value.apply_patch = mock.MagicMock() + + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["apply-patch"], [self.patch_file_path], catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertEqual(result.exit_code, 0, "Command should succeed") + self.assertIn("Patch applied successfully.", result.output) + + # Verify mocked_open was called as expected + mocked_open.assert_called_with(self.patch_file_path, 'r') + + @patch('config.main.validate_patch', mock.Mock(return_value=True)) + def test_apply_patch_dryrun_multiasic(self): + # Mock open to simulate file reading + with mock.patch('builtins.open', mock.mock_open(read_data=json.dumps(self.patch_content)), create=True) as mocked_open: + # Mock GenericUpdater to avoid actual patch application + with mock.patch('config.main.GenericUpdater') as mock_generic_updater: + mock_generic_updater.return_value.apply_patch = mock.MagicMock() + + # Mock ConfigDBConnector to ensure it's not called during dry-run + with mock.patch('config.main.ConfigDBConnector') as mock_config_db_connector: + + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["apply-patch"], + [self.patch_file_path, + "--format", ConfigFormat.SONICYANG.name, + "--dry-run", + "--ignore-non-yang-tables", + "--ignore-path", "/ANY_TABLE", + "--ignore-path", "/ANY_OTHER_TABLE/ANY_FIELD", + "--ignore-path", "", + "--verbose"], + catch_exceptions=False) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertEqual(result.exit_code, 0, "Command should succeed") + self.assertIn("Patch applied successfully.", result.output) + + # Verify mocked_open was called as expected + mocked_open.assert_called_with(self.patch_file_path, 'r') + + # Ensure ConfigDBConnector was never instantiated or called + mock_config_db_connector.assert_not_called() + + @patch('config.main.subprocess.Popen') + @patch('config.main.SonicYangCfgDbGenerator.validate_config_db_json', mock.Mock(return_value=True)) + def test_apply_patch_validate_patch_multiasic(self, mock_subprocess_popen): + mock_instance = MagicMock() + mock_instance.communicate.return_value = (json.dumps(self.all_config), 0) + mock_subprocess_popen.return_value = mock_instance + + # Mock open to simulate file reading + with patch('builtins.open', mock_open(read_data=json.dumps(self.patch_content)), create=True) as mocked_open: + # Mock GenericUpdater to avoid actual patch application + with patch('config.main.GenericUpdater') as mock_generic_updater: + mock_generic_updater.return_value.apply_patch = MagicMock() + + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["apply-patch"], + [self.patch_file_path], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertEqual(result.exit_code, 0, "Command should succeed.") + self.assertIn("Patch applied successfully.", result.output) + + # Verify mocked_open was called as expected + mocked_open.assert_called_with(self.patch_file_path, 'r') + + @patch('config.main.subprocess.Popen') + @patch('config.main.SonicYangCfgDbGenerator.validate_config_db_json', mock.Mock(return_value=True)) + def test_apply_patch_validate_patch_with_badpath_multiasic(self, mock_subprocess_popen): + mock_instance = MagicMock() + mock_instance.communicate.return_value = (json.dumps(self.all_config), 0) + mock_subprocess_popen.return_value = mock_instance + + bad_patch = copy.deepcopy(self.patch_content) + bad_patch.append({ + "value": { + "policy_desc": "New ACL Table", + "ports": ["Ethernet3", "Ethernet4"], + "stage": "ingress", + "type": "L3" + } + }) + + # Mock open to simulate file reading + with patch('builtins.open', mock_open(read_data=json.dumps(bad_patch)), create=True) as mocked_open: + # Mock GenericUpdater to avoid actual patch application + with patch('config.main.GenericUpdater') as mock_generic_updater: + mock_generic_updater.return_value.apply_patch = MagicMock() + + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["apply-patch"], + [self.patch_file_path], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertNotEqual(result.exit_code, 0, "Command should failed.") + self.assertIn("Failed to apply patch", result.output) + + # Verify mocked_open was called as expected + mocked_open.assert_called_with(self.patch_file_path, 'r') + + @patch('config.main.subprocess.Popen') + @patch('config.main.SonicYangCfgDbGenerator.validate_config_db_json', mock.Mock(return_value=True)) + def test_apply_patch_validate_patch_with_wrong_fetch_config(self, mock_subprocess_popen): + mock_instance = MagicMock() + mock_instance.communicate.return_value = (json.dumps(self.all_config), 2) + mock_subprocess_popen.return_value = mock_instance + + # Mock open to simulate file reading + with patch('builtins.open', mock_open(read_data=json.dumps(self.patch_content)), create=True) as mocked_open: + # Mock GenericUpdater to avoid actual patch application + with patch('config.main.GenericUpdater') as mock_generic_updater: + mock_generic_updater.return_value.apply_patch = MagicMock() + + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["apply-patch"], + [self.patch_file_path], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertNotEqual(result.exit_code, 0, "Command should failed.") + self.assertIn("Failed to apply patch", result.output) + + # Verify mocked_open was called as expected + mocked_open.assert_called_with(self.patch_file_path, 'r') + + @patch('generic_config_updater.generic_updater.ConfigReplacer.replace', MagicMock()) + def test_replace_multiasic(self): + # Mock open to simulate file reading + mock_replace_content = copy.deepcopy(self.all_config) + with patch('builtins.open', mock_open(read_data=json.dumps(mock_replace_content)), create=True) as mocked_open: + # Mock GenericUpdater to avoid actual patch application + with patch('config.main.GenericUpdater') as mock_generic_updater: + mock_generic_updater.return_value.replace_all = MagicMock() + + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["replace"], + [self.replace_file_path], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertEqual(result.exit_code, 0, "Command should succeed") + self.assertIn("Config replaced successfully.", result.output) + + # Verify mocked_open was called as expected + mocked_open.assert_called_with(self.replace_file_path, 'r') + + @patch('generic_config_updater.generic_updater.ConfigReplacer.replace', MagicMock()) + def test_replace_multiasic_missing_scope(self): + # Mock open to simulate file reading + mock_replace_content = copy.deepcopy(self.all_config) + mock_replace_content.pop("asic0") + with patch('builtins.open', mock_open(read_data=json.dumps(mock_replace_content)), create=True): + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["replace"], + [self.replace_file_path], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertNotEqual(result.exit_code, 0, "Command should failed") + self.assertIn("Failed to replace config", result.output) + + @patch('generic_config_updater.generic_updater.subprocess.Popen') + @patch('generic_config_updater.generic_updater.Util.ensure_checkpoints_dir_exists', mock.Mock(return_value=True)) + @patch('generic_config_updater.generic_updater.Util.save_json_file', MagicMock()) + def test_checkpoint_multiasic(self, mock_subprocess_popen): + allconfigs = copy.deepcopy(self.all_config) + + # Create mock instances for each subprocess call + mock_instance_localhost = MagicMock() + mock_instance_localhost.communicate.return_value = (json.dumps(allconfigs["localhost"]), 0) + mock_instance_localhost.returncode = 0 + + mock_instance_asic0 = MagicMock() + mock_instance_asic0.communicate.return_value = (json.dumps(allconfigs["asic0"]), 0) + mock_instance_asic0.returncode = 0 + + mock_instance_asic1 = MagicMock() + mock_instance_asic1.communicate.return_value = (json.dumps(allconfigs["asic1"]), 0) + mock_instance_asic1.returncode = 0 + + # Setup side effect to return different mock instances based on input arguments + def side_effect(*args, **kwargs): + if "asic" not in args[0]: + return mock_instance_localhost + elif "asic0" in args[0]: + return mock_instance_asic0 + elif "asic1" in args[0]: + return mock_instance_asic1 + else: + return MagicMock() # Default case + + mock_subprocess_popen.side_effect = side_effect + + checkpointname = "checkpointname" + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["checkpoint"], + [checkpointname], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertEqual(result.exit_code, 0, "Command should succeed") + self.assertIn("Checkpoint created successfully.", result.output) + + @patch('generic_config_updater.generic_updater.Util.check_checkpoint_exists', mock.Mock(return_value=True)) + @patch('generic_config_updater.generic_updater.ConfigReplacer.replace', MagicMock()) + @patch('generic_config_updater.generic_updater.Util.get_checkpoint_content') + def test_rollback_multiasic(self, mock_get_checkpoint_content): + mock_get_checkpoint_content.return_value = copy.deepcopy(self.all_config) + checkpointname = "checkpointname" + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["rollback"], + [checkpointname], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertEqual(result.exit_code, 0, "Command should succeed") + self.assertIn("Config rolled back successfully.", result.output) + + @patch('generic_config_updater.generic_updater.Util.checkpoints_dir_exist', mock.Mock(return_value=True)) + @patch('generic_config_updater.generic_updater.Util.get_checkpoint_names', + mock.Mock(return_value=["checkpointname"])) + def test_list_checkpoint_multiasic(self): + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["list-checkpoints"], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertEqual(result.exit_code, 0, "Command should succeed") + self.assertIn("checkpointname", result.output) + + @patch('generic_config_updater.generic_updater.Util.delete_checkpoint', MagicMock()) + @patch('generic_config_updater.generic_updater.Util.check_checkpoint_exists', mock.Mock(return_value=True)) + def test_delete_checkpoint_multiasic(self): + checkpointname = "checkpointname" + # Mock GenericUpdater to avoid actual patch application + with patch('config.main.GenericUpdater') as mock_generic_updater: + mock_generic_updater.return_value.delete_checkpoint = MagicMock() + + print("Multi ASIC: {}".format(multi_asic.is_multi_asic())) + # Invocation of the command with the CliRunner + result = self.runner.invoke(config.config.commands["delete-checkpoint"], + [checkpointname], + catch_exceptions=True) + + print("Exit Code: {}, output: {}".format(result.exit_code, result.output)) + # Assertions and verifications + self.assertEqual(result.exit_code, 0, "Command should succeed") + self.assertIn("Checkpoint deleted successfully.", result.output) + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ['UTILITIES_UNIT_TESTING'] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + # change back to single asic config + from .mock_tables import dbconnector + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + dbconnector.load_database_config() diff --git a/tests/config_xcvr_test.py b/tests/config_xcvr_test.py new file mode 100644 index 000000000..5043aa89d --- /dev/null +++ b/tests/config_xcvr_test.py @@ -0,0 +1,55 @@ +import click +import config.main as config +import operator +import os +import pytest +import sys + +from click.testing import CliRunner +from utilities_common.db import Db + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, modules_path) + + +@pytest.fixture(scope='module') +def ctx(scope='module'): + db = Db() + obj = {'config_db':db.cfgdb, 'namespace': ''} + yield obj + + +class TestConfigXcvr(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_config_laser_frequency(self, ctx): + #self.basic_check("link-training", ["Ethernet0", "on"], ctx) + result = self.basic_check("frequency", ["Ethernet0", "191300"], ctx) + assert "Setting laser frequency" in result.output + result = self.basic_check("frequency", ["Ethernet0", "--", "-1"], ctx, op=operator.ne) + assert "Error: Frequency must be > 0" in result.output + # Setting laser frequency on a port channel is not supported + result = self.basic_check("frequency", ["PortChannel0001", "191300"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output + + def test_config_tx_power(self, ctx): + result = self.basic_check("tx_power", ["Ethernet0", "11.3"], ctx) + assert "Setting target Tx output power" in result.output + result = self.basic_check("tx_power", ["Ethernet0", "11.34"], ctx, op=operator.ne) + assert "Error: tx power must be with single decimal place" in result.output + # Setting tx power on a port channel is not supported + result = self.basic_check("tx_power", ["PortChannel0001", "11.3"], ctx, operator.ne) + assert 'Invalid port PortChannel0001' in result.output + + def basic_check(self, command_name, para_list, ctx, op=operator.eq, expect_result=0): + runner = CliRunner() + result = runner.invoke(config.config.commands["interface"].commands["transceiver"].commands[command_name], para_list, obj = ctx) + print(result.output) + assert op(result.exit_code, expect_result) + return result diff --git a/tests/conftest.py b/tests/conftest.py index b48d0ef93..c2f0b9166 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -20,6 +20,7 @@ ) from . import config_int_ip_common import utilities_common.constants as constants +import config.main as config test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -145,9 +146,13 @@ def mock_show_bgp_summary( bgp_mocked_json = os.path.join( test_path, 'mock_tables', 'ipv6_bgp_summary_chassis.json') + _old_run_bgp_command = bgp_util.run_bgp_command bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_summary("", "")) + yield + bgp_util.run_bgp_command = _old_run_bgp_command + @pytest.fixture def setup_t1_topo(): @@ -165,11 +170,36 @@ def setup_single_bgp_instance(request): elif request.param == 'v6': bgp_mocked_json = os.path.join( test_path, 'mock_tables', 'ipv6_bgp_summary.json') + elif request.param == 'show_bgp_summary_no_neigh': + bgp_neigh_mocked_json = os.path.join( + test_path, 'mock_tables', 'no_bgp_neigh.json') + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', 'device_bgp_info.json') + elif request.param == 'show_run_bgp': + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', 'show_run_bgp.txt') + elif request.param == 'ip_route': + bgp_mocked_json = 'ip_route.json' + elif request.param == 'ip_specific_route': + bgp_mocked_json = 'ip_specific_route.json' + elif request.param == 'ipv6_specific_route': + bgp_mocked_json = 'ipv6_specific_route.json' + elif request.param == 'ipv6_route': + bgp_mocked_json = 'ipv6_route.json' + elif request.param == 'ip_special_route': + bgp_mocked_json = 'ip_special_route.json' else: bgp_mocked_json = os.path.join( test_path, 'mock_tables', 'dummy.json') - def mock_show_bgp_summary(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVTYSH_COMMAND): + def mock_run_bgp_command(mock_bgp_file): + if os.path.isfile(mock_bgp_file): + with open(mock_bgp_file) as json_data: + mock_frr_data = json_data.read() + return mock_frr_data + return "" + + def mock_show_run_bgp(request): if os.path.isfile(bgp_mocked_json): with open(bgp_mocked_json) as json_data: mock_frr_data = json_data.read() @@ -187,23 +217,26 @@ def mock_run_bgp_command_for_static(vtysh_cmd, bgp_namespace="", vtysh_shell_cmd def mock_run_show_ip_route_commands(request): if request.param == 'ipv6_route_err': return show_ip_route_common.show_ipv6_route_err_expected_output - elif request.param == 'ip_route': - return show_ip_route_common.show_ip_route_expected_output - elif request.param == 'ip_specific_route': - return show_ip_route_common.show_specific_ip_route_expected_output - elif request.param == 'ip_special_route': - return show_ip_route_common.show_special_ip_route_expected_output - elif request.param == 'ipv6_route': - return show_ip_route_common.show_ipv6_route_expected_output - elif request.param == 'ipv6_specific_route': - return show_ip_route_common.show_ipv6_route_single_json_expected_output else: return "" + def mock_run_bgp_route_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVTYSH_COMMAND): + bgp_mocked_json_file = os.path.join( + test_path, 'mock_tables', bgp_mocked_json) + if os.path.isfile(bgp_mocked_json_file): + with open(bgp_mocked_json_file) as json_data: + mock_frr_data = json_data.read() + return mock_frr_data + else: + return "" - if any ([request.param == 'ipv6_route_err', request.param == 'ip_route',\ - request.param == 'ip_specific_route', request.param == 'ip_special_route',\ - request.param == 'ipv6_route', request.param == 'ipv6_specific_route']): + _old_run_bgp_command = bgp_util.run_bgp_command + if any([request.param == 'ip_route', + request.param == 'ip_specific_route', request.param == 'ip_special_route', + request.param == 'ipv6_route', request.param == 'ipv6_specific_route']): + bgp_util.run_bgp_command = mock.MagicMock( + return_value=mock_run_bgp_route_command("", "")) + elif request.param.startswith('ipv6_route_err'): bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_run_show_ip_route_commands(request)) elif request.param.startswith('bgp_v4_neighbor') or \ @@ -211,20 +244,25 @@ def mock_run_show_ip_route_commands(request): bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_neighbor_single_asic(request)) elif request.param.startswith('bgp_v4_network') or \ - request.param.startswith('bgp_v6_network'): + request.param.startswith('bgp_v6_network'): bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_network_single_asic(request)) elif request.param == 'ip_route_for_int_ip': - _old_run_bgp_command = bgp_util.run_bgp_command bgp_util.run_bgp_command = mock_run_bgp_command_for_static + elif request.param.startswith('show_run_bgp'): + bgp_util.run_bgp_command = mock.MagicMock( + return_value=mock_show_run_bgp(request)) + elif request.param == 'show_bgp_summary_no_neigh': + functions_to_call = [mock_run_bgp_command(bgp_neigh_mocked_json), mock_run_bgp_command(bgp_mocked_json)] + bgp_util.run_bgp_command = mock.MagicMock( + side_effect=functions_to_call) else: bgp_util.run_bgp_command = mock.MagicMock( - return_value=mock_show_bgp_summary("", "")) + return_value=mock_run_bgp_command(bgp_mocked_json)) yield - if request.param == 'ip_route_for_int_ip': - bgp_util.run_bgp_command = _old_run_bgp_command + bgp_util.run_bgp_command = _old_run_bgp_command @pytest.fixture @@ -249,6 +287,10 @@ def setup_multi_asic_bgp_instance(request): m_asic_json_file = 'ip_special_recursive_route.json' elif request.param == 'ip_route_summary': m_asic_json_file = 'ip_route_summary.txt' + elif request.param == 'show_run_bgp': + m_asic_json_file = 'show_run_bgp.txt' + elif request.param == 'show_not_running_bgp': + m_asic_json_file = 'show_not_running_bgp.txt' elif request.param.startswith('bgp_v4_network') or \ request.param.startswith('bgp_v6_network') or \ request.param.startswith('bgp_v4_neighbor') or \ @@ -268,7 +310,7 @@ def mock_run_bgp_command_for_static(vtysh_cmd, bgp_namespace="", vtysh_shell_cmd else: return "" - def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVTYSH_COMMAND): + def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVTYSH_COMMAND, exit_on_fail=True): if m_asic_json_file.startswith('bgp_v4_network') or \ m_asic_json_file.startswith('bgp_v6_network'): return mock_show_bgp_network_multi_asic(m_asic_json_file) @@ -286,9 +328,66 @@ def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVT else: return "" + def mock_run_show_sum_bgp_command( + vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.VTYSH_COMMAND, exit_on_fail=True): + if vtysh_cmd == "show ip bgp summary json": + m_asic_json_file = 'no_bgp_neigh.json' + else: + m_asic_json_file = 'device_bgp_info.json' + + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', bgp_namespace, m_asic_json_file) + if os.path.isfile(bgp_mocked_json): + with open(bgp_mocked_json) as json_data: + mock_frr_data = json_data.read() + return mock_frr_data + else: + return "" + + def mock_run_show_summ_bgp_command_no_ext_neigh_on_all_asic( + vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.VTYSH_COMMAND, exit_on_fail=True): + if vtysh_cmd == "show ip bgp summary json": + m_asic_json_file = 'no_ext_bgp_neigh.json' + else: + m_asic_json_file = 'device_bgp_info.json' + + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', bgp_namespace, m_asic_json_file) + if os.path.isfile(bgp_mocked_json): + with open(bgp_mocked_json) as json_data: + mock_frr_data = json_data.read() + return mock_frr_data + else: + return "" + + def mock_run_show_summ_bgp_command_no_ext_neigh_on_asic1( + vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.VTYSH_COMMAND, exit_on_fail=True): + if vtysh_cmd == "show ip bgp summary json": + if bgp_namespace == "asic1": + m_asic_json_file = 'no_ext_bgp_neigh.json' + else: + m_asic_json_file = 'show_ip_bgp_summary.json' + else: + m_asic_json_file = 'device_bgp_info.json' + + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', bgp_namespace, m_asic_json_file) + if os.path.isfile(bgp_mocked_json): + with open(bgp_mocked_json) as json_data: + mock_frr_data = json_data.read() + return mock_frr_data + else: + return "" + _old_run_bgp_command = bgp_util.run_bgp_command if request.param == 'ip_route_for_int_ip': bgp_util.run_bgp_command = mock_run_bgp_command_for_static + elif request.param == 'show_bgp_summary_no_neigh': + bgp_util.run_bgp_command = mock_run_show_sum_bgp_command + elif request.param == 'show_bgp_summary_no_ext_neigh_on_all_asic': + bgp_util.run_bgp_command = mock_run_show_summ_bgp_command_no_ext_neigh_on_all_asic + elif request.param == 'show_bgp_summary_no_ext_neigh_on_asic1': + bgp_util.run_bgp_command = mock_run_show_summ_bgp_command_no_ext_neigh_on_asic1 else: bgp_util.run_bgp_command = mock_run_bgp_command @@ -310,11 +409,25 @@ def setup_bgp_commands(): @pytest.fixture def setup_ip_route_commands(): import show.main as show - return show + @pytest.fixture def setup_fib_commands(): import show.main as show return show + +@pytest.fixture(scope='function') +def mock_restart_dhcp_relay_service(): + print("We are mocking restart dhcp_relay") + origin_funcs = [] + origin_funcs.append(config.vlan.dhcp_relay_util.restart_dhcp_relay_service) + origin_funcs.append(config.vlan.is_dhcp_relay_running) + config.vlan.dhcp_relay_util.restart_dhcp_relay_service = mock.MagicMock(return_value=0) + config.vlan.is_dhcp_relay_running = mock.MagicMock(return_value=True) + + yield + + config.vlan.dhcp_relay_util.restart_dhcp_relay_service = origin_funcs[0] + config.vlan.is_dhcp_relay_running = origin_funcs[1] diff --git a/tests/coredump_gen_handler_test.py b/tests/coredump_gen_handler_test.py index bf4ae8dc7..49ed16e4a 100644 --- a/tests/coredump_gen_handler_test.py +++ b/tests/coredump_gen_handler_test.py @@ -6,6 +6,7 @@ import signal from pyfakefs.fake_filesystem_unittest import Patcher from swsscommon import swsscommon +import utilities_common.auto_techsupport_helper as ts_helper from utilities_common.general import load_module_from_source from utilities_common.db import Db from utilities_common.auto_techsupport_helper import EXT_RETRY @@ -20,6 +21,8 @@ /tmp/saisdkdump """ +TS_DEFAULT_CMD = "show techsupport --silent --global-timeout 60 --since 2 days ago" + def signal_handler(signum, frame): raise Exception("Timed out!") @@ -91,7 +94,7 @@ def mock_cmd(cmd, env): else: return 1, "", "Command Not Found" return 0, AUTO_TS_STDOUT + ts_dump, "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/dump/sonic_dump_random2.tar.gz") patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") @@ -123,7 +126,7 @@ def mock_cmd(cmd, env): else: return 1, "", "Command Not Found" return 0, AUTO_TS_STDOUT + ts_dump, "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/dump/sonic_dump_random2.tar.gz") patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") @@ -157,7 +160,7 @@ def mock_cmd(cmd, env): else: return 1, "", "Command Not Found" return 0, AUTO_TS_STDOUT + ts_dump, "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") cls = cdump_mod.CriticalProcCoreDumpHandle("orchagent.12345.123.core.gz", "swss", redis_mock) @@ -187,7 +190,7 @@ def mock_cmd(cmd, env): else: return 1, "", "Command Not Found" return 0, AUTO_TS_STDOUT + ts_dump, "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/dump/sonic_dump_random2.tar.gz") patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") @@ -218,7 +221,7 @@ def mock_cmd(cmd, env): else: return 1, "", "Command Not Found" return 0, AUTO_TS_STDOUT + ts_dump, "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/core/snmpd.12345.123.core.gz") cls = cdump_mod.CriticalProcCoreDumpHandle("snmpd.12345.123.core.gz", "whatevver", redis_mock) @@ -247,7 +250,7 @@ def mock_cmd(cmd, env): else: return 1, "", "Command Not Found" return 0, AUTO_TS_STDOUT + ts_dump, "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/core/python3.12345.123.core.gz") cls = cdump_mod.CriticalProcCoreDumpHandle("python3.12345.123.core.gz", "snmp", redis_mock) @@ -276,7 +279,7 @@ def mock_cmd(cmd, env): return 0, "", "" else: return 1, "", "Invalid Command" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/dump/sonic_dump_random2.tar.gz") patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") @@ -308,7 +311,7 @@ def mock_cmd(cmd, env): else: return 1, "", "Command Not Found" return 0, AUTO_TS_STDOUT + ts_dump, "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/dump/sonic_dump_random2.tar.gz") patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") @@ -343,7 +346,7 @@ def mock_cmd(cmd, env): return 1, "", "Invalid Date Format" else: return 1, "", "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/dump/sonic_dump_random1.tar.gz") patcher.fs.create_file("/var/dump/sonic_dump_random2.tar.gz") patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") @@ -415,10 +418,10 @@ def test_max_retry_ts_failure(self): def mock_cmd(cmd, env): return EXT_RETRY, "", "" - cdump_mod.subprocess_exec = mock_cmd + ts_helper.subprocess_exec = mock_cmd patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") cls = cdump_mod.CriticalProcCoreDumpHandle("orchagent.12345.123.core.gz", "swss", redis_mock) - + signal.signal(signal.SIGALRM, signal_handler) signal.alarm(5) # 5 seconds try: @@ -427,4 +430,42 @@ def mock_cmd(cmd, env): assert False, "Method should not time out" finally: signal.alarm(0) + + def test_auto_ts_options(self): + """ + Scenario: Check if the techsupport is called as expected + """ + db_wrap = Db() + redis_mock = db_wrap.db + set_auto_ts_cfg(redis_mock, state="enabled", since_cfg="2 days ago") + set_feature_table_cfg(redis_mock, state="enabled") + with Patcher() as patcher: + def mock_cmd(cmd, env): + cmd_str = " ".join(cmd) + if "show techsupport" in cmd_str and cmd_str != TS_DEFAULT_CMD: + assert False, "Expected TS_CMD: {}, Recieved: {}".format(TS_DEFAULT_CMD, cmd_str) + return 0, AUTO_TS_STDOUT, "" + ts_helper.subprocess_exec = mock_cmd + patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") + cls = cdump_mod.CriticalProcCoreDumpHandle("orchagent.12345.123.core.gz", "swss", redis_mock) + cls.handle_core_dump_creation_event() + def test_auto_ts_empty_state_db(self): + """ + Scenario: Check if the techsupport is called as expected even when the history table in empty + and container cooloff is non-zero + """ + db_wrap = Db() + redis_mock = db_wrap.db + set_auto_ts_cfg(redis_mock, state="enabled", since_cfg="2 days ago") + set_feature_table_cfg(redis_mock, state="enabled", rate_limit_interval="300") + with Patcher() as patcher: + def mock_cmd(cmd, env): + cmd_str = " ".join(cmd) + if "show techsupport" in cmd_str and cmd_str != TS_DEFAULT_CMD: + assert False, "Expected TS_CMD: {}, Recieved: {}".format(TS_DEFAULT_CMD, cmd_str) + return 0, AUTO_TS_STDOUT, "" + ts_helper.subprocess_exec = mock_cmd + patcher.fs.create_file("/var/core/orchagent.12345.123.core.gz") + cls = cdump_mod.CriticalProcCoreDumpHandle("orchagent.12345.123.core.gz", "swss", redis_mock) + cls.handle_core_dump_creation_event() diff --git a/tests/counterpoll_test.py b/tests/counterpoll_test.py index 7a8171825..4a4da07ee 100644 --- a/tests/counterpoll_test.py +++ b/tests/counterpoll_test.py @@ -25,7 +25,8 @@ QUEUE_WATERMARK_STAT default (60000) enable PG_WATERMARK_STAT default (60000) enable PG_DROP_STAT 10000 enable -ACL 10000 enable +ACL 5000 enable +TUNNEL_STAT 3000 enable FLOW_CNT_TRAP_STAT 10000 enable FLOW_CNT_ROUTE_STAT 10000 enable """ diff --git a/tests/crm_test.py b/tests/crm_test.py index 24ced116c..6b3f32ed9 100644 --- a/tests/crm_test.py +++ b/tests/crm_test.py @@ -1033,6 +1033,8 @@ """ +crm_config_interval_too_big = "Error: Invalid value for \"INTERVAL\": 30000 is not in the valid range of 1 to 9999." + class TestCrm(object): @classmethod def setup_class(cls): @@ -1053,6 +1055,18 @@ def test_crm_show_summary(self): assert result.exit_code == 0 assert result.output == crm_new_show_summary + def test_crm_config_polling_interval(self): + runner = CliRunner() + db = Db() + result = runner.invoke(crm.cli, ['config', 'polling', 'interval', '10'], obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 0 + result = runner.invoke(crm.cli, ['config', 'polling', 'interval', '30000'], obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 2 + assert crm_config_interval_too_big in result.output + + def test_crm_show_thresholds_acl_group(self): runner = CliRunner() db = Db() diff --git a/tests/db_migrator_input/appl_db/acs-msn2700-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/acs-msn2700-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn2700-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/acs-msn2700-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/acs-msn2700-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/acs-msn2700-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn2700-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/acs-msn2700-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/acs-msn2700-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/acs-msn2700-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn2700-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/acs-msn2700-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/acs-msn2700-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/acs-msn2700-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn2700-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/acs-msn2700-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/acs-msn3700-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/acs-msn3700-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn3700-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/acs-msn3700-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/acs-msn3700-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/acs-msn3700-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn3700-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/acs-msn3700-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/acs-msn3700-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/acs-msn3700-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn3700-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/acs-msn3700-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/acs-msn3700-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/acs-msn3700-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn3700-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/acs-msn3700-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/acs-msn3800-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/acs-msn3800-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn3800-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/acs-msn3800-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/acs-msn3800-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/acs-msn3800-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn3800-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/acs-msn3800-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/acs-msn3800-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/acs-msn3800-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn3800-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/acs-msn3800-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/acs-msn3800-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/acs-msn3800-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn3800-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/acs-msn3800-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/acs-msn4700-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/acs-msn4700-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn4700-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/acs-msn4700-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/acs-msn4700-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/acs-msn4700-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn4700-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/acs-msn4700-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/acs-msn4700-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/acs-msn4700-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn4700-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/acs-msn4700-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/acs-msn4700-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/acs-msn4700-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/acs-msn4700-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/acs-msn4700-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_expected.json b/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_expected.json new file mode 100644 index 000000000..5d40ad319 --- /dev/null +++ b/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_expected.json @@ -0,0 +1,8 @@ +{ + "INTF_TABLE:Loopback0" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback0:10.1.0.32/32" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback0:FC00:1::32/128" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback1" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback1:10.20.8.199/32" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback1:2001:506:28:500::1/128" : {"NULL": "NULL"} +} diff --git a/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_input.json b/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_input.json new file mode 100644 index 000000000..4326e37ec --- /dev/null +++ b/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_input.json @@ -0,0 +1,18 @@ +{ + "INTF_TABLE:lo:10.1.0.32/32" : { + "scope": "global", + "family": "IPv4" + }, + "INTF_TABLE:lo:FC00:1::32/128" : { + "scope": "global", + "family": "IPv6" + }, + "INTF_TABLE:lo:10.20.8.199/32" : { + "scope": "global", + "family": "IPv4" + }, + "INTF_TABLE:lo:2001:506:28:500::1/128" : { + "scope": "global", + "family": "IPv6" + } +} \ No newline at end of file diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn2700-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn2700-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn2700-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn2700-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-c64-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t0-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t0-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t0-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t0-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t1-version_2_0_0.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t1-version_2_0_0.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json diff --git a/tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t1-version_2_0_3.json b/tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t1-version_2_0_3.json rename to tests/db_migrator_input/appl_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/qos_tables_db_field_value_reference_format_2_0_1.json b/tests/db_migrator_input/appl_db/qos_tables_db_field_value_reference_format_3_0_1.json similarity index 100% rename from tests/db_migrator_input/appl_db/qos_tables_db_field_value_reference_format_2_0_1.json rename to tests/db_migrator_input/appl_db/qos_tables_db_field_value_reference_format_3_0_1.json diff --git a/tests/db_migrator_input/appl_db/qos_tables_db_field_value_reference_format_2_0_3.json b/tests/db_migrator_input/appl_db/qos_tables_db_field_value_reference_format_3_0_3.json similarity index 100% rename from tests/db_migrator_input/appl_db/qos_tables_db_field_value_reference_format_2_0_3.json rename to tests/db_migrator_input/appl_db/qos_tables_db_field_value_reference_format_3_0_3.json diff --git a/tests/db_migrator_input/appl_db/routes_migrate_expected.json b/tests/db_migrator_input/appl_db/routes_migrate_expected.json new file mode 100644 index 000000000..5cad371c3 --- /dev/null +++ b/tests/db_migrator_input/appl_db/routes_migrate_expected.json @@ -0,0 +1,12 @@ +{ + "ROUTE_TABLE:192.168.104.0/25": { + "nexthop": "10.0.0.57,10.0.0.59,10.0.0.61,10.0.0.63", + "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104", + "weight": "" + }, + "ROUTE_TABLE:20c0:fe28:0:80::/64": { + "nexthop": "fc00::72,fc00::76,fc00::7a,fc00::7e", + "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104", + "weight": "" + } +} diff --git a/tests/db_migrator_input/appl_db/routes_migrate_input.json b/tests/db_migrator_input/appl_db/routes_migrate_input.json new file mode 100644 index 000000000..7249488cd --- /dev/null +++ b/tests/db_migrator_input/appl_db/routes_migrate_input.json @@ -0,0 +1,10 @@ +{ + "ROUTE_TABLE:192.168.104.0/25": { + "nexthop": "10.0.0.57,10.0.0.59,10.0.0.61,10.0.0.63", + "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104" + }, + "ROUTE_TABLE:20c0:fe28:0:80::/64": { + "nexthop": "fc00::72,fc00::76,fc00::7a,fc00::7e", + "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104" + } +} diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_1.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_1.json index 731bcea1f..c9e5c04a5 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_1.json @@ -731,6 +731,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_2.json index 9c01e38da..07966ad74 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_2.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_3.json index 2ef38d24e..66f6c5828 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_3.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_4.json index d92a6336b..6848917e0 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_4.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_5.json index 84eccb497..96fd7dd80 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_5.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_6.json index 98130c4ba..f54936898 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_6.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn2700-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json index 76ed34269..9eedab4ab 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json @@ -681,7 +681,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "ACS-MSN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -689,7 +689,8 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1014,6 +1015,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn2700-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json index 3f70cfa87..3b4092c18 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json @@ -681,7 +681,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "ACS-MSN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -689,7 +689,8 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1014,6 +1015,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_1.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_1.json index 62a74e7d5..c97f51d5a 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_1.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_2.json index 48c6e36a8..25d270157 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_2.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_3.json index 2f37a3e23..9a438f3b1 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_3.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_4.json index 837abc8b5..13758db25 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_4.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_5.json index f24650a27..6557d7f90 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_5.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_6.json index b3b4b3127..205620de9 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_6.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn2700-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json index be1f36d71..321227f77 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json @@ -754,6 +754,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -761,7 +762,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1086,6 +1087,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn2700-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json index 44246edd6..ac6cc0346 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json @@ -761,7 +761,8 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1086,6 +1087,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_2.json index dad6528bd..e3bb4f100 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_2.json @@ -738,6 +738,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_3.json index ed90ec38f..ee33adc89 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_3.json @@ -864,6 +864,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_4.json index 508dc5dc7..45af1c299 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_4.json @@ -864,6 +864,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_5.json index 4ed4668d8..04448a266 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_5.json @@ -864,6 +864,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_6.json index 48ba24ab3..825d3c495 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_6.json @@ -864,6 +864,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn3700-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_0.json index c79217b1c..18876fb48 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_0.json @@ -808,6 +808,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", @@ -1900,6 +1901,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn3700-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_3.json index 598b9b16c..eb6138bdc 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_3.json @@ -817,7 +817,8 @@ "buffer_model": "dynamic", "deployment_id": "1", "docker_routing_config_mode": "separated", - "cloudtype": "None" + "cloudtype": "None", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1900,6 +1901,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_2.json index d2a129036..80d96b8bc 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_2.json @@ -838,6 +838,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_3.json index 57b106555..0743a08bf 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_3.json @@ -940,6 +940,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_4.json index e97efaa06..764e2639f 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_4.json @@ -940,6 +940,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_5.json index 0e4d8035b..431218c6c 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_5.json @@ -940,6 +940,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_6.json index bb26b43b5..a815bf97d 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_6.json @@ -940,6 +940,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn3700-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_0.json index a756fde63..c3fb115b8 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_0.json @@ -856,6 +856,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", @@ -1948,6 +1949,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn3700-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_3.json index 684b52910..fc34c0870 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_3.json @@ -865,7 +865,8 @@ "buffer_model": "dynamic", "deployment_id": "1", "docker_routing_config_mode": "separated", - "cloudtype": "None" + "cloudtype": "None", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1948,6 +1949,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_5.json index b6fddf621..df40c5049 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_5.json @@ -988,6 +988,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_6.json index c655ab4de..aadef8ed0 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_6.json @@ -988,6 +988,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn3800-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_0.json index d367b5dca..13723251c 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_0.json @@ -971,6 +971,7 @@ "buffer_model": "dynamic", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { @@ -2034,6 +2035,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn3800-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_3.json index add7cf037..a1f6a8e1f 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_3.json @@ -971,7 +971,8 @@ "buffer_model": "dynamic", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -2034,6 +2035,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_5.json index 9ea07af0f..2916e541c 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_5.json @@ -1102,6 +1102,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_6.json index 049834652..e80ca3386 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_6.json @@ -1102,6 +1102,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn3800-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_0.json index 9a14f0659..b399934c7 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_0.json @@ -1019,6 +1019,7 @@ "buffer_model": "dynamic", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { @@ -2082,6 +2083,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn3800-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_3.json index b930cc463..d97c95c53 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_3.json @@ -1019,7 +1019,8 @@ "buffer_model": "dynamic", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -2082,6 +2083,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_4.json index 34b697493..1e71535a5 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_4.json @@ -745,6 +745,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_5.json index 313ca9793..c90b68bee 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_5.json @@ -949,6 +949,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_6.json index 1eb7bc9ff..553cd3fdc 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_6.json @@ -949,6 +949,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn4700-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_0.json index d0c5b0634..a421b638f 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_0.json @@ -886,6 +886,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", @@ -1978,6 +1979,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn4700-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_3.json index fdcd78b5b..b00b45ac2 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_3.json @@ -886,6 +886,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", @@ -1978,6 +1979,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_4.json index 763342e14..5adef7f9e 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_4.json @@ -1050,6 +1050,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_5.json index c043e37bf..a71bc6497 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_5.json @@ -1050,6 +1050,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_6.json index 6716ec67b..6bcb4affc 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_6.json @@ -1050,6 +1050,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn4700-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_0.json index 05dc4f555..5b6ff7d6a 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_0.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", @@ -2044,6 +2045,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/acs-msn4700-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_3.json index 933844321..3aedb14d1 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_3.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", @@ -2044,6 +2045,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_3_0_7_expected.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_3_0_7_expected.json new file mode 100644 index 000000000..046eba776 --- /dev/null +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_3_0_7_expected.json @@ -0,0 +1,19 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_3_0_7" + }, + "FLEX_COUNTER_TABLE|ACL": { + "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_DELAY_STATUS": "true", + "POLL_INTERVAL": "10000" + }, + "FLEX_COUNTER_TABLE|QUEUE": { + "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_DELAY_STATUS": "true", + "POLL_INTERVAL": "10000" + }, + "FLEX_COUNTER_TABLE|PG_WATERMARK": { + "FLEX_COUNTER_STATUS": "false", + "FLEX_COUNTER_DELAY_STATUS": "true" + } +} diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_3_0_7_input.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_3_0_7_input.json new file mode 100644 index 000000000..07ce76368 --- /dev/null +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_3_0_7_input.json @@ -0,0 +1,18 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_1_0_1" + }, + "FLEX_COUNTER_TABLE|ACL": { + "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_DELAY_STATUS": "true", + "POLL_INTERVAL": "10000" + }, + "FLEX_COUNTER_TABLE|QUEUE": { + "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_DELAY_STATUS": "false", + "POLL_INTERVAL": "10000" + }, + "FLEX_COUNTER_TABLE|PG_WATERMARK": { + "FLEX_COUNTER_STATUS": "false" + } +} diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json new file mode 100644 index 000000000..445d06010 --- /dev/null +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json @@ -0,0 +1,29 @@ +{ + "RESTAPI|config": { + "client_auth": "true", + "log_level": "info", + "allow_insecure": "false" + }, + "RESTAPI|certs": { + "server_key": "/etc/sonic/credentials/restapi.key", + "ca_crt": "/etc/sonic/credentials/restapi.crt", + "server_crt": "/etc/sonic/credentials/restapi.crt", + "client_crt_cname": "client.restapi.sonic" + }, + "TELEMETRY|gnmi": { + "client_auth": "true", + "log_level": "2", + "port": "50051" + }, + "TELEMETRY|certs": { + "server_key": "/etc/sonic/telemetry/streamingtelemetryserver.key", + "ca_crt": "/etc/sonic/telemetry/dsmsroot.cer", + "server_crt": "/etc/sonic/telemetry/streamingtelemetryserver.cer" + }, + "CONSOLE_SWITCH|console_mgmt": { + "enabled": "no" + }, + "DEVICE_METADATA|localhost": { + "docker_routing_config_mode": "separated" + } +} \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json new file mode 100644 index 000000000..a0b63b567 --- /dev/null +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json @@ -0,0 +1,6 @@ +{ + "DEVICE_METADATA|localhost": { + "docker_routing_config_mode": "unified" + } +} + diff --git a/tests/db_migrator_input/config_db/empty-config-expected.json b/tests/db_migrator_input/config_db/empty-config-expected.json index 811151634..eba0ae3f8 100644 --- a/tests/db_migrator_input/config_db/empty-config-expected.json +++ b/tests/db_migrator_input/config_db/empty-config-expected.json @@ -1,5 +1,9 @@ { "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" + }, + "DEVICE_METADATA|localhost": { + "synchronous_mode": "enable", + "docker_routing_config_mode": "separated" } } diff --git a/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_expected.json b/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_expected.json new file mode 100644 index 000000000..0d98a49ff --- /dev/null +++ b/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_expected.json @@ -0,0 +1,8 @@ +{ + "LOOPBACK_INTERFACE|Loopback0" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback0|10.1.0.32/32" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback0|FC00:1::32/128" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1|10.20.8.199/32" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1|2001:506:28:500::1/128" : {"NULL": "NULL"} +} diff --git a/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_input.json b/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_input.json new file mode 100644 index 000000000..58832dc51 --- /dev/null +++ b/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_input.json @@ -0,0 +1,7 @@ +{ + "LOOPBACK_INTERFACE|Loopback0|10.1.0.32/32" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback0|FC00:1::32/128" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1|10.20.8.199/32" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1|2001:506:28:500::1/128" : {"NULL": "NULL"}, + "VERSIONS|DATABASE": {"VERSION": "version_1_0_1"} +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_4.json index 4509a5558..8add09883 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_4.json @@ -726,6 +726,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_5.json index 44c05c9df..af2f6b4d5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_5.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_6.json index c5369e634..9881ff7ba 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_6.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json index af7b580c1..59d087753 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -734,7 +735,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1055,6 +1056,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json index 22850ddc1..5fe2bf31f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1055,6 +1056,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_4.json index 0acf1b0fa..c89504ce6 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_4.json @@ -819,6 +819,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_5.json index 91e78b8b9..c8464391d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_5.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_6.json index c7d7070c7..16845fd95 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_6.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json index 2b680a34e..bd11e9136 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -827,7 +828,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1148,6 +1149,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json index 077e8e847..1f9d19c5a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1148,6 +1149,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_1.json index b85b85118..e960998c4 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_1.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_2.json index 6648cce02..f4c80a013 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_2.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_3.json index c80dce587..920f88d46 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_3.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_4.json index 2ba6c8253..d150d1a30 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_4.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_5.json index 70e25898c..e3ff2f75d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_5.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_6.json index 8b978e50a..2f7972349 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_6.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json index fd5510244..80cb0b4a8 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -739,7 +740,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1060,6 +1061,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json index 5144e7fbc..e2b89c2a2 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json @@ -739,7 +739,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1060,6 +1061,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_1.json index 7ec20f8ce..b5e515a4a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_1.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_2.json index 31a1179ad..472550b67 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_2.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_3.json index 855b16afc..6c562bc0c 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_3.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_4.json index 2b0ad7852..13e241b80 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_4.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_5.json index 19aeca0bc..2890da130 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_5.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_6.json index 9c6b896de..8098a3cf3 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_6.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json index 38428be26..04b851816 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -832,7 +833,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1153,6 +1154,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json index 32c0814a7..60fd253db 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json @@ -832,7 +832,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1153,6 +1154,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_5.json index 752f4001c..f0ef79e91 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_5.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_6.json index 288e0e727..97bfefde0 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_6.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json index 2513d4008..576bb3d90 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -734,7 +735,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1055,6 +1056,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json index 842f8622d..3adabbb6a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1055,6 +1056,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_5.json index 94ec23885..770a58642 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_5.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_6.json index b848c6779..998a3f39e 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_6.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json index cf2d4ecdd..0f867189b 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -827,7 +828,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1148,6 +1149,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json index da9416a42..5fc6f8cfd 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1148,6 +1149,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_4.json index 53921af16..5854e6456 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_4.json @@ -726,6 +726,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_5.json index 9e3c1387a..ea741ecae 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_5.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_6.json index 60e34b701..4ca5faa56 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_6.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json index 8fc412814..6f3903bbf 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -734,7 +735,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1055,6 +1056,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json index 62ad538df..782618086 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1055,6 +1056,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_4.json index 647a0eeff..6486ebdb2 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_4.json @@ -819,6 +819,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_5.json index ed3bf55e6..3ae16cd14 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_5.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_6.json index a57f2b684..853bb5c17 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_6.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json index 171cbe43d..fd88b64fe 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -827,7 +828,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1148,6 +1149,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json index b6464b117..5d3aa563c 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1148,6 +1149,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_1.json index 2e9f075fb..379445f81 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_1.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_2.json index 1bb45cc2c..379480763 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_2.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_3.json index 6df051fab..667779309 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_3.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_4.json index 83edfa3b5..819e670ce 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_4.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_5.json index 87788b7bb..6e351f2a7 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_5.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_6.json index e53191818..1e61a9e93 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_6.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json index 111912648..60327d71a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -739,7 +740,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1060,6 +1061,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json index 3de072f4b..5b6304f50 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json @@ -739,7 +739,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1060,6 +1061,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_1.json index 93b622b86..eaedbbb10 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_1.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_2.json index 5fea4f31b..52f3d5070 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_2.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_3.json index 69331752c..51fecae2d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_3.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_4.json index 226ecf053..b18cc6e41 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_4.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_5.json index f1a2f4fc9..7b22d88c9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_5.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_6.json index e43f55ee8..7ae6b0909 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_6.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json index 436e5a480..c67a2081d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -832,7 +833,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1153,6 +1154,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json index 9571eb9c9..f786f4bbd 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json @@ -832,7 +832,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1153,6 +1154,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_4.json index fdc77e9a4..478aa3dc7 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_4.json @@ -732,7 +732,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_5.json index 0e0d4e91b..ead6486d1 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_5.json @@ -733,7 +733,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_6.json index 37a3cc2bf..d20b0db1f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_6.json @@ -733,7 +733,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json index 093ea2c7d..3119633f2 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json @@ -726,7 +726,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1055,6 +1056,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json index e9a3ce033..ad89f6409 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json @@ -726,7 +726,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1055,6 +1056,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_4.json index c99bad1dc..5c876d66f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_4.json @@ -819,6 +819,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_5.json index 4bf50c345..bb5b2da3b 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_5.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_6.json index 8c35bd19d..b290fd57e 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_6.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json index 0e07eb8f5..b8ddd6574 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -827,7 +828,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1148,6 +1149,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json index d150a9667..84db72846 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1148,6 +1149,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_1.json index 4a38a382f..94ecade33 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_1.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_2.json index da5d5ebef..f97f5dd55 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_2.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_3.json index c518a0a9c..3843271a4 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_3.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_4.json index de2923626..80a9ff5c0 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_4.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_5.json index 967726dbb..0f078f707 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_5.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_6.json index 088c63f51..9fdbcf7a2 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_6.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json index 106113549..8286ced5e 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -739,7 +740,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1060,6 +1061,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json index 8422c1e65..a0844eaf5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json @@ -739,7 +739,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1060,6 +1061,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_1.json index e0b75fa48..eaabe7469 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_1.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_2.json index 5a7858224..d98d906e4 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_2.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_3.json index a54358373..15333f005 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_3.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_4.json index 5b1bceeab..6bb8c338d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_4.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_5.json index 76ec1bb52..feb158e4a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_5.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_6.json index 81f7377f8..a5eaedbb8 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_6.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json index 7d9192a52..a55086990 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -832,7 +833,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1153,6 +1154,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json index 3012654e7..8a30df2ab 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json @@ -832,7 +832,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1153,6 +1154,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_5.json index 94d64196a..79bd49a9a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_5.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_6.json index e0d47020e..3b7815cc1 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_6.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_0.json index b69b2cf01..6422d9ce1 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_0.json @@ -705,6 +705,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -1764,6 +1765,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_3.json index a27361ef0..027cc5325 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_3.json @@ -705,7 +705,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1764,6 +1765,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_5.json index a299500e5..625605159 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_5.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_6.json index e5f078c95..0961703d9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_6.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_0.json index 318bed85a..d172932f5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_0.json @@ -827,6 +827,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -1886,6 +1887,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_3.json index 901bc3fe6..c0ca921d9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1886,6 +1887,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_5.json index 3d1650b1f..85c078c8c 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_5.json @@ -984,6 +984,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_6.json index 85664d39e..9db400fb9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_6.json @@ -984,6 +984,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json index fa15acac8..85c2cfbab 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json @@ -985,6 +985,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -2044,6 +2045,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json index 9cddd1623..41b514410 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json @@ -985,7 +985,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -2044,6 +2045,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_5.json index f0576552a..c7809b711 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_5.json @@ -1098,6 +1098,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_6.json index 9e08f652f..2bf0ab702 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_6.json @@ -1098,6 +1098,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json index 9093aa176..349bd02ff 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json @@ -1099,6 +1099,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -2158,6 +2159,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json index 6169646c0..a3c05d3bb 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json @@ -1099,7 +1099,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -2158,6 +2159,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_5.json index 9b331a15d..7808bc454 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_5.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_6.json index edefc7e4b..a76586564 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_6.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json index a4477de9a..939421569 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json @@ -705,6 +705,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -1764,6 +1765,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json index 9358cc568..0d5131d57 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json @@ -705,7 +705,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1764,6 +1765,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_5.json index 5a0c41c85..875df3644 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_5.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_6.json index 5a0c41c85..875df3644 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_6.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json index 4772573a6..07790160c 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json @@ -827,6 +827,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -1886,6 +1887,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json index 0ae91b3c5..a6cd6671f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1886,6 +1887,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_5.json index 340de9a2f..0cf068320 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_5.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_6.json index 5d439de32..760dc26fa 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_6.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json index 941a6fdb7..3e2998210 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json @@ -705,6 +705,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -1764,6 +1765,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json index 362f763df..67971e733 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json @@ -705,7 +705,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1764,6 +1765,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_5.json index 97403e343..5cd8f639a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_5.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_6.json index 97403e343..5cd8f639a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_6.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_2_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_2_0_0.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json index 429324cb1..3448ef3a3 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_2_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json @@ -827,6 +827,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -1886,6 +1887,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_2_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_2_0_3.json rename to tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json index 0a97a493e..cb94646dc 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_2_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1886,6 +1887,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/non-default-config-expected.json b/tests/db_migrator_input/config_db/non-default-config-expected.json index dab1997e2..a3b0c1ba2 100644 --- a/tests/db_migrator_input/config_db/non-default-config-expected.json +++ b/tests/db_migrator_input/config_db/non-default-config-expected.json @@ -754,7 +754,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "ACS-MSN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -762,7 +762,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "1", @@ -1115,6 +1116,6 @@ "speed": "50000" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/non-default-config-input.json b/tests/db_migrator_input/config_db/non-default-config-input.json index b806793fc..44ee11f4b 100644 --- a/tests/db_migrator_input/config_db/non-default-config-input.json +++ b/tests/db_migrator_input/config_db/non-default-config-input.json @@ -730,14 +730,15 @@ "DEVICE_METADATA|localhost": { "hwsku": "ACS-MSN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-expected.json b/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-expected.json index b0e640078..fd7241724 100644 --- a/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-expected.json +++ b/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-expected.json @@ -956,6 +956,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", @@ -2044,6 +2045,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-input.json b/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-input.json index 94e3f8004..a043137f2 100644 --- a/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-input.json +++ b/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-input.json @@ -956,6 +956,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-expected.json b/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-expected.json index f42708ea4..fd8550953 100644 --- a/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-expected.json +++ b/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-expected.json @@ -954,6 +954,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", @@ -2042,6 +2043,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-input.json b/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-input.json index 85d5da7ea..e6c28d0c1 100644 --- a/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-input.json +++ b/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-input.json @@ -954,6 +954,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-pg-expected.json b/tests/db_migrator_input/config_db/non-default-pg-expected.json index efa881e34..2a0aa7869 100644 --- a/tests/db_migrator_input/config_db/non-default-pg-expected.json +++ b/tests/db_migrator_input/config_db/non-default-pg-expected.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", @@ -2040,6 +2041,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/non-default-pg-input.json b/tests/db_migrator_input/config_db/non-default-pg-input.json index 87c8d59a0..059245171 100644 --- a/tests/db_migrator_input/config_db/non-default-pg-input.json +++ b/tests/db_migrator_input/config_db/non-default-pg-input.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-xoff-expected.json b/tests/db_migrator_input/config_db/non-default-xoff-expected.json index 0d762a5ba..29075900f 100644 --- a/tests/db_migrator_input/config_db/non-default-xoff-expected.json +++ b/tests/db_migrator_input/config_db/non-default-xoff-expected.json @@ -990,6 +990,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { @@ -2049,6 +2050,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/non-default-xoff-input.json b/tests/db_migrator_input/config_db/non-default-xoff-input.json index aa9d8574e..032e6112a 100644 --- a/tests/db_migrator_input/config_db/non-default-xoff-input.json +++ b/tests/db_migrator_input/config_db/non-default-xoff-input.json @@ -989,6 +989,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/port-an-expected.json b/tests/db_migrator_input/config_db/port-an-expected.json index 1f3a46120..1ef2cf491 100644 --- a/tests/db_migrator_input/config_db/port-an-expected.json +++ b/tests/db_migrator_input/config_db/port-an-expected.json @@ -35,6 +35,6 @@ "fec": "none" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_1" + "VERSION": "version_3_0_1" } } diff --git a/tests/db_migrator_input/config_db/port-an-input.json b/tests/db_migrator_input/config_db/port-an-input.json index 373c9ae98..6cda38813 100644 --- a/tests/db_migrator_input/config_db/port-an-input.json +++ b/tests/db_migrator_input/config_db/port-an-input.json @@ -34,6 +34,6 @@ "fec": "none" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_0" + "VERSION": "version_3_0_0" } } \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/portchannel-expected.json b/tests/db_migrator_input/config_db/portchannel-expected.json index acc61d131..2644e5f4e 100644 --- a/tests/db_migrator_input/config_db/portchannel-expected.json +++ b/tests/db_migrator_input/config_db/portchannel-expected.json @@ -33,7 +33,7 @@ "lacp_key": "auto" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_2" + "VERSION": "version_3_0_2" } } diff --git a/tests/db_migrator_input/config_db/portchannel-input.json b/tests/db_migrator_input/config_db/portchannel-input.json index 5a890755a..753a88601 100644 --- a/tests/db_migrator_input/config_db/portchannel-input.json +++ b/tests/db_migrator_input/config_db/portchannel-input.json @@ -28,6 +28,6 @@ "mtu": "9100" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_1" + "VERSION": "version_3_0_1" } } diff --git a/tests/db_migrator_input/config_db/qos_map_table_expected.json b/tests/db_migrator_input/config_db/qos_map_table_expected.json index 946f7f02d..47381ec55 100644 --- a/tests/db_migrator_input/config_db/qos_map_table_expected.json +++ b/tests/db_migrator_input/config_db/qos_map_table_expected.json @@ -1,36 +1,34 @@ { "VERSIONS|DATABASE": { - "VERSION": "version_2_0_5" + "VERSION": "version_3_0_5" }, - "PORT_QOS_MAP": { - "Ethernet0": { - "dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]", - "pfc_enable": "3,4", - "pfcwd_sw_enable": "3,4", - "pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]", - "tc_to_pg_map": "[TC_TO_PRIORITY_GROUP_MAP|AZURE]", - "tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]" - }, - "Ethernet100": { - "dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]", - "pfc_enable": "3,4", - "pfcwd_sw_enable": "3,4", - "pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]", - "tc_to_pg_map": "[TC_TO_PRIORITY_GROUP_MAP|AZURE]", - "tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]" - }, - "Ethernet92": { - "dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]", - "pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]", - "tc_to_pg_map": "[TC_TO_PRIORITY_GROUP_MAP|AZURE]", - "tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]" - }, - "Ethernet96": { - "dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]", - "pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]", - "tc_to_pg_map": "[TC_TO_PRIORITY_GROUP_MAP|AZURE]", - "tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]" - } + "PORT_QOS_MAP|Ethernet0": { + "dscp_to_tc_map": "AZURE", + "pfc_enable": "3,4", + "pfcwd_sw_enable": "3,4", + "pfc_to_queue_map": "AZURE", + "tc_to_pg_map": "AZURE", + "tc_to_queue_map": "AZURE" + }, + "PORT_QOS_MAP|Ethernet100": { + "dscp_to_tc_map": "AZURE", + "pfc_enable": "3,4", + "pfcwd_sw_enable": "3,4", + "pfc_to_queue_map": "AZURE", + "tc_to_pg_map": "AZURE", + "tc_to_queue_map": "AZURE" + }, + "PORT_QOS_MAP|Ethernet92": { + "dscp_to_tc_map": "AZURE", + "pfc_to_queue_map": "AZURE", + "tc_to_pg_map": "AZURE", + "tc_to_queue_map": "AZURE" + }, + "PORT_QOS_MAP|Ethernet96": { + "dscp_to_tc_map": "AZURE", + "pfc_to_queue_map": "AZURE", + "tc_to_pg_map": "AZURE", + "tc_to_queue_map": "AZURE" } } diff --git a/tests/db_migrator_input/config_db/qos_map_table_global_expected.json b/tests/db_migrator_input/config_db/qos_map_table_global_expected.json new file mode 100644 index 000000000..db2096144 --- /dev/null +++ b/tests/db_migrator_input/config_db/qos_map_table_global_expected.json @@ -0,0 +1,12 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_2_0_1" + }, + "DSCP_TO_TC_MAP|AZURE": { + "0": "0", + "1": "1" + }, + "PORT_QOS_MAP|global": { + "dscp_to_tc_map": "AZURE" + } +} diff --git a/tests/db_migrator_input/config_db/qos_map_table_global_input.json b/tests/db_migrator_input/config_db/qos_map_table_global_input.json new file mode 100644 index 000000000..dd4b78bb0 --- /dev/null +++ b/tests/db_migrator_input/config_db/qos_map_table_global_input.json @@ -0,0 +1,10 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_2_0_0" + }, + "DSCP_TO_TC_MAP|AZURE": { + "0": "0", + "1": "1" + } +} + diff --git a/tests/db_migrator_input/config_db/qos_map_table_input.json b/tests/db_migrator_input/config_db/qos_map_table_input.json index c7dbce965..c62e293da 100644 --- a/tests/db_migrator_input/config_db/qos_map_table_input.json +++ b/tests/db_migrator_input/config_db/qos_map_table_input.json @@ -1,34 +1,31 @@ { "VERSIONS|DATABASE": { - "VERSION": "version_2_0_4" + "VERSION": "version_3_0_4" }, - "PORT_QOS_MAP": { - "Ethernet0": { - "dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]", - "pfc_enable": "3,4", - "pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]", - "tc_to_pg_map": "[TC_TO_PRIORITY_GROUP_MAP|AZURE]", - "tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]" - }, - "Ethernet100": { - "dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]", - "pfc_enable": "3,4", - "pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]", - "tc_to_pg_map": "[TC_TO_PRIORITY_GROUP_MAP|AZURE]", - "tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]" - }, - "Ethernet92": { - "dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]", - "pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]", - "tc_to_pg_map": "[TC_TO_PRIORITY_GROUP_MAP|AZURE]", - "tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]" - }, - "Ethernet96": { - "dscp_to_tc_map": "[DSCP_TO_TC_MAP|AZURE]", - "pfc_to_queue_map": "[MAP_PFC_PRIORITY_TO_QUEUE|AZURE]", - "tc_to_pg_map": "[TC_TO_PRIORITY_GROUP_MAP|AZURE]", - "tc_to_queue_map": "[TC_TO_QUEUE_MAP|AZURE]" - } + "PORT_QOS_MAP|Ethernet0": { + "dscp_to_tc_map": "AZURE", + "pfc_enable": "3,4", + "pfc_to_queue_map": "AZURE", + "tc_to_pg_map": "AZURE", + "tc_to_queue_map": "AZURE" + }, + "PORT_QOS_MAP|Ethernet100": { + "dscp_to_tc_map": "AZURE", + "pfc_enable": "3,4", + "pfc_to_queue_map": "AZURE", + "tc_to_pg_map": "AZURE", + "tc_to_queue_map": "AZURE" + }, + "PORT_QOS_MAP|Ethernet92": { + "dscp_to_tc_map": "AZURE", + "pfc_to_queue_map": "AZURE", + "tc_to_pg_map": "AZURE", + "tc_to_queue_map": "AZURE" + }, + "PORT_QOS_MAP|Ethernet96": { + "dscp_to_tc_map": "AZURE", + "pfc_to_queue_map": "AZURE", + "tc_to_pg_map": "AZURE", + "tc_to_queue_map": "AZURE" } } - diff --git a/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_2_0_1.json b/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_1.json similarity index 99% rename from tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_2_0_1.json rename to tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_1.json index 4b14ad756..b252cba1d 100644 --- a/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_2_0_1.json +++ b/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_1.json @@ -1050,7 +1050,8 @@ "hwsku": "DellEMC-Z9264f-C64", "mac": "50:9a:4c:d3:86:70", "platform": "x86_64-dellemc_z9264f_c3538-r0", - "type": "LeafRouter" + "type": "LeafRouter", + "synchronous_mode": "enable" } }, "DSCP_TO_TC_MAP": { @@ -3682,7 +3683,7 @@ } }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_1" + "VERSION": "version_3_0_1" }, "WRED_PROFILE": { "AZURE_LOSSLESS": { diff --git a/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_2_0_3.json b/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_3.json similarity index 99% rename from tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_2_0_3.json rename to tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_3.json index 9d22794dc..1f4390a9c 100644 --- a/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_2_0_3.json +++ b/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_3.json @@ -1050,7 +1050,8 @@ "hwsku": "DellEMC-Z9264f-C64", "mac": "50:9a:4c:d3:86:70", "platform": "x86_64-dellemc_z9264f_c3538-r0", - "type": "LeafRouter" + "type": "LeafRouter", + "synchronous_mode": "enable" } }, "DSCP_TO_TC_MAP": { @@ -3692,7 +3693,7 @@ } }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" }, "WRED_PROFILE": { "AZURE_LOSSLESS": { diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-expected.json index 03b21b7d4..5181daa05 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-expected.json @@ -199,6 +199,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -206,7 +207,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -284,6 +285,6 @@ "description": "Servers6:eth0" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-input.json index 7d059812f..d8deef194 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-input.json @@ -115,6 +115,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -122,7 +123,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -200,6 +201,6 @@ "description": "Servers6:eth0" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_2" + "VERSION": "version_3_0_2" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-expected.json index 52aeb07c9..278a40bc0 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-expected.json @@ -195,6 +195,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -202,7 +203,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -280,6 +281,6 @@ "description": "Servers6:eth0" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-input.json index 3ec46e9c6..b3bda32f2 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-input.json @@ -111,6 +111,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -118,7 +119,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -196,6 +197,6 @@ "description": "Servers6:eth0" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_2" + "VERSION": "version_3_0_2" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json index 7b2b0d658..9c06a186c 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json @@ -258,6 +258,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -265,7 +266,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -343,6 +344,6 @@ "description": "Servers6:eth0" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json index a7832fe14..31f4ae337 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json @@ -150,6 +150,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -157,7 +158,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -235,6 +236,6 @@ "description": "Servers6:eth0" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_2" + "VERSION": "version_3_0_2" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json index 557072bd8..0b58a6b70 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json @@ -253,6 +253,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -260,7 +261,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -338,6 +339,6 @@ "description": "Servers6:eth0" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_3" + "VERSION": "version_3_0_3" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json index 85f50fe3a..85cb24129 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json @@ -150,6 +150,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", @@ -157,7 +158,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -235,6 +236,6 @@ "description": "Servers6:eth0" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_2" + "VERSION": "version_3_0_2" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-expected.json index 09d6fc8c7..d2742a4df 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-expected.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", @@ -2043,6 +2044,6 @@ "admin_status": "up" }, "VERSIONS|DATABASE": { - "VERSION": "version_2_0_4" + "VERSION": "version_3_0_3" } } diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-input.json index e8a44eb4e..254af10b3 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-input.json @@ -1047,6 +1047,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/routes_migrate_input.json b/tests/db_migrator_input/config_db/routes_migrate_input.json new file mode 100644 index 000000000..672268b28 --- /dev/null +++ b/tests/db_migrator_input/config_db/routes_migrate_input.json @@ -0,0 +1,3 @@ +{ + "VERSIONS|DATABASE": {"VERSION": "version_1_0_1"} +} diff --git a/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-input.json b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-input.json new file mode 100644 index 000000000..ef21d0692 --- /dev/null +++ b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-input.json @@ -0,0 +1,123 @@ +{ + "DEVICE_NEIGHBOR_METADATA|ARISTA01T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA02T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA03T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA04T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR|Ethernet0": { + "name": "ARISTA01T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet4": { + "name": "ARISTA02T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet8": { + "name": "ARISTA03T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet12": { + "name": "ARISTA04T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet16": { + "name": "Servers1", + "port": "eth0" + }, + "DEVICE_NEIGHBOR|Ethernet20": { + "name": "Servers2", + "port": "eth0" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "Ethernet3/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "4", + "lanes": "83,84", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "Ethernet5/1", + "description": "", + "index": "5", + "lanes": "85,86", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "Ethernet6/1", + "description": "", + "index": "6", + "lanes": "87,88", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "CABLE_LENGTH|AZURE": { + "Ethernet0": "300m", + "Ethernet4": "300m", + "Ethernet8": "300m", + "Ethernet12": "300m", + "Ethernet16": "5m", + "Ethernet20": "5m" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_1_0_1" + } +} diff --git a/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-output.json b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-output.json new file mode 100644 index 000000000..e47b57ffb --- /dev/null +++ b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-output.json @@ -0,0 +1,123 @@ +{ + "DEVICE_NEIGHBOR_METADATA|ARISTA01T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA02T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA03T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA04T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR|Ethernet0": { + "name": "ARISTA01T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet4": { + "name": "ARISTA02T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet8": { + "name": "ARISTA03T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet12": { + "name": "ARISTA04T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet16": { + "name": "Servers1", + "port": "eth0" + }, + "DEVICE_NEIGHBOR|Ethernet20": { + "name": "Servers2", + "port": "eth0" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "Ethernet3/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "4", + "lanes": "83,84", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "Ethernet5/1", + "description": "", + "index": "5", + "lanes": "85,86", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "Ethernet6/1", + "description": "", + "index": "6", + "lanes": "87,88", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "CABLE_LENGTH|AZURE": { + "Ethernet0": "40m", + "Ethernet4": "40m", + "Ethernet8": "40m", + "Ethernet12": "40m", + "Ethernet16": "5m", + "Ethernet20": "5m" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_3_0_6" + } +} diff --git a/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-input.json b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-input.json new file mode 100644 index 000000000..74b2e8e60 --- /dev/null +++ b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-input.json @@ -0,0 +1,123 @@ +{ + "DEVICE_NEIGHBOR_METADATA|ARISTA01T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA02T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA03T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA04T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR|Ethernet0": { + "name": "ARISTA01T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet4": { + "name": "ARISTA02T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet8": { + "name": "ARISTA03T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet12": { + "name": "ARISTA04T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet16": { + "name": "Servers1", + "port": "eth0" + }, + "DEVICE_NEIGHBOR|Ethernet20": { + "name": "Servers2", + "port": "eth0" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "Ethernet3/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "4", + "lanes": "83,84", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "Ethernet5/1", + "description": "", + "index": "5", + "lanes": "85,86", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "Ethernet6/1", + "description": "", + "index": "6", + "lanes": "87,88", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "CABLE_LENGTH|AZURE": { + "Ethernet0": "300m", + "Ethernet4": "300m", + "Ethernet8": "300m", + "Ethernet12": "300m", + "Ethernet16": "300m", + "Ethernet20": "300m" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_1_0_1" + } +} diff --git a/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-output.json b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-output.json new file mode 100644 index 000000000..9c4095235 --- /dev/null +++ b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-output.json @@ -0,0 +1,123 @@ +{ + "DEVICE_NEIGHBOR_METADATA|ARISTA01T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA02T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA03T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA04T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR|Ethernet0": { + "name": "ARISTA01T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet4": { + "name": "ARISTA02T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet8": { + "name": "ARISTA03T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet12": { + "name": "ARISTA04T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet16": { + "name": "Servers1", + "port": "eth0" + }, + "DEVICE_NEIGHBOR|Ethernet20": { + "name": "Servers2", + "port": "eth0" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "Ethernet3/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "4", + "lanes": "83,84", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "Ethernet5/1", + "description": "", + "index": "5", + "lanes": "85,86", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "Ethernet6/1", + "description": "", + "index": "6", + "lanes": "87,88", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "CABLE_LENGTH|AZURE": { + "Ethernet0": "300m", + "Ethernet4": "300m", + "Ethernet8": "300m", + "Ethernet12": "300m", + "Ethernet16": "300m", + "Ethernet20": "300m" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_3_0_6" + } +} diff --git a/tests/db_migrator_input/minigraph.xml b/tests/db_migrator_input/minigraph.xml new file mode 100644 index 000000000..dcadac306 --- /dev/null +++ b/tests/db_migrator_input/minigraph.xml @@ -0,0 +1,29 @@ + + + + + + + SONiC-Dummy + + + + + + + + + + SONiC-Dummy + + + + + + + + + + + SONiC-Dummy + \ No newline at end of file diff --git a/tests/db_migrator_input/state_db/fast_reboot_expected.json b/tests/db_migrator_input/state_db/fast_reboot_expected.json new file mode 100644 index 000000000..e3a7a5fa1 --- /dev/null +++ b/tests/db_migrator_input/state_db/fast_reboot_expected.json @@ -0,0 +1,5 @@ +{ + "FAST_RESTART_ENABLE_TABLE|system": { + "enable": "false" + } +} \ No newline at end of file diff --git a/tests/db_migrator_input/state_db/fast_reboot_input.json b/tests/db_migrator_input/state_db/fast_reboot_input.json new file mode 100644 index 000000000..7a73a41bf --- /dev/null +++ b/tests/db_migrator_input/state_db/fast_reboot_input.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/tests/db_migrator_input/state_db/fast_reboot_upgrade.json b/tests/db_migrator_input/state_db/fast_reboot_upgrade.json new file mode 100644 index 000000000..463dd89e7 --- /dev/null +++ b/tests/db_migrator_input/state_db/fast_reboot_upgrade.json @@ -0,0 +1,5 @@ +{ + "FAST_REBOOT|system": { + "enable": "true" + } +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 96e139b93..f06f3509e 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -43,9 +43,9 @@ def setup_class(cls): cls.config_db_tables_to_verify = ['BUFFER_POOL', 'BUFFER_PROFILE', 'BUFFER_PG', 'DEFAULT_LOSSLESS_BUFFER_PARAMETER', 'LOSSLESS_TRAFFIC_PATTERN', 'VERSIONS', 'DEVICE_METADATA'] cls.appl_db_tables_to_verify = ['BUFFER_POOL_TABLE:*', 'BUFFER_PROFILE_TABLE:*', 'BUFFER_PG_TABLE:*', 'BUFFER_QUEUE:*', 'BUFFER_PORT_INGRESS_PROFILE_LIST:*', 'BUFFER_PORT_EGRESS_PROFILE_LIST:*'] cls.warm_reboot_from_version = 'version_1_0_6' - cls.warm_reboot_to_version = 'version_2_0_3' + cls.warm_reboot_to_version = 'version_3_0_3' - cls.version_list = ['version_1_0_1', 'version_1_0_2', 'version_1_0_3', 'version_1_0_4', 'version_1_0_5', 'version_1_0_6', 'version_2_0_0', 'version_2_0_3'] + cls.version_list = ['version_1_0_1', 'version_1_0_2', 'version_1_0_3', 'version_1_0_4', 'version_1_0_5', 'version_1_0_6', 'version_3_0_0', 'version_3_0_3'] os.environ['UTILITIES_UNIT_TESTING'] = "2" @classmethod @@ -211,7 +211,7 @@ def test_mellanox_buffer_reclaiming(self, buffer_model, ingress_pools): dbmgtr = db_migrator.DBMigrator(None) dbmgtr.migrate() expected_db = self.mock_dedicated_config_db(db_after_migrate) - advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_2_0_3') + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_3_0_3') tables_to_verify = self.config_db_tables_to_verify tables_to_verify.extend(['BUFFER_QUEUE', 'BUFFER_PORT_INGRESS_PROFILE_LIST', 'BUFFER_PORT_EGRESS_PROFILE_LIST']) self.check_config_db(dbmgtr.configDB, expected_db.cfgdb, tables_to_verify) @@ -241,7 +241,7 @@ def test_port_autoneg_migrator(self): dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'port-an-expected') expected_db = Db() - advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_2_0_1') + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_3_0_1') assert dbmgtr.configDB.get_table('PORT') == expected_db.cfgdb.get_table('PORT') assert dbmgtr.configDB.get_table('VERSIONS') == expected_db.cfgdb.get_table('VERSIONS') @@ -289,7 +289,7 @@ def test_lacp_key_migrator(self): dbmgtr.migrate() dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'portchannel-expected') expected_db = Db() - advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_2_0_2') + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_3_0_2') assert dbmgtr.configDB.get_table('PORTCHANNEL') == expected_db.cfgdb.get_table('PORTCHANNEL') assert dbmgtr.configDB.get_table('VERSIONS') == expected_db.cfgdb.get_table('VERSIONS') @@ -335,8 +335,8 @@ def check_appl_db(self, result, expected): assert expected.get_all(expected.APPL_DB, key) == result.get_all(result.APPL_DB, key) def test_qos_buffer_migrator_for_cold_reboot(self): - db_before_migrate = 'qos_tables_db_field_value_reference_format_2_0_1' - db_after_migrate = 'qos_tables_db_field_value_reference_format_2_0_3' + db_before_migrate = 'qos_tables_db_field_value_reference_format_3_0_1' + db_after_migrate = 'qos_tables_db_field_value_reference_format_3_0_3' db = self.mock_dedicated_config_db(db_before_migrate) _ = self.mock_dedicated_appl_db(db_before_migrate) import db_migrator @@ -344,7 +344,8 @@ def test_qos_buffer_migrator_for_cold_reboot(self): dbmgtr.migrate() expected_db = self.mock_dedicated_config_db(db_after_migrate) expected_appl_db = self.mock_dedicated_appl_db(db_after_migrate) - advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_2_0_3') + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_3_0_3') + self.check_config_db(dbmgtr.configDB, expected_db.cfgdb) self.check_appl_db(dbmgtr.appDB, expected_appl_db) self.clear_dedicated_mock_dbs() @@ -373,3 +374,279 @@ def test_pfc_enable_migrator(self): diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff + +class TestGlobalDscpToTcMapMigrator(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + + def test_global_dscp_to_tc_map_migrator(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'qos_map_table_global_input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.asic_type = "broadcom" + dbmgtr.hwsku = "vs" + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'qos_map_table_global_expected') + expected_db = Db() + + resulting_table = dbmgtr.configDB.get_table('PORT_QOS_MAP') + expected_table = expected_db.cfgdb.get_table('PORT_QOS_MAP') + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + # Check port_qos_map|global is not generated on mellanox asic + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'qos_map_table_global_input') + dbmgtr_mlnx = db_migrator.DBMigrator(None) + dbmgtr_mlnx.asic_type = "mellanox" + dbmgtr_mlnx.hwsku = "vs" + dbmgtr_mlnx.migrate() + resulting_table = dbmgtr_mlnx.configDB.get_table('PORT_QOS_MAP') + assert resulting_table == {} + + +class TestFastRebootTableModification(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['STATE_DB'] = None + + def mock_dedicated_state_db(self): + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db') + + def test_rename_fast_reboot_table_check_enable(self): + device_info.get_sonic_version_info = get_sonic_version_info_mlnx + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db', 'fast_reboot_input') + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'empty-config-input') + + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db', 'fast_reboot_expected') + expected_db = SonicV2Connector(host='127.0.0.1') + expected_db.connect(expected_db.STATE_DB) + + resulting_table = dbmgtr.stateDB.get_all(dbmgtr.stateDB.STATE_DB, 'FAST_RESTART_ENABLE_TABLE|system') + expected_table = expected_db.get_all(expected_db.STATE_DB, 'FAST_RESTART_ENABLE_TABLE|system') + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + +class TestWarmUpgrade_to_2_0_2(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + + def test_warm_upgrade_to_2_0_2(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_to_version_2_0_2_input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_to_version_2_0_2_expected') + expected_db = Db() + + new_tables = ["RESTAPI", "TELEMETRY", "CONSOLE_SWITCH"] + for table in new_tables: + resulting_table = dbmgtr.configDB.get_table(table) + expected_table = expected_db.cfgdb.get_table(table) + if table == "RESTAPI": + # for RESTAPI - just make sure if the new fields are added, and ignore values match + # values are ignored as minigraph parser is expected to generate different + # results for cert names based on the project specific config. + diff = set(resulting_table.get("certs").keys()) != set(expected_table.get("certs").keys()) + else: + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + target_routing_mode_result = dbmgtr.configDB.get_table("DEVICE_METADATA")['localhost']['docker_routing_config_mode'] + target_routing_mode_expected = expected_db.cfgdb.get_table("DEVICE_METADATA")['localhost']['docker_routing_config_mode'] + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert target_routing_mode_result == target_routing_mode_expected,\ + "After migration: {}. Expected after migration: {}".format( + target_routing_mode_result, target_routing_mode_expected) + + def test_warm_upgrade__without_mg_to_2_0_2(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_to_version_2_0_2_input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + # set minigraph_data to None to mimic the missing minigraph.xml scenario + dbmgtr.minigraph_data = None + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_without_mg_2_0_2_expected.json') + expected_db = Db() + + new_tables = ["RESTAPI", "TELEMETRY", "CONSOLE_SWITCH"] + for table in new_tables: + resulting_table = dbmgtr.configDB.get_table(table) + expected_table = expected_db.cfgdb.get_table(table) + print(resulting_table) + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + +class Test_Migrate_Loopback(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + dbconnector.dedicated_dbs['APPL_DB'] = None + + def test_migrate_loopback_int(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'loopback_interface_migrate_from_1_0_1_input') + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'loopback_interface_migrate_from_1_0_1_input') + + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'loopback_interface_migrate_from_1_0_1_expected') + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'loopback_interface_migrate_from_1_0_1_expected') + expected_db = Db() + + # verify migrated configDB + resulting_table = dbmgtr.configDB.get_table("LOOPBACK_INTERFACE") + expected_table = expected_db.cfgdb.get_table("LOOPBACK_INTERFACE") + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + # verify migrated appDB + expected_appl_db = SonicV2Connector(host='127.0.0.1') + expected_appl_db.connect(expected_appl_db.APPL_DB) + expected_keys = expected_appl_db.keys(expected_appl_db.APPL_DB, "INTF_TABLE:*") + expected_keys.sort() + resulting_keys = dbmgtr.appDB.keys(dbmgtr.appDB.APPL_DB, "INTF_TABLE:*") + resulting_keys.sort() + assert expected_keys == resulting_keys + for key in expected_keys: + resulting_keys = dbmgtr.appDB.get_all(dbmgtr.appDB.APPL_DB, key) + expected_keys = expected_appl_db.get_all(expected_appl_db.APPL_DB, key) + diff = DeepDiff(resulting_keys, expected_keys, ignore_order=True) + assert not diff + +class TestWarmUpgrade_without_route_weights(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + dbconnector.dedicated_dbs['APPL_DB'] = None + + def test_migrate_weights_for_nexthops(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'routes_migrate_input') + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'routes_migrate_input') + + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'routes_migrate_expected') + expected_db = Db() + + # verify migrated appDB + expected_appl_db = SonicV2Connector(host='127.0.0.1') + expected_appl_db.connect(expected_appl_db.APPL_DB) + expected_keys = expected_appl_db.keys(expected_appl_db.APPL_DB, "ROUTE_TABLE:*") + expected_keys.sort() + resulting_keys = dbmgtr.appDB.keys(dbmgtr.appDB.APPL_DB, "ROUTE_TABLE:*") + resulting_keys.sort() + assert expected_keys == resulting_keys + for key in expected_keys: + resulting_keys = dbmgtr.appDB.get_all(dbmgtr.appDB.APPL_DB, key) + expected_keys = expected_appl_db.get_all(expected_appl_db.APPL_DB, key) + diff = DeepDiff(resulting_keys, expected_keys, ignore_order=True) + assert not diff + +class TestWarmUpgrade_T0_EdgeZoneAggregator(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + + def test_warm_upgrade_t0_edgezone_aggregator_diff_cable_length(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sample-t0-edgezoneagg-config-input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sample-t0-edgezoneagg-config-output') + expected_db = Db() + + resulting_table = dbmgtr.configDB.get_table('CABLE_LENGTH') + expected_table = expected_db.cfgdb.get_table('CABLE_LENGTH') + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + def test_warm_upgrade_t0_edgezone_aggregator_same_cable_length(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sample-t0-edgezoneagg-config-same-cable-input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sample-t0-edgezoneagg-config-same-cable-output') + expected_db = Db() + + resulting_table = dbmgtr.configDB.get_table('CABLE_LENGTH') + expected_table = expected_db.cfgdb.get_table('CABLE_LENGTH') + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + +class TestFastUpgrade_to_3_0_7(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + cls.config_db_tables_to_verify = ['FLEX_COUNTER_TABLE'] + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db', 'fast_reboot_upgrade') + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + dbconnector.dedicated_dbs['STATE_DB'] = None + + def mock_dedicated_config_db(self, filename): + jsonfile = os.path.join(mock_db_path, 'config_db', filename) + dbconnector.dedicated_dbs['CONFIG_DB'] = jsonfile + db = Db() + return db + + def check_config_db(self, result, expected): + for table in self.config_db_tables_to_verify: + assert result.get_table(table) == expected.get_table(table) + + def test_fast_reboot_upgrade_to_3_0_7(self): + db_before_migrate = 'cross_branch_upgrade_to_3_0_7_input' + db_after_migrate = 'cross_branch_upgrade_to_3_0_7_expected' + device_info.get_sonic_version_info = get_sonic_version_info_mlnx + db = self.mock_dedicated_config_db(db_before_migrate) + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + expected_db = self.mock_dedicated_config_db(db_after_migrate) + assert not self.check_config_db(dbmgtr.configDB, expected_db.cfgdb) + assert dbmgtr.CURRENT_VERSION == expected_db.cfgdb.get_entry('VERSIONS', 'DATABASE')['VERSION'] \ No newline at end of file diff --git a/tests/decode_syseeprom_test.py b/tests/decode_syseeprom_test.py index ae3801d36..50c766745 100644 --- a/tests/decode_syseeprom_test.py +++ b/tests/decode_syseeprom_test.py @@ -192,3 +192,12 @@ def test_print_model(self, capsys): decode_syseeprom.print_model(True) captured = capsys.readouterr() assert captured.out == 'S6100-ON\n' + + @mock.patch('os.geteuid', lambda: 0) + @mock.patch('sonic_py_common.device_info.get_platform', lambda: 'arista') + @mock.patch('decode-syseeprom.read_and_print_eeprom') + @mock.patch('decode-syseeprom.read_eeprom_from_db') + def test_support_platforms_not_db_based(self, mockDbBased, mockNotDbBased): + decode_syseeprom.main() + assert mockNotDbBased.called + assert not mockDbBased.called diff --git a/tests/dualtor_neighbor_check_test.py b/tests/dualtor_neighbor_check_test.py new file mode 100644 index 000000000..5916a183a --- /dev/null +++ b/tests/dualtor_neighbor_check_test.py @@ -0,0 +1,679 @@ +import dualtor_neighbor_check +import json +import pytest +import shlex +import sys +import subprocess +import tabulate + +from unittest.mock import call +from unittest.mock import MagicMock +from unittest.mock import patch + +sys.path.append("scripts") + + +class TestDualtorNeighborCheck(object): + """Test class to test dualtor_neighbor_check.py""" + + @pytest.fixture + def mock_log_functions(self): + with patch("dualtor_neighbor_check.WRITE_LOG_ERROR") as mock_log_err, \ + patch("dualtor_neighbor_check.WRITE_LOG_WARN") as mock_log_warn, \ + patch("dualtor_neighbor_check.WRITE_LOG_INFO") as mock_log_info, \ + patch("dualtor_neighbor_check.WRITE_LOG_DEBUG") as mock_log_debug: + yield mock_log_err, mock_log_warn, mock_log_info, mock_log_debug + + @pytest.fixture + def mock_py_log_functions(self): + with patch("dualtor_neighbor_check.logging.error") as mock_log_err, \ + patch("dualtor_neighbor_check.logging.warning") as mock_log_warn, \ + patch("dualtor_neighbor_check.logging.info") as mock_log_info, \ + patch("dualtor_neighbor_check.logging.debug") as mock_log_debug: + yield mock_log_err, mock_log_warn, mock_log_info, mock_log_debug + + @pytest.fixture + def mock_syslog_log_function(self): + with patch("dualtor_neighbor_check.syslog.syslog") as mock_syslog_log: + yield mock_syslog_log + + def test_run_command(self, mock_log_functions): + with patch("dualtor_neighbor_check.subprocess.Popen") as mock_popen: + mock_proc = MagicMock() + mock_popen.return_value = mock_proc + mock_proc.communicate.return_value = (b"admin", None) + mock_proc.returncode = 0 + + out = dualtor_neighbor_check.run_command("whoami") + + mock_popen.assert_called_once_with(shlex.split("whoami"), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + mock_proc.communicate.assert_called_once() + assert out == "admin" + + def test_run_command_nonzero_return(self, mock_log_functions): + with patch("dualtor_neighbor_check.subprocess.Popen") as mock_popen: + mock_proc = MagicMock() + mock_popen.return_value = mock_proc + mock_proc.communicate.return_value = (b"ls: cannot access '/tmp/not-existed': No such file or directory", None) + mock_proc.returncode = 2 + + with pytest.raises(RuntimeError): + dualtor_neighbor_check.run_command("ls /tmp/not-existed") + + mock_popen.assert_called_once_with(shlex.split("ls /tmp/not-existed"), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + mock_proc.communicate.assert_called_once() + + def test_redis_cli(self, mock_log_functions): + with patch("dualtor_neighbor_check.subprocess.Popen") as mock_popen: + mock_proc = MagicMock() + mock_popen.return_value = mock_proc + mock_proc.communicate.return_value = (b"6cde21a0d21ab29e08dd72e13b77214dbb01902f", None) + mock_proc.returncode = 0 + + redis_cmd = "script load \"return helloworld\"" + out = dualtor_neighbor_check.redis_cli(redis_cmd) + + mock_popen.assert_called_once_with(shlex.split("sudo redis-cli %s" % redis_cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + mock_proc.communicate.assert_called_once() + assert out == "6cde21a0d21ab29e08dd72e13b77214dbb01902f" + + def test_redis_cli_error_stdout(self, mock_log_functions): + with patch("dualtor_neighbor_check.subprocess.Popen") as mock_popen: + mock_proc = MagicMock() + mock_popen.return_value = mock_proc + mock_proc.communicate.return_value = (b"(error) NOSCRIPT No matching script. Please use EVAL.", None) + mock_proc.returncode = 0 + + redis_cmd = "evalsha 0 0" + with pytest.raises(RuntimeError): + dualtor_neighbor_check.redis_cli(redis_cmd) + + mock_popen.assert_called_once_with(shlex.split("sudo redis-cli %s" % redis_cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + mock_proc.communicate.assert_called_once() + + def test_log_config_default(self, mock_py_log_functions): + mock_log_err, mock_log_warn, mock_log_info, mock_log_debug = mock_py_log_functions + with patch("dualtor_neighbor_check.sys.argv", ["dualtor_neighbor_check.py"]) as mock_argv: + args = dualtor_neighbor_check.parse_args() + dualtor_neighbor_check.config_logging(args) + dualtor_neighbor_check.WRITE_LOG_ERROR("test_error") + dualtor_neighbor_check.WRITE_LOG_WARN("test_warn") + dualtor_neighbor_check.WRITE_LOG_INFO("test_info") + dualtor_neighbor_check.WRITE_LOG_DEBUG("test_debug") + + assert args.log_output == dualtor_neighbor_check.LogOutput.STDOUT + assert args.log_level == dualtor_neighbor_check.logging.WARNING + assert args.syslog_level is None + mock_log_err.assert_called_once_with("test_error") + mock_log_warn.assert_called_once_with("test_warn") + mock_log_info.assert_called_once_with("test_info") + mock_log_debug.assert_called_once_with("test_debug") + + def test_log_config_syslog_default_level(self, mock_syslog_log_function): + expected_syslog_calls = [ + call(dualtor_neighbor_check.syslog.LOG_ERR, "test_error"), + call(dualtor_neighbor_check.syslog.LOG_NOTICE, "test_warn") + ] + with patch("dualtor_neighbor_check.sys.argv", ["dualtor_neighbor_check.py", "-o", "SYSLOG"]) as mock_argv: + args = dualtor_neighbor_check.parse_args() + dualtor_neighbor_check.config_logging(args) + dualtor_neighbor_check.WRITE_LOG_ERROR("test_error") + dualtor_neighbor_check.WRITE_LOG_WARN("test_warn") + dualtor_neighbor_check.WRITE_LOG_INFO("test_info") + dualtor_neighbor_check.WRITE_LOG_DEBUG("test_debug") + + assert args.log_output == dualtor_neighbor_check.LogOutput.SYSLOG + assert args.syslog_level == dualtor_neighbor_check.SyslogLevel.NOTICE + assert args.log_level is None + mock_syslog_log_function.assert_has_calls(expected_syslog_calls) + + def test_log_config_syslog_debug_level(self, mock_syslog_log_function): + expected_syslog_calls = [ + call(dualtor_neighbor_check.syslog.LOG_ERR, "test_error"), + call(dualtor_neighbor_check.syslog.LOG_NOTICE, "test_warn"), + call(dualtor_neighbor_check.syslog.LOG_INFO, "test_info"), + call(dualtor_neighbor_check.syslog.LOG_DEBUG, "test_debug") + ] + with patch("dualtor_neighbor_check.sys.argv", ["dualtor_neighbor_check.py", "-o", "SYSLOG", "-s", "DEBUG"]) as mock_argv: + args = dualtor_neighbor_check.parse_args() + dualtor_neighbor_check.config_logging(args) + dualtor_neighbor_check.WRITE_LOG_ERROR("test_error") + dualtor_neighbor_check.WRITE_LOG_WARN("test_warn") + dualtor_neighbor_check.WRITE_LOG_INFO("test_info") + dualtor_neighbor_check.WRITE_LOG_DEBUG("test_debug") + + assert args.log_output == dualtor_neighbor_check.LogOutput.SYSLOG + assert args.syslog_level == dualtor_neighbor_check.SyslogLevel.DEBUG + assert args.log_level is None + mock_syslog_log_function.assert_has_calls(expected_syslog_calls) + + def test_is_dualtor_true(self, mock_log_functions): + mock_config_db = MagicMock() + mock_config_db.get_table = MagicMock( + return_value={ + "localhost": { + "bgp_asn": "65100", + "hostname": "lab-dev-01-t0", + "peer_switch": "lab-dev-01-lt0", + "subtype": "DualToR", + "type": "ToRRouter", + } + } + ) + + is_dualtor = dualtor_neighbor_check.is_dualtor(mock_config_db) + mock_config_db.get_table.assert_has_calls( + [call("DEVICE_METADATA")] + ) + assert is_dualtor + + def test_is_dualtor_false(self, mock_log_functions): + mock_config_db = MagicMock() + mock_config_db.get_table = MagicMock( + return_value={ + "localhost": { + "bgp_asn": "65100", + "hostname": "lab-dev-01-t0", + "type": "ToRRouter", + } + } + ) + + is_dualtor = dualtor_neighbor_check.is_dualtor(mock_config_db) + mock_config_db.get_table.assert_has_calls( + [call("DEVICE_METADATA")] + ) + assert not is_dualtor + + def test_is_dualtor_false_empty_metadata(self, mock_log_functions): + mock_config_db = MagicMock() + mock_config_db.get_table = MagicMock(return_value={}) + + is_dualtor = dualtor_neighbor_check.is_dualtor(mock_config_db) + mock_config_db.get_table.assert_has_calls( + [call("DEVICE_METADATA")] + ) + assert not is_dualtor + + def test_read_from_db(self, mock_log_functions): + with patch("dualtor_neighbor_check.run_command") as mock_run_command: + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + asic_fdb = {"ee:86:d8:46:7d:01": "oid:0x3a00000000064b"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.23\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mock_run_command.side_effect = [ + "c53fd5eaad68be1e66a2fe80cd20a9cb18c91259", + json.dumps( + { + "neighbors": neighbors, + "mux_states": mux_states, + "hw_mux_states": hw_mux_states, + "asic_fdb": asic_fdb, + "asic_route_table": asic_route_table, + "asic_neigh_table": asic_neigh_table + } + ) + ] + mock_appl_db = MagicMock() + mock_appl_db.get = MagicMock(return_value=None) + + result = dualtor_neighbor_check.read_tables_from_db(mock_appl_db) + + mock_appl_db.get.assert_called_once_with("_DUALTOR_NEIGHBOR_CHECK_SCRIPT_SHA1") + mock_run_command.assert_has_calls( + [ + call("sudo redis-cli SCRIPT LOAD \"%s\"" % dualtor_neighbor_check.DB_READ_SCRIPT), + call("sudo redis-cli EVALSHA c53fd5eaad68be1e66a2fe80cd20a9cb18c91259 0") + ] + ) + assert neighbors == result[0] + assert mux_states == result[1] + assert hw_mux_states == result[2] + assert {k: v.lstrip("oid:0x") for k, v in asic_fdb.items()} == result[3] + assert asic_route_table == result[4] + assert asic_neigh_table == result[5] + + def test_read_from_db_with_lua_cache(self, mock_log_functions): + with patch("dualtor_neighbor_check.run_command") as mock_run_command: + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + asic_fdb = {"ee:86:d8:46:7d:01": "oid:0x3a00000000064b"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.23\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mock_run_command.return_value = json.dumps( + { + "neighbors": neighbors, + "mux_states": mux_states, + "hw_mux_states": hw_mux_states, + "asic_fdb": asic_fdb, + "asic_route_table": asic_route_table, + "asic_neigh_table": asic_neigh_table + } + ) + mock_appl_db = MagicMock() + mock_appl_db.get = MagicMock(return_value="c53fd5eaad68be1e66a2fe80cd20a9cb18c91259") + + result = dualtor_neighbor_check.read_tables_from_db(mock_appl_db) + + mock_appl_db.get.assert_called_once_with("_DUALTOR_NEIGHBOR_CHECK_SCRIPT_SHA1") + mock_run_command.assert_called_once_with("sudo redis-cli EVALSHA c53fd5eaad68be1e66a2fe80cd20a9cb18c91259 0") + assert neighbors == result[0] + assert mux_states == result[1] + assert hw_mux_states == result[2] + assert {k: v.lstrip("oid:0x") for k, v in asic_fdb.items()} == result[3] + assert asic_route_table == result[4] + assert asic_neigh_table == result[5] + + def test_get_mux_server_to_port_map(self, mock_log_functions): + mux_cables = { + "Ethernet4": { + "server_ipv4": "192.168.0.2/32", + "server_ipv6": "fc02:1000::2/128", + "state": "active" + } + } + mux_server_to_port_map = { + "192.168.0.2": "Ethernet4", + "fc02:1000::2": "Ethernet4" + } + + result = dualtor_neighbor_check.get_mux_server_to_port_map(mux_cables) + + assert mux_server_to_port_map == result + + def test_check_neighbor_consistency_no_fdb_entry(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:02": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_consistent_neighbor_mux_active(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.2\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "active", "no", "yes", "no", "consistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_active_no_asic_neighbor(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "active", "no", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.2"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_active_asic_tunnel_route(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = ["{\"dest\":\"192.168.0.2/32\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000024\"}"] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "active", "no", "no", "yes", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.2"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_active_in_toggle(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "standby"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "active", "yes", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_consistent_neighbor_mux_standby(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "standby"} + hw_mux_states = {"Ethernet4": "standby"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = ["{\"dest\":\"192.168.0.2/32\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000024\"}"] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "standby", "no", "no", "yes", "consistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_standby_no_asic_tunnel_route(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "standby"} + hw_mux_states = {"Ethernet4": "standby"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "standby", "no", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.2"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_standby_asic_neighbor(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "standby"} + hw_mux_states = {"Ethernet4": "standby"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.2\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "standby", "no", "yes", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.2"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_standby_in_toggle(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "standby"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "standby", "yes", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_zero_mac_neighbor(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.102": "00:00:00:00:00:00"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = ["{\"dest\":\"192.168.0.102/32\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000024\"}"] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.102", "00:00:00:00:00:00", "N/A", "N/A", "N/A", "no", "yes", "consistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_zero_mac_expired_neighbor(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.102": "00:00:00:00:00:00"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.102\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.102", "00:00:00:00:00:00", "N/A", "N/A", "N/A", "yes", "no", "consistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_inconsistent_zero_mac_neighbor(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.102": "00:00:00:00:00:00"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.102", "00:00:00:00:00:00", "N/A", "N/A", "N/A", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.102"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) diff --git a/tests/dump_tests/dump_state_test.py b/tests/dump_tests/dump_state_test.py index 8e3cda0c0..06b1b9e42 100644 --- a/tests/dump_tests/dump_state_test.py +++ b/tests/dump_tests/dump_state_test.py @@ -25,21 +25,23 @@ def compare_json_output(exp_json, rec, exclude_paths=None): table_display_output = '''\ -+-------------+-----------+----------------------------------------------------------------------------+ -| port_name | DB_NAME | DUMP | -+=============+===========+============================================================================+ -| Ethernet0 | STATE_DB | +----------------------+-------------------------------------------------+ | -| | | | Keys | field-value pairs | | -| | | +======================+=================================================+ | -| | | | PORT_TABLE|Ethernet0 | +------------------+--------------------------+ | | -| | | | | | field | value | | | -| | | | | |------------------+--------------------------| | | -| | | | | | rmt_adv_speeds | 10,100,1000 | | | -| | | | | | speed | 100000 | | | -| | | | | | supported_speeds | 10000,25000,40000,100000 | | | -| | | | | +------------------+--------------------------+ | | -| | | +----------------------+-------------------------------------------------+ | -+-------------+-----------+----------------------------------------------------------------------------+ ++-------------+-----------+--------------------------------------------------------------------------------+ +| port_name | DB_NAME | DUMP | ++=============+===========+================================================================================+ +| Ethernet0 | STATE_DB | +----------------------+-----------------------------------------------------+ | +| | | | Keys | field-value pairs | | +| | | +======================+=====================================================+ | +| | | | PORT_TABLE|Ethernet0 | +----------------------+--------------------------+ | | +| | | | | | field | value | | | +| | | | | |----------------------+--------------------------| | | +| | | | | | rmt_adv_speeds | 10,100,1000 | | | +| | | | | | speed | 100000 | | | +| | | | | | supported_speeds | 10000,25000,40000,100000 | | | +| | | | | | supported_fecs | rs,none,test | | | +| | | | | | link_training_status | not_trained | | | +| | | | | +----------------------+--------------------------+ | | +| | | +----------------------+-----------------------------------------------------+ | ++-------------+-----------+--------------------------------------------------------------------------------+ ''' @@ -121,7 +123,7 @@ def test_identifier_single(self): expected = {'Ethernet0': {'CONFIG_DB': {'keys': [{'PORT|Ethernet0': {'alias': 'etp1', 'description': 'etp1', 'index': '0', 'lanes': '25,26,27,28', 'mtu': '9100', 'pfc_asym': 'off', 'speed': '40000'}}], 'tables_not_found': []}, 'APPL_DB': {'keys': [{'PORT_TABLE:Ethernet0': {'index': '0', 'lanes': '0', 'alias': 'Ethernet0', 'description': 'ARISTA01T2:Ethernet1', 'speed': '25000', 'oper_status': 'down', 'pfc_asym': 'off', 'mtu': '9100', 'fec': 'rs', 'admin_status': 'up'}}], 'tables_not_found': []}, 'ASIC_DB': {'keys': [{'ASIC_STATE:SAI_OBJECT_TYPE_HOSTIF:oid:0xd00000000056d': {'SAI_HOSTIF_ATTR_NAME': 'Ethernet0', 'SAI_HOSTIF_ATTR_OBJ_ID': 'oid:0x10000000004a4', 'SAI_HOSTIF_ATTR_OPER_STATUS': 'true', 'SAI_HOSTIF_ATTR_TYPE': 'SAI_HOSTIF_TYPE_NETDEV', 'SAI_HOSTIF_ATTR_VLAN_TAG': 'SAI_HOSTIF_VLAN_TAG_STRIP'}}, {'ASIC_STATE:SAI_OBJECT_TYPE_PORT:oid:0x10000000004a4': {'NULL': 'NULL', 'SAI_PORT_ATTR_ADMIN_STATE': 'true', 'SAI_PORT_ATTR_MTU': '9122', 'SAI_PORT_ATTR_SPEED': '100000'}}], 'tables_not_found': [], 'vidtorid': {'oid:0xd00000000056d': 'oid:0xd', 'oid:0x10000000004a4': 'oid:0x1690000000001'}}, - 'STATE_DB': {'keys': [{'PORT_TABLE|Ethernet0': {'rmt_adv_speeds': '10,100,1000', 'speed': '100000', 'supported_speeds': '10000,25000,40000,100000'}}], 'tables_not_found': []}}} + 'STATE_DB': {'keys': [{'PORT_TABLE|Ethernet0': {'rmt_adv_speeds': '10,100,1000', 'speed': '100000', 'supported_speeds': '10000,25000,40000,100000', 'supported_fecs': 'rs,none,test', 'link_training_status': 'not_trained'}}], 'tables_not_found': []}}} assert result.exit_code == 0, "exit code: {}, Exception: {}, Traceback: {}".format(result.exit_code, result.exception, result.exc_info) # Cause other tests depend and change these paths in the mock_db, this test would fail everytime when a field or a value in changed in this path, creating noise @@ -138,7 +140,7 @@ def test_identifier_multiple(self): {"CONFIG_DB": {"keys": [{"PORT|Ethernet0": {"alias": "etp1", "description": "etp1", "index": "0", "lanes": "25,26,27,28", "mtu": "9100", "pfc_asym": "off", "speed": "40000"}}], "tables_not_found": []}, "APPL_DB": {"keys": [{"PORT_TABLE:Ethernet0": {"index": "0", "lanes": "0", "alias": "Ethernet0", "description": "ARISTA01T2:Ethernet1", "speed": "25000", "oper_status": "down", "pfc_asym": "off", "mtu": "9100", "fec": "rs", "admin_status": "up"}}], "tables_not_found": []}, "ASIC_DB": {"keys": [{"ASIC_STATE:SAI_OBJECT_TYPE_HOSTIF:oid:0xd00000000056d": {"SAI_HOSTIF_ATTR_NAME": "Ethernet0", "SAI_HOSTIF_ATTR_OBJ_ID": "oid:0x10000000004a4", "SAI_HOSTIF_ATTR_OPER_STATUS": "true", "SAI_HOSTIF_ATTR_TYPE": "SAI_HOSTIF_TYPE_NETDEV", "SAI_HOSTIF_ATTR_VLAN_TAG": "SAI_HOSTIF_VLAN_TAG_STRIP"}}, {"ASIC_STATE:SAI_OBJECT_TYPE_PORT:oid:0x10000000004a4": {"NULL": "NULL", "SAI_PORT_ATTR_ADMIN_STATE": "true", "SAI_PORT_ATTR_MTU": "9122", "SAI_PORT_ATTR_SPEED": "100000"}}], "tables_not_found": [], "vidtorid": {"oid:0xd00000000056d": "oid:0xd", "oid:0x10000000004a4": "oid:0x1690000000001"}}, - "STATE_DB": {"keys": [{"PORT_TABLE|Ethernet0": {"rmt_adv_speeds": "10,100,1000", "speed": "100000", "supported_speeds": "10000,25000,40000,100000"}}], "tables_not_found": []}}, + "STATE_DB": {"keys": [{"PORT_TABLE|Ethernet0": {"rmt_adv_speeds": "10,100,1000", "speed": "100000", "supported_speeds": "10000,25000,40000,100000", "supported_fecs": "rs,none,test", "link_training_status": "not_trained"}}], "tables_not_found": []}}, "Ethernet4": {"CONFIG_DB": {"keys": [{"PORT|Ethernet4": {"admin_status": "up", "alias": "etp2", "description": "Servers0:eth0", "index": "1", "lanes": "29,30,31,32", "mtu": "9100", "pfc_asym": "off", "speed": "40000"}}], "tables_not_found": []}, "APPL_DB": {"keys": [], "tables_not_found": ["PORT_TABLE"]}, @@ -167,7 +169,7 @@ def test_option_db_filtering(self): result = runner.invoke(dump.state, ["port", "Ethernet0", "--db", "ASIC_DB", "--db", "STATE_DB"]) print(result.output) expected = {"Ethernet0": {"ASIC_DB": {"keys": [{"ASIC_STATE:SAI_OBJECT_TYPE_HOSTIF:oid:0xd00000000056d": {"SAI_HOSTIF_ATTR_NAME": "Ethernet0", "SAI_HOSTIF_ATTR_OBJ_ID": "oid:0x10000000004a4", "SAI_HOSTIF_ATTR_OPER_STATUS": "true", "SAI_HOSTIF_ATTR_TYPE": "SAI_HOSTIF_TYPE_NETDEV", "SAI_HOSTIF_ATTR_VLAN_TAG": "SAI_HOSTIF_VLAN_TAG_STRIP"}}, {"ASIC_STATE:SAI_OBJECT_TYPE_PORT:oid:0x10000000004a4": {"NULL": "NULL", "SAI_PORT_ATTR_ADMIN_STATE": "true", "SAI_PORT_ATTR_MTU": "9122", "SAI_PORT_ATTR_SPEED": "100000"}}], "tables_not_found": [], "vidtorid": {"oid:0xd00000000056d": "oid:0xd", "oid:0x10000000004a4": "oid:0x1690000000001"}}, - "STATE_DB": {"keys": [{"PORT_TABLE|Ethernet0": {"rmt_adv_speeds": "10,100,1000", "speed": "100000", "supported_speeds": "10000,25000,40000,100000"}}], "tables_not_found": []}}} + "STATE_DB": {"keys": [{"PORT_TABLE|Ethernet0": {"rmt_adv_speeds": "10,100,1000", "speed": "100000", "supported_speeds": "10000,25000,40000,100000", "supported_fecs": "rs,none,test", "link_training_status": "not_trained"}}], "tables_not_found": []}}} assert result.exit_code == 0, "exit code: {}, Exception: {}, Traceback: {}".format(result.exit_code, result.exception, result.exc_info) ddiff = compare_json_output(expected, result.output) assert not ddiff, ddiff diff --git a/tests/fabricstat_test.py b/tests/fabricstat_test.py new file mode 100644 index 000000000..33335a542 --- /dev/null +++ b/tests/fabricstat_test.py @@ -0,0 +1,308 @@ +import os +import shutil + +from click.testing import CliRunner + +import clear.main as clear +import show.main as show +from .utils import get_result_and_return_code + +root_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(root_path) +scripts_path = os.path.join(modules_path, "scripts") + +multi_asic_fabric_counters = """\ + ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR +------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ------------ + 0 0 up 6 1,113 0 0 0 5 1,759,692,040 5 + 0 1 down 0 0 0 0 0 0 58,977,677,898 0 + 0 2 up 2 371 0 0 0 0 1,769,448,760 0 + 0 3 down 0 0 0 0 0 0 58,976,477,608 0 + 0 4 up 10 1,855 0 0 0 73 1,763,293,100 73 + 0 5 down 0 0 0 0 0 44,196 58,975,150,569 0 + 0 6 up 4 742 0 0 0 10 1,763,174,090 0 + 0 7 up 10 1,855 0 0 0 187 1,768,439,529 1,331 + + ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR +------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- -------------- + 1 0 up 16 2,968 0 0 0 0 1,763,890,500 0 + 1 1 down 0 0 0 0 0 0 105,269,481,425 0 + 1 2 down 0 0 0 0 0 0 105,268,895,944 0 + 1 3 down 0 0 0 0 0 0 105,268,290,607 0 + 1 4 up 14 2,597 0 0 0 0 1,762,188,940 0 + 1 5 down 0 0 0 0 0 968 105,267,020,477 0 + 1 6 down 0 0 0 0 0 53,192,703,023 1,422,986 41,913,682,074 + 1 7 down 0 0 0 0 0 0 105,264,567,398 0 + +""" +multi_asic_fabric_counters_asic0 = """\ + ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR +------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ------------ + 0 0 up 6 1,113 0 0 0 5 1,759,692,040 5 + 0 1 down 0 0 0 0 0 0 58,977,677,898 0 + 0 2 up 2 371 0 0 0 0 1,769,448,760 0 + 0 3 down 0 0 0 0 0 0 58,976,477,608 0 + 0 4 up 10 1,855 0 0 0 73 1,763,293,100 73 + 0 5 down 0 0 0 0 0 44,196 58,975,150,569 0 + 0 6 up 4 742 0 0 0 10 1,763,174,090 0 + 0 7 up 10 1,855 0 0 0 187 1,768,439,529 1,331 + +""" + + +clear_counter = """\ +Clear and update saved counters port""" + +multi_asic_fabric_counters_asic0_clear = """\ + ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR +------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ------------ + 0 0 up 0 0 0 0 0 0 0 0 + 0 1 down 0 0 0 0 0 0 0 0 + 0 2 up 0 0 0 0 0 0 0 0 + 0 3 down 0 0 0 0 0 0 0 0 + 0 4 up 0 0 0 0 0 0 0 0 + 0 5 down 0 0 0 0 0 0 0 0 + 0 6 up 0 0 0 0 0 0 0 0 + 0 7 up 0 0 0 0 0 0 0 0 + +""" + +fabric_invalid_asic_error = """ValueError: Unknown Namespace asic99""" + +multi_asic_fabric_counters_queue = """\ + ASIC PORT STATE QUEUE_ID CURRENT_BYTE CURRENT_LEVEL WATERMARK_LEVEL +------ ------ ------- ---------- -------------- --------------- ----------------- + 0 0 up 0 763 12 20 + 0 1 down 0 0 0 0 + 0 2 up 0 104 8 8 + 0 3 down 0 0 0 0 + 0 4 up 0 1,147 14 22 + 0 5 down 0 0 0 0 + 0 6 up 0 527 8 10 + 0 7 up 0 1,147 14 17 + + ASIC PORT STATE QUEUE_ID CURRENT_BYTE CURRENT_LEVEL WATERMARK_LEVEL +------ ------ ------- ---------- -------------- --------------- ----------------- + 1 0 up 0 1,942 18 24 + 1 1 down 0 0 0 0 + 1 2 down 0 0 0 0 + 1 3 down 0 0 0 0 + 1 4 up 0 1,362 15 24 + 1 5 down 0 0 0 0 + 1 6 down 0 0 0 0 + 1 7 down 0 0 0 0 + +""" + +multi_asic_fabric_counters_queue_asic0 = """\ + ASIC PORT STATE QUEUE_ID CURRENT_BYTE CURRENT_LEVEL WATERMARK_LEVEL +------ ------ ------- ---------- -------------- --------------- ----------------- + 0 0 up 0 763 12 20 + 0 1 down 0 0 0 0 + 0 2 up 0 104 8 8 + 0 3 down 0 0 0 0 + 0 4 up 0 1,147 14 22 + 0 5 down 0 0 0 0 + 0 6 up 0 527 8 10 + 0 7 up 0 1,147 14 17 + +""" + +multi_asic_fabric_counters_queue_asic0_clear = """\ + ASIC PORT STATE QUEUE_ID CURRENT_BYTE CURRENT_LEVEL WATERMARK_LEVEL +------ ------ ------- ---------- -------------- --------------- ----------------- + 0 0 up 0 0 0 0 + 0 1 down 0 0 0 0 + 0 2 up 0 0 0 0 + 0 3 down 0 0 0 0 + 0 4 up 0 0 0 0 + 0 5 down 0 0 0 0 + 0 6 up 0 0 0 0 + 0 7 up 0 0 0 0 + +""" + +multi_asic_fabric_reachability = """\ + +asic0 + Local Link Remote Module Remote Link Status +------------ --------------- ------------- -------- + 0 0 79 up + 2 0 94 up + 4 0 85 up + 6 0 84 up + 7 0 93 up + +asic1 + Local Link Remote Module Remote Link Status +------------ --------------- ------------- -------- + 0 0 69 up + 4 0 75 up +""" + +multi_asic_fabric_reachability_asic0 = """\ + +asic0 + Local Link Remote Module Remote Link Status +------------ --------------- ------------- -------- + 0 0 79 up + 2 0 94 up + 4 0 85 up + 6 0 84 up + 7 0 93 up +""" + +class TestFabricStat(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_single_show_fabric_counters(self): + return_code, result = get_result_and_return_code('fabricstat -D') + assert return_code == 0 + + return_code, result = get_result_and_return_code('fabricstat') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters_asic0 + + def test_single_clear_fabric_counters(self): + return_code, result = get_result_and_return_code('fabricstat -C') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result.rstrip() == clear_counter + + return_code, result = get_result_and_return_code('fabricstat') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters_asic0_clear + + return_code, result = get_result_and_return_code('fabricstat -D') + assert return_code == 0 + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ["PATH"] = os.pathsep.join( + os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + + +class TestMultiAsicFabricStat(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + + def test_multi_show_fabric_counters(self): + return_code, result = get_result_and_return_code('fabricstat') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters + + def test_multi_show_fabric_counters_asic(self): + return_code, result = get_result_and_return_code('fabricstat -n asic0') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters_asic0 + + def test_multi_asic_invalid_asic(self): + return_code, result = get_result_and_return_code('fabricstat -n asic99') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 1 + assert result == fabric_invalid_asic_error + + def test_multi_show_fabric_counters_queue(self): + return_code, result = get_result_and_return_code('fabricstat -q') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters_queue + + def test_multi_show_fabric_counters_queue_asic(self): + return_code, result = get_result_and_return_code('fabricstat -q -n asic0') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters_queue_asic0 + + def test_multi_show_fabric_counters_queue_clear(self): + return_code, result = get_result_and_return_code('fabricstat -C -q') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + + return_code, result = get_result_and_return_code('fabricstat -q -n asic0') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters_queue_asic0_clear + + return_code, result = get_result_and_return_code('fabricstat -D') + assert return_code == 0 + + return_code, result = get_result_and_return_code('fabricstat -q -n asic0') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters_queue_asic0 + + def test_multi_show_fabric_reachability(self): + return_code, result = get_result_and_return_code('fabricstat -r') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_reachability + + def test_multi_show_fabric_reachability_asic(self): + return_code, result = get_result_and_return_code('fabricstat -r -n asic0') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_reachability_asic0 + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ["PATH"] = os.pathsep.join( + os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + +class TestMultiAsicFabricStatCmd(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + + def test_clear_command(self): + runner = CliRunner() + result = runner.invoke(clear.cli.commands["fabriccountersqueue"], []) + assert result.exit_code == 0 + + result = runner.invoke(clear.cli.commands["fabriccountersport"], []) + assert result.exit_code == 0 + + return_code, result = get_result_and_return_code('fabricstat -D') + assert return_code == 0 + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ["PATH"] = os.pathsep.join( + os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" diff --git a/tests/feature_test.py b/tests/feature_test.py index 8891d07a1..2f3c6e60b 100644 --- a/tests/feature_test.py +++ b/tests/feature_test.py @@ -127,6 +127,32 @@ telemetry enabled """ +show_feature_autorestart_missing_output="""\ +Feature AutoRestart +---------- -------------- +bar unknown +bgp enabled +database always_enabled +dhcp_relay enabled +lldp enabled +nat enabled +pmon enabled +radv enabled +restapi enabled +sflow enabled +snmp enabled +swss enabled +syncd enabled +teamd enabled +telemetry enabled +""" + +show_feature_autorestart_bar_missing_output="""\ +Feature AutoRestart +--------- ------------- +bar unknown +""" + show_feature_bgp_autorestart_output="""\ Feature AutoRestart --------- ------------- @@ -274,6 +300,25 @@ def test_show_unknown_autorestart_status(self, get_cmd_module): print(result.output) assert result.exit_code == 1 + def test_show_feature_autorestart_missing(self, get_cmd_module): + (config, show) = get_cmd_module + db = Db() + dbconn = db.db + db.cfgdb.set_entry("FEATURE", "bar", { "state": "enabled" }) + runner = CliRunner() + + result = runner.invoke(show.cli.commands["feature"].commands["autorestart"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_feature_autorestart_missing_output + + result = runner.invoke(show.cli.commands["feature"].commands["autorestart"], ["bar"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_feature_autorestart_bar_missing_output + def test_config_bgp_feature_state(self, get_cmd_module): (config, show) = get_cmd_module db = Db() diff --git a/tests/generic_config_updater/change_applier_test.py b/tests/generic_config_updater/change_applier_test.py index 63944b257..423b3fc32 100644 --- a/tests/generic_config_updater/change_applier_test.py +++ b/tests/generic_config_updater/change_applier_test.py @@ -74,17 +74,28 @@ def debug_print(msg): # Mimics os.system call for sonic-cfggen -d --print-data > filename -# -def os_system_cfggen(cmd): +def subprocess_Popen_cfggen(cmd, *args, **kwargs): global running_config - fname = cmd.split(">")[-1].strip() + # Extract file name from kwargs if 'stdout' is a file object + stdout = kwargs.get('stdout') + if hasattr(stdout, 'name'): + fname = stdout.name + else: + raise ValueError("stdout is not a file") + + # Write the running configuration to the file specified in stdout with open(fname, "w") as s: - s.write(json.dumps(running_config, indent=4)) - debug_print("File created {} type={} cfg={}".format(fname, - type(running_config), json.dumps(running_config)[1:40])) - return 0 + json.dump(running_config, s, indent=4) + + class MockPopen: + def __init__(self): + self.returncode = 0 # Simulate successful command execution + + def communicate(self): + return "", "" # Simulate empty stdout and stderr + return MockPopen() # mimics config_db.set_entry # @@ -213,14 +224,14 @@ def vlan_validate(old_cfg, new_cfg, keys): class TestChangeApplier(unittest.TestCase): - @patch("generic_config_updater.change_applier.os.system") + @patch("generic_config_updater.change_applier.subprocess.Popen") @patch("generic_config_updater.change_applier.get_config_db") @patch("generic_config_updater.change_applier.set_config") - def test_change_apply(self, mock_set, mock_db, mock_os_sys): + def test_change_apply(self, mock_set, mock_db, mock_subprocess_Popen): global read_data, running_config, json_changes, json_change_index global start_running_config - mock_os_sys.side_effect = os_system_cfggen + mock_subprocess_Popen.side_effect = subprocess_Popen_cfggen mock_db.return_value = DB_HANDLE mock_set.side_effect = set_entry @@ -230,10 +241,11 @@ def test_change_apply(self, mock_set, mock_db, mock_os_sys): running_config = copy.deepcopy(read_data["running_data"]) json_changes = copy.deepcopy(read_data["json_changes"]) + generic_config_updater.change_applier.ChangeApplier.updater_conf = None generic_config_updater.change_applier.UPDATER_CONF_FILE = CONF_FILE generic_config_updater.change_applier.set_verbose(True) generic_config_updater.services_validator.set_verbose(True) - + applier = generic_config_updater.change_applier.ChangeApplier() debug_print("invoked applier") @@ -242,7 +254,7 @@ def test_change_apply(self, mock_set, mock_db, mock_os_sys): # Take copy for comparison start_running_config = copy.deepcopy(running_config) - + debug_print("main: json_change_index={}".format(json_change_index)) applier.apply(mock_obj()) @@ -281,7 +293,7 @@ def test_apply__calls_apply_change_to_config_db(self): # Act applier.apply(change) + applier.remove_backend_tables_from_config(change) # Assert applier.config_wrapper.apply_change_to_config_db.assert_has_calls([call(change)]) - diff --git a/tests/generic_config_updater/field_operation_validator_test.py b/tests/generic_config_updater/field_operation_validator_test.py new file mode 100644 index 000000000..938305889 --- /dev/null +++ b/tests/generic_config_updater/field_operation_validator_test.py @@ -0,0 +1,182 @@ +import io +import unittest +import mock +import json +import subprocess +import generic_config_updater +import generic_config_updater.field_operation_validators as fov +import generic_config_updater.gu_common as gu_common + +from unittest.mock import MagicMock, Mock, mock_open +from mock import patch +from sonic_py_common.device_info import get_hwsku, get_sonic_version_info + + +class TestValidateFieldOperation(unittest.TestCase): + + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="unknown")) + def test_rdma_config_update_validator_unknown_asic(self): + patch_element = {"path": "/PFC_WD/Ethernet4/restoration_time", "op": "replace", "value": "234234"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="td3")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"BUFFER_POOL": {"validator_data": {"rdma_config_update_validator": {"Shared/headroom pool size changes": {"fields": ["ingress_lossless_pool/xoff", "ingress_lossless_pool/size", "egress_lossy_pool/size"], "operations": ["replace"], "platforms": {"td3": "20221100"}}}}}}}')) + def test_rdma_config_update_validator_td3_asic_invalid_version(self): + patch_element = {"path": "/BUFFER_POOL/ingress_lossless_pool/xoff", "op": "replace", "value": "234234"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_valid_version_remove(self): + patch_element = {"path": "/PFC_WD/Ethernet8/detection_time", "op": "remove"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "restoration_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_valid_version_add_pfcwd(self): + patch_element = {"path": "/PFC_WD/Ethernet8", "op": "add", "value": {"action": "drop", "detection_time": "300", "restoration_time": "200"}} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action", ""], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_valid_version(self): + patch_element = {"path": "/PFC_WD/Ethernet8", "op": "remove"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"BUFFER_POOL": {"validator_data": {"rdma_config_update_validator": {"Shared/headroom pool size changes": {"fields": ["ingress_lossless_pool/xoff", "egress_lossy_pool/size"], "operations": ["replace"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_invalid_op(self): + patch_element = {"path": "/BUFFER_POOL/ingress_lossless_pool/xoff", "op": "remove"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_other_field(self): + patch_element = {"path": "/PFC_WD/Ethernet8/other_field", "op": "add", "value": "sample_value"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + def test_validate_field_operation_illegal__pfcwd(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {}}} + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + + def test_validate_field_operation_legal__rm_loopback1(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + config_wrapper.validate_field_operation(old_config, target_config) + + def test_validate_field_operation_illegal__rm_loopback0(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + +class TestGetAsicName(unittest.TestCase): + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_spc1(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Mellanox-SN2700-D48C8", 0] + self.assertEqual(fov.get_asic_name(), "spc1") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_spc2(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["ACS-MSN3800", 0] + self.assertEqual(fov.get_asic_name(), "spc2") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_spc3(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Mellanox-SN4600C-C64", 0] + self.assertEqual(fov.get_asic_name(), "spc3") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_spc4(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["ACS-SN5600", 0] + self.assertEqual(fov.get_asic_name(), "spc4") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_th(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Force10-S6100", 0] + self.assertEqual(fov.get_asic_name(), "th") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_th2(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Arista-7260CX3-D108C8", 0] + self.assertEqual(fov.get_asic_name(), "th2") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_td2(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Force10-S6000", 0] + self.assertEqual(fov.get_asic_name(), "td2") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_td3(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Arista-7050CX3-32S-C32", 0] + self.assertEqual(fov.get_asic_name(), "td3") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_cisco(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'cisco-8000'} + self.assertEqual(fov.get_asic_name(), "cisco-8000") diff --git a/tests/generic_config_updater/files/config_db_with_port_critical.json b/tests/generic_config_updater/files/config_db_with_port_critical.json index 5853bfe5e..2b2007d06 100644 --- a/tests/generic_config_updater/files/config_db_with_port_critical.json +++ b/tests/generic_config_updater/files/config_db_with_port_critical.json @@ -36,6 +36,23 @@ "lanes": "41,42,43,44", "pfc_asym": "off", "speed": "40000" + }, + "Ethernet28": { + "alias": "fortyGigE0/28", + "description": "Servers5:eth0", + "index": "6", + "lanes": "53,54,55,56", + "pfc_asym": "off", + "speed": "40000" + }, + "Ethernet32": { + "alias": "fortyGigE0/32", + "description": "Servers6:eth0", + "index": "7", + "lanes": "57,58,59,60", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" } }, "BUFFER_PG": { @@ -44,6 +61,9 @@ }, "Ethernet12|0": { "profile": "ingress_lossy_profile" + }, + "Ethernet28|0": { + "profile": "ingress_lossy_profile" } } } diff --git a/tests/generic_config_updater/files/config_db_with_profile_list.json b/tests/generic_config_updater/files/config_db_with_profile_list.json new file mode 100644 index 000000000..00195433b --- /dev/null +++ b/tests/generic_config_updater/files/config_db_with_profile_list.json @@ -0,0 +1,42 @@ +{ + "BUFFER_POOL": { + "egress_lossless_pool": { + "mode": "static", + "size": "33004032", + "xoff": "196608", + "type": "egress" + }, + "egress_lossy_pool": { + "size": "12766208", + "type": "egress", + "mode": "dynamic" + } + }, + "BUFFER_PROFILE": { + "egress_lossless_profile": { + "pool":"egress_lossless_pool", + "size":"1518", + "dynamic_th":"3" + }, + "egress_lossy_profile": { + "pool":"egress_lossy_pool", + "size":"1518", + "dynamic_th":"3" + } + }, + "BUFFER_PORT_EGRESS_PROFILE_LIST": { + "Ethernet9": { + "profile_list": "egress_lossless_profile,egress_lossy_profile" + } + }, + "PORT": { + "Ethernet9": { + "alias": "Eth3/2", + "lanes": "74", + "description": "", + "speed": "11100", + "tpid": "0x8100", + "admin_status": "up" + } + } +} \ No newline at end of file diff --git a/tests/generic_config_updater/files/config_db_with_type1_tables.json b/tests/generic_config_updater/files/config_db_with_type1_tables.json new file mode 100644 index 000000000..c1f2d3e38 --- /dev/null +++ b/tests/generic_config_updater/files/config_db_with_type1_tables.json @@ -0,0 +1,22 @@ +{ + "DOT1P_TO_TC_MAP": { + "Dot1p_to_tc_map1": { + "1": "1", + "2": "2" + }, + "Dot1p_to_tc_map2": { + "3": "3", + "4": "4" + } + }, + "EXP_TO_FC_MAP": { + "Exp_to_fc_map1": { + "1": "1", + "2": "2" + }, + "Exp_to_fc_map2": { + "3": "3", + "4": "4" + } + } +} \ No newline at end of file diff --git a/tests/generic_config_updater/files/feature_patch_application_test_failure.json b/tests/generic_config_updater/files/feature_patch_application_test_failure.json new file mode 100644 index 000000000..80c523ddf --- /dev/null +++ b/tests/generic_config_updater/files/feature_patch_application_test_failure.json @@ -0,0 +1,35 @@ +{ + "RDMA_SHARED_POOL_SIZE_CHANGE__FAILURE": { + "desc": "For RDMA shared pool size tuning- adjust both shared pool and headroom pool", + "current_config": { + "BUFFER_POOL": { + "ingress_lossless_pool": { + "xoff": "4194112", + "type": "ingress", + "mode": "dynamic", + "size": "10875072" + }, + "egress_lossless_pool": { + "type": "egress", + "mode": "static", + "size": "15982720" + }, + "egress_lossy_pool": { + "type": "egress", + "mode": "dynamic", + "size": "9243812" + } + } + }, + "patch": [ + { + "op": "replace", + "path": "/BUFFER_POOL/ingress_lossless_pool/xoff", + "value": "invalid_xoff" + } + ], + "expected_error_substrings": [ + "Given patch will produce invalid config" + ] + } +} diff --git a/tests/generic_config_updater/files/feature_patch_application_test_success.json b/tests/generic_config_updater/files/feature_patch_application_test_success.json new file mode 100644 index 000000000..7ca6cab4b --- /dev/null +++ b/tests/generic_config_updater/files/feature_patch_application_test_success.json @@ -0,0 +1,62 @@ +{ + "RDMA_SHARED_POOL_SIZE_CHANGE__SUCCESS": { + "desc": "For RDMA shared pool size tuning- adjust both shared pool and headroom pool", + "current_config": { + "BUFFER_POOL": { + "ingress_lossless_pool": { + "xoff": "4194112", + "type": "ingress", + "mode": "dynamic", + "size": "10875072" + }, + "egress_lossless_pool": { + "type": "egress", + "mode": "static", + "size": "15982720" + }, + "egress_lossy_pool": { + "type": "egress", + "mode": "dynamic", + "size": "9243812" + } + } + }, + "patch": [ + { + "op": "replace", + "path": "/BUFFER_POOL/ingress_lossless_pool/xoff", + "value": "2155712" + }, + { + "op": "replace", + "path": "/BUFFER_POOL/ingress_lossless_pool/size", + "value": "12913472" + }, + { + "op": "replace", + "path": "/BUFFER_POOL/egress_lossy_pool/size", + "value": "5200000" + } + ], + "expected_config": { + "BUFFER_POOL": { + "ingress_lossless_pool": { + "xoff": "2155712", + "type": "ingress", + "mode": "dynamic", + "size": "12913472" + }, + "egress_lossless_pool": { + "type": "egress", + "mode": "static", + "size": "15982720" + }, + "egress_lossy_pool": { + "type": "egress", + "mode": "dynamic", + "size": "5200000" + } + } + } + } +} diff --git a/tests/generic_config_updater/files/patch_sorter_test_success.json b/tests/generic_config_updater/files/patch_sorter_test_success.json index 74cb4ed72..217737e41 100644 --- a/tests/generic_config_updater/files/patch_sorter_test_success.json +++ b/tests/generic_config_updater/files/patch_sorter_test_success.json @@ -574,38 +574,6 @@ } ], "expected_changes": [ - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback0|10.1.0.32~132" - } - ], - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback0|1100:1::32~1128" - } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback0|10.1.0.32~132", - "value": {} - } - ], - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback1|20.2.0.32~132" - } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback0|1100:1::32~1128", - "value": {} - } - ], [ { "op": "remove", @@ -646,13 +614,6 @@ "path": "/LOOPBACK_INTERFACE/Loopback0|1100:1::32~1128", "value": {} } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback1|20.2.0.32~132", - "value": {} - } ] ] }, @@ -809,51 +770,12 @@ "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" } ], - [ - { - "op": "remove", - "path": "/ACL_TABLE" - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE", - "value": { - "NO-NSW-PACL-V4": { - "type": "L3" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] - } - ], [ { "op": "remove", "path": "/VLAN_MEMBER" } ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/policy_desc", - "value": "NO-NSW-PACL-V4" - } - ], - [ - { - "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" - } - ], [ { "op": "remove", @@ -1124,6 +1046,12 @@ "path": "/VLAN_MEMBER/Vlan100|Ethernet3" } ], + [ + { + "op": "remove", + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/0" + } + ], [ { "op": "replace", @@ -1184,7 +1112,7 @@ [ { "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/1" + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/0" } ], [ @@ -1196,7 +1124,7 @@ [ { "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/1" + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/0" } ], [ @@ -1207,72 +1135,27 @@ ], [ { - "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/1" - } - ], - [ - { - "op": "remove", - "path": "/PORT/Ethernet3" + "op": "add", + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/0", + "value": "Ethernet0" } ], [ { "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/1" } ], [ { "op": "remove", - "path": "/VLAN_MEMBER" - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] + "path": "/PORT/Ethernet3" } ], [ { "op": "remove", - "path": "/ACL_TABLE" - } - ], - [ - { - "op": "add", - "path": "/VLAN_MEMBER", - "value": { - "Vlan100|Ethernet0": { - "tagging_mode": "untagged" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE", - "value": { - "NO-NSW-PACL-V4": { - "type": "L3" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" } ], [ @@ -1281,12 +1164,6 @@ "path": "/VLAN_MEMBER" } ], - [ - { - "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" - } - ], [ { "op": "remove", @@ -1318,13 +1195,6 @@ } } ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/policy_desc", - "value": "NO-NSW-PACL-V4" - } - ], [ { "op": "add", @@ -2323,38 +2193,6 @@ } ], "expected_changes": [ - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback1|20.2.0.32~132" - } - ], - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback1|2200:2::32~1128" - } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback1|20.2.0.32~132", - "value": {} - } - ], - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback0|10.1.0.32~132" - } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback1|2200:2::32~1128", - "value": {} - } - ], [ { "op": "remove", @@ -2373,13 +2211,6 @@ "path": "/LOOPBACK_INTERFACE/Loopback1" } ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback0|10.1.0.32~132", - "value": {} - } - ], [ { "op": "add", @@ -2565,64 +2396,6 @@ "path": "/VLAN_MEMBER" } ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] - } - ], - [ - { - "op": "remove", - "path": "/ACL_TABLE" - } - ], - [ - { - "op": "add", - "path": "/VLAN_MEMBER", - "value": { - "Vlan100|Ethernet0": { - "tagging_mode": "untagged" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE", - "value": { - "NO-NSW-PACL-V4": { - "type": "L3" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] - } - ], - [ - { - "op": "remove", - "path": "/VLAN_MEMBER" - } - ], - [ - { - "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" - } - ], [ { "op": "remove", @@ -2654,13 +2427,6 @@ } } ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/policy_desc", - "value": "NO-NSW-PACL-V4" - } - ], [ { "op": "add", @@ -2673,8 +2439,10 @@ ] }, "ADDING_LOOPBACK0_VRF_NAME__DELETES_LOOPBACK0_AND_IPS_DOES_NOT_AFFECT_OTHER_TABLES": { - "desc": ["Adding loopback vrf name, deletes loopback0 and the associated ips. ", - "It does not affect other tables."], + "desc": [ + "Adding loopback vrf name, deletes loopback0 and the associated ips. ", + "It does not affect other tables." + ], "current_config": { "CABLE_LENGTH": { "AZURE": { @@ -2733,7 +2501,7 @@ "op": "add", "path": "/LOOPBACK_INTERFACE", "value": { - "Loopback0":{ + "Loopback0": { "vrf_name": "Vrf_01" } } @@ -3538,6 +3306,15 @@ "profile": "egress_lossy_profile" } }, + "CABLE_LENGTH": { + "AZURE": { + "Ethernet52": "40m", + "Ethernet56": "40m", + "Ethernet60": "40m", + "Ethernet68": "40m", + "Ethernet72": "40m" + } + }, "DEVICE_NEIGHBOR": { "Ethernet52": { "name": "ARISTA13T2", @@ -3819,6 +3596,11 @@ "path": "/ACL_TABLE/EVERFLOW/ports/0", "value": "Ethernet64" }, + { + "op": "add", + "path": "/CABLE_LENGTH/AZURE/Ethernet64", + "value": "40m" + }, { "op": "add", "path": "/INTERFACE/Ethernet64", @@ -4584,6 +4366,13 @@ "value": "up" } ], + [ + { + "op": "add", + "path": "/CABLE_LENGTH/AZURE/Ethernet64", + "value": "40m" + } + ], [ { "op": "replace", @@ -5233,6 +5022,16 @@ "profile": "egress_lossy_profile" } }, + "CABLE_LENGTH": { + "AZURE": { + "Ethernet52": "40m", + "Ethernet56": "40m", + "Ethernet60": "40m", + "Ethernet64": "40m", + "Ethernet68": "40m", + "Ethernet72": "40m" + } + }, "DEVICE_NEIGHBOR": { "Ethernet52": { "name": "ARISTA13T2", @@ -5680,6 +5479,10 @@ "op": "remove", "path": "/BGP_NEIGHBOR/fc00::7e/admin_status" }, + { + "op": "remove", + "path": "/CABLE_LENGTH/AZURE/Ethernet64" + }, { "op": "remove", "path": "/INTERFACE/Ethernet64" @@ -6063,6 +5866,12 @@ "path": "/BGP_NEIGHBOR/fc00::a/admin_status" } ], + [ + { + "op": "remove", + "path": "/CABLE_LENGTH/AZURE/Ethernet64" + } + ], [ { "op": "replace", diff --git a/tests/generic_config_updater/gcu_feature_patch_application_test.py b/tests/generic_config_updater/gcu_feature_patch_application_test.py new file mode 100644 index 000000000..5be7cc110 --- /dev/null +++ b/tests/generic_config_updater/gcu_feature_patch_application_test.py @@ -0,0 +1,120 @@ +import jsonpatch +import unittest +import copy +import mock +from unittest.mock import MagicMock, Mock +from mock import patch + +import generic_config_updater.change_applier +import generic_config_updater.patch_sorter as ps +import generic_config_updater.generic_updater as gu +from .gutest_helpers import Files +from generic_config_updater.gu_common import ConfigWrapper, PatchWrapper + +running_config = {} + +def set_entry(config_db, tbl, key, data): + global running_config + if data != None: + if tbl not in running_config: + running_config[tbl] = {} + running_config[tbl][key] = data + else: + assert tbl in running_config + assert key in running_config[tbl] + running_config[tbl].pop(key) + if not running_config[tbl]: + running_config.pop(tbl) + +def get_running_config(): + return running_config + +class TestFeaturePatchApplication(unittest.TestCase): + def setUp(self): + self.config_wrapper = ConfigWrapper() + + @patch("generic_config_updater.field_operation_validators.rdma_config_update_validator", mock.Mock(return_value=True)) + def test_feature_patch_application_success(self): + # Format of the JSON file containing the test-cases: + # + # { + # "":{ + # "desc":"", + # "current_config":, + # "patch":, + # "expected_config": + # }, + # . + # . + # . + # } + data = Files.FEATURE_PATCH_APPLICATION_TEST_SUCCESS + + for test_case_name in data: + with self.subTest(name=test_case_name): + self.run_single_success_case_applier(data[test_case_name]) + + @patch("generic_config_updater.field_operation_validators.rdma_config_update_validator", mock.Mock(return_value=True)) + def test_feature_patch_application_failure(self): + # Fromat of the JSON file containing the test-cases: + # + # { + # "":{ + # "desc":"", + # "current_config":, + # "patch":, + # "expected_error_substrings": + # }, + # . + # . + # . + # } + data = Files.FEATURE_PATCH_APPLICATION_TEST_FAILURE + + for test_case_name in data: + with self.subTest(name=test_case_name): + self.run_single_failure_case_applier(data[test_case_name]) + + def create_patch_applier(self, config): + global running_config + running_config = copy.deepcopy(config) + config_wrapper = self.config_wrapper + config_wrapper.get_config_db_as_json = MagicMock(side_effect=get_running_config) + change_applier = generic_config_updater.change_applier.ChangeApplier() + change_applier._get_running_config = MagicMock(side_effect=get_running_config) + patch_wrapper = PatchWrapper(config_wrapper) + return gu.PatchApplier(config_wrapper=config_wrapper, patch_wrapper=patch_wrapper, changeapplier=change_applier) + + @patch("generic_config_updater.change_applier.get_config_db") + @patch("generic_config_updater.change_applier.set_config") + def run_single_success_case_applier(self, data, mock_set, mock_db): + current_config = data["current_config"] + mock_set.side_effect = set_entry + expected_config = data["expected_config"] + patch = jsonpatch.JsonPatch(data["patch"]) + patch_applier = self.create_patch_applier(current_config) + patch_applier.apply(patch) + result_config = patch_applier.config_wrapper.get_config_db_as_json() + + self.assertEqual(expected_config, result_config) + + @patch("generic_config_updater.change_applier.get_config_db") + def run_single_failure_case_applier(self, data, mock_db): + current_config = data["current_config"] + patch = jsonpatch.JsonPatch(data["patch"]) + expected_error_substrings = data["expected_error_substrings"] + + try: + patch_applier = self.create_patch_applier(current_config) + patch_applier.apply(patch) + self.fail("An exception was supposed to be thrown") + except Exception as ex: + notfound_substrings = [] + error = str(ex) + + for substring in expected_error_substrings: + if substring not in error: + notfound_substrings.append(substring) + + if notfound_substrings: + self.fail(f"Did not find the expected substrings {notfound_substrings} in the error: '{error}'") diff --git a/tests/generic_config_updater/generic_updater_test.py b/tests/generic_config_updater/generic_updater_test.py index aab2eae27..4007f726b 100644 --- a/tests/generic_config_updater/generic_updater_test.py +++ b/tests/generic_config_updater/generic_updater_test.py @@ -2,7 +2,7 @@ import os import shutil import unittest -from unittest.mock import MagicMock, Mock, call +from unittest.mock import MagicMock, Mock, call, patch from .gutest_helpers import create_side_effect_dict, Files import generic_config_updater.generic_updater as gu @@ -124,6 +124,8 @@ def __create_config_replacer(self, changes=None, verified_same_config=True): return gu.ConfigReplacer(patch_applier, config_wrapper, patch_wrapper) + +@patch('generic_config_updater.generic_updater.get_config_json', MagicMock(return_value={})) class TestFileSystemConfigRollbacker(unittest.TestCase): def setUp(self): self.checkpoints_dir = os.path.join(os.getcwd(),"checkpoints") diff --git a/tests/generic_config_updater/gu_common_test.py b/tests/generic_config_updater/gu_common_test.py index e3a8a3bde..4a16a5ca4 100644 --- a/tests/generic_config_updater/gu_common_test.py +++ b/tests/generic_config_updater/gu_common_test.py @@ -3,12 +3,26 @@ import jsonpatch import sonic_yang import unittest -from unittest.mock import MagicMock, Mock +import mock +from unittest.mock import MagicMock, Mock +from mock import patch from .gutest_helpers import create_side_effect_dict, Files import generic_config_updater.gu_common as gu_common class TestDryRunConfigWrapper(unittest.TestCase): + @patch('generic_config_updater.gu_common.subprocess.Popen') + def test_get_config_db_as_json(self, mock_popen): + config_wrapper = gu_common.DryRunConfigWrapper() + mock_proc = MagicMock() + mock_proc.communicate = MagicMock( + return_value=('{"PORT": {}, "bgpraw": ""}', None)) + mock_proc.returncode = 0 + mock_popen.return_value = mock_proc + actual = config_wrapper.get_config_db_as_json() + expected = {"PORT": {}} + self.assertDictEqual(actual, expected) + def test_get_config_db_as_json__returns_imitated_config_db(self): # Arrange config_wrapper = gu_common.DryRunConfigWrapper(Files.CONFIG_DB_AS_JSON) @@ -62,6 +76,28 @@ def test_ctor__default_values_set(self): self.assertEqual("/usr/local/yang-models", gu_common.YANG_DIR) + @patch('generic_config_updater.gu_common.subprocess.Popen') + def test_get_config_db_as_text(self, mock_popen): + config_wrapper = gu_common.ConfigWrapper() + mock_proc = MagicMock() + mock_proc.communicate = MagicMock( + return_value=("[]", None)) + mock_proc.returncode = 0 + mock_popen.return_value = mock_proc + actual = config_wrapper._get_config_db_as_text() + expected = "[]" + self.assertEqual(actual, expected) + + config_wrapper = gu_common.ConfigWrapper(scope="asic0") + mock_proc = MagicMock() + mock_proc.communicate = MagicMock( + return_value=("[]", None)) + mock_proc.returncode = 0 + mock_popen.return_value = mock_proc + actual = config_wrapper._get_config_db_as_text() + expected = "[]" + self.assertEqual(actual, expected) + def test_get_sonic_yang_as_json__returns_sonic_yang_as_json(self): # Arrange config_wrapper = self.config_wrapper_mock @@ -186,6 +222,158 @@ def test_validate_config_db_config__invalid_config__returns_false(self): self.assertEqual(expected, actual) self.assertIsNotNone(error) + def test_validate_bgp_peer_group__valid_non_intersecting_ip_ranges__returns_true(self): + # Arrange + config_wrapper = gu_common.ConfigWrapper() + config = { + "BGP_PEER_RANGE": + { + "BGPSLBPassive": { + "ip_range": ["1.1.1.1/31", "10.10.10.10/16", "100.100.100.100/24"] + }, + "BgpVac": { + "ip_range": ["2.2.2.2/31", "20.20.20.20/16", "200.200.200.200/24"] + } + } + } + + # Act + actual, error = config_wrapper.validate_bgp_peer_group(config) + + # Assert + self.assertTrue(actual) + self.assertIsNone(error) + + def test_validate_bgp_peer_group__same_ip_prefix__return_false(self): + # duplicate v4 within same ip_range + self.check_validate_bgp_peer_group( + ["1.1.1.1/16", "1.1.1.1/16"], + duplicated_ip="1.1.1.1/16") + # duplicate v4 within different ip_ranges + self.check_validate_bgp_peer_group( + ["1.1.1.1/16"], + ["1.1.1.1/16"], + duplicated_ip="1.1.1.1/16") + # duplicate v4 within different ip_ranges, but many ips + self.check_validate_bgp_peer_group( + ["1.1.1.1/16", "1.1.1.1/31", "10.10.10.10/16", "100.100.100.100/24"], + ["2.2.2.2/31", "20.20.20.20/16", "200.200.200.200/24", "1.1.1.1/16"], + duplicated_ip="1.1.1.1/16") + # duplicate v6 within same ip_range + self.check_validate_bgp_peer_group( + ["fc00:1::32/16", "fc00:1::32/16"], + duplicated_ip="fc00:1::32/16") + # duplicate v6 within different ip_ranges + self.check_validate_bgp_peer_group( + ["fc00:1::32/16"], + ["fc00:1::32/16"], + duplicated_ip="fc00:1::32/16") + # duplicate v6 within different ip_ranges, but many ips + self.check_validate_bgp_peer_group( + ["fc00:1::32/16", "fc00:1::32/31", "10:1::1/16", "100:1::1/24"], + ["2:1::1/31", "20:1::1/16", "200:1::1/24", "fc00:1::32/16"], + duplicated_ip="fc00:1::32/16") + + def check_validate_bgp_peer_group(self, ip_range, other_ip_range=[], duplicated_ip=None): + # Arrange + config_wrapper = gu_common.ConfigWrapper() + config = { + "BGP_PEER_RANGE": + { + "BGPSLBPassive": { + "ip_range": ip_range + }, + "BgpVac": { + "ip_range": other_ip_range + }, + } + } + + # Act + actual, error = config_wrapper.validate_bgp_peer_group(config) + + # Assert + self.assertFalse(actual) + self.assertTrue(duplicated_ip in error) + + def test_validate_lanes__no_port_table__success(self): + config = {"ACL_TABLE": {}} + self.validate_lanes(config) + + def test_validate_lanes__empty_port_table__success(self): + config = {"PORT": {}} + self.validate_lanes(config) + + def test_validate_lanes__empty_lane__failure(self): + config = {"PORT": {"Ethernet0": {"lanes": "", "speed":"10000"}}} + self.validate_lanes(config, 'has an empty lane') + + def test_validate_lanes__whitespace_lane__failure(self): + config = {"PORT": {"Ethernet0": {"lanes": " ", "speed":"10000"}}} + self.validate_lanes(config, 'has an empty lane') + + def test_validate_lanes__non_digits_lane__failure(self): + config = {"PORT": {"Ethernet0": {"lanes": "10g", "speed":"10000"}}} + self.validate_lanes(config, "has an invalid lane '10g'") + + def test_validate_lanes__space_between_digits_lane__failure(self): + config = {"PORT": {"Ethernet0": {"lanes": " 1 0 ", "speed":"10000"}}} + self.validate_lanes(config, "has an invalid lane '1 0'") + + def test_validate_lanes__single_valid_lane__success(self): + config = {"PORT": {"Ethernet0": {"lanes": "66", "speed":"10000"}}} + self.validate_lanes(config) + + def test_validate_lanes__different_valid_lanes_single_port__success(self): + config = {"PORT": {"Ethernet0": {"lanes": "66, 67, 68", "speed":"10000"}}} + self.validate_lanes(config) + + def test_validate_lanes__different_valid_and_invalid_empty_lanes_single_port__failure(self): + config = {"PORT": {"Ethernet0": {"lanes": "66, , 68", "speed":"10000"}}} + self.validate_lanes(config, 'has an empty lane') + + def test_validate_lanes__different_valid_and_invalid_non_digit_lanes_single_port__failure(self): + config = {"PORT": {"Ethernet0": {"lanes": "66, 67, 10g", "speed":"10000"}}} + self.validate_lanes(config, "has an invalid lane '10g'") + + def test_validate_lanes__different_valid_lanes_multi_ports__success(self): + config = {"PORT": { + "Ethernet0": {"lanes": " 64 , 65 \t", "speed":"10000"}, + "Ethernet1": {"lanes": " 66 , 67 \r\t\n, 68 ", "speed":"10000"}, + }} + self.validate_lanes(config) + + def test_validate_lanes__same_valid_lanes_single_port__failure(self): + config = {"PORT": {"Ethernet0": {"lanes": "65 \r\t\n, 65", "speed":"10000"}}} + self.validate_lanes(config, '65') + + def test_validate_lanes__same_valid_lanes_multi_ports__failure(self): + config = {"PORT": { + "Ethernet0": {"lanes": "64, 65, 67", "speed":"10000"}, + "Ethernet1": {"lanes": "66, 67, 68", "speed":"10000"}, + }} + self.validate_lanes(config, '67') + + def test_validate_lanes__same_valid_lanes_multi_ports_no_spaces__failure(self): + config = {"PORT": { + "Ethernet0": {"lanes": "64,65,67", "speed":"10000"}, + "Ethernet1": {"lanes": "66,67,68", "speed":"10000"}, + }} + self.validate_lanes(config, '67') + + def validate_lanes(self, config_db, expected_error=None): + # Arrange + config_wrapper = gu_common.ConfigWrapper() + expected = expected_error is None # if expected_error is None, then the input is valid + + # Act + actual, error = config_wrapper.validate_lanes(config_db) + + # Assert + self.assertEqual(expected, actual) + if expected_error: + self.assertTrue(expected_error in error) + def test_crop_tables_without_yang__returns_cropped_config_db_as_json(self): # Arrange config_wrapper = gu_common.ConfigWrapper() @@ -705,6 +893,19 @@ def test_find_ref_paths__does_not_remove_tables_without_yang(self): # Assert self.assertEqual(expected_config, config) + def test_find_ref_paths__ref_path_is_leaflist_in_yang_but_string_in_config_db__path_to_string_returned(self): + # Arrange + path = "/BUFFER_PROFILE/egress_lossless_profile" + expected = [ + "/BUFFER_PORT_EGRESS_PROFILE_LIST/Ethernet9/profile_list", + ] + + # Act + actual = self.path_addressing.find_ref_paths(path, Files.CONFIG_DB_WITH_PROFILE_LIST) + + # Assert + self.assertEqual(expected, actual) + def test_convert_path_to_xpath(self): def check(path, xpath, config=None): if not config: @@ -765,6 +966,18 @@ def check(path, xpath, config=None): check(path="/LLDP/GLOBAL/mode", xpath="/sonic-lldp:sonic-lldp/LLDP/GLOBAL/mode", config=Files.CONFIG_DB_WITH_LLDP) + check(path="/BUFFER_PORT_EGRESS_PROFILE_LIST/Ethernet9/profile_list", + xpath="/sonic-buffer-port-egress-profile-list:sonic-buffer-port-egress-profile-list/BUFFER_PORT_EGRESS_PROFILE_LIST/BUFFER_PORT_EGRESS_PROFILE_LIST_LIST[port='Ethernet9']/profile_list", + config=Files.CONFIG_DB_WITH_PROFILE_LIST) + check(path="/DOT1P_TO_TC_MAP/Dot1p_to_tc_map1", + xpath="/sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) + check(path="/DOT1P_TO_TC_MAP/Dot1p_to_tc_map1/2", + xpath="/sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP[dot1p='2']", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) + check(path="/EXP_TO_FC_MAP/Exp_to_fc_map2/4", + xpath="/sonic-exp-fc-map:sonic-exp-fc-map/EXP_TO_FC_MAP/EXP_TO_FC_MAP_LIST[name='Exp_to_fc_map2']/EXP_TO_FC_MAP[exp='4']", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) def test_convert_xpath_to_path(self): def check(xpath, path, config=None): @@ -840,6 +1053,30 @@ def check(xpath, path, config=None): check(xpath="/sonic-lldp:sonic-lldp/LLDP/GLOBAL/mode", path="/LLDP/GLOBAL/mode", config=Files.CONFIG_DB_WITH_LLDP) + check(xpath="/sonic-buffer-port-egress-profile-list:sonic-buffer-port-egress-profile-list/BUFFER_PORT_EGRESS_PROFILE_LIST/BUFFER_PORT_EGRESS_PROFILE_LIST_LIST[port='Ethernet9']/profile_list", + path="/BUFFER_PORT_EGRESS_PROFILE_LIST/Ethernet9/profile_list", + config=Files.CONFIG_DB_WITH_PROFILE_LIST) + check(xpath="/sonic-buffer-port-egress-profile-list:sonic-buffer-port-egress-profile-list/BUFFER_PORT_EGRESS_PROFILE_LIST/BUFFER_PORT_EGRESS_PROFILE_LIST_LIST[port='Ethernet9']/profile_list[.='egress_lossy_profile']", + path="/BUFFER_PORT_EGRESS_PROFILE_LIST/Ethernet9/profile_list", + config=Files.CONFIG_DB_WITH_PROFILE_LIST) + check(xpath="/sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']", + path="/DOT1P_TO_TC_MAP/Dot1p_to_tc_map1", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) + check(xpath="/sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP", + path="/DOT1P_TO_TC_MAP/Dot1p_to_tc_map1", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) + check(xpath="/sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP[dot1p='2']", + path="/DOT1P_TO_TC_MAP/Dot1p_to_tc_map1/2", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) + check(xpath="/sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP[dot1p='2']/dot1p", + path="/DOT1P_TO_TC_MAP/Dot1p_to_tc_map1/2", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) + check(xpath="/sonic-dot1p-tc-map:sonic-dot1p-tc-map/DOT1P_TO_TC_MAP/DOT1P_TO_TC_MAP_LIST[name='Dot1p_to_tc_map1']/DOT1P_TO_TC_MAP[dot1p='2']/tc", + path="/DOT1P_TO_TC_MAP/Dot1p_to_tc_map1/2", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) + check(xpath="/sonic-exp-fc-map:sonic-exp-fc-map/EXP_TO_FC_MAP/EXP_TO_FC_MAP_LIST[name='Exp_to_fc_map2']/EXP_TO_FC_MAP[exp='4']", + path="/EXP_TO_FC_MAP/Exp_to_fc_map2/4", + config=Files.CONFIG_DB_WITH_TYPE1_TABLES) def test_has_path(self): def check(config, path, expected): diff --git a/tests/generic_config_updater/multiasic_change_applier_test.py b/tests/generic_config_updater/multiasic_change_applier_test.py new file mode 100644 index 000000000..d7f734d2e --- /dev/null +++ b/tests/generic_config_updater/multiasic_change_applier_test.py @@ -0,0 +1,172 @@ +import unittest +from importlib import reload +from unittest.mock import patch, MagicMock +from generic_config_updater.generic_updater import extract_scope +import generic_config_updater.change_applier +import generic_config_updater.services_validator +import generic_config_updater.gu_common + + +class TestMultiAsicChangeApplier(unittest.TestCase): + + def test_extract_scope(self): + test_paths_expectedresults = { + "/asic0/PORTCHANNEL/PortChannel102/admin_status": (True, "asic0", "/PORTCHANNEL/PortChannel102/admin_status"), + "/asic01/PORTCHANNEL/PortChannel102/admin_status": (True, "asic01", "/PORTCHANNEL/PortChannel102/admin_status"), + "/asic123456789/PORTCHANNEL/PortChannel102/admin_status": (True, "asic123456789", "/PORTCHANNEL/PortChannel102/admin_status"), + "/asic0123456789/PORTCHANNEL/PortChannel102/admin_status": (True, "asic0123456789", "/PORTCHANNEL/PortChannel102/admin_status"), + "/localhost/BGP_DEVICE_GLOBAL/STATE/tsa_enabled": (True, "localhost", "/BGP_DEVICE_GLOBAL/STATE/tsa_enabled"), + "/asic1/BGP_DEVICE_GLOBAL/STATE/tsa_enabled": (True, "asic1", "/BGP_DEVICE_GLOBAL/STATE/tsa_enabled"), + "/sometable/data": (True, "", "/sometable/data"), + "": (False, "", ""), + "localhostabc/BGP_DEVICE_GLOBAL/STATE/tsa_enabled": (False, "", ""), + "/asic77": (False, "", ""), + "/Asic0/PORTCHANNEL/PortChannel102/admin_status": (False, "", ""), + "/ASIC1/PORTCHANNEL/PortChannel102/admin_status": (False, "", ""), + "/Localhost/PORTCHANNEL/PortChannel102/admin_status": (False, "", ""), + "/LocalHost/PORTCHANNEL/PortChannel102/admin_status": (False, "", ""), + "/asci1/PORTCHANNEL/PortChannel102/admin_status": (False, "", ""), + "/asicx/PORTCHANNEL/PortChannel102/admin_status": (False, "", ""), + "/asic-12/PORTCHANNEL/PortChannel102/admin_status": (False, "", ""), + } + + for test_path, (result, expectedscope, expectedremainder) in test_paths_expectedresults.items(): + try: + scope, remainder = extract_scope(test_path) + assert(scope == expectedscope) + assert(remainder == expectedremainder) + except Exception as e: + assert(result == False) + + @patch('generic_config_updater.change_applier.ChangeApplier._get_running_config', autospec=True) + @patch('generic_config_updater.change_applier.ConfigDBConnector', autospec=True) + def test_apply_change_default_scope(self, mock_ConfigDBConnector, mock_get_running_config): + # Setup mock for ConfigDBConnector + mock_db = MagicMock() + mock_ConfigDBConnector.return_value = mock_db + + # Setup mock for json.load to return some running configuration + mock_get_running_config.return_value = { + "tables": { + "ACL_TABLE": { + "services_to_validate": ["aclservice"], + "validate_commands": ["acl_loader show table"] + }, + "PORT": { + "services_to_validate": ["portservice"], + "validate_commands": ["show interfaces status"] + } + }, + "services": { + "aclservice": { + "validate_commands": ["acl_loader show table"] + }, + "portservice": { + "validate_commands": ["show interfaces status"] + } + } + } + + # Instantiate ChangeApplier with the default scope + applier = generic_config_updater.change_applier.ChangeApplier() + + # Prepare a change object or data that applier.apply would use + change = MagicMock() + + # Call the apply method with the change object + applier.apply(change) + + # Assert ConfigDBConnector called with the correct namespace + mock_ConfigDBConnector.assert_called_once_with(use_unix_socket_path=True, namespace="") + + @patch('generic_config_updater.change_applier.ChangeApplier._get_running_config', autospec=True) + @patch('generic_config_updater.change_applier.ConfigDBConnector', autospec=True) + def test_apply_change_given_scope(self, mock_ConfigDBConnector, mock_get_running_config): + # Setup mock for ConfigDBConnector + mock_db = MagicMock() + mock_ConfigDBConnector.return_value = mock_db + + # Setup mock for json.load to return some running configuration + mock_get_running_config.return_value = { + "tables": { + "ACL_TABLE": { + "services_to_validate": ["aclservice"], + "validate_commands": ["acl_loader show table"] + }, + "PORT": { + "services_to_validate": ["portservice"], + "validate_commands": ["show interfaces status"] + } + }, + "services": { + "aclservice": { + "validate_commands": ["acl_loader show table"] + }, + "portservice": { + "validate_commands": ["show interfaces status"] + } + } + } + + # Instantiate ChangeApplier with the default scope + applier = generic_config_updater.change_applier.ChangeApplier(scope="asic0") + + # Prepare a change object or data that applier.apply would use + change = MagicMock() + + # Call the apply method with the change object + applier.apply(change) + + # Assert ConfigDBConnector called with the correct scope + mock_ConfigDBConnector.assert_called_once_with(use_unix_socket_path=True, namespace="asic0") + + @patch('generic_config_updater.change_applier.ChangeApplier._get_running_config', autospec=True) + @patch('generic_config_updater.change_applier.ConfigDBConnector', autospec=True) + def test_apply_change_failure(self, mock_ConfigDBConnector, mock_get_running_config): + # Setup mock for ConfigDBConnector + mock_db = MagicMock() + mock_ConfigDBConnector.return_value = mock_db + + # Setup mock for json.load to return some running configuration + mock_get_running_config.side_effect = Exception("Failed to get running config") + # Instantiate ChangeApplier with a specific scope to simulate applying changes in a multi-asic environment + scope = "asic0" + applier = generic_config_updater.change_applier.ChangeApplier(scope=scope) + + # Prepare a change object or data that applier.apply would use + change = MagicMock() + + # Test the behavior when os.system fails + with self.assertRaises(Exception) as context: + applier.apply(change) + + self.assertTrue('Failed to get running config' in str(context.exception)) + + @patch('generic_config_updater.change_applier.ChangeApplier._get_running_config', autospec=True) + @patch('generic_config_updater.change_applier.ConfigDBConnector', autospec=True) + def test_apply_patch_with_empty_tables_failure(self, mock_ConfigDBConnector, mock_get_running_config): + # Setup mock for ConfigDBConnector + mock_db = MagicMock() + mock_ConfigDBConnector.return_value = mock_db + + # Setup mock for json.load to simulate configuration where crucial tables are unexpectedly empty + mock_get_running_config.return_value = { + "tables": { + # Simulate empty tables or missing crucial configuration + }, + "services": { + # Normally, services would be listed here + } + } + + # Instantiate ChangeApplier with a specific scope to simulate applying changes in a multi-asic environment + applier = generic_config_updater.change_applier.ChangeApplier(scope="asic0") + + # Prepare a change object or data that applier.apply would use, simulating a patch that requires non-empty tables + change = MagicMock() + + # Apply the patch + try: + assert(applier.apply(change) != 0) + except Exception: + pass diff --git a/tests/generic_config_updater/multiasic_generic_updater_test.py b/tests/generic_config_updater/multiasic_generic_updater_test.py new file mode 100644 index 000000000..5acdd391f --- /dev/null +++ b/tests/generic_config_updater/multiasic_generic_updater_test.py @@ -0,0 +1,167 @@ +import json +import jsonpatch +import unittest +from unittest.mock import patch, MagicMock + +import generic_config_updater.change_applier +import generic_config_updater.generic_updater +import generic_config_updater.services_validator +import generic_config_updater.gu_common + +# import sys +# sys.path.insert(0,'../../generic_config_updater') +# import generic_updater as gu + +class TestMultiAsicPatchApplier(unittest.TestCase): + + @patch('generic_config_updater.gu_common.ConfigWrapper.get_empty_tables', return_value=[]) + @patch('generic_config_updater.gu_common.ConfigWrapper.get_config_db_as_json') + @patch('generic_config_updater.gu_common.PatchWrapper.simulate_patch') + @patch('generic_config_updater.generic_updater.ChangeApplier') + def test_apply_patch_specific_namespace(self, mock_ChangeApplier, mock_simulate_patch, mock_get_config, mock_get_empty_tables): + scope = "asic0" + patch_data = jsonpatch.JsonPatch([ + { + "op": "add", + "path": "/ACL_TABLE/NEW_ACL_TABLE", + "value": { + "policy_desc": "New ACL Table", + "ports": ["Ethernet1", "Ethernet2"], + "stage": "ingress", + "type": "L3" + } + }, + { + "op": "replace", + "path": "/PORT/Ethernet1/mtu", + "value": "9200" + } + ]) + + original_config = { + "ACL_TABLE": { + "MY_ACL_TABLE": { + "policy_desc": "My ACL", + "ports": ["Ethernet1", "Ethernet2"], + "stage": "ingress", + "type": "L3" + } + }, + "PORT": { + "Ethernet1": { + "alias": "fortyGigE0/0", + "description": "fortyGigE0/0", + "index": "0", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" + }, + "Ethernet2": { + "alias": "fortyGigE0/100", + "description": "fortyGigE0/100", + "index": "25", + "lanes": "125,126,127,128", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" + } + } + } + + applied_config = { + "ACL_TABLE": { + "MY_ACL_TABLE": { + "policy_desc": "My ACL", + "ports": ["Ethernet1", "Ethernet2"], + "stage": "ingress", + "type": "L3" + }, + "NEW_ACL_TABLE": { + "policy_desc": "New ACL Table", + "ports": [ + "Ethernet1", + "Ethernet2" + ], + "stage": "ingress", + "type": "L3" + } + }, + "PORT": { + "Ethernet1": { + "alias": "fortyGigE0/0", + "description": "fortyGigE0/0", + "index": "0", + "lanes": "29,30,31,32", + "mtu": "9200", + "pfc_asym": "off", + "speed": "40000" + }, + "Ethernet2": { + "alias": "fortyGigE0/100", + "description": "fortyGigE0/100", + "index": "25", + "lanes": "125,126,127,128", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" + } + } + } + + mock_get_config.side_effect = [ + original_config, + original_config, + original_config, + applied_config + ] + + mock_simulate_patch.return_value = { + "ACL_TABLE": { + "MY_ACL_TABLE": { + "policy_desc": "My ACL", + "ports": [ + "Ethernet1", "Ethernet2" + ], + "stage": "ingress", + "type": "L3" + }, + "NEW_ACL_TABLE": { + "policy_desc": "New ACL Table", + "ports": [ + "Ethernet1", + "Ethernet2" + ], + "stage": "ingress", + "type": "L3" + } + }, + "PORT": { + "Ethernet1": { + "alias": "fortyGigE0/0", + "description": "fortyGigE0/0", + "index": "0", + "lanes": "29,30,31,32", + "mtu": "9200", + "pfc_asym": "off", + "speed": "40000" + }, + "Ethernet2": { + "alias": "fortyGigE0/100", + "description": "fortyGigE0/100", + "index": "25", + "lanes": "125,126,127,128", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" + } + } + } + + patch_applier = generic_config_updater.generic_updater.PatchApplier(scope=scope) + + # Apply the patch and verify + patch_applier.apply(patch_data) + + # Assertions to ensure the namespace is correctly used in underlying calls + mock_ChangeApplier.assert_called_once_with(scope=scope) diff --git a/tests/generic_config_updater/patch_sorter_test.py b/tests/generic_config_updater/patch_sorter_test.py index 4cb8fa701..900538dd6 100644 --- a/tests/generic_config_updater/patch_sorter_test.py +++ b/tests/generic_config_updater/patch_sorter_test.py @@ -753,6 +753,41 @@ def test_simulate__applies_move(self): # Assert self.assertIs(self.any_diff, actual) +class TestJsonPointerFilter(unittest.TestCase): + def test_get_paths__common_prefix__exact_match_returned(self): + config = { + "BUFFER_PG": { + "Ethernet1|0": {}, + "Ethernet12|0": {}, + "Ethernet120|0": {}, # 'Ethernet12' is a common prefix with the previous line + }, + } + + filter = ps.JsonPointerFilter([["BUFFER_PG", "Ethernet12|*"]], PathAddressing()) + + expected_paths = ["/BUFFER_PG/Ethernet12|0"] + + actual_paths = list(filter.get_paths(config)) + + self.assertCountEqual(expected_paths, actual_paths) + + def test_get_paths__common_suffix__exact_match_returned(self): + config = { + "QUEUE": { + "Ethernet1|0": {}, + "Ethernet1|10": {}, + "Ethernet1|110": {}, # 10 is a common suffix with the previous line + }, + } + + filter = ps.JsonPointerFilter([["QUEUE", "*|10"]], PathAddressing()) + + expected_paths = ["/QUEUE/Ethernet1|10"] + + actual_paths = list(filter.get_paths(config)) + + self.assertCountEqual(expected_paths, actual_paths) + class TestRequiredValueIdentifier(unittest.TestCase): def test_hard_coded_required_value_data(self): identifier = ps.RequiredValueIdentifier(PathAddressing()) @@ -868,49 +903,6 @@ def verify(self, operation_type, path, expected): # Assert self.assertEqual(expected, actual) -class TestUniqueLanesMoveValidator(unittest.TestCase): - def setUp(self): - self.validator = ps.UniqueLanesMoveValidator() - - def test_validate__no_port_table__success(self): - config = {"ACL_TABLE": {}} - self.validate_target_config(config) - - def test_validate__empty_port_table__success(self): - config = {"PORT": {}} - self.validate_target_config(config) - - def test_validate__single_lane__success(self): - config = {"PORT": {"Ethernet0": {"lanes": "66", "speed":"10000"}}} - self.validate_target_config(config) - - def test_validate__different_lanes_single_port___success(self): - config = {"PORT": {"Ethernet0": {"lanes": "66, 67, 68", "speed":"10000"}}} - self.validate_target_config(config) - - def test_validate__different_lanes_multi_ports___success(self): - config = {"PORT": { - "Ethernet0": {"lanes": "64, 65", "speed":"10000"}, - "Ethernet1": {"lanes": "66, 67, 68", "speed":"10000"}, - }} - self.validate_target_config(config) - - def test_validate__same_lanes_single_port___success(self): - config = {"PORT": {"Ethernet0": {"lanes": "65, 65", "speed":"10000"}}} - self.validate_target_config(config, False) - - def validate_target_config(self, target_config, expected=True): - # Arrange - current_config = {} - diff = ps.Diff(current_config, target_config) - move = ps.JsonMove(diff, OperationType.REPLACE, [], []) - - # Act - actual = self.validator.validate(move, diff) - - # Assert - self.assertEqual(expected, actual) - class TestFullConfigMoveValidator(unittest.TestCase): def setUp(self): self.any_current_config = Mock() @@ -1892,6 +1884,22 @@ def _get_critical_port_change_test_cases(self): } }) }, + # Additional cases where the full port is getting deleted + # If port is getting deleted, there is no point in checking if there are critical changes depending on it + "NOT_PORT_UP__STATUS_CHANGING__UNDER_PORT__PORT_EXIST__PORT_DELETION": { + "expected": True, + "config": Files.CONFIG_DB_WITH_PORT_CRITICAL, + "move": ps.JsonMove.from_operation({ "op": "remove", "path": "/PORT/Ethernet32" }) + }, + "NOT_PORT_UP__STATUS_CHANGING__NOT_UNDER_PORT__PORT_EXIST__PORT_DELETION": { + "expected": True, + "config": Files.CONFIG_DB_WITH_PORT_CRITICAL, + "target_config": self._apply_operations(Files.CONFIG_DB_WITH_PORT_CRITICAL, [ + { "op": "remove", "path": "/PORT/Ethernet28" }, + { "op": "remove", "path": "/BUFFER_PG/Ethernet28|0" }, + ]), + "move": ps.JsonMove.from_operation({ "op": "remove", "path": "/PORT/Ethernet28" }) + }, } def test_validate__no_critical_port_changes(self): @@ -1945,6 +1953,106 @@ def _get_no_critical_port_change_test_cases(self): def _apply_operations(self, config, operations): return jsonpatch.JsonPatch(operations).apply(config) +class RemoveCreateOnlyDependencyMoveValidator(unittest.TestCase): + def setUp(self): + path_addressing = PathAddressing(ConfigWrapper()) + self.validator = ps.RemoveCreateOnlyDependencyMoveValidator(path_addressing) + + def test_validate__lane_replacement_change(self): + test_cases = self._get_lane_replacement_change_test_cases() + for test_case_name in test_cases: + with self.subTest(name=test_case_name): + self._run_single_test(test_cases[test_case_name]) + + def _run_single_test(self, test_case): + # Arrange + expected = test_case['expected'] + current_config = test_case['config'] + move = test_case['move'] + target_config = test_case.get('target_config', move.apply(current_config)) + diff = ps.Diff(current_config, target_config) + + # Act and Assert + self.assertEqual(expected, self.validator.validate(move, diff)) + + def _apply_operations(self, config, operations): + return jsonpatch.JsonPatch(operations).apply(config) + + def _get_lane_replacement_change_test_cases(self): + return { + "PORT_NOT_IN_CURRENT_CONFIG": { + "expected": True, + "config": {}, + "move": Mock(), + "target_config": Files.DPB_1_SPLIT_FULL_CONFIG + }, + "PORT_NOT_IN_TARGET_CONFIG": { + "expected": True, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": Mock(), + "target_config": {} + }, + "PORT_EMPTY_IN_CURRENT_CONFIG": { + "expected": True, + "config": {"PORT": {}}, + "move": Mock(), + "target_config": Files.DPB_1_SPLIT_FULL_CONFIG + }, + "PORT_EMPTY_IN_TARGET_CONFIG": { + "expected": True, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": Mock(), + "target_config": {"PORT": {}} + }, + "SAME_LANE_IN_BOTH_CONFIG": { + "expected": True, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": ps.JsonMove.from_operation({ + "op": "remove", + "path": "/ACL_TABLE" + }) + }, + "LANE_DIFF__CURRENT_DOWN__SIMULATED_UP": { + "expected": False, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": ps.JsonMove.from_operation({ + "op": "add", + "path": "/PORT/Ethernet0/admin_status", + "value": "up" + }), + "target_config":Files.DPB_4_SPLITS_FULL_CONFIG, + }, + "LANE_DIFF__STATUS_SAME__SIMULATED_EXTRA_DEPDENDENCY": { + "expected": False, + "config": self._apply_operations(Files.DPB_1_SPLIT_FULL_CONFIG, [ + {"op": "remove", "path": "/ACL_TABLE"}, + ]), + "move": ps.JsonMove.from_operation({ + "op": "add", + "path": "/ACL_TABLE", + "value": { + "NO-NSW-PACL-V4": { + "type": "L3", + "policy_desc": "NO-NSW-PACL-V4", + "ports": [ + "Ethernet0" + ] + } + } + }), + "target_config": Files.DPB_4_SPLITS_FULL_CONFIG + }, + "LANE_DIFF__STATUS_SAME__SIMULATED_LESS_DEPDENDENCY": { + "expected": True, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": ps.JsonMove.from_operation({ + "op": "remove", + "path": "/ACL_TABLE" + }), + "target_config": Files.DPB_4_SPLITS_FULL_CONFIG + } + } + class TestTableLevelMoveGenerator(unittest.TestCase): def setUp(self): self.generator = ps.TableLevelMoveGenerator() @@ -2321,6 +2429,85 @@ def get_diff(self, target_config_ops = None, current_config_ops = None): return ps.Diff(current_config, target_config) +class RemoveCreateOnlyDependencyMoveGenerator(unittest.TestCase): + def setUp(self): + config_wrapper = ConfigWrapper() + path_addressing = PathAddressing(config_wrapper) + self.generator = ps.RemoveCreateOnlyDependencyMoveGenerator(path_addressing) + + def test_generate__no_port_table__no_moves(self): + current_config = {} + target_config = {"PORT": {"Ethernet0": {}}} + + # No PORT table in current_config + diff = ps.Diff(current_config, target_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + # No PORT table in target_config + diff = ps.Diff(target_config, current_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + def test_generate__empty_port_content__no_moves(self): + current_config = {"PORT": {}} + target_config = {"PORT": {"Ethernet0": {}}} + + # Empty PORT content in current_config + diff = ps.Diff(current_config, target_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + # Empty PORT content in target_config + diff = ps.Diff(target_config, current_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + def test_generate__same_lanes__no_moves(self): + current_config = Files.CROPPED_CONFIG_DB_AS_JSON + patch = jsonpatch.JsonPatch([ + {'op': 'remove', 'path': '/VLAN_MEMBER'} + ]) + target_config = patch.apply(Files.CROPPED_CONFIG_DB_AS_JSON) + + # Remove VLAN_MEMBER in target_config, lanes are same + diff = ps.Diff(current_config, target_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + # Add VLAN_MEMBER in current_config, lanes are same + diff = ps.Diff(target_config, current_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + def test_generate__dpb_4_to_1_example(self): + # Arrange + diff = ps.Diff(Files.DPB_4_SPLITs_FULL_CONFIG, Files.DPB_1_SPLIT_FULL_CONFIG) + + # Act + moves = list(self.generator.generate(diff)) + + # Assert + self.verify_moves([{'op': 'remove', 'path': '/ACL_TABLE/NO-NSW-PACL-V4/ports/0'}, + {'op': 'remove', 'path': '/VLAN_MEMBER/Vlan100|Ethernet0'}], + moves) + + def test_generate__dpb_1_to_4_example(self): + # Arrange + diff = ps.Diff(Files.DPB_1_SPLIT_FULL_CONFIG, Files.DPB_4_SPLITS_FULL_CONFIG) + + # Act + moves = list(self.generator.generate(diff)) + + # Assert + self.verify_moves([{'op': 'remove', 'path': '/ACL_TABLE/NO-NSW-PACL-V4/ports/0'}, + {'op': 'remove', 'path': '/VLAN_MEMBER/Vlan100|Ethernet0'}], + moves) + + def verify_moves(self, ops, moves): + moves_ops = [list(move.patch)[0] for move in moves] + self.assertCountEqual(ops, moves_ops) + class TestRequiredValueMoveExtender(unittest.TestCase): def setUp(self): path_addressing = PathAddressing() @@ -2551,6 +2738,26 @@ def test_extend__multiple_changes__multiple_extend_moves(self): # Assert self._verify_moves(expected, actual) + def test_extend__port_deletion__no_extension(self): + # Arrange + move = ps.JsonMove.from_operation({ + "op":"remove", + "path":"/PORT/Ethernet28" + }) + current_config = Files.CONFIG_DB_WITH_PORT_CRITICAL + target_config = self._apply_operations(Files.CONFIG_DB_WITH_PORT_CRITICAL, [ + { "op": "remove", "path": "/PORT/Ethernet28" }, + { "op": "remove", "path": "/BUFFER_PG/Ethernet28|0" } + ]) + diff = ps.Diff(current_config, target_config) + expected = [] + + # Act + actual = self.extender.extend(move, diff) + + # Assert + self._verify_moves(expected, actual) + def _verify_moves(self, ex_ops, moves): moves_ops = [list(move.patch)[0] for move in moves] self.assertCountEqual(ex_ops, moves_ops) @@ -3029,7 +3236,8 @@ def verify(self, algo, algo_class): # Arrange config_wrapper = ConfigWrapper() factory = ps.SortAlgorithmFactory(OperationWrapper(), config_wrapper, PathAddressing(config_wrapper)) - expected_generators = [ps.LowLevelMoveGenerator] + expected_generators = [ps.RemoveCreateOnlyDependencyMoveGenerator, + ps.LowLevelMoveGenerator] expected_non_extendable_generators = [ps.KeyLevelMoveGenerator] expected_extenders = [ps.RequiredValueMoveExtender, ps.UpperLevelMoveExtender, @@ -3038,9 +3246,9 @@ def verify(self, algo, algo_class): expected_validator = [ps.DeleteWholeConfigMoveValidator, ps.FullConfigMoveValidator, ps.NoDependencyMoveValidator, - ps.UniqueLanesMoveValidator, ps.CreateOnlyMoveValidator, ps.RequiredValueMoveValidator, + ps.RemoveCreateOnlyDependencyMoveValidator, ps.NoEmptyTableMoveValidator] # Act @@ -3078,7 +3286,6 @@ def test_patch_sorter_success(self): data = Files.PATCH_SORTER_TEST_SUCCESS skip_exact_change_list_match = False for test_case_name in data: - # TODO: Add CABLE_LENGTH to ADD_RACK and REMOVE_RACK tests https://github.com/Azure/sonic-utilities/issues/2034 with self.subTest(name=test_case_name): self.run_single_success_case(data[test_case_name], skip_exact_change_list_match) diff --git a/tests/generic_config_updater/service_validator_test.py b/tests/generic_config_updater/service_validator_test.py index 2f51771d3..f14a3ad7b 100644 --- a/tests/generic_config_updater/service_validator_test.py +++ b/tests/generic_config_updater/service_validator_test.py @@ -6,7 +6,7 @@ from collections import defaultdict from unittest.mock import patch -from generic_config_updater.services_validator import vlan_validator, rsyslog_validator, caclmgrd_validator +from generic_config_updater.services_validator import vlan_validator, rsyslog_validator, caclmgrd_validator, vlanintf_validator import generic_config_updater.gu_common @@ -152,6 +152,46 @@ def mock_time_sleep_call(sleep_time): { "cmd": "systemctl restart rsyslog", "rc": 1 }, # restart again; fails ] +test_vlanintf_data = [ + { "old": {}, "upd": {}, "cmd": "" }, + { + "old": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "upd": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "cmd": "" + }, + { + "old": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "upd": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.2/21": {} } }, + "cmd": "ip neigh flush dev Vlan1000 192.168.0.1/21" + }, + { + "old": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "upd": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {}, + "Vlan1000|192.168.0.2/21": {} } }, + "cmd": "" + }, + { + "old": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "upd": {}, + "cmd": "ip neigh flush dev Vlan1000 192.168.0.1/21" + } + ] + + class TestServiceValidator(unittest.TestCase): @patch("generic_config_updater.change_applier.os.system") @@ -177,6 +217,15 @@ def test_change_apply_os_system(self, mock_os_sys): rc = rsyslog_validator("", "", "") assert not rc, "rsyslog_validator expected to fail" + os_system_calls = [] + os_system_call_index = 0 + for entry in test_vlanintf_data: + if entry["cmd"]: + os_system_calls.append({"cmd": entry["cmd"], "rc": 0 }) + msg = "case failed: {}".format(str(entry)) + + vlanintf_validator(entry["old"], entry["upd"], None) + @patch("generic_config_updater.services_validator.time.sleep") def test_change_apply_time_sleep(self, mock_time_sleep): global time_sleep_calls, time_sleep_call_index diff --git a/tests/installer_bootloader_aboot_test.py b/tests/installer_bootloader_aboot_test.py new file mode 100644 index 000000000..15d2dc112 --- /dev/null +++ b/tests/installer_bootloader_aboot_test.py @@ -0,0 +1,32 @@ +from unittest.mock import Mock, patch + +# Import test module +import sonic_installer.bootloader.aboot as aboot +import tempfile +import shutil + +# Constants +image_dir = f'{aboot.IMAGE_DIR_PREFIX}expeliarmus-{aboot.IMAGE_DIR_PREFIX}abcde' +exp_image = f'{aboot.IMAGE_PREFIX}expeliarmus-{aboot.IMAGE_DIR_PREFIX}abcde' +image_dirs = [image_dir] + +def test_set_fips_aboot(): + image = 'test-image' + dirpath = tempfile.mkdtemp() + bootloader = aboot.AbootBootloader() + bootloader.get_image_path = Mock(return_value=dirpath) + + # The the default setting + bootloader._set_image_cmdline(image, 'test=1') + assert not bootloader.get_fips(image) + + # Test fips enabled + bootloader.set_fips(image, True) + assert bootloader.get_fips(image) + + # Test fips disabled + bootloader.set_fips(image, False) + assert not bootloader.get_fips(image) + + # Cleanup + shutil.rmtree(dirpath) diff --git a/tests/installer_bootloader_grub_test.py b/tests/installer_bootloader_grub_test.py new file mode 100644 index 000000000..9450aa1d4 --- /dev/null +++ b/tests/installer_bootloader_grub_test.py @@ -0,0 +1,34 @@ +import os +import shutil +from unittest.mock import Mock, patch + +# Import test module +import sonic_installer.bootloader.grub as grub + +@patch("sonic_installer.bootloader.grub.HOST_PATH", os.path.join(os.path.dirname(os.path.abspath(__file__)), 'installer_bootloader_input/_tmp_host')) +def test_set_fips_grub(): + # Prepare the grub.cfg in the _tmp_host folder + current_path = os.path.dirname(os.path.abspath(__file__)) + grub_config = os.path.join(current_path, 'installer_bootloader_input/host/grub/grub.cfg') + tmp_host_path = os.path.join(current_path, 'installer_bootloader_input/_tmp_host') + tmp_grub_path = os.path.join(tmp_host_path, 'grub') + tmp_grub_config = os.path.join(tmp_grub_path, 'grub.cfg') + os.makedirs(tmp_grub_path, exist_ok=True) + shutil.copy(grub_config, tmp_grub_path) + + image = 'SONiC-OS-internal-202205.57377412-84a9a7f11b' + bootloader = grub.GrubBootloader() + + # The the default setting + assert not bootloader.get_fips(image) + + # Test fips enabled + bootloader.set_fips(image, True) + assert bootloader.get_fips(image) + + # Test fips disabled + bootloader.set_fips(image, False) + assert not bootloader.get_fips(image) + + # Cleanup the _tmp_host folder + shutil.rmtree(tmp_host_path) diff --git a/tests/installer_bootloader_input/host/grub/grub.cfg b/tests/installer_bootloader_input/host/grub/grub.cfg new file mode 100644 index 000000000..5b44bae12 --- /dev/null +++ b/tests/installer_bootloader_input/host/grub/grub.cfg @@ -0,0 +1,51 @@ +serial --port=0x3f8 --speed=9600 --word=8 --parity=no --stop=1 +terminal_input console serial +terminal_output console serial + +set timeout=5 + +if [ -s $prefix/grubenv ]; then + load_env +fi +if [ "${saved_entry}" ]; then + set default="${saved_entry}" +fi +if [ "${next_entry}" ]; then + set default="${next_entry}" + unset next_entry + save_env next_entry +fi +if [ "${onie_entry}" ]; then + set next_entry="${default}" + set default="${onie_entry}" + unset onie_entry + save_env onie_entry next_entry +fi + +menuentry 'SONiC-OS-internal-202205.57377412-84a9a7f11b' { + search --no-floppy --label --set=root SONiC-OS + echo 'Loading SONiC-OS OS kernel ...' + insmod gzio + if [ x = xxen ]; then insmod xzio; insmod lzopio; fi + insmod part_msdos + insmod ext2 + linux /image-internal-202205.57377412-84a9a7f11b/boot/vmlinuz-5.10.0-12-2-amd64 root=UUID=df89970c-bf6d-40cf-80fc-a977c89054dd rw console=tty0 console=ttyS0,9600n8 quiet intel_idle.max_cstate=0 net.ifnames=0 biosdevname=0 loop=image-internal-202205.57377412-84a9a7f11b/fs.squashfs loopfstype=squashfs systemd.unified_cgroup_hierarchy=0 apparmor=1 security=apparmor varlog_size=4096 usbcore.autosuspend=-1 acpi_enforce_resources=lax acpi=noirq + echo 'Loading SONiC-OS OS initial ramdisk ...' + initrd /image-internal-202205.57377412-84a9a7f11b/boot/initrd.img-5.10.0-12-2-amd64 +} +menuentry 'SONiC-OS-master-11298.116581-1a4f95389' { + search --no-floppy --label --set=root SONiC-OS + echo 'Loading SONiC-OS OS kernel ...' + insmod gzio + if [ x = xxen ]; then insmod xzio; insmod lzopio; fi + insmod part_msdos + insmod ext2 + linux /image-master-11298.116581-1a4f95389/boot/vmlinuz-5.10.0-12-2-amd64 root=UUID=df89970c-bf6d-40cf-80fc-a977c89054dd rw console=tty0 console=ttyS0,9600n8 quiet intel_idle.max_cstate=0 sonic_fips=1 net.ifnames=0 biosdevname=0 loop=image-master-11298.116581-1a4f95389/fs.squashfs loopfstype=squashfs systemd.unified_cgroup_hierarchy=0 apparmor=1 security=apparmor varlog_size=4096 usbcore.autosuspend=-1 acpi_enforce_resources=lax acpi=noirq + echo 'Loading SONiC-OS OS initial ramdisk ...' + initrd /image-master-11298.116581-1a4f95389/boot/initrd.img-5.10.0-12-2-amd64 +} +menuentry ONIE { + search --no-floppy --label --set=root ONIE-BOOT + echo 'Loading ONIE ...' + chainloader +1 +} diff --git a/tests/installer_bootloader_uboot_test.py b/tests/installer_bootloader_uboot_test.py new file mode 100644 index 000000000..848f4f7ba --- /dev/null +++ b/tests/installer_bootloader_uboot_test.py @@ -0,0 +1,73 @@ +import os +from unittest.mock import Mock, patch + +# Import test module +import sonic_installer.bootloader.uboot as uboot + +class MockProc(): + commandline = "linuxargs=" + def communicate(): + return commandline, None + +def mock_run_command(cmd): + MockProc.commandline = cmd + +@patch("sonic_installer.bootloader.uboot.subprocess.Popen") +@patch("sonic_installer.bootloader.uboot.run_command") +def test_get_next_image(run_command_patch, popen_patch): + class MockProc(): + commandline = "boot_next" + def communicate(self): + return MockProc.commandline, None + + def mock_run_command(cmd): + # Remove leading string "/usr/bin/fw_setenv boot_next " -- the 29 characters + MockProc.commandline = cmd[29:] + + # Constants + intstalled_images = [ + f'{uboot.IMAGE_PREFIX}expeliarmus-{uboot.IMAGE_PREFIX}abcde', + f'{uboot.IMAGE_PREFIX}expeliarmus-abcde', + ] + + run_command_patch.side_effect = mock_run_command + popen_patch.return_value = MockProc() + + bootloader = uboot.UbootBootloader() + bootloader.get_installed_images = Mock(return_value=intstalled_images) + + bootloader.set_default_image(intstalled_images[1]) + + # Verify get_next_image was executed with image path + next_image=bootloader.get_next_image() + + assert next_image == intstalled_images[1] + +@patch("sonic_installer.bootloader.uboot.subprocess.Popen") +@patch("sonic_installer.bootloader.uboot.run_command") +def test_set_fips_uboot(run_command_patch, popen_patch): + class MockProc(): + commandline = "linuxargs" + def communicate(self): + return MockProc.commandline, None + + def mock_run_command(cmd): + # Remove leading string "/usr/bin/fw_setenv linuxargs " -- the 29 characters + MockProc.commandline = 'linuxargs=' + cmd[29:] + + run_command_patch.side_effect = mock_run_command + popen_patch.return_value = MockProc() + + image = 'test-image' + bootloader = uboot.UbootBootloader() + + # The the default setting + assert not bootloader.get_fips(image) + + # Test fips enabled + bootloader.set_fips(image, True) + assert bootloader.get_fips(image) + + # Test fips disabled + bootloader.set_fips(image, False) + assert not bootloader.get_fips(image) diff --git a/tests/int_ip_input/config_db.json b/tests/int_ip_input/config_db.json index 3f2d6e5be..344217aec 100644 --- a/tests/int_ip_input/config_db.json +++ b/tests/int_ip_input/config_db.json @@ -37,5 +37,11 @@ }, "VLAN_INTERFACE|Vlan2|192.168.1.1/21": { "NULL": "NULL" + }, + "VLAN_SUB_INTERFACE|Ethernet16.16": { + "admin_status": "up" + }, + "VLAN_SUB_INTERFACE|Ethernet16.16|16.1.1.1/16": { + "NULL": "NULL" } } \ No newline at end of file diff --git a/tests/interfaces_test.py b/tests/interfaces_test.py index 7fc6152ce..c3246ba02 100644 --- a/tests/interfaces_test.py +++ b/tests/interfaces_test.py @@ -3,6 +3,7 @@ from click.testing import CliRunner from unittest import mock +from utilities_common.intf_filter import parse_interface_in_filter import show.main as show @@ -315,6 +316,27 @@ def test_supervisor_show_interfaces_alias_etp1_without_waring(self): print(result.output) assert result.exit_code != 0 + def test_parse_interface_in_filter(self): + intf_filter = "Ethernet0" + intf_list = parse_interface_in_filter(intf_filter) + assert len(intf_list) == 1 + assert intf_list[0] == "Ethernet0" + + intf_filter = "Ethernet1-3" + intf_list = parse_interface_in_filter(intf_filter) + assert len(intf_list) == 3 + assert intf_list == ["Ethernet1", "Ethernet2", "Ethernet3"] + + intf_filter = "Ethernet-BP10" + intf_list = parse_interface_in_filter(intf_filter) + assert len(intf_list) == 1 + assert intf_list[0] == "Ethernet-BP10" + + intf_filter = "Ethernet-BP10-12" + intf_list = parse_interface_in_filter(intf_filter) + assert len(intf_list) == 3 + assert intf_list == ["Ethernet-BP10", "Ethernet-BP11", "Ethernet-BP12"] + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/intfutil_test.py b/tests/intfutil_test.py index 2023b5939..2a1307591 100644 --- a/tests/intfutil_test.py +++ b/tests/intfutil_test.py @@ -97,7 +97,20 @@ Ethernet32 disabled 40G all N/A N/A all up up """ - +show_interface_link_training_status_output = """\ + Interface LT Oper LT Admin Oper Admin +----------- ----------- ---------- ------ ------- + Ethernet0 not trained on down up + Ethernet16 off - up up + Ethernet24 off - up up + Ethernet28 off - up up + Ethernet32 trained on up up + Ethernet36 off - up up +Ethernet112 off off up up +Ethernet116 off - up up +Ethernet120 off - up up +Ethernet124 off - up up +""" class TestIntfutil(TestCase): @classmethod @@ -196,8 +209,9 @@ def test_subintf_status(self): expected_output = ( "Sub port interface Speed MTU Vlan Admin Type\n" "-------------------- ------- ----- ------ ------- --------------------\n" - " Eth32.10 40G 9100 100 up 802.1q-encapsulation\n" - " Ethernet0.10 25G 9100 10 up 802.1q-encapsulation" + " Eth36.10 10M 9100 100 up 802.1q-encapsulation\n" + " Ethernet0.10 25G 9100 10 up 802.1q-encapsulation\n" + " Po0001.10 40G 9100 100 up 802.1q-encapsulation" ) self.assertEqual(result.output.strip(), expected_output) @@ -234,10 +248,20 @@ def test_single_subintf_status(self): expected_output = ( "Sub port interface Speed MTU Vlan Admin Type\n" "-------------------- ------- ----- ------ ------- --------------------\n" - " Eth32.10 40G 9100 100 up 802.1q-encapsulation" + " Eth36.10 10M 9100 100 up 802.1q-encapsulation" ) - # Test 'intfutil status Eth32.10' - output = subprocess.check_output('intfutil -c status -i Eth32.10', stderr=subprocess.STDOUT, shell=True, text=True) + # Test 'intfutil status Eth36.10' + output = subprocess.check_output('intfutil -c status -i Eth36.10', stderr=subprocess.STDOUT, shell=True, text=True) + print(output, file=sys.stderr) + self.assertEqual(output.strip(), expected_output) + + expected_output = ( + "Sub port interface Speed MTU Vlan Admin Type\n" + "-------------------- ------- ----- ------ ------- --------------------\n" + " Po0001.10 40G 9100 100 up 802.1q-encapsulation" + ) + # Test 'intfutil status Po0001.10' + output = subprocess.check_output('intfutil -c status -i Po0001.10', stderr=subprocess.STDOUT, shell=True, text=True) print(output, file=sys.stderr) self.assertEqual(output.strip(), expected_output) @@ -248,9 +272,14 @@ def test_single_subintf_status_verbose(self): expected_output = "Command: intfutil -c status -i Ethernet0.10" self.assertEqual(result.output.split('\n')[0], expected_output) - result = self.runner.invoke(show.cli.commands["subinterfaces"].commands["status"], ["Eth32.10", "--verbose"]) + result = self.runner.invoke(show.cli.commands["subinterfaces"].commands["status"], ["Eth36.10", "--verbose"]) + print(result.output, file=sys.stderr) + expected_output = "Command: intfutil -c status -i Eth36.10" + self.assertEqual(result.output.split('\n')[0], expected_output) + + result = self.runner.invoke(show.cli.commands["subinterfaces"].commands["status"], ["Po0001.10", "--verbose"]) print(result.output, file=sys.stderr) - expected_output = "Command: intfutil -c status -i Eth32.10" + expected_output = "Command: intfutil -c status -i Po0001.10" self.assertEqual(result.output.split('\n')[0], expected_output) # Test status of single sub interface in alias naming mode @@ -302,6 +331,13 @@ def test_show_interfaces_autoneg_status_etp9_in_alias_mode(self): assert result.exit_code == 0 assert result.output == show_interface_auto_neg_status_eth9_output + def test_show_interfaces_link_training_status(self): + result = self.runner.invoke(show.cli.commands["interfaces"].commands["link-training"].commands["status"], []) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_interface_link_training_status_output + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/ip_config_test.py b/tests/ip_config_test.py index 47f82fb95..9a8a562e9 100644 --- a/tests/ip_config_test.py +++ b/tests/ip_config_test.py @@ -7,17 +7,39 @@ import config.main as config import show.main as show from utilities_common.db import Db +import utilities_common.bgp_util as bgp_util ERROR_MSG = "Error: IP address is not valid" +INVALID_VRF_MSG ="""\ +Usage: bind [OPTIONS] +Try "bind --help" for help. + +Error: VRF Vrf2 does not exist! +""" + +INVALID_MGMT_VRF_MSG ="""\ +Usage: bind [OPTIONS] +Try "bind --help" for help. + +Error: VRF mgmt does not exist! +""" + class TestConfigIP(object): + _old_run_bgp_command = None @classmethod def setup_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "1" + cls._old_run_bgp_command = bgp_util.run_bgp_command + bgp_util.run_bgp_command = mock.MagicMock( + return_value=cls.mock_run_bgp_command()) print("SETUP") ''' Tests for IPv4 ''' + def mock_run_bgp_command(): + return "" + def test_add_del_interface_valid_ipv4(self): db = Db() runner = CliRunner() @@ -29,12 +51,36 @@ def test_add_del_interface_valid_ipv4(self): assert result.exit_code == 0 assert ('Ethernet64', '10.10.10.1/24') in db.cfgdb.get_table('INTERFACE') + # config int ip add Ethernet0.10 10.11.10.1/24 + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["add"], ["Ethernet0.10", "10.11.10.1/24"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Ethernet0.10', '10.11.10.1/24') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + # config int ip add Eth36.10 32.11.10.1/24 + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["add"], ["Eth36.10", "32.11.10.1/24"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Eth36.10', '32.11.10.1/24') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + # config int ip remove Ethernet64 10.10.10.1/24 result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], ["Ethernet64", "10.10.10.1/24"], obj=obj) print(result.exit_code, result.output) assert result.exit_code != 0 assert ('Ethernet64', '10.10.10.1/24') not in db.cfgdb.get_table('INTERFACE') + # config int ip remove Ethernet0.10 10.11.10.1/24 + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], ["Ethernet0.10", "10.11.10.1/24"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert ('Ethernet0.10', '10.11.10.1/24') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + # config int ip remove Eth36.10 32.11.10.1/24 + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], ["Eth36.10", "32.11.10.1/24"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert ('Eth36.10', '32.11.10.1/24') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + def test_add_interface_invalid_ipv4(self): db = Db() runner = CliRunner() @@ -68,6 +114,18 @@ def test_add_interface_ipv4_with_leading_zeros(self): assert result.exit_code != 0 assert ERROR_MSG in result.output + def test_ip_add_on_interface_which_is_member_of_portchannel(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + # config int ip add Ethernet32 100.10.10.1/24 + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["add"], ["Ethernet32", "100.10.10.1/24"], obj=obj) + assert result.exit_code != 0 + print(result.output) + print(result.exit_code) + assert 'Error: Ethernet32 is configured as a member of portchannel.' in result.output + ''' Tests for IPv6 ''' def test_add_del_interface_valid_ipv6(self): @@ -81,12 +139,32 @@ def test_add_del_interface_valid_ipv6(self): assert result.exit_code == 0 assert ('Ethernet72', '2001:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34') in db.cfgdb.get_table('INTERFACE') + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["add"], ["Ethernet0.10", "1010:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Ethernet0.10', '1010:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["add"], ["Eth36.10", "3210:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Eth36.10', '3210:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + # config int ip remove Ethernet72 2001:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34 result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], ["Ethernet72", "2001:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34"], obj=obj) print(result.exit_code, result.output) assert result.exit_code != 0 assert ('Ethernet72', '2001:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34') not in db.cfgdb.get_table('INTERFACE') + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], ["Ethernet0.10", "1010:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert ('Ethernet0.10', '1010:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], ["Eth36.10", "3210:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert ('Eth36.10', '3210:1db8:11a3:19d7:1f34:8a2e:17a0:765d/34') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + def test_del_interface_case_sensitive_ipv6(self): db = Db() runner = CliRunner() @@ -157,7 +235,42 @@ def test_add_del_interface_shortened_ipv6_with_leading_zeros(self): assert result.exit_code != 0 assert ('Ethernet68', '3000::1/64') not in db.cfgdb.get_table('INTERFACE') + def test_intf_vrf_bind_unbind(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet64", "Vrf1"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet64"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + def test_intf_unknown_vrf_bind(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet64", "Vrf2"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert result.output == INVALID_VRF_MSG + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet64", "mgmt"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert result.output == INVALID_MGMT_VRF_MSG + + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["mgmt"], obj=obj) + print(result.exit_code, result.output) + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet64", "mgmt"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" + bgp_util.run_bgp_command = cls._old_run_bgp_command print("TEARDOWN") diff --git a/tests/ip_show_routes_multi_asic_test.py b/tests/ip_show_routes_multi_asic_test.py index 271467dae..bfce5e539 100644 --- a/tests/ip_show_routes_multi_asic_test.py +++ b/tests/ip_show_routes_multi_asic_test.py @@ -164,6 +164,22 @@ def test_show_multi_asic_ipv6_route_all_namespace( assert result.exit_code == 0 assert result.output == show_ip_route_common.show_ipv6_route_multi_asic_all_namesapce_output + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['ipv6_route'], indirect=['setup_multi_asic_bgp_instance']) + def test_show_multi_asic_ipv6_route_all_namespace_alias( + self, + setup_ip_route_commands, + setup_multi_asic_bgp_instance): + show = setup_ip_route_commands + runner = CliRunner() + os.environ['SONIC_CLI_IFACE_MODE'] = "alias" + result = runner.invoke( + show.cli.commands["ipv6"].commands["route"], ["-dfrontend"]) + os.environ['SONIC_CLI_IFACE_MODE'] = "default" + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_ip_route_common.show_ipv6_route_multi_asic_all_namesapce_alias_output + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', ['ipv6_route'], indirect=['setup_multi_asic_bgp_instance']) def test_show_multi_asic_ipv6_route_single_namespace( diff --git a/tests/ip_show_routes_test.py b/tests/ip_show_routes_test.py index 820827d55..f39ccc52d 100644 --- a/tests/ip_show_routes_test.py +++ b/tests/ip_show_routes_test.py @@ -3,11 +3,15 @@ from . import show_ip_route_common from click.testing import CliRunner +import mock +import sys test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, test_path) + class TestShowIpRouteCommands(object): @classmethod @@ -18,6 +22,25 @@ def setup_class(cls): os.environ["UTILITIES_UNIT_TESTING"] = "0" os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" import mock_tables.dbconnector + + def test_show_ip_route_err( + self, + setup_ip_route_commands): + show = setup_ip_route_commands + + def mock_run_bgp_command(*args, **kwargs): + command = args[0] + return "% Unknown command: show ip route unknown", 1 + + with mock.patch('utilities_common.cli.run_command', mock.MagicMock(side_effect=mock_run_bgp_command)) as mock_run_command: + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ip"].commands["route"], ["unknown"]) + print("{}".format(result.output)) + print(result.exit_code) + assert result.exit_code == 1 + assert result.output == "% Unknown command: show ip route unknown" + "\n" + @pytest.mark.parametrize('setup_single_bgp_instance', ['ip_route'], indirect=['setup_single_bgp_instance']) def test_show_ip_route( @@ -30,7 +53,7 @@ def test_show_ip_route( show.cli.commands["ip"].commands["route"], []) print("{}".format(result.output)) assert result.exit_code == 0 - assert result.output == show_ip_route_common.show_ip_route_expected_output + "\n" + assert result.output == show_ip_route_common.show_ip_route_expected_output @pytest.mark.parametrize('setup_single_bgp_instance', ['ip_specific_route'], indirect=['setup_single_bgp_instance']) @@ -44,7 +67,7 @@ def test_show_specific_ip_route( show.cli.commands["ip"].commands["route"], ["192.168.0.1"]) print("{}".format(result.output)) assert result.exit_code == 0 - assert result.output == show_ip_route_common.show_specific_ip_route_expected_output + "\n" + assert result.output == show_ip_route_common.show_specific_ip_route_expected_output @pytest.mark.parametrize('setup_single_bgp_instance', ['ip_special_route'], indirect=['setup_single_bgp_instance']) @@ -58,7 +81,7 @@ def test_show_special_ip_route( show.cli.commands["ip"].commands["route"], []) print("{}".format(result.output)) assert result.exit_code == 0 - assert result.output == show_ip_route_common.show_special_ip_route_expected_output + "\n" + assert result.output == show_ip_route_common.show_special_ip_route_expected_output @pytest.mark.parametrize('setup_single_bgp_instance', ['ipv6_specific_route'], indirect=['setup_single_bgp_instance']) @@ -72,7 +95,7 @@ def test_show_specific_ipv6_route_json( show.cli.commands["ip"].commands["route"], ["20c0:a8c7:0:81::", "json"]) print("{}".format(result.output)) assert result.exit_code == 0 - assert result.output == show_ip_route_common.show_ipv6_route_single_json_expected_output + "\n" + assert result.output == show_ip_route_common.show_ipv6_route_single_json_expected_output @pytest.mark.parametrize('setup_single_bgp_instance', ['ipv6_route'], indirect=['setup_single_bgp_instance']) @@ -86,7 +109,23 @@ def test_show_ipv6_route( show.cli.commands["ipv6"].commands["route"], []) print("{}".format(result.output)) assert result.exit_code == 0 - assert result.output == show_ip_route_common.show_ipv6_route_expected_output + "\n" + assert result.output == show_ip_route_common.show_ipv6_route_expected_output + + @pytest.mark.parametrize('setup_single_bgp_instance', + ['ipv6_route'], indirect=['setup_single_bgp_instance']) + def test_show_ipv6_route_alias( + self, + setup_ip_route_commands, + setup_single_bgp_instance): + show = setup_ip_route_commands + runner = CliRunner() + os.environ['SONIC_CLI_IFACE_MODE'] = "alias" + result = runner.invoke( + show.cli.commands["ipv6"].commands["route"], []) + os.environ['SONIC_CLI_IFACE_MODE'] = "default" + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_ip_route_common.show_ipv6_route_alias_expected_output @pytest.mark.parametrize('setup_single_bgp_instance', ['ipv6_route_err'], indirect=['setup_single_bgp_instance']) @@ -101,3 +140,4 @@ def test_show_ipv6_route_err( print("{}".format(result.output)) assert result.exit_code == 0 assert result.output == show_ip_route_common.show_ipv6_route_err_expected_output + "\n" + diff --git a/tests/ipv6_link_local_test.py b/tests/ipv6_link_local_test.py index a01bfa726..50b691be6 100644 --- a/tests/ipv6_link_local_test.py +++ b/tests/ipv6_link_local_test.py @@ -30,7 +30,7 @@ +------------------+----------+ | Ethernet36 | Disabled | +------------------+----------+ -| Ethernet40 | Disabled | +| Ethernet40 | Enabled | +------------------+----------+ | Ethernet44 | Disabled | +------------------+----------+ @@ -224,6 +224,16 @@ def test_config_enable_disable_ipv6_link_local_on_all_valid_interfaces(self): assert result.exit_code == 0 assert result.output == '' + def test_vlan_member_add_on_link_local_interface(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} + + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], ["4000", "Ethernet40"], obj=obj) + print(result.output) + assert result.exit_code != 0 + assert 'Error: Ethernet40 is a router interface!' in result.output + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" diff --git a/tests/kube_test.py b/tests/kube_test.py index 90a4f6e29..e49a2a55f 100644 --- a/tests/kube_test.py +++ b/tests/kube_test.py @@ -34,6 +34,18 @@ 10.3.157.24 7777 True False """ +show_server_output_5="""\ +ip port insecure disable +----------- ------ ---------- --------- +10.10.10.11 6443 True False +""" + +show_server_output_6="""\ +ip port insecure disable +----------- ------ ---------- --------- +10.3.157.24 6443 True False +""" + empty_server_status="""\ Kubernetes server has no status info """ @@ -96,6 +108,20 @@ def test_no_kube_server(self, get_cmd_module): result = runner.invoke(config.config.commands["kubernetes"].commands["server"], ["ip", "10.10.10.11"], obj=db) self.__check_res(result, "set server IP when none", "") + result = runner.invoke(show.cli.commands["kubernetes"].commands["server"].commands["config"], [], obj=db) + self.__check_res(result, "config command default value", show_server_output_5) + + + def test_only_kube_server(self, get_cmd_module): + (config, show) = get_cmd_module + runner = CliRunner() + db = Db() + + db.cfgdb.delete_table("KUBERNETES_MASTER") + db.cfgdb.set_entry("KUBERNETES_MASTER", "SERVER", {"ip": "10.3.157.24"}) + + result = runner.invoke(show.cli.commands["kubernetes"].commands["server"].commands["config"], [], obj=db) + self.__check_res(result, "show command default value", show_server_output_6) def test_kube_server_status(self, get_cmd_module): diff --git a/tests/load_minigraph_input/platform/plugins/platform_mg_post_check b/tests/load_minigraph_input/platform/plugins/platform_mg_post_check new file mode 100755 index 000000000..08025e646 --- /dev/null +++ b/tests/load_minigraph_input/platform/plugins/platform_mg_post_check @@ -0,0 +1,4 @@ +#!/bin/bash + +echo "Do Nothing!" +exit 0 diff --git a/tests/load_minigraph_input/platform_false/plugins/platform_mg_post_check b/tests/load_minigraph_input/platform_false/plugins/platform_mg_post_check new file mode 100755 index 000000000..67c96d71f --- /dev/null +++ b/tests/load_minigraph_input/platform_false/plugins/platform_mg_post_check @@ -0,0 +1,4 @@ +#!/bin/bash + +echo "Do Nothing!" +exit 1 diff --git a/tests/loopback_action_test.py b/tests/loopback_action_test.py new file mode 100644 index 000000000..b88d36973 --- /dev/null +++ b/tests/loopback_action_test.py @@ -0,0 +1,139 @@ +import os +from click.testing import CliRunner +import config.main as config +import show.main as show +from utilities_common.db import Db + +show_ip_interfaces_loopback_action_output="""\ +Interface Action +--------------- -------- +Eth36.10 drop +Ethernet0 forward +PortChannel0001 drop +Vlan3000 forward +""" + +class TestLoopbackAction(object): + @classmethod + def setup_class(cls): + print("\nSETUP") + os.environ['UTILITIES_UNIT_TESTING'] = "1" + + def test_config_loopback_action_on_physical_interface(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + action = 'drop' + iface = 'Ethernet0' + + result = runner.invoke(config.config.commands['interface'].commands["ip"].commands['loopback-action'], [iface, action], obj=obj) + + table = db.cfgdb.get_table('INTERFACE') + assert(table[iface]['loopback_action'] == action) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + + def test_config_loopback_action_on_physical_interface_alias(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + action = 'forward' + iface = 'Ethernet0' + iface_alias = 'etp1' + + os.environ['SONIC_CLI_IFACE_MODE'] = "alias" + result = runner.invoke(config.config.commands['interface'].commands["ip"].commands['loopback-action'], [iface_alias, action], obj=obj) + os.environ['SONIC_CLI_IFACE_MODE'] = "default" + + table = db.cfgdb.get_table('INTERFACE') + assert(table[iface]['loopback_action'] == action) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + + def test_config_loopback_action_on_port_channel_interface(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + action = 'forward' + iface = 'PortChannel0002' + + result = runner.invoke(config.config.commands['interface'].commands["ip"].commands['loopback-action'], [iface, action], obj=obj) + + table = db.cfgdb.get_table('PORTCHANNEL_INTERFACE') + assert(table[iface]['loopback_action'] == action) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + + def test_config_loopback_action_on_vlan_interface(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + action = 'drop' + iface = 'Vlan1000' + + result = runner.invoke(config.config.commands['interface'].commands["ip"].commands['loopback-action'], [iface, action], obj=obj) + + table = db.cfgdb.get_table('VLAN_INTERFACE') + assert(table[iface]['loopback_action'] == action) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + + def test_config_loopback_action_on_subinterface(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + action = 'forward' + iface = 'Ethernet0.10' + + result = runner.invoke(config.config.commands['interface'].commands["ip"].commands['loopback-action'], [iface, action], obj=obj) + + table = db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert(table[iface]['loopback_action'] == action) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + + def test_show_ip_interfaces_loopback_action(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["ip"].commands["interfaces"].commands["loopback-action"], []) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert result.output == show_ip_interfaces_loopback_action_output + + def test_config_loopback_action_on_non_ip_interface(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + action = 'forward' + iface = 'Ethernet0.11' + ERROR_MSG = "Error: Interface {} is not an IP interface".format(iface) + + result = runner.invoke(config.config.commands['interface'].commands["ip"].commands['loopback-action'], [iface, action], obj=obj) + + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert ERROR_MSG in result.output + + def test_config_loopback_action_invalid_action(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + action = 'xforwardx' + iface = 'Ethernet0' + ERROR_MSG = "Error: Invalid action" + + result = runner.invoke(config.config.commands['interface'].commands["ip"].commands['loopback-action'], [iface, action], obj=obj) + + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert ERROR_MSG in result.output + + @classmethod + def teardown_class(cls): + print("\nTEARDOWN") + os.environ['UTILITIES_UNIT_TESTING'] = "0" diff --git a/tests/mclag_test.py b/tests/mclag_test.py index d68c25a82..a65317400 100644 --- a/tests/mclag_test.py +++ b/tests/mclag_test.py @@ -448,7 +448,7 @@ def test_mclag_add_member(self): - def test_mclag_add_unique_ip(self): + def test_mclag_add_unique_ip(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() obj = {'db':db.cfgdb} @@ -483,7 +483,7 @@ def test_mclag_add_unique_ip(self): keys = db.cfgdb.get_keys('MCLAG_UNIQUE_IP') assert MCLAG_UNIQUE_IP_VLAN not in keys, "unique ip not conifgured" - def test_mclag_add_unique_ip_non_default_vrf(self): + def test_mclag_add_unique_ip_non_default_vrf(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() obj = {'db':db.cfgdb} diff --git a/tests/memory_check_handler_test.py b/tests/memory_check_handler_test.py new file mode 100644 index 000000000..12cbbe8f2 --- /dev/null +++ b/tests/memory_check_handler_test.py @@ -0,0 +1,28 @@ +""" These tests check the memory_threshold_check_handler script monit description string handling while the rest of auto thechsupport is unit tested by coredump_gen_handler_test.py """ + +import sys +from unittest.mock import patch, ANY +from utilities_common.auto_techsupport_helper import EVENT_TYPE_MEMORY +from utilities_common.db import Db + +sys.path.append("scripts") +import memory_threshold_check_handler + + +@patch("os.environ.get", lambda var: "status code 2 -- swss") +def test_memory_threshold_check_handler_host(): + with patch('memory_threshold_check_handler.invoke_ts_command_rate_limited') as invoke_ts: + memory_threshold_check_handler.main() + invoke_ts.assert_called_once_with(ANY, EVENT_TYPE_MEMORY, 'swss') + +@patch("os.environ.get", lambda var: "status code 2 -- no output") +def test_memory_threshold_check_handler_host(): + with patch('memory_threshold_check_handler.invoke_ts_command_rate_limited') as invoke_ts: + memory_threshold_check_handler.main() + invoke_ts.assert_called_once_with(ANY, EVENT_TYPE_MEMORY, None) + +@patch("os.environ.get", lambda var: "foo bar") +def test_memory_threshold_check_handler_host(): + with patch('memory_threshold_check_handler.invoke_ts_command_rate_limited') as invoke_ts: + memory_threshold_check_handler.main() + invoke_ts.assert_not_called() diff --git a/tests/memory_threshold_check/config_db.json b/tests/memory_threshold_check/config_db.json new file mode 100644 index 000000000..a270db5bc --- /dev/null +++ b/tests/memory_threshold_check/config_db.json @@ -0,0 +1,12 @@ +{ + "AUTO_TECHSUPPORT|GLOBAL": { + "available_mem_threshold": "10.0", + "min_available_mem": "200" + }, + "AUTO_TECHSUPPORT_FEATURE|swss": { + "available_mem_threshold": "50.0" + }, + "AUTO_TECHSUPPORT_FEATURE|telemetry": { + "available_mem_threshold": "50.0" + } +} diff --git a/tests/memory_threshold_check/state_db.json b/tests/memory_threshold_check/state_db.json new file mode 100644 index 000000000..0cd8c34e1 --- /dev/null +++ b/tests/memory_threshold_check/state_db.json @@ -0,0 +1,10 @@ +{ + "DOCKER_STATS|b77647f643a2": { + "MEM%": "10", + "NAME": "swss1" + }, + "DOCKER_STATS|b77647f643a3": { + "MEM%": "10", + "NAME": "telemetry" + } +} diff --git a/tests/memory_threshold_check/state_db_2.json b/tests/memory_threshold_check/state_db_2.json new file mode 100644 index 000000000..67f18ac89 --- /dev/null +++ b/tests/memory_threshold_check/state_db_2.json @@ -0,0 +1,14 @@ +{ + "DOCKER_STATS|b77647f643a1": { + "MEM%": "10.5", + "NAME": "swss1" + }, + "DOCKER_STATS|b77647f643a2": { + "MEM%": "10.1", + "NAME": "swss2" + }, + "DOCKER_STATS|b77647f643a3": { + "MEM%": "80.6", + "NAME": "telemetry" + } +} diff --git a/tests/memory_threshold_check/state_db_3.json b/tests/memory_threshold_check/state_db_3.json new file mode 100644 index 000000000..0ded64771 --- /dev/null +++ b/tests/memory_threshold_check/state_db_3.json @@ -0,0 +1,14 @@ +{ + "DOCKER_STATS|b77647f643a1": { + "MEM%": "80.1", + "NAME": "swss1" + }, + "DOCKER_STATS|b77647f643a2": { + "MEM%": "10.1", + "NAME": "swss2" + }, + "DOCKER_STATS|b77647f643a3": { + "MEM%": "10.2", + "NAME": "telemetry" + } +} diff --git a/tests/memory_threshold_check_test.py b/tests/memory_threshold_check_test.py new file mode 100644 index 000000000..b6b4b2fee --- /dev/null +++ b/tests/memory_threshold_check_test.py @@ -0,0 +1,71 @@ +import os +import sys +import pytest +from unittest import mock +from .mock_tables import dbconnector +from utilities_common.general import load_module_from_source + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, 'scripts') +sys.path.insert(0, scripts_path) + +memory_threshold_check_path = os.path.join(scripts_path, 'memory_threshold_check.py') +memory_threshold_check = load_module_from_source('memory_threshold_check.py', memory_threshold_check_path) + +@pytest.fixture() +def setup_dbs_regular_mem_usage(): + cfg_db = dbconnector.dedicated_dbs.get('CONFIG_DB') + state_db = dbconnector.dedicated_dbs.get('STATE_DB') + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(test_path, 'memory_threshold_check', 'config_db') + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(test_path, 'memory_threshold_check', 'state_db') + yield + dbconnector.dedicated_dbs['CONFIG_DB'] = cfg_db + dbconnector.dedicated_dbs['STATE_DB'] = state_db + + +@pytest.fixture() +def setup_dbs_telemetry_high_mem_usage(): + memory_threshold_check.MemoryStats.get_sys_memory_stats = mock.Mock(return_value={'MemAvailable': 10000000, 'MemTotal': 20000000}) + cfg_db = dbconnector.dedicated_dbs.get('CONFIG_DB') + state_db = dbconnector.dedicated_dbs.get('STATE_DB') + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(test_path, 'memory_threshold_check', 'config_db') + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(test_path, 'memory_threshold_check', 'state_db_2') + yield + dbconnector.dedicated_dbs['CONFIG_DB'] = cfg_db + dbconnector.dedicated_dbs['STATE_DB'] = state_db + + +@pytest.fixture() +def setup_dbs_swss_high_mem_usage(): + memory_threshold_check.MemoryStats.get_sys_memory_stats = mock.Mock(return_value={'MemAvailable': 10000000, 'MemTotal': 20000000}) + cfg_db = dbconnector.dedicated_dbs.get('CONFIG_DB') + state_db = dbconnector.dedicated_dbs.get('STATE_DB') + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(test_path, 'memory_threshold_check', 'config_db') + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(test_path, 'memory_threshold_check', 'state_db_3') + yield + dbconnector.dedicated_dbs['CONFIG_DB'] = cfg_db + dbconnector.dedicated_dbs['STATE_DB'] = state_db + + +def test_memory_check_host_not_crossed(setup_dbs_regular_mem_usage): + memory_threshold_check.MemoryStats.get_sys_memory_stats = mock.Mock(return_value={'MemAvailable': 1000000, 'MemTotal': 2000000}) + assert memory_threshold_check.main() == (memory_threshold_check.EXIT_SUCCESS, '') + + +def test_memory_check_host_less_then_min_required(setup_dbs_regular_mem_usage): + memory_threshold_check.MemoryStats.get_sys_memory_stats = mock.Mock(return_value={'MemAvailable': 1000, 'MemTotal': 2000000}) + assert memory_threshold_check.main() == (memory_threshold_check.EXIT_THRESHOLD_CROSSED, '') + + +def test_memory_check_host_threshold_crossed(setup_dbs_regular_mem_usage): + memory_threshold_check.MemoryStats.get_sys_memory_stats = mock.Mock(return_value={'MemAvailable': 2000000, 'MemTotal': 20000000}) + assert memory_threshold_check.main() == (memory_threshold_check.EXIT_THRESHOLD_CROSSED, '') + + +def test_memory_check_telemetry_threshold_crossed(setup_dbs_telemetry_high_mem_usage): + assert memory_threshold_check.main() == (memory_threshold_check.EXIT_THRESHOLD_CROSSED, 'telemetry') + + +def test_memory_check_swss_threshold_crossed(setup_dbs_swss_high_mem_usage): + assert memory_threshold_check.main() == (memory_threshold_check.EXIT_THRESHOLD_CROSSED, 'swss') diff --git a/tests/mmuconfig_input/mmuconfig_test_vectors.py b/tests/mmuconfig_input/mmuconfig_test_vectors.py new file mode 100644 index 000000000..c20a96451 --- /dev/null +++ b/tests/mmuconfig_input/mmuconfig_test_vectors.py @@ -0,0 +1,112 @@ +show_mmu_config = """\ +Lossless traffic pattern: +-------------------- - +default_dynamic_th 0 +over_subscribe_ratio 2 +-------------------- - + +Pool: egress_lossless_pool +---- -------- +mode dynamic +size 13945824 +type egress +---- -------- + +Pool: egress_lossy_pool +---- ------- +mode dynamic +type egress +---- ------- + +Pool: ingress_lossless_pool +---- ------- +mode dynamic +type ingress +---- ------- + +Pool: ingress_lossy_pool +---- ------- +mode dynamic +type ingress +---- ------- + +Pool: ingress_lossless_pool_hbm +---- --------- +mode static +size 139458240 +type ingress +---- --------- + +Profile: ingress_lossy_profile +---------- ------------------ +dynamic_th 3 +pool ingress_lossy_pool +size 0 +---------- ------------------ + +Profile: ingress_lossless_profile_hbm +--------- ------------------------- +static_th 12121212 +pool ingress_lossless_pool_hbm +size 0 +--------- ------------------------- + +Profile: headroom_profile +---------- --------------------- +dynamic_th 0 +pool ingress_lossless_pool +xon 18432 +xoff 32768 +size 51200 +---------- --------------------- + +Profile: alpha_profile +------------- --------------------- +dynamic_th 0 +pool ingress_lossless_pool +headroom_type dynamic +------------- --------------------- + +Profile: egress_lossless_profile +---------- -------------------- +dynamic_th 0 +pool egress_lossless_pool +size 0 +---------- -------------------- + +Profile: egress_lossy_profile +---------- ----------------- +dynamic_th 0 +pool egress_lossy_pool +size 0 +---------- ----------------- + +""" + +testData = { + 'mmuconfig_list' : {'cmd' : ['show'], + 'args' : [], + 'rc' : 0, + 'rc_output': show_mmu_config + }, + 'mmu_cfg_static_th' : {'cmd' : ['config'], + 'args' : ['-p', 'ingress_lossless_profile_hbm', '-s', '12121213'], + 'rc' : 0, + 'db_table' : 'BUFFER_PROFILE', + 'cmp_args' : ['ingress_lossless_profile_hbm,static_th,12121213'], + 'rc_msg' : '' + }, + 'mmu_cfg_alpha' : {'cmd' : ['config'], + 'args' : ['-p', 'alpha_profile', '-a', '2'], + 'rc' : 0, + 'db_table' : 'BUFFER_PROFILE', + 'cmp_args' : ['alpha_profile,dynamic_th,2'], + 'rc_msg' : '' + }, + 'mmu_cfg_alpha_invalid' : {'cmd' : ['config'], + 'args' : ['-p', 'alpha_profile', '-a', '12'], + 'rc' : 2, + 'rc_msg' : 'Usage: mmu [OPTIONS]\nTry "mmu --help" for help.\n\nError: Invalid value for "-a": 12 is not in the valid range of -8 to 8.\n' + } + + } diff --git a/tests/mmuconfig_test.py b/tests/mmuconfig_test.py new file mode 100644 index 000000000..7218270e3 --- /dev/null +++ b/tests/mmuconfig_test.py @@ -0,0 +1,86 @@ +import os +import sys +import json +import pytest + +from click.testing import CliRunner +import config.main as config +import show.main as show +from utilities_common.db import Db +from .mmuconfig_input.mmuconfig_test_vectors import * + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, test_path) +sys.path.insert(0, modules_path) + + +class Testmmuconfig(object): + @classmethod + def setup_class(cls): + os.environ["PATH"] += os.pathsep + scripts_path + os.environ['UTILITIES_UNIT_TESTING'] = "2" + print("SETUP") + + def test_mmu_show_config(self): + self.executor(testData['mmuconfig_list']) + + def test_mmu_alpha_config(self): + self.executor(testData['mmu_cfg_alpha']) + + def test_mmu_alpha_invalid_config(self): + self.executor(testData['mmu_cfg_alpha_invalid']) + + def test_mmu_staticth_config(self): + self.executor(testData['mmu_cfg_static_th']) + + def executor(self, input): + runner = CliRunner() + + if 'db_table' in input: + db = Db() + data_list = list(db.cfgdb.get_table(input['db_table'])) + input['rc_msg'] = input['rc_msg'].format(",".join(data_list)) + + if 'show' in input['cmd']: + exec_cmd = show.cli.commands["mmu"] + result = runner.invoke(exec_cmd, input['args']) + exit_code = result.exit_code + output = result.output + elif 'config' in input['cmd']: + exec_cmd = config.config.commands["mmu"] + result = runner.invoke(exec_cmd, input['args'], catch_exceptions=False) + exit_code = result.exit_code + output = result.output + + print(exit_code) + print(output) + + if input['rc'] == 0: + assert exit_code == 0 + else: + assert exit_code != 0 + + if 'cmp_args' in input: + fd = open('/tmp/mmuconfig', 'r') + cmp_data = json.load(fd) + for args in input['cmp_args']: + profile, name, value = args.split(',') + assert(cmp_data[profile][name] == value) + fd.close() + + if 'rc_msg' in input: + assert input['rc_msg'] in output + + if 'rc_output' in input: + assert output == input['rc_output'] + + + @classmethod + def teardown_class(cls): + os.environ["PATH"] = os.pathsep.join(os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ['UTILITIES_UNIT_TESTING'] = "0" + if os.path.isfile('/tmp/mmuconfig'): + os.remove('/tmp/mmuconfig') + print("TEARDOWN") diff --git a/tests/mock_platform_sfputil/mock_platform_sfputil.py b/tests/mock_platform_sfputil/mock_platform_sfputil.py new file mode 100644 index 000000000..5c3ea2e24 --- /dev/null +++ b/tests/mock_platform_sfputil/mock_platform_sfputil.py @@ -0,0 +1,41 @@ +import json +import os +from sonic_platform_base.platform_base import PlatformBase +from sonic_platform_base.chassis_base import ChassisBase +from sonic_platform_base.sfp_base import SfpBase +import utilities_common.platform_sfputil_helper as platform_sfputil_helper + +portMap = None +RJ45Ports = None + +class mock_Chassis(ChassisBase): + def __init__(self): + ChassisBase.__init__(self) + + def get_port_or_cage_type(self, index): + if index in RJ45Ports: + return SfpBase.SFP_PORT_TYPE_BIT_RJ45 + else: + raise NotImplementedError + +def mock_logical_port_name_to_physical_port_list(port_name): + index = portMap.get(port_name) + if not index: + index = 0 + return [index] + +def mock_platform_sfputil_read_porttab_mappings(): + global portMap + global RJ45Ports + + with open(os.path.join(os.path.dirname(__file__), 'portmap.json')) as pm: + jsonobj = json.load(pm) + portMap = jsonobj['portMap'] + RJ45Ports = jsonobj['RJ45Ports'] + +def mock_platform_sfputil_helper(): + platform_sfputil_helper.platform_chassis = mock_Chassis() + platform_sfputil_helper.platform_sfputil = True + platform_sfputil_helper.platform_porttab_mapping_read = False + platform_sfputil_helper.platform_sfputil_read_porttab_mappings = mock_platform_sfputil_read_porttab_mappings + platform_sfputil_helper.logical_port_name_to_physical_port_list = mock_logical_port_name_to_physical_port_list diff --git a/tests/mock_platform_sfputil/portmap.json b/tests/mock_platform_sfputil/portmap.json new file mode 100644 index 000000000..eec9a9f40 --- /dev/null +++ b/tests/mock_platform_sfputil/portmap.json @@ -0,0 +1,8 @@ +{ + "portMap": { + "Ethernet29": 1 + }, + "RJ45Ports": [ + 1 + ] +} diff --git a/tests/mock_tables/appl_db.json b/tests/mock_tables/appl_db.json index 81fa7c729..e330bdadd 100644 --- a/tests/mock_tables/appl_db.json +++ b/tests/mock_tables/appl_db.json @@ -39,7 +39,8 @@ "adv_speeds": "50000,10000", "interface_type": "CR4", "adv_interface_types": "CR4,CR2", - "autoneg": "on" + "autoneg": "on", + "link_training": "on" }, "PORT_TABLE:Ethernet16": { "index": "4", @@ -101,7 +102,8 @@ "admin_status": "up", "autoneg": "off", "adv_speeds": "all", - "adv_interface_types": "all" + "adv_interface_types": "all", + "link_training": "on" }, "PORT_TABLE:Ethernet112": { "index": "28", @@ -114,7 +116,8 @@ "mtu": "9100", "tpid": "0x8100", "fec": "rs", - "admin_status": "up" + "admin_status": "up", + "link_training": "off" }, "PORT_TABLE:Ethernet116": { "index": "29", @@ -185,10 +188,36 @@ "admin_status": "up", "vlan": "10" }, - "INTF_TABLE:Eth32.10": { + "INTF_TABLE:Eth36.10": { "admin_status": "up", + "vrf_name": "Vrf1", "vlan": "100" }, + "INTF_TABLE:Po0001.10": { + "admin_status": "up", + "vrf_name": "Vrf1", + "vlan": "100" + }, + "INTF_TABLE:Ethernet0.10|10.11.12.13/24": { + "family": "IPv4", + "scope": "global" + }, + "INTF_TABLE:Eth36.10|32.10.11.12/24": { + "family": "IPv4", + "scope": "global" + }, + "INTF_TABLE:Po0001.10|10.10.11.12/24": { + "family": "IPv4", + "scope": "global" + }, + "INTF_TABLE:Eth36.10|3210::12/126": { + "family": "IPv6", + "scope": "global" + }, + "INTF_TABLE:Po0001.10|1010::12/126": { + "family": "IPv6", + "scope": "global" + }, "_GEARBOX_TABLE:phy:1": { "name": "sesto-1", "phy_id": "1", @@ -260,5 +289,58 @@ }, "VXLAN_REMOTE_VNI_TABLE:Vlan200:25.25.25.27": { "vni": "200" + }, + "VXLAN_FDB_TABLE:Vlan200:00:02:00:00:47:e2": { + "remote_vtep": "2.2.2.2", + "type": "dynamic", + "vni": "200" + }, + "VXLAN_FDB_TABLE:Vlan200:00:02:00:00:47:e3": { + "remote_vtep": "2.2.2.3", + "type": "dynamic", + "vni": "200" + }, + "MUX_CABLE_TABLE:Ethernet32": { + "state": "active" + }, + "MUX_CABLE_TABLE:Ethernet0": { + "state": "active" + }, + "MUX_CABLE_TABLE:Ethernet4": { + "state": "standby" + }, + "MUX_CABLE_TABLE:Ethernet8": { + "state": "standby" + }, + "MUX_CABLE_TABLE:Ethernet16": { + "state": "standby" + }, + "MUX_CABLE_TABLE:Ethernet12": { + "state": "active" + }, + "TUNNEL_ROUTE_TABLE:10.2.1.1": { + "alias": "Vlan1000" + }, + "TUNNEL_ROUTE_TABLE:10.3.1.1": { + "alias": "Vlan1000" + }, + "VNET_ROUTE_TUNNEL_TABLE:test_v4_in_v4-0:160.163.191.1/32": { + "endpoint":"100.251.7.1", + "endpoint_monitor":"100.251.7.1" + }, + "VNET_ROUTE_TUNNEL_TABLE:Vnet_v6_in_v6-0:fddd:a156:a251::a6:1/128": { + "endpoint": "fddd:a100:a251::a10:1,fddd:a101:a251::a10:1,fddd:a102:a251::a10:1,fddd:a103:a251::a10:1", + "endpoint_monitor":"fddd:a100:a251::a10:1,fddd:a101:a251::a10:1,fddd:a102:a251::a10:1,fddd:a103:a251::a10:1" + }, + "VNET_ROUTE_TUNNEL_TABLE:test_v4_in_v4-0:160.162.191.1/32": { + "endpoint":"100.251.7.1", + "endpoint_monitor":"100.251.7.1" + }, + "VNET_ROUTE_TUNNEL_TABLE:test_v4_in_v4-0:160.164.191.1/32": { + "endpoint":"100.251.7.1", + "endpoint_monitor":"100.251.7.1" + }, + "BGP_PROFILE_TABLE:FROM_SDN_SLB_ROUTES": { + "community_id" : "1234:1235" } } diff --git a/tests/mock_tables/asic0/config_db.json b/tests/mock_tables/asic0/config_db.json index 77874eb59..4bb4c9d9e 100644 --- a/tests/mock_tables/asic0/config_db.json +++ b/tests/mock_tables/asic0/config_db.json @@ -38,6 +38,17 @@ "speed": "40000", "asic_port_name": "Eth1-ASIC0" }, + "PORT|Ethernet16": { + "lanes": "17,18,19,20", + "description": "ARISTA01T2:Ethernet3/3/1", + "pfc_asym": "off", + "mtu": "9100", + "alias": "Ethernet1/5", + "admin_status": "up", + "role": "Ext", + "speed": "40000", + "asic_port_name": "Eth1-ASIC0" + }, "PORT|Ethernet-BP0" : { "lanes": "93,94,95,96", "description": "ASIC1:Eth0-ASIC1", @@ -235,5 +246,46 @@ "holdtime": "10", "asn": "65200", "keepalive": "3" + }, + "BGP_VOQ_CHASSIS_NEIGHBOR|3.3.3.1": { + "rrclient": "0", + "name": "str2-sonic-lc1-1-ASIC0", + "local_addr": "3.3.3.2", + "nhopself": "0", + "admin_status": "up", + "holdtime": "10", + "asn": "65200", + "keepalive": "3" + }, + "BGP_VOQ_CHASSIS_NEIGHBOR|3.3.3.2": { + "rrclient": "0", + "name": "str2-sonic-lc2-1-ASIC0", + "local_addr": "3.3.3.2", + "nhopself": "0", + "admin_status": "up", + "holdtime": "10", + "asn": "65200", + "keepalive": "3" + }, + "BGP_VOQ_CHASSIS_NEIGHBOR|3.3.3.8": { + "rrclient": "0", + "name": "str2-sonic-lc1-1-ASIC1", + "local_addr": "3.3.3.9", + "nhopself": "0", + "admin_status": "up", + "holdtime": "10", + "asn": "65200", + "keepalive": "3" + }, + "ACL_RULE|DATAACL_5|RULE_1": { + "IP_PROTOCOL": "126", + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9999" + }, + "ACL_TABLE|DATAACL_5": { + "policy_desc": "DATAACL_5", + "ports@": "Ethernet124", + "type": "L3", + "stage": "ingress" } } diff --git a/tests/mock_tables/asic0/counters_db.json b/tests/mock_tables/asic0/counters_db.json index 5c144393f..53e3b558a 100644 --- a/tests/mock_tables/asic0/counters_db.json +++ b/tests/mock_tables/asic0/counters_db.json @@ -77,7 +77,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "499", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "2", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7886", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13", + "SAI_QUEUE_STAT_BYTES": "30", + "SAI_QUEUE_STAT_DROPPED_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "56", + "SAI_QUEUE_STAT_PACKETS": "68", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "61" }, "COUNTERS:oid:0x1000000001001": { @@ -98,7 +103,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "226", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8318", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "92" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "92", + "SAI_QUEUE_STAT_BYTES": "31", + "SAI_QUEUE_STAT_DROPPED_BYTES": "73", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "55", + "SAI_QUEUE_STAT_PACKETS": "69", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "62" }, "COUNTERS:oid:0x1000000001002": { @@ -119,7 +129,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "999", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9885", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "99" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "99", + "SAI_QUEUE_STAT_BYTES": "32", + "SAI_QUEUE_STAT_DROPPED_BYTES": "72", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "54", + "SAI_QUEUE_STAT_PACKETS": "70", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "63" }, "COUNTERS:oid:0x1000000001003": { @@ -140,7 +155,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "470", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9734", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "35" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "35", + "SAI_QUEUE_STAT_BYTES": "33", + "SAI_QUEUE_STAT_DROPPED_BYTES": "71", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "53", + "SAI_QUEUE_STAT_PACKETS": "71", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "64" }, "COUNTERS:oid:0x1000000001004": { @@ -161,7 +181,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "880", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8957", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10", + "SAI_QUEUE_STAT_BYTES": "34", + "SAI_QUEUE_STAT_DROPPED_BYTES": "70", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "52", + "SAI_QUEUE_STAT_PACKETS": "72", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "65" }, "COUNTERS:oid:0x1000000001005": { @@ -182,7 +207,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "633", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9538", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "54" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "54", + "SAI_QUEUE_STAT_BYTES": "35", + "SAI_QUEUE_STAT_DROPPED_BYTES": "69", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "51", + "SAI_QUEUE_STAT_PACKETS": "73", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "66" }, "COUNTERS:oid:0x1000000001006": { @@ -203,7 +233,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "934", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1060", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "53" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "53", + "SAI_QUEUE_STAT_BYTES": "36", + "SAI_QUEUE_STAT_DROPPED_BYTES": "68", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "50", + "SAI_QUEUE_STAT_PACKETS": "74", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "67" }, "COUNTERS:oid:0x1000000001007": { @@ -224,7 +259,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "216", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4283", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "0" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "0", + "SAI_QUEUE_STAT_BYTES": "37", + "SAI_QUEUE_STAT_DROPPED_BYTES": "67", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "49", + "SAI_QUEUE_STAT_PACKETS": "75", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "68" }, "COUNTERS:oid:0x1000000001008": { @@ -245,7 +285,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "235", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3256", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "22" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "22", + "SAI_QUEUE_STAT_BYTES": "38", + "SAI_QUEUE_STAT_DROPPED_BYTES": "66", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "48", + "SAI_QUEUE_STAT_PACKETS": "76", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "67" }, "COUNTERS:oid:0x1000000001009": { @@ -266,7 +311,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "172", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "9", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8458", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "35" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "35", + "SAI_QUEUE_STAT_BYTES": "39", + "SAI_QUEUE_STAT_DROPPED_BYTES": "65", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "47", + "SAI_QUEUE_STAT_PACKETS": "77", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "68" }, "COUNTERS:oid:0x1000000001010": { @@ -287,7 +337,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "360", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1394", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13", + "SAI_QUEUE_STAT_BYTES": "40", + "SAI_QUEUE_STAT_DROPPED_BYTES": "64", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "46", + "SAI_QUEUE_STAT_PACKETS": "78", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "69" }, "COUNTERS:oid:0x1000000001011": { @@ -308,7 +363,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "777", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8694", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "34" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "34", + "SAI_QUEUE_STAT_BYTES": "41", + "SAI_QUEUE_STAT_DROPPED_BYTES": "63", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "45", + "SAI_QUEUE_STAT_PACKETS": "79", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "70" }, "COUNTERS:oid:0x1000000001012": { @@ -329,7 +389,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "444", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6390", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "11" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "11", + "SAI_QUEUE_STAT_BYTES": "42", + "SAI_QUEUE_STAT_DROPPED_BYTES": "62", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "44", + "SAI_QUEUE_STAT_PACKETS": "80", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "71" }, "COUNTERS:oid:0x1000000001013": { @@ -350,7 +415,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "496", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3181", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "96" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "96", + "SAI_QUEUE_STAT_BYTES": "43", + "SAI_QUEUE_STAT_DROPPED_BYTES": "61", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "43", + "SAI_QUEUE_STAT_PACKETS": "81", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "72" }, "COUNTERS:oid:0x1000000001014": { @@ -371,7 +441,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "126", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "487", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "69" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "69", + "SAI_QUEUE_STAT_BYTES": "44", + "SAI_QUEUE_STAT_DROPPED_BYTES": "60", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "42", + "SAI_QUEUE_STAT_PACKETS": "82", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "73" }, "COUNTERS:oid:0x1000000001015": { @@ -392,7 +467,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "347", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2844", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "88" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "88", + "SAI_QUEUE_STAT_BYTES": "45", + "SAI_QUEUE_STAT_DROPPED_BYTES": "59", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "41", + "SAI_QUEUE_STAT_PACKETS": "83", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "74" }, "COUNTERS:oid:0x1000000002000": { @@ -413,7 +493,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "997", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4406", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "93" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "93", + "SAI_QUEUE_STAT_BYTES": "46", + "SAI_QUEUE_STAT_DROPPED_BYTES": "58", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "40", + "SAI_QUEUE_STAT_PACKETS": "84", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "75" }, "COUNTERS:oid:0x1000000002001": { @@ -434,7 +519,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "560", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4320", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "95" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "95", + "SAI_QUEUE_STAT_BYTES": "47", + "SAI_QUEUE_STAT_DROPPED_BYTES": "57", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "39", + "SAI_QUEUE_STAT_PACKETS": "85", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "76" }, "COUNTERS:oid:0x1000000002002": { @@ -455,7 +545,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "196", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "2", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "150", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "56" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "56", + "SAI_QUEUE_STAT_BYTES": "48", + "SAI_QUEUE_STAT_DROPPED_BYTES": "56", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "38", + "SAI_QUEUE_STAT_PACKETS": "86", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "77" }, "COUNTERS:oid:0x1000000002003": { @@ -476,7 +571,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "515", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5525", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "57" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "57", + "SAI_QUEUE_STAT_BYTES": "49", + "SAI_QUEUE_STAT_DROPPED_BYTES": "55", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "37", + "SAI_QUEUE_STAT_PACKETS": "87", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "78" }, "COUNTERS:oid:0x1000000002004": { @@ -497,7 +597,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "995", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9133", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "46" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "46", + "SAI_QUEUE_STAT_BYTES": "50", + "SAI_QUEUE_STAT_DROPPED_BYTES": "54", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "36", + "SAI_QUEUE_STAT_PACKETS": "88", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "79" }, "COUNTERS:oid:0x1000000002005": { @@ -518,7 +623,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "30", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1972", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "4" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "4", + "SAI_QUEUE_STAT_BYTES": "51", + "SAI_QUEUE_STAT_DROPPED_BYTES": "53", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "35", + "SAI_QUEUE_STAT_PACKETS": "89", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "80" }, "COUNTERS:oid:0x1000000002006": { @@ -539,7 +649,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "908", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6804", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10", + "SAI_QUEUE_STAT_BYTES": "52", + "SAI_QUEUE_STAT_DROPPED_BYTES": "52", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "34", + "SAI_QUEUE_STAT_PACKETS": "90", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "81" }, "COUNTERS:oid:0x1000000002007": { @@ -560,7 +675,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "875", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2979", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48", + "SAI_QUEUE_STAT_BYTES": "53", + "SAI_QUEUE_STAT_DROPPED_BYTES": "51", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "33", + "SAI_QUEUE_STAT_PACKETS": "91", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "82" }, "COUNTERS:oid:0x1000000002008": { @@ -581,7 +701,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "67", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "2", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4005", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8", + "SAI_QUEUE_STAT_BYTES": "54", + "SAI_QUEUE_STAT_DROPPED_BYTES": "50", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "32", + "SAI_QUEUE_STAT_PACKETS": "92", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "83" }, "COUNTERS:oid:0x1000000002009": { @@ -602,7 +727,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "226", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1732", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "86" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "86", + "SAI_QUEUE_STAT_BYTES": "55", + "SAI_QUEUE_STAT_DROPPED_BYTES": "49", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "31", + "SAI_QUEUE_STAT_PACKETS": "93", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "84" }, "COUNTERS:oid:0x1000000002010": { @@ -623,7 +753,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "567", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9822", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "32" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "32", + "SAI_QUEUE_STAT_BYTES": "56", + "SAI_QUEUE_STAT_DROPPED_BYTES": "48", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "30", + "SAI_QUEUE_STAT_PACKETS": "94", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "85" }, "COUNTERS:oid:0x1000000002011": { @@ -644,7 +779,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "527", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2772", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "1" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "1", + "SAI_QUEUE_STAT_BYTES": "57", + "SAI_QUEUE_STAT_DROPPED_BYTES": "47", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "29", + "SAI_QUEUE_STAT_PACKETS": "95", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "86" }, "COUNTERS:oid:0x1000000002012": { @@ -665,7 +805,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "537", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4423", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "30" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "30", + "SAI_QUEUE_STAT_BYTES": "58", + "SAI_QUEUE_STAT_DROPPED_BYTES": "46", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "28", + "SAI_QUEUE_STAT_PACKETS": "96", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "87" }, "COUNTERS:oid:0x1000000002013": { @@ -686,7 +831,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "364", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6280", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "94" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "94", + "SAI_QUEUE_STAT_BYTES": "59", + "SAI_QUEUE_STAT_DROPPED_BYTES": "45", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "27", + "SAI_QUEUE_STAT_PACKETS": "97", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "88" }, "COUNTERS:oid:0x1000000002014": { @@ -707,7 +857,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "69", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5812", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "39" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "39", + "SAI_QUEUE_STAT_BYTES": "60", + "SAI_QUEUE_STAT_DROPPED_BYTES": "44", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "26", + "SAI_QUEUE_STAT_PACKETS": "98", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "89" }, "COUNTERS:oid:0x1000000002015": { @@ -728,7 +883,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "115", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7589", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "9" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "9", + "SAI_QUEUE_STAT_BYTES": "61", + "SAI_QUEUE_STAT_DROPPED_BYTES": "43", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "25", + "SAI_QUEUE_STAT_PACKETS": "99", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "90" }, "COUNTERS:oid:0x1000000003000": { @@ -749,7 +909,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "719", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "9", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7806", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "73" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "73", + "SAI_QUEUE_STAT_BYTES": "62", + "SAI_QUEUE_STAT_DROPPED_BYTES": "42", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "24", + "SAI_QUEUE_STAT_PACKETS": "100", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "91" }, "COUNTERS:oid:0x1000000003001": { @@ -770,7 +935,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "737", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6904", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "71" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "71", + "SAI_QUEUE_STAT_BYTES": "63", + "SAI_QUEUE_STAT_DROPPED_BYTES": "41", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "23", + "SAI_QUEUE_STAT_PACKETS": "101", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "92" }, "COUNTERS:oid:0x1000000003002": { @@ -791,7 +961,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "946", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "9", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7498", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13", + "SAI_QUEUE_STAT_BYTES": "64", + "SAI_QUEUE_STAT_DROPPED_BYTES": "40", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "22", + "SAI_QUEUE_STAT_PACKETS": "102", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "93" }, "COUNTERS:oid:0x1000000003003": { @@ -812,7 +987,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1876", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "43" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "43", + "SAI_QUEUE_STAT_BYTES": "65", + "SAI_QUEUE_STAT_DROPPED_BYTES": "39", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "21", + "SAI_QUEUE_STAT_PACKETS": "103", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "94" }, "COUNTERS:oid:0x1000000003004": { @@ -833,7 +1013,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "648", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1599", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "78" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "78", + "SAI_QUEUE_STAT_BYTES": "66", + "SAI_QUEUE_STAT_DROPPED_BYTES": "38", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "20", + "SAI_QUEUE_STAT_PACKETS": "104", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "95" }, "COUNTERS:oid:0x1000000003005": { @@ -854,7 +1039,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "127", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2939", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48", + "SAI_QUEUE_STAT_BYTES": "67", + "SAI_QUEUE_STAT_DROPPED_BYTES": "37", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "19", + "SAI_QUEUE_STAT_PACKETS": "105", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "96" }, "COUNTERS:oid:0x1000000003006": { @@ -875,7 +1065,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "940", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3828", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "20" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "20", + "SAI_QUEUE_STAT_BYTES": "68", + "SAI_QUEUE_STAT_DROPPED_BYTES": "36", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "18", + "SAI_QUEUE_STAT_PACKETS": "106", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "97" }, "COUNTERS:oid:0x1000000003007": { @@ -896,7 +1091,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "685", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "9", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9058", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "54" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "54", + "SAI_QUEUE_STAT_BYTES": "69", + "SAI_QUEUE_STAT_DROPPED_BYTES": "35", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "17", + "SAI_QUEUE_STAT_PACKETS": "107", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "98" }, "COUNTERS:oid:0x1000000003008": { @@ -917,7 +1117,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "181", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4963", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "85" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "85", + "SAI_QUEUE_STAT_BYTES": "70", + "SAI_QUEUE_STAT_DROPPED_BYTES": "34", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "16", + "SAI_QUEUE_STAT_PACKETS": "108", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "99" }, "COUNTERS:oid:0x1000000003009": { @@ -938,7 +1143,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "359", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5498", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "36" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "36", + "SAI_QUEUE_STAT_BYTES": "71", + "SAI_QUEUE_STAT_DROPPED_BYTES": "33", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "15", + "SAI_QUEUE_STAT_PACKETS": "109", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "100" }, "COUNTERS:oid:0x1000000003010": { @@ -959,7 +1169,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "902", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8748", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "26" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "26", + "SAI_QUEUE_STAT_BYTES": "72", + "SAI_QUEUE_STAT_DROPPED_BYTES": "32", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "14", + "SAI_QUEUE_STAT_PACKETS": "110", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "101" }, "COUNTERS:oid:0x1000000003011": { @@ -980,7 +1195,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "116", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8272", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "94" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "94", + "SAI_QUEUE_STAT_BYTES": "73", + "SAI_QUEUE_STAT_DROPPED_BYTES": "31", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "13", + "SAI_QUEUE_STAT_PACKETS": "111", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "102" }, "COUNTERS:oid:0x1000000003012": { @@ -1001,7 +1221,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "74", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5817", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "0" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "0", + "SAI_QUEUE_STAT_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_BYTES": "30", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "12", + "SAI_QUEUE_STAT_PACKETS": "112", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "103" }, "COUNTERS:oid:0x1000000003013": { @@ -1022,7 +1247,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "253", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4833", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "65" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "65", + "SAI_QUEUE_STAT_BYTES": "75", + "SAI_QUEUE_STAT_DROPPED_BYTES": "29", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "11", + "SAI_QUEUE_STAT_PACKETS": "113", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "104" }, "COUNTERS:oid:0x1000000003014": { @@ -1043,7 +1273,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "573", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2860", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48", + "SAI_QUEUE_STAT_BYTES": "76", + "SAI_QUEUE_STAT_DROPPED_BYTES": "28", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "10", + "SAI_QUEUE_STAT_PACKETS": "114", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "105" }, "COUNTERS:oid:0x1000000003015": { @@ -1064,7 +1299,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "230", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6469", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "50" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "50", + "SAI_QUEUE_STAT_BYTES": "77", + "SAI_QUEUE_STAT_DROPPED_BYTES": "27", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "9", + "SAI_QUEUE_STAT_PACKETS": "115", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "106" }, "COUNTERS:oid:0x1000000004000": { @@ -1085,7 +1325,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "962", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "2", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3473", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "45" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "45", + "SAI_QUEUE_STAT_BYTES": "78", + "SAI_QUEUE_STAT_DROPPED_BYTES": "26", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "8", + "SAI_QUEUE_STAT_PACKETS": "116", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "107" }, "COUNTERS:oid:0x1000000004001": { @@ -1106,7 +1351,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "788", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8089", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "15" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "15", + "SAI_QUEUE_STAT_BYTES": "79", + "SAI_QUEUE_STAT_DROPPED_BYTES": "25", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "7", + "SAI_QUEUE_STAT_PACKETS": "117", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "108" }, "COUNTERS:oid:0x1000000004002": { @@ -1127,7 +1377,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "413", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9569", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8", + "SAI_QUEUE_STAT_BYTES": "80", + "SAI_QUEUE_STAT_DROPPED_BYTES": "24", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "6", + "SAI_QUEUE_STAT_PACKETS": "118", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "109" }, "COUNTERS:oid:0x1000000004003": { @@ -1148,7 +1403,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "701", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8669", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "96" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "96", + "SAI_QUEUE_STAT_BYTES": "81", + "SAI_QUEUE_STAT_DROPPED_BYTES": "23", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "5", + "SAI_QUEUE_STAT_PACKETS": "119", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "110" }, "COUNTERS:oid:0x1000000004004": { @@ -1169,7 +1429,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "860", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3633", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "92" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "92", + "SAI_QUEUE_STAT_BYTES": "82", + "SAI_QUEUE_STAT_DROPPED_BYTES": "22", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "4", + "SAI_QUEUE_STAT_PACKETS": "120", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "111" }, "COUNTERS:oid:0x1000000004005": { @@ -1190,7 +1455,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "45", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5074", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10", + "SAI_QUEUE_STAT_BYTES": "83", + "SAI_QUEUE_STAT_DROPPED_BYTES": "21", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "3", + "SAI_QUEUE_STAT_PACKETS": "121", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "112" }, "COUNTERS:oid:0x1000000004006": { @@ -1211,7 +1481,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3372", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "93" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "93", + "SAI_QUEUE_STAT_BYTES": "84", + "SAI_QUEUE_STAT_DROPPED_BYTES": "20", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "2", + "SAI_QUEUE_STAT_PACKETS": "122", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "113" }, "COUNTERS:oid:0x1000000004007": { @@ -1232,7 +1507,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "440", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1084", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "7" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "7", + "SAI_QUEUE_STAT_BYTES": "85", + "SAI_QUEUE_STAT_DROPPED_BYTES": "19", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "1", + "SAI_QUEUE_STAT_PACKETS": "123", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "114" }, "COUNTERS:oid:0x1000000004008": { @@ -1253,7 +1533,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "281", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5858", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "45" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "45", + "SAI_QUEUE_STAT_BYTES": "86", + "SAI_QUEUE_STAT_DROPPED_BYTES": "18", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "0", + "SAI_QUEUE_STAT_PACKETS": "124", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "115" }, "COUNTERS:oid:0x1000000004009": { @@ -1274,7 +1559,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "636", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1734", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "63" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "63", + "SAI_QUEUE_STAT_BYTES": "87", + "SAI_QUEUE_STAT_DROPPED_BYTES": "17", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "1", + "SAI_QUEUE_STAT_PACKETS": "125", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "116" }, "COUNTERS:oid:0x1000000004010": { @@ -1295,7 +1585,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "625", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3991", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "1" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "1", + "SAI_QUEUE_STAT_BYTES": "88", + "SAI_QUEUE_STAT_DROPPED_BYTES": "16", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "2", + "SAI_QUEUE_STAT_PACKETS": "126", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "117" }, "COUNTERS:oid:0x1000000004011": { @@ -1316,7 +1611,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "778", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "133", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "29" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "29", + "SAI_QUEUE_STAT_BYTES": "89", + "SAI_QUEUE_STAT_DROPPED_BYTES": "15", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "3", + "SAI_QUEUE_STAT_PACKETS": "127", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "118" }, "COUNTERS:oid:0x1000000004012": { @@ -1337,7 +1637,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "573", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6631", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "57" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "57", + "SAI_QUEUE_STAT_BYTES": "90", + "SAI_QUEUE_STAT_DROPPED_BYTES": "14", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "4", + "SAI_QUEUE_STAT_PACKETS": "128", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "119" }, "COUNTERS:oid:0x1000000004013": { @@ -1358,7 +1663,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "768", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9010", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "41" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "41", + "SAI_QUEUE_STAT_BYTES": "91", + "SAI_QUEUE_STAT_DROPPED_BYTES": "13", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "5", + "SAI_QUEUE_STAT_PACKETS": "129", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "120" }, "COUNTERS:oid:0x1000000004014": { @@ -1379,7 +1689,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "288", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4343", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "60" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "60", + "SAI_QUEUE_STAT_BYTES": "92", + "SAI_QUEUE_STAT_DROPPED_BYTES": "12", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "6", + "SAI_QUEUE_STAT_PACKETS": "130", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "121" }, "COUNTERS:oid:0x1000000004015": { @@ -1400,7 +1715,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "758", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7599", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8", + "SAI_QUEUE_STAT_BYTES": "93", + "SAI_QUEUE_STAT_DROPPED_BYTES": "11", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "7", + "SAI_QUEUE_STAT_PACKETS": "131", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "122" }, "COUNTERS_RIF_NAME_MAP": { @@ -1693,6 +2013,344 @@ "Ethernet-BP4:14": "oid:0x1000000004014", "Ethernet-BP4:15": "oid:0x1000000004015" }, + "COUNTERS_QUEUE_PORT_MAP": { + "oid:0x1000000001000": "oid:0x1000000000002", + "oid:0x1000000001001": "oid:0x1000000000002", + "oid:0x1000000001002": "oid:0x1000000000002", + "oid:0x1000000001003": "oid:0x1000000000002", + "oid:0x1000000001004": "oid:0x1000000000002", + "oid:0x1000000001005": "oid:0x1000000000002", + "oid:0x1000000001006": "oid:0x1000000000002", + "oid:0x1000000001007": "oid:0x1000000000002", + "oid:0x1000000001008": "oid:0x1000000000002", + "oid:0x1000000001009": "oid:0x1000000000002", + "oid:0x1000000001010": "oid:0x1000000000002", + "oid:0x1000000001011": "oid:0x1000000000002", + "oid:0x1000000001012": "oid:0x1000000000002", + "oid:0x1000000001013": "oid:0x1000000000002", + "oid:0x1000000001014": "oid:0x1000000000002", + "oid:0x1000000001015": "oid:0x1000000000002", + "oid:0x1000000002000": "oid:0x1000000000004", + "oid:0x1000000002001": "oid:0x1000000000004", + "oid:0x1000000002002": "oid:0x1000000000004", + "oid:0x1000000002003": "oid:0x1000000000004", + "oid:0x1000000002004": "oid:0x1000000000004", + "oid:0x1000000002005": "oid:0x1000000000004", + "oid:0x1000000002006": "oid:0x1000000000004", + "oid:0x1000000002007": "oid:0x1000000000004", + "oid:0x1000000002008": "oid:0x1000000000004", + "oid:0x1000000002009": "oid:0x1000000000004", + "oid:0x1000000002010": "oid:0x1000000000004", + "oid:0x1000000002011": "oid:0x1000000000004", + "oid:0x1000000002012": "oid:0x1000000000004", + "oid:0x1000000002013": "oid:0x1000000000004", + "oid:0x1000000002014": "oid:0x1000000000004", + "oid:0x1000000002015": "oid:0x1000000000004", + "oid:0x1000000003000": "oid:0x1000000000006", + "oid:0x1000000003001": "oid:0x1000000000006", + "oid:0x1000000003002": "oid:0x1000000000006", + "oid:0x1000000003003": "oid:0x1000000000006", + "oid:0x1000000003004": "oid:0x1000000000006", + "oid:0x1000000003005": "oid:0x1000000000006", + "oid:0x1000000003006": "oid:0x1000000000006", + "oid:0x1000000003007": "oid:0x1000000000006", + "oid:0x1000000003008": "oid:0x1000000000006", + "oid:0x1000000003009": "oid:0x1000000000006", + "oid:0x1000000003010": "oid:0x1000000000006", + "oid:0x1000000003011": "oid:0x1000000000006", + "oid:0x1000000003012": "oid:0x1000000000006", + "oid:0x1000000003013": "oid:0x1000000000006", + "oid:0x1000000003014": "oid:0x1000000000006", + "oid:0x1000000003015": "oid:0x1000000000006", + "oid:0x1000000004000": "oid:0x1000000000008", + "oid:0x1000000004001": "oid:0x1000000000008", + "oid:0x1000000004002": "oid:0x1000000000008", + "oid:0x1000000004003": "oid:0x1000000000008", + "oid:0x1000000004004": "oid:0x1000000000008", + "oid:0x1000000004005": "oid:0x1000000000008", + "oid:0x1000000004006": "oid:0x1000000000008", + "oid:0x1000000004007": "oid:0x1000000000008", + "oid:0x1000000004008": "oid:0x1000000000008", + "oid:0x1000000004009": "oid:0x1000000000008", + "oid:0x1000000004010": "oid:0x1000000000008", + "oid:0x1000000004011": "oid:0x1000000000008", + "oid:0x1000000004012": "oid:0x1000000000008", + "oid:0x1000000004013": "oid:0x1000000000008", + "oid:0x1000000004014": "oid:0x1000000000008", + "oid:0x1000000004015": "oid:0x1000000000008" + }, + "COUNTERS_QUEUE_INDEX_MAP": { + "oid:0x1000000001000": "0", + "oid:0x1000000001001": "1", + "oid:0x1000000001002": "2", + "oid:0x1000000001003": "3", + "oid:0x1000000001004": "4", + "oid:0x1000000001005": "5", + "oid:0x1000000001006": "6", + "oid:0x1000000001007": "7", + "oid:0x1000000001008": "8", + "oid:0x1000000001009": "9", + "oid:0x1000000001010": "10", + "oid:0x1000000001011": "11", + "oid:0x1000000001012": "12", + "oid:0x1000000001013": "13", + "oid:0x1000000001014": "14", + "oid:0x1000000001015": "15", + "oid:0x1000000002000": "0", + "oid:0x1000000002001": "1", + "oid:0x1000000002002": "2", + "oid:0x1000000002003": "3", + "oid:0x1000000002004": "4", + "oid:0x1000000002005": "5", + "oid:0x1000000002006": "6", + "oid:0x1000000002007": "7", + "oid:0x1000000002008": "8", + "oid:0x1000000002009": "9", + "oid:0x1000000002010": "10", + "oid:0x1000000002011": "11", + "oid:0x1000000002012": "12", + "oid:0x1000000002013": "13", + "oid:0x1000000002014": "14", + "oid:0x1000000002015": "15", + "oid:0x1000000003000": "0", + "oid:0x1000000003001": "1", + "oid:0x1000000003002": "2", + "oid:0x1000000003003": "3", + "oid:0x1000000003004": "4", + "oid:0x1000000003005": "5", + "oid:0x1000000003006": "6", + "oid:0x1000000003007": "7", + "oid:0x1000000003008": "8", + "oid:0x1000000003009": "9", + "oid:0x1000000003010": "10", + "oid:0x1000000003011": "11", + "oid:0x1000000003012": "12", + "oid:0x1000000003013": "13", + "oid:0x1000000003014": "14", + "oid:0x1000000003015": "15", + "oid:0x1000000004000": "0", + "oid:0x1000000004001": "1", + "oid:0x1000000004002": "2", + "oid:0x1000000004003": "3", + "oid:0x1000000004004": "4", + "oid:0x1000000004005": "5", + "oid:0x1000000004006": "6", + "oid:0x1000000004007": "7", + "oid:0x1000000004008": "8", + "oid:0x1000000004009": "9", + "oid:0x1000000004010": "10", + "oid:0x1000000004011": "11", + "oid:0x1000000004012": "12", + "oid:0x1000000004013": "13", + "oid:0x1000000004014": "14", + "oid:0x1000000004015": "15" + }, + "COUNTERS_QUEUE_TYPE_MAP": { + "oid:0x1000000001000": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001001": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001002": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001003": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001004": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001005": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001006": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001007": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001008": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001009": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001010": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001011": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001012": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001013": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001014": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001015": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002000": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002001": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002002": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002003": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002004": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002005": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002006": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002007": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002008": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002009": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002010": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002011": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002012": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002013": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002014": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002015": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003000": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003001": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003002": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003003": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003004": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003005": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003006": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003007": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003008": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003009": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003010": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003011": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003012": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003013": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003014": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003015": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004000": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004001": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004002": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004003": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004004": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004005": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004006": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004007": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004008": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004009": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004010": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004011": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004012": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004013": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004014": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004015": "SAI_QUEUE_TYPE_MULTICAST" + }, + "COUNTERS_FABRIC_PORT_NAME_MAP" : { + "PORT0": "oid:0x1000000000143", + "PORT1": "oid:0x1000000000144", + "PORT2": "oid:0x1000000000145", + "PORT3": "oid:0x1000000000146", + "PORT4": "oid:0x1000000000147", + "PORT5": "oid:0x1000000000148", + "PORT6": "oid:0x1000000000149", + "PORT7": "oid:0x100000000014a" + }, + "COUNTERS:oid:0x1000000000143": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1113", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "6", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "5", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1759692040", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "5" + }, + "COUNTERS:oid:0x1000000000144": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58977677898", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000145": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "371", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "2", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1769448760", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000146": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58976477608", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000147": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1855", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "10", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "73", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1763293100", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "73" + }, + "COUNTERS:oid:0x1000000000148": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "44196", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58975150569", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000149": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "742", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "4", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "10", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1763174090", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x100000000014a": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1855", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "10", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "187", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1768439529", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "1331" + }, + "COUNTERS_FABRIC_QUEUE_NAME_MAP" : { + "PORT0:0": "oid:0x15000000000186", + "PORT1:0": "oid:0x15000000000187", + "PORT2:0": "oid:0x15000000000188", + "PORT3:0": "oid:0x15000000000189", + "PORT4:0": "oid:0x1500000000018a", + "PORT5:0": "oid:0x1500000000018b", + "PORT6:0": "oid:0x1500000000018c", + "PORT7:0": "oid:0x1500000000018d" + }, + "COUNTERS:oid:0x15000000000186": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "20", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "763", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "12" + }, + "COUNTERS:oid:0x15000000000187": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x15000000000188": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "8", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "104", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "8" + }, + "COUNTERS:oid:0x15000000000189": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018a": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "22", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "1147", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "14" + }, + "COUNTERS:oid:0x1500000000018b": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018c": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "10", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "527", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "8" + }, + "COUNTERS:oid:0x1500000000018d": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "17", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "1147", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "14" + }, "COUNTERS_DEBUG_NAME_PORT_STAT_MAP": { "DEBUG_0": "SAI_PORT_STAT_IN_DROP_REASON_RANGE_BASE", "DEBUG_2": "SAI_PORT_STAT_OUT_CONFIGURED_DROP_REASONS_1_DROPPED_PKTS" diff --git a/tests/mock_tables/asic0/device_bgp_info.json b/tests/mock_tables/asic0/device_bgp_info.json new file mode 100644 index 000000000..5bc28cf8e --- /dev/null +++ b/tests/mock_tables/asic0/device_bgp_info.json @@ -0,0 +1,30 @@ +{ +"vrfId": 0, +"vrfName": "default", +"tableVersion": 8972, +"routerId": "10.1.0.32", +"defaultLocPrf": 100, +"localAS": 65100, +"routes": { "10.1.0.32/32": [ + { + "valid":true, + "bestpath":true, + "pathFrom":"external", + "prefix":"10.1.0.32", + "prefixLen":32, + "network":"10.1.0.32\/32", + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"STR-8102-C19-U24", + "afi":"ipv4", + "used":true + } + ] + } +] } } \ No newline at end of file diff --git a/tests/mock_tables/asic0/no_bgp_neigh.json b/tests/mock_tables/asic0/no_bgp_neigh.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/tests/mock_tables/asic0/no_bgp_neigh.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tests/mock_tables/asic0/no_ext_bgp_neigh.json b/tests/mock_tables/asic0/no_ext_bgp_neigh.json new file mode 100644 index 000000000..c64a3d346 --- /dev/null +++ b/tests/mock_tables/asic0/no_ext_bgp_neigh.json @@ -0,0 +1,91 @@ +{ +"ipv4Unicast":{ + "routerId":"192.0.0.6", + "as":65100, + "vrfId":0, + "vrfName":"default", + "tableVersion":59923, + "ribCount":101147, + "ribMemory":18611048, + "peerCount":3, + "peerMemory":2222424, + "peerGroupCount":2, + "peerGroupMemory":128, + "peers":{ + "3.3.3.1":{ + "hostname":"str2-sonic-lc1-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":277, + "msgSent":9, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:00:14", + "peerUptimeMsec":14000, + "peerUptimeEstablishedEpoch":1703036129, + "pfxRcd":33798, + "pfxSnt":2, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"str2-sonic-lc1-1-ASIC0", + "idType":"ipv4" + }, + "3.3.3.2":{ + "hostname":"str2-sonic-lc1-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":277, + "msgSent":9, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:00:14", + "peerUptimeMsec":14000, + "peerUptimeEstablishedEpoch":1703036129, + "pfxRcd":33798, + "pfxSnt":2, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"str2-sonic-lc1-1-ASIC1", + "idType":"ipv4" + }, + "3.3.3.8":{ + "hostname":"str2-sonic-lc2-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":12, + "msgSent":10, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:00:15", + "peerUptimeMsec":15000, + "peerUptimeEstablishedEpoch":1703036128, + "pfxRcd":4, + "pfxSnt":2, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"ASIC1", + "idType":"ipv4" + } + }, + "failedPeers":0, + "displayedPeers":3, + "totalPeers":3, + "dynamicPeers":0, + "bestPath":{ + "multiPathRelax":"true", + "peerTypeRelax":true + } +} +} diff --git a/tests/mock_tables/asic0/show_ip_bgp.json b/tests/mock_tables/asic0/show_ip_bgp.json new file mode 100644 index 000000000..b89597e12 --- /dev/null +++ b/tests/mock_tables/asic0/show_ip_bgp.json @@ -0,0 +1,57 @@ +{ + "vrfId": 0, + "vrfName": "default", + "tableVersion": 59925, + "routerId": "192.0.0.6", + "defaultLocPrf": 100, + "localAS": 65100, + "routes": { + "0.0.0.0/0": [ + { + "valid": true, + "multipath": true, + "pathFrom": "internal", + "prefix": "0.0.0.0", + "prefixLen": 0, + "network": "0.0.0.0\/0", + "version": 12050, + "locPrf": 100, + "weight": 0, + "peerId": "3.3.3.2", + "path": "65200 6666 6667", + "origin": "IGP", + "nexthops": [ + { + "ip": "10.0.0.7", + "hostname": "str2-sonic-lc1-1", + "afi": "ipv4", + "used": true + } + ] + }, + { + "valid": true, + "bestpath": true, + "selectionReason": "Router ID", + "pathFrom": "internal", + "prefix": "0.0.0.0", + "prefixLen": 0, + "network": "0.0.0.0\/0", + "version": 12050, + "locPrf": 100, + "weight": 0, + "peerId": "3.3.3.1", + "path": "65200 6666 6667", + "origin": "IGP", + "nexthops": [ + { + "ip": "10.0.0.1", + "hostname": "str2-sonic-lc1-1", + "afi": "ipv4", + "used": true + } + ] + } + ] + } +} \ No newline at end of file diff --git a/tests/mock_tables/asic0/show_ip_bgp_summary.json b/tests/mock_tables/asic0/show_ip_bgp_summary.json new file mode 100644 index 000000000..5db427287 --- /dev/null +++ b/tests/mock_tables/asic0/show_ip_bgp_summary.json @@ -0,0 +1,92 @@ +{ +"ipv4Unicast":{ + "routerId":"192.0.0.6", + "as":65100, + "vrfId":0, + "vrfName":"default", + "tableVersion":59923, + "ribCount":163, + "ribMemory":29992, + "peerCount":3, + "peerMemory":3704040, + "peerGroupCount":3, + "peerGroupMemory":128, + "peers":{ + "3.3.3.2":{ + "hostname":"svcstr-sonic-lc1-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":127, + "msgSent":123, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:05:26", + "peerUptimeMsec":326000, + "peerUptimeEstablishedEpoch":1707332746, + "pfxRcd":16, + "pfxSnt":12, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"ASIC1", + "idType":"ipv4" + }, + "3.3.3.8":{ + "hostname":"svcstr-sonic-lc2-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":129, + "msgSent":123, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:05:26", + "peerUptimeMsec":326000, + "peerUptimeEstablishedEpoch":1707332746, + "pfxRcd":18, + "pfxSnt":12, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"svcstr-sonic-lc2-1-ASIC1", + "idType":"ipv4" + }, + "10.0.0.1":{ + "hostname":"ARISTA01T2", + "remoteAs":65222, + "localAs":65200, + "version":4, + "msgRcvd":4633, + "msgSent":11029, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:18:33", + "peerUptimeMsec":326000, + "peerUptimeEstablishedEpoch":1707332746, + "pfxRcd":8514, + "pfxSnt":12, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"ARISTA01T2", + "idType":"ipv4" + } + + }, + "failedPeers":0, + "displayedPeers": 5, + "totalPeers":5, + "dynamicPeers":0, + "bestPath":{ + "multiPathRelax":"true", + "peerTypeRelax":true + } +} +} diff --git a/tests/mock_tables/asic0/show_not_running_bgp.txt b/tests/mock_tables/asic0/show_not_running_bgp.txt new file mode 100644 index 000000000..b156e857f --- /dev/null +++ b/tests/mock_tables/asic0/show_not_running_bgp.txt @@ -0,0 +1 @@ +Error response from daemon: Container 70e3d3bafd1ab5faf796892acff3e2ccbea3dcd5dcfefcc34f25f7cc916b67bb is not running diff --git a/tests/mock_tables/asic0/show_run_bgp.txt b/tests/mock_tables/asic0/show_run_bgp.txt new file mode 100644 index 000000000..e5c9a9982 --- /dev/null +++ b/tests/mock_tables/asic0/show_run_bgp.txt @@ -0,0 +1,12 @@ +neighbor 10.0.0.1 remote-as 65200 +neighbor 10.0.0.1 peer-group TIER2_V4 +neighbor 10.0.0.1 description ARISTA01T2 +neighbor 10.0.0.5 remote-as 65200 +neighbor 10.0.0.5 peer-group TIER2_V4 +neighbor 10.0.0.5 description ARISTA03T2 +neighbor fc00::2 remote-as 65200 +neighbor fc00::2 peer-group TIER2_V6 +neighbor fc00::2 description ARISTA01T2 +neighbor fc00::6 remote-as 65200 +neighbor fc00::6 peer-group TIER2_V6 +neighbor fc00::6 description ARISTA03T2 diff --git a/tests/mock_tables/asic0/state_db.json b/tests/mock_tables/asic0/state_db.json index 97fbb3d33..6ae0258be 100644 --- a/tests/mock_tables/asic0/state_db.json +++ b/tests/mock_tables/asic0/state_db.json @@ -31,7 +31,9 @@ "tx1power": "N/A", "tx2power": "N/A", "tx3power": "N/A", - "tx4power": "N/A", + "tx4power": "N/A" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet0": { "rxpowerhighalarm": "3.4001", "rxpowerhighwarning": "2.4000", "rxpowerlowalarm": "-13.5067", @@ -49,6 +51,43 @@ "vcclowalarm": "2.9700", "vcclowwarning": "3.1349" }, + "TRANSCEIVER_INFO|Ethernet48": { + "type" : "QSFP-DD Double Density 8X Pluggable Transceiver", + "hardware_rev" : "1.1", + "serial" : "214455197", + "manufacturer" : "Acacia Comm Inc.", + "model" : "DP04QSDD-E20-001", + "connector" : "LC", + "encoding" : "N/A", + "ext_identifier" : "Power Class 8 (20.0W Max)", + "ext_rateselect_compliance" : "N/A", + "cable_type" : "Length Cable Assembly(m)", + "cable_length" : "0.0", + "nominal_bit_rate" : "0", + "specification_compliance" : "sm_media_interface", + "vendor_date" : "2021-11-19", + "vendor_oui" : "7c-b2-5c", + "application_advertisement" : "{1: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 2: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, Single Wavelength, Unamplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 3: {'host_electrical_interface_id': '100GAUI-2 C2M (Annex 135G)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 2, 'host_lane_assignment_options': 85, 'media_lane_assignment_options': 1}}", + "host_lane_count" : "8", + "media_lane_count" : "1", + "active_apsel_hostlane1" : "1", + "active_apsel_hostlane2" : "1", + "active_apsel_hostlane3" : "1", + "active_apsel_hostlane4" : "1", + "active_apsel_hostlane5" : "1", + "active_apsel_hostlane6" : "1", + "active_apsel_hostlane7" : "1", + "active_apsel_hostlane8" : "1", + "media_interface_technology" : "1550 nm DFB", + "vendor_rev" : "A", + "cmis_rev" : "4.1", + "active_firmware" : "61.20", + "inactive_firmware" : "161.10", + "supported_max_tx_power" : "4.0", + "supported_min_tx_power" : "-22.9", + "supported_max_laser_freq" : "196100", + "supported_min_laser_freq" : "191300" + }, "CHASSIS_INFO|chassis 1": { "psu_num": "2" }, @@ -213,5 +252,57 @@ }, "MUX_CABLE_TABLE|Ethernet0": { "state": "active" + }, + "FABRIC_PORT_TABLE|PORT0" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "79" + }, + "FABRIC_PORT_TABLE|PORT1" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT2" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "94" + }, + "FABRIC_PORT_TABLE|PORT3" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT4" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "85" + }, + "FABRIC_PORT_TABLE|PORT5" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT6" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "84" + }, + "FABRIC_PORT_TABLE|PORT7" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "93" + }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { + "ip_address": "127.0.0.1", + "access": "True" + }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD1": { + "ip_address": "127.0.0.1", + "access": "True" + }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD2": { + "ip_address": "127.0.0.1", + "access": "False" + }, + "ACL_TABLE_TABLE|DATAACL_5" : { + "status": "Active" + }, + "ACL_RULE_TABLE|DATAACL_5|RULE_1" : { + "status": "Active" } } diff --git a/tests/mock_tables/asic1/config_db.json b/tests/mock_tables/asic1/config_db.json index f9fa66a04..1cded6814 100644 --- a/tests/mock_tables/asic1/config_db.json +++ b/tests/mock_tables/asic1/config_db.json @@ -197,5 +197,35 @@ "holdtime": "0", "asn": "65100", "keepalive": "0" + }, + "BGP_VOQ_CHASSIS_NEIGHBOR|3.3.3.1": { + "rrclient": "0", + "name": "str2-sonic-lc1-1-ASIC1", + "local_addr": "3.3.3.2", + "nhopself": "0", + "admin_status": "up", + "holdtime": "10", + "asn": "65200", + "keepalive": "3" + }, + "BGP_VOQ_CHASSIS_NEIGHBOR|3.3.3.2": { + "rrclient": "0", + "name": "str2-sonic-lc3-1-ASIC0", + "local_addr": "3.3.3.2", + "nhopself": "0", + "admin_status": "up", + "holdtime": "10", + "asn": "65200", + "keepalive": "3" + }, + "BGP_VOQ_CHASSIS_NEIGHBOR|3.3.3.6": { + "rrclient": "0", + "name": "str2-sonic-lc3-1-ASIC1", + "local_addr": "3.3.3.7", + "nhopself": "0", + "admin_status": "up", + "holdtime": "10", + "asn": "65200", + "keepalive": "3" } } diff --git a/tests/mock_tables/asic1/counters_db.json b/tests/mock_tables/asic1/counters_db.json index aed3b22b5..c364d8599 100644 --- a/tests/mock_tables/asic1/counters_db.json +++ b/tests/mock_tables/asic1/counters_db.json @@ -888,6 +888,146 @@ "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8343", "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "72" }, + "COUNTERS_FABRIC_PORT_NAME_MAP" : { + "PORT0": "oid:0x1000000000143", + "PORT1": "oid:0x1000000000144", + "PORT2": "oid:0x1000000000145", + "PORT3": "oid:0x1000000000146", + "PORT4": "oid:0x1000000000147", + "PORT5": "oid:0x1000000000148", + "PORT6": "oid:0x1000000000149", + "PORT7": "oid:0x100000000014a" + }, + "COUNTERS:oid:0x1000000000143": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "2968", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "16", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1763890500", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000144": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "105269481425", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000145": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "105268895944", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000146": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "105268290607", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000147": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "2597", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "14", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1762188940", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000148": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "968", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "105267020477", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000149": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "53192703023", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1422986", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "41913682074" + }, + "COUNTERS:oid:0x100000000014a": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "105264567398", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS_FABRIC_QUEUE_NAME_MAP" : { + "PORT0:0": "oid:0x15000000000186", + "PORT1:0": "oid:0x15000000000187", + "PORT2:0": "oid:0x15000000000188", + "PORT3:0": "oid:0x15000000000189", + "PORT4:0": "oid:0x1500000000018a", + "PORT5:0": "oid:0x1500000000018b", + "PORT6:0": "oid:0x1500000000018c", + "PORT7:0": "oid:0x1500000000018d" + }, + "COUNTERS:oid:0x15000000000186": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "24", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "1942", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "18" + }, + "COUNTERS:oid:0x15000000000187": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x15000000000188": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x15000000000189": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018a": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "24", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "1362", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "15" + }, + "COUNTERS:oid:0x1500000000018b": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018c": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018d": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, "COUNTERS_DEBUG_NAME_PORT_STAT_MAP": { "DEBUG_0": "SAI_PORT_STAT_IN_DROP_REASON_RANGE_BASE", "DEBUG_2": "SAI_PORT_STAT_OUT_CONFIGURED_DROP_REASONS_1_DROPPED_PKTS" diff --git a/tests/mock_tables/asic1/device_bgp_info.json b/tests/mock_tables/asic1/device_bgp_info.json new file mode 100644 index 000000000..5bc28cf8e --- /dev/null +++ b/tests/mock_tables/asic1/device_bgp_info.json @@ -0,0 +1,30 @@ +{ +"vrfId": 0, +"vrfName": "default", +"tableVersion": 8972, +"routerId": "10.1.0.32", +"defaultLocPrf": 100, +"localAS": 65100, +"routes": { "10.1.0.32/32": [ + { + "valid":true, + "bestpath":true, + "pathFrom":"external", + "prefix":"10.1.0.32", + "prefixLen":32, + "network":"10.1.0.32\/32", + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"STR-8102-C19-U24", + "afi":"ipv4", + "used":true + } + ] + } +] } } \ No newline at end of file diff --git a/tests/mock_tables/asic1/no_bgp_neigh.json b/tests/mock_tables/asic1/no_bgp_neigh.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/tests/mock_tables/asic1/no_bgp_neigh.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tests/mock_tables/asic1/no_ext_bgp_neigh.json b/tests/mock_tables/asic1/no_ext_bgp_neigh.json new file mode 100644 index 000000000..62f7dfc86 --- /dev/null +++ b/tests/mock_tables/asic1/no_ext_bgp_neigh.json @@ -0,0 +1,91 @@ +{ +"ipv4Unicast":{ + "routerId":"192.0.0.8", + "as":65100, + "vrfId":0, + "vrfName":"default", + "tableVersion":64918, + "ribCount":101151, + "ribMemory":18611784, + "peerCount":3, + "peerMemory":2222424, + "peerGroupCount":2, + "peerGroupMemory":128, + "peers":{ + "3.3.3.1":{ + "hostname":"str2-7250-lc1-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":280, + "msgSent":14, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:00:22", + "peerUptimeMsec":22000, + "peerUptimeEstablishedEpoch":1703036130, + "pfxRcd":33798, + "pfxSnt":4, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"str2-7250-lc1-1-ASIC0", + "idType":"ipv4" + }, + "3.3.3.2":{ + "hostname":"str2-7250-lc1-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":280, + "msgSent":14, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:00:22", + "peerUptimeMsec":22000, + "peerUptimeEstablishedEpoch":1703036130, + "pfxRcd":33798, + "pfxSnt":4, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"str2-7250-lc1-1-ASIC1", + "idType":"ipv4" + }, + "3.3.3.6":{ + "hostname":"str2-7250-lc2-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":14, + "msgSent":14, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:00:23", + "peerUptimeMsec":23000, + "peerUptimeEstablishedEpoch":1703036129, + "pfxRcd":4, + "pfxSnt":4, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"ASIC0", + "idType":"ipv4" + } + }, + "failedPeers":0, + "displayedPeers":3, + "totalPeers":3, + "dynamicPeers":0, + "bestPath":{ + "multiPathRelax":"true", + "peerTypeRelax":true + } +} +} diff --git a/tests/mock_tables/asic1/show_ip_bgp.json b/tests/mock_tables/asic1/show_ip_bgp.json new file mode 100644 index 000000000..b177ea7d3 --- /dev/null +++ b/tests/mock_tables/asic1/show_ip_bgp.json @@ -0,0 +1,1588461 @@ +{ + "vrfId": 0, + "vrfName": "default", + "tableVersion": 64918, + "routerId": "192.0.0.8", + "defaultLocPrf": 100, + "localAS": 65100, + "routes": { "0.0.0.0/0": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"0.0.0.0", + "prefixLen":0, + "network":"0.0.0.0\/0", + "version":11, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 6666 6667", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.7", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"0.0.0.0", + "prefixLen":0, + "network":"0.0.0.0\/0", + "version":11, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 6666 6667", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.1", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.0.0.0/31": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"10.0.0.0", + "prefixLen":31, + "network":"10.0.0.0\/31", + "version":12, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.1", + "path":"", + "origin":"incomplete", + "nexthops":[ + { + "ip":"3.3.3.1", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.0.0.4/31": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"10.0.0.4", + "prefixLen":31, + "network":"10.0.0.4\/31", + "version":13, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.1", + "path":"", + "origin":"incomplete", + "nexthops":[ + { + "ip":"3.3.3.1", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.0.0.6/31": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"10.0.0.6", + "prefixLen":31, + "network":"10.0.0.6\/31", + "version":13201, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.2", + "path":"", + "origin":"incomplete", + "nexthops":[ + { + "ip":"3.3.3.2", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.0.0.10/31": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"10.0.0.10", + "prefixLen":31, + "network":"10.0.0.10\/31", + "version":13202, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.2", + "path":"", + "origin":"incomplete", + "nexthops":[ + { + "ip":"3.3.3.2", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.0.0.12/31": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"10.0.0.12", + "prefixLen":31, + "network":"10.0.0.12\/31", + "version":64918, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.6", + "path":"", + "origin":"incomplete", + "nexthops":[ + { + "ip":"3.3.3.6", + "hostname":"str2-7250-lc2-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.0.0.16/31": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"10.0.0.16", + "prefixLen":31, + "network":"10.0.0.16\/31", + "version":64917, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.6", + "path":"", + "origin":"incomplete", + "nexthops":[ + { + "ip":"3.3.3.6", + "hostname":"str2-7250-lc2-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.0.0.18/31": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"external", + "prefix":"10.0.0.18", + "prefixLen":31, + "network":"10.0.0.18\/31", + "version":10, + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"incomplete", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"str2-7250-lc2-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.0.0.22/31": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"external", + "prefix":"10.0.0.22", + "prefixLen":31, + "network":"10.0.0.22\/31", + "version":7, + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"incomplete", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"str2-7250-lc2-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.1.0.1/32": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"10.1.0.1", + "prefixLen":32, + "network":"10.1.0.1\/32", + "version":14, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.2", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"3.3.3.2", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"10.1.0.1", + "prefixLen":32, + "network":"10.1.0.1\/32", + "version":14, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.1", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"3.3.3.1", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"10.1.0.2/32": [ + { + "valid":true, + "pathFrom":"internal", + "prefix":"10.1.0.2", + "prefixLen":32, + "network":"10.1.0.2\/32", + "version":8, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.6", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"3.3.3.6", + "hostname":"str2-7250-lc2-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Weight", + "pathFrom":"external", + "prefix":"10.1.0.2", + "prefixLen":32, + "network":"10.1.0.2\/32", + "version":8, + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"str2-7250-lc2-1", + "afi":"ipv4", + "used":true + } + ] + } +],"100.1.0.3/32": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"100.1.0.3", + "prefixLen":32, + "network":"100.1.0.3\/32", + "version":15, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"100.1.0.6/32": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"100.1.0.6", + "prefixLen":32, + "network":"100.1.0.6\/32", + "version":13203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.0.0.1/32": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.0.0.1", + "prefixLen":32, + "network":"192.0.0.1\/32", + "version":16, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.1", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"3.3.3.1", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.0.0.2/32": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.0.0.2", + "prefixLen":32, + "network":"192.0.0.2\/32", + "version":13204, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.2", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"3.3.3.2", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.0.0.6/32": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.0.0.6", + "prefixLen":32, + "network":"192.0.0.6\/32", + "version":9, + "metric":0, + "locPrf":100, + "weight":0, + "peerId":"3.3.3.6", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"3.3.3.6", + "hostname":"str2-7250-lc2-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.0.0.8/32": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"external", + "prefix":"192.0.0.8", + "prefixLen":32, + "network":"192.0.0.8\/32", + "version":6, + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"str2-7250-lc2-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.0.0", + "prefixLen":25, + "network":"192.171.0.0\/25", + "version":17, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.0.128", + "prefixLen":25, + "network":"192.171.0.128\/25", + "version":144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.1.0", + "prefixLen":25, + "network":"192.171.1.0\/25", + "version":143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.1.128", + "prefixLen":25, + "network":"192.171.1.128\/25", + "version":142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.2.0", + "prefixLen":25, + "network":"192.171.2.0\/25", + "version":141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.2.128", + "prefixLen":25, + "network":"192.171.2.128\/25", + "version":140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.3.0", + "prefixLen":25, + "network":"192.171.3.0\/25", + "version":139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.3.128", + "prefixLen":25, + "network":"192.171.3.128\/25", + "version":138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.16.0", + "prefixLen":25, + "network":"192.171.16.0\/25", + "version":137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.16.128", + "prefixLen":25, + "network":"192.171.16.128\/25", + "version":136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.17.0", + "prefixLen":25, + "network":"192.171.17.0\/25", + "version":135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.17.128", + "prefixLen":25, + "network":"192.171.17.128\/25", + "version":134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.18.0", + "prefixLen":25, + "network":"192.171.18.0\/25", + "version":133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.18.128", + "prefixLen":25, + "network":"192.171.18.128\/25", + "version":132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.19.0", + "prefixLen":25, + "network":"192.171.19.0\/25", + "version":131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.19.128", + "prefixLen":25, + "network":"192.171.19.128\/25", + "version":130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.32.0", + "prefixLen":25, + "network":"192.171.32.0\/25", + "version":129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.32.128", + "prefixLen":25, + "network":"192.171.32.128\/25", + "version":128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.33.0", + "prefixLen":25, + "network":"192.171.33.0\/25", + "version":127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.33.128", + "prefixLen":25, + "network":"192.171.33.128\/25", + "version":126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.34.0", + "prefixLen":25, + "network":"192.171.34.0\/25", + "version":125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.34.128", + "prefixLen":25, + "network":"192.171.34.128\/25", + "version":124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.35.0", + "prefixLen":25, + "network":"192.171.35.0\/25", + "version":123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.35.128", + "prefixLen":25, + "network":"192.171.35.128\/25", + "version":122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.48.0", + "prefixLen":25, + "network":"192.171.48.0\/25", + "version":121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.48.128", + "prefixLen":25, + "network":"192.171.48.128\/25", + "version":120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.49.0", + "prefixLen":25, + "network":"192.171.49.0\/25", + "version":119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.49.128", + "prefixLen":25, + "network":"192.171.49.128\/25", + "version":118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.50.0", + "prefixLen":25, + "network":"192.171.50.0\/25", + "version":117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.50.128", + "prefixLen":25, + "network":"192.171.50.128\/25", + "version":116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.51.0", + "prefixLen":25, + "network":"192.171.51.0\/25", + "version":115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.51.128", + "prefixLen":25, + "network":"192.171.51.128\/25", + "version":114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.64.0", + "prefixLen":25, + "network":"192.171.64.0\/25", + "version":113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.64.128", + "prefixLen":25, + "network":"192.171.64.128\/25", + "version":112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.65.0", + "prefixLen":25, + "network":"192.171.65.0\/25", + "version":111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.65.128", + "prefixLen":25, + "network":"192.171.65.128\/25", + "version":110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.66.0", + "prefixLen":25, + "network":"192.171.66.0\/25", + "version":109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.66.128", + "prefixLen":25, + "network":"192.171.66.128\/25", + "version":108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.67.0", + "prefixLen":25, + "network":"192.171.67.0\/25", + "version":107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.67.128", + "prefixLen":25, + "network":"192.171.67.128\/25", + "version":106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.80.0", + "prefixLen":25, + "network":"192.171.80.0\/25", + "version":105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.80.128", + "prefixLen":25, + "network":"192.171.80.128\/25", + "version":104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.81.0", + "prefixLen":25, + "network":"192.171.81.0\/25", + "version":103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.81.128", + "prefixLen":25, + "network":"192.171.81.128\/25", + "version":102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.82.0", + "prefixLen":25, + "network":"192.171.82.0\/25", + "version":101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.82.128", + "prefixLen":25, + "network":"192.171.82.128\/25", + "version":100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.83.0", + "prefixLen":25, + "network":"192.171.83.0\/25", + "version":99, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.83.128", + "prefixLen":25, + "network":"192.171.83.128\/25", + "version":98, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.96.0", + "prefixLen":25, + "network":"192.171.96.0\/25", + "version":97, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.96.128", + "prefixLen":25, + "network":"192.171.96.128\/25", + "version":96, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.97.0", + "prefixLen":25, + "network":"192.171.97.0\/25", + "version":95, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.97.128", + "prefixLen":25, + "network":"192.171.97.128\/25", + "version":94, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.98.0", + "prefixLen":25, + "network":"192.171.98.0\/25", + "version":93, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.98.128", + "prefixLen":25, + "network":"192.171.98.128\/25", + "version":92, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.99.0", + "prefixLen":25, + "network":"192.171.99.0\/25", + "version":91, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.99.128", + "prefixLen":25, + "network":"192.171.99.128\/25", + "version":90, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.112.0", + "prefixLen":25, + "network":"192.171.112.0\/25", + "version":89, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.112.128", + "prefixLen":25, + "network":"192.171.112.128\/25", + "version":88, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.113.0", + "prefixLen":25, + "network":"192.171.113.0\/25", + "version":87, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.113.128", + "prefixLen":25, + "network":"192.171.113.128\/25", + "version":86, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.114.0", + "prefixLen":25, + "network":"192.171.114.0\/25", + "version":85, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.114.128", + "prefixLen":25, + "network":"192.171.114.128\/25", + "version":84, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.115.0", + "prefixLen":25, + "network":"192.171.115.0\/25", + "version":83, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.115.128", + "prefixLen":25, + "network":"192.171.115.128\/25", + "version":82, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.128.0", + "prefixLen":25, + "network":"192.171.128.0\/25", + "version":81, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.128.128", + "prefixLen":25, + "network":"192.171.128.128\/25", + "version":80, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.129.0", + "prefixLen":25, + "network":"192.171.129.0\/25", + "version":79, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.129.128", + "prefixLen":25, + "network":"192.171.129.128\/25", + "version":78, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.130.0", + "prefixLen":25, + "network":"192.171.130.0\/25", + "version":77, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.130.128", + "prefixLen":25, + "network":"192.171.130.128\/25", + "version":76, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.131.0", + "prefixLen":25, + "network":"192.171.131.0\/25", + "version":75, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.131.128", + "prefixLen":25, + "network":"192.171.131.128\/25", + "version":74, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.144.0", + "prefixLen":25, + "network":"192.171.144.0\/25", + "version":73, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.144.128", + "prefixLen":25, + "network":"192.171.144.128\/25", + "version":72, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.145.0", + "prefixLen":25, + "network":"192.171.145.0\/25", + "version":71, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.145.128", + "prefixLen":25, + "network":"192.171.145.128\/25", + "version":70, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.146.0", + "prefixLen":25, + "network":"192.171.146.0\/25", + "version":69, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.146.128", + "prefixLen":25, + "network":"192.171.146.128\/25", + "version":68, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.147.0", + "prefixLen":25, + "network":"192.171.147.0\/25", + "version":67, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.147.128", + "prefixLen":25, + "network":"192.171.147.128\/25", + "version":66, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.160.0", + "prefixLen":25, + "network":"192.171.160.0\/25", + "version":65, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.160.128", + "prefixLen":25, + "network":"192.171.160.128\/25", + "version":64, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.161.0", + "prefixLen":25, + "network":"192.171.161.0\/25", + "version":63, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.161.128", + "prefixLen":25, + "network":"192.171.161.128\/25", + "version":62, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.162.0", + "prefixLen":25, + "network":"192.171.162.0\/25", + "version":61, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.162.128", + "prefixLen":25, + "network":"192.171.162.128\/25", + "version":60, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.163.0", + "prefixLen":25, + "network":"192.171.163.0\/25", + "version":59, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.163.128", + "prefixLen":25, + "network":"192.171.163.128\/25", + "version":58, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.176.0", + "prefixLen":25, + "network":"192.171.176.0\/25", + "version":57, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.176.128", + "prefixLen":25, + "network":"192.171.176.128\/25", + "version":56, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.177.0", + "prefixLen":25, + "network":"192.171.177.0\/25", + "version":55, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.177.128", + "prefixLen":25, + "network":"192.171.177.128\/25", + "version":54, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.178.0", + "prefixLen":25, + "network":"192.171.178.0\/25", + "version":53, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.178.128", + "prefixLen":25, + "network":"192.171.178.128\/25", + "version":52, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.179.0", + "prefixLen":25, + "network":"192.171.179.0\/25", + "version":51, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.179.128", + "prefixLen":25, + "network":"192.171.179.128\/25", + "version":50, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.192.0", + "prefixLen":25, + "network":"192.171.192.0\/25", + "version":49, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.192.128", + "prefixLen":25, + "network":"192.171.192.128\/25", + "version":48, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.193.0", + "prefixLen":25, + "network":"192.171.193.0\/25", + "version":47, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.193.128", + "prefixLen":25, + "network":"192.171.193.128\/25", + "version":46, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.194.0", + "prefixLen":25, + "network":"192.171.194.0\/25", + "version":45, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.194.128", + "prefixLen":25, + "network":"192.171.194.128\/25", + "version":44, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.195.0", + "prefixLen":25, + "network":"192.171.195.0\/25", + "version":43, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.195.128", + "prefixLen":25, + "network":"192.171.195.128\/25", + "version":42, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.208.0", + "prefixLen":25, + "network":"192.171.208.0\/25", + "version":41, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.208.128", + "prefixLen":25, + "network":"192.171.208.128\/25", + "version":40, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.209.0", + "prefixLen":25, + "network":"192.171.209.0\/25", + "version":39, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.209.128", + "prefixLen":25, + "network":"192.171.209.128\/25", + "version":38, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.210.0", + "prefixLen":25, + "network":"192.171.210.0\/25", + "version":37, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.210.128", + "prefixLen":25, + "network":"192.171.210.128\/25", + "version":36, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.211.0", + "prefixLen":25, + "network":"192.171.211.0\/25", + "version":35, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.211.128", + "prefixLen":25, + "network":"192.171.211.128\/25", + "version":34, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.224.0", + "prefixLen":25, + "network":"192.171.224.0\/25", + "version":33, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.224.128", + "prefixLen":25, + "network":"192.171.224.128\/25", + "version":32, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.225.0", + "prefixLen":25, + "network":"192.171.225.0\/25", + "version":31, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.225.128", + "prefixLen":25, + "network":"192.171.225.128\/25", + "version":30, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.226.0", + "prefixLen":25, + "network":"192.171.226.0\/25", + "version":29, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.226.128", + "prefixLen":25, + "network":"192.171.226.128\/25", + "version":28, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.227.0", + "prefixLen":25, + "network":"192.171.227.0\/25", + "version":27, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.227.128", + "prefixLen":25, + "network":"192.171.227.128\/25", + "version":26, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.240.0", + "prefixLen":25, + "network":"192.171.240.0\/25", + "version":25, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.240.128", + "prefixLen":25, + "network":"192.171.240.128\/25", + "version":24, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.241.0", + "prefixLen":25, + "network":"192.171.241.0\/25", + "version":23, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.241.128", + "prefixLen":25, + "network":"192.171.241.128\/25", + "version":22, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.242.0", + "prefixLen":25, + "network":"192.171.242.0\/25", + "version":21, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.242.128", + "prefixLen":25, + "network":"192.171.242.128\/25", + "version":20, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.243.0", + "prefixLen":25, + "network":"192.171.243.0\/25", + "version":19, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.171.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.171.243.128", + "prefixLen":25, + "network":"192.171.243.128\/25", + "version":18, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64603 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.0.0", + "prefixLen":25, + "network":"192.172.0.0\/25", + "version":145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.0.128", + "prefixLen":25, + "network":"192.172.0.128\/25", + "version":272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.1.0", + "prefixLen":25, + "network":"192.172.1.0\/25", + "version":271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.1.128", + "prefixLen":25, + "network":"192.172.1.128\/25", + "version":270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.2.0", + "prefixLen":25, + "network":"192.172.2.0\/25", + "version":269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.2.128", + "prefixLen":25, + "network":"192.172.2.128\/25", + "version":268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.3.0", + "prefixLen":25, + "network":"192.172.3.0\/25", + "version":267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.3.128", + "prefixLen":25, + "network":"192.172.3.128\/25", + "version":266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.16.0", + "prefixLen":25, + "network":"192.172.16.0\/25", + "version":265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.16.128", + "prefixLen":25, + "network":"192.172.16.128\/25", + "version":264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.17.0", + "prefixLen":25, + "network":"192.172.17.0\/25", + "version":263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.17.128", + "prefixLen":25, + "network":"192.172.17.128\/25", + "version":262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.18.0", + "prefixLen":25, + "network":"192.172.18.0\/25", + "version":261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.18.128", + "prefixLen":25, + "network":"192.172.18.128\/25", + "version":260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.19.0", + "prefixLen":25, + "network":"192.172.19.0\/25", + "version":259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.19.128", + "prefixLen":25, + "network":"192.172.19.128\/25", + "version":258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.32.0", + "prefixLen":25, + "network":"192.172.32.0\/25", + "version":257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.32.128", + "prefixLen":25, + "network":"192.172.32.128\/25", + "version":256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.33.0", + "prefixLen":25, + "network":"192.172.33.0\/25", + "version":255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.33.128", + "prefixLen":25, + "network":"192.172.33.128\/25", + "version":254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.34.0", + "prefixLen":25, + "network":"192.172.34.0\/25", + "version":253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.34.128", + "prefixLen":25, + "network":"192.172.34.128\/25", + "version":252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.35.0", + "prefixLen":25, + "network":"192.172.35.0\/25", + "version":251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.35.128", + "prefixLen":25, + "network":"192.172.35.128\/25", + "version":250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.48.0", + "prefixLen":25, + "network":"192.172.48.0\/25", + "version":249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.48.128", + "prefixLen":25, + "network":"192.172.48.128\/25", + "version":248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.49.0", + "prefixLen":25, + "network":"192.172.49.0\/25", + "version":247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.49.128", + "prefixLen":25, + "network":"192.172.49.128\/25", + "version":246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.50.0", + "prefixLen":25, + "network":"192.172.50.0\/25", + "version":245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.50.128", + "prefixLen":25, + "network":"192.172.50.128\/25", + "version":244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.51.0", + "prefixLen":25, + "network":"192.172.51.0\/25", + "version":243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.51.128", + "prefixLen":25, + "network":"192.172.51.128\/25", + "version":242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.64.0", + "prefixLen":25, + "network":"192.172.64.0\/25", + "version":241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.64.128", + "prefixLen":25, + "network":"192.172.64.128\/25", + "version":240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.65.0", + "prefixLen":25, + "network":"192.172.65.0\/25", + "version":239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.65.128", + "prefixLen":25, + "network":"192.172.65.128\/25", + "version":238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.66.0", + "prefixLen":25, + "network":"192.172.66.0\/25", + "version":237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.66.128", + "prefixLen":25, + "network":"192.172.66.128\/25", + "version":236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.67.0", + "prefixLen":25, + "network":"192.172.67.0\/25", + "version":235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.67.128", + "prefixLen":25, + "network":"192.172.67.128\/25", + "version":234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.80.0", + "prefixLen":25, + "network":"192.172.80.0\/25", + "version":233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.80.128", + "prefixLen":25, + "network":"192.172.80.128\/25", + "version":232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.81.0", + "prefixLen":25, + "network":"192.172.81.0\/25", + "version":231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.81.128", + "prefixLen":25, + "network":"192.172.81.128\/25", + "version":230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.82.0", + "prefixLen":25, + "network":"192.172.82.0\/25", + "version":229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.82.128", + "prefixLen":25, + "network":"192.172.82.128\/25", + "version":228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.83.0", + "prefixLen":25, + "network":"192.172.83.0\/25", + "version":227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.83.128", + "prefixLen":25, + "network":"192.172.83.128\/25", + "version":226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.96.0", + "prefixLen":25, + "network":"192.172.96.0\/25", + "version":225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.96.128", + "prefixLen":25, + "network":"192.172.96.128\/25", + "version":224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.97.0", + "prefixLen":25, + "network":"192.172.97.0\/25", + "version":223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.97.128", + "prefixLen":25, + "network":"192.172.97.128\/25", + "version":222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.98.0", + "prefixLen":25, + "network":"192.172.98.0\/25", + "version":221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.98.128", + "prefixLen":25, + "network":"192.172.98.128\/25", + "version":220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.99.0", + "prefixLen":25, + "network":"192.172.99.0\/25", + "version":219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.99.128", + "prefixLen":25, + "network":"192.172.99.128\/25", + "version":218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.112.0", + "prefixLen":25, + "network":"192.172.112.0\/25", + "version":217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.112.128", + "prefixLen":25, + "network":"192.172.112.128\/25", + "version":216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.113.0", + "prefixLen":25, + "network":"192.172.113.0\/25", + "version":215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.113.128", + "prefixLen":25, + "network":"192.172.113.128\/25", + "version":214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.114.0", + "prefixLen":25, + "network":"192.172.114.0\/25", + "version":213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.114.128", + "prefixLen":25, + "network":"192.172.114.128\/25", + "version":212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.115.0", + "prefixLen":25, + "network":"192.172.115.0\/25", + "version":211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.115.128", + "prefixLen":25, + "network":"192.172.115.128\/25", + "version":210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.128.0", + "prefixLen":25, + "network":"192.172.128.0\/25", + "version":209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.128.128", + "prefixLen":25, + "network":"192.172.128.128\/25", + "version":208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.129.0", + "prefixLen":25, + "network":"192.172.129.0\/25", + "version":207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.129.128", + "prefixLen":25, + "network":"192.172.129.128\/25", + "version":206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.130.0", + "prefixLen":25, + "network":"192.172.130.0\/25", + "version":205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.130.128", + "prefixLen":25, + "network":"192.172.130.128\/25", + "version":204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.131.0", + "prefixLen":25, + "network":"192.172.131.0\/25", + "version":203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.131.128", + "prefixLen":25, + "network":"192.172.131.128\/25", + "version":202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.144.0", + "prefixLen":25, + "network":"192.172.144.0\/25", + "version":201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.144.128", + "prefixLen":25, + "network":"192.172.144.128\/25", + "version":200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.145.0", + "prefixLen":25, + "network":"192.172.145.0\/25", + "version":199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.145.128", + "prefixLen":25, + "network":"192.172.145.128\/25", + "version":198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.146.0", + "prefixLen":25, + "network":"192.172.146.0\/25", + "version":197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.146.128", + "prefixLen":25, + "network":"192.172.146.128\/25", + "version":196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.147.0", + "prefixLen":25, + "network":"192.172.147.0\/25", + "version":195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.147.128", + "prefixLen":25, + "network":"192.172.147.128\/25", + "version":194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.160.0", + "prefixLen":25, + "network":"192.172.160.0\/25", + "version":193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.160.128", + "prefixLen":25, + "network":"192.172.160.128\/25", + "version":192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.161.0", + "prefixLen":25, + "network":"192.172.161.0\/25", + "version":191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.161.128", + "prefixLen":25, + "network":"192.172.161.128\/25", + "version":190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.162.0", + "prefixLen":25, + "network":"192.172.162.0\/25", + "version":189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.162.128", + "prefixLen":25, + "network":"192.172.162.128\/25", + "version":188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.163.0", + "prefixLen":25, + "network":"192.172.163.0\/25", + "version":187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.163.128", + "prefixLen":25, + "network":"192.172.163.128\/25", + "version":186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.176.0", + "prefixLen":25, + "network":"192.172.176.0\/25", + "version":185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.176.128", + "prefixLen":25, + "network":"192.172.176.128\/25", + "version":184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.177.0", + "prefixLen":25, + "network":"192.172.177.0\/25", + "version":183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.177.128", + "prefixLen":25, + "network":"192.172.177.128\/25", + "version":182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.178.0", + "prefixLen":25, + "network":"192.172.178.0\/25", + "version":181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.178.128", + "prefixLen":25, + "network":"192.172.178.128\/25", + "version":180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.179.0", + "prefixLen":25, + "network":"192.172.179.0\/25", + "version":179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.179.128", + "prefixLen":25, + "network":"192.172.179.128\/25", + "version":178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.192.0", + "prefixLen":25, + "network":"192.172.192.0\/25", + "version":177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.192.128", + "prefixLen":25, + "network":"192.172.192.128\/25", + "version":176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.193.0", + "prefixLen":25, + "network":"192.172.193.0\/25", + "version":175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.193.128", + "prefixLen":25, + "network":"192.172.193.128\/25", + "version":174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.194.0", + "prefixLen":25, + "network":"192.172.194.0\/25", + "version":173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.194.128", + "prefixLen":25, + "network":"192.172.194.128\/25", + "version":172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.195.0", + "prefixLen":25, + "network":"192.172.195.0\/25", + "version":171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.195.128", + "prefixLen":25, + "network":"192.172.195.128\/25", + "version":170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.208.0", + "prefixLen":25, + "network":"192.172.208.0\/25", + "version":169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.208.128", + "prefixLen":25, + "network":"192.172.208.128\/25", + "version":168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.209.0", + "prefixLen":25, + "network":"192.172.209.0\/25", + "version":167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.209.128", + "prefixLen":25, + "network":"192.172.209.128\/25", + "version":166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.210.0", + "prefixLen":25, + "network":"192.172.210.0\/25", + "version":165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.210.128", + "prefixLen":25, + "network":"192.172.210.128\/25", + "version":164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.211.0", + "prefixLen":25, + "network":"192.172.211.0\/25", + "version":163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.211.128", + "prefixLen":25, + "network":"192.172.211.128\/25", + "version":162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.224.0", + "prefixLen":25, + "network":"192.172.224.0\/25", + "version":161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.224.128", + "prefixLen":25, + "network":"192.172.224.128\/25", + "version":160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.225.0", + "prefixLen":25, + "network":"192.172.225.0\/25", + "version":159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.225.128", + "prefixLen":25, + "network":"192.172.225.128\/25", + "version":158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.226.0", + "prefixLen":25, + "network":"192.172.226.0\/25", + "version":157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.226.128", + "prefixLen":25, + "network":"192.172.226.128\/25", + "version":156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.227.0", + "prefixLen":25, + "network":"192.172.227.0\/25", + "version":155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.227.128", + "prefixLen":25, + "network":"192.172.227.128\/25", + "version":154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.240.0", + "prefixLen":25, + "network":"192.172.240.0\/25", + "version":153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.240.128", + "prefixLen":25, + "network":"192.172.240.128\/25", + "version":152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.241.0", + "prefixLen":25, + "network":"192.172.241.0\/25", + "version":151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.241.128", + "prefixLen":25, + "network":"192.172.241.128\/25", + "version":150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.242.0", + "prefixLen":25, + "network":"192.172.242.0\/25", + "version":149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.242.128", + "prefixLen":25, + "network":"192.172.242.128\/25", + "version":148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.243.0", + "prefixLen":25, + "network":"192.172.243.0\/25", + "version":147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.172.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.172.243.128", + "prefixLen":25, + "network":"192.172.243.128\/25", + "version":146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64604 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.0.0", + "prefixLen":25, + "network":"192.173.0.0\/25", + "version":273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.0.128", + "prefixLen":25, + "network":"192.173.0.128\/25", + "version":400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.1.0", + "prefixLen":25, + "network":"192.173.1.0\/25", + "version":399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.1.128", + "prefixLen":25, + "network":"192.173.1.128\/25", + "version":398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.2.0", + "prefixLen":25, + "network":"192.173.2.0\/25", + "version":397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.2.128", + "prefixLen":25, + "network":"192.173.2.128\/25", + "version":396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.3.0", + "prefixLen":25, + "network":"192.173.3.0\/25", + "version":395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.3.128", + "prefixLen":25, + "network":"192.173.3.128\/25", + "version":394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.16.0", + "prefixLen":25, + "network":"192.173.16.0\/25", + "version":393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.16.128", + "prefixLen":25, + "network":"192.173.16.128\/25", + "version":392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.17.0", + "prefixLen":25, + "network":"192.173.17.0\/25", + "version":391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.17.128", + "prefixLen":25, + "network":"192.173.17.128\/25", + "version":390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.18.0", + "prefixLen":25, + "network":"192.173.18.0\/25", + "version":389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.18.128", + "prefixLen":25, + "network":"192.173.18.128\/25", + "version":388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.19.0", + "prefixLen":25, + "network":"192.173.19.0\/25", + "version":387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.19.128", + "prefixLen":25, + "network":"192.173.19.128\/25", + "version":386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.32.0", + "prefixLen":25, + "network":"192.173.32.0\/25", + "version":385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.32.128", + "prefixLen":25, + "network":"192.173.32.128\/25", + "version":384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.33.0", + "prefixLen":25, + "network":"192.173.33.0\/25", + "version":383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.33.128", + "prefixLen":25, + "network":"192.173.33.128\/25", + "version":382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.34.0", + "prefixLen":25, + "network":"192.173.34.0\/25", + "version":381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.34.128", + "prefixLen":25, + "network":"192.173.34.128\/25", + "version":380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.35.0", + "prefixLen":25, + "network":"192.173.35.0\/25", + "version":379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.35.128", + "prefixLen":25, + "network":"192.173.35.128\/25", + "version":378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.48.0", + "prefixLen":25, + "network":"192.173.48.0\/25", + "version":377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.48.128", + "prefixLen":25, + "network":"192.173.48.128\/25", + "version":376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.49.0", + "prefixLen":25, + "network":"192.173.49.0\/25", + "version":375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.49.128", + "prefixLen":25, + "network":"192.173.49.128\/25", + "version":374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.50.0", + "prefixLen":25, + "network":"192.173.50.0\/25", + "version":373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.50.128", + "prefixLen":25, + "network":"192.173.50.128\/25", + "version":372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.51.0", + "prefixLen":25, + "network":"192.173.51.0\/25", + "version":371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.51.128", + "prefixLen":25, + "network":"192.173.51.128\/25", + "version":370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.64.0", + "prefixLen":25, + "network":"192.173.64.0\/25", + "version":369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.64.128", + "prefixLen":25, + "network":"192.173.64.128\/25", + "version":368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.65.0", + "prefixLen":25, + "network":"192.173.65.0\/25", + "version":367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.65.128", + "prefixLen":25, + "network":"192.173.65.128\/25", + "version":366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.66.0", + "prefixLen":25, + "network":"192.173.66.0\/25", + "version":365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.66.128", + "prefixLen":25, + "network":"192.173.66.128\/25", + "version":364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.67.0", + "prefixLen":25, + "network":"192.173.67.0\/25", + "version":363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.67.128", + "prefixLen":25, + "network":"192.173.67.128\/25", + "version":362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.80.0", + "prefixLen":25, + "network":"192.173.80.0\/25", + "version":361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.80.128", + "prefixLen":25, + "network":"192.173.80.128\/25", + "version":360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.81.0", + "prefixLen":25, + "network":"192.173.81.0\/25", + "version":359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.81.128", + "prefixLen":25, + "network":"192.173.81.128\/25", + "version":358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.82.0", + "prefixLen":25, + "network":"192.173.82.0\/25", + "version":357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.82.128", + "prefixLen":25, + "network":"192.173.82.128\/25", + "version":356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.83.0", + "prefixLen":25, + "network":"192.173.83.0\/25", + "version":355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.83.128", + "prefixLen":25, + "network":"192.173.83.128\/25", + "version":354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.96.0", + "prefixLen":25, + "network":"192.173.96.0\/25", + "version":353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.96.128", + "prefixLen":25, + "network":"192.173.96.128\/25", + "version":352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.97.0", + "prefixLen":25, + "network":"192.173.97.0\/25", + "version":351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.97.128", + "prefixLen":25, + "network":"192.173.97.128\/25", + "version":350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.98.0", + "prefixLen":25, + "network":"192.173.98.0\/25", + "version":349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.98.128", + "prefixLen":25, + "network":"192.173.98.128\/25", + "version":348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.99.0", + "prefixLen":25, + "network":"192.173.99.0\/25", + "version":347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.99.128", + "prefixLen":25, + "network":"192.173.99.128\/25", + "version":346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.112.0", + "prefixLen":25, + "network":"192.173.112.0\/25", + "version":345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.112.128", + "prefixLen":25, + "network":"192.173.112.128\/25", + "version":344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.113.0", + "prefixLen":25, + "network":"192.173.113.0\/25", + "version":343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.113.128", + "prefixLen":25, + "network":"192.173.113.128\/25", + "version":342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.114.0", + "prefixLen":25, + "network":"192.173.114.0\/25", + "version":341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.114.128", + "prefixLen":25, + "network":"192.173.114.128\/25", + "version":340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.115.0", + "prefixLen":25, + "network":"192.173.115.0\/25", + "version":339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.115.128", + "prefixLen":25, + "network":"192.173.115.128\/25", + "version":338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.128.0", + "prefixLen":25, + "network":"192.173.128.0\/25", + "version":337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.128.128", + "prefixLen":25, + "network":"192.173.128.128\/25", + "version":336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.129.0", + "prefixLen":25, + "network":"192.173.129.0\/25", + "version":335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.129.128", + "prefixLen":25, + "network":"192.173.129.128\/25", + "version":334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.130.0", + "prefixLen":25, + "network":"192.173.130.0\/25", + "version":333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.130.128", + "prefixLen":25, + "network":"192.173.130.128\/25", + "version":332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.131.0", + "prefixLen":25, + "network":"192.173.131.0\/25", + "version":331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.131.128", + "prefixLen":25, + "network":"192.173.131.128\/25", + "version":330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.144.0", + "prefixLen":25, + "network":"192.173.144.0\/25", + "version":329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.144.128", + "prefixLen":25, + "network":"192.173.144.128\/25", + "version":328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.145.0", + "prefixLen":25, + "network":"192.173.145.0\/25", + "version":327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.145.128", + "prefixLen":25, + "network":"192.173.145.128\/25", + "version":326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.146.0", + "prefixLen":25, + "network":"192.173.146.0\/25", + "version":325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.146.128", + "prefixLen":25, + "network":"192.173.146.128\/25", + "version":324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.147.0", + "prefixLen":25, + "network":"192.173.147.0\/25", + "version":323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.147.128", + "prefixLen":25, + "network":"192.173.147.128\/25", + "version":322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.160.0", + "prefixLen":25, + "network":"192.173.160.0\/25", + "version":321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.160.128", + "prefixLen":25, + "network":"192.173.160.128\/25", + "version":320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.161.0", + "prefixLen":25, + "network":"192.173.161.0\/25", + "version":319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.161.128", + "prefixLen":25, + "network":"192.173.161.128\/25", + "version":318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.162.0", + "prefixLen":25, + "network":"192.173.162.0\/25", + "version":317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.162.128", + "prefixLen":25, + "network":"192.173.162.128\/25", + "version":316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.163.0", + "prefixLen":25, + "network":"192.173.163.0\/25", + "version":315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.163.128", + "prefixLen":25, + "network":"192.173.163.128\/25", + "version":314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.176.0", + "prefixLen":25, + "network":"192.173.176.0\/25", + "version":313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.176.128", + "prefixLen":25, + "network":"192.173.176.128\/25", + "version":312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.177.0", + "prefixLen":25, + "network":"192.173.177.0\/25", + "version":311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.177.128", + "prefixLen":25, + "network":"192.173.177.128\/25", + "version":310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.178.0", + "prefixLen":25, + "network":"192.173.178.0\/25", + "version":309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.178.128", + "prefixLen":25, + "network":"192.173.178.128\/25", + "version":308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.179.0", + "prefixLen":25, + "network":"192.173.179.0\/25", + "version":307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.179.128", + "prefixLen":25, + "network":"192.173.179.128\/25", + "version":306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.192.0", + "prefixLen":25, + "network":"192.173.192.0\/25", + "version":305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.192.128", + "prefixLen":25, + "network":"192.173.192.128\/25", + "version":304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.193.0", + "prefixLen":25, + "network":"192.173.193.0\/25", + "version":303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.193.128", + "prefixLen":25, + "network":"192.173.193.128\/25", + "version":302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.194.0", + "prefixLen":25, + "network":"192.173.194.0\/25", + "version":301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.194.128", + "prefixLen":25, + "network":"192.173.194.128\/25", + "version":300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.195.0", + "prefixLen":25, + "network":"192.173.195.0\/25", + "version":299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.195.128", + "prefixLen":25, + "network":"192.173.195.128\/25", + "version":298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.208.0", + "prefixLen":25, + "network":"192.173.208.0\/25", + "version":297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.208.128", + "prefixLen":25, + "network":"192.173.208.128\/25", + "version":296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.209.0", + "prefixLen":25, + "network":"192.173.209.0\/25", + "version":295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.209.128", + "prefixLen":25, + "network":"192.173.209.128\/25", + "version":294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.210.0", + "prefixLen":25, + "network":"192.173.210.0\/25", + "version":293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.210.128", + "prefixLen":25, + "network":"192.173.210.128\/25", + "version":292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.211.0", + "prefixLen":25, + "network":"192.173.211.0\/25", + "version":291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.211.128", + "prefixLen":25, + "network":"192.173.211.128\/25", + "version":290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.224.0", + "prefixLen":25, + "network":"192.173.224.0\/25", + "version":289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.224.128", + "prefixLen":25, + "network":"192.173.224.128\/25", + "version":288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.225.0", + "prefixLen":25, + "network":"192.173.225.0\/25", + "version":287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.225.128", + "prefixLen":25, + "network":"192.173.225.128\/25", + "version":286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.226.0", + "prefixLen":25, + "network":"192.173.226.0\/25", + "version":285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.226.128", + "prefixLen":25, + "network":"192.173.226.128\/25", + "version":284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.227.0", + "prefixLen":25, + "network":"192.173.227.0\/25", + "version":283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.227.128", + "prefixLen":25, + "network":"192.173.227.128\/25", + "version":282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.240.0", + "prefixLen":25, + "network":"192.173.240.0\/25", + "version":281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.240.128", + "prefixLen":25, + "network":"192.173.240.128\/25", + "version":280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.241.0", + "prefixLen":25, + "network":"192.173.241.0\/25", + "version":279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.241.128", + "prefixLen":25, + "network":"192.173.241.128\/25", + "version":278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.242.0", + "prefixLen":25, + "network":"192.173.242.0\/25", + "version":277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.242.128", + "prefixLen":25, + "network":"192.173.242.128\/25", + "version":276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.243.0", + "prefixLen":25, + "network":"192.173.243.0\/25", + "version":275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.173.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.173.243.128", + "prefixLen":25, + "network":"192.173.243.128\/25", + "version":274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64605 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.0.0", + "prefixLen":25, + "network":"192.174.0.0\/25", + "version":401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.0.128", + "prefixLen":25, + "network":"192.174.0.128\/25", + "version":528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.1.0", + "prefixLen":25, + "network":"192.174.1.0\/25", + "version":527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.1.128", + "prefixLen":25, + "network":"192.174.1.128\/25", + "version":526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.2.0", + "prefixLen":25, + "network":"192.174.2.0\/25", + "version":525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.2.128", + "prefixLen":25, + "network":"192.174.2.128\/25", + "version":524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.3.0", + "prefixLen":25, + "network":"192.174.3.0\/25", + "version":523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.3.128", + "prefixLen":25, + "network":"192.174.3.128\/25", + "version":522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.16.0", + "prefixLen":25, + "network":"192.174.16.0\/25", + "version":521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.16.128", + "prefixLen":25, + "network":"192.174.16.128\/25", + "version":520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.17.0", + "prefixLen":25, + "network":"192.174.17.0\/25", + "version":519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.17.128", + "prefixLen":25, + "network":"192.174.17.128\/25", + "version":518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.18.0", + "prefixLen":25, + "network":"192.174.18.0\/25", + "version":517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.18.128", + "prefixLen":25, + "network":"192.174.18.128\/25", + "version":516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.19.0", + "prefixLen":25, + "network":"192.174.19.0\/25", + "version":515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.19.128", + "prefixLen":25, + "network":"192.174.19.128\/25", + "version":514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.32.0", + "prefixLen":25, + "network":"192.174.32.0\/25", + "version":513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.32.128", + "prefixLen":25, + "network":"192.174.32.128\/25", + "version":512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.33.0", + "prefixLen":25, + "network":"192.174.33.0\/25", + "version":511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.33.128", + "prefixLen":25, + "network":"192.174.33.128\/25", + "version":510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.34.0", + "prefixLen":25, + "network":"192.174.34.0\/25", + "version":509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.34.128", + "prefixLen":25, + "network":"192.174.34.128\/25", + "version":508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.35.0", + "prefixLen":25, + "network":"192.174.35.0\/25", + "version":507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.35.128", + "prefixLen":25, + "network":"192.174.35.128\/25", + "version":506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.48.0", + "prefixLen":25, + "network":"192.174.48.0\/25", + "version":505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.48.128", + "prefixLen":25, + "network":"192.174.48.128\/25", + "version":504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.49.0", + "prefixLen":25, + "network":"192.174.49.0\/25", + "version":503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.49.128", + "prefixLen":25, + "network":"192.174.49.128\/25", + "version":502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.50.0", + "prefixLen":25, + "network":"192.174.50.0\/25", + "version":501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.50.128", + "prefixLen":25, + "network":"192.174.50.128\/25", + "version":500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.51.0", + "prefixLen":25, + "network":"192.174.51.0\/25", + "version":499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.51.128", + "prefixLen":25, + "network":"192.174.51.128\/25", + "version":498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.64.0", + "prefixLen":25, + "network":"192.174.64.0\/25", + "version":497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.64.128", + "prefixLen":25, + "network":"192.174.64.128\/25", + "version":496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.65.0", + "prefixLen":25, + "network":"192.174.65.0\/25", + "version":495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.65.128", + "prefixLen":25, + "network":"192.174.65.128\/25", + "version":494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.66.0", + "prefixLen":25, + "network":"192.174.66.0\/25", + "version":493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.66.128", + "prefixLen":25, + "network":"192.174.66.128\/25", + "version":492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.67.0", + "prefixLen":25, + "network":"192.174.67.0\/25", + "version":491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.67.128", + "prefixLen":25, + "network":"192.174.67.128\/25", + "version":490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.80.0", + "prefixLen":25, + "network":"192.174.80.0\/25", + "version":489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.80.128", + "prefixLen":25, + "network":"192.174.80.128\/25", + "version":488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.81.0", + "prefixLen":25, + "network":"192.174.81.0\/25", + "version":487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.81.128", + "prefixLen":25, + "network":"192.174.81.128\/25", + "version":486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.82.0", + "prefixLen":25, + "network":"192.174.82.0\/25", + "version":485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.82.128", + "prefixLen":25, + "network":"192.174.82.128\/25", + "version":484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.83.0", + "prefixLen":25, + "network":"192.174.83.0\/25", + "version":483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.83.128", + "prefixLen":25, + "network":"192.174.83.128\/25", + "version":482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.96.0", + "prefixLen":25, + "network":"192.174.96.0\/25", + "version":481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.96.128", + "prefixLen":25, + "network":"192.174.96.128\/25", + "version":480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.97.0", + "prefixLen":25, + "network":"192.174.97.0\/25", + "version":479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.97.128", + "prefixLen":25, + "network":"192.174.97.128\/25", + "version":478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.98.0", + "prefixLen":25, + "network":"192.174.98.0\/25", + "version":477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.98.128", + "prefixLen":25, + "network":"192.174.98.128\/25", + "version":476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.99.0", + "prefixLen":25, + "network":"192.174.99.0\/25", + "version":475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.99.128", + "prefixLen":25, + "network":"192.174.99.128\/25", + "version":474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.112.0", + "prefixLen":25, + "network":"192.174.112.0\/25", + "version":473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.112.128", + "prefixLen":25, + "network":"192.174.112.128\/25", + "version":472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.113.0", + "prefixLen":25, + "network":"192.174.113.0\/25", + "version":471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.113.128", + "prefixLen":25, + "network":"192.174.113.128\/25", + "version":470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.114.0", + "prefixLen":25, + "network":"192.174.114.0\/25", + "version":469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.114.128", + "prefixLen":25, + "network":"192.174.114.128\/25", + "version":468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.115.0", + "prefixLen":25, + "network":"192.174.115.0\/25", + "version":467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.115.128", + "prefixLen":25, + "network":"192.174.115.128\/25", + "version":466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.128.0", + "prefixLen":25, + "network":"192.174.128.0\/25", + "version":465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.128.128", + "prefixLen":25, + "network":"192.174.128.128\/25", + "version":464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.129.0", + "prefixLen":25, + "network":"192.174.129.0\/25", + "version":463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.129.128", + "prefixLen":25, + "network":"192.174.129.128\/25", + "version":462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.130.0", + "prefixLen":25, + "network":"192.174.130.0\/25", + "version":461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.130.128", + "prefixLen":25, + "network":"192.174.130.128\/25", + "version":460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.131.0", + "prefixLen":25, + "network":"192.174.131.0\/25", + "version":459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.131.128", + "prefixLen":25, + "network":"192.174.131.128\/25", + "version":458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.144.0", + "prefixLen":25, + "network":"192.174.144.0\/25", + "version":457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.144.128", + "prefixLen":25, + "network":"192.174.144.128\/25", + "version":456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.145.0", + "prefixLen":25, + "network":"192.174.145.0\/25", + "version":455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.145.128", + "prefixLen":25, + "network":"192.174.145.128\/25", + "version":454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.146.0", + "prefixLen":25, + "network":"192.174.146.0\/25", + "version":453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.146.128", + "prefixLen":25, + "network":"192.174.146.128\/25", + "version":452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.147.0", + "prefixLen":25, + "network":"192.174.147.0\/25", + "version":451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.147.128", + "prefixLen":25, + "network":"192.174.147.128\/25", + "version":450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.160.0", + "prefixLen":25, + "network":"192.174.160.0\/25", + "version":449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.160.128", + "prefixLen":25, + "network":"192.174.160.128\/25", + "version":448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.161.0", + "prefixLen":25, + "network":"192.174.161.0\/25", + "version":447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.161.128", + "prefixLen":25, + "network":"192.174.161.128\/25", + "version":446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.162.0", + "prefixLen":25, + "network":"192.174.162.0\/25", + "version":445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.162.128", + "prefixLen":25, + "network":"192.174.162.128\/25", + "version":444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.163.0", + "prefixLen":25, + "network":"192.174.163.0\/25", + "version":443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.163.128", + "prefixLen":25, + "network":"192.174.163.128\/25", + "version":442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.176.0", + "prefixLen":25, + "network":"192.174.176.0\/25", + "version":441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.176.128", + "prefixLen":25, + "network":"192.174.176.128\/25", + "version":440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.177.0", + "prefixLen":25, + "network":"192.174.177.0\/25", + "version":439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.177.128", + "prefixLen":25, + "network":"192.174.177.128\/25", + "version":438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.178.0", + "prefixLen":25, + "network":"192.174.178.0\/25", + "version":437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.178.128", + "prefixLen":25, + "network":"192.174.178.128\/25", + "version":436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.179.0", + "prefixLen":25, + "network":"192.174.179.0\/25", + "version":435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.179.128", + "prefixLen":25, + "network":"192.174.179.128\/25", + "version":434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.192.0", + "prefixLen":25, + "network":"192.174.192.0\/25", + "version":433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.192.128", + "prefixLen":25, + "network":"192.174.192.128\/25", + "version":432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.193.0", + "prefixLen":25, + "network":"192.174.193.0\/25", + "version":431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.193.128", + "prefixLen":25, + "network":"192.174.193.128\/25", + "version":430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.194.0", + "prefixLen":25, + "network":"192.174.194.0\/25", + "version":429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.194.128", + "prefixLen":25, + "network":"192.174.194.128\/25", + "version":428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.195.0", + "prefixLen":25, + "network":"192.174.195.0\/25", + "version":427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.195.128", + "prefixLen":25, + "network":"192.174.195.128\/25", + "version":426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.208.0", + "prefixLen":25, + "network":"192.174.208.0\/25", + "version":425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.208.128", + "prefixLen":25, + "network":"192.174.208.128\/25", + "version":424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.209.0", + "prefixLen":25, + "network":"192.174.209.0\/25", + "version":423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.209.128", + "prefixLen":25, + "network":"192.174.209.128\/25", + "version":422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.210.0", + "prefixLen":25, + "network":"192.174.210.0\/25", + "version":421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.210.128", + "prefixLen":25, + "network":"192.174.210.128\/25", + "version":420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.211.0", + "prefixLen":25, + "network":"192.174.211.0\/25", + "version":419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.211.128", + "prefixLen":25, + "network":"192.174.211.128\/25", + "version":418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.224.0", + "prefixLen":25, + "network":"192.174.224.0\/25", + "version":417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.224.128", + "prefixLen":25, + "network":"192.174.224.128\/25", + "version":416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.225.0", + "prefixLen":25, + "network":"192.174.225.0\/25", + "version":415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.225.128", + "prefixLen":25, + "network":"192.174.225.128\/25", + "version":414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.226.0", + "prefixLen":25, + "network":"192.174.226.0\/25", + "version":413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.226.128", + "prefixLen":25, + "network":"192.174.226.128\/25", + "version":412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.227.0", + "prefixLen":25, + "network":"192.174.227.0\/25", + "version":411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.227.128", + "prefixLen":25, + "network":"192.174.227.128\/25", + "version":410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.240.0", + "prefixLen":25, + "network":"192.174.240.0\/25", + "version":409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.240.128", + "prefixLen":25, + "network":"192.174.240.128\/25", + "version":408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.241.0", + "prefixLen":25, + "network":"192.174.241.0\/25", + "version":407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.241.128", + "prefixLen":25, + "network":"192.174.241.128\/25", + "version":406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.242.0", + "prefixLen":25, + "network":"192.174.242.0\/25", + "version":405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.242.128", + "prefixLen":25, + "network":"192.174.242.128\/25", + "version":404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.243.0", + "prefixLen":25, + "network":"192.174.243.0\/25", + "version":403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.174.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.174.243.128", + "prefixLen":25, + "network":"192.174.243.128\/25", + "version":402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64606 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.0.0", + "prefixLen":25, + "network":"192.175.0.0\/25", + "version":529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.0.128", + "prefixLen":25, + "network":"192.175.0.128\/25", + "version":656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.1.0", + "prefixLen":25, + "network":"192.175.1.0\/25", + "version":655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.1.128", + "prefixLen":25, + "network":"192.175.1.128\/25", + "version":654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.2.0", + "prefixLen":25, + "network":"192.175.2.0\/25", + "version":653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.2.128", + "prefixLen":25, + "network":"192.175.2.128\/25", + "version":652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.3.0", + "prefixLen":25, + "network":"192.175.3.0\/25", + "version":651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.3.128", + "prefixLen":25, + "network":"192.175.3.128\/25", + "version":650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.16.0", + "prefixLen":25, + "network":"192.175.16.0\/25", + "version":649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.16.128", + "prefixLen":25, + "network":"192.175.16.128\/25", + "version":648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.17.0", + "prefixLen":25, + "network":"192.175.17.0\/25", + "version":647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.17.128", + "prefixLen":25, + "network":"192.175.17.128\/25", + "version":646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.18.0", + "prefixLen":25, + "network":"192.175.18.0\/25", + "version":645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.18.128", + "prefixLen":25, + "network":"192.175.18.128\/25", + "version":644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.19.0", + "prefixLen":25, + "network":"192.175.19.0\/25", + "version":643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.19.128", + "prefixLen":25, + "network":"192.175.19.128\/25", + "version":642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.32.0", + "prefixLen":25, + "network":"192.175.32.0\/25", + "version":641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.32.128", + "prefixLen":25, + "network":"192.175.32.128\/25", + "version":640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.33.0", + "prefixLen":25, + "network":"192.175.33.0\/25", + "version":639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.33.128", + "prefixLen":25, + "network":"192.175.33.128\/25", + "version":638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.34.0", + "prefixLen":25, + "network":"192.175.34.0\/25", + "version":637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.34.128", + "prefixLen":25, + "network":"192.175.34.128\/25", + "version":636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.35.0", + "prefixLen":25, + "network":"192.175.35.0\/25", + "version":635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.35.128", + "prefixLen":25, + "network":"192.175.35.128\/25", + "version":634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.48.0", + "prefixLen":25, + "network":"192.175.48.0\/25", + "version":633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.48.128", + "prefixLen":25, + "network":"192.175.48.128\/25", + "version":632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.49.0", + "prefixLen":25, + "network":"192.175.49.0\/25", + "version":631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.49.128", + "prefixLen":25, + "network":"192.175.49.128\/25", + "version":630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.50.0", + "prefixLen":25, + "network":"192.175.50.0\/25", + "version":629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.50.128", + "prefixLen":25, + "network":"192.175.50.128\/25", + "version":628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.51.0", + "prefixLen":25, + "network":"192.175.51.0\/25", + "version":627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.51.128", + "prefixLen":25, + "network":"192.175.51.128\/25", + "version":626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.64.0", + "prefixLen":25, + "network":"192.175.64.0\/25", + "version":625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.64.128", + "prefixLen":25, + "network":"192.175.64.128\/25", + "version":624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.65.0", + "prefixLen":25, + "network":"192.175.65.0\/25", + "version":623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.65.128", + "prefixLen":25, + "network":"192.175.65.128\/25", + "version":622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.66.0", + "prefixLen":25, + "network":"192.175.66.0\/25", + "version":621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.66.128", + "prefixLen":25, + "network":"192.175.66.128\/25", + "version":620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.67.0", + "prefixLen":25, + "network":"192.175.67.0\/25", + "version":619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.67.128", + "prefixLen":25, + "network":"192.175.67.128\/25", + "version":618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.80.0", + "prefixLen":25, + "network":"192.175.80.0\/25", + "version":617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.80.128", + "prefixLen":25, + "network":"192.175.80.128\/25", + "version":616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.81.0", + "prefixLen":25, + "network":"192.175.81.0\/25", + "version":615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.81.128", + "prefixLen":25, + "network":"192.175.81.128\/25", + "version":614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.82.0", + "prefixLen":25, + "network":"192.175.82.0\/25", + "version":613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.82.128", + "prefixLen":25, + "network":"192.175.82.128\/25", + "version":612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.83.0", + "prefixLen":25, + "network":"192.175.83.0\/25", + "version":611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.83.128", + "prefixLen":25, + "network":"192.175.83.128\/25", + "version":610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.96.0", + "prefixLen":25, + "network":"192.175.96.0\/25", + "version":609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.96.128", + "prefixLen":25, + "network":"192.175.96.128\/25", + "version":608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.97.0", + "prefixLen":25, + "network":"192.175.97.0\/25", + "version":607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.97.128", + "prefixLen":25, + "network":"192.175.97.128\/25", + "version":606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.98.0", + "prefixLen":25, + "network":"192.175.98.0\/25", + "version":605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.98.128", + "prefixLen":25, + "network":"192.175.98.128\/25", + "version":604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.99.0", + "prefixLen":25, + "network":"192.175.99.0\/25", + "version":603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.99.128", + "prefixLen":25, + "network":"192.175.99.128\/25", + "version":602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.112.0", + "prefixLen":25, + "network":"192.175.112.0\/25", + "version":601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.112.128", + "prefixLen":25, + "network":"192.175.112.128\/25", + "version":600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.113.0", + "prefixLen":25, + "network":"192.175.113.0\/25", + "version":599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.113.128", + "prefixLen":25, + "network":"192.175.113.128\/25", + "version":598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.114.0", + "prefixLen":25, + "network":"192.175.114.0\/25", + "version":597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.114.128", + "prefixLen":25, + "network":"192.175.114.128\/25", + "version":596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.115.0", + "prefixLen":25, + "network":"192.175.115.0\/25", + "version":595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.115.128", + "prefixLen":25, + "network":"192.175.115.128\/25", + "version":594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.128.0", + "prefixLen":25, + "network":"192.175.128.0\/25", + "version":593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.128.128", + "prefixLen":25, + "network":"192.175.128.128\/25", + "version":592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.129.0", + "prefixLen":25, + "network":"192.175.129.0\/25", + "version":591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.129.128", + "prefixLen":25, + "network":"192.175.129.128\/25", + "version":590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.130.0", + "prefixLen":25, + "network":"192.175.130.0\/25", + "version":589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.130.128", + "prefixLen":25, + "network":"192.175.130.128\/25", + "version":588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.131.0", + "prefixLen":25, + "network":"192.175.131.0\/25", + "version":587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.131.128", + "prefixLen":25, + "network":"192.175.131.128\/25", + "version":586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.144.0", + "prefixLen":25, + "network":"192.175.144.0\/25", + "version":585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.144.128", + "prefixLen":25, + "network":"192.175.144.128\/25", + "version":584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.145.0", + "prefixLen":25, + "network":"192.175.145.0\/25", + "version":583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.145.128", + "prefixLen":25, + "network":"192.175.145.128\/25", + "version":582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.146.0", + "prefixLen":25, + "network":"192.175.146.0\/25", + "version":581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.146.128", + "prefixLen":25, + "network":"192.175.146.128\/25", + "version":580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.147.0", + "prefixLen":25, + "network":"192.175.147.0\/25", + "version":579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.147.128", + "prefixLen":25, + "network":"192.175.147.128\/25", + "version":578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.160.0", + "prefixLen":25, + "network":"192.175.160.0\/25", + "version":577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.160.128", + "prefixLen":25, + "network":"192.175.160.128\/25", + "version":576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.161.0", + "prefixLen":25, + "network":"192.175.161.0\/25", + "version":575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.161.128", + "prefixLen":25, + "network":"192.175.161.128\/25", + "version":574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.162.0", + "prefixLen":25, + "network":"192.175.162.0\/25", + "version":573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.162.128", + "prefixLen":25, + "network":"192.175.162.128\/25", + "version":572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.163.0", + "prefixLen":25, + "network":"192.175.163.0\/25", + "version":571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.163.128", + "prefixLen":25, + "network":"192.175.163.128\/25", + "version":570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.176.0", + "prefixLen":25, + "network":"192.175.176.0\/25", + "version":569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.176.128", + "prefixLen":25, + "network":"192.175.176.128\/25", + "version":568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.177.0", + "prefixLen":25, + "network":"192.175.177.0\/25", + "version":567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.177.128", + "prefixLen":25, + "network":"192.175.177.128\/25", + "version":566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.178.0", + "prefixLen":25, + "network":"192.175.178.0\/25", + "version":565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.178.128", + "prefixLen":25, + "network":"192.175.178.128\/25", + "version":564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.179.0", + "prefixLen":25, + "network":"192.175.179.0\/25", + "version":563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.179.128", + "prefixLen":25, + "network":"192.175.179.128\/25", + "version":562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.192.0", + "prefixLen":25, + "network":"192.175.192.0\/25", + "version":561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.192.128", + "prefixLen":25, + "network":"192.175.192.128\/25", + "version":560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.193.0", + "prefixLen":25, + "network":"192.175.193.0\/25", + "version":559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.193.128", + "prefixLen":25, + "network":"192.175.193.128\/25", + "version":558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.194.0", + "prefixLen":25, + "network":"192.175.194.0\/25", + "version":557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.194.128", + "prefixLen":25, + "network":"192.175.194.128\/25", + "version":556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.195.0", + "prefixLen":25, + "network":"192.175.195.0\/25", + "version":555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.195.128", + "prefixLen":25, + "network":"192.175.195.128\/25", + "version":554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.208.0", + "prefixLen":25, + "network":"192.175.208.0\/25", + "version":553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.208.128", + "prefixLen":25, + "network":"192.175.208.128\/25", + "version":552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.209.0", + "prefixLen":25, + "network":"192.175.209.0\/25", + "version":551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.209.128", + "prefixLen":25, + "network":"192.175.209.128\/25", + "version":550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.210.0", + "prefixLen":25, + "network":"192.175.210.0\/25", + "version":549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.210.128", + "prefixLen":25, + "network":"192.175.210.128\/25", + "version":548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.211.0", + "prefixLen":25, + "network":"192.175.211.0\/25", + "version":547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.211.128", + "prefixLen":25, + "network":"192.175.211.128\/25", + "version":546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.224.0", + "prefixLen":25, + "network":"192.175.224.0\/25", + "version":545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.224.128", + "prefixLen":25, + "network":"192.175.224.128\/25", + "version":544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.225.0", + "prefixLen":25, + "network":"192.175.225.0\/25", + "version":543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.225.128", + "prefixLen":25, + "network":"192.175.225.128\/25", + "version":542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.226.0", + "prefixLen":25, + "network":"192.175.226.0\/25", + "version":541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.226.128", + "prefixLen":25, + "network":"192.175.226.128\/25", + "version":540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.227.0", + "prefixLen":25, + "network":"192.175.227.0\/25", + "version":539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.227.128", + "prefixLen":25, + "network":"192.175.227.128\/25", + "version":538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.240.0", + "prefixLen":25, + "network":"192.175.240.0\/25", + "version":537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.240.128", + "prefixLen":25, + "network":"192.175.240.128\/25", + "version":536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.241.0", + "prefixLen":25, + "network":"192.175.241.0\/25", + "version":535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.241.128", + "prefixLen":25, + "network":"192.175.241.128\/25", + "version":534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.242.0", + "prefixLen":25, + "network":"192.175.242.0\/25", + "version":533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.242.128", + "prefixLen":25, + "network":"192.175.242.128\/25", + "version":532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.243.0", + "prefixLen":25, + "network":"192.175.243.0\/25", + "version":531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.175.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.175.243.128", + "prefixLen":25, + "network":"192.175.243.128\/25", + "version":530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64607 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.0.0", + "prefixLen":25, + "network":"192.176.0.0\/25", + "version":657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.0.128", + "prefixLen":25, + "network":"192.176.0.128\/25", + "version":784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.1.0", + "prefixLen":25, + "network":"192.176.1.0\/25", + "version":783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.1.128", + "prefixLen":25, + "network":"192.176.1.128\/25", + "version":782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.2.0", + "prefixLen":25, + "network":"192.176.2.0\/25", + "version":781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.2.128", + "prefixLen":25, + "network":"192.176.2.128\/25", + "version":780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.3.0", + "prefixLen":25, + "network":"192.176.3.0\/25", + "version":779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.3.128", + "prefixLen":25, + "network":"192.176.3.128\/25", + "version":778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.16.0", + "prefixLen":25, + "network":"192.176.16.0\/25", + "version":777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.16.128", + "prefixLen":25, + "network":"192.176.16.128\/25", + "version":776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.17.0", + "prefixLen":25, + "network":"192.176.17.0\/25", + "version":775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.17.128", + "prefixLen":25, + "network":"192.176.17.128\/25", + "version":774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.18.0", + "prefixLen":25, + "network":"192.176.18.0\/25", + "version":773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.18.128", + "prefixLen":25, + "network":"192.176.18.128\/25", + "version":772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.19.0", + "prefixLen":25, + "network":"192.176.19.0\/25", + "version":771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.19.128", + "prefixLen":25, + "network":"192.176.19.128\/25", + "version":770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.32.0", + "prefixLen":25, + "network":"192.176.32.0\/25", + "version":769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.32.128", + "prefixLen":25, + "network":"192.176.32.128\/25", + "version":768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.33.0", + "prefixLen":25, + "network":"192.176.33.0\/25", + "version":767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.33.128", + "prefixLen":25, + "network":"192.176.33.128\/25", + "version":766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.34.0", + "prefixLen":25, + "network":"192.176.34.0\/25", + "version":765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.34.128", + "prefixLen":25, + "network":"192.176.34.128\/25", + "version":764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.35.0", + "prefixLen":25, + "network":"192.176.35.0\/25", + "version":763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.35.128", + "prefixLen":25, + "network":"192.176.35.128\/25", + "version":762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.48.0", + "prefixLen":25, + "network":"192.176.48.0\/25", + "version":761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.48.128", + "prefixLen":25, + "network":"192.176.48.128\/25", + "version":760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.49.0", + "prefixLen":25, + "network":"192.176.49.0\/25", + "version":759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.49.128", + "prefixLen":25, + "network":"192.176.49.128\/25", + "version":758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.50.0", + "prefixLen":25, + "network":"192.176.50.0\/25", + "version":757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.50.128", + "prefixLen":25, + "network":"192.176.50.128\/25", + "version":756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.51.0", + "prefixLen":25, + "network":"192.176.51.0\/25", + "version":755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.51.128", + "prefixLen":25, + "network":"192.176.51.128\/25", + "version":754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.64.0", + "prefixLen":25, + "network":"192.176.64.0\/25", + "version":753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.64.128", + "prefixLen":25, + "network":"192.176.64.128\/25", + "version":752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.65.0", + "prefixLen":25, + "network":"192.176.65.0\/25", + "version":751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.65.128", + "prefixLen":25, + "network":"192.176.65.128\/25", + "version":750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.66.0", + "prefixLen":25, + "network":"192.176.66.0\/25", + "version":749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.66.128", + "prefixLen":25, + "network":"192.176.66.128\/25", + "version":748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.67.0", + "prefixLen":25, + "network":"192.176.67.0\/25", + "version":747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.67.128", + "prefixLen":25, + "network":"192.176.67.128\/25", + "version":746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.80.0", + "prefixLen":25, + "network":"192.176.80.0\/25", + "version":745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.80.128", + "prefixLen":25, + "network":"192.176.80.128\/25", + "version":744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.81.0", + "prefixLen":25, + "network":"192.176.81.0\/25", + "version":743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.81.128", + "prefixLen":25, + "network":"192.176.81.128\/25", + "version":742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.82.0", + "prefixLen":25, + "network":"192.176.82.0\/25", + "version":741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.82.128", + "prefixLen":25, + "network":"192.176.82.128\/25", + "version":740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.83.0", + "prefixLen":25, + "network":"192.176.83.0\/25", + "version":739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.83.128", + "prefixLen":25, + "network":"192.176.83.128\/25", + "version":738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.96.0", + "prefixLen":25, + "network":"192.176.96.0\/25", + "version":737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.96.128", + "prefixLen":25, + "network":"192.176.96.128\/25", + "version":736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.97.0", + "prefixLen":25, + "network":"192.176.97.0\/25", + "version":735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.97.128", + "prefixLen":25, + "network":"192.176.97.128\/25", + "version":734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.98.0", + "prefixLen":25, + "network":"192.176.98.0\/25", + "version":733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.98.128", + "prefixLen":25, + "network":"192.176.98.128\/25", + "version":732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.99.0", + "prefixLen":25, + "network":"192.176.99.0\/25", + "version":731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.99.128", + "prefixLen":25, + "network":"192.176.99.128\/25", + "version":730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.112.0", + "prefixLen":25, + "network":"192.176.112.0\/25", + "version":729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.112.128", + "prefixLen":25, + "network":"192.176.112.128\/25", + "version":728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.113.0", + "prefixLen":25, + "network":"192.176.113.0\/25", + "version":727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.113.128", + "prefixLen":25, + "network":"192.176.113.128\/25", + "version":726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.114.0", + "prefixLen":25, + "network":"192.176.114.0\/25", + "version":725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.114.128", + "prefixLen":25, + "network":"192.176.114.128\/25", + "version":724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.115.0", + "prefixLen":25, + "network":"192.176.115.0\/25", + "version":723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.115.128", + "prefixLen":25, + "network":"192.176.115.128\/25", + "version":722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.128.0", + "prefixLen":25, + "network":"192.176.128.0\/25", + "version":721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.128.128", + "prefixLen":25, + "network":"192.176.128.128\/25", + "version":720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.129.0", + "prefixLen":25, + "network":"192.176.129.0\/25", + "version":719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.129.128", + "prefixLen":25, + "network":"192.176.129.128\/25", + "version":718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.130.0", + "prefixLen":25, + "network":"192.176.130.0\/25", + "version":717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.130.128", + "prefixLen":25, + "network":"192.176.130.128\/25", + "version":716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.131.0", + "prefixLen":25, + "network":"192.176.131.0\/25", + "version":715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.131.128", + "prefixLen":25, + "network":"192.176.131.128\/25", + "version":714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.144.0", + "prefixLen":25, + "network":"192.176.144.0\/25", + "version":713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.144.128", + "prefixLen":25, + "network":"192.176.144.128\/25", + "version":712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.145.0", + "prefixLen":25, + "network":"192.176.145.0\/25", + "version":711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.145.128", + "prefixLen":25, + "network":"192.176.145.128\/25", + "version":710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.146.0", + "prefixLen":25, + "network":"192.176.146.0\/25", + "version":709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.146.128", + "prefixLen":25, + "network":"192.176.146.128\/25", + "version":708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.147.0", + "prefixLen":25, + "network":"192.176.147.0\/25", + "version":707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.147.128", + "prefixLen":25, + "network":"192.176.147.128\/25", + "version":706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.160.0", + "prefixLen":25, + "network":"192.176.160.0\/25", + "version":705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.160.128", + "prefixLen":25, + "network":"192.176.160.128\/25", + "version":704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.161.0", + "prefixLen":25, + "network":"192.176.161.0\/25", + "version":703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.161.128", + "prefixLen":25, + "network":"192.176.161.128\/25", + "version":702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.162.0", + "prefixLen":25, + "network":"192.176.162.0\/25", + "version":701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.162.128", + "prefixLen":25, + "network":"192.176.162.128\/25", + "version":700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.163.0", + "prefixLen":25, + "network":"192.176.163.0\/25", + "version":699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.163.128", + "prefixLen":25, + "network":"192.176.163.128\/25", + "version":698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.176.0", + "prefixLen":25, + "network":"192.176.176.0\/25", + "version":697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.176.128", + "prefixLen":25, + "network":"192.176.176.128\/25", + "version":696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.177.0", + "prefixLen":25, + "network":"192.176.177.0\/25", + "version":695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.177.128", + "prefixLen":25, + "network":"192.176.177.128\/25", + "version":694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.178.0", + "prefixLen":25, + "network":"192.176.178.0\/25", + "version":693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.178.128", + "prefixLen":25, + "network":"192.176.178.128\/25", + "version":692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.179.0", + "prefixLen":25, + "network":"192.176.179.0\/25", + "version":691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.179.128", + "prefixLen":25, + "network":"192.176.179.128\/25", + "version":690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.192.0", + "prefixLen":25, + "network":"192.176.192.0\/25", + "version":689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.192.128", + "prefixLen":25, + "network":"192.176.192.128\/25", + "version":688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.193.0", + "prefixLen":25, + "network":"192.176.193.0\/25", + "version":687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.193.128", + "prefixLen":25, + "network":"192.176.193.128\/25", + "version":686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.194.0", + "prefixLen":25, + "network":"192.176.194.0\/25", + "version":685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.194.128", + "prefixLen":25, + "network":"192.176.194.128\/25", + "version":684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.195.0", + "prefixLen":25, + "network":"192.176.195.0\/25", + "version":683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.195.128", + "prefixLen":25, + "network":"192.176.195.128\/25", + "version":682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.208.0", + "prefixLen":25, + "network":"192.176.208.0\/25", + "version":681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.208.128", + "prefixLen":25, + "network":"192.176.208.128\/25", + "version":680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.209.0", + "prefixLen":25, + "network":"192.176.209.0\/25", + "version":679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.209.128", + "prefixLen":25, + "network":"192.176.209.128\/25", + "version":678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.210.0", + "prefixLen":25, + "network":"192.176.210.0\/25", + "version":677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.210.128", + "prefixLen":25, + "network":"192.176.210.128\/25", + "version":676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.211.0", + "prefixLen":25, + "network":"192.176.211.0\/25", + "version":675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.211.128", + "prefixLen":25, + "network":"192.176.211.128\/25", + "version":674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.224.0", + "prefixLen":25, + "network":"192.176.224.0\/25", + "version":673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.224.128", + "prefixLen":25, + "network":"192.176.224.128\/25", + "version":672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.225.0", + "prefixLen":25, + "network":"192.176.225.0\/25", + "version":671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.225.128", + "prefixLen":25, + "network":"192.176.225.128\/25", + "version":670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.226.0", + "prefixLen":25, + "network":"192.176.226.0\/25", + "version":669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.226.128", + "prefixLen":25, + "network":"192.176.226.128\/25", + "version":668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.227.0", + "prefixLen":25, + "network":"192.176.227.0\/25", + "version":667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.227.128", + "prefixLen":25, + "network":"192.176.227.128\/25", + "version":666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.240.0", + "prefixLen":25, + "network":"192.176.240.0\/25", + "version":665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.240.128", + "prefixLen":25, + "network":"192.176.240.128\/25", + "version":664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.241.0", + "prefixLen":25, + "network":"192.176.241.0\/25", + "version":663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.241.128", + "prefixLen":25, + "network":"192.176.241.128\/25", + "version":662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.242.0", + "prefixLen":25, + "network":"192.176.242.0\/25", + "version":661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.242.128", + "prefixLen":25, + "network":"192.176.242.128\/25", + "version":660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.243.0", + "prefixLen":25, + "network":"192.176.243.0\/25", + "version":659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.176.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.176.243.128", + "prefixLen":25, + "network":"192.176.243.128\/25", + "version":658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64608 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.0.0", + "prefixLen":25, + "network":"192.177.0.0\/25", + "version":785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.0.128", + "prefixLen":25, + "network":"192.177.0.128\/25", + "version":912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.1.0", + "prefixLen":25, + "network":"192.177.1.0\/25", + "version":911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.1.128", + "prefixLen":25, + "network":"192.177.1.128\/25", + "version":910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.2.0", + "prefixLen":25, + "network":"192.177.2.0\/25", + "version":909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.2.128", + "prefixLen":25, + "network":"192.177.2.128\/25", + "version":908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.3.0", + "prefixLen":25, + "network":"192.177.3.0\/25", + "version":907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.3.128", + "prefixLen":25, + "network":"192.177.3.128\/25", + "version":906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.16.0", + "prefixLen":25, + "network":"192.177.16.0\/25", + "version":905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.16.128", + "prefixLen":25, + "network":"192.177.16.128\/25", + "version":904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.17.0", + "prefixLen":25, + "network":"192.177.17.0\/25", + "version":903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.17.128", + "prefixLen":25, + "network":"192.177.17.128\/25", + "version":902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.18.0", + "prefixLen":25, + "network":"192.177.18.0\/25", + "version":901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.18.128", + "prefixLen":25, + "network":"192.177.18.128\/25", + "version":900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.19.0", + "prefixLen":25, + "network":"192.177.19.0\/25", + "version":899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.19.128", + "prefixLen":25, + "network":"192.177.19.128\/25", + "version":898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.32.0", + "prefixLen":25, + "network":"192.177.32.0\/25", + "version":897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.32.128", + "prefixLen":25, + "network":"192.177.32.128\/25", + "version":896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.33.0", + "prefixLen":25, + "network":"192.177.33.0\/25", + "version":895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.33.128", + "prefixLen":25, + "network":"192.177.33.128\/25", + "version":894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.34.0", + "prefixLen":25, + "network":"192.177.34.0\/25", + "version":893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.34.128", + "prefixLen":25, + "network":"192.177.34.128\/25", + "version":892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.35.0", + "prefixLen":25, + "network":"192.177.35.0\/25", + "version":891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.35.128", + "prefixLen":25, + "network":"192.177.35.128\/25", + "version":890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.48.0", + "prefixLen":25, + "network":"192.177.48.0\/25", + "version":889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.48.128", + "prefixLen":25, + "network":"192.177.48.128\/25", + "version":888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.49.0", + "prefixLen":25, + "network":"192.177.49.0\/25", + "version":887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.49.128", + "prefixLen":25, + "network":"192.177.49.128\/25", + "version":886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.50.0", + "prefixLen":25, + "network":"192.177.50.0\/25", + "version":885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.50.128", + "prefixLen":25, + "network":"192.177.50.128\/25", + "version":884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.51.0", + "prefixLen":25, + "network":"192.177.51.0\/25", + "version":883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.51.128", + "prefixLen":25, + "network":"192.177.51.128\/25", + "version":882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.64.0", + "prefixLen":25, + "network":"192.177.64.0\/25", + "version":881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.64.128", + "prefixLen":25, + "network":"192.177.64.128\/25", + "version":880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.65.0", + "prefixLen":25, + "network":"192.177.65.0\/25", + "version":879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.65.128", + "prefixLen":25, + "network":"192.177.65.128\/25", + "version":878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.66.0", + "prefixLen":25, + "network":"192.177.66.0\/25", + "version":877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.66.128", + "prefixLen":25, + "network":"192.177.66.128\/25", + "version":876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.67.0", + "prefixLen":25, + "network":"192.177.67.0\/25", + "version":875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.67.128", + "prefixLen":25, + "network":"192.177.67.128\/25", + "version":874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.80.0", + "prefixLen":25, + "network":"192.177.80.0\/25", + "version":873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.80.128", + "prefixLen":25, + "network":"192.177.80.128\/25", + "version":872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.81.0", + "prefixLen":25, + "network":"192.177.81.0\/25", + "version":871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.81.128", + "prefixLen":25, + "network":"192.177.81.128\/25", + "version":870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.82.0", + "prefixLen":25, + "network":"192.177.82.0\/25", + "version":869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.82.128", + "prefixLen":25, + "network":"192.177.82.128\/25", + "version":868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.83.0", + "prefixLen":25, + "network":"192.177.83.0\/25", + "version":867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.83.128", + "prefixLen":25, + "network":"192.177.83.128\/25", + "version":866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.96.0", + "prefixLen":25, + "network":"192.177.96.0\/25", + "version":865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.96.128", + "prefixLen":25, + "network":"192.177.96.128\/25", + "version":864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.97.0", + "prefixLen":25, + "network":"192.177.97.0\/25", + "version":863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.97.128", + "prefixLen":25, + "network":"192.177.97.128\/25", + "version":862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.98.0", + "prefixLen":25, + "network":"192.177.98.0\/25", + "version":861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.98.128", + "prefixLen":25, + "network":"192.177.98.128\/25", + "version":860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.99.0", + "prefixLen":25, + "network":"192.177.99.0\/25", + "version":859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.99.128", + "prefixLen":25, + "network":"192.177.99.128\/25", + "version":858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.112.0", + "prefixLen":25, + "network":"192.177.112.0\/25", + "version":857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.112.128", + "prefixLen":25, + "network":"192.177.112.128\/25", + "version":856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.113.0", + "prefixLen":25, + "network":"192.177.113.0\/25", + "version":855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.113.128", + "prefixLen":25, + "network":"192.177.113.128\/25", + "version":854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.114.0", + "prefixLen":25, + "network":"192.177.114.0\/25", + "version":853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.114.128", + "prefixLen":25, + "network":"192.177.114.128\/25", + "version":852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.115.0", + "prefixLen":25, + "network":"192.177.115.0\/25", + "version":851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.115.128", + "prefixLen":25, + "network":"192.177.115.128\/25", + "version":850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.128.0", + "prefixLen":25, + "network":"192.177.128.0\/25", + "version":849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.128.128", + "prefixLen":25, + "network":"192.177.128.128\/25", + "version":848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.129.0", + "prefixLen":25, + "network":"192.177.129.0\/25", + "version":847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.129.128", + "prefixLen":25, + "network":"192.177.129.128\/25", + "version":846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.130.0", + "prefixLen":25, + "network":"192.177.130.0\/25", + "version":845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.130.128", + "prefixLen":25, + "network":"192.177.130.128\/25", + "version":844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.131.0", + "prefixLen":25, + "network":"192.177.131.0\/25", + "version":843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.131.128", + "prefixLen":25, + "network":"192.177.131.128\/25", + "version":842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.144.0", + "prefixLen":25, + "network":"192.177.144.0\/25", + "version":841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.144.128", + "prefixLen":25, + "network":"192.177.144.128\/25", + "version":840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.145.0", + "prefixLen":25, + "network":"192.177.145.0\/25", + "version":839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.145.128", + "prefixLen":25, + "network":"192.177.145.128\/25", + "version":838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.146.0", + "prefixLen":25, + "network":"192.177.146.0\/25", + "version":837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.146.128", + "prefixLen":25, + "network":"192.177.146.128\/25", + "version":836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.147.0", + "prefixLen":25, + "network":"192.177.147.0\/25", + "version":835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.147.128", + "prefixLen":25, + "network":"192.177.147.128\/25", + "version":834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.160.0", + "prefixLen":25, + "network":"192.177.160.0\/25", + "version":833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.160.128", + "prefixLen":25, + "network":"192.177.160.128\/25", + "version":832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.161.0", + "prefixLen":25, + "network":"192.177.161.0\/25", + "version":831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.161.128", + "prefixLen":25, + "network":"192.177.161.128\/25", + "version":830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.162.0", + "prefixLen":25, + "network":"192.177.162.0\/25", + "version":829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.162.128", + "prefixLen":25, + "network":"192.177.162.128\/25", + "version":828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.163.0", + "prefixLen":25, + "network":"192.177.163.0\/25", + "version":827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.163.128", + "prefixLen":25, + "network":"192.177.163.128\/25", + "version":826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.176.0", + "prefixLen":25, + "network":"192.177.176.0\/25", + "version":825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.176.128", + "prefixLen":25, + "network":"192.177.176.128\/25", + "version":824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.177.0", + "prefixLen":25, + "network":"192.177.177.0\/25", + "version":823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.177.128", + "prefixLen":25, + "network":"192.177.177.128\/25", + "version":822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.178.0", + "prefixLen":25, + "network":"192.177.178.0\/25", + "version":821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.178.128", + "prefixLen":25, + "network":"192.177.178.128\/25", + "version":820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.179.0", + "prefixLen":25, + "network":"192.177.179.0\/25", + "version":819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.179.128", + "prefixLen":25, + "network":"192.177.179.128\/25", + "version":818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.192.0", + "prefixLen":25, + "network":"192.177.192.0\/25", + "version":817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.192.128", + "prefixLen":25, + "network":"192.177.192.128\/25", + "version":816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.193.0", + "prefixLen":25, + "network":"192.177.193.0\/25", + "version":815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.193.128", + "prefixLen":25, + "network":"192.177.193.128\/25", + "version":814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.194.0", + "prefixLen":25, + "network":"192.177.194.0\/25", + "version":813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.194.128", + "prefixLen":25, + "network":"192.177.194.128\/25", + "version":812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.195.0", + "prefixLen":25, + "network":"192.177.195.0\/25", + "version":811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.195.128", + "prefixLen":25, + "network":"192.177.195.128\/25", + "version":810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.208.0", + "prefixLen":25, + "network":"192.177.208.0\/25", + "version":809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.208.128", + "prefixLen":25, + "network":"192.177.208.128\/25", + "version":808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.209.0", + "prefixLen":25, + "network":"192.177.209.0\/25", + "version":807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.209.128", + "prefixLen":25, + "network":"192.177.209.128\/25", + "version":806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.210.0", + "prefixLen":25, + "network":"192.177.210.0\/25", + "version":805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.210.128", + "prefixLen":25, + "network":"192.177.210.128\/25", + "version":804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.211.0", + "prefixLen":25, + "network":"192.177.211.0\/25", + "version":803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.211.128", + "prefixLen":25, + "network":"192.177.211.128\/25", + "version":802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.224.0", + "prefixLen":25, + "network":"192.177.224.0\/25", + "version":801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.224.128", + "prefixLen":25, + "network":"192.177.224.128\/25", + "version":800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.225.0", + "prefixLen":25, + "network":"192.177.225.0\/25", + "version":799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.225.128", + "prefixLen":25, + "network":"192.177.225.128\/25", + "version":798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.226.0", + "prefixLen":25, + "network":"192.177.226.0\/25", + "version":797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.226.128", + "prefixLen":25, + "network":"192.177.226.128\/25", + "version":796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.227.0", + "prefixLen":25, + "network":"192.177.227.0\/25", + "version":795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.227.128", + "prefixLen":25, + "network":"192.177.227.128\/25", + "version":794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.240.0", + "prefixLen":25, + "network":"192.177.240.0\/25", + "version":793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.240.128", + "prefixLen":25, + "network":"192.177.240.128\/25", + "version":792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.241.0", + "prefixLen":25, + "network":"192.177.241.0\/25", + "version":791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.241.128", + "prefixLen":25, + "network":"192.177.241.128\/25", + "version":790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.242.0", + "prefixLen":25, + "network":"192.177.242.0\/25", + "version":789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.242.128", + "prefixLen":25, + "network":"192.177.242.128\/25", + "version":788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.243.0", + "prefixLen":25, + "network":"192.177.243.0\/25", + "version":787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.177.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.177.243.128", + "prefixLen":25, + "network":"192.177.243.128\/25", + "version":786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64609 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.0.0", + "prefixLen":25, + "network":"192.178.0.0\/25", + "version":913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.0.128", + "prefixLen":25, + "network":"192.178.0.128\/25", + "version":1040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.1.0", + "prefixLen":25, + "network":"192.178.1.0\/25", + "version":1039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.1.128", + "prefixLen":25, + "network":"192.178.1.128\/25", + "version":1038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.2.0", + "prefixLen":25, + "network":"192.178.2.0\/25", + "version":1037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.2.128", + "prefixLen":25, + "network":"192.178.2.128\/25", + "version":1036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.3.0", + "prefixLen":25, + "network":"192.178.3.0\/25", + "version":1035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.3.128", + "prefixLen":25, + "network":"192.178.3.128\/25", + "version":1034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.16.0", + "prefixLen":25, + "network":"192.178.16.0\/25", + "version":1033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.16.128", + "prefixLen":25, + "network":"192.178.16.128\/25", + "version":1032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.17.0", + "prefixLen":25, + "network":"192.178.17.0\/25", + "version":1031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.17.128", + "prefixLen":25, + "network":"192.178.17.128\/25", + "version":1030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.18.0", + "prefixLen":25, + "network":"192.178.18.0\/25", + "version":1029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.18.128", + "prefixLen":25, + "network":"192.178.18.128\/25", + "version":1028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.19.0", + "prefixLen":25, + "network":"192.178.19.0\/25", + "version":1027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.19.128", + "prefixLen":25, + "network":"192.178.19.128\/25", + "version":1026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.32.0", + "prefixLen":25, + "network":"192.178.32.0\/25", + "version":1025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.32.128", + "prefixLen":25, + "network":"192.178.32.128\/25", + "version":1024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.33.0", + "prefixLen":25, + "network":"192.178.33.0\/25", + "version":1023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.33.128", + "prefixLen":25, + "network":"192.178.33.128\/25", + "version":1022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.34.0", + "prefixLen":25, + "network":"192.178.34.0\/25", + "version":1021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.34.128", + "prefixLen":25, + "network":"192.178.34.128\/25", + "version":1020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.35.0", + "prefixLen":25, + "network":"192.178.35.0\/25", + "version":1019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.35.128", + "prefixLen":25, + "network":"192.178.35.128\/25", + "version":1018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.48.0", + "prefixLen":25, + "network":"192.178.48.0\/25", + "version":1017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.48.128", + "prefixLen":25, + "network":"192.178.48.128\/25", + "version":1016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.49.0", + "prefixLen":25, + "network":"192.178.49.0\/25", + "version":1015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.49.128", + "prefixLen":25, + "network":"192.178.49.128\/25", + "version":1014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.50.0", + "prefixLen":25, + "network":"192.178.50.0\/25", + "version":1013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.50.128", + "prefixLen":25, + "network":"192.178.50.128\/25", + "version":1012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.51.0", + "prefixLen":25, + "network":"192.178.51.0\/25", + "version":1011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.51.128", + "prefixLen":25, + "network":"192.178.51.128\/25", + "version":1010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.64.0", + "prefixLen":25, + "network":"192.178.64.0\/25", + "version":1009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.64.128", + "prefixLen":25, + "network":"192.178.64.128\/25", + "version":1008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.65.0", + "prefixLen":25, + "network":"192.178.65.0\/25", + "version":1007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.65.128", + "prefixLen":25, + "network":"192.178.65.128\/25", + "version":1006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.66.0", + "prefixLen":25, + "network":"192.178.66.0\/25", + "version":1005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.66.128", + "prefixLen":25, + "network":"192.178.66.128\/25", + "version":1004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.67.0", + "prefixLen":25, + "network":"192.178.67.0\/25", + "version":1003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.67.128", + "prefixLen":25, + "network":"192.178.67.128\/25", + "version":1002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.80.0", + "prefixLen":25, + "network":"192.178.80.0\/25", + "version":1001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.80.128", + "prefixLen":25, + "network":"192.178.80.128\/25", + "version":1000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.81.0", + "prefixLen":25, + "network":"192.178.81.0\/25", + "version":999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.81.128", + "prefixLen":25, + "network":"192.178.81.128\/25", + "version":998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.82.0", + "prefixLen":25, + "network":"192.178.82.0\/25", + "version":997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.82.128", + "prefixLen":25, + "network":"192.178.82.128\/25", + "version":996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.83.0", + "prefixLen":25, + "network":"192.178.83.0\/25", + "version":995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.83.128", + "prefixLen":25, + "network":"192.178.83.128\/25", + "version":994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.96.0", + "prefixLen":25, + "network":"192.178.96.0\/25", + "version":993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.96.128", + "prefixLen":25, + "network":"192.178.96.128\/25", + "version":992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.97.0", + "prefixLen":25, + "network":"192.178.97.0\/25", + "version":991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.97.128", + "prefixLen":25, + "network":"192.178.97.128\/25", + "version":990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.98.0", + "prefixLen":25, + "network":"192.178.98.0\/25", + "version":989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.98.128", + "prefixLen":25, + "network":"192.178.98.128\/25", + "version":988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.99.0", + "prefixLen":25, + "network":"192.178.99.0\/25", + "version":987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.99.128", + "prefixLen":25, + "network":"192.178.99.128\/25", + "version":986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.112.0", + "prefixLen":25, + "network":"192.178.112.0\/25", + "version":985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.112.128", + "prefixLen":25, + "network":"192.178.112.128\/25", + "version":984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.113.0", + "prefixLen":25, + "network":"192.178.113.0\/25", + "version":983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.113.128", + "prefixLen":25, + "network":"192.178.113.128\/25", + "version":982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.114.0", + "prefixLen":25, + "network":"192.178.114.0\/25", + "version":981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.114.128", + "prefixLen":25, + "network":"192.178.114.128\/25", + "version":980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.115.0", + "prefixLen":25, + "network":"192.178.115.0\/25", + "version":979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.115.128", + "prefixLen":25, + "network":"192.178.115.128\/25", + "version":978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.128.0", + "prefixLen":25, + "network":"192.178.128.0\/25", + "version":977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.128.128", + "prefixLen":25, + "network":"192.178.128.128\/25", + "version":976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.129.0", + "prefixLen":25, + "network":"192.178.129.0\/25", + "version":975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.129.128", + "prefixLen":25, + "network":"192.178.129.128\/25", + "version":974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.130.0", + "prefixLen":25, + "network":"192.178.130.0\/25", + "version":973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.130.128", + "prefixLen":25, + "network":"192.178.130.128\/25", + "version":972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.131.0", + "prefixLen":25, + "network":"192.178.131.0\/25", + "version":971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.131.128", + "prefixLen":25, + "network":"192.178.131.128\/25", + "version":970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.144.0", + "prefixLen":25, + "network":"192.178.144.0\/25", + "version":969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.144.128", + "prefixLen":25, + "network":"192.178.144.128\/25", + "version":968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.145.0", + "prefixLen":25, + "network":"192.178.145.0\/25", + "version":967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.145.128", + "prefixLen":25, + "network":"192.178.145.128\/25", + "version":966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.146.0", + "prefixLen":25, + "network":"192.178.146.0\/25", + "version":965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.146.128", + "prefixLen":25, + "network":"192.178.146.128\/25", + "version":964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.147.0", + "prefixLen":25, + "network":"192.178.147.0\/25", + "version":963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.147.128", + "prefixLen":25, + "network":"192.178.147.128\/25", + "version":962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.160.0", + "prefixLen":25, + "network":"192.178.160.0\/25", + "version":961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.160.128", + "prefixLen":25, + "network":"192.178.160.128\/25", + "version":960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.161.0", + "prefixLen":25, + "network":"192.178.161.0\/25", + "version":959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.161.128", + "prefixLen":25, + "network":"192.178.161.128\/25", + "version":958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.162.0", + "prefixLen":25, + "network":"192.178.162.0\/25", + "version":957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.162.128", + "prefixLen":25, + "network":"192.178.162.128\/25", + "version":956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.163.0", + "prefixLen":25, + "network":"192.178.163.0\/25", + "version":955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.163.128", + "prefixLen":25, + "network":"192.178.163.128\/25", + "version":954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.176.0", + "prefixLen":25, + "network":"192.178.176.0\/25", + "version":953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.176.128", + "prefixLen":25, + "network":"192.178.176.128\/25", + "version":952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.177.0", + "prefixLen":25, + "network":"192.178.177.0\/25", + "version":951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.177.128", + "prefixLen":25, + "network":"192.178.177.128\/25", + "version":950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.178.0", + "prefixLen":25, + "network":"192.178.178.0\/25", + "version":949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.178.128", + "prefixLen":25, + "network":"192.178.178.128\/25", + "version":948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.179.0", + "prefixLen":25, + "network":"192.178.179.0\/25", + "version":947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.179.128", + "prefixLen":25, + "network":"192.178.179.128\/25", + "version":946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.192.0", + "prefixLen":25, + "network":"192.178.192.0\/25", + "version":945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.192.128", + "prefixLen":25, + "network":"192.178.192.128\/25", + "version":944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.193.0", + "prefixLen":25, + "network":"192.178.193.0\/25", + "version":943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.193.128", + "prefixLen":25, + "network":"192.178.193.128\/25", + "version":942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.194.0", + "prefixLen":25, + "network":"192.178.194.0\/25", + "version":941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.194.128", + "prefixLen":25, + "network":"192.178.194.128\/25", + "version":940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.195.0", + "prefixLen":25, + "network":"192.178.195.0\/25", + "version":939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.195.128", + "prefixLen":25, + "network":"192.178.195.128\/25", + "version":938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.208.0", + "prefixLen":25, + "network":"192.178.208.0\/25", + "version":937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.208.128", + "prefixLen":25, + "network":"192.178.208.128\/25", + "version":936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.209.0", + "prefixLen":25, + "network":"192.178.209.0\/25", + "version":935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.209.128", + "prefixLen":25, + "network":"192.178.209.128\/25", + "version":934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.210.0", + "prefixLen":25, + "network":"192.178.210.0\/25", + "version":933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.210.128", + "prefixLen":25, + "network":"192.178.210.128\/25", + "version":932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.211.0", + "prefixLen":25, + "network":"192.178.211.0\/25", + "version":931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.211.128", + "prefixLen":25, + "network":"192.178.211.128\/25", + "version":930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.224.0", + "prefixLen":25, + "network":"192.178.224.0\/25", + "version":929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.224.128", + "prefixLen":25, + "network":"192.178.224.128\/25", + "version":928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.225.0", + "prefixLen":25, + "network":"192.178.225.0\/25", + "version":927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.225.128", + "prefixLen":25, + "network":"192.178.225.128\/25", + "version":926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.226.0", + "prefixLen":25, + "network":"192.178.226.0\/25", + "version":925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.226.128", + "prefixLen":25, + "network":"192.178.226.128\/25", + "version":924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.227.0", + "prefixLen":25, + "network":"192.178.227.0\/25", + "version":923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.227.128", + "prefixLen":25, + "network":"192.178.227.128\/25", + "version":922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.240.0", + "prefixLen":25, + "network":"192.178.240.0\/25", + "version":921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.240.128", + "prefixLen":25, + "network":"192.178.240.128\/25", + "version":920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.241.0", + "prefixLen":25, + "network":"192.178.241.0\/25", + "version":919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.241.128", + "prefixLen":25, + "network":"192.178.241.128\/25", + "version":918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.242.0", + "prefixLen":25, + "network":"192.178.242.0\/25", + "version":917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.242.128", + "prefixLen":25, + "network":"192.178.242.128\/25", + "version":916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.243.0", + "prefixLen":25, + "network":"192.178.243.0\/25", + "version":915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.178.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.178.243.128", + "prefixLen":25, + "network":"192.178.243.128\/25", + "version":914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64610 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.0.0", + "prefixLen":25, + "network":"192.179.0.0\/25", + "version":1041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.0.128", + "prefixLen":25, + "network":"192.179.0.128\/25", + "version":1168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.1.0", + "prefixLen":25, + "network":"192.179.1.0\/25", + "version":1167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.1.128", + "prefixLen":25, + "network":"192.179.1.128\/25", + "version":1166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.2.0", + "prefixLen":25, + "network":"192.179.2.0\/25", + "version":1165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.2.128", + "prefixLen":25, + "network":"192.179.2.128\/25", + "version":1164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.3.0", + "prefixLen":25, + "network":"192.179.3.0\/25", + "version":1163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.3.128", + "prefixLen":25, + "network":"192.179.3.128\/25", + "version":1162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.16.0", + "prefixLen":25, + "network":"192.179.16.0\/25", + "version":1161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.16.128", + "prefixLen":25, + "network":"192.179.16.128\/25", + "version":1160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.17.0", + "prefixLen":25, + "network":"192.179.17.0\/25", + "version":1159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.17.128", + "prefixLen":25, + "network":"192.179.17.128\/25", + "version":1158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.18.0", + "prefixLen":25, + "network":"192.179.18.0\/25", + "version":1157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.18.128", + "prefixLen":25, + "network":"192.179.18.128\/25", + "version":1156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.19.0", + "prefixLen":25, + "network":"192.179.19.0\/25", + "version":1155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.19.128", + "prefixLen":25, + "network":"192.179.19.128\/25", + "version":1154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.32.0", + "prefixLen":25, + "network":"192.179.32.0\/25", + "version":1153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.32.128", + "prefixLen":25, + "network":"192.179.32.128\/25", + "version":1152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.33.0", + "prefixLen":25, + "network":"192.179.33.0\/25", + "version":1151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.33.128", + "prefixLen":25, + "network":"192.179.33.128\/25", + "version":1150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.34.0", + "prefixLen":25, + "network":"192.179.34.0\/25", + "version":1149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.34.128", + "prefixLen":25, + "network":"192.179.34.128\/25", + "version":1148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.35.0", + "prefixLen":25, + "network":"192.179.35.0\/25", + "version":1147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.35.128", + "prefixLen":25, + "network":"192.179.35.128\/25", + "version":1146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.48.0", + "prefixLen":25, + "network":"192.179.48.0\/25", + "version":1145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.48.128", + "prefixLen":25, + "network":"192.179.48.128\/25", + "version":1144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.49.0", + "prefixLen":25, + "network":"192.179.49.0\/25", + "version":1143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.49.128", + "prefixLen":25, + "network":"192.179.49.128\/25", + "version":1142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.50.0", + "prefixLen":25, + "network":"192.179.50.0\/25", + "version":1141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.50.128", + "prefixLen":25, + "network":"192.179.50.128\/25", + "version":1140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.51.0", + "prefixLen":25, + "network":"192.179.51.0\/25", + "version":1139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.51.128", + "prefixLen":25, + "network":"192.179.51.128\/25", + "version":1138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.64.0", + "prefixLen":25, + "network":"192.179.64.0\/25", + "version":1137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.64.128", + "prefixLen":25, + "network":"192.179.64.128\/25", + "version":1136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.65.0", + "prefixLen":25, + "network":"192.179.65.0\/25", + "version":1135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.65.128", + "prefixLen":25, + "network":"192.179.65.128\/25", + "version":1134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.66.0", + "prefixLen":25, + "network":"192.179.66.0\/25", + "version":1133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.66.128", + "prefixLen":25, + "network":"192.179.66.128\/25", + "version":1132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.67.0", + "prefixLen":25, + "network":"192.179.67.0\/25", + "version":1131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.67.128", + "prefixLen":25, + "network":"192.179.67.128\/25", + "version":1130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.80.0", + "prefixLen":25, + "network":"192.179.80.0\/25", + "version":1129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.80.128", + "prefixLen":25, + "network":"192.179.80.128\/25", + "version":1128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.81.0", + "prefixLen":25, + "network":"192.179.81.0\/25", + "version":1127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.81.128", + "prefixLen":25, + "network":"192.179.81.128\/25", + "version":1126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.82.0", + "prefixLen":25, + "network":"192.179.82.0\/25", + "version":1125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.82.128", + "prefixLen":25, + "network":"192.179.82.128\/25", + "version":1124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.83.0", + "prefixLen":25, + "network":"192.179.83.0\/25", + "version":1123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.83.128", + "prefixLen":25, + "network":"192.179.83.128\/25", + "version":1122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.96.0", + "prefixLen":25, + "network":"192.179.96.0\/25", + "version":1121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.96.128", + "prefixLen":25, + "network":"192.179.96.128\/25", + "version":1120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.97.0", + "prefixLen":25, + "network":"192.179.97.0\/25", + "version":1119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.97.128", + "prefixLen":25, + "network":"192.179.97.128\/25", + "version":1118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.98.0", + "prefixLen":25, + "network":"192.179.98.0\/25", + "version":1117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.98.128", + "prefixLen":25, + "network":"192.179.98.128\/25", + "version":1116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.99.0", + "prefixLen":25, + "network":"192.179.99.0\/25", + "version":1115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.99.128", + "prefixLen":25, + "network":"192.179.99.128\/25", + "version":1114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.112.0", + "prefixLen":25, + "network":"192.179.112.0\/25", + "version":1113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.112.128", + "prefixLen":25, + "network":"192.179.112.128\/25", + "version":1112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.113.0", + "prefixLen":25, + "network":"192.179.113.0\/25", + "version":1111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.113.128", + "prefixLen":25, + "network":"192.179.113.128\/25", + "version":1110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.114.0", + "prefixLen":25, + "network":"192.179.114.0\/25", + "version":1109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.114.128", + "prefixLen":25, + "network":"192.179.114.128\/25", + "version":1108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.115.0", + "prefixLen":25, + "network":"192.179.115.0\/25", + "version":1107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.115.128", + "prefixLen":25, + "network":"192.179.115.128\/25", + "version":1106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.128.0", + "prefixLen":25, + "network":"192.179.128.0\/25", + "version":1105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.128.128", + "prefixLen":25, + "network":"192.179.128.128\/25", + "version":1104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.129.0", + "prefixLen":25, + "network":"192.179.129.0\/25", + "version":1103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.129.128", + "prefixLen":25, + "network":"192.179.129.128\/25", + "version":1102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.130.0", + "prefixLen":25, + "network":"192.179.130.0\/25", + "version":1101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.130.128", + "prefixLen":25, + "network":"192.179.130.128\/25", + "version":1100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.131.0", + "prefixLen":25, + "network":"192.179.131.0\/25", + "version":1099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.131.128", + "prefixLen":25, + "network":"192.179.131.128\/25", + "version":1098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.144.0", + "prefixLen":25, + "network":"192.179.144.0\/25", + "version":1097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.144.128", + "prefixLen":25, + "network":"192.179.144.128\/25", + "version":1096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.145.0", + "prefixLen":25, + "network":"192.179.145.0\/25", + "version":1095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.145.128", + "prefixLen":25, + "network":"192.179.145.128\/25", + "version":1094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.146.0", + "prefixLen":25, + "network":"192.179.146.0\/25", + "version":1093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.146.128", + "prefixLen":25, + "network":"192.179.146.128\/25", + "version":1092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.147.0", + "prefixLen":25, + "network":"192.179.147.0\/25", + "version":1091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.147.128", + "prefixLen":25, + "network":"192.179.147.128\/25", + "version":1090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.160.0", + "prefixLen":25, + "network":"192.179.160.0\/25", + "version":1089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.160.128", + "prefixLen":25, + "network":"192.179.160.128\/25", + "version":1088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.161.0", + "prefixLen":25, + "network":"192.179.161.0\/25", + "version":1087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.161.128", + "prefixLen":25, + "network":"192.179.161.128\/25", + "version":1086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.162.0", + "prefixLen":25, + "network":"192.179.162.0\/25", + "version":1085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.162.128", + "prefixLen":25, + "network":"192.179.162.128\/25", + "version":1084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.163.0", + "prefixLen":25, + "network":"192.179.163.0\/25", + "version":1083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.163.128", + "prefixLen":25, + "network":"192.179.163.128\/25", + "version":1082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.176.0", + "prefixLen":25, + "network":"192.179.176.0\/25", + "version":1081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.176.128", + "prefixLen":25, + "network":"192.179.176.128\/25", + "version":1080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.177.0", + "prefixLen":25, + "network":"192.179.177.0\/25", + "version":1079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.177.128", + "prefixLen":25, + "network":"192.179.177.128\/25", + "version":1078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.178.0", + "prefixLen":25, + "network":"192.179.178.0\/25", + "version":1077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.178.128", + "prefixLen":25, + "network":"192.179.178.128\/25", + "version":1076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.179.0", + "prefixLen":25, + "network":"192.179.179.0\/25", + "version":1075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.179.128", + "prefixLen":25, + "network":"192.179.179.128\/25", + "version":1074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.192.0", + "prefixLen":25, + "network":"192.179.192.0\/25", + "version":1073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.192.128", + "prefixLen":25, + "network":"192.179.192.128\/25", + "version":1072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.193.0", + "prefixLen":25, + "network":"192.179.193.0\/25", + "version":1071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.193.128", + "prefixLen":25, + "network":"192.179.193.128\/25", + "version":1070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.194.0", + "prefixLen":25, + "network":"192.179.194.0\/25", + "version":1069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.194.128", + "prefixLen":25, + "network":"192.179.194.128\/25", + "version":1068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.195.0", + "prefixLen":25, + "network":"192.179.195.0\/25", + "version":1067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.195.128", + "prefixLen":25, + "network":"192.179.195.128\/25", + "version":1066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.208.0", + "prefixLen":25, + "network":"192.179.208.0\/25", + "version":1065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.208.128", + "prefixLen":25, + "network":"192.179.208.128\/25", + "version":1064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.209.0", + "prefixLen":25, + "network":"192.179.209.0\/25", + "version":1063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.209.128", + "prefixLen":25, + "network":"192.179.209.128\/25", + "version":1062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.210.0", + "prefixLen":25, + "network":"192.179.210.0\/25", + "version":1061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.210.128", + "prefixLen":25, + "network":"192.179.210.128\/25", + "version":1060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.211.0", + "prefixLen":25, + "network":"192.179.211.0\/25", + "version":1059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.211.128", + "prefixLen":25, + "network":"192.179.211.128\/25", + "version":1058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.224.0", + "prefixLen":25, + "network":"192.179.224.0\/25", + "version":1057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.224.128", + "prefixLen":25, + "network":"192.179.224.128\/25", + "version":1056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.225.0", + "prefixLen":25, + "network":"192.179.225.0\/25", + "version":1055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.225.128", + "prefixLen":25, + "network":"192.179.225.128\/25", + "version":1054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.226.0", + "prefixLen":25, + "network":"192.179.226.0\/25", + "version":1053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.226.128", + "prefixLen":25, + "network":"192.179.226.128\/25", + "version":1052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.227.0", + "prefixLen":25, + "network":"192.179.227.0\/25", + "version":1051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.227.128", + "prefixLen":25, + "network":"192.179.227.128\/25", + "version":1050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.240.0", + "prefixLen":25, + "network":"192.179.240.0\/25", + "version":1049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.240.128", + "prefixLen":25, + "network":"192.179.240.128\/25", + "version":1048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.241.0", + "prefixLen":25, + "network":"192.179.241.0\/25", + "version":1047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.241.128", + "prefixLen":25, + "network":"192.179.241.128\/25", + "version":1046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.242.0", + "prefixLen":25, + "network":"192.179.242.0\/25", + "version":1045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.242.128", + "prefixLen":25, + "network":"192.179.242.128\/25", + "version":1044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.243.0", + "prefixLen":25, + "network":"192.179.243.0\/25", + "version":1043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.179.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.179.243.128", + "prefixLen":25, + "network":"192.179.243.128\/25", + "version":1042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64611 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.0.0", + "prefixLen":25, + "network":"192.180.0.0\/25", + "version":1169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.0.128", + "prefixLen":25, + "network":"192.180.0.128\/25", + "version":1296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.1.0", + "prefixLen":25, + "network":"192.180.1.0\/25", + "version":1295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.1.128", + "prefixLen":25, + "network":"192.180.1.128\/25", + "version":1294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.2.0", + "prefixLen":25, + "network":"192.180.2.0\/25", + "version":1293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.2.128", + "prefixLen":25, + "network":"192.180.2.128\/25", + "version":1292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.3.0", + "prefixLen":25, + "network":"192.180.3.0\/25", + "version":1291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.3.128", + "prefixLen":25, + "network":"192.180.3.128\/25", + "version":1290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.16.0", + "prefixLen":25, + "network":"192.180.16.0\/25", + "version":1289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.16.128", + "prefixLen":25, + "network":"192.180.16.128\/25", + "version":1288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.17.0", + "prefixLen":25, + "network":"192.180.17.0\/25", + "version":1287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.17.128", + "prefixLen":25, + "network":"192.180.17.128\/25", + "version":1286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.18.0", + "prefixLen":25, + "network":"192.180.18.0\/25", + "version":1285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.18.128", + "prefixLen":25, + "network":"192.180.18.128\/25", + "version":1284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.19.0", + "prefixLen":25, + "network":"192.180.19.0\/25", + "version":1283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.19.128", + "prefixLen":25, + "network":"192.180.19.128\/25", + "version":1282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.32.0", + "prefixLen":25, + "network":"192.180.32.0\/25", + "version":1281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.32.128", + "prefixLen":25, + "network":"192.180.32.128\/25", + "version":1280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.33.0", + "prefixLen":25, + "network":"192.180.33.0\/25", + "version":1279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.33.128", + "prefixLen":25, + "network":"192.180.33.128\/25", + "version":1278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.34.0", + "prefixLen":25, + "network":"192.180.34.0\/25", + "version":1277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.34.128", + "prefixLen":25, + "network":"192.180.34.128\/25", + "version":1276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.35.0", + "prefixLen":25, + "network":"192.180.35.0\/25", + "version":1275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.35.128", + "prefixLen":25, + "network":"192.180.35.128\/25", + "version":1274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.48.0", + "prefixLen":25, + "network":"192.180.48.0\/25", + "version":1273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.48.128", + "prefixLen":25, + "network":"192.180.48.128\/25", + "version":1272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.49.0", + "prefixLen":25, + "network":"192.180.49.0\/25", + "version":1271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.49.128", + "prefixLen":25, + "network":"192.180.49.128\/25", + "version":1270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.50.0", + "prefixLen":25, + "network":"192.180.50.0\/25", + "version":1269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.50.128", + "prefixLen":25, + "network":"192.180.50.128\/25", + "version":1268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.51.0", + "prefixLen":25, + "network":"192.180.51.0\/25", + "version":1267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.51.128", + "prefixLen":25, + "network":"192.180.51.128\/25", + "version":1266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.64.0", + "prefixLen":25, + "network":"192.180.64.0\/25", + "version":1265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.64.128", + "prefixLen":25, + "network":"192.180.64.128\/25", + "version":1264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.65.0", + "prefixLen":25, + "network":"192.180.65.0\/25", + "version":1263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.65.128", + "prefixLen":25, + "network":"192.180.65.128\/25", + "version":1262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.66.0", + "prefixLen":25, + "network":"192.180.66.0\/25", + "version":1261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.66.128", + "prefixLen":25, + "network":"192.180.66.128\/25", + "version":1260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.67.0", + "prefixLen":25, + "network":"192.180.67.0\/25", + "version":1259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.67.128", + "prefixLen":25, + "network":"192.180.67.128\/25", + "version":1258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.80.0", + "prefixLen":25, + "network":"192.180.80.0\/25", + "version":1257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.80.128", + "prefixLen":25, + "network":"192.180.80.128\/25", + "version":1256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.81.0", + "prefixLen":25, + "network":"192.180.81.0\/25", + "version":1255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.81.128", + "prefixLen":25, + "network":"192.180.81.128\/25", + "version":1254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.82.0", + "prefixLen":25, + "network":"192.180.82.0\/25", + "version":1253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.82.128", + "prefixLen":25, + "network":"192.180.82.128\/25", + "version":1252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.83.0", + "prefixLen":25, + "network":"192.180.83.0\/25", + "version":1251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.83.128", + "prefixLen":25, + "network":"192.180.83.128\/25", + "version":1250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.96.0", + "prefixLen":25, + "network":"192.180.96.0\/25", + "version":1249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.96.128", + "prefixLen":25, + "network":"192.180.96.128\/25", + "version":1248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.97.0", + "prefixLen":25, + "network":"192.180.97.0\/25", + "version":1247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.97.128", + "prefixLen":25, + "network":"192.180.97.128\/25", + "version":1246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.98.0", + "prefixLen":25, + "network":"192.180.98.0\/25", + "version":1245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.98.128", + "prefixLen":25, + "network":"192.180.98.128\/25", + "version":1244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.99.0", + "prefixLen":25, + "network":"192.180.99.0\/25", + "version":1243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.99.128", + "prefixLen":25, + "network":"192.180.99.128\/25", + "version":1242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.112.0", + "prefixLen":25, + "network":"192.180.112.0\/25", + "version":1241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.112.128", + "prefixLen":25, + "network":"192.180.112.128\/25", + "version":1240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.113.0", + "prefixLen":25, + "network":"192.180.113.0\/25", + "version":1239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.113.128", + "prefixLen":25, + "network":"192.180.113.128\/25", + "version":1238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.114.0", + "prefixLen":25, + "network":"192.180.114.0\/25", + "version":1237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.114.128", + "prefixLen":25, + "network":"192.180.114.128\/25", + "version":1236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.115.0", + "prefixLen":25, + "network":"192.180.115.0\/25", + "version":1235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.115.128", + "prefixLen":25, + "network":"192.180.115.128\/25", + "version":1234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.128.0", + "prefixLen":25, + "network":"192.180.128.0\/25", + "version":1233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.128.128", + "prefixLen":25, + "network":"192.180.128.128\/25", + "version":1232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.129.0", + "prefixLen":25, + "network":"192.180.129.0\/25", + "version":1231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.129.128", + "prefixLen":25, + "network":"192.180.129.128\/25", + "version":1230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.130.0", + "prefixLen":25, + "network":"192.180.130.0\/25", + "version":1229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.130.128", + "prefixLen":25, + "network":"192.180.130.128\/25", + "version":1228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.131.0", + "prefixLen":25, + "network":"192.180.131.0\/25", + "version":1227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.131.128", + "prefixLen":25, + "network":"192.180.131.128\/25", + "version":1226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.144.0", + "prefixLen":25, + "network":"192.180.144.0\/25", + "version":1225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.144.128", + "prefixLen":25, + "network":"192.180.144.128\/25", + "version":1224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.145.0", + "prefixLen":25, + "network":"192.180.145.0\/25", + "version":1223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.145.128", + "prefixLen":25, + "network":"192.180.145.128\/25", + "version":1222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.146.0", + "prefixLen":25, + "network":"192.180.146.0\/25", + "version":1221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.146.128", + "prefixLen":25, + "network":"192.180.146.128\/25", + "version":1220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.147.0", + "prefixLen":25, + "network":"192.180.147.0\/25", + "version":1219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.147.128", + "prefixLen":25, + "network":"192.180.147.128\/25", + "version":1218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.160.0", + "prefixLen":25, + "network":"192.180.160.0\/25", + "version":1217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.160.128", + "prefixLen":25, + "network":"192.180.160.128\/25", + "version":1216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.161.0", + "prefixLen":25, + "network":"192.180.161.0\/25", + "version":1215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.161.128", + "prefixLen":25, + "network":"192.180.161.128\/25", + "version":1214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.162.0", + "prefixLen":25, + "network":"192.180.162.0\/25", + "version":1213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.162.128", + "prefixLen":25, + "network":"192.180.162.128\/25", + "version":1212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.163.0", + "prefixLen":25, + "network":"192.180.163.0\/25", + "version":1211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.163.128", + "prefixLen":25, + "network":"192.180.163.128\/25", + "version":1210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.176.0", + "prefixLen":25, + "network":"192.180.176.0\/25", + "version":1209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.176.128", + "prefixLen":25, + "network":"192.180.176.128\/25", + "version":1208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.177.0", + "prefixLen":25, + "network":"192.180.177.0\/25", + "version":1207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.177.128", + "prefixLen":25, + "network":"192.180.177.128\/25", + "version":1206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.178.0", + "prefixLen":25, + "network":"192.180.178.0\/25", + "version":1205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.178.128", + "prefixLen":25, + "network":"192.180.178.128\/25", + "version":1204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.179.0", + "prefixLen":25, + "network":"192.180.179.0\/25", + "version":1203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.179.128", + "prefixLen":25, + "network":"192.180.179.128\/25", + "version":1202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.192.0", + "prefixLen":25, + "network":"192.180.192.0\/25", + "version":1201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.192.128", + "prefixLen":25, + "network":"192.180.192.128\/25", + "version":1200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.193.0", + "prefixLen":25, + "network":"192.180.193.0\/25", + "version":1199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.193.128", + "prefixLen":25, + "network":"192.180.193.128\/25", + "version":1198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.194.0", + "prefixLen":25, + "network":"192.180.194.0\/25", + "version":1197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.194.128", + "prefixLen":25, + "network":"192.180.194.128\/25", + "version":1196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.195.0", + "prefixLen":25, + "network":"192.180.195.0\/25", + "version":1195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.195.128", + "prefixLen":25, + "network":"192.180.195.128\/25", + "version":1194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.208.0", + "prefixLen":25, + "network":"192.180.208.0\/25", + "version":1193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.208.128", + "prefixLen":25, + "network":"192.180.208.128\/25", + "version":1192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.209.0", + "prefixLen":25, + "network":"192.180.209.0\/25", + "version":1191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.209.128", + "prefixLen":25, + "network":"192.180.209.128\/25", + "version":1190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.210.0", + "prefixLen":25, + "network":"192.180.210.0\/25", + "version":1189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.210.128", + "prefixLen":25, + "network":"192.180.210.128\/25", + "version":1188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.211.0", + "prefixLen":25, + "network":"192.180.211.0\/25", + "version":1187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.211.128", + "prefixLen":25, + "network":"192.180.211.128\/25", + "version":1186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.224.0", + "prefixLen":25, + "network":"192.180.224.0\/25", + "version":1185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.224.128", + "prefixLen":25, + "network":"192.180.224.128\/25", + "version":1184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.225.0", + "prefixLen":25, + "network":"192.180.225.0\/25", + "version":1183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.225.128", + "prefixLen":25, + "network":"192.180.225.128\/25", + "version":1182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.226.0", + "prefixLen":25, + "network":"192.180.226.0\/25", + "version":1181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.226.128", + "prefixLen":25, + "network":"192.180.226.128\/25", + "version":1180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.227.0", + "prefixLen":25, + "network":"192.180.227.0\/25", + "version":1179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.227.128", + "prefixLen":25, + "network":"192.180.227.128\/25", + "version":1178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.240.0", + "prefixLen":25, + "network":"192.180.240.0\/25", + "version":1177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.240.128", + "prefixLen":25, + "network":"192.180.240.128\/25", + "version":1176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.241.0", + "prefixLen":25, + "network":"192.180.241.0\/25", + "version":1175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.241.128", + "prefixLen":25, + "network":"192.180.241.128\/25", + "version":1174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.242.0", + "prefixLen":25, + "network":"192.180.242.0\/25", + "version":1173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.242.128", + "prefixLen":25, + "network":"192.180.242.128\/25", + "version":1172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.243.0", + "prefixLen":25, + "network":"192.180.243.0\/25", + "version":1171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.180.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.180.243.128", + "prefixLen":25, + "network":"192.180.243.128\/25", + "version":1170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64612 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.0.0", + "prefixLen":25, + "network":"192.181.0.0\/25", + "version":1297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.0.128", + "prefixLen":25, + "network":"192.181.0.128\/25", + "version":1424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.1.0", + "prefixLen":25, + "network":"192.181.1.0\/25", + "version":1423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.1.128", + "prefixLen":25, + "network":"192.181.1.128\/25", + "version":1422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.2.0", + "prefixLen":25, + "network":"192.181.2.0\/25", + "version":1421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.2.128", + "prefixLen":25, + "network":"192.181.2.128\/25", + "version":1420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.3.0", + "prefixLen":25, + "network":"192.181.3.0\/25", + "version":1419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.3.128", + "prefixLen":25, + "network":"192.181.3.128\/25", + "version":1418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.16.0", + "prefixLen":25, + "network":"192.181.16.0\/25", + "version":1417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.16.128", + "prefixLen":25, + "network":"192.181.16.128\/25", + "version":1416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.17.0", + "prefixLen":25, + "network":"192.181.17.0\/25", + "version":1415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.17.128", + "prefixLen":25, + "network":"192.181.17.128\/25", + "version":1414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.18.0", + "prefixLen":25, + "network":"192.181.18.0\/25", + "version":1413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.18.128", + "prefixLen":25, + "network":"192.181.18.128\/25", + "version":1412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.19.0", + "prefixLen":25, + "network":"192.181.19.0\/25", + "version":1411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.19.128", + "prefixLen":25, + "network":"192.181.19.128\/25", + "version":1410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.32.0", + "prefixLen":25, + "network":"192.181.32.0\/25", + "version":1409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.32.128", + "prefixLen":25, + "network":"192.181.32.128\/25", + "version":1408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.33.0", + "prefixLen":25, + "network":"192.181.33.0\/25", + "version":1407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.33.128", + "prefixLen":25, + "network":"192.181.33.128\/25", + "version":1406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.34.0", + "prefixLen":25, + "network":"192.181.34.0\/25", + "version":1405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.34.128", + "prefixLen":25, + "network":"192.181.34.128\/25", + "version":1404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.35.0", + "prefixLen":25, + "network":"192.181.35.0\/25", + "version":1403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.35.128", + "prefixLen":25, + "network":"192.181.35.128\/25", + "version":1402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.48.0", + "prefixLen":25, + "network":"192.181.48.0\/25", + "version":1401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.48.128", + "prefixLen":25, + "network":"192.181.48.128\/25", + "version":1400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.49.0", + "prefixLen":25, + "network":"192.181.49.0\/25", + "version":1399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.49.128", + "prefixLen":25, + "network":"192.181.49.128\/25", + "version":1398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.50.0", + "prefixLen":25, + "network":"192.181.50.0\/25", + "version":1397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.50.128", + "prefixLen":25, + "network":"192.181.50.128\/25", + "version":1396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.51.0", + "prefixLen":25, + "network":"192.181.51.0\/25", + "version":1395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.51.128", + "prefixLen":25, + "network":"192.181.51.128\/25", + "version":1394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.64.0", + "prefixLen":25, + "network":"192.181.64.0\/25", + "version":1393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.64.128", + "prefixLen":25, + "network":"192.181.64.128\/25", + "version":1392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.65.0", + "prefixLen":25, + "network":"192.181.65.0\/25", + "version":1391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.65.128", + "prefixLen":25, + "network":"192.181.65.128\/25", + "version":1390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.66.0", + "prefixLen":25, + "network":"192.181.66.0\/25", + "version":1389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.66.128", + "prefixLen":25, + "network":"192.181.66.128\/25", + "version":1388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.67.0", + "prefixLen":25, + "network":"192.181.67.0\/25", + "version":1387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.67.128", + "prefixLen":25, + "network":"192.181.67.128\/25", + "version":1386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.80.0", + "prefixLen":25, + "network":"192.181.80.0\/25", + "version":1385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.80.128", + "prefixLen":25, + "network":"192.181.80.128\/25", + "version":1384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.81.0", + "prefixLen":25, + "network":"192.181.81.0\/25", + "version":1383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.81.128", + "prefixLen":25, + "network":"192.181.81.128\/25", + "version":1382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.82.0", + "prefixLen":25, + "network":"192.181.82.0\/25", + "version":1381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.82.128", + "prefixLen":25, + "network":"192.181.82.128\/25", + "version":1380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.83.0", + "prefixLen":25, + "network":"192.181.83.0\/25", + "version":1379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.83.128", + "prefixLen":25, + "network":"192.181.83.128\/25", + "version":1378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.96.0", + "prefixLen":25, + "network":"192.181.96.0\/25", + "version":1377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.96.128", + "prefixLen":25, + "network":"192.181.96.128\/25", + "version":1376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.97.0", + "prefixLen":25, + "network":"192.181.97.0\/25", + "version":1375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.97.128", + "prefixLen":25, + "network":"192.181.97.128\/25", + "version":1374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.98.0", + "prefixLen":25, + "network":"192.181.98.0\/25", + "version":1373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.98.128", + "prefixLen":25, + "network":"192.181.98.128\/25", + "version":1372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.99.0", + "prefixLen":25, + "network":"192.181.99.0\/25", + "version":1371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.99.128", + "prefixLen":25, + "network":"192.181.99.128\/25", + "version":1370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.112.0", + "prefixLen":25, + "network":"192.181.112.0\/25", + "version":1369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.112.128", + "prefixLen":25, + "network":"192.181.112.128\/25", + "version":1368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.113.0", + "prefixLen":25, + "network":"192.181.113.0\/25", + "version":1367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.113.128", + "prefixLen":25, + "network":"192.181.113.128\/25", + "version":1366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.114.0", + "prefixLen":25, + "network":"192.181.114.0\/25", + "version":1365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.114.128", + "prefixLen":25, + "network":"192.181.114.128\/25", + "version":1364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.115.0", + "prefixLen":25, + "network":"192.181.115.0\/25", + "version":1363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.115.128", + "prefixLen":25, + "network":"192.181.115.128\/25", + "version":1362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.128.0", + "prefixLen":25, + "network":"192.181.128.0\/25", + "version":1361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.128.128", + "prefixLen":25, + "network":"192.181.128.128\/25", + "version":1360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.129.0", + "prefixLen":25, + "network":"192.181.129.0\/25", + "version":1359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.129.128", + "prefixLen":25, + "network":"192.181.129.128\/25", + "version":1358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.130.0", + "prefixLen":25, + "network":"192.181.130.0\/25", + "version":1357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.130.128", + "prefixLen":25, + "network":"192.181.130.128\/25", + "version":1356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.131.0", + "prefixLen":25, + "network":"192.181.131.0\/25", + "version":1355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.131.128", + "prefixLen":25, + "network":"192.181.131.128\/25", + "version":1354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.144.0", + "prefixLen":25, + "network":"192.181.144.0\/25", + "version":1353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.144.128", + "prefixLen":25, + "network":"192.181.144.128\/25", + "version":1352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.145.0", + "prefixLen":25, + "network":"192.181.145.0\/25", + "version":1351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.145.128", + "prefixLen":25, + "network":"192.181.145.128\/25", + "version":1350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.146.0", + "prefixLen":25, + "network":"192.181.146.0\/25", + "version":1349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.146.128", + "prefixLen":25, + "network":"192.181.146.128\/25", + "version":1348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.147.0", + "prefixLen":25, + "network":"192.181.147.0\/25", + "version":1347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.147.128", + "prefixLen":25, + "network":"192.181.147.128\/25", + "version":1346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.160.0", + "prefixLen":25, + "network":"192.181.160.0\/25", + "version":1345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.160.128", + "prefixLen":25, + "network":"192.181.160.128\/25", + "version":1344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.161.0", + "prefixLen":25, + "network":"192.181.161.0\/25", + "version":1343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.161.128", + "prefixLen":25, + "network":"192.181.161.128\/25", + "version":1342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.162.0", + "prefixLen":25, + "network":"192.181.162.0\/25", + "version":1341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.162.128", + "prefixLen":25, + "network":"192.181.162.128\/25", + "version":1340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.163.0", + "prefixLen":25, + "network":"192.181.163.0\/25", + "version":1339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.163.128", + "prefixLen":25, + "network":"192.181.163.128\/25", + "version":1338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.176.0", + "prefixLen":25, + "network":"192.181.176.0\/25", + "version":1337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.176.128", + "prefixLen":25, + "network":"192.181.176.128\/25", + "version":1336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.177.0", + "prefixLen":25, + "network":"192.181.177.0\/25", + "version":1335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.177.128", + "prefixLen":25, + "network":"192.181.177.128\/25", + "version":1334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.178.0", + "prefixLen":25, + "network":"192.181.178.0\/25", + "version":1333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.178.128", + "prefixLen":25, + "network":"192.181.178.128\/25", + "version":1332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.179.0", + "prefixLen":25, + "network":"192.181.179.0\/25", + "version":1331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.179.128", + "prefixLen":25, + "network":"192.181.179.128\/25", + "version":1330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.192.0", + "prefixLen":25, + "network":"192.181.192.0\/25", + "version":1329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.192.128", + "prefixLen":25, + "network":"192.181.192.128\/25", + "version":1328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.193.0", + "prefixLen":25, + "network":"192.181.193.0\/25", + "version":1327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.193.128", + "prefixLen":25, + "network":"192.181.193.128\/25", + "version":1326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.194.0", + "prefixLen":25, + "network":"192.181.194.0\/25", + "version":1325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.194.128", + "prefixLen":25, + "network":"192.181.194.128\/25", + "version":1324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.195.0", + "prefixLen":25, + "network":"192.181.195.0\/25", + "version":1323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.195.128", + "prefixLen":25, + "network":"192.181.195.128\/25", + "version":1322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.208.0", + "prefixLen":25, + "network":"192.181.208.0\/25", + "version":1321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.208.128", + "prefixLen":25, + "network":"192.181.208.128\/25", + "version":1320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.209.0", + "prefixLen":25, + "network":"192.181.209.0\/25", + "version":1319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.209.128", + "prefixLen":25, + "network":"192.181.209.128\/25", + "version":1318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.210.0", + "prefixLen":25, + "network":"192.181.210.0\/25", + "version":1317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.210.128", + "prefixLen":25, + "network":"192.181.210.128\/25", + "version":1316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.211.0", + "prefixLen":25, + "network":"192.181.211.0\/25", + "version":1315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.211.128", + "prefixLen":25, + "network":"192.181.211.128\/25", + "version":1314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.224.0", + "prefixLen":25, + "network":"192.181.224.0\/25", + "version":1313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.224.128", + "prefixLen":25, + "network":"192.181.224.128\/25", + "version":1312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.225.0", + "prefixLen":25, + "network":"192.181.225.0\/25", + "version":1311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.225.128", + "prefixLen":25, + "network":"192.181.225.128\/25", + "version":1310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.226.0", + "prefixLen":25, + "network":"192.181.226.0\/25", + "version":1309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.226.128", + "prefixLen":25, + "network":"192.181.226.128\/25", + "version":1308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.227.0", + "prefixLen":25, + "network":"192.181.227.0\/25", + "version":1307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.227.128", + "prefixLen":25, + "network":"192.181.227.128\/25", + "version":1306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.240.0", + "prefixLen":25, + "network":"192.181.240.0\/25", + "version":1305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.240.128", + "prefixLen":25, + "network":"192.181.240.128\/25", + "version":1304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.241.0", + "prefixLen":25, + "network":"192.181.241.0\/25", + "version":1303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.241.128", + "prefixLen":25, + "network":"192.181.241.128\/25", + "version":1302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.242.0", + "prefixLen":25, + "network":"192.181.242.0\/25", + "version":1301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.242.128", + "prefixLen":25, + "network":"192.181.242.128\/25", + "version":1300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.243.0", + "prefixLen":25, + "network":"192.181.243.0\/25", + "version":1299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.181.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.181.243.128", + "prefixLen":25, + "network":"192.181.243.128\/25", + "version":1298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64613 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.0.0", + "prefixLen":25, + "network":"192.182.0.0\/25", + "version":1425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.0.128", + "prefixLen":25, + "network":"192.182.0.128\/25", + "version":1552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.1.0", + "prefixLen":25, + "network":"192.182.1.0\/25", + "version":1551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.1.128", + "prefixLen":25, + "network":"192.182.1.128\/25", + "version":1550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.2.0", + "prefixLen":25, + "network":"192.182.2.0\/25", + "version":1549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.2.128", + "prefixLen":25, + "network":"192.182.2.128\/25", + "version":1548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.3.0", + "prefixLen":25, + "network":"192.182.3.0\/25", + "version":1547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.3.128", + "prefixLen":25, + "network":"192.182.3.128\/25", + "version":1546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.16.0", + "prefixLen":25, + "network":"192.182.16.0\/25", + "version":1545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.16.128", + "prefixLen":25, + "network":"192.182.16.128\/25", + "version":1544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.17.0", + "prefixLen":25, + "network":"192.182.17.0\/25", + "version":1543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.17.128", + "prefixLen":25, + "network":"192.182.17.128\/25", + "version":1542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.18.0", + "prefixLen":25, + "network":"192.182.18.0\/25", + "version":1541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.18.128", + "prefixLen":25, + "network":"192.182.18.128\/25", + "version":1540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.19.0", + "prefixLen":25, + "network":"192.182.19.0\/25", + "version":1539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.19.128", + "prefixLen":25, + "network":"192.182.19.128\/25", + "version":1538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.32.0", + "prefixLen":25, + "network":"192.182.32.0\/25", + "version":1537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.32.128", + "prefixLen":25, + "network":"192.182.32.128\/25", + "version":1536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.33.0", + "prefixLen":25, + "network":"192.182.33.0\/25", + "version":1535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.33.128", + "prefixLen":25, + "network":"192.182.33.128\/25", + "version":1534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.34.0", + "prefixLen":25, + "network":"192.182.34.0\/25", + "version":1533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.34.128", + "prefixLen":25, + "network":"192.182.34.128\/25", + "version":1532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.35.0", + "prefixLen":25, + "network":"192.182.35.0\/25", + "version":1531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.35.128", + "prefixLen":25, + "network":"192.182.35.128\/25", + "version":1530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.48.0", + "prefixLen":25, + "network":"192.182.48.0\/25", + "version":1529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.48.128", + "prefixLen":25, + "network":"192.182.48.128\/25", + "version":1528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.49.0", + "prefixLen":25, + "network":"192.182.49.0\/25", + "version":1527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.49.128", + "prefixLen":25, + "network":"192.182.49.128\/25", + "version":1526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.50.0", + "prefixLen":25, + "network":"192.182.50.0\/25", + "version":1525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.50.128", + "prefixLen":25, + "network":"192.182.50.128\/25", + "version":1524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.51.0", + "prefixLen":25, + "network":"192.182.51.0\/25", + "version":1523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.51.128", + "prefixLen":25, + "network":"192.182.51.128\/25", + "version":1522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.64.0", + "prefixLen":25, + "network":"192.182.64.0\/25", + "version":1521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.64.128", + "prefixLen":25, + "network":"192.182.64.128\/25", + "version":1520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.65.0", + "prefixLen":25, + "network":"192.182.65.0\/25", + "version":1519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.65.128", + "prefixLen":25, + "network":"192.182.65.128\/25", + "version":1518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.66.0", + "prefixLen":25, + "network":"192.182.66.0\/25", + "version":1517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.66.128", + "prefixLen":25, + "network":"192.182.66.128\/25", + "version":1516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.67.0", + "prefixLen":25, + "network":"192.182.67.0\/25", + "version":1515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.67.128", + "prefixLen":25, + "network":"192.182.67.128\/25", + "version":1514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.80.0", + "prefixLen":25, + "network":"192.182.80.0\/25", + "version":1513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.80.128", + "prefixLen":25, + "network":"192.182.80.128\/25", + "version":1512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.81.0", + "prefixLen":25, + "network":"192.182.81.0\/25", + "version":1511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.81.128", + "prefixLen":25, + "network":"192.182.81.128\/25", + "version":1510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.82.0", + "prefixLen":25, + "network":"192.182.82.0\/25", + "version":1509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.82.128", + "prefixLen":25, + "network":"192.182.82.128\/25", + "version":1508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.83.0", + "prefixLen":25, + "network":"192.182.83.0\/25", + "version":1507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.83.128", + "prefixLen":25, + "network":"192.182.83.128\/25", + "version":1506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.96.0", + "prefixLen":25, + "network":"192.182.96.0\/25", + "version":1505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.96.128", + "prefixLen":25, + "network":"192.182.96.128\/25", + "version":1504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.97.0", + "prefixLen":25, + "network":"192.182.97.0\/25", + "version":1503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.97.128", + "prefixLen":25, + "network":"192.182.97.128\/25", + "version":1502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.98.0", + "prefixLen":25, + "network":"192.182.98.0\/25", + "version":1501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.98.128", + "prefixLen":25, + "network":"192.182.98.128\/25", + "version":1500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.99.0", + "prefixLen":25, + "network":"192.182.99.0\/25", + "version":1499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.99.128", + "prefixLen":25, + "network":"192.182.99.128\/25", + "version":1498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.112.0", + "prefixLen":25, + "network":"192.182.112.0\/25", + "version":1497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.112.128", + "prefixLen":25, + "network":"192.182.112.128\/25", + "version":1496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.113.0", + "prefixLen":25, + "network":"192.182.113.0\/25", + "version":1495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.113.128", + "prefixLen":25, + "network":"192.182.113.128\/25", + "version":1494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.114.0", + "prefixLen":25, + "network":"192.182.114.0\/25", + "version":1493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.114.128", + "prefixLen":25, + "network":"192.182.114.128\/25", + "version":1492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.115.0", + "prefixLen":25, + "network":"192.182.115.0\/25", + "version":1491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.115.128", + "prefixLen":25, + "network":"192.182.115.128\/25", + "version":1490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.128.0", + "prefixLen":25, + "network":"192.182.128.0\/25", + "version":1489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.128.128", + "prefixLen":25, + "network":"192.182.128.128\/25", + "version":1488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.129.0", + "prefixLen":25, + "network":"192.182.129.0\/25", + "version":1487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.129.128", + "prefixLen":25, + "network":"192.182.129.128\/25", + "version":1486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.130.0", + "prefixLen":25, + "network":"192.182.130.0\/25", + "version":1485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.130.128", + "prefixLen":25, + "network":"192.182.130.128\/25", + "version":1484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.131.0", + "prefixLen":25, + "network":"192.182.131.0\/25", + "version":1483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.131.128", + "prefixLen":25, + "network":"192.182.131.128\/25", + "version":1482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.144.0", + "prefixLen":25, + "network":"192.182.144.0\/25", + "version":1481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.144.128", + "prefixLen":25, + "network":"192.182.144.128\/25", + "version":1480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.145.0", + "prefixLen":25, + "network":"192.182.145.0\/25", + "version":1479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.145.128", + "prefixLen":25, + "network":"192.182.145.128\/25", + "version":1478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.146.0", + "prefixLen":25, + "network":"192.182.146.0\/25", + "version":1477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.146.128", + "prefixLen":25, + "network":"192.182.146.128\/25", + "version":1476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.147.0", + "prefixLen":25, + "network":"192.182.147.0\/25", + "version":1475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.147.128", + "prefixLen":25, + "network":"192.182.147.128\/25", + "version":1474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.160.0", + "prefixLen":25, + "network":"192.182.160.0\/25", + "version":1473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.160.128", + "prefixLen":25, + "network":"192.182.160.128\/25", + "version":1472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.161.0", + "prefixLen":25, + "network":"192.182.161.0\/25", + "version":1471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.161.128", + "prefixLen":25, + "network":"192.182.161.128\/25", + "version":1470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.162.0", + "prefixLen":25, + "network":"192.182.162.0\/25", + "version":1469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.162.128", + "prefixLen":25, + "network":"192.182.162.128\/25", + "version":1468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.163.0", + "prefixLen":25, + "network":"192.182.163.0\/25", + "version":1467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.163.128", + "prefixLen":25, + "network":"192.182.163.128\/25", + "version":1466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.176.0", + "prefixLen":25, + "network":"192.182.176.0\/25", + "version":1465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.176.128", + "prefixLen":25, + "network":"192.182.176.128\/25", + "version":1464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.177.0", + "prefixLen":25, + "network":"192.182.177.0\/25", + "version":1463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.177.128", + "prefixLen":25, + "network":"192.182.177.128\/25", + "version":1462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.178.0", + "prefixLen":25, + "network":"192.182.178.0\/25", + "version":1461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.178.128", + "prefixLen":25, + "network":"192.182.178.128\/25", + "version":1460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.179.0", + "prefixLen":25, + "network":"192.182.179.0\/25", + "version":1459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.179.128", + "prefixLen":25, + "network":"192.182.179.128\/25", + "version":1458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.192.0", + "prefixLen":25, + "network":"192.182.192.0\/25", + "version":1457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.192.128", + "prefixLen":25, + "network":"192.182.192.128\/25", + "version":1456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.193.0", + "prefixLen":25, + "network":"192.182.193.0\/25", + "version":1455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.193.128", + "prefixLen":25, + "network":"192.182.193.128\/25", + "version":1454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.194.0", + "prefixLen":25, + "network":"192.182.194.0\/25", + "version":1453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.194.128", + "prefixLen":25, + "network":"192.182.194.128\/25", + "version":1452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.195.0", + "prefixLen":25, + "network":"192.182.195.0\/25", + "version":1451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.195.128", + "prefixLen":25, + "network":"192.182.195.128\/25", + "version":1450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.208.0", + "prefixLen":25, + "network":"192.182.208.0\/25", + "version":1449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.208.128", + "prefixLen":25, + "network":"192.182.208.128\/25", + "version":1448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.209.0", + "prefixLen":25, + "network":"192.182.209.0\/25", + "version":1447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.209.128", + "prefixLen":25, + "network":"192.182.209.128\/25", + "version":1446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.210.0", + "prefixLen":25, + "network":"192.182.210.0\/25", + "version":1445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.210.128", + "prefixLen":25, + "network":"192.182.210.128\/25", + "version":1444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.211.0", + "prefixLen":25, + "network":"192.182.211.0\/25", + "version":1443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.211.128", + "prefixLen":25, + "network":"192.182.211.128\/25", + "version":1442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.224.0", + "prefixLen":25, + "network":"192.182.224.0\/25", + "version":1441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.224.128", + "prefixLen":25, + "network":"192.182.224.128\/25", + "version":1440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.225.0", + "prefixLen":25, + "network":"192.182.225.0\/25", + "version":1439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.225.128", + "prefixLen":25, + "network":"192.182.225.128\/25", + "version":1438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.226.0", + "prefixLen":25, + "network":"192.182.226.0\/25", + "version":1437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.226.128", + "prefixLen":25, + "network":"192.182.226.128\/25", + "version":1436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.227.0", + "prefixLen":25, + "network":"192.182.227.0\/25", + "version":1435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.227.128", + "prefixLen":25, + "network":"192.182.227.128\/25", + "version":1434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.240.0", + "prefixLen":25, + "network":"192.182.240.0\/25", + "version":1433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.240.128", + "prefixLen":25, + "network":"192.182.240.128\/25", + "version":1432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.241.0", + "prefixLen":25, + "network":"192.182.241.0\/25", + "version":1431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.241.128", + "prefixLen":25, + "network":"192.182.241.128\/25", + "version":1430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.242.0", + "prefixLen":25, + "network":"192.182.242.0\/25", + "version":1429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.242.128", + "prefixLen":25, + "network":"192.182.242.128\/25", + "version":1428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.243.0", + "prefixLen":25, + "network":"192.182.243.0\/25", + "version":1427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.182.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.182.243.128", + "prefixLen":25, + "network":"192.182.243.128\/25", + "version":1426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64614 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.0.0", + "prefixLen":25, + "network":"192.183.0.0\/25", + "version":1553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.0.128", + "prefixLen":25, + "network":"192.183.0.128\/25", + "version":1680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.1.0", + "prefixLen":25, + "network":"192.183.1.0\/25", + "version":1679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.1.128", + "prefixLen":25, + "network":"192.183.1.128\/25", + "version":1678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.2.0", + "prefixLen":25, + "network":"192.183.2.0\/25", + "version":1677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.2.128", + "prefixLen":25, + "network":"192.183.2.128\/25", + "version":1676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.3.0", + "prefixLen":25, + "network":"192.183.3.0\/25", + "version":1675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.3.128", + "prefixLen":25, + "network":"192.183.3.128\/25", + "version":1674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.16.0", + "prefixLen":25, + "network":"192.183.16.0\/25", + "version":1673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.16.128", + "prefixLen":25, + "network":"192.183.16.128\/25", + "version":1672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.17.0", + "prefixLen":25, + "network":"192.183.17.0\/25", + "version":1671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.17.128", + "prefixLen":25, + "network":"192.183.17.128\/25", + "version":1670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.18.0", + "prefixLen":25, + "network":"192.183.18.0\/25", + "version":1669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.18.128", + "prefixLen":25, + "network":"192.183.18.128\/25", + "version":1668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.19.0", + "prefixLen":25, + "network":"192.183.19.0\/25", + "version":1667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.19.128", + "prefixLen":25, + "network":"192.183.19.128\/25", + "version":1666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.32.0", + "prefixLen":25, + "network":"192.183.32.0\/25", + "version":1665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.32.128", + "prefixLen":25, + "network":"192.183.32.128\/25", + "version":1664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.33.0", + "prefixLen":25, + "network":"192.183.33.0\/25", + "version":1663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.33.128", + "prefixLen":25, + "network":"192.183.33.128\/25", + "version":1662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.34.0", + "prefixLen":25, + "network":"192.183.34.0\/25", + "version":1661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.34.128", + "prefixLen":25, + "network":"192.183.34.128\/25", + "version":1660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.35.0", + "prefixLen":25, + "network":"192.183.35.0\/25", + "version":1659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.35.128", + "prefixLen":25, + "network":"192.183.35.128\/25", + "version":1658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.48.0", + "prefixLen":25, + "network":"192.183.48.0\/25", + "version":1657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.48.128", + "prefixLen":25, + "network":"192.183.48.128\/25", + "version":1656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.49.0", + "prefixLen":25, + "network":"192.183.49.0\/25", + "version":1655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.49.128", + "prefixLen":25, + "network":"192.183.49.128\/25", + "version":1654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.50.0", + "prefixLen":25, + "network":"192.183.50.0\/25", + "version":1653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.50.128", + "prefixLen":25, + "network":"192.183.50.128\/25", + "version":1652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.51.0", + "prefixLen":25, + "network":"192.183.51.0\/25", + "version":1651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.51.128", + "prefixLen":25, + "network":"192.183.51.128\/25", + "version":1650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.64.0", + "prefixLen":25, + "network":"192.183.64.0\/25", + "version":1649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.64.128", + "prefixLen":25, + "network":"192.183.64.128\/25", + "version":1648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.65.0", + "prefixLen":25, + "network":"192.183.65.0\/25", + "version":1647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.65.128", + "prefixLen":25, + "network":"192.183.65.128\/25", + "version":1646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.66.0", + "prefixLen":25, + "network":"192.183.66.0\/25", + "version":1645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.66.128", + "prefixLen":25, + "network":"192.183.66.128\/25", + "version":1644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.67.0", + "prefixLen":25, + "network":"192.183.67.0\/25", + "version":1643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.67.128", + "prefixLen":25, + "network":"192.183.67.128\/25", + "version":1642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.80.0", + "prefixLen":25, + "network":"192.183.80.0\/25", + "version":1641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.80.128", + "prefixLen":25, + "network":"192.183.80.128\/25", + "version":1640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.81.0", + "prefixLen":25, + "network":"192.183.81.0\/25", + "version":1639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.81.128", + "prefixLen":25, + "network":"192.183.81.128\/25", + "version":1638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.82.0", + "prefixLen":25, + "network":"192.183.82.0\/25", + "version":1637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.82.128", + "prefixLen":25, + "network":"192.183.82.128\/25", + "version":1636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.83.0", + "prefixLen":25, + "network":"192.183.83.0\/25", + "version":1635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.83.128", + "prefixLen":25, + "network":"192.183.83.128\/25", + "version":1634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.96.0", + "prefixLen":25, + "network":"192.183.96.0\/25", + "version":1633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.96.128", + "prefixLen":25, + "network":"192.183.96.128\/25", + "version":1632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.97.0", + "prefixLen":25, + "network":"192.183.97.0\/25", + "version":1631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.97.128", + "prefixLen":25, + "network":"192.183.97.128\/25", + "version":1630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.98.0", + "prefixLen":25, + "network":"192.183.98.0\/25", + "version":1629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.98.128", + "prefixLen":25, + "network":"192.183.98.128\/25", + "version":1628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.99.0", + "prefixLen":25, + "network":"192.183.99.0\/25", + "version":1627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.99.128", + "prefixLen":25, + "network":"192.183.99.128\/25", + "version":1626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.112.0", + "prefixLen":25, + "network":"192.183.112.0\/25", + "version":1625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.112.128", + "prefixLen":25, + "network":"192.183.112.128\/25", + "version":1624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.113.0", + "prefixLen":25, + "network":"192.183.113.0\/25", + "version":1623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.113.128", + "prefixLen":25, + "network":"192.183.113.128\/25", + "version":1622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.114.0", + "prefixLen":25, + "network":"192.183.114.0\/25", + "version":1621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.114.128", + "prefixLen":25, + "network":"192.183.114.128\/25", + "version":1620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.115.0", + "prefixLen":25, + "network":"192.183.115.0\/25", + "version":1619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.115.128", + "prefixLen":25, + "network":"192.183.115.128\/25", + "version":1618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.128.0", + "prefixLen":25, + "network":"192.183.128.0\/25", + "version":1617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.128.128", + "prefixLen":25, + "network":"192.183.128.128\/25", + "version":1616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.129.0", + "prefixLen":25, + "network":"192.183.129.0\/25", + "version":1615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.129.128", + "prefixLen":25, + "network":"192.183.129.128\/25", + "version":1614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.130.0", + "prefixLen":25, + "network":"192.183.130.0\/25", + "version":1613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.130.128", + "prefixLen":25, + "network":"192.183.130.128\/25", + "version":1612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.131.0", + "prefixLen":25, + "network":"192.183.131.0\/25", + "version":1611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.131.128", + "prefixLen":25, + "network":"192.183.131.128\/25", + "version":1610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.144.0", + "prefixLen":25, + "network":"192.183.144.0\/25", + "version":1609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.144.128", + "prefixLen":25, + "network":"192.183.144.128\/25", + "version":1608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.145.0", + "prefixLen":25, + "network":"192.183.145.0\/25", + "version":1607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.145.128", + "prefixLen":25, + "network":"192.183.145.128\/25", + "version":1606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.146.0", + "prefixLen":25, + "network":"192.183.146.0\/25", + "version":1605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.146.128", + "prefixLen":25, + "network":"192.183.146.128\/25", + "version":1604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.147.0", + "prefixLen":25, + "network":"192.183.147.0\/25", + "version":1603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.147.128", + "prefixLen":25, + "network":"192.183.147.128\/25", + "version":1602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.160.0", + "prefixLen":25, + "network":"192.183.160.0\/25", + "version":1601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.160.128", + "prefixLen":25, + "network":"192.183.160.128\/25", + "version":1600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.161.0", + "prefixLen":25, + "network":"192.183.161.0\/25", + "version":1599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.161.128", + "prefixLen":25, + "network":"192.183.161.128\/25", + "version":1598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.162.0", + "prefixLen":25, + "network":"192.183.162.0\/25", + "version":1597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.162.128", + "prefixLen":25, + "network":"192.183.162.128\/25", + "version":1596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.163.0", + "prefixLen":25, + "network":"192.183.163.0\/25", + "version":1595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.163.128", + "prefixLen":25, + "network":"192.183.163.128\/25", + "version":1594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.176.0", + "prefixLen":25, + "network":"192.183.176.0\/25", + "version":1593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.176.128", + "prefixLen":25, + "network":"192.183.176.128\/25", + "version":1592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.177.0", + "prefixLen":25, + "network":"192.183.177.0\/25", + "version":1591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.177.128", + "prefixLen":25, + "network":"192.183.177.128\/25", + "version":1590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.178.0", + "prefixLen":25, + "network":"192.183.178.0\/25", + "version":1589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.178.128", + "prefixLen":25, + "network":"192.183.178.128\/25", + "version":1588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.179.0", + "prefixLen":25, + "network":"192.183.179.0\/25", + "version":1587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.179.128", + "prefixLen":25, + "network":"192.183.179.128\/25", + "version":1586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.192.0", + "prefixLen":25, + "network":"192.183.192.0\/25", + "version":1585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.192.128", + "prefixLen":25, + "network":"192.183.192.128\/25", + "version":1584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.193.0", + "prefixLen":25, + "network":"192.183.193.0\/25", + "version":1583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.193.128", + "prefixLen":25, + "network":"192.183.193.128\/25", + "version":1582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.194.0", + "prefixLen":25, + "network":"192.183.194.0\/25", + "version":1581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.194.128", + "prefixLen":25, + "network":"192.183.194.128\/25", + "version":1580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.195.0", + "prefixLen":25, + "network":"192.183.195.0\/25", + "version":1579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.195.128", + "prefixLen":25, + "network":"192.183.195.128\/25", + "version":1578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.208.0", + "prefixLen":25, + "network":"192.183.208.0\/25", + "version":1577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.208.128", + "prefixLen":25, + "network":"192.183.208.128\/25", + "version":1576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.209.0", + "prefixLen":25, + "network":"192.183.209.0\/25", + "version":1575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.209.128", + "prefixLen":25, + "network":"192.183.209.128\/25", + "version":1574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.210.0", + "prefixLen":25, + "network":"192.183.210.0\/25", + "version":1573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.210.128", + "prefixLen":25, + "network":"192.183.210.128\/25", + "version":1572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.211.0", + "prefixLen":25, + "network":"192.183.211.0\/25", + "version":1571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.211.128", + "prefixLen":25, + "network":"192.183.211.128\/25", + "version":1570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.224.0", + "prefixLen":25, + "network":"192.183.224.0\/25", + "version":1569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.224.128", + "prefixLen":25, + "network":"192.183.224.128\/25", + "version":1568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.225.0", + "prefixLen":25, + "network":"192.183.225.0\/25", + "version":1567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.225.128", + "prefixLen":25, + "network":"192.183.225.128\/25", + "version":1566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.226.0", + "prefixLen":25, + "network":"192.183.226.0\/25", + "version":1565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.226.128", + "prefixLen":25, + "network":"192.183.226.128\/25", + "version":1564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.227.0", + "prefixLen":25, + "network":"192.183.227.0\/25", + "version":1563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.227.128", + "prefixLen":25, + "network":"192.183.227.128\/25", + "version":1562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.240.0", + "prefixLen":25, + "network":"192.183.240.0\/25", + "version":1561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.240.128", + "prefixLen":25, + "network":"192.183.240.128\/25", + "version":1560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.241.0", + "prefixLen":25, + "network":"192.183.241.0\/25", + "version":1559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.241.128", + "prefixLen":25, + "network":"192.183.241.128\/25", + "version":1558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.242.0", + "prefixLen":25, + "network":"192.183.242.0\/25", + "version":1557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.242.128", + "prefixLen":25, + "network":"192.183.242.128\/25", + "version":1556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.243.0", + "prefixLen":25, + "network":"192.183.243.0\/25", + "version":1555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.183.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.183.243.128", + "prefixLen":25, + "network":"192.183.243.128\/25", + "version":1554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64615 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.0.0", + "prefixLen":25, + "network":"192.184.0.0\/25", + "version":1681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.0.128", + "prefixLen":25, + "network":"192.184.0.128\/25", + "version":1808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.1.0", + "prefixLen":25, + "network":"192.184.1.0\/25", + "version":1807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.1.128", + "prefixLen":25, + "network":"192.184.1.128\/25", + "version":1806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.2.0", + "prefixLen":25, + "network":"192.184.2.0\/25", + "version":1805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.2.128", + "prefixLen":25, + "network":"192.184.2.128\/25", + "version":1804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.3.0", + "prefixLen":25, + "network":"192.184.3.0\/25", + "version":1803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.3.128", + "prefixLen":25, + "network":"192.184.3.128\/25", + "version":1802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.16.0", + "prefixLen":25, + "network":"192.184.16.0\/25", + "version":1801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.16.128", + "prefixLen":25, + "network":"192.184.16.128\/25", + "version":1800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.17.0", + "prefixLen":25, + "network":"192.184.17.0\/25", + "version":1799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.17.128", + "prefixLen":25, + "network":"192.184.17.128\/25", + "version":1798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.18.0", + "prefixLen":25, + "network":"192.184.18.0\/25", + "version":1797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.18.128", + "prefixLen":25, + "network":"192.184.18.128\/25", + "version":1796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.19.0", + "prefixLen":25, + "network":"192.184.19.0\/25", + "version":1795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.19.128", + "prefixLen":25, + "network":"192.184.19.128\/25", + "version":1794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.32.0", + "prefixLen":25, + "network":"192.184.32.0\/25", + "version":1793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.32.128", + "prefixLen":25, + "network":"192.184.32.128\/25", + "version":1792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.33.0", + "prefixLen":25, + "network":"192.184.33.0\/25", + "version":1791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.33.128", + "prefixLen":25, + "network":"192.184.33.128\/25", + "version":1790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.34.0", + "prefixLen":25, + "network":"192.184.34.0\/25", + "version":1789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.34.128", + "prefixLen":25, + "network":"192.184.34.128\/25", + "version":1788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.35.0", + "prefixLen":25, + "network":"192.184.35.0\/25", + "version":1787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.35.128", + "prefixLen":25, + "network":"192.184.35.128\/25", + "version":1786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.48.0", + "prefixLen":25, + "network":"192.184.48.0\/25", + "version":1785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.48.128", + "prefixLen":25, + "network":"192.184.48.128\/25", + "version":1784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.49.0", + "prefixLen":25, + "network":"192.184.49.0\/25", + "version":1783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.49.128", + "prefixLen":25, + "network":"192.184.49.128\/25", + "version":1782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.50.0", + "prefixLen":25, + "network":"192.184.50.0\/25", + "version":1781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.50.128", + "prefixLen":25, + "network":"192.184.50.128\/25", + "version":1780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.51.0", + "prefixLen":25, + "network":"192.184.51.0\/25", + "version":1779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.51.128", + "prefixLen":25, + "network":"192.184.51.128\/25", + "version":1778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.64.0", + "prefixLen":25, + "network":"192.184.64.0\/25", + "version":1777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.64.128", + "prefixLen":25, + "network":"192.184.64.128\/25", + "version":1776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.65.0", + "prefixLen":25, + "network":"192.184.65.0\/25", + "version":1775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.65.128", + "prefixLen":25, + "network":"192.184.65.128\/25", + "version":1774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.66.0", + "prefixLen":25, + "network":"192.184.66.0\/25", + "version":1773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.66.128", + "prefixLen":25, + "network":"192.184.66.128\/25", + "version":1772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.67.0", + "prefixLen":25, + "network":"192.184.67.0\/25", + "version":1771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.67.128", + "prefixLen":25, + "network":"192.184.67.128\/25", + "version":1770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.80.0", + "prefixLen":25, + "network":"192.184.80.0\/25", + "version":1769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.80.128", + "prefixLen":25, + "network":"192.184.80.128\/25", + "version":1768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.81.0", + "prefixLen":25, + "network":"192.184.81.0\/25", + "version":1767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.81.128", + "prefixLen":25, + "network":"192.184.81.128\/25", + "version":1766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.82.0", + "prefixLen":25, + "network":"192.184.82.0\/25", + "version":1765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.82.128", + "prefixLen":25, + "network":"192.184.82.128\/25", + "version":1764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.83.0", + "prefixLen":25, + "network":"192.184.83.0\/25", + "version":1763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.83.128", + "prefixLen":25, + "network":"192.184.83.128\/25", + "version":1762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.96.0", + "prefixLen":25, + "network":"192.184.96.0\/25", + "version":1761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.96.128", + "prefixLen":25, + "network":"192.184.96.128\/25", + "version":1760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.97.0", + "prefixLen":25, + "network":"192.184.97.0\/25", + "version":1759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.97.128", + "prefixLen":25, + "network":"192.184.97.128\/25", + "version":1758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.98.0", + "prefixLen":25, + "network":"192.184.98.0\/25", + "version":1757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.98.128", + "prefixLen":25, + "network":"192.184.98.128\/25", + "version":1756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.99.0", + "prefixLen":25, + "network":"192.184.99.0\/25", + "version":1755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.99.128", + "prefixLen":25, + "network":"192.184.99.128\/25", + "version":1754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.112.0", + "prefixLen":25, + "network":"192.184.112.0\/25", + "version":1753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.112.128", + "prefixLen":25, + "network":"192.184.112.128\/25", + "version":1752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.113.0", + "prefixLen":25, + "network":"192.184.113.0\/25", + "version":1751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.113.128", + "prefixLen":25, + "network":"192.184.113.128\/25", + "version":1750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.114.0", + "prefixLen":25, + "network":"192.184.114.0\/25", + "version":1749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.114.128", + "prefixLen":25, + "network":"192.184.114.128\/25", + "version":1748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.115.0", + "prefixLen":25, + "network":"192.184.115.0\/25", + "version":1747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.115.128", + "prefixLen":25, + "network":"192.184.115.128\/25", + "version":1746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.128.0", + "prefixLen":25, + "network":"192.184.128.0\/25", + "version":1745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.128.128", + "prefixLen":25, + "network":"192.184.128.128\/25", + "version":1744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.129.0", + "prefixLen":25, + "network":"192.184.129.0\/25", + "version":1743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.129.128", + "prefixLen":25, + "network":"192.184.129.128\/25", + "version":1742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.130.0", + "prefixLen":25, + "network":"192.184.130.0\/25", + "version":1741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.130.128", + "prefixLen":25, + "network":"192.184.130.128\/25", + "version":1740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.131.0", + "prefixLen":25, + "network":"192.184.131.0\/25", + "version":1739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.131.128", + "prefixLen":25, + "network":"192.184.131.128\/25", + "version":1738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.144.0", + "prefixLen":25, + "network":"192.184.144.0\/25", + "version":1737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.144.128", + "prefixLen":25, + "network":"192.184.144.128\/25", + "version":1736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.145.0", + "prefixLen":25, + "network":"192.184.145.0\/25", + "version":1735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.145.128", + "prefixLen":25, + "network":"192.184.145.128\/25", + "version":1734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.146.0", + "prefixLen":25, + "network":"192.184.146.0\/25", + "version":1733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.146.128", + "prefixLen":25, + "network":"192.184.146.128\/25", + "version":1732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.147.0", + "prefixLen":25, + "network":"192.184.147.0\/25", + "version":1731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.147.128", + "prefixLen":25, + "network":"192.184.147.128\/25", + "version":1730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.160.0", + "prefixLen":25, + "network":"192.184.160.0\/25", + "version":1729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.160.128", + "prefixLen":25, + "network":"192.184.160.128\/25", + "version":1728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.161.0", + "prefixLen":25, + "network":"192.184.161.0\/25", + "version":1727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.161.128", + "prefixLen":25, + "network":"192.184.161.128\/25", + "version":1726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.162.0", + "prefixLen":25, + "network":"192.184.162.0\/25", + "version":1725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.162.128", + "prefixLen":25, + "network":"192.184.162.128\/25", + "version":1724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.163.0", + "prefixLen":25, + "network":"192.184.163.0\/25", + "version":1723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.163.128", + "prefixLen":25, + "network":"192.184.163.128\/25", + "version":1722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.176.0", + "prefixLen":25, + "network":"192.184.176.0\/25", + "version":1721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.176.128", + "prefixLen":25, + "network":"192.184.176.128\/25", + "version":1720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.177.0", + "prefixLen":25, + "network":"192.184.177.0\/25", + "version":1719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.177.128", + "prefixLen":25, + "network":"192.184.177.128\/25", + "version":1718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.178.0", + "prefixLen":25, + "network":"192.184.178.0\/25", + "version":1717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.178.128", + "prefixLen":25, + "network":"192.184.178.128\/25", + "version":1716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.179.0", + "prefixLen":25, + "network":"192.184.179.0\/25", + "version":1715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.179.128", + "prefixLen":25, + "network":"192.184.179.128\/25", + "version":1714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.192.0", + "prefixLen":25, + "network":"192.184.192.0\/25", + "version":1713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.192.128", + "prefixLen":25, + "network":"192.184.192.128\/25", + "version":1712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.193.0", + "prefixLen":25, + "network":"192.184.193.0\/25", + "version":1711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.193.128", + "prefixLen":25, + "network":"192.184.193.128\/25", + "version":1710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.194.0", + "prefixLen":25, + "network":"192.184.194.0\/25", + "version":1709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.194.128", + "prefixLen":25, + "network":"192.184.194.128\/25", + "version":1708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.195.0", + "prefixLen":25, + "network":"192.184.195.0\/25", + "version":1707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.195.128", + "prefixLen":25, + "network":"192.184.195.128\/25", + "version":1706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.208.0", + "prefixLen":25, + "network":"192.184.208.0\/25", + "version":1705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.208.128", + "prefixLen":25, + "network":"192.184.208.128\/25", + "version":1704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.209.0", + "prefixLen":25, + "network":"192.184.209.0\/25", + "version":1703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.209.128", + "prefixLen":25, + "network":"192.184.209.128\/25", + "version":1702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.210.0", + "prefixLen":25, + "network":"192.184.210.0\/25", + "version":1701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.210.128", + "prefixLen":25, + "network":"192.184.210.128\/25", + "version":1700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.211.0", + "prefixLen":25, + "network":"192.184.211.0\/25", + "version":1699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.211.128", + "prefixLen":25, + "network":"192.184.211.128\/25", + "version":1698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.224.0", + "prefixLen":25, + "network":"192.184.224.0\/25", + "version":1697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.224.128", + "prefixLen":25, + "network":"192.184.224.128\/25", + "version":1696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.225.0", + "prefixLen":25, + "network":"192.184.225.0\/25", + "version":1695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.225.128", + "prefixLen":25, + "network":"192.184.225.128\/25", + "version":1694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.226.0", + "prefixLen":25, + "network":"192.184.226.0\/25", + "version":1693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.226.128", + "prefixLen":25, + "network":"192.184.226.128\/25", + "version":1692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.227.0", + "prefixLen":25, + "network":"192.184.227.0\/25", + "version":1691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.227.128", + "prefixLen":25, + "network":"192.184.227.128\/25", + "version":1690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.240.0", + "prefixLen":25, + "network":"192.184.240.0\/25", + "version":1689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.240.128", + "prefixLen":25, + "network":"192.184.240.128\/25", + "version":1688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.241.0", + "prefixLen":25, + "network":"192.184.241.0\/25", + "version":1687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.241.128", + "prefixLen":25, + "network":"192.184.241.128\/25", + "version":1686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.242.0", + "prefixLen":25, + "network":"192.184.242.0\/25", + "version":1685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.242.128", + "prefixLen":25, + "network":"192.184.242.128\/25", + "version":1684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.243.0", + "prefixLen":25, + "network":"192.184.243.0\/25", + "version":1683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.184.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.184.243.128", + "prefixLen":25, + "network":"192.184.243.128\/25", + "version":1682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64616 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.0.0", + "prefixLen":25, + "network":"192.185.0.0\/25", + "version":1809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.0.128", + "prefixLen":25, + "network":"192.185.0.128\/25", + "version":1936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.1.0", + "prefixLen":25, + "network":"192.185.1.0\/25", + "version":1935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.1.128", + "prefixLen":25, + "network":"192.185.1.128\/25", + "version":1934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.2.0", + "prefixLen":25, + "network":"192.185.2.0\/25", + "version":1933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.2.128", + "prefixLen":25, + "network":"192.185.2.128\/25", + "version":1932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.3.0", + "prefixLen":25, + "network":"192.185.3.0\/25", + "version":1931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.3.128", + "prefixLen":25, + "network":"192.185.3.128\/25", + "version":1930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.16.0", + "prefixLen":25, + "network":"192.185.16.0\/25", + "version":1929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.16.128", + "prefixLen":25, + "network":"192.185.16.128\/25", + "version":1928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.17.0", + "prefixLen":25, + "network":"192.185.17.0\/25", + "version":1927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.17.128", + "prefixLen":25, + "network":"192.185.17.128\/25", + "version":1926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.18.0", + "prefixLen":25, + "network":"192.185.18.0\/25", + "version":1925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.18.128", + "prefixLen":25, + "network":"192.185.18.128\/25", + "version":1924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.19.0", + "prefixLen":25, + "network":"192.185.19.0\/25", + "version":1923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.19.128", + "prefixLen":25, + "network":"192.185.19.128\/25", + "version":1922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.32.0", + "prefixLen":25, + "network":"192.185.32.0\/25", + "version":1921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.32.128", + "prefixLen":25, + "network":"192.185.32.128\/25", + "version":1920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.33.0", + "prefixLen":25, + "network":"192.185.33.0\/25", + "version":1919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.33.128", + "prefixLen":25, + "network":"192.185.33.128\/25", + "version":1918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.34.0", + "prefixLen":25, + "network":"192.185.34.0\/25", + "version":1917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.34.128", + "prefixLen":25, + "network":"192.185.34.128\/25", + "version":1916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.35.0", + "prefixLen":25, + "network":"192.185.35.0\/25", + "version":1915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.35.128", + "prefixLen":25, + "network":"192.185.35.128\/25", + "version":1914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.48.0", + "prefixLen":25, + "network":"192.185.48.0\/25", + "version":1913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.48.128", + "prefixLen":25, + "network":"192.185.48.128\/25", + "version":1912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.49.0", + "prefixLen":25, + "network":"192.185.49.0\/25", + "version":1911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.49.128", + "prefixLen":25, + "network":"192.185.49.128\/25", + "version":1910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.50.0", + "prefixLen":25, + "network":"192.185.50.0\/25", + "version":1909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.50.128", + "prefixLen":25, + "network":"192.185.50.128\/25", + "version":1908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.51.0", + "prefixLen":25, + "network":"192.185.51.0\/25", + "version":1907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.51.128", + "prefixLen":25, + "network":"192.185.51.128\/25", + "version":1906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.64.0", + "prefixLen":25, + "network":"192.185.64.0\/25", + "version":1905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.64.128", + "prefixLen":25, + "network":"192.185.64.128\/25", + "version":1904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.65.0", + "prefixLen":25, + "network":"192.185.65.0\/25", + "version":1903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.65.128", + "prefixLen":25, + "network":"192.185.65.128\/25", + "version":1902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.66.0", + "prefixLen":25, + "network":"192.185.66.0\/25", + "version":1901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.66.128", + "prefixLen":25, + "network":"192.185.66.128\/25", + "version":1900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.67.0", + "prefixLen":25, + "network":"192.185.67.0\/25", + "version":1899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.67.128", + "prefixLen":25, + "network":"192.185.67.128\/25", + "version":1898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.80.0", + "prefixLen":25, + "network":"192.185.80.0\/25", + "version":1897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.80.128", + "prefixLen":25, + "network":"192.185.80.128\/25", + "version":1896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.81.0", + "prefixLen":25, + "network":"192.185.81.0\/25", + "version":1895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.81.128", + "prefixLen":25, + "network":"192.185.81.128\/25", + "version":1894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.82.0", + "prefixLen":25, + "network":"192.185.82.0\/25", + "version":1893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.82.128", + "prefixLen":25, + "network":"192.185.82.128\/25", + "version":1892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.83.0", + "prefixLen":25, + "network":"192.185.83.0\/25", + "version":1891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.83.128", + "prefixLen":25, + "network":"192.185.83.128\/25", + "version":1890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.96.0", + "prefixLen":25, + "network":"192.185.96.0\/25", + "version":1889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.96.128", + "prefixLen":25, + "network":"192.185.96.128\/25", + "version":1888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.97.0", + "prefixLen":25, + "network":"192.185.97.0\/25", + "version":1887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.97.128", + "prefixLen":25, + "network":"192.185.97.128\/25", + "version":1886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.98.0", + "prefixLen":25, + "network":"192.185.98.0\/25", + "version":1885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.98.128", + "prefixLen":25, + "network":"192.185.98.128\/25", + "version":1884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.99.0", + "prefixLen":25, + "network":"192.185.99.0\/25", + "version":1883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.99.128", + "prefixLen":25, + "network":"192.185.99.128\/25", + "version":1882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.112.0", + "prefixLen":25, + "network":"192.185.112.0\/25", + "version":1881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.112.128", + "prefixLen":25, + "network":"192.185.112.128\/25", + "version":1880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.113.0", + "prefixLen":25, + "network":"192.185.113.0\/25", + "version":1879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.113.128", + "prefixLen":25, + "network":"192.185.113.128\/25", + "version":1878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.114.0", + "prefixLen":25, + "network":"192.185.114.0\/25", + "version":1877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.114.128", + "prefixLen":25, + "network":"192.185.114.128\/25", + "version":1876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.115.0", + "prefixLen":25, + "network":"192.185.115.0\/25", + "version":1875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.115.128", + "prefixLen":25, + "network":"192.185.115.128\/25", + "version":1874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.128.0", + "prefixLen":25, + "network":"192.185.128.0\/25", + "version":1873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.128.128", + "prefixLen":25, + "network":"192.185.128.128\/25", + "version":1872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.129.0", + "prefixLen":25, + "network":"192.185.129.0\/25", + "version":1871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.129.128", + "prefixLen":25, + "network":"192.185.129.128\/25", + "version":1870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.130.0", + "prefixLen":25, + "network":"192.185.130.0\/25", + "version":1869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.130.128", + "prefixLen":25, + "network":"192.185.130.128\/25", + "version":1868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.131.0", + "prefixLen":25, + "network":"192.185.131.0\/25", + "version":1867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.131.128", + "prefixLen":25, + "network":"192.185.131.128\/25", + "version":1866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.144.0", + "prefixLen":25, + "network":"192.185.144.0\/25", + "version":1865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.144.128", + "prefixLen":25, + "network":"192.185.144.128\/25", + "version":1864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.145.0", + "prefixLen":25, + "network":"192.185.145.0\/25", + "version":1863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.145.128", + "prefixLen":25, + "network":"192.185.145.128\/25", + "version":1862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.146.0", + "prefixLen":25, + "network":"192.185.146.0\/25", + "version":1861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.146.128", + "prefixLen":25, + "network":"192.185.146.128\/25", + "version":1860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.147.0", + "prefixLen":25, + "network":"192.185.147.0\/25", + "version":1859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.147.128", + "prefixLen":25, + "network":"192.185.147.128\/25", + "version":1858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.160.0", + "prefixLen":25, + "network":"192.185.160.0\/25", + "version":1857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.160.128", + "prefixLen":25, + "network":"192.185.160.128\/25", + "version":1856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.161.0", + "prefixLen":25, + "network":"192.185.161.0\/25", + "version":1855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.161.128", + "prefixLen":25, + "network":"192.185.161.128\/25", + "version":1854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.162.0", + "prefixLen":25, + "network":"192.185.162.0\/25", + "version":1853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.162.128", + "prefixLen":25, + "network":"192.185.162.128\/25", + "version":1852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.163.0", + "prefixLen":25, + "network":"192.185.163.0\/25", + "version":1851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.163.128", + "prefixLen":25, + "network":"192.185.163.128\/25", + "version":1850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.176.0", + "prefixLen":25, + "network":"192.185.176.0\/25", + "version":1849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.176.128", + "prefixLen":25, + "network":"192.185.176.128\/25", + "version":1848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.177.0", + "prefixLen":25, + "network":"192.185.177.0\/25", + "version":1847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.177.128", + "prefixLen":25, + "network":"192.185.177.128\/25", + "version":1846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.178.0", + "prefixLen":25, + "network":"192.185.178.0\/25", + "version":1845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.178.128", + "prefixLen":25, + "network":"192.185.178.128\/25", + "version":1844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.179.0", + "prefixLen":25, + "network":"192.185.179.0\/25", + "version":1843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.179.128", + "prefixLen":25, + "network":"192.185.179.128\/25", + "version":1842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.192.0", + "prefixLen":25, + "network":"192.185.192.0\/25", + "version":1841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.192.128", + "prefixLen":25, + "network":"192.185.192.128\/25", + "version":1840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.193.0", + "prefixLen":25, + "network":"192.185.193.0\/25", + "version":1839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.193.128", + "prefixLen":25, + "network":"192.185.193.128\/25", + "version":1838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.194.0", + "prefixLen":25, + "network":"192.185.194.0\/25", + "version":1837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.194.128", + "prefixLen":25, + "network":"192.185.194.128\/25", + "version":1836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.195.0", + "prefixLen":25, + "network":"192.185.195.0\/25", + "version":1835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.195.128", + "prefixLen":25, + "network":"192.185.195.128\/25", + "version":1834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.208.0", + "prefixLen":25, + "network":"192.185.208.0\/25", + "version":1833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.208.128", + "prefixLen":25, + "network":"192.185.208.128\/25", + "version":1832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.209.0", + "prefixLen":25, + "network":"192.185.209.0\/25", + "version":1831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.209.128", + "prefixLen":25, + "network":"192.185.209.128\/25", + "version":1830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.210.0", + "prefixLen":25, + "network":"192.185.210.0\/25", + "version":1829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.210.128", + "prefixLen":25, + "network":"192.185.210.128\/25", + "version":1828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.211.0", + "prefixLen":25, + "network":"192.185.211.0\/25", + "version":1827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.211.128", + "prefixLen":25, + "network":"192.185.211.128\/25", + "version":1826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.224.0", + "prefixLen":25, + "network":"192.185.224.0\/25", + "version":1825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.224.128", + "prefixLen":25, + "network":"192.185.224.128\/25", + "version":1824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.225.0", + "prefixLen":25, + "network":"192.185.225.0\/25", + "version":1823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.225.128", + "prefixLen":25, + "network":"192.185.225.128\/25", + "version":1822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.226.0", + "prefixLen":25, + "network":"192.185.226.0\/25", + "version":1821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.226.128", + "prefixLen":25, + "network":"192.185.226.128\/25", + "version":1820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.227.0", + "prefixLen":25, + "network":"192.185.227.0\/25", + "version":1819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.227.128", + "prefixLen":25, + "network":"192.185.227.128\/25", + "version":1818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.240.0", + "prefixLen":25, + "network":"192.185.240.0\/25", + "version":1817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.240.128", + "prefixLen":25, + "network":"192.185.240.128\/25", + "version":1816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.241.0", + "prefixLen":25, + "network":"192.185.241.0\/25", + "version":1815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.241.128", + "prefixLen":25, + "network":"192.185.241.128\/25", + "version":1814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.242.0", + "prefixLen":25, + "network":"192.185.242.0\/25", + "version":1813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.242.128", + "prefixLen":25, + "network":"192.185.242.128\/25", + "version":1812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.243.0", + "prefixLen":25, + "network":"192.185.243.0\/25", + "version":1811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.185.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.185.243.128", + "prefixLen":25, + "network":"192.185.243.128\/25", + "version":1810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64617 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.0.0", + "prefixLen":25, + "network":"192.186.0.0\/25", + "version":1937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.0.128", + "prefixLen":25, + "network":"192.186.0.128\/25", + "version":2064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.1.0", + "prefixLen":25, + "network":"192.186.1.0\/25", + "version":2063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.1.128", + "prefixLen":25, + "network":"192.186.1.128\/25", + "version":2062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.2.0", + "prefixLen":25, + "network":"192.186.2.0\/25", + "version":2061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.2.128", + "prefixLen":25, + "network":"192.186.2.128\/25", + "version":2060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.3.0", + "prefixLen":25, + "network":"192.186.3.0\/25", + "version":2059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.3.128", + "prefixLen":25, + "network":"192.186.3.128\/25", + "version":2058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.16.0", + "prefixLen":25, + "network":"192.186.16.0\/25", + "version":2057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.16.128", + "prefixLen":25, + "network":"192.186.16.128\/25", + "version":2056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.17.0", + "prefixLen":25, + "network":"192.186.17.0\/25", + "version":2055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.17.128", + "prefixLen":25, + "network":"192.186.17.128\/25", + "version":2054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.18.0", + "prefixLen":25, + "network":"192.186.18.0\/25", + "version":2053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.18.128", + "prefixLen":25, + "network":"192.186.18.128\/25", + "version":2052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.19.0", + "prefixLen":25, + "network":"192.186.19.0\/25", + "version":2051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.19.128", + "prefixLen":25, + "network":"192.186.19.128\/25", + "version":2050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.32.0", + "prefixLen":25, + "network":"192.186.32.0\/25", + "version":2049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.32.128", + "prefixLen":25, + "network":"192.186.32.128\/25", + "version":2048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.33.0", + "prefixLen":25, + "network":"192.186.33.0\/25", + "version":2047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.33.128", + "prefixLen":25, + "network":"192.186.33.128\/25", + "version":2046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.34.0", + "prefixLen":25, + "network":"192.186.34.0\/25", + "version":2045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.34.128", + "prefixLen":25, + "network":"192.186.34.128\/25", + "version":2044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.35.0", + "prefixLen":25, + "network":"192.186.35.0\/25", + "version":2043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.35.128", + "prefixLen":25, + "network":"192.186.35.128\/25", + "version":2042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.48.0", + "prefixLen":25, + "network":"192.186.48.0\/25", + "version":2041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.48.128", + "prefixLen":25, + "network":"192.186.48.128\/25", + "version":2040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.49.0", + "prefixLen":25, + "network":"192.186.49.0\/25", + "version":2039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.49.128", + "prefixLen":25, + "network":"192.186.49.128\/25", + "version":2038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.50.0", + "prefixLen":25, + "network":"192.186.50.0\/25", + "version":2037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.50.128", + "prefixLen":25, + "network":"192.186.50.128\/25", + "version":2036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.51.0", + "prefixLen":25, + "network":"192.186.51.0\/25", + "version":2035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.51.128", + "prefixLen":25, + "network":"192.186.51.128\/25", + "version":2034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.64.0", + "prefixLen":25, + "network":"192.186.64.0\/25", + "version":2033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.64.128", + "prefixLen":25, + "network":"192.186.64.128\/25", + "version":2032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.65.0", + "prefixLen":25, + "network":"192.186.65.0\/25", + "version":2031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.65.128", + "prefixLen":25, + "network":"192.186.65.128\/25", + "version":2030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.66.0", + "prefixLen":25, + "network":"192.186.66.0\/25", + "version":2029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.66.128", + "prefixLen":25, + "network":"192.186.66.128\/25", + "version":2028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.67.0", + "prefixLen":25, + "network":"192.186.67.0\/25", + "version":2027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.67.128", + "prefixLen":25, + "network":"192.186.67.128\/25", + "version":2026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.80.0", + "prefixLen":25, + "network":"192.186.80.0\/25", + "version":2025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.80.128", + "prefixLen":25, + "network":"192.186.80.128\/25", + "version":2024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.81.0", + "prefixLen":25, + "network":"192.186.81.0\/25", + "version":2023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.81.128", + "prefixLen":25, + "network":"192.186.81.128\/25", + "version":2022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.82.0", + "prefixLen":25, + "network":"192.186.82.0\/25", + "version":2021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.82.128", + "prefixLen":25, + "network":"192.186.82.128\/25", + "version":2020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.83.0", + "prefixLen":25, + "network":"192.186.83.0\/25", + "version":2019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.83.128", + "prefixLen":25, + "network":"192.186.83.128\/25", + "version":2018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.96.0", + "prefixLen":25, + "network":"192.186.96.0\/25", + "version":2017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.96.128", + "prefixLen":25, + "network":"192.186.96.128\/25", + "version":2016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.97.0", + "prefixLen":25, + "network":"192.186.97.0\/25", + "version":2015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.97.128", + "prefixLen":25, + "network":"192.186.97.128\/25", + "version":2014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.98.0", + "prefixLen":25, + "network":"192.186.98.0\/25", + "version":2013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.98.128", + "prefixLen":25, + "network":"192.186.98.128\/25", + "version":2012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.99.0", + "prefixLen":25, + "network":"192.186.99.0\/25", + "version":2011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.99.128", + "prefixLen":25, + "network":"192.186.99.128\/25", + "version":2010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.112.0", + "prefixLen":25, + "network":"192.186.112.0\/25", + "version":2009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.112.128", + "prefixLen":25, + "network":"192.186.112.128\/25", + "version":2008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.113.0", + "prefixLen":25, + "network":"192.186.113.0\/25", + "version":2007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.113.128", + "prefixLen":25, + "network":"192.186.113.128\/25", + "version":2006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.114.0", + "prefixLen":25, + "network":"192.186.114.0\/25", + "version":2005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.114.128", + "prefixLen":25, + "network":"192.186.114.128\/25", + "version":2004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.115.0", + "prefixLen":25, + "network":"192.186.115.0\/25", + "version":2003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.115.128", + "prefixLen":25, + "network":"192.186.115.128\/25", + "version":2002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.128.0", + "prefixLen":25, + "network":"192.186.128.0\/25", + "version":2001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.128.128", + "prefixLen":25, + "network":"192.186.128.128\/25", + "version":2000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.129.0", + "prefixLen":25, + "network":"192.186.129.0\/25", + "version":1999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.129.128", + "prefixLen":25, + "network":"192.186.129.128\/25", + "version":1998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.130.0", + "prefixLen":25, + "network":"192.186.130.0\/25", + "version":1997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.130.128", + "prefixLen":25, + "network":"192.186.130.128\/25", + "version":1996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.131.0", + "prefixLen":25, + "network":"192.186.131.0\/25", + "version":1995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.131.128", + "prefixLen":25, + "network":"192.186.131.128\/25", + "version":1994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.144.0", + "prefixLen":25, + "network":"192.186.144.0\/25", + "version":1993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.144.128", + "prefixLen":25, + "network":"192.186.144.128\/25", + "version":1992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.145.0", + "prefixLen":25, + "network":"192.186.145.0\/25", + "version":1991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.145.128", + "prefixLen":25, + "network":"192.186.145.128\/25", + "version":1990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.146.0", + "prefixLen":25, + "network":"192.186.146.0\/25", + "version":1989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.146.128", + "prefixLen":25, + "network":"192.186.146.128\/25", + "version":1988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.147.0", + "prefixLen":25, + "network":"192.186.147.0\/25", + "version":1987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.147.128", + "prefixLen":25, + "network":"192.186.147.128\/25", + "version":1986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.160.0", + "prefixLen":25, + "network":"192.186.160.0\/25", + "version":1985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.160.128", + "prefixLen":25, + "network":"192.186.160.128\/25", + "version":1984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.161.0", + "prefixLen":25, + "network":"192.186.161.0\/25", + "version":1983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.161.128", + "prefixLen":25, + "network":"192.186.161.128\/25", + "version":1982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.162.0", + "prefixLen":25, + "network":"192.186.162.0\/25", + "version":1981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.162.128", + "prefixLen":25, + "network":"192.186.162.128\/25", + "version":1980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.163.0", + "prefixLen":25, + "network":"192.186.163.0\/25", + "version":1979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.163.128", + "prefixLen":25, + "network":"192.186.163.128\/25", + "version":1978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.176.0", + "prefixLen":25, + "network":"192.186.176.0\/25", + "version":1977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.176.128", + "prefixLen":25, + "network":"192.186.176.128\/25", + "version":1976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.177.0", + "prefixLen":25, + "network":"192.186.177.0\/25", + "version":1975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.177.128", + "prefixLen":25, + "network":"192.186.177.128\/25", + "version":1974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.178.0", + "prefixLen":25, + "network":"192.186.178.0\/25", + "version":1973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.178.128", + "prefixLen":25, + "network":"192.186.178.128\/25", + "version":1972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.179.0", + "prefixLen":25, + "network":"192.186.179.0\/25", + "version":1971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.179.128", + "prefixLen":25, + "network":"192.186.179.128\/25", + "version":1970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.192.0", + "prefixLen":25, + "network":"192.186.192.0\/25", + "version":1969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.192.128", + "prefixLen":25, + "network":"192.186.192.128\/25", + "version":1968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.193.0", + "prefixLen":25, + "network":"192.186.193.0\/25", + "version":1967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.193.128", + "prefixLen":25, + "network":"192.186.193.128\/25", + "version":1966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.194.0", + "prefixLen":25, + "network":"192.186.194.0\/25", + "version":1965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.194.128", + "prefixLen":25, + "network":"192.186.194.128\/25", + "version":1964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.195.0", + "prefixLen":25, + "network":"192.186.195.0\/25", + "version":1963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.195.128", + "prefixLen":25, + "network":"192.186.195.128\/25", + "version":1962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.208.0", + "prefixLen":25, + "network":"192.186.208.0\/25", + "version":1961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.208.128", + "prefixLen":25, + "network":"192.186.208.128\/25", + "version":1960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.209.0", + "prefixLen":25, + "network":"192.186.209.0\/25", + "version":1959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.209.128", + "prefixLen":25, + "network":"192.186.209.128\/25", + "version":1958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.210.0", + "prefixLen":25, + "network":"192.186.210.0\/25", + "version":1957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.210.128", + "prefixLen":25, + "network":"192.186.210.128\/25", + "version":1956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.211.0", + "prefixLen":25, + "network":"192.186.211.0\/25", + "version":1955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.211.128", + "prefixLen":25, + "network":"192.186.211.128\/25", + "version":1954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.224.0", + "prefixLen":25, + "network":"192.186.224.0\/25", + "version":1953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.224.128", + "prefixLen":25, + "network":"192.186.224.128\/25", + "version":1952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.225.0", + "prefixLen":25, + "network":"192.186.225.0\/25", + "version":1951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.225.128", + "prefixLen":25, + "network":"192.186.225.128\/25", + "version":1950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.226.0", + "prefixLen":25, + "network":"192.186.226.0\/25", + "version":1949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.226.128", + "prefixLen":25, + "network":"192.186.226.128\/25", + "version":1948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.227.0", + "prefixLen":25, + "network":"192.186.227.0\/25", + "version":1947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.227.128", + "prefixLen":25, + "network":"192.186.227.128\/25", + "version":1946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.240.0", + "prefixLen":25, + "network":"192.186.240.0\/25", + "version":1945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.240.128", + "prefixLen":25, + "network":"192.186.240.128\/25", + "version":1944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.241.0", + "prefixLen":25, + "network":"192.186.241.0\/25", + "version":1943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.241.128", + "prefixLen":25, + "network":"192.186.241.128\/25", + "version":1942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.242.0", + "prefixLen":25, + "network":"192.186.242.0\/25", + "version":1941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.242.128", + "prefixLen":25, + "network":"192.186.242.128\/25", + "version":1940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.243.0", + "prefixLen":25, + "network":"192.186.243.0\/25", + "version":1939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.186.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.186.243.128", + "prefixLen":25, + "network":"192.186.243.128\/25", + "version":1938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64618 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.0.0", + "prefixLen":25, + "network":"192.187.0.0\/25", + "version":2065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.0.128", + "prefixLen":25, + "network":"192.187.0.128\/25", + "version":2192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.1.0", + "prefixLen":25, + "network":"192.187.1.0\/25", + "version":2191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.1.128", + "prefixLen":25, + "network":"192.187.1.128\/25", + "version":2190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.2.0", + "prefixLen":25, + "network":"192.187.2.0\/25", + "version":2189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.2.128", + "prefixLen":25, + "network":"192.187.2.128\/25", + "version":2188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.3.0", + "prefixLen":25, + "network":"192.187.3.0\/25", + "version":2187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.3.128", + "prefixLen":25, + "network":"192.187.3.128\/25", + "version":2186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.16.0", + "prefixLen":25, + "network":"192.187.16.0\/25", + "version":2185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.16.128", + "prefixLen":25, + "network":"192.187.16.128\/25", + "version":2184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.17.0", + "prefixLen":25, + "network":"192.187.17.0\/25", + "version":2183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.17.128", + "prefixLen":25, + "network":"192.187.17.128\/25", + "version":2182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.18.0", + "prefixLen":25, + "network":"192.187.18.0\/25", + "version":2181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.18.128", + "prefixLen":25, + "network":"192.187.18.128\/25", + "version":2180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.19.0", + "prefixLen":25, + "network":"192.187.19.0\/25", + "version":2179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.19.128", + "prefixLen":25, + "network":"192.187.19.128\/25", + "version":2178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.32.0", + "prefixLen":25, + "network":"192.187.32.0\/25", + "version":2177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.32.128", + "prefixLen":25, + "network":"192.187.32.128\/25", + "version":2176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.33.0", + "prefixLen":25, + "network":"192.187.33.0\/25", + "version":2175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.33.128", + "prefixLen":25, + "network":"192.187.33.128\/25", + "version":2174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.34.0", + "prefixLen":25, + "network":"192.187.34.0\/25", + "version":2173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.34.128", + "prefixLen":25, + "network":"192.187.34.128\/25", + "version":2172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.35.0", + "prefixLen":25, + "network":"192.187.35.0\/25", + "version":2171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.35.128", + "prefixLen":25, + "network":"192.187.35.128\/25", + "version":2170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.48.0", + "prefixLen":25, + "network":"192.187.48.0\/25", + "version":2169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.48.128", + "prefixLen":25, + "network":"192.187.48.128\/25", + "version":2168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.49.0", + "prefixLen":25, + "network":"192.187.49.0\/25", + "version":2167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.49.128", + "prefixLen":25, + "network":"192.187.49.128\/25", + "version":2166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.50.0", + "prefixLen":25, + "network":"192.187.50.0\/25", + "version":2165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.50.128", + "prefixLen":25, + "network":"192.187.50.128\/25", + "version":2164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.51.0", + "prefixLen":25, + "network":"192.187.51.0\/25", + "version":2163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.51.128", + "prefixLen":25, + "network":"192.187.51.128\/25", + "version":2162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.64.0", + "prefixLen":25, + "network":"192.187.64.0\/25", + "version":2161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.64.128", + "prefixLen":25, + "network":"192.187.64.128\/25", + "version":2160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.65.0", + "prefixLen":25, + "network":"192.187.65.0\/25", + "version":2159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.65.128", + "prefixLen":25, + "network":"192.187.65.128\/25", + "version":2158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.66.0", + "prefixLen":25, + "network":"192.187.66.0\/25", + "version":2157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.66.128", + "prefixLen":25, + "network":"192.187.66.128\/25", + "version":2156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.67.0", + "prefixLen":25, + "network":"192.187.67.0\/25", + "version":2155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.67.128", + "prefixLen":25, + "network":"192.187.67.128\/25", + "version":2154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.80.0", + "prefixLen":25, + "network":"192.187.80.0\/25", + "version":2153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.80.128", + "prefixLen":25, + "network":"192.187.80.128\/25", + "version":2152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.81.0", + "prefixLen":25, + "network":"192.187.81.0\/25", + "version":2151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.81.128", + "prefixLen":25, + "network":"192.187.81.128\/25", + "version":2150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.82.0", + "prefixLen":25, + "network":"192.187.82.0\/25", + "version":2149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.82.128", + "prefixLen":25, + "network":"192.187.82.128\/25", + "version":2148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.83.0", + "prefixLen":25, + "network":"192.187.83.0\/25", + "version":2147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.83.128", + "prefixLen":25, + "network":"192.187.83.128\/25", + "version":2146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.96.0", + "prefixLen":25, + "network":"192.187.96.0\/25", + "version":2145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.96.128", + "prefixLen":25, + "network":"192.187.96.128\/25", + "version":2144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.97.0", + "prefixLen":25, + "network":"192.187.97.0\/25", + "version":2143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.97.128", + "prefixLen":25, + "network":"192.187.97.128\/25", + "version":2142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.98.0", + "prefixLen":25, + "network":"192.187.98.0\/25", + "version":2141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.98.128", + "prefixLen":25, + "network":"192.187.98.128\/25", + "version":2140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.99.0", + "prefixLen":25, + "network":"192.187.99.0\/25", + "version":2139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.99.128", + "prefixLen":25, + "network":"192.187.99.128\/25", + "version":2138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.112.0", + "prefixLen":25, + "network":"192.187.112.0\/25", + "version":2137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.112.128", + "prefixLen":25, + "network":"192.187.112.128\/25", + "version":2136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.113.0", + "prefixLen":25, + "network":"192.187.113.0\/25", + "version":2135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.113.128", + "prefixLen":25, + "network":"192.187.113.128\/25", + "version":2134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.114.0", + "prefixLen":25, + "network":"192.187.114.0\/25", + "version":2133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.114.128", + "prefixLen":25, + "network":"192.187.114.128\/25", + "version":2132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.115.0", + "prefixLen":25, + "network":"192.187.115.0\/25", + "version":2131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.115.128", + "prefixLen":25, + "network":"192.187.115.128\/25", + "version":2130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.128.0", + "prefixLen":25, + "network":"192.187.128.0\/25", + "version":2129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.128.128", + "prefixLen":25, + "network":"192.187.128.128\/25", + "version":2128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.129.0", + "prefixLen":25, + "network":"192.187.129.0\/25", + "version":2127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.129.128", + "prefixLen":25, + "network":"192.187.129.128\/25", + "version":2126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.130.0", + "prefixLen":25, + "network":"192.187.130.0\/25", + "version":2125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.130.128", + "prefixLen":25, + "network":"192.187.130.128\/25", + "version":2124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.131.0", + "prefixLen":25, + "network":"192.187.131.0\/25", + "version":2123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.131.128", + "prefixLen":25, + "network":"192.187.131.128\/25", + "version":2122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.144.0", + "prefixLen":25, + "network":"192.187.144.0\/25", + "version":2121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.144.128", + "prefixLen":25, + "network":"192.187.144.128\/25", + "version":2120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.145.0", + "prefixLen":25, + "network":"192.187.145.0\/25", + "version":2119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.145.128", + "prefixLen":25, + "network":"192.187.145.128\/25", + "version":2118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.146.0", + "prefixLen":25, + "network":"192.187.146.0\/25", + "version":2117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.146.128", + "prefixLen":25, + "network":"192.187.146.128\/25", + "version":2116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.147.0", + "prefixLen":25, + "network":"192.187.147.0\/25", + "version":2115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.147.128", + "prefixLen":25, + "network":"192.187.147.128\/25", + "version":2114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.160.0", + "prefixLen":25, + "network":"192.187.160.0\/25", + "version":2113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.160.128", + "prefixLen":25, + "network":"192.187.160.128\/25", + "version":2112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.161.0", + "prefixLen":25, + "network":"192.187.161.0\/25", + "version":2111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.161.128", + "prefixLen":25, + "network":"192.187.161.128\/25", + "version":2110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.162.0", + "prefixLen":25, + "network":"192.187.162.0\/25", + "version":2109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.162.128", + "prefixLen":25, + "network":"192.187.162.128\/25", + "version":2108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.163.0", + "prefixLen":25, + "network":"192.187.163.0\/25", + "version":2107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.163.128", + "prefixLen":25, + "network":"192.187.163.128\/25", + "version":2106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.176.0", + "prefixLen":25, + "network":"192.187.176.0\/25", + "version":2105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.176.128", + "prefixLen":25, + "network":"192.187.176.128\/25", + "version":2104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.177.0", + "prefixLen":25, + "network":"192.187.177.0\/25", + "version":2103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.177.128", + "prefixLen":25, + "network":"192.187.177.128\/25", + "version":2102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.178.0", + "prefixLen":25, + "network":"192.187.178.0\/25", + "version":2101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.178.128", + "prefixLen":25, + "network":"192.187.178.128\/25", + "version":2100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.179.0", + "prefixLen":25, + "network":"192.187.179.0\/25", + "version":2099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.179.128", + "prefixLen":25, + "network":"192.187.179.128\/25", + "version":2098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.192.0", + "prefixLen":25, + "network":"192.187.192.0\/25", + "version":2097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.192.128", + "prefixLen":25, + "network":"192.187.192.128\/25", + "version":2096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.193.0", + "prefixLen":25, + "network":"192.187.193.0\/25", + "version":2095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.193.128", + "prefixLen":25, + "network":"192.187.193.128\/25", + "version":2094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.194.0", + "prefixLen":25, + "network":"192.187.194.0\/25", + "version":2093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.194.128", + "prefixLen":25, + "network":"192.187.194.128\/25", + "version":2092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.195.0", + "prefixLen":25, + "network":"192.187.195.0\/25", + "version":2091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.195.128", + "prefixLen":25, + "network":"192.187.195.128\/25", + "version":2090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.208.0", + "prefixLen":25, + "network":"192.187.208.0\/25", + "version":2089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.208.128", + "prefixLen":25, + "network":"192.187.208.128\/25", + "version":2088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.209.0", + "prefixLen":25, + "network":"192.187.209.0\/25", + "version":2087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.209.128", + "prefixLen":25, + "network":"192.187.209.128\/25", + "version":2086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.210.0", + "prefixLen":25, + "network":"192.187.210.0\/25", + "version":2085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.210.128", + "prefixLen":25, + "network":"192.187.210.128\/25", + "version":2084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.211.0", + "prefixLen":25, + "network":"192.187.211.0\/25", + "version":2083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.211.128", + "prefixLen":25, + "network":"192.187.211.128\/25", + "version":2082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.224.0", + "prefixLen":25, + "network":"192.187.224.0\/25", + "version":2081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.224.128", + "prefixLen":25, + "network":"192.187.224.128\/25", + "version":2080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.225.0", + "prefixLen":25, + "network":"192.187.225.0\/25", + "version":2079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.225.128", + "prefixLen":25, + "network":"192.187.225.128\/25", + "version":2078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.226.0", + "prefixLen":25, + "network":"192.187.226.0\/25", + "version":2077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.226.128", + "prefixLen":25, + "network":"192.187.226.128\/25", + "version":2076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.227.0", + "prefixLen":25, + "network":"192.187.227.0\/25", + "version":2075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.227.128", + "prefixLen":25, + "network":"192.187.227.128\/25", + "version":2074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.240.0", + "prefixLen":25, + "network":"192.187.240.0\/25", + "version":2073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.240.128", + "prefixLen":25, + "network":"192.187.240.128\/25", + "version":2072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.241.0", + "prefixLen":25, + "network":"192.187.241.0\/25", + "version":2071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.241.128", + "prefixLen":25, + "network":"192.187.241.128\/25", + "version":2070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.242.0", + "prefixLen":25, + "network":"192.187.242.0\/25", + "version":2069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.242.128", + "prefixLen":25, + "network":"192.187.242.128\/25", + "version":2068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.243.0", + "prefixLen":25, + "network":"192.187.243.0\/25", + "version":2067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.187.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.187.243.128", + "prefixLen":25, + "network":"192.187.243.128\/25", + "version":2066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64619 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.0.0", + "prefixLen":25, + "network":"192.188.0.0\/25", + "version":2193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.0.128", + "prefixLen":25, + "network":"192.188.0.128\/25", + "version":2320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.1.0", + "prefixLen":25, + "network":"192.188.1.0\/25", + "version":2319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.1.128", + "prefixLen":25, + "network":"192.188.1.128\/25", + "version":2318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.2.0", + "prefixLen":25, + "network":"192.188.2.0\/25", + "version":2317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.2.128", + "prefixLen":25, + "network":"192.188.2.128\/25", + "version":2316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.3.0", + "prefixLen":25, + "network":"192.188.3.0\/25", + "version":2315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.3.128", + "prefixLen":25, + "network":"192.188.3.128\/25", + "version":2314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.16.0", + "prefixLen":25, + "network":"192.188.16.0\/25", + "version":2313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.16.128", + "prefixLen":25, + "network":"192.188.16.128\/25", + "version":2312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.17.0", + "prefixLen":25, + "network":"192.188.17.0\/25", + "version":2311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.17.128", + "prefixLen":25, + "network":"192.188.17.128\/25", + "version":2310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.18.0", + "prefixLen":25, + "network":"192.188.18.0\/25", + "version":2309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.18.128", + "prefixLen":25, + "network":"192.188.18.128\/25", + "version":2308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.19.0", + "prefixLen":25, + "network":"192.188.19.0\/25", + "version":2307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.19.128", + "prefixLen":25, + "network":"192.188.19.128\/25", + "version":2306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.32.0", + "prefixLen":25, + "network":"192.188.32.0\/25", + "version":2305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.32.128", + "prefixLen":25, + "network":"192.188.32.128\/25", + "version":2304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.33.0", + "prefixLen":25, + "network":"192.188.33.0\/25", + "version":2303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.33.128", + "prefixLen":25, + "network":"192.188.33.128\/25", + "version":2302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.34.0", + "prefixLen":25, + "network":"192.188.34.0\/25", + "version":2301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.34.128", + "prefixLen":25, + "network":"192.188.34.128\/25", + "version":2300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.35.0", + "prefixLen":25, + "network":"192.188.35.0\/25", + "version":2299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.35.128", + "prefixLen":25, + "network":"192.188.35.128\/25", + "version":2298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.48.0", + "prefixLen":25, + "network":"192.188.48.0\/25", + "version":2297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.48.128", + "prefixLen":25, + "network":"192.188.48.128\/25", + "version":2296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.49.0", + "prefixLen":25, + "network":"192.188.49.0\/25", + "version":2295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.49.128", + "prefixLen":25, + "network":"192.188.49.128\/25", + "version":2294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.50.0", + "prefixLen":25, + "network":"192.188.50.0\/25", + "version":2293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.50.128", + "prefixLen":25, + "network":"192.188.50.128\/25", + "version":2292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.51.0", + "prefixLen":25, + "network":"192.188.51.0\/25", + "version":2291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.51.128", + "prefixLen":25, + "network":"192.188.51.128\/25", + "version":2290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.64.0", + "prefixLen":25, + "network":"192.188.64.0\/25", + "version":2289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.64.128", + "prefixLen":25, + "network":"192.188.64.128\/25", + "version":2288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.65.0", + "prefixLen":25, + "network":"192.188.65.0\/25", + "version":2287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.65.128", + "prefixLen":25, + "network":"192.188.65.128\/25", + "version":2286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.66.0", + "prefixLen":25, + "network":"192.188.66.0\/25", + "version":2285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.66.128", + "prefixLen":25, + "network":"192.188.66.128\/25", + "version":2284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.67.0", + "prefixLen":25, + "network":"192.188.67.0\/25", + "version":2283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.67.128", + "prefixLen":25, + "network":"192.188.67.128\/25", + "version":2282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.80.0", + "prefixLen":25, + "network":"192.188.80.0\/25", + "version":2281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.80.128", + "prefixLen":25, + "network":"192.188.80.128\/25", + "version":2280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.81.0", + "prefixLen":25, + "network":"192.188.81.0\/25", + "version":2279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.81.128", + "prefixLen":25, + "network":"192.188.81.128\/25", + "version":2278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.82.0", + "prefixLen":25, + "network":"192.188.82.0\/25", + "version":2277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.82.128", + "prefixLen":25, + "network":"192.188.82.128\/25", + "version":2276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.83.0", + "prefixLen":25, + "network":"192.188.83.0\/25", + "version":2275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.83.128", + "prefixLen":25, + "network":"192.188.83.128\/25", + "version":2274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.96.0", + "prefixLen":25, + "network":"192.188.96.0\/25", + "version":2273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.96.128", + "prefixLen":25, + "network":"192.188.96.128\/25", + "version":2272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.97.0", + "prefixLen":25, + "network":"192.188.97.0\/25", + "version":2271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.97.128", + "prefixLen":25, + "network":"192.188.97.128\/25", + "version":2270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.98.0", + "prefixLen":25, + "network":"192.188.98.0\/25", + "version":2269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.98.128", + "prefixLen":25, + "network":"192.188.98.128\/25", + "version":2268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.99.0", + "prefixLen":25, + "network":"192.188.99.0\/25", + "version":2267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.99.128", + "prefixLen":25, + "network":"192.188.99.128\/25", + "version":2266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.112.0", + "prefixLen":25, + "network":"192.188.112.0\/25", + "version":2265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.112.128", + "prefixLen":25, + "network":"192.188.112.128\/25", + "version":2264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.113.0", + "prefixLen":25, + "network":"192.188.113.0\/25", + "version":2263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.113.128", + "prefixLen":25, + "network":"192.188.113.128\/25", + "version":2262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.114.0", + "prefixLen":25, + "network":"192.188.114.0\/25", + "version":2261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.114.128", + "prefixLen":25, + "network":"192.188.114.128\/25", + "version":2260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.115.0", + "prefixLen":25, + "network":"192.188.115.0\/25", + "version":2259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.115.128", + "prefixLen":25, + "network":"192.188.115.128\/25", + "version":2258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.128.0", + "prefixLen":25, + "network":"192.188.128.0\/25", + "version":2257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.128.128", + "prefixLen":25, + "network":"192.188.128.128\/25", + "version":2256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.129.0", + "prefixLen":25, + "network":"192.188.129.0\/25", + "version":2255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.129.128", + "prefixLen":25, + "network":"192.188.129.128\/25", + "version":2254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.130.0", + "prefixLen":25, + "network":"192.188.130.0\/25", + "version":2253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.130.128", + "prefixLen":25, + "network":"192.188.130.128\/25", + "version":2252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.131.0", + "prefixLen":25, + "network":"192.188.131.0\/25", + "version":2251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.131.128", + "prefixLen":25, + "network":"192.188.131.128\/25", + "version":2250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.144.0", + "prefixLen":25, + "network":"192.188.144.0\/25", + "version":2249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.144.128", + "prefixLen":25, + "network":"192.188.144.128\/25", + "version":2248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.145.0", + "prefixLen":25, + "network":"192.188.145.0\/25", + "version":2247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.145.128", + "prefixLen":25, + "network":"192.188.145.128\/25", + "version":2246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.146.0", + "prefixLen":25, + "network":"192.188.146.0\/25", + "version":2245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.146.128", + "prefixLen":25, + "network":"192.188.146.128\/25", + "version":2244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.147.0", + "prefixLen":25, + "network":"192.188.147.0\/25", + "version":2243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.147.128", + "prefixLen":25, + "network":"192.188.147.128\/25", + "version":2242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.160.0", + "prefixLen":25, + "network":"192.188.160.0\/25", + "version":2241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.160.128", + "prefixLen":25, + "network":"192.188.160.128\/25", + "version":2240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.161.0", + "prefixLen":25, + "network":"192.188.161.0\/25", + "version":2239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.161.128", + "prefixLen":25, + "network":"192.188.161.128\/25", + "version":2238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.162.0", + "prefixLen":25, + "network":"192.188.162.0\/25", + "version":2237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.162.128", + "prefixLen":25, + "network":"192.188.162.128\/25", + "version":2236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.163.0", + "prefixLen":25, + "network":"192.188.163.0\/25", + "version":2235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.163.128", + "prefixLen":25, + "network":"192.188.163.128\/25", + "version":2234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.176.0", + "prefixLen":25, + "network":"192.188.176.0\/25", + "version":2233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.176.128", + "prefixLen":25, + "network":"192.188.176.128\/25", + "version":2232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.177.0", + "prefixLen":25, + "network":"192.188.177.0\/25", + "version":2231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.177.128", + "prefixLen":25, + "network":"192.188.177.128\/25", + "version":2230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.178.0", + "prefixLen":25, + "network":"192.188.178.0\/25", + "version":2229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.178.128", + "prefixLen":25, + "network":"192.188.178.128\/25", + "version":2228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.179.0", + "prefixLen":25, + "network":"192.188.179.0\/25", + "version":2227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.179.128", + "prefixLen":25, + "network":"192.188.179.128\/25", + "version":2226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.192.0", + "prefixLen":25, + "network":"192.188.192.0\/25", + "version":2225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.192.128", + "prefixLen":25, + "network":"192.188.192.128\/25", + "version":2224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.193.0", + "prefixLen":25, + "network":"192.188.193.0\/25", + "version":2223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.193.128", + "prefixLen":25, + "network":"192.188.193.128\/25", + "version":2222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.194.0", + "prefixLen":25, + "network":"192.188.194.0\/25", + "version":2221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.194.128", + "prefixLen":25, + "network":"192.188.194.128\/25", + "version":2220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.195.0", + "prefixLen":25, + "network":"192.188.195.0\/25", + "version":2219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.195.128", + "prefixLen":25, + "network":"192.188.195.128\/25", + "version":2218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.208.0", + "prefixLen":25, + "network":"192.188.208.0\/25", + "version":2217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.208.128", + "prefixLen":25, + "network":"192.188.208.128\/25", + "version":2216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.209.0", + "prefixLen":25, + "network":"192.188.209.0\/25", + "version":2215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.209.128", + "prefixLen":25, + "network":"192.188.209.128\/25", + "version":2214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.210.0", + "prefixLen":25, + "network":"192.188.210.0\/25", + "version":2213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.210.128", + "prefixLen":25, + "network":"192.188.210.128\/25", + "version":2212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.211.0", + "prefixLen":25, + "network":"192.188.211.0\/25", + "version":2211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.211.128", + "prefixLen":25, + "network":"192.188.211.128\/25", + "version":2210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.224.0", + "prefixLen":25, + "network":"192.188.224.0\/25", + "version":2209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.224.128", + "prefixLen":25, + "network":"192.188.224.128\/25", + "version":2208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.225.0", + "prefixLen":25, + "network":"192.188.225.0\/25", + "version":2207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.225.128", + "prefixLen":25, + "network":"192.188.225.128\/25", + "version":2206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.226.0", + "prefixLen":25, + "network":"192.188.226.0\/25", + "version":2205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.226.128", + "prefixLen":25, + "network":"192.188.226.128\/25", + "version":2204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.227.0", + "prefixLen":25, + "network":"192.188.227.0\/25", + "version":2203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.227.128", + "prefixLen":25, + "network":"192.188.227.128\/25", + "version":2202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.240.0", + "prefixLen":25, + "network":"192.188.240.0\/25", + "version":2201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.240.128", + "prefixLen":25, + "network":"192.188.240.128\/25", + "version":2200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.241.0", + "prefixLen":25, + "network":"192.188.241.0\/25", + "version":2199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.241.128", + "prefixLen":25, + "network":"192.188.241.128\/25", + "version":2198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.242.0", + "prefixLen":25, + "network":"192.188.242.0\/25", + "version":2197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.242.128", + "prefixLen":25, + "network":"192.188.242.128\/25", + "version":2196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.243.0", + "prefixLen":25, + "network":"192.188.243.0\/25", + "version":2195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.188.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.188.243.128", + "prefixLen":25, + "network":"192.188.243.128\/25", + "version":2194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64620 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.0.0", + "prefixLen":25, + "network":"192.189.0.0\/25", + "version":2321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.0.128", + "prefixLen":25, + "network":"192.189.0.128\/25", + "version":2448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.1.0", + "prefixLen":25, + "network":"192.189.1.0\/25", + "version":2447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.1.128", + "prefixLen":25, + "network":"192.189.1.128\/25", + "version":2446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.2.0", + "prefixLen":25, + "network":"192.189.2.0\/25", + "version":2445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.2.128", + "prefixLen":25, + "network":"192.189.2.128\/25", + "version":2444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.3.0", + "prefixLen":25, + "network":"192.189.3.0\/25", + "version":2443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.3.128", + "prefixLen":25, + "network":"192.189.3.128\/25", + "version":2442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.16.0", + "prefixLen":25, + "network":"192.189.16.0\/25", + "version":2441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.16.128", + "prefixLen":25, + "network":"192.189.16.128\/25", + "version":2440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.17.0", + "prefixLen":25, + "network":"192.189.17.0\/25", + "version":2439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.17.128", + "prefixLen":25, + "network":"192.189.17.128\/25", + "version":2438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.18.0", + "prefixLen":25, + "network":"192.189.18.0\/25", + "version":2437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.18.128", + "prefixLen":25, + "network":"192.189.18.128\/25", + "version":2436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.19.0", + "prefixLen":25, + "network":"192.189.19.0\/25", + "version":2435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.19.128", + "prefixLen":25, + "network":"192.189.19.128\/25", + "version":2434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.32.0", + "prefixLen":25, + "network":"192.189.32.0\/25", + "version":2433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.32.128", + "prefixLen":25, + "network":"192.189.32.128\/25", + "version":2432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.33.0", + "prefixLen":25, + "network":"192.189.33.0\/25", + "version":2431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.33.128", + "prefixLen":25, + "network":"192.189.33.128\/25", + "version":2430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.34.0", + "prefixLen":25, + "network":"192.189.34.0\/25", + "version":2429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.34.128", + "prefixLen":25, + "network":"192.189.34.128\/25", + "version":2428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.35.0", + "prefixLen":25, + "network":"192.189.35.0\/25", + "version":2427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.35.128", + "prefixLen":25, + "network":"192.189.35.128\/25", + "version":2426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.48.0", + "prefixLen":25, + "network":"192.189.48.0\/25", + "version":2425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.48.128", + "prefixLen":25, + "network":"192.189.48.128\/25", + "version":2424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.49.0", + "prefixLen":25, + "network":"192.189.49.0\/25", + "version":2423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.49.128", + "prefixLen":25, + "network":"192.189.49.128\/25", + "version":2422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.50.0", + "prefixLen":25, + "network":"192.189.50.0\/25", + "version":2421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.50.128", + "prefixLen":25, + "network":"192.189.50.128\/25", + "version":2420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.51.0", + "prefixLen":25, + "network":"192.189.51.0\/25", + "version":2419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.51.128", + "prefixLen":25, + "network":"192.189.51.128\/25", + "version":2418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.64.0", + "prefixLen":25, + "network":"192.189.64.0\/25", + "version":2417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.64.128", + "prefixLen":25, + "network":"192.189.64.128\/25", + "version":2416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.65.0", + "prefixLen":25, + "network":"192.189.65.0\/25", + "version":2415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.65.128", + "prefixLen":25, + "network":"192.189.65.128\/25", + "version":2414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.66.0", + "prefixLen":25, + "network":"192.189.66.0\/25", + "version":2413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.66.128", + "prefixLen":25, + "network":"192.189.66.128\/25", + "version":2412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.67.0", + "prefixLen":25, + "network":"192.189.67.0\/25", + "version":2411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.67.128", + "prefixLen":25, + "network":"192.189.67.128\/25", + "version":2410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.80.0", + "prefixLen":25, + "network":"192.189.80.0\/25", + "version":2409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.80.128", + "prefixLen":25, + "network":"192.189.80.128\/25", + "version":2408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.81.0", + "prefixLen":25, + "network":"192.189.81.0\/25", + "version":2407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.81.128", + "prefixLen":25, + "network":"192.189.81.128\/25", + "version":2406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.82.0", + "prefixLen":25, + "network":"192.189.82.0\/25", + "version":2405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.82.128", + "prefixLen":25, + "network":"192.189.82.128\/25", + "version":2404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.83.0", + "prefixLen":25, + "network":"192.189.83.0\/25", + "version":2403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.83.128", + "prefixLen":25, + "network":"192.189.83.128\/25", + "version":2402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.96.0", + "prefixLen":25, + "network":"192.189.96.0\/25", + "version":2401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.96.128", + "prefixLen":25, + "network":"192.189.96.128\/25", + "version":2400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.97.0", + "prefixLen":25, + "network":"192.189.97.0\/25", + "version":2399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.97.128", + "prefixLen":25, + "network":"192.189.97.128\/25", + "version":2398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.98.0", + "prefixLen":25, + "network":"192.189.98.0\/25", + "version":2397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.98.128", + "prefixLen":25, + "network":"192.189.98.128\/25", + "version":2396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.99.0", + "prefixLen":25, + "network":"192.189.99.0\/25", + "version":2395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.99.128", + "prefixLen":25, + "network":"192.189.99.128\/25", + "version":2394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.112.0", + "prefixLen":25, + "network":"192.189.112.0\/25", + "version":2393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.112.128", + "prefixLen":25, + "network":"192.189.112.128\/25", + "version":2392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.113.0", + "prefixLen":25, + "network":"192.189.113.0\/25", + "version":2391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.113.128", + "prefixLen":25, + "network":"192.189.113.128\/25", + "version":2390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.114.0", + "prefixLen":25, + "network":"192.189.114.0\/25", + "version":2389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.114.128", + "prefixLen":25, + "network":"192.189.114.128\/25", + "version":2388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.115.0", + "prefixLen":25, + "network":"192.189.115.0\/25", + "version":2387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.115.128", + "prefixLen":25, + "network":"192.189.115.128\/25", + "version":2386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.128.0", + "prefixLen":25, + "network":"192.189.128.0\/25", + "version":2385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.128.128", + "prefixLen":25, + "network":"192.189.128.128\/25", + "version":2384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.129.0", + "prefixLen":25, + "network":"192.189.129.0\/25", + "version":2383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.129.128", + "prefixLen":25, + "network":"192.189.129.128\/25", + "version":2382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.130.0", + "prefixLen":25, + "network":"192.189.130.0\/25", + "version":2381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.130.128", + "prefixLen":25, + "network":"192.189.130.128\/25", + "version":2380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.131.0", + "prefixLen":25, + "network":"192.189.131.0\/25", + "version":2379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.131.128", + "prefixLen":25, + "network":"192.189.131.128\/25", + "version":2378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.144.0", + "prefixLen":25, + "network":"192.189.144.0\/25", + "version":2377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.144.128", + "prefixLen":25, + "network":"192.189.144.128\/25", + "version":2376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.145.0", + "prefixLen":25, + "network":"192.189.145.0\/25", + "version":2375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.145.128", + "prefixLen":25, + "network":"192.189.145.128\/25", + "version":2374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.146.0", + "prefixLen":25, + "network":"192.189.146.0\/25", + "version":2373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.146.128", + "prefixLen":25, + "network":"192.189.146.128\/25", + "version":2372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.147.0", + "prefixLen":25, + "network":"192.189.147.0\/25", + "version":2371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.147.128", + "prefixLen":25, + "network":"192.189.147.128\/25", + "version":2370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.160.0", + "prefixLen":25, + "network":"192.189.160.0\/25", + "version":2369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.160.128", + "prefixLen":25, + "network":"192.189.160.128\/25", + "version":2368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.161.0", + "prefixLen":25, + "network":"192.189.161.0\/25", + "version":2367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.161.128", + "prefixLen":25, + "network":"192.189.161.128\/25", + "version":2366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.162.0", + "prefixLen":25, + "network":"192.189.162.0\/25", + "version":2365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.162.128", + "prefixLen":25, + "network":"192.189.162.128\/25", + "version":2364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.163.0", + "prefixLen":25, + "network":"192.189.163.0\/25", + "version":2363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.163.128", + "prefixLen":25, + "network":"192.189.163.128\/25", + "version":2362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.176.0", + "prefixLen":25, + "network":"192.189.176.0\/25", + "version":2361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.176.128", + "prefixLen":25, + "network":"192.189.176.128\/25", + "version":2360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.177.0", + "prefixLen":25, + "network":"192.189.177.0\/25", + "version":2359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.177.128", + "prefixLen":25, + "network":"192.189.177.128\/25", + "version":2358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.178.0", + "prefixLen":25, + "network":"192.189.178.0\/25", + "version":2357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.178.128", + "prefixLen":25, + "network":"192.189.178.128\/25", + "version":2356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.179.0", + "prefixLen":25, + "network":"192.189.179.0\/25", + "version":2355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.179.128", + "prefixLen":25, + "network":"192.189.179.128\/25", + "version":2354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.192.0", + "prefixLen":25, + "network":"192.189.192.0\/25", + "version":2353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.192.128", + "prefixLen":25, + "network":"192.189.192.128\/25", + "version":2352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.193.0", + "prefixLen":25, + "network":"192.189.193.0\/25", + "version":2351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.193.128", + "prefixLen":25, + "network":"192.189.193.128\/25", + "version":2350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.194.0", + "prefixLen":25, + "network":"192.189.194.0\/25", + "version":2349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.194.128", + "prefixLen":25, + "network":"192.189.194.128\/25", + "version":2348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.195.0", + "prefixLen":25, + "network":"192.189.195.0\/25", + "version":2347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.195.128", + "prefixLen":25, + "network":"192.189.195.128\/25", + "version":2346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.208.0", + "prefixLen":25, + "network":"192.189.208.0\/25", + "version":2345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.208.128", + "prefixLen":25, + "network":"192.189.208.128\/25", + "version":2344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.209.0", + "prefixLen":25, + "network":"192.189.209.0\/25", + "version":2343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.209.128", + "prefixLen":25, + "network":"192.189.209.128\/25", + "version":2342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.210.0", + "prefixLen":25, + "network":"192.189.210.0\/25", + "version":2341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.210.128", + "prefixLen":25, + "network":"192.189.210.128\/25", + "version":2340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.211.0", + "prefixLen":25, + "network":"192.189.211.0\/25", + "version":2339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.211.128", + "prefixLen":25, + "network":"192.189.211.128\/25", + "version":2338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.224.0", + "prefixLen":25, + "network":"192.189.224.0\/25", + "version":2337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.224.128", + "prefixLen":25, + "network":"192.189.224.128\/25", + "version":2336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.225.0", + "prefixLen":25, + "network":"192.189.225.0\/25", + "version":2335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.225.128", + "prefixLen":25, + "network":"192.189.225.128\/25", + "version":2334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.226.0", + "prefixLen":25, + "network":"192.189.226.0\/25", + "version":2333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.226.128", + "prefixLen":25, + "network":"192.189.226.128\/25", + "version":2332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.227.0", + "prefixLen":25, + "network":"192.189.227.0\/25", + "version":2331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.227.128", + "prefixLen":25, + "network":"192.189.227.128\/25", + "version":2330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.240.0", + "prefixLen":25, + "network":"192.189.240.0\/25", + "version":2329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.240.128", + "prefixLen":25, + "network":"192.189.240.128\/25", + "version":2328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.241.0", + "prefixLen":25, + "network":"192.189.241.0\/25", + "version":2327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.241.128", + "prefixLen":25, + "network":"192.189.241.128\/25", + "version":2326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.242.0", + "prefixLen":25, + "network":"192.189.242.0\/25", + "version":2325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.242.128", + "prefixLen":25, + "network":"192.189.242.128\/25", + "version":2324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.243.0", + "prefixLen":25, + "network":"192.189.243.0\/25", + "version":2323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.189.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.189.243.128", + "prefixLen":25, + "network":"192.189.243.128\/25", + "version":2322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64621 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.0.0", + "prefixLen":25, + "network":"192.190.0.0\/25", + "version":2449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.0.128", + "prefixLen":25, + "network":"192.190.0.128\/25", + "version":2576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.1.0", + "prefixLen":25, + "network":"192.190.1.0\/25", + "version":2575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.1.128", + "prefixLen":25, + "network":"192.190.1.128\/25", + "version":2574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.2.0", + "prefixLen":25, + "network":"192.190.2.0\/25", + "version":2573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.2.128", + "prefixLen":25, + "network":"192.190.2.128\/25", + "version":2572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.3.0", + "prefixLen":25, + "network":"192.190.3.0\/25", + "version":2571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.3.128", + "prefixLen":25, + "network":"192.190.3.128\/25", + "version":2570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.16.0", + "prefixLen":25, + "network":"192.190.16.0\/25", + "version":2569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.16.128", + "prefixLen":25, + "network":"192.190.16.128\/25", + "version":2568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.17.0", + "prefixLen":25, + "network":"192.190.17.0\/25", + "version":2567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.17.128", + "prefixLen":25, + "network":"192.190.17.128\/25", + "version":2566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.18.0", + "prefixLen":25, + "network":"192.190.18.0\/25", + "version":2565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.18.128", + "prefixLen":25, + "network":"192.190.18.128\/25", + "version":2564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.19.0", + "prefixLen":25, + "network":"192.190.19.0\/25", + "version":2563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.19.128", + "prefixLen":25, + "network":"192.190.19.128\/25", + "version":2562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.32.0", + "prefixLen":25, + "network":"192.190.32.0\/25", + "version":2561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.32.128", + "prefixLen":25, + "network":"192.190.32.128\/25", + "version":2560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.33.0", + "prefixLen":25, + "network":"192.190.33.0\/25", + "version":2559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.33.128", + "prefixLen":25, + "network":"192.190.33.128\/25", + "version":2558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.34.0", + "prefixLen":25, + "network":"192.190.34.0\/25", + "version":2557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.34.128", + "prefixLen":25, + "network":"192.190.34.128\/25", + "version":2556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.35.0", + "prefixLen":25, + "network":"192.190.35.0\/25", + "version":2555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.35.128", + "prefixLen":25, + "network":"192.190.35.128\/25", + "version":2554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.48.0", + "prefixLen":25, + "network":"192.190.48.0\/25", + "version":2553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.48.128", + "prefixLen":25, + "network":"192.190.48.128\/25", + "version":2552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.49.0", + "prefixLen":25, + "network":"192.190.49.0\/25", + "version":2551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.49.128", + "prefixLen":25, + "network":"192.190.49.128\/25", + "version":2550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.50.0", + "prefixLen":25, + "network":"192.190.50.0\/25", + "version":2549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.50.128", + "prefixLen":25, + "network":"192.190.50.128\/25", + "version":2548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.51.0", + "prefixLen":25, + "network":"192.190.51.0\/25", + "version":2547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.51.128", + "prefixLen":25, + "network":"192.190.51.128\/25", + "version":2546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.64.0", + "prefixLen":25, + "network":"192.190.64.0\/25", + "version":2545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.64.128", + "prefixLen":25, + "network":"192.190.64.128\/25", + "version":2544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.65.0", + "prefixLen":25, + "network":"192.190.65.0\/25", + "version":2543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.65.128", + "prefixLen":25, + "network":"192.190.65.128\/25", + "version":2542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.66.0", + "prefixLen":25, + "network":"192.190.66.0\/25", + "version":2541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.66.128", + "prefixLen":25, + "network":"192.190.66.128\/25", + "version":2540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.67.0", + "prefixLen":25, + "network":"192.190.67.0\/25", + "version":2539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.67.128", + "prefixLen":25, + "network":"192.190.67.128\/25", + "version":2538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.80.0", + "prefixLen":25, + "network":"192.190.80.0\/25", + "version":2537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.80.128", + "prefixLen":25, + "network":"192.190.80.128\/25", + "version":2536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.81.0", + "prefixLen":25, + "network":"192.190.81.0\/25", + "version":2535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.81.128", + "prefixLen":25, + "network":"192.190.81.128\/25", + "version":2534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.82.0", + "prefixLen":25, + "network":"192.190.82.0\/25", + "version":2533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.82.128", + "prefixLen":25, + "network":"192.190.82.128\/25", + "version":2532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.83.0", + "prefixLen":25, + "network":"192.190.83.0\/25", + "version":2531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.83.128", + "prefixLen":25, + "network":"192.190.83.128\/25", + "version":2530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.96.0", + "prefixLen":25, + "network":"192.190.96.0\/25", + "version":2529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.96.128", + "prefixLen":25, + "network":"192.190.96.128\/25", + "version":2528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.97.0", + "prefixLen":25, + "network":"192.190.97.0\/25", + "version":2527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.97.128", + "prefixLen":25, + "network":"192.190.97.128\/25", + "version":2526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.98.0", + "prefixLen":25, + "network":"192.190.98.0\/25", + "version":2525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.98.128", + "prefixLen":25, + "network":"192.190.98.128\/25", + "version":2524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.99.0", + "prefixLen":25, + "network":"192.190.99.0\/25", + "version":2523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.99.128", + "prefixLen":25, + "network":"192.190.99.128\/25", + "version":2522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.112.0", + "prefixLen":25, + "network":"192.190.112.0\/25", + "version":2521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.112.128", + "prefixLen":25, + "network":"192.190.112.128\/25", + "version":2520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.113.0", + "prefixLen":25, + "network":"192.190.113.0\/25", + "version":2519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.113.128", + "prefixLen":25, + "network":"192.190.113.128\/25", + "version":2518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.114.0", + "prefixLen":25, + "network":"192.190.114.0\/25", + "version":2517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.114.128", + "prefixLen":25, + "network":"192.190.114.128\/25", + "version":2516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.115.0", + "prefixLen":25, + "network":"192.190.115.0\/25", + "version":2515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.115.128", + "prefixLen":25, + "network":"192.190.115.128\/25", + "version":2514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.128.0", + "prefixLen":25, + "network":"192.190.128.0\/25", + "version":2513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.128.128", + "prefixLen":25, + "network":"192.190.128.128\/25", + "version":2512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.129.0", + "prefixLen":25, + "network":"192.190.129.0\/25", + "version":2511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.129.128", + "prefixLen":25, + "network":"192.190.129.128\/25", + "version":2510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.130.0", + "prefixLen":25, + "network":"192.190.130.0\/25", + "version":2509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.130.128", + "prefixLen":25, + "network":"192.190.130.128\/25", + "version":2508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.131.0", + "prefixLen":25, + "network":"192.190.131.0\/25", + "version":2507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.131.128", + "prefixLen":25, + "network":"192.190.131.128\/25", + "version":2506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.144.0", + "prefixLen":25, + "network":"192.190.144.0\/25", + "version":2505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.144.128", + "prefixLen":25, + "network":"192.190.144.128\/25", + "version":2504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.145.0", + "prefixLen":25, + "network":"192.190.145.0\/25", + "version":2503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.145.128", + "prefixLen":25, + "network":"192.190.145.128\/25", + "version":2502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.146.0", + "prefixLen":25, + "network":"192.190.146.0\/25", + "version":2501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.146.128", + "prefixLen":25, + "network":"192.190.146.128\/25", + "version":2500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.147.0", + "prefixLen":25, + "network":"192.190.147.0\/25", + "version":2499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.147.128", + "prefixLen":25, + "network":"192.190.147.128\/25", + "version":2498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.160.0", + "prefixLen":25, + "network":"192.190.160.0\/25", + "version":2497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.160.128", + "prefixLen":25, + "network":"192.190.160.128\/25", + "version":2496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.161.0", + "prefixLen":25, + "network":"192.190.161.0\/25", + "version":2495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.161.128", + "prefixLen":25, + "network":"192.190.161.128\/25", + "version":2494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.162.0", + "prefixLen":25, + "network":"192.190.162.0\/25", + "version":2493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.162.128", + "prefixLen":25, + "network":"192.190.162.128\/25", + "version":2492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.163.0", + "prefixLen":25, + "network":"192.190.163.0\/25", + "version":2491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.163.128", + "prefixLen":25, + "network":"192.190.163.128\/25", + "version":2490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.176.0", + "prefixLen":25, + "network":"192.190.176.0\/25", + "version":2489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.176.128", + "prefixLen":25, + "network":"192.190.176.128\/25", + "version":2488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.177.0", + "prefixLen":25, + "network":"192.190.177.0\/25", + "version":2487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.177.128", + "prefixLen":25, + "network":"192.190.177.128\/25", + "version":2486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.178.0", + "prefixLen":25, + "network":"192.190.178.0\/25", + "version":2485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.178.128", + "prefixLen":25, + "network":"192.190.178.128\/25", + "version":2484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.179.0", + "prefixLen":25, + "network":"192.190.179.0\/25", + "version":2483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.179.128", + "prefixLen":25, + "network":"192.190.179.128\/25", + "version":2482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.192.0", + "prefixLen":25, + "network":"192.190.192.0\/25", + "version":2481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.192.128", + "prefixLen":25, + "network":"192.190.192.128\/25", + "version":2480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.193.0", + "prefixLen":25, + "network":"192.190.193.0\/25", + "version":2479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.193.128", + "prefixLen":25, + "network":"192.190.193.128\/25", + "version":2478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.194.0", + "prefixLen":25, + "network":"192.190.194.0\/25", + "version":2477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.194.128", + "prefixLen":25, + "network":"192.190.194.128\/25", + "version":2476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.195.0", + "prefixLen":25, + "network":"192.190.195.0\/25", + "version":2475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.195.128", + "prefixLen":25, + "network":"192.190.195.128\/25", + "version":2474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.208.0", + "prefixLen":25, + "network":"192.190.208.0\/25", + "version":2473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.208.128", + "prefixLen":25, + "network":"192.190.208.128\/25", + "version":2472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.209.0", + "prefixLen":25, + "network":"192.190.209.0\/25", + "version":2471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.209.128", + "prefixLen":25, + "network":"192.190.209.128\/25", + "version":2470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.210.0", + "prefixLen":25, + "network":"192.190.210.0\/25", + "version":2469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.210.128", + "prefixLen":25, + "network":"192.190.210.128\/25", + "version":2468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.211.0", + "prefixLen":25, + "network":"192.190.211.0\/25", + "version":2467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.211.128", + "prefixLen":25, + "network":"192.190.211.128\/25", + "version":2466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.224.0", + "prefixLen":25, + "network":"192.190.224.0\/25", + "version":2465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.224.128", + "prefixLen":25, + "network":"192.190.224.128\/25", + "version":2464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.225.0", + "prefixLen":25, + "network":"192.190.225.0\/25", + "version":2463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.225.128", + "prefixLen":25, + "network":"192.190.225.128\/25", + "version":2462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.226.0", + "prefixLen":25, + "network":"192.190.226.0\/25", + "version":2461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.226.128", + "prefixLen":25, + "network":"192.190.226.128\/25", + "version":2460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.227.0", + "prefixLen":25, + "network":"192.190.227.0\/25", + "version":2459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.227.128", + "prefixLen":25, + "network":"192.190.227.128\/25", + "version":2458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.240.0", + "prefixLen":25, + "network":"192.190.240.0\/25", + "version":2457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.240.128", + "prefixLen":25, + "network":"192.190.240.128\/25", + "version":2456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.241.0", + "prefixLen":25, + "network":"192.190.241.0\/25", + "version":2455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.241.128", + "prefixLen":25, + "network":"192.190.241.128\/25", + "version":2454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.242.0", + "prefixLen":25, + "network":"192.190.242.0\/25", + "version":2453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.242.128", + "prefixLen":25, + "network":"192.190.242.128\/25", + "version":2452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.243.0", + "prefixLen":25, + "network":"192.190.243.0\/25", + "version":2451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.190.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.190.243.128", + "prefixLen":25, + "network":"192.190.243.128\/25", + "version":2450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64622 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.0.0", + "prefixLen":25, + "network":"192.191.0.0\/25", + "version":2577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.0.128", + "prefixLen":25, + "network":"192.191.0.128\/25", + "version":2704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.1.0", + "prefixLen":25, + "network":"192.191.1.0\/25", + "version":2703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.1.128", + "prefixLen":25, + "network":"192.191.1.128\/25", + "version":2702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.2.0", + "prefixLen":25, + "network":"192.191.2.0\/25", + "version":2701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.2.128", + "prefixLen":25, + "network":"192.191.2.128\/25", + "version":2700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.3.0", + "prefixLen":25, + "network":"192.191.3.0\/25", + "version":2699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.3.128", + "prefixLen":25, + "network":"192.191.3.128\/25", + "version":2698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.16.0", + "prefixLen":25, + "network":"192.191.16.0\/25", + "version":2697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.16.128", + "prefixLen":25, + "network":"192.191.16.128\/25", + "version":2696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.17.0", + "prefixLen":25, + "network":"192.191.17.0\/25", + "version":2695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.17.128", + "prefixLen":25, + "network":"192.191.17.128\/25", + "version":2694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.18.0", + "prefixLen":25, + "network":"192.191.18.0\/25", + "version":2693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.18.128", + "prefixLen":25, + "network":"192.191.18.128\/25", + "version":2692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.19.0", + "prefixLen":25, + "network":"192.191.19.0\/25", + "version":2691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.19.128", + "prefixLen":25, + "network":"192.191.19.128\/25", + "version":2690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.32.0", + "prefixLen":25, + "network":"192.191.32.0\/25", + "version":2689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.32.128", + "prefixLen":25, + "network":"192.191.32.128\/25", + "version":2688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.33.0", + "prefixLen":25, + "network":"192.191.33.0\/25", + "version":2687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.33.128", + "prefixLen":25, + "network":"192.191.33.128\/25", + "version":2686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.34.0", + "prefixLen":25, + "network":"192.191.34.0\/25", + "version":2685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.34.128", + "prefixLen":25, + "network":"192.191.34.128\/25", + "version":2684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.35.0", + "prefixLen":25, + "network":"192.191.35.0\/25", + "version":2683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.35.128", + "prefixLen":25, + "network":"192.191.35.128\/25", + "version":2682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.48.0", + "prefixLen":25, + "network":"192.191.48.0\/25", + "version":2681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.48.128", + "prefixLen":25, + "network":"192.191.48.128\/25", + "version":2680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.49.0", + "prefixLen":25, + "network":"192.191.49.0\/25", + "version":2679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.49.128", + "prefixLen":25, + "network":"192.191.49.128\/25", + "version":2678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.50.0", + "prefixLen":25, + "network":"192.191.50.0\/25", + "version":2677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.50.128", + "prefixLen":25, + "network":"192.191.50.128\/25", + "version":2676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.51.0", + "prefixLen":25, + "network":"192.191.51.0\/25", + "version":2675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.51.128", + "prefixLen":25, + "network":"192.191.51.128\/25", + "version":2674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.64.0", + "prefixLen":25, + "network":"192.191.64.0\/25", + "version":2673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.64.128", + "prefixLen":25, + "network":"192.191.64.128\/25", + "version":2672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.65.0", + "prefixLen":25, + "network":"192.191.65.0\/25", + "version":2671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.65.128", + "prefixLen":25, + "network":"192.191.65.128\/25", + "version":2670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.66.0", + "prefixLen":25, + "network":"192.191.66.0\/25", + "version":2669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.66.128", + "prefixLen":25, + "network":"192.191.66.128\/25", + "version":2668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.67.0", + "prefixLen":25, + "network":"192.191.67.0\/25", + "version":2667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.67.128", + "prefixLen":25, + "network":"192.191.67.128\/25", + "version":2666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.80.0", + "prefixLen":25, + "network":"192.191.80.0\/25", + "version":2665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.80.128", + "prefixLen":25, + "network":"192.191.80.128\/25", + "version":2664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.81.0", + "prefixLen":25, + "network":"192.191.81.0\/25", + "version":2663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.81.128", + "prefixLen":25, + "network":"192.191.81.128\/25", + "version":2662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.82.0", + "prefixLen":25, + "network":"192.191.82.0\/25", + "version":2661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.82.128", + "prefixLen":25, + "network":"192.191.82.128\/25", + "version":2660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.83.0", + "prefixLen":25, + "network":"192.191.83.0\/25", + "version":2659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.83.128", + "prefixLen":25, + "network":"192.191.83.128\/25", + "version":2658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.96.0", + "prefixLen":25, + "network":"192.191.96.0\/25", + "version":2657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.96.128", + "prefixLen":25, + "network":"192.191.96.128\/25", + "version":2656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.97.0", + "prefixLen":25, + "network":"192.191.97.0\/25", + "version":2655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.97.128", + "prefixLen":25, + "network":"192.191.97.128\/25", + "version":2654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.98.0", + "prefixLen":25, + "network":"192.191.98.0\/25", + "version":2653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.98.128", + "prefixLen":25, + "network":"192.191.98.128\/25", + "version":2652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.99.0", + "prefixLen":25, + "network":"192.191.99.0\/25", + "version":2651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.99.128", + "prefixLen":25, + "network":"192.191.99.128\/25", + "version":2650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.112.0", + "prefixLen":25, + "network":"192.191.112.0\/25", + "version":2649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.112.128", + "prefixLen":25, + "network":"192.191.112.128\/25", + "version":2648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.113.0", + "prefixLen":25, + "network":"192.191.113.0\/25", + "version":2647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.113.128", + "prefixLen":25, + "network":"192.191.113.128\/25", + "version":2646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.114.0", + "prefixLen":25, + "network":"192.191.114.0\/25", + "version":2645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.114.128", + "prefixLen":25, + "network":"192.191.114.128\/25", + "version":2644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.115.0", + "prefixLen":25, + "network":"192.191.115.0\/25", + "version":2643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.115.128", + "prefixLen":25, + "network":"192.191.115.128\/25", + "version":2642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.128.0", + "prefixLen":25, + "network":"192.191.128.0\/25", + "version":2641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.128.128", + "prefixLen":25, + "network":"192.191.128.128\/25", + "version":2640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.129.0", + "prefixLen":25, + "network":"192.191.129.0\/25", + "version":2639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.129.128", + "prefixLen":25, + "network":"192.191.129.128\/25", + "version":2638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.130.0", + "prefixLen":25, + "network":"192.191.130.0\/25", + "version":2637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.130.128", + "prefixLen":25, + "network":"192.191.130.128\/25", + "version":2636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.131.0", + "prefixLen":25, + "network":"192.191.131.0\/25", + "version":2635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.131.128", + "prefixLen":25, + "network":"192.191.131.128\/25", + "version":2634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.144.0", + "prefixLen":25, + "network":"192.191.144.0\/25", + "version":2633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.144.128", + "prefixLen":25, + "network":"192.191.144.128\/25", + "version":2632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.145.0", + "prefixLen":25, + "network":"192.191.145.0\/25", + "version":2631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.145.128", + "prefixLen":25, + "network":"192.191.145.128\/25", + "version":2630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.146.0", + "prefixLen":25, + "network":"192.191.146.0\/25", + "version":2629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.146.128", + "prefixLen":25, + "network":"192.191.146.128\/25", + "version":2628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.147.0", + "prefixLen":25, + "network":"192.191.147.0\/25", + "version":2627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.147.128", + "prefixLen":25, + "network":"192.191.147.128\/25", + "version":2626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.160.0", + "prefixLen":25, + "network":"192.191.160.0\/25", + "version":2625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.160.128", + "prefixLen":25, + "network":"192.191.160.128\/25", + "version":2624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.161.0", + "prefixLen":25, + "network":"192.191.161.0\/25", + "version":2623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.161.128", + "prefixLen":25, + "network":"192.191.161.128\/25", + "version":2622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.162.0", + "prefixLen":25, + "network":"192.191.162.0\/25", + "version":2621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.162.128", + "prefixLen":25, + "network":"192.191.162.128\/25", + "version":2620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.163.0", + "prefixLen":25, + "network":"192.191.163.0\/25", + "version":2619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.163.128", + "prefixLen":25, + "network":"192.191.163.128\/25", + "version":2618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.176.0", + "prefixLen":25, + "network":"192.191.176.0\/25", + "version":2617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.176.128", + "prefixLen":25, + "network":"192.191.176.128\/25", + "version":2616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.177.0", + "prefixLen":25, + "network":"192.191.177.0\/25", + "version":2615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.177.128", + "prefixLen":25, + "network":"192.191.177.128\/25", + "version":2614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.178.0", + "prefixLen":25, + "network":"192.191.178.0\/25", + "version":2613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.178.128", + "prefixLen":25, + "network":"192.191.178.128\/25", + "version":2612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.179.0", + "prefixLen":25, + "network":"192.191.179.0\/25", + "version":2611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.179.128", + "prefixLen":25, + "network":"192.191.179.128\/25", + "version":2610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.192.0", + "prefixLen":25, + "network":"192.191.192.0\/25", + "version":2609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.192.128", + "prefixLen":25, + "network":"192.191.192.128\/25", + "version":2608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.193.0", + "prefixLen":25, + "network":"192.191.193.0\/25", + "version":2607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.193.128", + "prefixLen":25, + "network":"192.191.193.128\/25", + "version":2606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.194.0", + "prefixLen":25, + "network":"192.191.194.0\/25", + "version":2605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.194.128", + "prefixLen":25, + "network":"192.191.194.128\/25", + "version":2604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.195.0", + "prefixLen":25, + "network":"192.191.195.0\/25", + "version":2603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.195.128", + "prefixLen":25, + "network":"192.191.195.128\/25", + "version":2602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.208.0", + "prefixLen":25, + "network":"192.191.208.0\/25", + "version":2601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.208.128", + "prefixLen":25, + "network":"192.191.208.128\/25", + "version":2600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.209.0", + "prefixLen":25, + "network":"192.191.209.0\/25", + "version":2599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.209.128", + "prefixLen":25, + "network":"192.191.209.128\/25", + "version":2598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.210.0", + "prefixLen":25, + "network":"192.191.210.0\/25", + "version":2597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.210.128", + "prefixLen":25, + "network":"192.191.210.128\/25", + "version":2596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.211.0", + "prefixLen":25, + "network":"192.191.211.0\/25", + "version":2595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.211.128", + "prefixLen":25, + "network":"192.191.211.128\/25", + "version":2594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.224.0", + "prefixLen":25, + "network":"192.191.224.0\/25", + "version":2593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.224.128", + "prefixLen":25, + "network":"192.191.224.128\/25", + "version":2592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.225.0", + "prefixLen":25, + "network":"192.191.225.0\/25", + "version":2591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.225.128", + "prefixLen":25, + "network":"192.191.225.128\/25", + "version":2590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.226.0", + "prefixLen":25, + "network":"192.191.226.0\/25", + "version":2589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.226.128", + "prefixLen":25, + "network":"192.191.226.128\/25", + "version":2588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.227.0", + "prefixLen":25, + "network":"192.191.227.0\/25", + "version":2587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.227.128", + "prefixLen":25, + "network":"192.191.227.128\/25", + "version":2586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.240.0", + "prefixLen":25, + "network":"192.191.240.0\/25", + "version":2585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.240.128", + "prefixLen":25, + "network":"192.191.240.128\/25", + "version":2584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.241.0", + "prefixLen":25, + "network":"192.191.241.0\/25", + "version":2583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.241.128", + "prefixLen":25, + "network":"192.191.241.128\/25", + "version":2582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.242.0", + "prefixLen":25, + "network":"192.191.242.0\/25", + "version":2581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.242.128", + "prefixLen":25, + "network":"192.191.242.128\/25", + "version":2580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.243.0", + "prefixLen":25, + "network":"192.191.243.0\/25", + "version":2579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.191.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.191.243.128", + "prefixLen":25, + "network":"192.191.243.128\/25", + "version":2578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64623 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.0.0", + "prefixLen":25, + "network":"192.192.0.0\/25", + "version":2705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.0.128", + "prefixLen":25, + "network":"192.192.0.128\/25", + "version":2832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.1.0", + "prefixLen":25, + "network":"192.192.1.0\/25", + "version":2831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.1.128", + "prefixLen":25, + "network":"192.192.1.128\/25", + "version":2830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.2.0", + "prefixLen":25, + "network":"192.192.2.0\/25", + "version":2829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.2.128", + "prefixLen":25, + "network":"192.192.2.128\/25", + "version":2828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.3.0", + "prefixLen":25, + "network":"192.192.3.0\/25", + "version":2827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.3.128", + "prefixLen":25, + "network":"192.192.3.128\/25", + "version":2826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.16.0", + "prefixLen":25, + "network":"192.192.16.0\/25", + "version":2825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.16.128", + "prefixLen":25, + "network":"192.192.16.128\/25", + "version":2824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.17.0", + "prefixLen":25, + "network":"192.192.17.0\/25", + "version":2823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.17.128", + "prefixLen":25, + "network":"192.192.17.128\/25", + "version":2822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.18.0", + "prefixLen":25, + "network":"192.192.18.0\/25", + "version":2821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.18.128", + "prefixLen":25, + "network":"192.192.18.128\/25", + "version":2820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.19.0", + "prefixLen":25, + "network":"192.192.19.0\/25", + "version":2819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.19.128", + "prefixLen":25, + "network":"192.192.19.128\/25", + "version":2818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.32.0", + "prefixLen":25, + "network":"192.192.32.0\/25", + "version":2817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.32.128", + "prefixLen":25, + "network":"192.192.32.128\/25", + "version":2816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.33.0", + "prefixLen":25, + "network":"192.192.33.0\/25", + "version":2815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.33.128", + "prefixLen":25, + "network":"192.192.33.128\/25", + "version":2814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.34.0", + "prefixLen":25, + "network":"192.192.34.0\/25", + "version":2813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.34.128", + "prefixLen":25, + "network":"192.192.34.128\/25", + "version":2812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.35.0", + "prefixLen":25, + "network":"192.192.35.0\/25", + "version":2811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.35.128", + "prefixLen":25, + "network":"192.192.35.128\/25", + "version":2810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.48.0", + "prefixLen":25, + "network":"192.192.48.0\/25", + "version":2809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.48.128", + "prefixLen":25, + "network":"192.192.48.128\/25", + "version":2808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.49.0", + "prefixLen":25, + "network":"192.192.49.0\/25", + "version":2807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.49.128", + "prefixLen":25, + "network":"192.192.49.128\/25", + "version":2806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.50.0", + "prefixLen":25, + "network":"192.192.50.0\/25", + "version":2805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.50.128", + "prefixLen":25, + "network":"192.192.50.128\/25", + "version":2804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.51.0", + "prefixLen":25, + "network":"192.192.51.0\/25", + "version":2803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.51.128", + "prefixLen":25, + "network":"192.192.51.128\/25", + "version":2802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.64.0", + "prefixLen":25, + "network":"192.192.64.0\/25", + "version":2801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.64.128", + "prefixLen":25, + "network":"192.192.64.128\/25", + "version":2800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.65.0", + "prefixLen":25, + "network":"192.192.65.0\/25", + "version":2799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.65.128", + "prefixLen":25, + "network":"192.192.65.128\/25", + "version":2798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.66.0", + "prefixLen":25, + "network":"192.192.66.0\/25", + "version":2797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.66.128", + "prefixLen":25, + "network":"192.192.66.128\/25", + "version":2796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.67.0", + "prefixLen":25, + "network":"192.192.67.0\/25", + "version":2795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.67.128", + "prefixLen":25, + "network":"192.192.67.128\/25", + "version":2794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.80.0", + "prefixLen":25, + "network":"192.192.80.0\/25", + "version":2793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.80.128", + "prefixLen":25, + "network":"192.192.80.128\/25", + "version":2792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.81.0", + "prefixLen":25, + "network":"192.192.81.0\/25", + "version":2791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.81.128", + "prefixLen":25, + "network":"192.192.81.128\/25", + "version":2790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.82.0", + "prefixLen":25, + "network":"192.192.82.0\/25", + "version":2789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.82.128", + "prefixLen":25, + "network":"192.192.82.128\/25", + "version":2788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.83.0", + "prefixLen":25, + "network":"192.192.83.0\/25", + "version":2787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.83.128", + "prefixLen":25, + "network":"192.192.83.128\/25", + "version":2786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.96.0", + "prefixLen":25, + "network":"192.192.96.0\/25", + "version":2785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.96.128", + "prefixLen":25, + "network":"192.192.96.128\/25", + "version":2784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.97.0", + "prefixLen":25, + "network":"192.192.97.0\/25", + "version":2783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.97.128", + "prefixLen":25, + "network":"192.192.97.128\/25", + "version":2782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.98.0", + "prefixLen":25, + "network":"192.192.98.0\/25", + "version":2781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.98.128", + "prefixLen":25, + "network":"192.192.98.128\/25", + "version":2780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.99.0", + "prefixLen":25, + "network":"192.192.99.0\/25", + "version":2779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.99.128", + "prefixLen":25, + "network":"192.192.99.128\/25", + "version":2778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.112.0", + "prefixLen":25, + "network":"192.192.112.0\/25", + "version":2777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.112.128", + "prefixLen":25, + "network":"192.192.112.128\/25", + "version":2776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.113.0", + "prefixLen":25, + "network":"192.192.113.0\/25", + "version":2775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.113.128", + "prefixLen":25, + "network":"192.192.113.128\/25", + "version":2774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.114.0", + "prefixLen":25, + "network":"192.192.114.0\/25", + "version":2773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.114.128", + "prefixLen":25, + "network":"192.192.114.128\/25", + "version":2772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.115.0", + "prefixLen":25, + "network":"192.192.115.0\/25", + "version":2771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.115.128", + "prefixLen":25, + "network":"192.192.115.128\/25", + "version":2770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.128.0", + "prefixLen":25, + "network":"192.192.128.0\/25", + "version":2769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.128.128", + "prefixLen":25, + "network":"192.192.128.128\/25", + "version":2768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.129.0", + "prefixLen":25, + "network":"192.192.129.0\/25", + "version":2767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.129.128", + "prefixLen":25, + "network":"192.192.129.128\/25", + "version":2766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.130.0", + "prefixLen":25, + "network":"192.192.130.0\/25", + "version":2765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.130.128", + "prefixLen":25, + "network":"192.192.130.128\/25", + "version":2764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.131.0", + "prefixLen":25, + "network":"192.192.131.0\/25", + "version":2763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.131.128", + "prefixLen":25, + "network":"192.192.131.128\/25", + "version":2762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.144.0", + "prefixLen":25, + "network":"192.192.144.0\/25", + "version":2761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.144.128", + "prefixLen":25, + "network":"192.192.144.128\/25", + "version":2760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.145.0", + "prefixLen":25, + "network":"192.192.145.0\/25", + "version":2759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.145.128", + "prefixLen":25, + "network":"192.192.145.128\/25", + "version":2758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.146.0", + "prefixLen":25, + "network":"192.192.146.0\/25", + "version":2757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.146.128", + "prefixLen":25, + "network":"192.192.146.128\/25", + "version":2756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.147.0", + "prefixLen":25, + "network":"192.192.147.0\/25", + "version":2755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.147.128", + "prefixLen":25, + "network":"192.192.147.128\/25", + "version":2754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.160.0", + "prefixLen":25, + "network":"192.192.160.0\/25", + "version":2753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.160.128", + "prefixLen":25, + "network":"192.192.160.128\/25", + "version":2752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.161.0", + "prefixLen":25, + "network":"192.192.161.0\/25", + "version":2751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.161.128", + "prefixLen":25, + "network":"192.192.161.128\/25", + "version":2750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.162.0", + "prefixLen":25, + "network":"192.192.162.0\/25", + "version":2749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.162.128", + "prefixLen":25, + "network":"192.192.162.128\/25", + "version":2748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.163.0", + "prefixLen":25, + "network":"192.192.163.0\/25", + "version":2747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.163.128", + "prefixLen":25, + "network":"192.192.163.128\/25", + "version":2746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.176.0", + "prefixLen":25, + "network":"192.192.176.0\/25", + "version":2745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.176.128", + "prefixLen":25, + "network":"192.192.176.128\/25", + "version":2744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.177.0", + "prefixLen":25, + "network":"192.192.177.0\/25", + "version":2743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.177.128", + "prefixLen":25, + "network":"192.192.177.128\/25", + "version":2742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.178.0", + "prefixLen":25, + "network":"192.192.178.0\/25", + "version":2741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.178.128", + "prefixLen":25, + "network":"192.192.178.128\/25", + "version":2740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.179.0", + "prefixLen":25, + "network":"192.192.179.0\/25", + "version":2739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.179.128", + "prefixLen":25, + "network":"192.192.179.128\/25", + "version":2738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.192.0", + "prefixLen":25, + "network":"192.192.192.0\/25", + "version":2737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.192.128", + "prefixLen":25, + "network":"192.192.192.128\/25", + "version":2736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.193.0", + "prefixLen":25, + "network":"192.192.193.0\/25", + "version":2735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.193.128", + "prefixLen":25, + "network":"192.192.193.128\/25", + "version":2734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.194.0", + "prefixLen":25, + "network":"192.192.194.0\/25", + "version":2733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.194.128", + "prefixLen":25, + "network":"192.192.194.128\/25", + "version":2732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.195.0", + "prefixLen":25, + "network":"192.192.195.0\/25", + "version":2731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.195.128", + "prefixLen":25, + "network":"192.192.195.128\/25", + "version":2730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.208.0", + "prefixLen":25, + "network":"192.192.208.0\/25", + "version":2729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.208.128", + "prefixLen":25, + "network":"192.192.208.128\/25", + "version":2728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.209.0", + "prefixLen":25, + "network":"192.192.209.0\/25", + "version":2727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.209.128", + "prefixLen":25, + "network":"192.192.209.128\/25", + "version":2726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.210.0", + "prefixLen":25, + "network":"192.192.210.0\/25", + "version":2725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.210.128", + "prefixLen":25, + "network":"192.192.210.128\/25", + "version":2724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.211.0", + "prefixLen":25, + "network":"192.192.211.0\/25", + "version":2723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.211.128", + "prefixLen":25, + "network":"192.192.211.128\/25", + "version":2722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.224.0", + "prefixLen":25, + "network":"192.192.224.0\/25", + "version":2721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.224.128", + "prefixLen":25, + "network":"192.192.224.128\/25", + "version":2720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.225.0", + "prefixLen":25, + "network":"192.192.225.0\/25", + "version":2719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.225.128", + "prefixLen":25, + "network":"192.192.225.128\/25", + "version":2718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.226.0", + "prefixLen":25, + "network":"192.192.226.0\/25", + "version":2717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.226.128", + "prefixLen":25, + "network":"192.192.226.128\/25", + "version":2716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.227.0", + "prefixLen":25, + "network":"192.192.227.0\/25", + "version":2715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.227.128", + "prefixLen":25, + "network":"192.192.227.128\/25", + "version":2714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.240.0", + "prefixLen":25, + "network":"192.192.240.0\/25", + "version":2713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.240.128", + "prefixLen":25, + "network":"192.192.240.128\/25", + "version":2712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.241.0", + "prefixLen":25, + "network":"192.192.241.0\/25", + "version":2711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.241.128", + "prefixLen":25, + "network":"192.192.241.128\/25", + "version":2710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.242.0", + "prefixLen":25, + "network":"192.192.242.0\/25", + "version":2709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.242.128", + "prefixLen":25, + "network":"192.192.242.128\/25", + "version":2708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.243.0", + "prefixLen":25, + "network":"192.192.243.0\/25", + "version":2707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.192.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.192.243.128", + "prefixLen":25, + "network":"192.192.243.128\/25", + "version":2706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64624 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.0.0", + "prefixLen":25, + "network":"192.193.0.0\/25", + "version":2833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.0.128", + "prefixLen":25, + "network":"192.193.0.128\/25", + "version":2960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.1.0", + "prefixLen":25, + "network":"192.193.1.0\/25", + "version":2959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.1.128", + "prefixLen":25, + "network":"192.193.1.128\/25", + "version":2958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.2.0", + "prefixLen":25, + "network":"192.193.2.0\/25", + "version":2957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.2.128", + "prefixLen":25, + "network":"192.193.2.128\/25", + "version":2956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.3.0", + "prefixLen":25, + "network":"192.193.3.0\/25", + "version":2955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.3.128", + "prefixLen":25, + "network":"192.193.3.128\/25", + "version":2954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.16.0", + "prefixLen":25, + "network":"192.193.16.0\/25", + "version":2953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.16.128", + "prefixLen":25, + "network":"192.193.16.128\/25", + "version":2952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.17.0", + "prefixLen":25, + "network":"192.193.17.0\/25", + "version":2951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.17.128", + "prefixLen":25, + "network":"192.193.17.128\/25", + "version":2950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.18.0", + "prefixLen":25, + "network":"192.193.18.0\/25", + "version":2949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.18.128", + "prefixLen":25, + "network":"192.193.18.128\/25", + "version":2948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.19.0", + "prefixLen":25, + "network":"192.193.19.0\/25", + "version":2947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.19.128", + "prefixLen":25, + "network":"192.193.19.128\/25", + "version":2946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.32.0", + "prefixLen":25, + "network":"192.193.32.0\/25", + "version":2945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.32.128", + "prefixLen":25, + "network":"192.193.32.128\/25", + "version":2944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.33.0", + "prefixLen":25, + "network":"192.193.33.0\/25", + "version":2943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.33.128", + "prefixLen":25, + "network":"192.193.33.128\/25", + "version":2942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.34.0", + "prefixLen":25, + "network":"192.193.34.0\/25", + "version":2941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.34.128", + "prefixLen":25, + "network":"192.193.34.128\/25", + "version":2940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.35.0", + "prefixLen":25, + "network":"192.193.35.0\/25", + "version":2939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.35.128", + "prefixLen":25, + "network":"192.193.35.128\/25", + "version":2938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.48.0", + "prefixLen":25, + "network":"192.193.48.0\/25", + "version":2937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.48.128", + "prefixLen":25, + "network":"192.193.48.128\/25", + "version":2936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.49.0", + "prefixLen":25, + "network":"192.193.49.0\/25", + "version":2935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.49.128", + "prefixLen":25, + "network":"192.193.49.128\/25", + "version":2934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.50.0", + "prefixLen":25, + "network":"192.193.50.0\/25", + "version":2933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.50.128", + "prefixLen":25, + "network":"192.193.50.128\/25", + "version":2932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.51.0", + "prefixLen":25, + "network":"192.193.51.0\/25", + "version":2931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.51.128", + "prefixLen":25, + "network":"192.193.51.128\/25", + "version":2930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.64.0", + "prefixLen":25, + "network":"192.193.64.0\/25", + "version":2929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.64.128", + "prefixLen":25, + "network":"192.193.64.128\/25", + "version":2928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.65.0", + "prefixLen":25, + "network":"192.193.65.0\/25", + "version":2927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.65.128", + "prefixLen":25, + "network":"192.193.65.128\/25", + "version":2926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.66.0", + "prefixLen":25, + "network":"192.193.66.0\/25", + "version":2925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.66.128", + "prefixLen":25, + "network":"192.193.66.128\/25", + "version":2924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.67.0", + "prefixLen":25, + "network":"192.193.67.0\/25", + "version":2923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.67.128", + "prefixLen":25, + "network":"192.193.67.128\/25", + "version":2922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.80.0", + "prefixLen":25, + "network":"192.193.80.0\/25", + "version":2921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.80.128", + "prefixLen":25, + "network":"192.193.80.128\/25", + "version":2920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.81.0", + "prefixLen":25, + "network":"192.193.81.0\/25", + "version":2919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.81.128", + "prefixLen":25, + "network":"192.193.81.128\/25", + "version":2918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.82.0", + "prefixLen":25, + "network":"192.193.82.0\/25", + "version":2917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.82.128", + "prefixLen":25, + "network":"192.193.82.128\/25", + "version":2916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.83.0", + "prefixLen":25, + "network":"192.193.83.0\/25", + "version":2915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.83.128", + "prefixLen":25, + "network":"192.193.83.128\/25", + "version":2914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.96.0", + "prefixLen":25, + "network":"192.193.96.0\/25", + "version":2913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.96.128", + "prefixLen":25, + "network":"192.193.96.128\/25", + "version":2912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.97.0", + "prefixLen":25, + "network":"192.193.97.0\/25", + "version":2911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.97.128", + "prefixLen":25, + "network":"192.193.97.128\/25", + "version":2910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.98.0", + "prefixLen":25, + "network":"192.193.98.0\/25", + "version":2909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.98.128", + "prefixLen":25, + "network":"192.193.98.128\/25", + "version":2908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.99.0", + "prefixLen":25, + "network":"192.193.99.0\/25", + "version":2907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.99.128", + "prefixLen":25, + "network":"192.193.99.128\/25", + "version":2906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.112.0", + "prefixLen":25, + "network":"192.193.112.0\/25", + "version":2905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.112.128", + "prefixLen":25, + "network":"192.193.112.128\/25", + "version":2904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.113.0", + "prefixLen":25, + "network":"192.193.113.0\/25", + "version":2903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.113.128", + "prefixLen":25, + "network":"192.193.113.128\/25", + "version":2902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.114.0", + "prefixLen":25, + "network":"192.193.114.0\/25", + "version":2901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.114.128", + "prefixLen":25, + "network":"192.193.114.128\/25", + "version":2900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.115.0", + "prefixLen":25, + "network":"192.193.115.0\/25", + "version":2899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.115.128", + "prefixLen":25, + "network":"192.193.115.128\/25", + "version":2898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.128.0", + "prefixLen":25, + "network":"192.193.128.0\/25", + "version":2897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.128.128", + "prefixLen":25, + "network":"192.193.128.128\/25", + "version":2896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.129.0", + "prefixLen":25, + "network":"192.193.129.0\/25", + "version":2895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.129.128", + "prefixLen":25, + "network":"192.193.129.128\/25", + "version":2894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.130.0", + "prefixLen":25, + "network":"192.193.130.0\/25", + "version":2893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.130.128", + "prefixLen":25, + "network":"192.193.130.128\/25", + "version":2892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.131.0", + "prefixLen":25, + "network":"192.193.131.0\/25", + "version":2891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.131.128", + "prefixLen":25, + "network":"192.193.131.128\/25", + "version":2890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.144.0", + "prefixLen":25, + "network":"192.193.144.0\/25", + "version":2889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.144.128", + "prefixLen":25, + "network":"192.193.144.128\/25", + "version":2888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.145.0", + "prefixLen":25, + "network":"192.193.145.0\/25", + "version":2887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.145.128", + "prefixLen":25, + "network":"192.193.145.128\/25", + "version":2886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.146.0", + "prefixLen":25, + "network":"192.193.146.0\/25", + "version":2885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.146.128", + "prefixLen":25, + "network":"192.193.146.128\/25", + "version":2884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.147.0", + "prefixLen":25, + "network":"192.193.147.0\/25", + "version":2883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.147.128", + "prefixLen":25, + "network":"192.193.147.128\/25", + "version":2882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.160.0", + "prefixLen":25, + "network":"192.193.160.0\/25", + "version":2881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.160.128", + "prefixLen":25, + "network":"192.193.160.128\/25", + "version":2880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.161.0", + "prefixLen":25, + "network":"192.193.161.0\/25", + "version":2879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.161.128", + "prefixLen":25, + "network":"192.193.161.128\/25", + "version":2878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.162.0", + "prefixLen":25, + "network":"192.193.162.0\/25", + "version":2877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.162.128", + "prefixLen":25, + "network":"192.193.162.128\/25", + "version":2876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.163.0", + "prefixLen":25, + "network":"192.193.163.0\/25", + "version":2875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.163.128", + "prefixLen":25, + "network":"192.193.163.128\/25", + "version":2874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.176.0", + "prefixLen":25, + "network":"192.193.176.0\/25", + "version":2873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.176.128", + "prefixLen":25, + "network":"192.193.176.128\/25", + "version":2872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.177.0", + "prefixLen":25, + "network":"192.193.177.0\/25", + "version":2871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.177.128", + "prefixLen":25, + "network":"192.193.177.128\/25", + "version":2870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.178.0", + "prefixLen":25, + "network":"192.193.178.0\/25", + "version":2869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.178.128", + "prefixLen":25, + "network":"192.193.178.128\/25", + "version":2868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.179.0", + "prefixLen":25, + "network":"192.193.179.0\/25", + "version":2867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.179.128", + "prefixLen":25, + "network":"192.193.179.128\/25", + "version":2866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.192.0", + "prefixLen":25, + "network":"192.193.192.0\/25", + "version":2865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.192.128", + "prefixLen":25, + "network":"192.193.192.128\/25", + "version":2864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.193.0", + "prefixLen":25, + "network":"192.193.193.0\/25", + "version":2863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.193.128", + "prefixLen":25, + "network":"192.193.193.128\/25", + "version":2862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.194.0", + "prefixLen":25, + "network":"192.193.194.0\/25", + "version":2861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.194.128", + "prefixLen":25, + "network":"192.193.194.128\/25", + "version":2860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.195.0", + "prefixLen":25, + "network":"192.193.195.0\/25", + "version":2859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.195.128", + "prefixLen":25, + "network":"192.193.195.128\/25", + "version":2858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.208.0", + "prefixLen":25, + "network":"192.193.208.0\/25", + "version":2857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.208.128", + "prefixLen":25, + "network":"192.193.208.128\/25", + "version":2856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.209.0", + "prefixLen":25, + "network":"192.193.209.0\/25", + "version":2855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.209.128", + "prefixLen":25, + "network":"192.193.209.128\/25", + "version":2854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.210.0", + "prefixLen":25, + "network":"192.193.210.0\/25", + "version":2853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.210.128", + "prefixLen":25, + "network":"192.193.210.128\/25", + "version":2852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.211.0", + "prefixLen":25, + "network":"192.193.211.0\/25", + "version":2851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.211.128", + "prefixLen":25, + "network":"192.193.211.128\/25", + "version":2850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.224.0", + "prefixLen":25, + "network":"192.193.224.0\/25", + "version":2849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.224.128", + "prefixLen":25, + "network":"192.193.224.128\/25", + "version":2848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.225.0", + "prefixLen":25, + "network":"192.193.225.0\/25", + "version":2847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.225.128", + "prefixLen":25, + "network":"192.193.225.128\/25", + "version":2846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.226.0", + "prefixLen":25, + "network":"192.193.226.0\/25", + "version":2845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.226.128", + "prefixLen":25, + "network":"192.193.226.128\/25", + "version":2844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.227.0", + "prefixLen":25, + "network":"192.193.227.0\/25", + "version":2843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.227.128", + "prefixLen":25, + "network":"192.193.227.128\/25", + "version":2842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.240.0", + "prefixLen":25, + "network":"192.193.240.0\/25", + "version":2841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.240.128", + "prefixLen":25, + "network":"192.193.240.128\/25", + "version":2840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.241.0", + "prefixLen":25, + "network":"192.193.241.0\/25", + "version":2839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.241.128", + "prefixLen":25, + "network":"192.193.241.128\/25", + "version":2838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.242.0", + "prefixLen":25, + "network":"192.193.242.0\/25", + "version":2837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.242.128", + "prefixLen":25, + "network":"192.193.242.128\/25", + "version":2836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.243.0", + "prefixLen":25, + "network":"192.193.243.0\/25", + "version":2835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.193.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.193.243.128", + "prefixLen":25, + "network":"192.193.243.128\/25", + "version":2834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64625 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.0.0", + "prefixLen":25, + "network":"192.194.0.0\/25", + "version":2961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.0.128", + "prefixLen":25, + "network":"192.194.0.128\/25", + "version":3088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.1.0", + "prefixLen":25, + "network":"192.194.1.0\/25", + "version":3087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.1.128", + "prefixLen":25, + "network":"192.194.1.128\/25", + "version":3086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.2.0", + "prefixLen":25, + "network":"192.194.2.0\/25", + "version":3085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.2.128", + "prefixLen":25, + "network":"192.194.2.128\/25", + "version":3084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.3.0", + "prefixLen":25, + "network":"192.194.3.0\/25", + "version":3083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.3.128", + "prefixLen":25, + "network":"192.194.3.128\/25", + "version":3082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.16.0", + "prefixLen":25, + "network":"192.194.16.0\/25", + "version":3081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.16.128", + "prefixLen":25, + "network":"192.194.16.128\/25", + "version":3080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.17.0", + "prefixLen":25, + "network":"192.194.17.0\/25", + "version":3079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.17.128", + "prefixLen":25, + "network":"192.194.17.128\/25", + "version":3078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.18.0", + "prefixLen":25, + "network":"192.194.18.0\/25", + "version":3077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.18.128", + "prefixLen":25, + "network":"192.194.18.128\/25", + "version":3076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.19.0", + "prefixLen":25, + "network":"192.194.19.0\/25", + "version":3075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.19.128", + "prefixLen":25, + "network":"192.194.19.128\/25", + "version":3074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.32.0", + "prefixLen":25, + "network":"192.194.32.0\/25", + "version":3073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.32.128", + "prefixLen":25, + "network":"192.194.32.128\/25", + "version":3072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.33.0", + "prefixLen":25, + "network":"192.194.33.0\/25", + "version":3071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.33.128", + "prefixLen":25, + "network":"192.194.33.128\/25", + "version":3070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.34.0", + "prefixLen":25, + "network":"192.194.34.0\/25", + "version":3069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.34.128", + "prefixLen":25, + "network":"192.194.34.128\/25", + "version":3068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.35.0", + "prefixLen":25, + "network":"192.194.35.0\/25", + "version":3067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.35.128", + "prefixLen":25, + "network":"192.194.35.128\/25", + "version":3066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.48.0", + "prefixLen":25, + "network":"192.194.48.0\/25", + "version":3065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.48.128", + "prefixLen":25, + "network":"192.194.48.128\/25", + "version":3064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.49.0", + "prefixLen":25, + "network":"192.194.49.0\/25", + "version":3063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.49.128", + "prefixLen":25, + "network":"192.194.49.128\/25", + "version":3062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.50.0", + "prefixLen":25, + "network":"192.194.50.0\/25", + "version":3061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.50.128", + "prefixLen":25, + "network":"192.194.50.128\/25", + "version":3060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.51.0", + "prefixLen":25, + "network":"192.194.51.0\/25", + "version":3059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.51.128", + "prefixLen":25, + "network":"192.194.51.128\/25", + "version":3058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.64.0", + "prefixLen":25, + "network":"192.194.64.0\/25", + "version":3057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.64.128", + "prefixLen":25, + "network":"192.194.64.128\/25", + "version":3056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.65.0", + "prefixLen":25, + "network":"192.194.65.0\/25", + "version":3055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.65.128", + "prefixLen":25, + "network":"192.194.65.128\/25", + "version":3054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.66.0", + "prefixLen":25, + "network":"192.194.66.0\/25", + "version":3053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.66.128", + "prefixLen":25, + "network":"192.194.66.128\/25", + "version":3052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.67.0", + "prefixLen":25, + "network":"192.194.67.0\/25", + "version":3051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.67.128", + "prefixLen":25, + "network":"192.194.67.128\/25", + "version":3050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.80.0", + "prefixLen":25, + "network":"192.194.80.0\/25", + "version":3049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.80.128", + "prefixLen":25, + "network":"192.194.80.128\/25", + "version":3048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.81.0", + "prefixLen":25, + "network":"192.194.81.0\/25", + "version":3047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.81.128", + "prefixLen":25, + "network":"192.194.81.128\/25", + "version":3046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.82.0", + "prefixLen":25, + "network":"192.194.82.0\/25", + "version":3045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.82.128", + "prefixLen":25, + "network":"192.194.82.128\/25", + "version":3044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.83.0", + "prefixLen":25, + "network":"192.194.83.0\/25", + "version":3043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.83.128", + "prefixLen":25, + "network":"192.194.83.128\/25", + "version":3042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.96.0", + "prefixLen":25, + "network":"192.194.96.0\/25", + "version":3041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.96.128", + "prefixLen":25, + "network":"192.194.96.128\/25", + "version":3040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.97.0", + "prefixLen":25, + "network":"192.194.97.0\/25", + "version":3039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.97.128", + "prefixLen":25, + "network":"192.194.97.128\/25", + "version":3038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.98.0", + "prefixLen":25, + "network":"192.194.98.0\/25", + "version":3037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.98.128", + "prefixLen":25, + "network":"192.194.98.128\/25", + "version":3036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.99.0", + "prefixLen":25, + "network":"192.194.99.0\/25", + "version":3035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.99.128", + "prefixLen":25, + "network":"192.194.99.128\/25", + "version":3034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.112.0", + "prefixLen":25, + "network":"192.194.112.0\/25", + "version":3033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.112.128", + "prefixLen":25, + "network":"192.194.112.128\/25", + "version":3032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.113.0", + "prefixLen":25, + "network":"192.194.113.0\/25", + "version":3031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.113.128", + "prefixLen":25, + "network":"192.194.113.128\/25", + "version":3030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.114.0", + "prefixLen":25, + "network":"192.194.114.0\/25", + "version":3029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.114.128", + "prefixLen":25, + "network":"192.194.114.128\/25", + "version":3028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.115.0", + "prefixLen":25, + "network":"192.194.115.0\/25", + "version":3027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.115.128", + "prefixLen":25, + "network":"192.194.115.128\/25", + "version":3026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.128.0", + "prefixLen":25, + "network":"192.194.128.0\/25", + "version":3025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.128.128", + "prefixLen":25, + "network":"192.194.128.128\/25", + "version":3024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.129.0", + "prefixLen":25, + "network":"192.194.129.0\/25", + "version":3023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.129.128", + "prefixLen":25, + "network":"192.194.129.128\/25", + "version":3022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.130.0", + "prefixLen":25, + "network":"192.194.130.0\/25", + "version":3021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.130.128", + "prefixLen":25, + "network":"192.194.130.128\/25", + "version":3020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.131.0", + "prefixLen":25, + "network":"192.194.131.0\/25", + "version":3019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.131.128", + "prefixLen":25, + "network":"192.194.131.128\/25", + "version":3018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.144.0", + "prefixLen":25, + "network":"192.194.144.0\/25", + "version":3017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.144.128", + "prefixLen":25, + "network":"192.194.144.128\/25", + "version":3016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.145.0", + "prefixLen":25, + "network":"192.194.145.0\/25", + "version":3015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.145.128", + "prefixLen":25, + "network":"192.194.145.128\/25", + "version":3014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.146.0", + "prefixLen":25, + "network":"192.194.146.0\/25", + "version":3013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.146.128", + "prefixLen":25, + "network":"192.194.146.128\/25", + "version":3012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.147.0", + "prefixLen":25, + "network":"192.194.147.0\/25", + "version":3011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.147.128", + "prefixLen":25, + "network":"192.194.147.128\/25", + "version":3010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.160.0", + "prefixLen":25, + "network":"192.194.160.0\/25", + "version":3009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.160.128", + "prefixLen":25, + "network":"192.194.160.128\/25", + "version":3008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.161.0", + "prefixLen":25, + "network":"192.194.161.0\/25", + "version":3007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.161.128", + "prefixLen":25, + "network":"192.194.161.128\/25", + "version":3006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.162.0", + "prefixLen":25, + "network":"192.194.162.0\/25", + "version":3005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.162.128", + "prefixLen":25, + "network":"192.194.162.128\/25", + "version":3004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.163.0", + "prefixLen":25, + "network":"192.194.163.0\/25", + "version":3003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.163.128", + "prefixLen":25, + "network":"192.194.163.128\/25", + "version":3002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.176.0", + "prefixLen":25, + "network":"192.194.176.0\/25", + "version":3001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.176.128", + "prefixLen":25, + "network":"192.194.176.128\/25", + "version":3000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.177.0", + "prefixLen":25, + "network":"192.194.177.0\/25", + "version":2999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.177.128", + "prefixLen":25, + "network":"192.194.177.128\/25", + "version":2998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.178.0", + "prefixLen":25, + "network":"192.194.178.0\/25", + "version":2997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.178.128", + "prefixLen":25, + "network":"192.194.178.128\/25", + "version":2996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.179.0", + "prefixLen":25, + "network":"192.194.179.0\/25", + "version":2995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.179.128", + "prefixLen":25, + "network":"192.194.179.128\/25", + "version":2994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.192.0", + "prefixLen":25, + "network":"192.194.192.0\/25", + "version":2993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.192.128", + "prefixLen":25, + "network":"192.194.192.128\/25", + "version":2992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.193.0", + "prefixLen":25, + "network":"192.194.193.0\/25", + "version":2991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.193.128", + "prefixLen":25, + "network":"192.194.193.128\/25", + "version":2990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.194.0", + "prefixLen":25, + "network":"192.194.194.0\/25", + "version":2989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.194.128", + "prefixLen":25, + "network":"192.194.194.128\/25", + "version":2988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.195.0", + "prefixLen":25, + "network":"192.194.195.0\/25", + "version":2987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.195.128", + "prefixLen":25, + "network":"192.194.195.128\/25", + "version":2986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.208.0", + "prefixLen":25, + "network":"192.194.208.0\/25", + "version":2985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.208.128", + "prefixLen":25, + "network":"192.194.208.128\/25", + "version":2984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.209.0", + "prefixLen":25, + "network":"192.194.209.0\/25", + "version":2983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.209.128", + "prefixLen":25, + "network":"192.194.209.128\/25", + "version":2982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.210.0", + "prefixLen":25, + "network":"192.194.210.0\/25", + "version":2981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.210.128", + "prefixLen":25, + "network":"192.194.210.128\/25", + "version":2980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.211.0", + "prefixLen":25, + "network":"192.194.211.0\/25", + "version":2979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.211.128", + "prefixLen":25, + "network":"192.194.211.128\/25", + "version":2978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.224.0", + "prefixLen":25, + "network":"192.194.224.0\/25", + "version":2977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.224.128", + "prefixLen":25, + "network":"192.194.224.128\/25", + "version":2976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.225.0", + "prefixLen":25, + "network":"192.194.225.0\/25", + "version":2975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.225.128", + "prefixLen":25, + "network":"192.194.225.128\/25", + "version":2974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.226.0", + "prefixLen":25, + "network":"192.194.226.0\/25", + "version":2973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.226.128", + "prefixLen":25, + "network":"192.194.226.128\/25", + "version":2972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.227.0", + "prefixLen":25, + "network":"192.194.227.0\/25", + "version":2971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.227.128", + "prefixLen":25, + "network":"192.194.227.128\/25", + "version":2970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.240.0", + "prefixLen":25, + "network":"192.194.240.0\/25", + "version":2969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.240.128", + "prefixLen":25, + "network":"192.194.240.128\/25", + "version":2968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.241.0", + "prefixLen":25, + "network":"192.194.241.0\/25", + "version":2967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.241.128", + "prefixLen":25, + "network":"192.194.241.128\/25", + "version":2966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.242.0", + "prefixLen":25, + "network":"192.194.242.0\/25", + "version":2965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.242.128", + "prefixLen":25, + "network":"192.194.242.128\/25", + "version":2964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.243.0", + "prefixLen":25, + "network":"192.194.243.0\/25", + "version":2963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.194.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.194.243.128", + "prefixLen":25, + "network":"192.194.243.128\/25", + "version":2962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64626 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.0.0", + "prefixLen":25, + "network":"192.195.0.0\/25", + "version":3089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.0.128", + "prefixLen":25, + "network":"192.195.0.128\/25", + "version":3216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.1.0", + "prefixLen":25, + "network":"192.195.1.0\/25", + "version":3215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.1.128", + "prefixLen":25, + "network":"192.195.1.128\/25", + "version":3214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.2.0", + "prefixLen":25, + "network":"192.195.2.0\/25", + "version":3213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.2.128", + "prefixLen":25, + "network":"192.195.2.128\/25", + "version":3212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.3.0", + "prefixLen":25, + "network":"192.195.3.0\/25", + "version":3211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.3.128", + "prefixLen":25, + "network":"192.195.3.128\/25", + "version":3210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.16.0", + "prefixLen":25, + "network":"192.195.16.0\/25", + "version":3209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.16.128", + "prefixLen":25, + "network":"192.195.16.128\/25", + "version":3208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.17.0", + "prefixLen":25, + "network":"192.195.17.0\/25", + "version":3207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.17.128", + "prefixLen":25, + "network":"192.195.17.128\/25", + "version":3206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.18.0", + "prefixLen":25, + "network":"192.195.18.0\/25", + "version":3205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.18.128", + "prefixLen":25, + "network":"192.195.18.128\/25", + "version":3204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.19.0", + "prefixLen":25, + "network":"192.195.19.0\/25", + "version":3203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.19.128", + "prefixLen":25, + "network":"192.195.19.128\/25", + "version":3202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.32.0", + "prefixLen":25, + "network":"192.195.32.0\/25", + "version":3201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.32.128", + "prefixLen":25, + "network":"192.195.32.128\/25", + "version":3200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.33.0", + "prefixLen":25, + "network":"192.195.33.0\/25", + "version":3199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.33.128", + "prefixLen":25, + "network":"192.195.33.128\/25", + "version":3198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.34.0", + "prefixLen":25, + "network":"192.195.34.0\/25", + "version":3197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.34.128", + "prefixLen":25, + "network":"192.195.34.128\/25", + "version":3196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.35.0", + "prefixLen":25, + "network":"192.195.35.0\/25", + "version":3195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.35.128", + "prefixLen":25, + "network":"192.195.35.128\/25", + "version":3194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.48.0", + "prefixLen":25, + "network":"192.195.48.0\/25", + "version":3193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.48.128", + "prefixLen":25, + "network":"192.195.48.128\/25", + "version":3192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.49.0", + "prefixLen":25, + "network":"192.195.49.0\/25", + "version":3191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.49.128", + "prefixLen":25, + "network":"192.195.49.128\/25", + "version":3190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.50.0", + "prefixLen":25, + "network":"192.195.50.0\/25", + "version":3189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.50.128", + "prefixLen":25, + "network":"192.195.50.128\/25", + "version":3188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.51.0", + "prefixLen":25, + "network":"192.195.51.0\/25", + "version":3187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.51.128", + "prefixLen":25, + "network":"192.195.51.128\/25", + "version":3186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.64.0", + "prefixLen":25, + "network":"192.195.64.0\/25", + "version":3185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.64.128", + "prefixLen":25, + "network":"192.195.64.128\/25", + "version":3184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.65.0", + "prefixLen":25, + "network":"192.195.65.0\/25", + "version":3183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.65.128", + "prefixLen":25, + "network":"192.195.65.128\/25", + "version":3182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.66.0", + "prefixLen":25, + "network":"192.195.66.0\/25", + "version":3181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.66.128", + "prefixLen":25, + "network":"192.195.66.128\/25", + "version":3180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.67.0", + "prefixLen":25, + "network":"192.195.67.0\/25", + "version":3179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.67.128", + "prefixLen":25, + "network":"192.195.67.128\/25", + "version":3178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.80.0", + "prefixLen":25, + "network":"192.195.80.0\/25", + "version":3177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.80.128", + "prefixLen":25, + "network":"192.195.80.128\/25", + "version":3176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.81.0", + "prefixLen":25, + "network":"192.195.81.0\/25", + "version":3175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.81.128", + "prefixLen":25, + "network":"192.195.81.128\/25", + "version":3174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.82.0", + "prefixLen":25, + "network":"192.195.82.0\/25", + "version":3173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.82.128", + "prefixLen":25, + "network":"192.195.82.128\/25", + "version":3172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.83.0", + "prefixLen":25, + "network":"192.195.83.0\/25", + "version":3171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.83.128", + "prefixLen":25, + "network":"192.195.83.128\/25", + "version":3170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.96.0", + "prefixLen":25, + "network":"192.195.96.0\/25", + "version":3169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.96.128", + "prefixLen":25, + "network":"192.195.96.128\/25", + "version":3168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.97.0", + "prefixLen":25, + "network":"192.195.97.0\/25", + "version":3167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.97.128", + "prefixLen":25, + "network":"192.195.97.128\/25", + "version":3166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.98.0", + "prefixLen":25, + "network":"192.195.98.0\/25", + "version":3165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.98.128", + "prefixLen":25, + "network":"192.195.98.128\/25", + "version":3164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.99.0", + "prefixLen":25, + "network":"192.195.99.0\/25", + "version":3163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.99.128", + "prefixLen":25, + "network":"192.195.99.128\/25", + "version":3162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.112.0", + "prefixLen":25, + "network":"192.195.112.0\/25", + "version":3161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.112.128", + "prefixLen":25, + "network":"192.195.112.128\/25", + "version":3160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.113.0", + "prefixLen":25, + "network":"192.195.113.0\/25", + "version":3159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.113.128", + "prefixLen":25, + "network":"192.195.113.128\/25", + "version":3158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.114.0", + "prefixLen":25, + "network":"192.195.114.0\/25", + "version":3157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.114.128", + "prefixLen":25, + "network":"192.195.114.128\/25", + "version":3156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.115.0", + "prefixLen":25, + "network":"192.195.115.0\/25", + "version":3155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.115.128", + "prefixLen":25, + "network":"192.195.115.128\/25", + "version":3154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.128.0", + "prefixLen":25, + "network":"192.195.128.0\/25", + "version":3153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.128.128", + "prefixLen":25, + "network":"192.195.128.128\/25", + "version":3152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.129.0", + "prefixLen":25, + "network":"192.195.129.0\/25", + "version":3151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.129.128", + "prefixLen":25, + "network":"192.195.129.128\/25", + "version":3150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.130.0", + "prefixLen":25, + "network":"192.195.130.0\/25", + "version":3149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.130.128", + "prefixLen":25, + "network":"192.195.130.128\/25", + "version":3148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.131.0", + "prefixLen":25, + "network":"192.195.131.0\/25", + "version":3147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.131.128", + "prefixLen":25, + "network":"192.195.131.128\/25", + "version":3146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.144.0", + "prefixLen":25, + "network":"192.195.144.0\/25", + "version":3145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.144.128", + "prefixLen":25, + "network":"192.195.144.128\/25", + "version":3144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.145.0", + "prefixLen":25, + "network":"192.195.145.0\/25", + "version":3143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.145.128", + "prefixLen":25, + "network":"192.195.145.128\/25", + "version":3142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.146.0", + "prefixLen":25, + "network":"192.195.146.0\/25", + "version":3141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.146.128", + "prefixLen":25, + "network":"192.195.146.128\/25", + "version":3140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.147.0", + "prefixLen":25, + "network":"192.195.147.0\/25", + "version":3139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.147.128", + "prefixLen":25, + "network":"192.195.147.128\/25", + "version":3138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.160.0", + "prefixLen":25, + "network":"192.195.160.0\/25", + "version":3137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.160.128", + "prefixLen":25, + "network":"192.195.160.128\/25", + "version":3136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.161.0", + "prefixLen":25, + "network":"192.195.161.0\/25", + "version":3135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.161.128", + "prefixLen":25, + "network":"192.195.161.128\/25", + "version":3134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.162.0", + "prefixLen":25, + "network":"192.195.162.0\/25", + "version":3133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.162.128", + "prefixLen":25, + "network":"192.195.162.128\/25", + "version":3132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.163.0", + "prefixLen":25, + "network":"192.195.163.0\/25", + "version":3131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.163.128", + "prefixLen":25, + "network":"192.195.163.128\/25", + "version":3130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.176.0", + "prefixLen":25, + "network":"192.195.176.0\/25", + "version":3129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.176.128", + "prefixLen":25, + "network":"192.195.176.128\/25", + "version":3128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.177.0", + "prefixLen":25, + "network":"192.195.177.0\/25", + "version":3127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.177.128", + "prefixLen":25, + "network":"192.195.177.128\/25", + "version":3126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.178.0", + "prefixLen":25, + "network":"192.195.178.0\/25", + "version":3125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.178.128", + "prefixLen":25, + "network":"192.195.178.128\/25", + "version":3124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.179.0", + "prefixLen":25, + "network":"192.195.179.0\/25", + "version":3123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.179.128", + "prefixLen":25, + "network":"192.195.179.128\/25", + "version":3122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.192.0", + "prefixLen":25, + "network":"192.195.192.0\/25", + "version":3121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.192.128", + "prefixLen":25, + "network":"192.195.192.128\/25", + "version":3120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.193.0", + "prefixLen":25, + "network":"192.195.193.0\/25", + "version":3119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.193.128", + "prefixLen":25, + "network":"192.195.193.128\/25", + "version":3118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.194.0", + "prefixLen":25, + "network":"192.195.194.0\/25", + "version":3117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.194.128", + "prefixLen":25, + "network":"192.195.194.128\/25", + "version":3116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.195.0", + "prefixLen":25, + "network":"192.195.195.0\/25", + "version":3115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.195.128", + "prefixLen":25, + "network":"192.195.195.128\/25", + "version":3114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.208.0", + "prefixLen":25, + "network":"192.195.208.0\/25", + "version":3113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.208.128", + "prefixLen":25, + "network":"192.195.208.128\/25", + "version":3112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.209.0", + "prefixLen":25, + "network":"192.195.209.0\/25", + "version":3111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.209.128", + "prefixLen":25, + "network":"192.195.209.128\/25", + "version":3110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.210.0", + "prefixLen":25, + "network":"192.195.210.0\/25", + "version":3109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.210.128", + "prefixLen":25, + "network":"192.195.210.128\/25", + "version":3108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.211.0", + "prefixLen":25, + "network":"192.195.211.0\/25", + "version":3107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.211.128", + "prefixLen":25, + "network":"192.195.211.128\/25", + "version":3106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.224.0", + "prefixLen":25, + "network":"192.195.224.0\/25", + "version":3105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.224.128", + "prefixLen":25, + "network":"192.195.224.128\/25", + "version":3104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.225.0", + "prefixLen":25, + "network":"192.195.225.0\/25", + "version":3103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.225.128", + "prefixLen":25, + "network":"192.195.225.128\/25", + "version":3102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.226.0", + "prefixLen":25, + "network":"192.195.226.0\/25", + "version":3101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.226.128", + "prefixLen":25, + "network":"192.195.226.128\/25", + "version":3100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.227.0", + "prefixLen":25, + "network":"192.195.227.0\/25", + "version":3099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.227.128", + "prefixLen":25, + "network":"192.195.227.128\/25", + "version":3098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.240.0", + "prefixLen":25, + "network":"192.195.240.0\/25", + "version":3097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.240.128", + "prefixLen":25, + "network":"192.195.240.128\/25", + "version":3096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.241.0", + "prefixLen":25, + "network":"192.195.241.0\/25", + "version":3095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.241.128", + "prefixLen":25, + "network":"192.195.241.128\/25", + "version":3094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.242.0", + "prefixLen":25, + "network":"192.195.242.0\/25", + "version":3093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.242.128", + "prefixLen":25, + "network":"192.195.242.128\/25", + "version":3092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.243.0", + "prefixLen":25, + "network":"192.195.243.0\/25", + "version":3091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.195.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.195.243.128", + "prefixLen":25, + "network":"192.195.243.128\/25", + "version":3090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64627 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.0.0", + "prefixLen":25, + "network":"192.196.0.0\/25", + "version":3217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.0.128", + "prefixLen":25, + "network":"192.196.0.128\/25", + "version":3344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.1.0", + "prefixLen":25, + "network":"192.196.1.0\/25", + "version":3343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.1.128", + "prefixLen":25, + "network":"192.196.1.128\/25", + "version":3342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.2.0", + "prefixLen":25, + "network":"192.196.2.0\/25", + "version":3341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.2.128", + "prefixLen":25, + "network":"192.196.2.128\/25", + "version":3340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.3.0", + "prefixLen":25, + "network":"192.196.3.0\/25", + "version":3339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.3.128", + "prefixLen":25, + "network":"192.196.3.128\/25", + "version":3338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.16.0", + "prefixLen":25, + "network":"192.196.16.0\/25", + "version":3337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.16.128", + "prefixLen":25, + "network":"192.196.16.128\/25", + "version":3336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.17.0", + "prefixLen":25, + "network":"192.196.17.0\/25", + "version":3335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.17.128", + "prefixLen":25, + "network":"192.196.17.128\/25", + "version":3334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.18.0", + "prefixLen":25, + "network":"192.196.18.0\/25", + "version":3333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.18.128", + "prefixLen":25, + "network":"192.196.18.128\/25", + "version":3332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.19.0", + "prefixLen":25, + "network":"192.196.19.0\/25", + "version":3331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.19.128", + "prefixLen":25, + "network":"192.196.19.128\/25", + "version":3330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.32.0", + "prefixLen":25, + "network":"192.196.32.0\/25", + "version":3329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.32.128", + "prefixLen":25, + "network":"192.196.32.128\/25", + "version":3328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.33.0", + "prefixLen":25, + "network":"192.196.33.0\/25", + "version":3327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.33.128", + "prefixLen":25, + "network":"192.196.33.128\/25", + "version":3326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.34.0", + "prefixLen":25, + "network":"192.196.34.0\/25", + "version":3325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.34.128", + "prefixLen":25, + "network":"192.196.34.128\/25", + "version":3324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.35.0", + "prefixLen":25, + "network":"192.196.35.0\/25", + "version":3323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.35.128", + "prefixLen":25, + "network":"192.196.35.128\/25", + "version":3322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.48.0", + "prefixLen":25, + "network":"192.196.48.0\/25", + "version":3321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.48.128", + "prefixLen":25, + "network":"192.196.48.128\/25", + "version":3320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.49.0", + "prefixLen":25, + "network":"192.196.49.0\/25", + "version":3319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.49.128", + "prefixLen":25, + "network":"192.196.49.128\/25", + "version":3318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.50.0", + "prefixLen":25, + "network":"192.196.50.0\/25", + "version":3317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.50.128", + "prefixLen":25, + "network":"192.196.50.128\/25", + "version":3316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.51.0", + "prefixLen":25, + "network":"192.196.51.0\/25", + "version":3315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.51.128", + "prefixLen":25, + "network":"192.196.51.128\/25", + "version":3314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.64.0", + "prefixLen":25, + "network":"192.196.64.0\/25", + "version":3313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.64.128", + "prefixLen":25, + "network":"192.196.64.128\/25", + "version":3312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.65.0", + "prefixLen":25, + "network":"192.196.65.0\/25", + "version":3311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.65.128", + "prefixLen":25, + "network":"192.196.65.128\/25", + "version":3310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.66.0", + "prefixLen":25, + "network":"192.196.66.0\/25", + "version":3309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.66.128", + "prefixLen":25, + "network":"192.196.66.128\/25", + "version":3308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.67.0", + "prefixLen":25, + "network":"192.196.67.0\/25", + "version":3307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.67.128", + "prefixLen":25, + "network":"192.196.67.128\/25", + "version":3306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.80.0", + "prefixLen":25, + "network":"192.196.80.0\/25", + "version":3305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.80.128", + "prefixLen":25, + "network":"192.196.80.128\/25", + "version":3304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.81.0", + "prefixLen":25, + "network":"192.196.81.0\/25", + "version":3303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.81.128", + "prefixLen":25, + "network":"192.196.81.128\/25", + "version":3302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.82.0", + "prefixLen":25, + "network":"192.196.82.0\/25", + "version":3301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.82.128", + "prefixLen":25, + "network":"192.196.82.128\/25", + "version":3300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.83.0", + "prefixLen":25, + "network":"192.196.83.0\/25", + "version":3299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.83.128", + "prefixLen":25, + "network":"192.196.83.128\/25", + "version":3298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.96.0", + "prefixLen":25, + "network":"192.196.96.0\/25", + "version":3297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.96.128", + "prefixLen":25, + "network":"192.196.96.128\/25", + "version":3296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.97.0", + "prefixLen":25, + "network":"192.196.97.0\/25", + "version":3295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.97.128", + "prefixLen":25, + "network":"192.196.97.128\/25", + "version":3294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.98.0", + "prefixLen":25, + "network":"192.196.98.0\/25", + "version":3293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.98.128", + "prefixLen":25, + "network":"192.196.98.128\/25", + "version":3292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.99.0", + "prefixLen":25, + "network":"192.196.99.0\/25", + "version":3291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.99.128", + "prefixLen":25, + "network":"192.196.99.128\/25", + "version":3290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.112.0", + "prefixLen":25, + "network":"192.196.112.0\/25", + "version":3289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.112.128", + "prefixLen":25, + "network":"192.196.112.128\/25", + "version":3288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.113.0", + "prefixLen":25, + "network":"192.196.113.0\/25", + "version":3287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.113.128", + "prefixLen":25, + "network":"192.196.113.128\/25", + "version":3286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.114.0", + "prefixLen":25, + "network":"192.196.114.0\/25", + "version":3285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.114.128", + "prefixLen":25, + "network":"192.196.114.128\/25", + "version":3284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.115.0", + "prefixLen":25, + "network":"192.196.115.0\/25", + "version":3283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.115.128", + "prefixLen":25, + "network":"192.196.115.128\/25", + "version":3282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.128.0", + "prefixLen":25, + "network":"192.196.128.0\/25", + "version":3281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.128.128", + "prefixLen":25, + "network":"192.196.128.128\/25", + "version":3280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.129.0", + "prefixLen":25, + "network":"192.196.129.0\/25", + "version":3279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.129.128", + "prefixLen":25, + "network":"192.196.129.128\/25", + "version":3278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.130.0", + "prefixLen":25, + "network":"192.196.130.0\/25", + "version":3277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.130.128", + "prefixLen":25, + "network":"192.196.130.128\/25", + "version":3276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.131.0", + "prefixLen":25, + "network":"192.196.131.0\/25", + "version":3275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.131.128", + "prefixLen":25, + "network":"192.196.131.128\/25", + "version":3274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.144.0", + "prefixLen":25, + "network":"192.196.144.0\/25", + "version":3273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.144.128", + "prefixLen":25, + "network":"192.196.144.128\/25", + "version":3272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.145.0", + "prefixLen":25, + "network":"192.196.145.0\/25", + "version":3271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.145.128", + "prefixLen":25, + "network":"192.196.145.128\/25", + "version":3270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.146.0", + "prefixLen":25, + "network":"192.196.146.0\/25", + "version":3269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.146.128", + "prefixLen":25, + "network":"192.196.146.128\/25", + "version":3268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.147.0", + "prefixLen":25, + "network":"192.196.147.0\/25", + "version":3267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.147.128", + "prefixLen":25, + "network":"192.196.147.128\/25", + "version":3266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.160.0", + "prefixLen":25, + "network":"192.196.160.0\/25", + "version":3265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.160.128", + "prefixLen":25, + "network":"192.196.160.128\/25", + "version":3264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.161.0", + "prefixLen":25, + "network":"192.196.161.0\/25", + "version":3263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.161.128", + "prefixLen":25, + "network":"192.196.161.128\/25", + "version":3262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.162.0", + "prefixLen":25, + "network":"192.196.162.0\/25", + "version":3261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.162.128", + "prefixLen":25, + "network":"192.196.162.128\/25", + "version":3260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.163.0", + "prefixLen":25, + "network":"192.196.163.0\/25", + "version":3259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.163.128", + "prefixLen":25, + "network":"192.196.163.128\/25", + "version":3258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.176.0", + "prefixLen":25, + "network":"192.196.176.0\/25", + "version":3257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.176.128", + "prefixLen":25, + "network":"192.196.176.128\/25", + "version":3256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.177.0", + "prefixLen":25, + "network":"192.196.177.0\/25", + "version":3255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.177.128", + "prefixLen":25, + "network":"192.196.177.128\/25", + "version":3254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.178.0", + "prefixLen":25, + "network":"192.196.178.0\/25", + "version":3253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.178.128", + "prefixLen":25, + "network":"192.196.178.128\/25", + "version":3252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.179.0", + "prefixLen":25, + "network":"192.196.179.0\/25", + "version":3251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.179.128", + "prefixLen":25, + "network":"192.196.179.128\/25", + "version":3250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.192.0", + "prefixLen":25, + "network":"192.196.192.0\/25", + "version":3249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.192.128", + "prefixLen":25, + "network":"192.196.192.128\/25", + "version":3248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.193.0", + "prefixLen":25, + "network":"192.196.193.0\/25", + "version":3247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.193.128", + "prefixLen":25, + "network":"192.196.193.128\/25", + "version":3246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.194.0", + "prefixLen":25, + "network":"192.196.194.0\/25", + "version":3245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.194.128", + "prefixLen":25, + "network":"192.196.194.128\/25", + "version":3244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.195.0", + "prefixLen":25, + "network":"192.196.195.0\/25", + "version":3243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.195.128", + "prefixLen":25, + "network":"192.196.195.128\/25", + "version":3242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.208.0", + "prefixLen":25, + "network":"192.196.208.0\/25", + "version":3241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.208.128", + "prefixLen":25, + "network":"192.196.208.128\/25", + "version":3240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.209.0", + "prefixLen":25, + "network":"192.196.209.0\/25", + "version":3239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.209.128", + "prefixLen":25, + "network":"192.196.209.128\/25", + "version":3238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.210.0", + "prefixLen":25, + "network":"192.196.210.0\/25", + "version":3237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.210.128", + "prefixLen":25, + "network":"192.196.210.128\/25", + "version":3236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.211.0", + "prefixLen":25, + "network":"192.196.211.0\/25", + "version":3235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.211.128", + "prefixLen":25, + "network":"192.196.211.128\/25", + "version":3234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.224.0", + "prefixLen":25, + "network":"192.196.224.0\/25", + "version":3233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.224.128", + "prefixLen":25, + "network":"192.196.224.128\/25", + "version":3232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.225.0", + "prefixLen":25, + "network":"192.196.225.0\/25", + "version":3231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.225.128", + "prefixLen":25, + "network":"192.196.225.128\/25", + "version":3230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.226.0", + "prefixLen":25, + "network":"192.196.226.0\/25", + "version":3229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.226.128", + "prefixLen":25, + "network":"192.196.226.128\/25", + "version":3228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.227.0", + "prefixLen":25, + "network":"192.196.227.0\/25", + "version":3227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.227.128", + "prefixLen":25, + "network":"192.196.227.128\/25", + "version":3226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.240.0", + "prefixLen":25, + "network":"192.196.240.0\/25", + "version":3225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.240.128", + "prefixLen":25, + "network":"192.196.240.128\/25", + "version":3224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.241.0", + "prefixLen":25, + "network":"192.196.241.0\/25", + "version":3223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.241.128", + "prefixLen":25, + "network":"192.196.241.128\/25", + "version":3222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.242.0", + "prefixLen":25, + "network":"192.196.242.0\/25", + "version":3221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.242.128", + "prefixLen":25, + "network":"192.196.242.128\/25", + "version":3220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.243.0", + "prefixLen":25, + "network":"192.196.243.0\/25", + "version":3219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.196.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.196.243.128", + "prefixLen":25, + "network":"192.196.243.128\/25", + "version":3218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64628 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.0.0", + "prefixLen":25, + "network":"192.197.0.0\/25", + "version":3345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.0.128", + "prefixLen":25, + "network":"192.197.0.128\/25", + "version":3472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.1.0", + "prefixLen":25, + "network":"192.197.1.0\/25", + "version":3471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.1.128", + "prefixLen":25, + "network":"192.197.1.128\/25", + "version":3470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.2.0", + "prefixLen":25, + "network":"192.197.2.0\/25", + "version":3469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.2.128", + "prefixLen":25, + "network":"192.197.2.128\/25", + "version":3468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.3.0", + "prefixLen":25, + "network":"192.197.3.0\/25", + "version":3467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.3.128", + "prefixLen":25, + "network":"192.197.3.128\/25", + "version":3466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.16.0", + "prefixLen":25, + "network":"192.197.16.0\/25", + "version":3465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.16.128", + "prefixLen":25, + "network":"192.197.16.128\/25", + "version":3464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.17.0", + "prefixLen":25, + "network":"192.197.17.0\/25", + "version":3463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.17.128", + "prefixLen":25, + "network":"192.197.17.128\/25", + "version":3462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.18.0", + "prefixLen":25, + "network":"192.197.18.0\/25", + "version":3461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.18.128", + "prefixLen":25, + "network":"192.197.18.128\/25", + "version":3460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.19.0", + "prefixLen":25, + "network":"192.197.19.0\/25", + "version":3459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.19.128", + "prefixLen":25, + "network":"192.197.19.128\/25", + "version":3458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.32.0", + "prefixLen":25, + "network":"192.197.32.0\/25", + "version":3457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.32.128", + "prefixLen":25, + "network":"192.197.32.128\/25", + "version":3456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.33.0", + "prefixLen":25, + "network":"192.197.33.0\/25", + "version":3455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.33.128", + "prefixLen":25, + "network":"192.197.33.128\/25", + "version":3454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.34.0", + "prefixLen":25, + "network":"192.197.34.0\/25", + "version":3453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.34.128", + "prefixLen":25, + "network":"192.197.34.128\/25", + "version":3452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.35.0", + "prefixLen":25, + "network":"192.197.35.0\/25", + "version":3451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.35.128", + "prefixLen":25, + "network":"192.197.35.128\/25", + "version":3450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.48.0", + "prefixLen":25, + "network":"192.197.48.0\/25", + "version":3449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.48.128", + "prefixLen":25, + "network":"192.197.48.128\/25", + "version":3448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.49.0", + "prefixLen":25, + "network":"192.197.49.0\/25", + "version":3447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.49.128", + "prefixLen":25, + "network":"192.197.49.128\/25", + "version":3446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.50.0", + "prefixLen":25, + "network":"192.197.50.0\/25", + "version":3445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.50.128", + "prefixLen":25, + "network":"192.197.50.128\/25", + "version":3444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.51.0", + "prefixLen":25, + "network":"192.197.51.0\/25", + "version":3443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.51.128", + "prefixLen":25, + "network":"192.197.51.128\/25", + "version":3442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.64.0", + "prefixLen":25, + "network":"192.197.64.0\/25", + "version":3441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.64.128", + "prefixLen":25, + "network":"192.197.64.128\/25", + "version":3440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.65.0", + "prefixLen":25, + "network":"192.197.65.0\/25", + "version":3439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.65.128", + "prefixLen":25, + "network":"192.197.65.128\/25", + "version":3438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.66.0", + "prefixLen":25, + "network":"192.197.66.0\/25", + "version":3437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.66.128", + "prefixLen":25, + "network":"192.197.66.128\/25", + "version":3436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.67.0", + "prefixLen":25, + "network":"192.197.67.0\/25", + "version":3435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.67.128", + "prefixLen":25, + "network":"192.197.67.128\/25", + "version":3434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.80.0", + "prefixLen":25, + "network":"192.197.80.0\/25", + "version":3433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.80.128", + "prefixLen":25, + "network":"192.197.80.128\/25", + "version":3432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.81.0", + "prefixLen":25, + "network":"192.197.81.0\/25", + "version":3431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.81.128", + "prefixLen":25, + "network":"192.197.81.128\/25", + "version":3430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.82.0", + "prefixLen":25, + "network":"192.197.82.0\/25", + "version":3429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.82.128", + "prefixLen":25, + "network":"192.197.82.128\/25", + "version":3428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.83.0", + "prefixLen":25, + "network":"192.197.83.0\/25", + "version":3427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.83.128", + "prefixLen":25, + "network":"192.197.83.128\/25", + "version":3426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.96.0", + "prefixLen":25, + "network":"192.197.96.0\/25", + "version":3425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.96.128", + "prefixLen":25, + "network":"192.197.96.128\/25", + "version":3424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.97.0", + "prefixLen":25, + "network":"192.197.97.0\/25", + "version":3423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.97.128", + "prefixLen":25, + "network":"192.197.97.128\/25", + "version":3422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.98.0", + "prefixLen":25, + "network":"192.197.98.0\/25", + "version":3421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.98.128", + "prefixLen":25, + "network":"192.197.98.128\/25", + "version":3420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.99.0", + "prefixLen":25, + "network":"192.197.99.0\/25", + "version":3419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.99.128", + "prefixLen":25, + "network":"192.197.99.128\/25", + "version":3418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.112.0", + "prefixLen":25, + "network":"192.197.112.0\/25", + "version":3417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.112.128", + "prefixLen":25, + "network":"192.197.112.128\/25", + "version":3416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.113.0", + "prefixLen":25, + "network":"192.197.113.0\/25", + "version":3415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.113.128", + "prefixLen":25, + "network":"192.197.113.128\/25", + "version":3414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.114.0", + "prefixLen":25, + "network":"192.197.114.0\/25", + "version":3413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.114.128", + "prefixLen":25, + "network":"192.197.114.128\/25", + "version":3412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.115.0", + "prefixLen":25, + "network":"192.197.115.0\/25", + "version":3411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.115.128", + "prefixLen":25, + "network":"192.197.115.128\/25", + "version":3410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.128.0", + "prefixLen":25, + "network":"192.197.128.0\/25", + "version":3409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.128.128", + "prefixLen":25, + "network":"192.197.128.128\/25", + "version":3408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.129.0", + "prefixLen":25, + "network":"192.197.129.0\/25", + "version":3407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.129.128", + "prefixLen":25, + "network":"192.197.129.128\/25", + "version":3406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.130.0", + "prefixLen":25, + "network":"192.197.130.0\/25", + "version":3405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.130.128", + "prefixLen":25, + "network":"192.197.130.128\/25", + "version":3404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.131.0", + "prefixLen":25, + "network":"192.197.131.0\/25", + "version":3403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.131.128", + "prefixLen":25, + "network":"192.197.131.128\/25", + "version":3402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.144.0", + "prefixLen":25, + "network":"192.197.144.0\/25", + "version":3401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.144.128", + "prefixLen":25, + "network":"192.197.144.128\/25", + "version":3400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.145.0", + "prefixLen":25, + "network":"192.197.145.0\/25", + "version":3399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.145.128", + "prefixLen":25, + "network":"192.197.145.128\/25", + "version":3398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.146.0", + "prefixLen":25, + "network":"192.197.146.0\/25", + "version":3397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.146.128", + "prefixLen":25, + "network":"192.197.146.128\/25", + "version":3396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.147.0", + "prefixLen":25, + "network":"192.197.147.0\/25", + "version":3395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.147.128", + "prefixLen":25, + "network":"192.197.147.128\/25", + "version":3394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.160.0", + "prefixLen":25, + "network":"192.197.160.0\/25", + "version":3393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.160.128", + "prefixLen":25, + "network":"192.197.160.128\/25", + "version":3392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.161.0", + "prefixLen":25, + "network":"192.197.161.0\/25", + "version":3391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.161.128", + "prefixLen":25, + "network":"192.197.161.128\/25", + "version":3390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.162.0", + "prefixLen":25, + "network":"192.197.162.0\/25", + "version":3389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.162.128", + "prefixLen":25, + "network":"192.197.162.128\/25", + "version":3388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.163.0", + "prefixLen":25, + "network":"192.197.163.0\/25", + "version":3387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.163.128", + "prefixLen":25, + "network":"192.197.163.128\/25", + "version":3386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.176.0", + "prefixLen":25, + "network":"192.197.176.0\/25", + "version":3385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.176.128", + "prefixLen":25, + "network":"192.197.176.128\/25", + "version":3384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.177.0", + "prefixLen":25, + "network":"192.197.177.0\/25", + "version":3383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.177.128", + "prefixLen":25, + "network":"192.197.177.128\/25", + "version":3382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.178.0", + "prefixLen":25, + "network":"192.197.178.0\/25", + "version":3381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.178.128", + "prefixLen":25, + "network":"192.197.178.128\/25", + "version":3380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.179.0", + "prefixLen":25, + "network":"192.197.179.0\/25", + "version":3379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.179.128", + "prefixLen":25, + "network":"192.197.179.128\/25", + "version":3378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.192.0", + "prefixLen":25, + "network":"192.197.192.0\/25", + "version":3377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.192.128", + "prefixLen":25, + "network":"192.197.192.128\/25", + "version":3376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.193.0", + "prefixLen":25, + "network":"192.197.193.0\/25", + "version":3375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.193.128", + "prefixLen":25, + "network":"192.197.193.128\/25", + "version":3374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.194.0", + "prefixLen":25, + "network":"192.197.194.0\/25", + "version":3373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.194.128", + "prefixLen":25, + "network":"192.197.194.128\/25", + "version":3372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.195.0", + "prefixLen":25, + "network":"192.197.195.0\/25", + "version":3371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.195.128", + "prefixLen":25, + "network":"192.197.195.128\/25", + "version":3370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.208.0", + "prefixLen":25, + "network":"192.197.208.0\/25", + "version":3369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.208.128", + "prefixLen":25, + "network":"192.197.208.128\/25", + "version":3368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.209.0", + "prefixLen":25, + "network":"192.197.209.0\/25", + "version":3367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.209.128", + "prefixLen":25, + "network":"192.197.209.128\/25", + "version":3366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.210.0", + "prefixLen":25, + "network":"192.197.210.0\/25", + "version":3365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.210.128", + "prefixLen":25, + "network":"192.197.210.128\/25", + "version":3364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.211.0", + "prefixLen":25, + "network":"192.197.211.0\/25", + "version":3363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.211.128", + "prefixLen":25, + "network":"192.197.211.128\/25", + "version":3362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.224.0", + "prefixLen":25, + "network":"192.197.224.0\/25", + "version":3361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.224.128", + "prefixLen":25, + "network":"192.197.224.128\/25", + "version":3360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.225.0", + "prefixLen":25, + "network":"192.197.225.0\/25", + "version":3359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.225.128", + "prefixLen":25, + "network":"192.197.225.128\/25", + "version":3358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.226.0", + "prefixLen":25, + "network":"192.197.226.0\/25", + "version":3357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.226.128", + "prefixLen":25, + "network":"192.197.226.128\/25", + "version":3356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.227.0", + "prefixLen":25, + "network":"192.197.227.0\/25", + "version":3355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.227.128", + "prefixLen":25, + "network":"192.197.227.128\/25", + "version":3354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.240.0", + "prefixLen":25, + "network":"192.197.240.0\/25", + "version":3353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.240.128", + "prefixLen":25, + "network":"192.197.240.128\/25", + "version":3352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.241.0", + "prefixLen":25, + "network":"192.197.241.0\/25", + "version":3351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.241.128", + "prefixLen":25, + "network":"192.197.241.128\/25", + "version":3350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.242.0", + "prefixLen":25, + "network":"192.197.242.0\/25", + "version":3349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.242.128", + "prefixLen":25, + "network":"192.197.242.128\/25", + "version":3348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.243.0", + "prefixLen":25, + "network":"192.197.243.0\/25", + "version":3347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.197.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.197.243.128", + "prefixLen":25, + "network":"192.197.243.128\/25", + "version":3346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64629 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.0.0", + "prefixLen":25, + "network":"192.198.0.0\/25", + "version":3473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.0.128", + "prefixLen":25, + "network":"192.198.0.128\/25", + "version":3600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.1.0", + "prefixLen":25, + "network":"192.198.1.0\/25", + "version":3599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.1.128", + "prefixLen":25, + "network":"192.198.1.128\/25", + "version":3598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.2.0", + "prefixLen":25, + "network":"192.198.2.0\/25", + "version":3597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.2.128", + "prefixLen":25, + "network":"192.198.2.128\/25", + "version":3596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.3.0", + "prefixLen":25, + "network":"192.198.3.0\/25", + "version":3595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.3.128", + "prefixLen":25, + "network":"192.198.3.128\/25", + "version":3594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.16.0", + "prefixLen":25, + "network":"192.198.16.0\/25", + "version":3593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.16.128", + "prefixLen":25, + "network":"192.198.16.128\/25", + "version":3592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.17.0", + "prefixLen":25, + "network":"192.198.17.0\/25", + "version":3591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.17.128", + "prefixLen":25, + "network":"192.198.17.128\/25", + "version":3590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.18.0", + "prefixLen":25, + "network":"192.198.18.0\/25", + "version":3589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.18.128", + "prefixLen":25, + "network":"192.198.18.128\/25", + "version":3588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.19.0", + "prefixLen":25, + "network":"192.198.19.0\/25", + "version":3587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.19.128", + "prefixLen":25, + "network":"192.198.19.128\/25", + "version":3586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.32.0", + "prefixLen":25, + "network":"192.198.32.0\/25", + "version":3585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.32.128", + "prefixLen":25, + "network":"192.198.32.128\/25", + "version":3584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.33.0", + "prefixLen":25, + "network":"192.198.33.0\/25", + "version":3583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.33.128", + "prefixLen":25, + "network":"192.198.33.128\/25", + "version":3582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.34.0", + "prefixLen":25, + "network":"192.198.34.0\/25", + "version":3581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.34.128", + "prefixLen":25, + "network":"192.198.34.128\/25", + "version":3580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.35.0", + "prefixLen":25, + "network":"192.198.35.0\/25", + "version":3579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.35.128", + "prefixLen":25, + "network":"192.198.35.128\/25", + "version":3578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.48.0", + "prefixLen":25, + "network":"192.198.48.0\/25", + "version":3577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.48.128", + "prefixLen":25, + "network":"192.198.48.128\/25", + "version":3576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.49.0", + "prefixLen":25, + "network":"192.198.49.0\/25", + "version":3575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.49.128", + "prefixLen":25, + "network":"192.198.49.128\/25", + "version":3574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.50.0", + "prefixLen":25, + "network":"192.198.50.0\/25", + "version":3573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.50.128", + "prefixLen":25, + "network":"192.198.50.128\/25", + "version":3572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.51.0", + "prefixLen":25, + "network":"192.198.51.0\/25", + "version":3571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.51.128", + "prefixLen":25, + "network":"192.198.51.128\/25", + "version":3570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.64.0", + "prefixLen":25, + "network":"192.198.64.0\/25", + "version":3569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.64.128", + "prefixLen":25, + "network":"192.198.64.128\/25", + "version":3568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.65.0", + "prefixLen":25, + "network":"192.198.65.0\/25", + "version":3567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.65.128", + "prefixLen":25, + "network":"192.198.65.128\/25", + "version":3566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.66.0", + "prefixLen":25, + "network":"192.198.66.0\/25", + "version":3565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.66.128", + "prefixLen":25, + "network":"192.198.66.128\/25", + "version":3564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.67.0", + "prefixLen":25, + "network":"192.198.67.0\/25", + "version":3563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.67.128", + "prefixLen":25, + "network":"192.198.67.128\/25", + "version":3562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.80.0", + "prefixLen":25, + "network":"192.198.80.0\/25", + "version":3561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.80.128", + "prefixLen":25, + "network":"192.198.80.128\/25", + "version":3560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.81.0", + "prefixLen":25, + "network":"192.198.81.0\/25", + "version":3559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.81.128", + "prefixLen":25, + "network":"192.198.81.128\/25", + "version":3558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.82.0", + "prefixLen":25, + "network":"192.198.82.0\/25", + "version":3557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.82.128", + "prefixLen":25, + "network":"192.198.82.128\/25", + "version":3556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.83.0", + "prefixLen":25, + "network":"192.198.83.0\/25", + "version":3555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.83.128", + "prefixLen":25, + "network":"192.198.83.128\/25", + "version":3554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.96.0", + "prefixLen":25, + "network":"192.198.96.0\/25", + "version":3553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.96.128", + "prefixLen":25, + "network":"192.198.96.128\/25", + "version":3552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.97.0", + "prefixLen":25, + "network":"192.198.97.0\/25", + "version":3551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.97.128", + "prefixLen":25, + "network":"192.198.97.128\/25", + "version":3550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.98.0", + "prefixLen":25, + "network":"192.198.98.0\/25", + "version":3549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.98.128", + "prefixLen":25, + "network":"192.198.98.128\/25", + "version":3548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.99.0", + "prefixLen":25, + "network":"192.198.99.0\/25", + "version":3547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.99.128", + "prefixLen":25, + "network":"192.198.99.128\/25", + "version":3546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.112.0", + "prefixLen":25, + "network":"192.198.112.0\/25", + "version":3545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.112.128", + "prefixLen":25, + "network":"192.198.112.128\/25", + "version":3544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.113.0", + "prefixLen":25, + "network":"192.198.113.0\/25", + "version":3543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.113.128", + "prefixLen":25, + "network":"192.198.113.128\/25", + "version":3542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.114.0", + "prefixLen":25, + "network":"192.198.114.0\/25", + "version":3541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.114.128", + "prefixLen":25, + "network":"192.198.114.128\/25", + "version":3540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.115.0", + "prefixLen":25, + "network":"192.198.115.0\/25", + "version":3539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.115.128", + "prefixLen":25, + "network":"192.198.115.128\/25", + "version":3538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.128.0", + "prefixLen":25, + "network":"192.198.128.0\/25", + "version":3537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.128.128", + "prefixLen":25, + "network":"192.198.128.128\/25", + "version":3536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.129.0", + "prefixLen":25, + "network":"192.198.129.0\/25", + "version":3535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.129.128", + "prefixLen":25, + "network":"192.198.129.128\/25", + "version":3534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.130.0", + "prefixLen":25, + "network":"192.198.130.0\/25", + "version":3533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.130.128", + "prefixLen":25, + "network":"192.198.130.128\/25", + "version":3532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.131.0", + "prefixLen":25, + "network":"192.198.131.0\/25", + "version":3531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.131.128", + "prefixLen":25, + "network":"192.198.131.128\/25", + "version":3530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.144.0", + "prefixLen":25, + "network":"192.198.144.0\/25", + "version":3529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.144.128", + "prefixLen":25, + "network":"192.198.144.128\/25", + "version":3528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.145.0", + "prefixLen":25, + "network":"192.198.145.0\/25", + "version":3527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.145.128", + "prefixLen":25, + "network":"192.198.145.128\/25", + "version":3526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.146.0", + "prefixLen":25, + "network":"192.198.146.0\/25", + "version":3525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.146.128", + "prefixLen":25, + "network":"192.198.146.128\/25", + "version":3524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.147.0", + "prefixLen":25, + "network":"192.198.147.0\/25", + "version":3523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.147.128", + "prefixLen":25, + "network":"192.198.147.128\/25", + "version":3522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.160.0", + "prefixLen":25, + "network":"192.198.160.0\/25", + "version":3521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.160.128", + "prefixLen":25, + "network":"192.198.160.128\/25", + "version":3520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.161.0", + "prefixLen":25, + "network":"192.198.161.0\/25", + "version":3519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.161.128", + "prefixLen":25, + "network":"192.198.161.128\/25", + "version":3518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.162.0", + "prefixLen":25, + "network":"192.198.162.0\/25", + "version":3517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.162.128", + "prefixLen":25, + "network":"192.198.162.128\/25", + "version":3516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.163.0", + "prefixLen":25, + "network":"192.198.163.0\/25", + "version":3515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.163.128", + "prefixLen":25, + "network":"192.198.163.128\/25", + "version":3514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.176.0", + "prefixLen":25, + "network":"192.198.176.0\/25", + "version":3513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.176.128", + "prefixLen":25, + "network":"192.198.176.128\/25", + "version":3512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.177.0", + "prefixLen":25, + "network":"192.198.177.0\/25", + "version":3511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.177.128", + "prefixLen":25, + "network":"192.198.177.128\/25", + "version":3510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.178.0", + "prefixLen":25, + "network":"192.198.178.0\/25", + "version":3509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.178.128", + "prefixLen":25, + "network":"192.198.178.128\/25", + "version":3508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.179.0", + "prefixLen":25, + "network":"192.198.179.0\/25", + "version":3507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.179.128", + "prefixLen":25, + "network":"192.198.179.128\/25", + "version":3506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.192.0", + "prefixLen":25, + "network":"192.198.192.0\/25", + "version":3505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.192.128", + "prefixLen":25, + "network":"192.198.192.128\/25", + "version":3504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.193.0", + "prefixLen":25, + "network":"192.198.193.0\/25", + "version":3503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.193.128", + "prefixLen":25, + "network":"192.198.193.128\/25", + "version":3502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.194.0", + "prefixLen":25, + "network":"192.198.194.0\/25", + "version":3501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.194.128", + "prefixLen":25, + "network":"192.198.194.128\/25", + "version":3500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.195.0", + "prefixLen":25, + "network":"192.198.195.0\/25", + "version":3499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.195.128", + "prefixLen":25, + "network":"192.198.195.128\/25", + "version":3498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.208.0", + "prefixLen":25, + "network":"192.198.208.0\/25", + "version":3497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.208.128", + "prefixLen":25, + "network":"192.198.208.128\/25", + "version":3496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.209.0", + "prefixLen":25, + "network":"192.198.209.0\/25", + "version":3495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.209.128", + "prefixLen":25, + "network":"192.198.209.128\/25", + "version":3494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.210.0", + "prefixLen":25, + "network":"192.198.210.0\/25", + "version":3493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.210.128", + "prefixLen":25, + "network":"192.198.210.128\/25", + "version":3492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.211.0", + "prefixLen":25, + "network":"192.198.211.0\/25", + "version":3491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.211.128", + "prefixLen":25, + "network":"192.198.211.128\/25", + "version":3490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.224.0", + "prefixLen":25, + "network":"192.198.224.0\/25", + "version":3489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.224.128", + "prefixLen":25, + "network":"192.198.224.128\/25", + "version":3488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.225.0", + "prefixLen":25, + "network":"192.198.225.0\/25", + "version":3487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.225.128", + "prefixLen":25, + "network":"192.198.225.128\/25", + "version":3486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.226.0", + "prefixLen":25, + "network":"192.198.226.0\/25", + "version":3485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.226.128", + "prefixLen":25, + "network":"192.198.226.128\/25", + "version":3484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.227.0", + "prefixLen":25, + "network":"192.198.227.0\/25", + "version":3483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.227.128", + "prefixLen":25, + "network":"192.198.227.128\/25", + "version":3482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.240.0", + "prefixLen":25, + "network":"192.198.240.0\/25", + "version":3481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.240.128", + "prefixLen":25, + "network":"192.198.240.128\/25", + "version":3480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.241.0", + "prefixLen":25, + "network":"192.198.241.0\/25", + "version":3479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.241.128", + "prefixLen":25, + "network":"192.198.241.128\/25", + "version":3478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.242.0", + "prefixLen":25, + "network":"192.198.242.0\/25", + "version":3477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.242.128", + "prefixLen":25, + "network":"192.198.242.128\/25", + "version":3476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.243.0", + "prefixLen":25, + "network":"192.198.243.0\/25", + "version":3475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.198.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.198.243.128", + "prefixLen":25, + "network":"192.198.243.128\/25", + "version":3474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64630 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.0.0", + "prefixLen":25, + "network":"192.199.0.0\/25", + "version":3601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.0.128", + "prefixLen":25, + "network":"192.199.0.128\/25", + "version":3728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.1.0", + "prefixLen":25, + "network":"192.199.1.0\/25", + "version":3727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.1.128", + "prefixLen":25, + "network":"192.199.1.128\/25", + "version":3726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.2.0", + "prefixLen":25, + "network":"192.199.2.0\/25", + "version":3725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.2.128", + "prefixLen":25, + "network":"192.199.2.128\/25", + "version":3724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.3.0", + "prefixLen":25, + "network":"192.199.3.0\/25", + "version":3723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.3.128", + "prefixLen":25, + "network":"192.199.3.128\/25", + "version":3722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.16.0", + "prefixLen":25, + "network":"192.199.16.0\/25", + "version":3721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.16.128", + "prefixLen":25, + "network":"192.199.16.128\/25", + "version":3720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.17.0", + "prefixLen":25, + "network":"192.199.17.0\/25", + "version":3719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.17.128", + "prefixLen":25, + "network":"192.199.17.128\/25", + "version":3718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.18.0", + "prefixLen":25, + "network":"192.199.18.0\/25", + "version":3717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.18.128", + "prefixLen":25, + "network":"192.199.18.128\/25", + "version":3716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.19.0", + "prefixLen":25, + "network":"192.199.19.0\/25", + "version":3715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.19.128", + "prefixLen":25, + "network":"192.199.19.128\/25", + "version":3714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.32.0", + "prefixLen":25, + "network":"192.199.32.0\/25", + "version":3713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.32.128", + "prefixLen":25, + "network":"192.199.32.128\/25", + "version":3712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.33.0", + "prefixLen":25, + "network":"192.199.33.0\/25", + "version":3711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.33.128", + "prefixLen":25, + "network":"192.199.33.128\/25", + "version":3710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.34.0", + "prefixLen":25, + "network":"192.199.34.0\/25", + "version":3709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.34.128", + "prefixLen":25, + "network":"192.199.34.128\/25", + "version":3708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.35.0", + "prefixLen":25, + "network":"192.199.35.0\/25", + "version":3707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.35.128", + "prefixLen":25, + "network":"192.199.35.128\/25", + "version":3706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.48.0", + "prefixLen":25, + "network":"192.199.48.0\/25", + "version":3705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.48.128", + "prefixLen":25, + "network":"192.199.48.128\/25", + "version":3704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.49.0", + "prefixLen":25, + "network":"192.199.49.0\/25", + "version":3703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.49.128", + "prefixLen":25, + "network":"192.199.49.128\/25", + "version":3702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.50.0", + "prefixLen":25, + "network":"192.199.50.0\/25", + "version":3701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.50.128", + "prefixLen":25, + "network":"192.199.50.128\/25", + "version":3700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.51.0", + "prefixLen":25, + "network":"192.199.51.0\/25", + "version":3699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.51.128", + "prefixLen":25, + "network":"192.199.51.128\/25", + "version":3698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.64.0", + "prefixLen":25, + "network":"192.199.64.0\/25", + "version":3697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.64.128", + "prefixLen":25, + "network":"192.199.64.128\/25", + "version":3696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.65.0", + "prefixLen":25, + "network":"192.199.65.0\/25", + "version":3695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.65.128", + "prefixLen":25, + "network":"192.199.65.128\/25", + "version":3694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.66.0", + "prefixLen":25, + "network":"192.199.66.0\/25", + "version":3693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.66.128", + "prefixLen":25, + "network":"192.199.66.128\/25", + "version":3692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.67.0", + "prefixLen":25, + "network":"192.199.67.0\/25", + "version":3691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.67.128", + "prefixLen":25, + "network":"192.199.67.128\/25", + "version":3690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.80.0", + "prefixLen":25, + "network":"192.199.80.0\/25", + "version":3689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.80.128", + "prefixLen":25, + "network":"192.199.80.128\/25", + "version":3688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.81.0", + "prefixLen":25, + "network":"192.199.81.0\/25", + "version":3687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.81.128", + "prefixLen":25, + "network":"192.199.81.128\/25", + "version":3686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.82.0", + "prefixLen":25, + "network":"192.199.82.0\/25", + "version":3685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.82.128", + "prefixLen":25, + "network":"192.199.82.128\/25", + "version":3684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.83.0", + "prefixLen":25, + "network":"192.199.83.0\/25", + "version":3683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.83.128", + "prefixLen":25, + "network":"192.199.83.128\/25", + "version":3682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.96.0", + "prefixLen":25, + "network":"192.199.96.0\/25", + "version":3681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.96.128", + "prefixLen":25, + "network":"192.199.96.128\/25", + "version":3680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.97.0", + "prefixLen":25, + "network":"192.199.97.0\/25", + "version":3679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.97.128", + "prefixLen":25, + "network":"192.199.97.128\/25", + "version":3678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.98.0", + "prefixLen":25, + "network":"192.199.98.0\/25", + "version":3677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.98.128", + "prefixLen":25, + "network":"192.199.98.128\/25", + "version":3676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.99.0", + "prefixLen":25, + "network":"192.199.99.0\/25", + "version":3675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.99.128", + "prefixLen":25, + "network":"192.199.99.128\/25", + "version":3674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.112.0", + "prefixLen":25, + "network":"192.199.112.0\/25", + "version":3673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.112.128", + "prefixLen":25, + "network":"192.199.112.128\/25", + "version":3672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.113.0", + "prefixLen":25, + "network":"192.199.113.0\/25", + "version":3671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.113.128", + "prefixLen":25, + "network":"192.199.113.128\/25", + "version":3670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.114.0", + "prefixLen":25, + "network":"192.199.114.0\/25", + "version":3669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.114.128", + "prefixLen":25, + "network":"192.199.114.128\/25", + "version":3668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.115.0", + "prefixLen":25, + "network":"192.199.115.0\/25", + "version":3667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.115.128", + "prefixLen":25, + "network":"192.199.115.128\/25", + "version":3666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.128.0", + "prefixLen":25, + "network":"192.199.128.0\/25", + "version":3665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.128.128", + "prefixLen":25, + "network":"192.199.128.128\/25", + "version":3664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.129.0", + "prefixLen":25, + "network":"192.199.129.0\/25", + "version":3663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.129.128", + "prefixLen":25, + "network":"192.199.129.128\/25", + "version":3662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.130.0", + "prefixLen":25, + "network":"192.199.130.0\/25", + "version":3661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.130.128", + "prefixLen":25, + "network":"192.199.130.128\/25", + "version":3660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.131.0", + "prefixLen":25, + "network":"192.199.131.0\/25", + "version":3659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.131.128", + "prefixLen":25, + "network":"192.199.131.128\/25", + "version":3658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.144.0", + "prefixLen":25, + "network":"192.199.144.0\/25", + "version":3657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.144.128", + "prefixLen":25, + "network":"192.199.144.128\/25", + "version":3656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.145.0", + "prefixLen":25, + "network":"192.199.145.0\/25", + "version":3655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.145.128", + "prefixLen":25, + "network":"192.199.145.128\/25", + "version":3654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.146.0", + "prefixLen":25, + "network":"192.199.146.0\/25", + "version":3653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.146.128", + "prefixLen":25, + "network":"192.199.146.128\/25", + "version":3652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.147.0", + "prefixLen":25, + "network":"192.199.147.0\/25", + "version":3651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.147.128", + "prefixLen":25, + "network":"192.199.147.128\/25", + "version":3650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.160.0", + "prefixLen":25, + "network":"192.199.160.0\/25", + "version":3649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.160.128", + "prefixLen":25, + "network":"192.199.160.128\/25", + "version":3648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.161.0", + "prefixLen":25, + "network":"192.199.161.0\/25", + "version":3647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.161.128", + "prefixLen":25, + "network":"192.199.161.128\/25", + "version":3646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.162.0", + "prefixLen":25, + "network":"192.199.162.0\/25", + "version":3645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.162.128", + "prefixLen":25, + "network":"192.199.162.128\/25", + "version":3644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.163.0", + "prefixLen":25, + "network":"192.199.163.0\/25", + "version":3643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.163.128", + "prefixLen":25, + "network":"192.199.163.128\/25", + "version":3642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.176.0", + "prefixLen":25, + "network":"192.199.176.0\/25", + "version":3641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.176.128", + "prefixLen":25, + "network":"192.199.176.128\/25", + "version":3640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.177.0", + "prefixLen":25, + "network":"192.199.177.0\/25", + "version":3639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.177.128", + "prefixLen":25, + "network":"192.199.177.128\/25", + "version":3638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.178.0", + "prefixLen":25, + "network":"192.199.178.0\/25", + "version":3637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.178.128", + "prefixLen":25, + "network":"192.199.178.128\/25", + "version":3636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.179.0", + "prefixLen":25, + "network":"192.199.179.0\/25", + "version":3635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.179.128", + "prefixLen":25, + "network":"192.199.179.128\/25", + "version":3634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.192.0", + "prefixLen":25, + "network":"192.199.192.0\/25", + "version":3633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.192.128", + "prefixLen":25, + "network":"192.199.192.128\/25", + "version":3632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.193.0", + "prefixLen":25, + "network":"192.199.193.0\/25", + "version":3631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.193.128", + "prefixLen":25, + "network":"192.199.193.128\/25", + "version":3630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.194.0", + "prefixLen":25, + "network":"192.199.194.0\/25", + "version":3629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.194.128", + "prefixLen":25, + "network":"192.199.194.128\/25", + "version":3628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.195.0", + "prefixLen":25, + "network":"192.199.195.0\/25", + "version":3627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.195.128", + "prefixLen":25, + "network":"192.199.195.128\/25", + "version":3626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.208.0", + "prefixLen":25, + "network":"192.199.208.0\/25", + "version":3625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.208.128", + "prefixLen":25, + "network":"192.199.208.128\/25", + "version":3624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.209.0", + "prefixLen":25, + "network":"192.199.209.0\/25", + "version":3623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.209.128", + "prefixLen":25, + "network":"192.199.209.128\/25", + "version":3622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.210.0", + "prefixLen":25, + "network":"192.199.210.0\/25", + "version":3621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.210.128", + "prefixLen":25, + "network":"192.199.210.128\/25", + "version":3620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.211.0", + "prefixLen":25, + "network":"192.199.211.0\/25", + "version":3619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.211.128", + "prefixLen":25, + "network":"192.199.211.128\/25", + "version":3618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.224.0", + "prefixLen":25, + "network":"192.199.224.0\/25", + "version":3617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.224.128", + "prefixLen":25, + "network":"192.199.224.128\/25", + "version":3616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.225.0", + "prefixLen":25, + "network":"192.199.225.0\/25", + "version":3615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.225.128", + "prefixLen":25, + "network":"192.199.225.128\/25", + "version":3614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.226.0", + "prefixLen":25, + "network":"192.199.226.0\/25", + "version":3613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.226.128", + "prefixLen":25, + "network":"192.199.226.128\/25", + "version":3612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.227.0", + "prefixLen":25, + "network":"192.199.227.0\/25", + "version":3611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.227.128", + "prefixLen":25, + "network":"192.199.227.128\/25", + "version":3610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.240.0", + "prefixLen":25, + "network":"192.199.240.0\/25", + "version":3609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.240.128", + "prefixLen":25, + "network":"192.199.240.128\/25", + "version":3608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.241.0", + "prefixLen":25, + "network":"192.199.241.0\/25", + "version":3607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.241.128", + "prefixLen":25, + "network":"192.199.241.128\/25", + "version":3606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.242.0", + "prefixLen":25, + "network":"192.199.242.0\/25", + "version":3605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.242.128", + "prefixLen":25, + "network":"192.199.242.128\/25", + "version":3604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.243.0", + "prefixLen":25, + "network":"192.199.243.0\/25", + "version":3603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.199.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.199.243.128", + "prefixLen":25, + "network":"192.199.243.128\/25", + "version":3602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64631 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.0.0", + "prefixLen":25, + "network":"192.200.0.0\/25", + "version":3729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.0.128", + "prefixLen":25, + "network":"192.200.0.128\/25", + "version":3856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.1.0", + "prefixLen":25, + "network":"192.200.1.0\/25", + "version":3855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.1.128", + "prefixLen":25, + "network":"192.200.1.128\/25", + "version":3854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.2.0", + "prefixLen":25, + "network":"192.200.2.0\/25", + "version":3853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.2.128", + "prefixLen":25, + "network":"192.200.2.128\/25", + "version":3852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.3.0", + "prefixLen":25, + "network":"192.200.3.0\/25", + "version":3851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.3.128", + "prefixLen":25, + "network":"192.200.3.128\/25", + "version":3850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.16.0", + "prefixLen":25, + "network":"192.200.16.0\/25", + "version":3849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.16.128", + "prefixLen":25, + "network":"192.200.16.128\/25", + "version":3848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.17.0", + "prefixLen":25, + "network":"192.200.17.0\/25", + "version":3847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.17.128", + "prefixLen":25, + "network":"192.200.17.128\/25", + "version":3846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.18.0", + "prefixLen":25, + "network":"192.200.18.0\/25", + "version":3845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.18.128", + "prefixLen":25, + "network":"192.200.18.128\/25", + "version":3844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.19.0", + "prefixLen":25, + "network":"192.200.19.0\/25", + "version":3843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.19.128", + "prefixLen":25, + "network":"192.200.19.128\/25", + "version":3842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.32.0", + "prefixLen":25, + "network":"192.200.32.0\/25", + "version":3841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.32.128", + "prefixLen":25, + "network":"192.200.32.128\/25", + "version":3840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.33.0", + "prefixLen":25, + "network":"192.200.33.0\/25", + "version":3839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.33.128", + "prefixLen":25, + "network":"192.200.33.128\/25", + "version":3838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.34.0", + "prefixLen":25, + "network":"192.200.34.0\/25", + "version":3837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.34.128", + "prefixLen":25, + "network":"192.200.34.128\/25", + "version":3836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.35.0", + "prefixLen":25, + "network":"192.200.35.0\/25", + "version":3835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.35.128", + "prefixLen":25, + "network":"192.200.35.128\/25", + "version":3834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.48.0", + "prefixLen":25, + "network":"192.200.48.0\/25", + "version":3833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.48.128", + "prefixLen":25, + "network":"192.200.48.128\/25", + "version":3832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.49.0", + "prefixLen":25, + "network":"192.200.49.0\/25", + "version":3831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.49.128", + "prefixLen":25, + "network":"192.200.49.128\/25", + "version":3830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.50.0", + "prefixLen":25, + "network":"192.200.50.0\/25", + "version":3829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.50.128", + "prefixLen":25, + "network":"192.200.50.128\/25", + "version":3828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.51.0", + "prefixLen":25, + "network":"192.200.51.0\/25", + "version":3827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.51.128", + "prefixLen":25, + "network":"192.200.51.128\/25", + "version":3826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.64.0", + "prefixLen":25, + "network":"192.200.64.0\/25", + "version":3825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.64.128", + "prefixLen":25, + "network":"192.200.64.128\/25", + "version":3824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.65.0", + "prefixLen":25, + "network":"192.200.65.0\/25", + "version":3823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.65.128", + "prefixLen":25, + "network":"192.200.65.128\/25", + "version":3822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.66.0", + "prefixLen":25, + "network":"192.200.66.0\/25", + "version":3821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.66.128", + "prefixLen":25, + "network":"192.200.66.128\/25", + "version":3820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.67.0", + "prefixLen":25, + "network":"192.200.67.0\/25", + "version":3819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.67.128", + "prefixLen":25, + "network":"192.200.67.128\/25", + "version":3818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.80.0", + "prefixLen":25, + "network":"192.200.80.0\/25", + "version":3817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.80.128", + "prefixLen":25, + "network":"192.200.80.128\/25", + "version":3816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.81.0", + "prefixLen":25, + "network":"192.200.81.0\/25", + "version":3815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.81.128", + "prefixLen":25, + "network":"192.200.81.128\/25", + "version":3814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.82.0", + "prefixLen":25, + "network":"192.200.82.0\/25", + "version":3813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.82.128", + "prefixLen":25, + "network":"192.200.82.128\/25", + "version":3812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.83.0", + "prefixLen":25, + "network":"192.200.83.0\/25", + "version":3811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.83.128", + "prefixLen":25, + "network":"192.200.83.128\/25", + "version":3810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.96.0", + "prefixLen":25, + "network":"192.200.96.0\/25", + "version":3809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.96.128", + "prefixLen":25, + "network":"192.200.96.128\/25", + "version":3808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.97.0", + "prefixLen":25, + "network":"192.200.97.0\/25", + "version":3807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.97.128", + "prefixLen":25, + "network":"192.200.97.128\/25", + "version":3806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.98.0", + "prefixLen":25, + "network":"192.200.98.0\/25", + "version":3805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.98.128", + "prefixLen":25, + "network":"192.200.98.128\/25", + "version":3804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.99.0", + "prefixLen":25, + "network":"192.200.99.0\/25", + "version":3803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.99.128", + "prefixLen":25, + "network":"192.200.99.128\/25", + "version":3802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.112.0", + "prefixLen":25, + "network":"192.200.112.0\/25", + "version":3801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.112.128", + "prefixLen":25, + "network":"192.200.112.128\/25", + "version":3800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.113.0", + "prefixLen":25, + "network":"192.200.113.0\/25", + "version":3799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.113.128", + "prefixLen":25, + "network":"192.200.113.128\/25", + "version":3798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.114.0", + "prefixLen":25, + "network":"192.200.114.0\/25", + "version":3797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.114.128", + "prefixLen":25, + "network":"192.200.114.128\/25", + "version":3796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.115.0", + "prefixLen":25, + "network":"192.200.115.0\/25", + "version":3795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.115.128", + "prefixLen":25, + "network":"192.200.115.128\/25", + "version":3794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.128.0", + "prefixLen":25, + "network":"192.200.128.0\/25", + "version":3793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.128.128", + "prefixLen":25, + "network":"192.200.128.128\/25", + "version":3792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.129.0", + "prefixLen":25, + "network":"192.200.129.0\/25", + "version":3791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.129.128", + "prefixLen":25, + "network":"192.200.129.128\/25", + "version":3790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.130.0", + "prefixLen":25, + "network":"192.200.130.0\/25", + "version":3789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.130.128", + "prefixLen":25, + "network":"192.200.130.128\/25", + "version":3788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.131.0", + "prefixLen":25, + "network":"192.200.131.0\/25", + "version":3787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.131.128", + "prefixLen":25, + "network":"192.200.131.128\/25", + "version":3786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.144.0", + "prefixLen":25, + "network":"192.200.144.0\/25", + "version":3785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.144.128", + "prefixLen":25, + "network":"192.200.144.128\/25", + "version":3784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.145.0", + "prefixLen":25, + "network":"192.200.145.0\/25", + "version":3783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.145.128", + "prefixLen":25, + "network":"192.200.145.128\/25", + "version":3782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.146.0", + "prefixLen":25, + "network":"192.200.146.0\/25", + "version":3781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.146.128", + "prefixLen":25, + "network":"192.200.146.128\/25", + "version":3780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.147.0", + "prefixLen":25, + "network":"192.200.147.0\/25", + "version":3779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.147.128", + "prefixLen":25, + "network":"192.200.147.128\/25", + "version":3778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.160.0", + "prefixLen":25, + "network":"192.200.160.0\/25", + "version":3777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.160.128", + "prefixLen":25, + "network":"192.200.160.128\/25", + "version":3776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.161.0", + "prefixLen":25, + "network":"192.200.161.0\/25", + "version":3775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.161.128", + "prefixLen":25, + "network":"192.200.161.128\/25", + "version":3774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.162.0", + "prefixLen":25, + "network":"192.200.162.0\/25", + "version":3773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.162.128", + "prefixLen":25, + "network":"192.200.162.128\/25", + "version":3772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.163.0", + "prefixLen":25, + "network":"192.200.163.0\/25", + "version":3771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.163.128", + "prefixLen":25, + "network":"192.200.163.128\/25", + "version":3770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.176.0", + "prefixLen":25, + "network":"192.200.176.0\/25", + "version":3769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.176.128", + "prefixLen":25, + "network":"192.200.176.128\/25", + "version":3768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.177.0", + "prefixLen":25, + "network":"192.200.177.0\/25", + "version":3767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.177.128", + "prefixLen":25, + "network":"192.200.177.128\/25", + "version":3766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.178.0", + "prefixLen":25, + "network":"192.200.178.0\/25", + "version":3765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.178.128", + "prefixLen":25, + "network":"192.200.178.128\/25", + "version":3764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.179.0", + "prefixLen":25, + "network":"192.200.179.0\/25", + "version":3763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.179.128", + "prefixLen":25, + "network":"192.200.179.128\/25", + "version":3762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.192.0", + "prefixLen":25, + "network":"192.200.192.0\/25", + "version":3761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.192.128", + "prefixLen":25, + "network":"192.200.192.128\/25", + "version":3760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.193.0", + "prefixLen":25, + "network":"192.200.193.0\/25", + "version":3759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.193.128", + "prefixLen":25, + "network":"192.200.193.128\/25", + "version":3758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.194.0", + "prefixLen":25, + "network":"192.200.194.0\/25", + "version":3757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.194.128", + "prefixLen":25, + "network":"192.200.194.128\/25", + "version":3756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.195.0", + "prefixLen":25, + "network":"192.200.195.0\/25", + "version":3755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.195.128", + "prefixLen":25, + "network":"192.200.195.128\/25", + "version":3754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.208.0", + "prefixLen":25, + "network":"192.200.208.0\/25", + "version":3753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.208.128", + "prefixLen":25, + "network":"192.200.208.128\/25", + "version":3752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.209.0", + "prefixLen":25, + "network":"192.200.209.0\/25", + "version":3751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.209.128", + "prefixLen":25, + "network":"192.200.209.128\/25", + "version":3750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.210.0", + "prefixLen":25, + "network":"192.200.210.0\/25", + "version":3749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.210.128", + "prefixLen":25, + "network":"192.200.210.128\/25", + "version":3748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.211.0", + "prefixLen":25, + "network":"192.200.211.0\/25", + "version":3747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.211.128", + "prefixLen":25, + "network":"192.200.211.128\/25", + "version":3746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.224.0", + "prefixLen":25, + "network":"192.200.224.0\/25", + "version":3745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.224.128", + "prefixLen":25, + "network":"192.200.224.128\/25", + "version":3744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.225.0", + "prefixLen":25, + "network":"192.200.225.0\/25", + "version":3743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.225.128", + "prefixLen":25, + "network":"192.200.225.128\/25", + "version":3742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.226.0", + "prefixLen":25, + "network":"192.200.226.0\/25", + "version":3741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.226.128", + "prefixLen":25, + "network":"192.200.226.128\/25", + "version":3740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.227.0", + "prefixLen":25, + "network":"192.200.227.0\/25", + "version":3739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.227.128", + "prefixLen":25, + "network":"192.200.227.128\/25", + "version":3738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.240.0", + "prefixLen":25, + "network":"192.200.240.0\/25", + "version":3737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.240.128", + "prefixLen":25, + "network":"192.200.240.128\/25", + "version":3736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.241.0", + "prefixLen":25, + "network":"192.200.241.0\/25", + "version":3735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.241.128", + "prefixLen":25, + "network":"192.200.241.128\/25", + "version":3734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.242.0", + "prefixLen":25, + "network":"192.200.242.0\/25", + "version":3733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.242.128", + "prefixLen":25, + "network":"192.200.242.128\/25", + "version":3732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.243.0", + "prefixLen":25, + "network":"192.200.243.0\/25", + "version":3731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.200.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.200.243.128", + "prefixLen":25, + "network":"192.200.243.128\/25", + "version":3730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64632 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.0.0", + "prefixLen":25, + "network":"192.201.0.0\/25", + "version":3857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.0.128", + "prefixLen":25, + "network":"192.201.0.128\/25", + "version":3984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.1.0", + "prefixLen":25, + "network":"192.201.1.0\/25", + "version":3983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.1.128", + "prefixLen":25, + "network":"192.201.1.128\/25", + "version":3982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.2.0", + "prefixLen":25, + "network":"192.201.2.0\/25", + "version":3981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.2.128", + "prefixLen":25, + "network":"192.201.2.128\/25", + "version":3980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.3.0", + "prefixLen":25, + "network":"192.201.3.0\/25", + "version":3979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.3.128", + "prefixLen":25, + "network":"192.201.3.128\/25", + "version":3978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.16.0", + "prefixLen":25, + "network":"192.201.16.0\/25", + "version":3977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.16.128", + "prefixLen":25, + "network":"192.201.16.128\/25", + "version":3976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.17.0", + "prefixLen":25, + "network":"192.201.17.0\/25", + "version":3975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.17.128", + "prefixLen":25, + "network":"192.201.17.128\/25", + "version":3974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.18.0", + "prefixLen":25, + "network":"192.201.18.0\/25", + "version":3973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.18.128", + "prefixLen":25, + "network":"192.201.18.128\/25", + "version":3972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.19.0", + "prefixLen":25, + "network":"192.201.19.0\/25", + "version":3971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.19.128", + "prefixLen":25, + "network":"192.201.19.128\/25", + "version":3970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.32.0", + "prefixLen":25, + "network":"192.201.32.0\/25", + "version":3969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.32.128", + "prefixLen":25, + "network":"192.201.32.128\/25", + "version":3968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.33.0", + "prefixLen":25, + "network":"192.201.33.0\/25", + "version":3967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.33.128", + "prefixLen":25, + "network":"192.201.33.128\/25", + "version":3966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.34.0", + "prefixLen":25, + "network":"192.201.34.0\/25", + "version":3965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.34.128", + "prefixLen":25, + "network":"192.201.34.128\/25", + "version":3964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.35.0", + "prefixLen":25, + "network":"192.201.35.0\/25", + "version":3963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.35.128", + "prefixLen":25, + "network":"192.201.35.128\/25", + "version":3962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.48.0", + "prefixLen":25, + "network":"192.201.48.0\/25", + "version":3961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.48.128", + "prefixLen":25, + "network":"192.201.48.128\/25", + "version":3960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.49.0", + "prefixLen":25, + "network":"192.201.49.0\/25", + "version":3959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.49.128", + "prefixLen":25, + "network":"192.201.49.128\/25", + "version":3958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.50.0", + "prefixLen":25, + "network":"192.201.50.0\/25", + "version":3957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.50.128", + "prefixLen":25, + "network":"192.201.50.128\/25", + "version":3956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.51.0", + "prefixLen":25, + "network":"192.201.51.0\/25", + "version":3955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.51.128", + "prefixLen":25, + "network":"192.201.51.128\/25", + "version":3954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.64.0", + "prefixLen":25, + "network":"192.201.64.0\/25", + "version":3953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.64.128", + "prefixLen":25, + "network":"192.201.64.128\/25", + "version":3952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.65.0", + "prefixLen":25, + "network":"192.201.65.0\/25", + "version":3951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.65.128", + "prefixLen":25, + "network":"192.201.65.128\/25", + "version":3950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.66.0", + "prefixLen":25, + "network":"192.201.66.0\/25", + "version":3949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.66.128", + "prefixLen":25, + "network":"192.201.66.128\/25", + "version":3948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.67.0", + "prefixLen":25, + "network":"192.201.67.0\/25", + "version":3947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.67.128", + "prefixLen":25, + "network":"192.201.67.128\/25", + "version":3946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.80.0", + "prefixLen":25, + "network":"192.201.80.0\/25", + "version":3945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.80.128", + "prefixLen":25, + "network":"192.201.80.128\/25", + "version":3944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.81.0", + "prefixLen":25, + "network":"192.201.81.0\/25", + "version":3943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.81.128", + "prefixLen":25, + "network":"192.201.81.128\/25", + "version":3942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.82.0", + "prefixLen":25, + "network":"192.201.82.0\/25", + "version":3941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.82.128", + "prefixLen":25, + "network":"192.201.82.128\/25", + "version":3940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.83.0", + "prefixLen":25, + "network":"192.201.83.0\/25", + "version":3939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.83.128", + "prefixLen":25, + "network":"192.201.83.128\/25", + "version":3938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.96.0", + "prefixLen":25, + "network":"192.201.96.0\/25", + "version":3937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.96.128", + "prefixLen":25, + "network":"192.201.96.128\/25", + "version":3936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.97.0", + "prefixLen":25, + "network":"192.201.97.0\/25", + "version":3935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.97.128", + "prefixLen":25, + "network":"192.201.97.128\/25", + "version":3934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.98.0", + "prefixLen":25, + "network":"192.201.98.0\/25", + "version":3933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.98.128", + "prefixLen":25, + "network":"192.201.98.128\/25", + "version":3932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.99.0", + "prefixLen":25, + "network":"192.201.99.0\/25", + "version":3931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.99.128", + "prefixLen":25, + "network":"192.201.99.128\/25", + "version":3930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.112.0", + "prefixLen":25, + "network":"192.201.112.0\/25", + "version":3929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.112.128", + "prefixLen":25, + "network":"192.201.112.128\/25", + "version":3928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.113.0", + "prefixLen":25, + "network":"192.201.113.0\/25", + "version":3927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.113.128", + "prefixLen":25, + "network":"192.201.113.128\/25", + "version":3926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.114.0", + "prefixLen":25, + "network":"192.201.114.0\/25", + "version":3925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.114.128", + "prefixLen":25, + "network":"192.201.114.128\/25", + "version":3924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.115.0", + "prefixLen":25, + "network":"192.201.115.0\/25", + "version":3923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.115.128", + "prefixLen":25, + "network":"192.201.115.128\/25", + "version":3922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.128.0", + "prefixLen":25, + "network":"192.201.128.0\/25", + "version":3921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.128.128", + "prefixLen":25, + "network":"192.201.128.128\/25", + "version":3920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.129.0", + "prefixLen":25, + "network":"192.201.129.0\/25", + "version":3919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.129.128", + "prefixLen":25, + "network":"192.201.129.128\/25", + "version":3918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.130.0", + "prefixLen":25, + "network":"192.201.130.0\/25", + "version":3917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.130.128", + "prefixLen":25, + "network":"192.201.130.128\/25", + "version":3916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.131.0", + "prefixLen":25, + "network":"192.201.131.0\/25", + "version":3915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.131.128", + "prefixLen":25, + "network":"192.201.131.128\/25", + "version":3914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.144.0", + "prefixLen":25, + "network":"192.201.144.0\/25", + "version":3913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.144.128", + "prefixLen":25, + "network":"192.201.144.128\/25", + "version":3912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.145.0", + "prefixLen":25, + "network":"192.201.145.0\/25", + "version":3911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.145.128", + "prefixLen":25, + "network":"192.201.145.128\/25", + "version":3910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.146.0", + "prefixLen":25, + "network":"192.201.146.0\/25", + "version":3909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.146.128", + "prefixLen":25, + "network":"192.201.146.128\/25", + "version":3908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.147.0", + "prefixLen":25, + "network":"192.201.147.0\/25", + "version":3907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.147.128", + "prefixLen":25, + "network":"192.201.147.128\/25", + "version":3906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.160.0", + "prefixLen":25, + "network":"192.201.160.0\/25", + "version":3905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.160.128", + "prefixLen":25, + "network":"192.201.160.128\/25", + "version":3904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.161.0", + "prefixLen":25, + "network":"192.201.161.0\/25", + "version":3903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.161.128", + "prefixLen":25, + "network":"192.201.161.128\/25", + "version":3902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.162.0", + "prefixLen":25, + "network":"192.201.162.0\/25", + "version":3901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.162.128", + "prefixLen":25, + "network":"192.201.162.128\/25", + "version":3900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.163.0", + "prefixLen":25, + "network":"192.201.163.0\/25", + "version":3899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.163.128", + "prefixLen":25, + "network":"192.201.163.128\/25", + "version":3898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.176.0", + "prefixLen":25, + "network":"192.201.176.0\/25", + "version":3897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.176.128", + "prefixLen":25, + "network":"192.201.176.128\/25", + "version":3896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.177.0", + "prefixLen":25, + "network":"192.201.177.0\/25", + "version":3895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.177.128", + "prefixLen":25, + "network":"192.201.177.128\/25", + "version":3894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.178.0", + "prefixLen":25, + "network":"192.201.178.0\/25", + "version":3893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.178.128", + "prefixLen":25, + "network":"192.201.178.128\/25", + "version":3892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.179.0", + "prefixLen":25, + "network":"192.201.179.0\/25", + "version":3891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.179.128", + "prefixLen":25, + "network":"192.201.179.128\/25", + "version":3890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.192.0", + "prefixLen":25, + "network":"192.201.192.0\/25", + "version":3889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.192.128", + "prefixLen":25, + "network":"192.201.192.128\/25", + "version":3888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.193.0", + "prefixLen":25, + "network":"192.201.193.0\/25", + "version":3887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.193.128", + "prefixLen":25, + "network":"192.201.193.128\/25", + "version":3886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.194.0", + "prefixLen":25, + "network":"192.201.194.0\/25", + "version":3885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.194.128", + "prefixLen":25, + "network":"192.201.194.128\/25", + "version":3884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.195.0", + "prefixLen":25, + "network":"192.201.195.0\/25", + "version":3883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.195.128", + "prefixLen":25, + "network":"192.201.195.128\/25", + "version":3882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.208.0", + "prefixLen":25, + "network":"192.201.208.0\/25", + "version":3881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.208.128", + "prefixLen":25, + "network":"192.201.208.128\/25", + "version":3880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.209.0", + "prefixLen":25, + "network":"192.201.209.0\/25", + "version":3879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.209.128", + "prefixLen":25, + "network":"192.201.209.128\/25", + "version":3878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.210.0", + "prefixLen":25, + "network":"192.201.210.0\/25", + "version":3877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.210.128", + "prefixLen":25, + "network":"192.201.210.128\/25", + "version":3876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.211.0", + "prefixLen":25, + "network":"192.201.211.0\/25", + "version":3875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.211.128", + "prefixLen":25, + "network":"192.201.211.128\/25", + "version":3874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.224.0", + "prefixLen":25, + "network":"192.201.224.0\/25", + "version":3873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.224.128", + "prefixLen":25, + "network":"192.201.224.128\/25", + "version":3872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.225.0", + "prefixLen":25, + "network":"192.201.225.0\/25", + "version":3871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.225.128", + "prefixLen":25, + "network":"192.201.225.128\/25", + "version":3870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.226.0", + "prefixLen":25, + "network":"192.201.226.0\/25", + "version":3869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.226.128", + "prefixLen":25, + "network":"192.201.226.128\/25", + "version":3868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.227.0", + "prefixLen":25, + "network":"192.201.227.0\/25", + "version":3867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.227.128", + "prefixLen":25, + "network":"192.201.227.128\/25", + "version":3866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.240.0", + "prefixLen":25, + "network":"192.201.240.0\/25", + "version":3865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.240.128", + "prefixLen":25, + "network":"192.201.240.128\/25", + "version":3864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.241.0", + "prefixLen":25, + "network":"192.201.241.0\/25", + "version":3863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.241.128", + "prefixLen":25, + "network":"192.201.241.128\/25", + "version":3862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.242.0", + "prefixLen":25, + "network":"192.201.242.0\/25", + "version":3861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.242.128", + "prefixLen":25, + "network":"192.201.242.128\/25", + "version":3860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.243.0", + "prefixLen":25, + "network":"192.201.243.0\/25", + "version":3859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.201.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.201.243.128", + "prefixLen":25, + "network":"192.201.243.128\/25", + "version":3858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64633 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.0.0", + "prefixLen":25, + "network":"192.202.0.0\/25", + "version":3985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.0.128", + "prefixLen":25, + "network":"192.202.0.128\/25", + "version":4112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.1.0", + "prefixLen":25, + "network":"192.202.1.0\/25", + "version":4111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.1.128", + "prefixLen":25, + "network":"192.202.1.128\/25", + "version":4110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.2.0", + "prefixLen":25, + "network":"192.202.2.0\/25", + "version":4109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.2.128", + "prefixLen":25, + "network":"192.202.2.128\/25", + "version":4108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.3.0", + "prefixLen":25, + "network":"192.202.3.0\/25", + "version":4107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.3.128", + "prefixLen":25, + "network":"192.202.3.128\/25", + "version":4106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.16.0", + "prefixLen":25, + "network":"192.202.16.0\/25", + "version":4105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.16.128", + "prefixLen":25, + "network":"192.202.16.128\/25", + "version":4104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.17.0", + "prefixLen":25, + "network":"192.202.17.0\/25", + "version":4103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.17.128", + "prefixLen":25, + "network":"192.202.17.128\/25", + "version":4102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.18.0", + "prefixLen":25, + "network":"192.202.18.0\/25", + "version":4101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.18.128", + "prefixLen":25, + "network":"192.202.18.128\/25", + "version":4100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.19.0", + "prefixLen":25, + "network":"192.202.19.0\/25", + "version":4099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.19.128", + "prefixLen":25, + "network":"192.202.19.128\/25", + "version":4098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.32.0", + "prefixLen":25, + "network":"192.202.32.0\/25", + "version":4097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.32.128", + "prefixLen":25, + "network":"192.202.32.128\/25", + "version":4096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.33.0", + "prefixLen":25, + "network":"192.202.33.0\/25", + "version":4095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.33.128", + "prefixLen":25, + "network":"192.202.33.128\/25", + "version":4094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.34.0", + "prefixLen":25, + "network":"192.202.34.0\/25", + "version":4093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.34.128", + "prefixLen":25, + "network":"192.202.34.128\/25", + "version":4092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.35.0", + "prefixLen":25, + "network":"192.202.35.0\/25", + "version":4091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.35.128", + "prefixLen":25, + "network":"192.202.35.128\/25", + "version":4090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.48.0", + "prefixLen":25, + "network":"192.202.48.0\/25", + "version":4089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.48.128", + "prefixLen":25, + "network":"192.202.48.128\/25", + "version":4088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.49.0", + "prefixLen":25, + "network":"192.202.49.0\/25", + "version":4087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.49.128", + "prefixLen":25, + "network":"192.202.49.128\/25", + "version":4086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.50.0", + "prefixLen":25, + "network":"192.202.50.0\/25", + "version":4085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.50.128", + "prefixLen":25, + "network":"192.202.50.128\/25", + "version":4084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.51.0", + "prefixLen":25, + "network":"192.202.51.0\/25", + "version":4083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.51.128", + "prefixLen":25, + "network":"192.202.51.128\/25", + "version":4082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.64.0", + "prefixLen":25, + "network":"192.202.64.0\/25", + "version":4081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.64.128", + "prefixLen":25, + "network":"192.202.64.128\/25", + "version":4080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.65.0", + "prefixLen":25, + "network":"192.202.65.0\/25", + "version":4079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.65.128", + "prefixLen":25, + "network":"192.202.65.128\/25", + "version":4078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.66.0", + "prefixLen":25, + "network":"192.202.66.0\/25", + "version":4077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.66.128", + "prefixLen":25, + "network":"192.202.66.128\/25", + "version":4076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.67.0", + "prefixLen":25, + "network":"192.202.67.0\/25", + "version":4075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.67.128", + "prefixLen":25, + "network":"192.202.67.128\/25", + "version":4074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.80.0", + "prefixLen":25, + "network":"192.202.80.0\/25", + "version":4073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.80.128", + "prefixLen":25, + "network":"192.202.80.128\/25", + "version":4072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.81.0", + "prefixLen":25, + "network":"192.202.81.0\/25", + "version":4071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.81.128", + "prefixLen":25, + "network":"192.202.81.128\/25", + "version":4070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.82.0", + "prefixLen":25, + "network":"192.202.82.0\/25", + "version":4069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.82.128", + "prefixLen":25, + "network":"192.202.82.128\/25", + "version":4068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.83.0", + "prefixLen":25, + "network":"192.202.83.0\/25", + "version":4067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.83.128", + "prefixLen":25, + "network":"192.202.83.128\/25", + "version":4066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.96.0", + "prefixLen":25, + "network":"192.202.96.0\/25", + "version":4065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.96.128", + "prefixLen":25, + "network":"192.202.96.128\/25", + "version":4064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.97.0", + "prefixLen":25, + "network":"192.202.97.0\/25", + "version":4063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.97.128", + "prefixLen":25, + "network":"192.202.97.128\/25", + "version":4062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.98.0", + "prefixLen":25, + "network":"192.202.98.0\/25", + "version":4061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.98.128", + "prefixLen":25, + "network":"192.202.98.128\/25", + "version":4060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.99.0", + "prefixLen":25, + "network":"192.202.99.0\/25", + "version":4059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.99.128", + "prefixLen":25, + "network":"192.202.99.128\/25", + "version":4058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.112.0", + "prefixLen":25, + "network":"192.202.112.0\/25", + "version":4057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.112.128", + "prefixLen":25, + "network":"192.202.112.128\/25", + "version":4056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.113.0", + "prefixLen":25, + "network":"192.202.113.0\/25", + "version":4055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.113.128", + "prefixLen":25, + "network":"192.202.113.128\/25", + "version":4054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.114.0", + "prefixLen":25, + "network":"192.202.114.0\/25", + "version":4053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.114.128", + "prefixLen":25, + "network":"192.202.114.128\/25", + "version":4052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.115.0", + "prefixLen":25, + "network":"192.202.115.0\/25", + "version":4051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.115.128", + "prefixLen":25, + "network":"192.202.115.128\/25", + "version":4050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.128.0", + "prefixLen":25, + "network":"192.202.128.0\/25", + "version":4049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.128.128", + "prefixLen":25, + "network":"192.202.128.128\/25", + "version":4048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.129.0", + "prefixLen":25, + "network":"192.202.129.0\/25", + "version":4047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.129.128", + "prefixLen":25, + "network":"192.202.129.128\/25", + "version":4046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.130.0", + "prefixLen":25, + "network":"192.202.130.0\/25", + "version":4045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.130.128", + "prefixLen":25, + "network":"192.202.130.128\/25", + "version":4044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.131.0", + "prefixLen":25, + "network":"192.202.131.0\/25", + "version":4043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.131.128", + "prefixLen":25, + "network":"192.202.131.128\/25", + "version":4042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.144.0", + "prefixLen":25, + "network":"192.202.144.0\/25", + "version":4041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.144.128", + "prefixLen":25, + "network":"192.202.144.128\/25", + "version":4040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.145.0", + "prefixLen":25, + "network":"192.202.145.0\/25", + "version":4039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.145.128", + "prefixLen":25, + "network":"192.202.145.128\/25", + "version":4038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.146.0", + "prefixLen":25, + "network":"192.202.146.0\/25", + "version":4037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.146.128", + "prefixLen":25, + "network":"192.202.146.128\/25", + "version":4036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.147.0", + "prefixLen":25, + "network":"192.202.147.0\/25", + "version":4035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.147.128", + "prefixLen":25, + "network":"192.202.147.128\/25", + "version":4034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.160.0", + "prefixLen":25, + "network":"192.202.160.0\/25", + "version":4033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.160.128", + "prefixLen":25, + "network":"192.202.160.128\/25", + "version":4032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.161.0", + "prefixLen":25, + "network":"192.202.161.0\/25", + "version":4031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.161.128", + "prefixLen":25, + "network":"192.202.161.128\/25", + "version":4030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.162.0", + "prefixLen":25, + "network":"192.202.162.0\/25", + "version":4029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.162.128", + "prefixLen":25, + "network":"192.202.162.128\/25", + "version":4028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.163.0", + "prefixLen":25, + "network":"192.202.163.0\/25", + "version":4027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.163.128", + "prefixLen":25, + "network":"192.202.163.128\/25", + "version":4026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.176.0", + "prefixLen":25, + "network":"192.202.176.0\/25", + "version":4025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.176.128", + "prefixLen":25, + "network":"192.202.176.128\/25", + "version":4024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.177.0", + "prefixLen":25, + "network":"192.202.177.0\/25", + "version":4023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.177.128", + "prefixLen":25, + "network":"192.202.177.128\/25", + "version":4022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.178.0", + "prefixLen":25, + "network":"192.202.178.0\/25", + "version":4021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.178.128", + "prefixLen":25, + "network":"192.202.178.128\/25", + "version":4020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.179.0", + "prefixLen":25, + "network":"192.202.179.0\/25", + "version":4019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.179.128", + "prefixLen":25, + "network":"192.202.179.128\/25", + "version":4018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.192.0", + "prefixLen":25, + "network":"192.202.192.0\/25", + "version":4017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.192.128", + "prefixLen":25, + "network":"192.202.192.128\/25", + "version":4016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.193.0", + "prefixLen":25, + "network":"192.202.193.0\/25", + "version":4015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.193.128", + "prefixLen":25, + "network":"192.202.193.128\/25", + "version":4014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.194.0", + "prefixLen":25, + "network":"192.202.194.0\/25", + "version":4013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.194.128", + "prefixLen":25, + "network":"192.202.194.128\/25", + "version":4012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.195.0", + "prefixLen":25, + "network":"192.202.195.0\/25", + "version":4011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.195.128", + "prefixLen":25, + "network":"192.202.195.128\/25", + "version":4010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.208.0", + "prefixLen":25, + "network":"192.202.208.0\/25", + "version":4009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.208.128", + "prefixLen":25, + "network":"192.202.208.128\/25", + "version":4008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.209.0", + "prefixLen":25, + "network":"192.202.209.0\/25", + "version":4007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.209.128", + "prefixLen":25, + "network":"192.202.209.128\/25", + "version":4006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.210.0", + "prefixLen":25, + "network":"192.202.210.0\/25", + "version":4005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.210.128", + "prefixLen":25, + "network":"192.202.210.128\/25", + "version":4004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.211.0", + "prefixLen":25, + "network":"192.202.211.0\/25", + "version":4003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.211.128", + "prefixLen":25, + "network":"192.202.211.128\/25", + "version":4002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.224.0", + "prefixLen":25, + "network":"192.202.224.0\/25", + "version":4001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.224.128", + "prefixLen":25, + "network":"192.202.224.128\/25", + "version":4000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.225.0", + "prefixLen":25, + "network":"192.202.225.0\/25", + "version":3999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.225.128", + "prefixLen":25, + "network":"192.202.225.128\/25", + "version":3998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.226.0", + "prefixLen":25, + "network":"192.202.226.0\/25", + "version":3997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.226.128", + "prefixLen":25, + "network":"192.202.226.128\/25", + "version":3996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.227.0", + "prefixLen":25, + "network":"192.202.227.0\/25", + "version":3995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.227.128", + "prefixLen":25, + "network":"192.202.227.128\/25", + "version":3994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.240.0", + "prefixLen":25, + "network":"192.202.240.0\/25", + "version":3993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.240.128", + "prefixLen":25, + "network":"192.202.240.128\/25", + "version":3992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.241.0", + "prefixLen":25, + "network":"192.202.241.0\/25", + "version":3991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.241.128", + "prefixLen":25, + "network":"192.202.241.128\/25", + "version":3990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.242.0", + "prefixLen":25, + "network":"192.202.242.0\/25", + "version":3989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.242.128", + "prefixLen":25, + "network":"192.202.242.128\/25", + "version":3988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.243.0", + "prefixLen":25, + "network":"192.202.243.0\/25", + "version":3987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.202.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.202.243.128", + "prefixLen":25, + "network":"192.202.243.128\/25", + "version":3986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64634 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.0.0", + "prefixLen":25, + "network":"192.203.0.0\/25", + "version":4113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.0.128", + "prefixLen":25, + "network":"192.203.0.128\/25", + "version":4240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.1.0", + "prefixLen":25, + "network":"192.203.1.0\/25", + "version":4239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.1.128", + "prefixLen":25, + "network":"192.203.1.128\/25", + "version":4238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.2.0", + "prefixLen":25, + "network":"192.203.2.0\/25", + "version":4237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.2.128", + "prefixLen":25, + "network":"192.203.2.128\/25", + "version":4236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.3.0", + "prefixLen":25, + "network":"192.203.3.0\/25", + "version":4235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.3.128", + "prefixLen":25, + "network":"192.203.3.128\/25", + "version":4234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.16.0", + "prefixLen":25, + "network":"192.203.16.0\/25", + "version":4233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.16.128", + "prefixLen":25, + "network":"192.203.16.128\/25", + "version":4232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.17.0", + "prefixLen":25, + "network":"192.203.17.0\/25", + "version":4231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.17.128", + "prefixLen":25, + "network":"192.203.17.128\/25", + "version":4230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.18.0", + "prefixLen":25, + "network":"192.203.18.0\/25", + "version":4229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.18.128", + "prefixLen":25, + "network":"192.203.18.128\/25", + "version":4228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.19.0", + "prefixLen":25, + "network":"192.203.19.0\/25", + "version":4227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.19.128", + "prefixLen":25, + "network":"192.203.19.128\/25", + "version":4226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.32.0", + "prefixLen":25, + "network":"192.203.32.0\/25", + "version":4225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.32.128", + "prefixLen":25, + "network":"192.203.32.128\/25", + "version":4224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.33.0", + "prefixLen":25, + "network":"192.203.33.0\/25", + "version":4223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.33.128", + "prefixLen":25, + "network":"192.203.33.128\/25", + "version":4222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.34.0", + "prefixLen":25, + "network":"192.203.34.0\/25", + "version":4221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.34.128", + "prefixLen":25, + "network":"192.203.34.128\/25", + "version":4220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.35.0", + "prefixLen":25, + "network":"192.203.35.0\/25", + "version":4219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.35.128", + "prefixLen":25, + "network":"192.203.35.128\/25", + "version":4218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.48.0", + "prefixLen":25, + "network":"192.203.48.0\/25", + "version":4217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.48.128", + "prefixLen":25, + "network":"192.203.48.128\/25", + "version":4216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.49.0", + "prefixLen":25, + "network":"192.203.49.0\/25", + "version":4215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.49.128", + "prefixLen":25, + "network":"192.203.49.128\/25", + "version":4214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.50.0", + "prefixLen":25, + "network":"192.203.50.0\/25", + "version":4213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.50.128", + "prefixLen":25, + "network":"192.203.50.128\/25", + "version":4212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.51.0", + "prefixLen":25, + "network":"192.203.51.0\/25", + "version":4211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.51.128", + "prefixLen":25, + "network":"192.203.51.128\/25", + "version":4210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.64.0", + "prefixLen":25, + "network":"192.203.64.0\/25", + "version":4209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.64.128", + "prefixLen":25, + "network":"192.203.64.128\/25", + "version":4208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.65.0", + "prefixLen":25, + "network":"192.203.65.0\/25", + "version":4207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.65.128", + "prefixLen":25, + "network":"192.203.65.128\/25", + "version":4206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.66.0", + "prefixLen":25, + "network":"192.203.66.0\/25", + "version":4205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.66.128", + "prefixLen":25, + "network":"192.203.66.128\/25", + "version":4204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.67.0", + "prefixLen":25, + "network":"192.203.67.0\/25", + "version":4203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.67.128", + "prefixLen":25, + "network":"192.203.67.128\/25", + "version":4202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.80.0", + "prefixLen":25, + "network":"192.203.80.0\/25", + "version":4201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.80.128", + "prefixLen":25, + "network":"192.203.80.128\/25", + "version":4200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.81.0", + "prefixLen":25, + "network":"192.203.81.0\/25", + "version":4199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.81.128", + "prefixLen":25, + "network":"192.203.81.128\/25", + "version":4198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.82.0", + "prefixLen":25, + "network":"192.203.82.0\/25", + "version":4197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.82.128", + "prefixLen":25, + "network":"192.203.82.128\/25", + "version":4196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.83.0", + "prefixLen":25, + "network":"192.203.83.0\/25", + "version":4195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.83.128", + "prefixLen":25, + "network":"192.203.83.128\/25", + "version":4194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.96.0", + "prefixLen":25, + "network":"192.203.96.0\/25", + "version":4193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.96.128", + "prefixLen":25, + "network":"192.203.96.128\/25", + "version":4192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.97.0", + "prefixLen":25, + "network":"192.203.97.0\/25", + "version":4191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.97.128", + "prefixLen":25, + "network":"192.203.97.128\/25", + "version":4190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.98.0", + "prefixLen":25, + "network":"192.203.98.0\/25", + "version":4189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.98.128", + "prefixLen":25, + "network":"192.203.98.128\/25", + "version":4188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.99.0", + "prefixLen":25, + "network":"192.203.99.0\/25", + "version":4187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.99.128", + "prefixLen":25, + "network":"192.203.99.128\/25", + "version":4186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.112.0", + "prefixLen":25, + "network":"192.203.112.0\/25", + "version":4185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.112.128", + "prefixLen":25, + "network":"192.203.112.128\/25", + "version":4184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.113.0", + "prefixLen":25, + "network":"192.203.113.0\/25", + "version":4183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.113.128", + "prefixLen":25, + "network":"192.203.113.128\/25", + "version":4182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.114.0", + "prefixLen":25, + "network":"192.203.114.0\/25", + "version":4181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.114.128", + "prefixLen":25, + "network":"192.203.114.128\/25", + "version":4180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.115.0", + "prefixLen":25, + "network":"192.203.115.0\/25", + "version":4179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.115.128", + "prefixLen":25, + "network":"192.203.115.128\/25", + "version":4178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.128.0", + "prefixLen":25, + "network":"192.203.128.0\/25", + "version":4177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.128.128", + "prefixLen":25, + "network":"192.203.128.128\/25", + "version":4176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.129.0", + "prefixLen":25, + "network":"192.203.129.0\/25", + "version":4175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.129.128", + "prefixLen":25, + "network":"192.203.129.128\/25", + "version":4174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.130.0", + "prefixLen":25, + "network":"192.203.130.0\/25", + "version":4173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.130.128", + "prefixLen":25, + "network":"192.203.130.128\/25", + "version":4172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.131.0", + "prefixLen":25, + "network":"192.203.131.0\/25", + "version":4171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.131.128", + "prefixLen":25, + "network":"192.203.131.128\/25", + "version":4170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.144.0", + "prefixLen":25, + "network":"192.203.144.0\/25", + "version":4169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.144.128", + "prefixLen":25, + "network":"192.203.144.128\/25", + "version":4168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.145.0", + "prefixLen":25, + "network":"192.203.145.0\/25", + "version":4167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.145.128", + "prefixLen":25, + "network":"192.203.145.128\/25", + "version":4166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.146.0", + "prefixLen":25, + "network":"192.203.146.0\/25", + "version":4165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.146.128", + "prefixLen":25, + "network":"192.203.146.128\/25", + "version":4164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.147.0", + "prefixLen":25, + "network":"192.203.147.0\/25", + "version":4163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.147.128", + "prefixLen":25, + "network":"192.203.147.128\/25", + "version":4162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.160.0", + "prefixLen":25, + "network":"192.203.160.0\/25", + "version":4161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.160.128", + "prefixLen":25, + "network":"192.203.160.128\/25", + "version":4160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.161.0", + "prefixLen":25, + "network":"192.203.161.0\/25", + "version":4159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.161.128", + "prefixLen":25, + "network":"192.203.161.128\/25", + "version":4158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.162.0", + "prefixLen":25, + "network":"192.203.162.0\/25", + "version":4157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.162.128", + "prefixLen":25, + "network":"192.203.162.128\/25", + "version":4156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.163.0", + "prefixLen":25, + "network":"192.203.163.0\/25", + "version":4155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.163.128", + "prefixLen":25, + "network":"192.203.163.128\/25", + "version":4154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.176.0", + "prefixLen":25, + "network":"192.203.176.0\/25", + "version":4153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.176.128", + "prefixLen":25, + "network":"192.203.176.128\/25", + "version":4152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.177.0", + "prefixLen":25, + "network":"192.203.177.0\/25", + "version":4151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.177.128", + "prefixLen":25, + "network":"192.203.177.128\/25", + "version":4150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.178.0", + "prefixLen":25, + "network":"192.203.178.0\/25", + "version":4149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.178.128", + "prefixLen":25, + "network":"192.203.178.128\/25", + "version":4148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.179.0", + "prefixLen":25, + "network":"192.203.179.0\/25", + "version":4147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.179.128", + "prefixLen":25, + "network":"192.203.179.128\/25", + "version":4146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.192.0", + "prefixLen":25, + "network":"192.203.192.0\/25", + "version":4145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.192.128", + "prefixLen":25, + "network":"192.203.192.128\/25", + "version":4144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.193.0", + "prefixLen":25, + "network":"192.203.193.0\/25", + "version":4143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.193.128", + "prefixLen":25, + "network":"192.203.193.128\/25", + "version":4142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.194.0", + "prefixLen":25, + "network":"192.203.194.0\/25", + "version":4141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.194.128", + "prefixLen":25, + "network":"192.203.194.128\/25", + "version":4140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.195.0", + "prefixLen":25, + "network":"192.203.195.0\/25", + "version":4139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.195.128", + "prefixLen":25, + "network":"192.203.195.128\/25", + "version":4138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.208.0", + "prefixLen":25, + "network":"192.203.208.0\/25", + "version":4137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.208.128", + "prefixLen":25, + "network":"192.203.208.128\/25", + "version":4136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.209.0", + "prefixLen":25, + "network":"192.203.209.0\/25", + "version":4135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.209.128", + "prefixLen":25, + "network":"192.203.209.128\/25", + "version":4134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.210.0", + "prefixLen":25, + "network":"192.203.210.0\/25", + "version":4133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.210.128", + "prefixLen":25, + "network":"192.203.210.128\/25", + "version":4132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.211.0", + "prefixLen":25, + "network":"192.203.211.0\/25", + "version":4131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.211.128", + "prefixLen":25, + "network":"192.203.211.128\/25", + "version":4130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.224.0", + "prefixLen":25, + "network":"192.203.224.0\/25", + "version":4129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.224.128", + "prefixLen":25, + "network":"192.203.224.128\/25", + "version":4128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.225.0", + "prefixLen":25, + "network":"192.203.225.0\/25", + "version":4127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.225.128", + "prefixLen":25, + "network":"192.203.225.128\/25", + "version":4126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.226.0", + "prefixLen":25, + "network":"192.203.226.0\/25", + "version":4125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.226.128", + "prefixLen":25, + "network":"192.203.226.128\/25", + "version":4124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.227.0", + "prefixLen":25, + "network":"192.203.227.0\/25", + "version":4123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.227.128", + "prefixLen":25, + "network":"192.203.227.128\/25", + "version":4122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.240.0", + "prefixLen":25, + "network":"192.203.240.0\/25", + "version":4121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.240.128", + "prefixLen":25, + "network":"192.203.240.128\/25", + "version":4120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.241.0", + "prefixLen":25, + "network":"192.203.241.0\/25", + "version":4119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.241.128", + "prefixLen":25, + "network":"192.203.241.128\/25", + "version":4118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.242.0", + "prefixLen":25, + "network":"192.203.242.0\/25", + "version":4117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.242.128", + "prefixLen":25, + "network":"192.203.242.128\/25", + "version":4116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.243.0", + "prefixLen":25, + "network":"192.203.243.0\/25", + "version":4115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.203.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.203.243.128", + "prefixLen":25, + "network":"192.203.243.128\/25", + "version":4114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64635 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.0.0", + "prefixLen":25, + "network":"192.204.0.0\/25", + "version":4241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.0.128", + "prefixLen":25, + "network":"192.204.0.128\/25", + "version":4368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.1.0", + "prefixLen":25, + "network":"192.204.1.0\/25", + "version":4367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.1.128", + "prefixLen":25, + "network":"192.204.1.128\/25", + "version":4366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.2.0", + "prefixLen":25, + "network":"192.204.2.0\/25", + "version":4365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.2.128", + "prefixLen":25, + "network":"192.204.2.128\/25", + "version":4364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.3.0", + "prefixLen":25, + "network":"192.204.3.0\/25", + "version":4363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.3.128", + "prefixLen":25, + "network":"192.204.3.128\/25", + "version":4362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.16.0", + "prefixLen":25, + "network":"192.204.16.0\/25", + "version":4361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.16.128", + "prefixLen":25, + "network":"192.204.16.128\/25", + "version":4360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.17.0", + "prefixLen":25, + "network":"192.204.17.0\/25", + "version":4359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.17.128", + "prefixLen":25, + "network":"192.204.17.128\/25", + "version":4358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.18.0", + "prefixLen":25, + "network":"192.204.18.0\/25", + "version":4357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.18.128", + "prefixLen":25, + "network":"192.204.18.128\/25", + "version":4356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.19.0", + "prefixLen":25, + "network":"192.204.19.0\/25", + "version":4355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.19.128", + "prefixLen":25, + "network":"192.204.19.128\/25", + "version":4354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.32.0", + "prefixLen":25, + "network":"192.204.32.0\/25", + "version":4353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.32.128", + "prefixLen":25, + "network":"192.204.32.128\/25", + "version":4352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.33.0", + "prefixLen":25, + "network":"192.204.33.0\/25", + "version":4351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.33.128", + "prefixLen":25, + "network":"192.204.33.128\/25", + "version":4350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.34.0", + "prefixLen":25, + "network":"192.204.34.0\/25", + "version":4349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.34.128", + "prefixLen":25, + "network":"192.204.34.128\/25", + "version":4348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.35.0", + "prefixLen":25, + "network":"192.204.35.0\/25", + "version":4347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.35.128", + "prefixLen":25, + "network":"192.204.35.128\/25", + "version":4346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.48.0", + "prefixLen":25, + "network":"192.204.48.0\/25", + "version":4345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.48.128", + "prefixLen":25, + "network":"192.204.48.128\/25", + "version":4344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.49.0", + "prefixLen":25, + "network":"192.204.49.0\/25", + "version":4343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.49.128", + "prefixLen":25, + "network":"192.204.49.128\/25", + "version":4342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.50.0", + "prefixLen":25, + "network":"192.204.50.0\/25", + "version":4341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.50.128", + "prefixLen":25, + "network":"192.204.50.128\/25", + "version":4340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.51.0", + "prefixLen":25, + "network":"192.204.51.0\/25", + "version":4339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.51.128", + "prefixLen":25, + "network":"192.204.51.128\/25", + "version":4338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.64.0", + "prefixLen":25, + "network":"192.204.64.0\/25", + "version":4337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.64.128", + "prefixLen":25, + "network":"192.204.64.128\/25", + "version":4336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.65.0", + "prefixLen":25, + "network":"192.204.65.0\/25", + "version":4335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.65.128", + "prefixLen":25, + "network":"192.204.65.128\/25", + "version":4334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.66.0", + "prefixLen":25, + "network":"192.204.66.0\/25", + "version":4333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.66.128", + "prefixLen":25, + "network":"192.204.66.128\/25", + "version":4332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.67.0", + "prefixLen":25, + "network":"192.204.67.0\/25", + "version":4331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.67.128", + "prefixLen":25, + "network":"192.204.67.128\/25", + "version":4330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.80.0", + "prefixLen":25, + "network":"192.204.80.0\/25", + "version":4329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.80.128", + "prefixLen":25, + "network":"192.204.80.128\/25", + "version":4328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.81.0", + "prefixLen":25, + "network":"192.204.81.0\/25", + "version":4327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.81.128", + "prefixLen":25, + "network":"192.204.81.128\/25", + "version":4326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.82.0", + "prefixLen":25, + "network":"192.204.82.0\/25", + "version":4325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.82.128", + "prefixLen":25, + "network":"192.204.82.128\/25", + "version":4324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.83.0", + "prefixLen":25, + "network":"192.204.83.0\/25", + "version":4323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.83.128", + "prefixLen":25, + "network":"192.204.83.128\/25", + "version":4322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.96.0", + "prefixLen":25, + "network":"192.204.96.0\/25", + "version":4321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.96.128", + "prefixLen":25, + "network":"192.204.96.128\/25", + "version":4320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.97.0", + "prefixLen":25, + "network":"192.204.97.0\/25", + "version":4319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.97.128", + "prefixLen":25, + "network":"192.204.97.128\/25", + "version":4318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.98.0", + "prefixLen":25, + "network":"192.204.98.0\/25", + "version":4317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.98.128", + "prefixLen":25, + "network":"192.204.98.128\/25", + "version":4316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.99.0", + "prefixLen":25, + "network":"192.204.99.0\/25", + "version":4315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.99.128", + "prefixLen":25, + "network":"192.204.99.128\/25", + "version":4314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.112.0", + "prefixLen":25, + "network":"192.204.112.0\/25", + "version":4313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.112.128", + "prefixLen":25, + "network":"192.204.112.128\/25", + "version":4312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.113.0", + "prefixLen":25, + "network":"192.204.113.0\/25", + "version":4311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.113.128", + "prefixLen":25, + "network":"192.204.113.128\/25", + "version":4310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.114.0", + "prefixLen":25, + "network":"192.204.114.0\/25", + "version":4309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.114.128", + "prefixLen":25, + "network":"192.204.114.128\/25", + "version":4308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.115.0", + "prefixLen":25, + "network":"192.204.115.0\/25", + "version":4307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.115.128", + "prefixLen":25, + "network":"192.204.115.128\/25", + "version":4306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.128.0", + "prefixLen":25, + "network":"192.204.128.0\/25", + "version":4305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.128.128", + "prefixLen":25, + "network":"192.204.128.128\/25", + "version":4304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.129.0", + "prefixLen":25, + "network":"192.204.129.0\/25", + "version":4303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.129.128", + "prefixLen":25, + "network":"192.204.129.128\/25", + "version":4302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.130.0", + "prefixLen":25, + "network":"192.204.130.0\/25", + "version":4301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.130.128", + "prefixLen":25, + "network":"192.204.130.128\/25", + "version":4300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.131.0", + "prefixLen":25, + "network":"192.204.131.0\/25", + "version":4299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.131.128", + "prefixLen":25, + "network":"192.204.131.128\/25", + "version":4298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.144.0", + "prefixLen":25, + "network":"192.204.144.0\/25", + "version":4297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.144.128", + "prefixLen":25, + "network":"192.204.144.128\/25", + "version":4296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.145.0", + "prefixLen":25, + "network":"192.204.145.0\/25", + "version":4295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.145.128", + "prefixLen":25, + "network":"192.204.145.128\/25", + "version":4294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.146.0", + "prefixLen":25, + "network":"192.204.146.0\/25", + "version":4293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.146.128", + "prefixLen":25, + "network":"192.204.146.128\/25", + "version":4292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.147.0", + "prefixLen":25, + "network":"192.204.147.0\/25", + "version":4291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.147.128", + "prefixLen":25, + "network":"192.204.147.128\/25", + "version":4290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.160.0", + "prefixLen":25, + "network":"192.204.160.0\/25", + "version":4289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.160.128", + "prefixLen":25, + "network":"192.204.160.128\/25", + "version":4288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.161.0", + "prefixLen":25, + "network":"192.204.161.0\/25", + "version":4287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.161.128", + "prefixLen":25, + "network":"192.204.161.128\/25", + "version":4286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.162.0", + "prefixLen":25, + "network":"192.204.162.0\/25", + "version":4285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.162.128", + "prefixLen":25, + "network":"192.204.162.128\/25", + "version":4284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.163.0", + "prefixLen":25, + "network":"192.204.163.0\/25", + "version":4283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.163.128", + "prefixLen":25, + "network":"192.204.163.128\/25", + "version":4282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.176.0", + "prefixLen":25, + "network":"192.204.176.0\/25", + "version":4281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.176.128", + "prefixLen":25, + "network":"192.204.176.128\/25", + "version":4280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.177.0", + "prefixLen":25, + "network":"192.204.177.0\/25", + "version":4279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.177.128", + "prefixLen":25, + "network":"192.204.177.128\/25", + "version":4278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.178.0", + "prefixLen":25, + "network":"192.204.178.0\/25", + "version":4277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.178.128", + "prefixLen":25, + "network":"192.204.178.128\/25", + "version":4276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.179.0", + "prefixLen":25, + "network":"192.204.179.0\/25", + "version":4275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.179.128", + "prefixLen":25, + "network":"192.204.179.128\/25", + "version":4274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.192.0", + "prefixLen":25, + "network":"192.204.192.0\/25", + "version":4273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.192.128", + "prefixLen":25, + "network":"192.204.192.128\/25", + "version":4272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.193.0", + "prefixLen":25, + "network":"192.204.193.0\/25", + "version":4271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.193.128", + "prefixLen":25, + "network":"192.204.193.128\/25", + "version":4270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.194.0", + "prefixLen":25, + "network":"192.204.194.0\/25", + "version":4269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.194.128", + "prefixLen":25, + "network":"192.204.194.128\/25", + "version":4268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.195.0", + "prefixLen":25, + "network":"192.204.195.0\/25", + "version":4267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.195.128", + "prefixLen":25, + "network":"192.204.195.128\/25", + "version":4266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.208.0", + "prefixLen":25, + "network":"192.204.208.0\/25", + "version":4265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.208.128", + "prefixLen":25, + "network":"192.204.208.128\/25", + "version":4264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.209.0", + "prefixLen":25, + "network":"192.204.209.0\/25", + "version":4263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.209.128", + "prefixLen":25, + "network":"192.204.209.128\/25", + "version":4262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.210.0", + "prefixLen":25, + "network":"192.204.210.0\/25", + "version":4261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.210.128", + "prefixLen":25, + "network":"192.204.210.128\/25", + "version":4260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.211.0", + "prefixLen":25, + "network":"192.204.211.0\/25", + "version":4259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.211.128", + "prefixLen":25, + "network":"192.204.211.128\/25", + "version":4258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.224.0", + "prefixLen":25, + "network":"192.204.224.0\/25", + "version":4257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.224.128", + "prefixLen":25, + "network":"192.204.224.128\/25", + "version":4256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.225.0", + "prefixLen":25, + "network":"192.204.225.0\/25", + "version":4255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.225.128", + "prefixLen":25, + "network":"192.204.225.128\/25", + "version":4254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.226.0", + "prefixLen":25, + "network":"192.204.226.0\/25", + "version":4253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.226.128", + "prefixLen":25, + "network":"192.204.226.128\/25", + "version":4252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.227.0", + "prefixLen":25, + "network":"192.204.227.0\/25", + "version":4251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.227.128", + "prefixLen":25, + "network":"192.204.227.128\/25", + "version":4250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.240.0", + "prefixLen":25, + "network":"192.204.240.0\/25", + "version":4249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.240.128", + "prefixLen":25, + "network":"192.204.240.128\/25", + "version":4248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.241.0", + "prefixLen":25, + "network":"192.204.241.0\/25", + "version":4247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.241.128", + "prefixLen":25, + "network":"192.204.241.128\/25", + "version":4246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.242.0", + "prefixLen":25, + "network":"192.204.242.0\/25", + "version":4245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.242.128", + "prefixLen":25, + "network":"192.204.242.128\/25", + "version":4244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.243.0", + "prefixLen":25, + "network":"192.204.243.0\/25", + "version":4243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.204.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.204.243.128", + "prefixLen":25, + "network":"192.204.243.128\/25", + "version":4242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64636 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.0.0", + "prefixLen":25, + "network":"192.205.0.0\/25", + "version":4369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.0.128", + "prefixLen":25, + "network":"192.205.0.128\/25", + "version":4496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.1.0", + "prefixLen":25, + "network":"192.205.1.0\/25", + "version":4495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.1.128", + "prefixLen":25, + "network":"192.205.1.128\/25", + "version":4494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.2.0", + "prefixLen":25, + "network":"192.205.2.0\/25", + "version":4493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.2.128", + "prefixLen":25, + "network":"192.205.2.128\/25", + "version":4492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.3.0", + "prefixLen":25, + "network":"192.205.3.0\/25", + "version":4491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.3.128", + "prefixLen":25, + "network":"192.205.3.128\/25", + "version":4490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.16.0", + "prefixLen":25, + "network":"192.205.16.0\/25", + "version":4489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.16.128", + "prefixLen":25, + "network":"192.205.16.128\/25", + "version":4488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.17.0", + "prefixLen":25, + "network":"192.205.17.0\/25", + "version":4487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.17.128", + "prefixLen":25, + "network":"192.205.17.128\/25", + "version":4486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.18.0", + "prefixLen":25, + "network":"192.205.18.0\/25", + "version":4485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.18.128", + "prefixLen":25, + "network":"192.205.18.128\/25", + "version":4484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.19.0", + "prefixLen":25, + "network":"192.205.19.0\/25", + "version":4483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.19.128", + "prefixLen":25, + "network":"192.205.19.128\/25", + "version":4482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.32.0", + "prefixLen":25, + "network":"192.205.32.0\/25", + "version":4481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.32.128", + "prefixLen":25, + "network":"192.205.32.128\/25", + "version":4480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.33.0", + "prefixLen":25, + "network":"192.205.33.0\/25", + "version":4479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.33.128", + "prefixLen":25, + "network":"192.205.33.128\/25", + "version":4478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.34.0", + "prefixLen":25, + "network":"192.205.34.0\/25", + "version":4477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.34.128", + "prefixLen":25, + "network":"192.205.34.128\/25", + "version":4476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.35.0", + "prefixLen":25, + "network":"192.205.35.0\/25", + "version":4475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.35.128", + "prefixLen":25, + "network":"192.205.35.128\/25", + "version":4474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.48.0", + "prefixLen":25, + "network":"192.205.48.0\/25", + "version":4473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.48.128", + "prefixLen":25, + "network":"192.205.48.128\/25", + "version":4472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.49.0", + "prefixLen":25, + "network":"192.205.49.0\/25", + "version":4471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.49.128", + "prefixLen":25, + "network":"192.205.49.128\/25", + "version":4470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.50.0", + "prefixLen":25, + "network":"192.205.50.0\/25", + "version":4469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.50.128", + "prefixLen":25, + "network":"192.205.50.128\/25", + "version":4468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.51.0", + "prefixLen":25, + "network":"192.205.51.0\/25", + "version":4467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.51.128", + "prefixLen":25, + "network":"192.205.51.128\/25", + "version":4466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.64.0", + "prefixLen":25, + "network":"192.205.64.0\/25", + "version":4465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.64.128", + "prefixLen":25, + "network":"192.205.64.128\/25", + "version":4464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.65.0", + "prefixLen":25, + "network":"192.205.65.0\/25", + "version":4463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.65.128", + "prefixLen":25, + "network":"192.205.65.128\/25", + "version":4462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.66.0", + "prefixLen":25, + "network":"192.205.66.0\/25", + "version":4461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.66.128", + "prefixLen":25, + "network":"192.205.66.128\/25", + "version":4460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.67.0", + "prefixLen":25, + "network":"192.205.67.0\/25", + "version":4459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.67.128", + "prefixLen":25, + "network":"192.205.67.128\/25", + "version":4458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.80.0", + "prefixLen":25, + "network":"192.205.80.0\/25", + "version":4457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.80.128", + "prefixLen":25, + "network":"192.205.80.128\/25", + "version":4456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.81.0", + "prefixLen":25, + "network":"192.205.81.0\/25", + "version":4455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.81.128", + "prefixLen":25, + "network":"192.205.81.128\/25", + "version":4454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.82.0", + "prefixLen":25, + "network":"192.205.82.0\/25", + "version":4453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.82.128", + "prefixLen":25, + "network":"192.205.82.128\/25", + "version":4452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.83.0", + "prefixLen":25, + "network":"192.205.83.0\/25", + "version":4451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.83.128", + "prefixLen":25, + "network":"192.205.83.128\/25", + "version":4450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.96.0", + "prefixLen":25, + "network":"192.205.96.0\/25", + "version":4449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.96.128", + "prefixLen":25, + "network":"192.205.96.128\/25", + "version":4448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.97.0", + "prefixLen":25, + "network":"192.205.97.0\/25", + "version":4447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.97.128", + "prefixLen":25, + "network":"192.205.97.128\/25", + "version":4446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.98.0", + "prefixLen":25, + "network":"192.205.98.0\/25", + "version":4445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.98.128", + "prefixLen":25, + "network":"192.205.98.128\/25", + "version":4444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.99.0", + "prefixLen":25, + "network":"192.205.99.0\/25", + "version":4443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.99.128", + "prefixLen":25, + "network":"192.205.99.128\/25", + "version":4442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.112.0", + "prefixLen":25, + "network":"192.205.112.0\/25", + "version":4441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.112.128", + "prefixLen":25, + "network":"192.205.112.128\/25", + "version":4440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.113.0", + "prefixLen":25, + "network":"192.205.113.0\/25", + "version":4439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.113.128", + "prefixLen":25, + "network":"192.205.113.128\/25", + "version":4438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.114.0", + "prefixLen":25, + "network":"192.205.114.0\/25", + "version":4437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.114.128", + "prefixLen":25, + "network":"192.205.114.128\/25", + "version":4436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.115.0", + "prefixLen":25, + "network":"192.205.115.0\/25", + "version":4435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.115.128", + "prefixLen":25, + "network":"192.205.115.128\/25", + "version":4434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.128.0", + "prefixLen":25, + "network":"192.205.128.0\/25", + "version":4433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.128.128", + "prefixLen":25, + "network":"192.205.128.128\/25", + "version":4432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.129.0", + "prefixLen":25, + "network":"192.205.129.0\/25", + "version":4431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.129.128", + "prefixLen":25, + "network":"192.205.129.128\/25", + "version":4430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.130.0", + "prefixLen":25, + "network":"192.205.130.0\/25", + "version":4429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.130.128", + "prefixLen":25, + "network":"192.205.130.128\/25", + "version":4428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.131.0", + "prefixLen":25, + "network":"192.205.131.0\/25", + "version":4427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.131.128", + "prefixLen":25, + "network":"192.205.131.128\/25", + "version":4426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.144.0", + "prefixLen":25, + "network":"192.205.144.0\/25", + "version":4425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.144.128", + "prefixLen":25, + "network":"192.205.144.128\/25", + "version":4424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.145.0", + "prefixLen":25, + "network":"192.205.145.0\/25", + "version":4423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.145.128", + "prefixLen":25, + "network":"192.205.145.128\/25", + "version":4422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.146.0", + "prefixLen":25, + "network":"192.205.146.0\/25", + "version":4421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.146.128", + "prefixLen":25, + "network":"192.205.146.128\/25", + "version":4420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.147.0", + "prefixLen":25, + "network":"192.205.147.0\/25", + "version":4419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.147.128", + "prefixLen":25, + "network":"192.205.147.128\/25", + "version":4418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.160.0", + "prefixLen":25, + "network":"192.205.160.0\/25", + "version":4417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.160.128", + "prefixLen":25, + "network":"192.205.160.128\/25", + "version":4416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.161.0", + "prefixLen":25, + "network":"192.205.161.0\/25", + "version":4415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.161.128", + "prefixLen":25, + "network":"192.205.161.128\/25", + "version":4414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.162.0", + "prefixLen":25, + "network":"192.205.162.0\/25", + "version":4413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.162.128", + "prefixLen":25, + "network":"192.205.162.128\/25", + "version":4412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.163.0", + "prefixLen":25, + "network":"192.205.163.0\/25", + "version":4411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.163.128", + "prefixLen":25, + "network":"192.205.163.128\/25", + "version":4410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.176.0", + "prefixLen":25, + "network":"192.205.176.0\/25", + "version":4409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.176.128", + "prefixLen":25, + "network":"192.205.176.128\/25", + "version":4408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.177.0", + "prefixLen":25, + "network":"192.205.177.0\/25", + "version":4407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.177.128", + "prefixLen":25, + "network":"192.205.177.128\/25", + "version":4406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.178.0", + "prefixLen":25, + "network":"192.205.178.0\/25", + "version":4405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.178.128", + "prefixLen":25, + "network":"192.205.178.128\/25", + "version":4404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.179.0", + "prefixLen":25, + "network":"192.205.179.0\/25", + "version":4403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.179.128", + "prefixLen":25, + "network":"192.205.179.128\/25", + "version":4402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.192.0", + "prefixLen":25, + "network":"192.205.192.0\/25", + "version":4401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.192.128", + "prefixLen":25, + "network":"192.205.192.128\/25", + "version":4400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.193.0", + "prefixLen":25, + "network":"192.205.193.0\/25", + "version":4399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.193.128", + "prefixLen":25, + "network":"192.205.193.128\/25", + "version":4398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.194.0", + "prefixLen":25, + "network":"192.205.194.0\/25", + "version":4397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.194.128", + "prefixLen":25, + "network":"192.205.194.128\/25", + "version":4396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.195.0", + "prefixLen":25, + "network":"192.205.195.0\/25", + "version":4395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.195.128", + "prefixLen":25, + "network":"192.205.195.128\/25", + "version":4394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.208.0", + "prefixLen":25, + "network":"192.205.208.0\/25", + "version":4393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.208.128", + "prefixLen":25, + "network":"192.205.208.128\/25", + "version":4392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.209.0", + "prefixLen":25, + "network":"192.205.209.0\/25", + "version":4391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.209.128", + "prefixLen":25, + "network":"192.205.209.128\/25", + "version":4390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.210.0", + "prefixLen":25, + "network":"192.205.210.0\/25", + "version":4389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.210.128", + "prefixLen":25, + "network":"192.205.210.128\/25", + "version":4388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.211.0", + "prefixLen":25, + "network":"192.205.211.0\/25", + "version":4387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.211.128", + "prefixLen":25, + "network":"192.205.211.128\/25", + "version":4386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.224.0", + "prefixLen":25, + "network":"192.205.224.0\/25", + "version":4385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.224.128", + "prefixLen":25, + "network":"192.205.224.128\/25", + "version":4384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.225.0", + "prefixLen":25, + "network":"192.205.225.0\/25", + "version":4383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.225.128", + "prefixLen":25, + "network":"192.205.225.128\/25", + "version":4382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.226.0", + "prefixLen":25, + "network":"192.205.226.0\/25", + "version":4381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.226.128", + "prefixLen":25, + "network":"192.205.226.128\/25", + "version":4380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.227.0", + "prefixLen":25, + "network":"192.205.227.0\/25", + "version":4379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.227.128", + "prefixLen":25, + "network":"192.205.227.128\/25", + "version":4378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.240.0", + "prefixLen":25, + "network":"192.205.240.0\/25", + "version":4377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.240.128", + "prefixLen":25, + "network":"192.205.240.128\/25", + "version":4376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.241.0", + "prefixLen":25, + "network":"192.205.241.0\/25", + "version":4375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.241.128", + "prefixLen":25, + "network":"192.205.241.128\/25", + "version":4374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.242.0", + "prefixLen":25, + "network":"192.205.242.0\/25", + "version":4373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.242.128", + "prefixLen":25, + "network":"192.205.242.128\/25", + "version":4372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.243.0", + "prefixLen":25, + "network":"192.205.243.0\/25", + "version":4371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.205.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.205.243.128", + "prefixLen":25, + "network":"192.205.243.128\/25", + "version":4370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64637 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.0.0", + "prefixLen":25, + "network":"192.206.0.0\/25", + "version":4497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.0.128", + "prefixLen":25, + "network":"192.206.0.128\/25", + "version":4624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.1.0", + "prefixLen":25, + "network":"192.206.1.0\/25", + "version":4623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.1.128", + "prefixLen":25, + "network":"192.206.1.128\/25", + "version":4622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.2.0", + "prefixLen":25, + "network":"192.206.2.0\/25", + "version":4621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.2.128", + "prefixLen":25, + "network":"192.206.2.128\/25", + "version":4620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.3.0", + "prefixLen":25, + "network":"192.206.3.0\/25", + "version":4619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.3.128", + "prefixLen":25, + "network":"192.206.3.128\/25", + "version":4618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.16.0", + "prefixLen":25, + "network":"192.206.16.0\/25", + "version":4617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.16.128", + "prefixLen":25, + "network":"192.206.16.128\/25", + "version":4616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.17.0", + "prefixLen":25, + "network":"192.206.17.0\/25", + "version":4615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.17.128", + "prefixLen":25, + "network":"192.206.17.128\/25", + "version":4614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.18.0", + "prefixLen":25, + "network":"192.206.18.0\/25", + "version":4613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.18.128", + "prefixLen":25, + "network":"192.206.18.128\/25", + "version":4612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.19.0", + "prefixLen":25, + "network":"192.206.19.0\/25", + "version":4611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.19.128", + "prefixLen":25, + "network":"192.206.19.128\/25", + "version":4610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.32.0", + "prefixLen":25, + "network":"192.206.32.0\/25", + "version":4609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.32.128", + "prefixLen":25, + "network":"192.206.32.128\/25", + "version":4608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.33.0", + "prefixLen":25, + "network":"192.206.33.0\/25", + "version":4607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.33.128", + "prefixLen":25, + "network":"192.206.33.128\/25", + "version":4606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.34.0", + "prefixLen":25, + "network":"192.206.34.0\/25", + "version":4605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.34.128", + "prefixLen":25, + "network":"192.206.34.128\/25", + "version":4604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.35.0", + "prefixLen":25, + "network":"192.206.35.0\/25", + "version":4603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.35.128", + "prefixLen":25, + "network":"192.206.35.128\/25", + "version":4602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.48.0", + "prefixLen":25, + "network":"192.206.48.0\/25", + "version":4601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.48.128", + "prefixLen":25, + "network":"192.206.48.128\/25", + "version":4600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.49.0", + "prefixLen":25, + "network":"192.206.49.0\/25", + "version":4599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.49.128", + "prefixLen":25, + "network":"192.206.49.128\/25", + "version":4598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.50.0", + "prefixLen":25, + "network":"192.206.50.0\/25", + "version":4597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.50.128", + "prefixLen":25, + "network":"192.206.50.128\/25", + "version":4596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.51.0", + "prefixLen":25, + "network":"192.206.51.0\/25", + "version":4595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.51.128", + "prefixLen":25, + "network":"192.206.51.128\/25", + "version":4594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.64.0", + "prefixLen":25, + "network":"192.206.64.0\/25", + "version":4593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.64.128", + "prefixLen":25, + "network":"192.206.64.128\/25", + "version":4592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.65.0", + "prefixLen":25, + "network":"192.206.65.0\/25", + "version":4591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.65.128", + "prefixLen":25, + "network":"192.206.65.128\/25", + "version":4590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.66.0", + "prefixLen":25, + "network":"192.206.66.0\/25", + "version":4589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.66.128", + "prefixLen":25, + "network":"192.206.66.128\/25", + "version":4588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.67.0", + "prefixLen":25, + "network":"192.206.67.0\/25", + "version":4587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.67.128", + "prefixLen":25, + "network":"192.206.67.128\/25", + "version":4586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.80.0", + "prefixLen":25, + "network":"192.206.80.0\/25", + "version":4585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.80.128", + "prefixLen":25, + "network":"192.206.80.128\/25", + "version":4584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.81.0", + "prefixLen":25, + "network":"192.206.81.0\/25", + "version":4583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.81.128", + "prefixLen":25, + "network":"192.206.81.128\/25", + "version":4582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.82.0", + "prefixLen":25, + "network":"192.206.82.0\/25", + "version":4581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.82.128", + "prefixLen":25, + "network":"192.206.82.128\/25", + "version":4580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.83.0", + "prefixLen":25, + "network":"192.206.83.0\/25", + "version":4579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.83.128", + "prefixLen":25, + "network":"192.206.83.128\/25", + "version":4578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.96.0", + "prefixLen":25, + "network":"192.206.96.0\/25", + "version":4577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.96.128", + "prefixLen":25, + "network":"192.206.96.128\/25", + "version":4576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.97.0", + "prefixLen":25, + "network":"192.206.97.0\/25", + "version":4575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.97.128", + "prefixLen":25, + "network":"192.206.97.128\/25", + "version":4574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.98.0", + "prefixLen":25, + "network":"192.206.98.0\/25", + "version":4573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.98.128", + "prefixLen":25, + "network":"192.206.98.128\/25", + "version":4572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.99.0", + "prefixLen":25, + "network":"192.206.99.0\/25", + "version":4571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.99.128", + "prefixLen":25, + "network":"192.206.99.128\/25", + "version":4570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.112.0", + "prefixLen":25, + "network":"192.206.112.0\/25", + "version":4569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.112.128", + "prefixLen":25, + "network":"192.206.112.128\/25", + "version":4568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.113.0", + "prefixLen":25, + "network":"192.206.113.0\/25", + "version":4567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.113.128", + "prefixLen":25, + "network":"192.206.113.128\/25", + "version":4566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.114.0", + "prefixLen":25, + "network":"192.206.114.0\/25", + "version":4565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.114.128", + "prefixLen":25, + "network":"192.206.114.128\/25", + "version":4564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.115.0", + "prefixLen":25, + "network":"192.206.115.0\/25", + "version":4563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.115.128", + "prefixLen":25, + "network":"192.206.115.128\/25", + "version":4562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.128.0", + "prefixLen":25, + "network":"192.206.128.0\/25", + "version":4561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.128.128", + "prefixLen":25, + "network":"192.206.128.128\/25", + "version":4560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.129.0", + "prefixLen":25, + "network":"192.206.129.0\/25", + "version":4559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.129.128", + "prefixLen":25, + "network":"192.206.129.128\/25", + "version":4558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.130.0", + "prefixLen":25, + "network":"192.206.130.0\/25", + "version":4557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.130.128", + "prefixLen":25, + "network":"192.206.130.128\/25", + "version":4556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.131.0", + "prefixLen":25, + "network":"192.206.131.0\/25", + "version":4555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.131.128", + "prefixLen":25, + "network":"192.206.131.128\/25", + "version":4554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.144.0", + "prefixLen":25, + "network":"192.206.144.0\/25", + "version":4553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.144.128", + "prefixLen":25, + "network":"192.206.144.128\/25", + "version":4552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.145.0", + "prefixLen":25, + "network":"192.206.145.0\/25", + "version":4551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.145.128", + "prefixLen":25, + "network":"192.206.145.128\/25", + "version":4550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.146.0", + "prefixLen":25, + "network":"192.206.146.0\/25", + "version":4549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.146.128", + "prefixLen":25, + "network":"192.206.146.128\/25", + "version":4548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.147.0", + "prefixLen":25, + "network":"192.206.147.0\/25", + "version":4547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.147.128", + "prefixLen":25, + "network":"192.206.147.128\/25", + "version":4546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.160.0", + "prefixLen":25, + "network":"192.206.160.0\/25", + "version":4545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.160.128", + "prefixLen":25, + "network":"192.206.160.128\/25", + "version":4544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.161.0", + "prefixLen":25, + "network":"192.206.161.0\/25", + "version":4543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.161.128", + "prefixLen":25, + "network":"192.206.161.128\/25", + "version":4542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.162.0", + "prefixLen":25, + "network":"192.206.162.0\/25", + "version":4541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.162.128", + "prefixLen":25, + "network":"192.206.162.128\/25", + "version":4540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.163.0", + "prefixLen":25, + "network":"192.206.163.0\/25", + "version":4539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.163.128", + "prefixLen":25, + "network":"192.206.163.128\/25", + "version":4538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.176.0", + "prefixLen":25, + "network":"192.206.176.0\/25", + "version":4537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.176.128", + "prefixLen":25, + "network":"192.206.176.128\/25", + "version":4536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.177.0", + "prefixLen":25, + "network":"192.206.177.0\/25", + "version":4535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.177.128", + "prefixLen":25, + "network":"192.206.177.128\/25", + "version":4534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.178.0", + "prefixLen":25, + "network":"192.206.178.0\/25", + "version":4533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.178.128", + "prefixLen":25, + "network":"192.206.178.128\/25", + "version":4532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.179.0", + "prefixLen":25, + "network":"192.206.179.0\/25", + "version":4531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.179.128", + "prefixLen":25, + "network":"192.206.179.128\/25", + "version":4530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.192.0", + "prefixLen":25, + "network":"192.206.192.0\/25", + "version":4529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.192.128", + "prefixLen":25, + "network":"192.206.192.128\/25", + "version":4528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.193.0", + "prefixLen":25, + "network":"192.206.193.0\/25", + "version":4527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.193.128", + "prefixLen":25, + "network":"192.206.193.128\/25", + "version":4526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.194.0", + "prefixLen":25, + "network":"192.206.194.0\/25", + "version":4525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.194.128", + "prefixLen":25, + "network":"192.206.194.128\/25", + "version":4524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.195.0", + "prefixLen":25, + "network":"192.206.195.0\/25", + "version":4523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.195.128", + "prefixLen":25, + "network":"192.206.195.128\/25", + "version":4522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.208.0", + "prefixLen":25, + "network":"192.206.208.0\/25", + "version":4521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.208.128", + "prefixLen":25, + "network":"192.206.208.128\/25", + "version":4520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.209.0", + "prefixLen":25, + "network":"192.206.209.0\/25", + "version":4519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.209.128", + "prefixLen":25, + "network":"192.206.209.128\/25", + "version":4518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.210.0", + "prefixLen":25, + "network":"192.206.210.0\/25", + "version":4517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.210.128", + "prefixLen":25, + "network":"192.206.210.128\/25", + "version":4516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.211.0", + "prefixLen":25, + "network":"192.206.211.0\/25", + "version":4515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.211.128", + "prefixLen":25, + "network":"192.206.211.128\/25", + "version":4514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.224.0", + "prefixLen":25, + "network":"192.206.224.0\/25", + "version":4513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.224.128", + "prefixLen":25, + "network":"192.206.224.128\/25", + "version":4512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.225.0", + "prefixLen":25, + "network":"192.206.225.0\/25", + "version":4511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.225.128", + "prefixLen":25, + "network":"192.206.225.128\/25", + "version":4510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.226.0", + "prefixLen":25, + "network":"192.206.226.0\/25", + "version":4509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.226.128", + "prefixLen":25, + "network":"192.206.226.128\/25", + "version":4508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.227.0", + "prefixLen":25, + "network":"192.206.227.0\/25", + "version":4507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.227.128", + "prefixLen":25, + "network":"192.206.227.128\/25", + "version":4506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.240.0", + "prefixLen":25, + "network":"192.206.240.0\/25", + "version":4505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.240.128", + "prefixLen":25, + "network":"192.206.240.128\/25", + "version":4504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.241.0", + "prefixLen":25, + "network":"192.206.241.0\/25", + "version":4503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.241.128", + "prefixLen":25, + "network":"192.206.241.128\/25", + "version":4502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.242.0", + "prefixLen":25, + "network":"192.206.242.0\/25", + "version":4501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.242.128", + "prefixLen":25, + "network":"192.206.242.128\/25", + "version":4500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.243.0", + "prefixLen":25, + "network":"192.206.243.0\/25", + "version":4499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.206.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.206.243.128", + "prefixLen":25, + "network":"192.206.243.128\/25", + "version":4498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64638 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.0.0", + "prefixLen":25, + "network":"192.207.0.0\/25", + "version":4625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.0.128", + "prefixLen":25, + "network":"192.207.0.128\/25", + "version":4752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.1.0", + "prefixLen":25, + "network":"192.207.1.0\/25", + "version":4751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.1.128", + "prefixLen":25, + "network":"192.207.1.128\/25", + "version":4750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.2.0", + "prefixLen":25, + "network":"192.207.2.0\/25", + "version":4749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.2.128", + "prefixLen":25, + "network":"192.207.2.128\/25", + "version":4748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.3.0", + "prefixLen":25, + "network":"192.207.3.0\/25", + "version":4747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.3.128", + "prefixLen":25, + "network":"192.207.3.128\/25", + "version":4746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.16.0", + "prefixLen":25, + "network":"192.207.16.0\/25", + "version":4745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.16.128", + "prefixLen":25, + "network":"192.207.16.128\/25", + "version":4744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.17.0", + "prefixLen":25, + "network":"192.207.17.0\/25", + "version":4743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.17.128", + "prefixLen":25, + "network":"192.207.17.128\/25", + "version":4742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.18.0", + "prefixLen":25, + "network":"192.207.18.0\/25", + "version":4741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.18.128", + "prefixLen":25, + "network":"192.207.18.128\/25", + "version":4740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.19.0", + "prefixLen":25, + "network":"192.207.19.0\/25", + "version":4739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.19.128", + "prefixLen":25, + "network":"192.207.19.128\/25", + "version":4738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.32.0", + "prefixLen":25, + "network":"192.207.32.0\/25", + "version":4737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.32.128", + "prefixLen":25, + "network":"192.207.32.128\/25", + "version":4736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.33.0", + "prefixLen":25, + "network":"192.207.33.0\/25", + "version":4735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.33.128", + "prefixLen":25, + "network":"192.207.33.128\/25", + "version":4734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.34.0", + "prefixLen":25, + "network":"192.207.34.0\/25", + "version":4733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.34.128", + "prefixLen":25, + "network":"192.207.34.128\/25", + "version":4732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.35.0", + "prefixLen":25, + "network":"192.207.35.0\/25", + "version":4731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.35.128", + "prefixLen":25, + "network":"192.207.35.128\/25", + "version":4730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.48.0", + "prefixLen":25, + "network":"192.207.48.0\/25", + "version":4729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.48.128", + "prefixLen":25, + "network":"192.207.48.128\/25", + "version":4728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.49.0", + "prefixLen":25, + "network":"192.207.49.0\/25", + "version":4727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.49.128", + "prefixLen":25, + "network":"192.207.49.128\/25", + "version":4726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.50.0", + "prefixLen":25, + "network":"192.207.50.0\/25", + "version":4725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.50.128", + "prefixLen":25, + "network":"192.207.50.128\/25", + "version":4724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.51.0", + "prefixLen":25, + "network":"192.207.51.0\/25", + "version":4723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.51.128", + "prefixLen":25, + "network":"192.207.51.128\/25", + "version":4722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.64.0", + "prefixLen":25, + "network":"192.207.64.0\/25", + "version":4721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.64.128", + "prefixLen":25, + "network":"192.207.64.128\/25", + "version":4720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.65.0", + "prefixLen":25, + "network":"192.207.65.0\/25", + "version":4719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.65.128", + "prefixLen":25, + "network":"192.207.65.128\/25", + "version":4718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.66.0", + "prefixLen":25, + "network":"192.207.66.0\/25", + "version":4717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.66.128", + "prefixLen":25, + "network":"192.207.66.128\/25", + "version":4716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.67.0", + "prefixLen":25, + "network":"192.207.67.0\/25", + "version":4715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.67.128", + "prefixLen":25, + "network":"192.207.67.128\/25", + "version":4714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.80.0", + "prefixLen":25, + "network":"192.207.80.0\/25", + "version":4713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.80.128", + "prefixLen":25, + "network":"192.207.80.128\/25", + "version":4712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.81.0", + "prefixLen":25, + "network":"192.207.81.0\/25", + "version":4711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.81.128", + "prefixLen":25, + "network":"192.207.81.128\/25", + "version":4710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.82.0", + "prefixLen":25, + "network":"192.207.82.0\/25", + "version":4709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.82.128", + "prefixLen":25, + "network":"192.207.82.128\/25", + "version":4708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.83.0", + "prefixLen":25, + "network":"192.207.83.0\/25", + "version":4707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.83.128", + "prefixLen":25, + "network":"192.207.83.128\/25", + "version":4706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.96.0", + "prefixLen":25, + "network":"192.207.96.0\/25", + "version":4705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.96.128", + "prefixLen":25, + "network":"192.207.96.128\/25", + "version":4704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.97.0", + "prefixLen":25, + "network":"192.207.97.0\/25", + "version":4703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.97.128", + "prefixLen":25, + "network":"192.207.97.128\/25", + "version":4702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.98.0", + "prefixLen":25, + "network":"192.207.98.0\/25", + "version":4701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.98.128", + "prefixLen":25, + "network":"192.207.98.128\/25", + "version":4700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.99.0", + "prefixLen":25, + "network":"192.207.99.0\/25", + "version":4699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.99.128", + "prefixLen":25, + "network":"192.207.99.128\/25", + "version":4698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.112.0", + "prefixLen":25, + "network":"192.207.112.0\/25", + "version":4697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.112.128", + "prefixLen":25, + "network":"192.207.112.128\/25", + "version":4696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.113.0", + "prefixLen":25, + "network":"192.207.113.0\/25", + "version":4695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.113.128", + "prefixLen":25, + "network":"192.207.113.128\/25", + "version":4694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.114.0", + "prefixLen":25, + "network":"192.207.114.0\/25", + "version":4693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.114.128", + "prefixLen":25, + "network":"192.207.114.128\/25", + "version":4692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.115.0", + "prefixLen":25, + "network":"192.207.115.0\/25", + "version":4691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.115.128", + "prefixLen":25, + "network":"192.207.115.128\/25", + "version":4690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.128.0", + "prefixLen":25, + "network":"192.207.128.0\/25", + "version":4689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.128.128", + "prefixLen":25, + "network":"192.207.128.128\/25", + "version":4688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.129.0", + "prefixLen":25, + "network":"192.207.129.0\/25", + "version":4687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.129.128", + "prefixLen":25, + "network":"192.207.129.128\/25", + "version":4686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.130.0", + "prefixLen":25, + "network":"192.207.130.0\/25", + "version":4685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.130.128", + "prefixLen":25, + "network":"192.207.130.128\/25", + "version":4684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.131.0", + "prefixLen":25, + "network":"192.207.131.0\/25", + "version":4683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.131.128", + "prefixLen":25, + "network":"192.207.131.128\/25", + "version":4682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.144.0", + "prefixLen":25, + "network":"192.207.144.0\/25", + "version":4681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.144.128", + "prefixLen":25, + "network":"192.207.144.128\/25", + "version":4680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.145.0", + "prefixLen":25, + "network":"192.207.145.0\/25", + "version":4679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.145.128", + "prefixLen":25, + "network":"192.207.145.128\/25", + "version":4678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.146.0", + "prefixLen":25, + "network":"192.207.146.0\/25", + "version":4677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.146.128", + "prefixLen":25, + "network":"192.207.146.128\/25", + "version":4676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.147.0", + "prefixLen":25, + "network":"192.207.147.0\/25", + "version":4675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.147.128", + "prefixLen":25, + "network":"192.207.147.128\/25", + "version":4674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.160.0", + "prefixLen":25, + "network":"192.207.160.0\/25", + "version":4673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.160.128", + "prefixLen":25, + "network":"192.207.160.128\/25", + "version":4672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.161.0", + "prefixLen":25, + "network":"192.207.161.0\/25", + "version":4671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.161.128", + "prefixLen":25, + "network":"192.207.161.128\/25", + "version":4670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.162.0", + "prefixLen":25, + "network":"192.207.162.0\/25", + "version":4669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.162.128", + "prefixLen":25, + "network":"192.207.162.128\/25", + "version":4668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.163.0", + "prefixLen":25, + "network":"192.207.163.0\/25", + "version":4667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.163.128", + "prefixLen":25, + "network":"192.207.163.128\/25", + "version":4666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.176.0", + "prefixLen":25, + "network":"192.207.176.0\/25", + "version":4665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.176.128", + "prefixLen":25, + "network":"192.207.176.128\/25", + "version":4664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.177.0", + "prefixLen":25, + "network":"192.207.177.0\/25", + "version":4663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.177.128", + "prefixLen":25, + "network":"192.207.177.128\/25", + "version":4662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.178.0", + "prefixLen":25, + "network":"192.207.178.0\/25", + "version":4661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.178.128", + "prefixLen":25, + "network":"192.207.178.128\/25", + "version":4660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.179.0", + "prefixLen":25, + "network":"192.207.179.0\/25", + "version":4659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.179.128", + "prefixLen":25, + "network":"192.207.179.128\/25", + "version":4658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.192.0", + "prefixLen":25, + "network":"192.207.192.0\/25", + "version":4657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.192.128", + "prefixLen":25, + "network":"192.207.192.128\/25", + "version":4656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.193.0", + "prefixLen":25, + "network":"192.207.193.0\/25", + "version":4655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.193.128", + "prefixLen":25, + "network":"192.207.193.128\/25", + "version":4654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.194.0", + "prefixLen":25, + "network":"192.207.194.0\/25", + "version":4653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.194.128", + "prefixLen":25, + "network":"192.207.194.128\/25", + "version":4652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.195.0", + "prefixLen":25, + "network":"192.207.195.0\/25", + "version":4651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.195.128", + "prefixLen":25, + "network":"192.207.195.128\/25", + "version":4650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.208.0", + "prefixLen":25, + "network":"192.207.208.0\/25", + "version":4649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.208.128", + "prefixLen":25, + "network":"192.207.208.128\/25", + "version":4648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.209.0", + "prefixLen":25, + "network":"192.207.209.0\/25", + "version":4647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.209.128", + "prefixLen":25, + "network":"192.207.209.128\/25", + "version":4646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.210.0", + "prefixLen":25, + "network":"192.207.210.0\/25", + "version":4645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.210.128", + "prefixLen":25, + "network":"192.207.210.128\/25", + "version":4644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.211.0", + "prefixLen":25, + "network":"192.207.211.0\/25", + "version":4643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.211.128", + "prefixLen":25, + "network":"192.207.211.128\/25", + "version":4642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.224.0", + "prefixLen":25, + "network":"192.207.224.0\/25", + "version":4641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.224.128", + "prefixLen":25, + "network":"192.207.224.128\/25", + "version":4640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.225.0", + "prefixLen":25, + "network":"192.207.225.0\/25", + "version":4639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.225.128", + "prefixLen":25, + "network":"192.207.225.128\/25", + "version":4638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.226.0", + "prefixLen":25, + "network":"192.207.226.0\/25", + "version":4637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.226.128", + "prefixLen":25, + "network":"192.207.226.128\/25", + "version":4636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.227.0", + "prefixLen":25, + "network":"192.207.227.0\/25", + "version":4635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.227.128", + "prefixLen":25, + "network":"192.207.227.128\/25", + "version":4634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.240.0", + "prefixLen":25, + "network":"192.207.240.0\/25", + "version":4633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.240.128", + "prefixLen":25, + "network":"192.207.240.128\/25", + "version":4632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.241.0", + "prefixLen":25, + "network":"192.207.241.0\/25", + "version":4631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.241.128", + "prefixLen":25, + "network":"192.207.241.128\/25", + "version":4630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.242.0", + "prefixLen":25, + "network":"192.207.242.0\/25", + "version":4629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.242.128", + "prefixLen":25, + "network":"192.207.242.128\/25", + "version":4628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.243.0", + "prefixLen":25, + "network":"192.207.243.0\/25", + "version":4627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.207.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.207.243.128", + "prefixLen":25, + "network":"192.207.243.128\/25", + "version":4626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64639 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.0.0", + "prefixLen":25, + "network":"192.208.0.0\/25", + "version":4753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.0.128", + "prefixLen":25, + "network":"192.208.0.128\/25", + "version":4880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.1.0", + "prefixLen":25, + "network":"192.208.1.0\/25", + "version":4879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.1.128", + "prefixLen":25, + "network":"192.208.1.128\/25", + "version":4878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.2.0", + "prefixLen":25, + "network":"192.208.2.0\/25", + "version":4877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.2.128", + "prefixLen":25, + "network":"192.208.2.128\/25", + "version":4876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.3.0", + "prefixLen":25, + "network":"192.208.3.0\/25", + "version":4875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.3.128", + "prefixLen":25, + "network":"192.208.3.128\/25", + "version":4874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.16.0", + "prefixLen":25, + "network":"192.208.16.0\/25", + "version":4873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.16.128", + "prefixLen":25, + "network":"192.208.16.128\/25", + "version":4872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.17.0", + "prefixLen":25, + "network":"192.208.17.0\/25", + "version":4871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.17.128", + "prefixLen":25, + "network":"192.208.17.128\/25", + "version":4870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.18.0", + "prefixLen":25, + "network":"192.208.18.0\/25", + "version":4869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.18.128", + "prefixLen":25, + "network":"192.208.18.128\/25", + "version":4868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.19.0", + "prefixLen":25, + "network":"192.208.19.0\/25", + "version":4867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.19.128", + "prefixLen":25, + "network":"192.208.19.128\/25", + "version":4866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.32.0", + "prefixLen":25, + "network":"192.208.32.0\/25", + "version":4865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.32.128", + "prefixLen":25, + "network":"192.208.32.128\/25", + "version":4864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.33.0", + "prefixLen":25, + "network":"192.208.33.0\/25", + "version":4863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.33.128", + "prefixLen":25, + "network":"192.208.33.128\/25", + "version":4862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.34.0", + "prefixLen":25, + "network":"192.208.34.0\/25", + "version":4861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.34.128", + "prefixLen":25, + "network":"192.208.34.128\/25", + "version":4860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.35.0", + "prefixLen":25, + "network":"192.208.35.0\/25", + "version":4859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.35.128", + "prefixLen":25, + "network":"192.208.35.128\/25", + "version":4858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.48.0", + "prefixLen":25, + "network":"192.208.48.0\/25", + "version":4857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.48.128", + "prefixLen":25, + "network":"192.208.48.128\/25", + "version":4856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.49.0", + "prefixLen":25, + "network":"192.208.49.0\/25", + "version":4855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.49.128", + "prefixLen":25, + "network":"192.208.49.128\/25", + "version":4854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.50.0", + "prefixLen":25, + "network":"192.208.50.0\/25", + "version":4853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.50.128", + "prefixLen":25, + "network":"192.208.50.128\/25", + "version":4852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.51.0", + "prefixLen":25, + "network":"192.208.51.0\/25", + "version":4851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.51.128", + "prefixLen":25, + "network":"192.208.51.128\/25", + "version":4850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.64.0", + "prefixLen":25, + "network":"192.208.64.0\/25", + "version":4849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.64.128", + "prefixLen":25, + "network":"192.208.64.128\/25", + "version":4848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.65.0", + "prefixLen":25, + "network":"192.208.65.0\/25", + "version":4847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.65.128", + "prefixLen":25, + "network":"192.208.65.128\/25", + "version":4846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.66.0", + "prefixLen":25, + "network":"192.208.66.0\/25", + "version":4845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.66.128", + "prefixLen":25, + "network":"192.208.66.128\/25", + "version":4844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.67.0", + "prefixLen":25, + "network":"192.208.67.0\/25", + "version":4843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.67.128", + "prefixLen":25, + "network":"192.208.67.128\/25", + "version":4842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.80.0", + "prefixLen":25, + "network":"192.208.80.0\/25", + "version":4841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.80.128", + "prefixLen":25, + "network":"192.208.80.128\/25", + "version":4840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.81.0", + "prefixLen":25, + "network":"192.208.81.0\/25", + "version":4839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.81.128", + "prefixLen":25, + "network":"192.208.81.128\/25", + "version":4838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.82.0", + "prefixLen":25, + "network":"192.208.82.0\/25", + "version":4837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.82.128", + "prefixLen":25, + "network":"192.208.82.128\/25", + "version":4836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.83.0", + "prefixLen":25, + "network":"192.208.83.0\/25", + "version":4835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.83.128", + "prefixLen":25, + "network":"192.208.83.128\/25", + "version":4834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.96.0", + "prefixLen":25, + "network":"192.208.96.0\/25", + "version":4833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.96.128", + "prefixLen":25, + "network":"192.208.96.128\/25", + "version":4832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.97.0", + "prefixLen":25, + "network":"192.208.97.0\/25", + "version":4831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.97.128", + "prefixLen":25, + "network":"192.208.97.128\/25", + "version":4830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.98.0", + "prefixLen":25, + "network":"192.208.98.0\/25", + "version":4829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.98.128", + "prefixLen":25, + "network":"192.208.98.128\/25", + "version":4828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.99.0", + "prefixLen":25, + "network":"192.208.99.0\/25", + "version":4827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.99.128", + "prefixLen":25, + "network":"192.208.99.128\/25", + "version":4826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.112.0", + "prefixLen":25, + "network":"192.208.112.0\/25", + "version":4825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.112.128", + "prefixLen":25, + "network":"192.208.112.128\/25", + "version":4824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.113.0", + "prefixLen":25, + "network":"192.208.113.0\/25", + "version":4823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.113.128", + "prefixLen":25, + "network":"192.208.113.128\/25", + "version":4822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.114.0", + "prefixLen":25, + "network":"192.208.114.0\/25", + "version":4821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.114.128", + "prefixLen":25, + "network":"192.208.114.128\/25", + "version":4820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.115.0", + "prefixLen":25, + "network":"192.208.115.0\/25", + "version":4819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.115.128", + "prefixLen":25, + "network":"192.208.115.128\/25", + "version":4818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.128.0", + "prefixLen":25, + "network":"192.208.128.0\/25", + "version":4817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.128.128", + "prefixLen":25, + "network":"192.208.128.128\/25", + "version":4816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.129.0", + "prefixLen":25, + "network":"192.208.129.0\/25", + "version":4815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.129.128", + "prefixLen":25, + "network":"192.208.129.128\/25", + "version":4814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.130.0", + "prefixLen":25, + "network":"192.208.130.0\/25", + "version":4813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.130.128", + "prefixLen":25, + "network":"192.208.130.128\/25", + "version":4812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.131.0", + "prefixLen":25, + "network":"192.208.131.0\/25", + "version":4811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.131.128", + "prefixLen":25, + "network":"192.208.131.128\/25", + "version":4810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.144.0", + "prefixLen":25, + "network":"192.208.144.0\/25", + "version":4809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.144.128", + "prefixLen":25, + "network":"192.208.144.128\/25", + "version":4808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.145.0", + "prefixLen":25, + "network":"192.208.145.0\/25", + "version":4807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.145.128", + "prefixLen":25, + "network":"192.208.145.128\/25", + "version":4806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.146.0", + "prefixLen":25, + "network":"192.208.146.0\/25", + "version":4805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.146.128", + "prefixLen":25, + "network":"192.208.146.128\/25", + "version":4804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.147.0", + "prefixLen":25, + "network":"192.208.147.0\/25", + "version":4803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.147.128", + "prefixLen":25, + "network":"192.208.147.128\/25", + "version":4802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.160.0", + "prefixLen":25, + "network":"192.208.160.0\/25", + "version":4801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.160.128", + "prefixLen":25, + "network":"192.208.160.128\/25", + "version":4800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.161.0", + "prefixLen":25, + "network":"192.208.161.0\/25", + "version":4799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.161.128", + "prefixLen":25, + "network":"192.208.161.128\/25", + "version":4798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.162.0", + "prefixLen":25, + "network":"192.208.162.0\/25", + "version":4797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.162.128", + "prefixLen":25, + "network":"192.208.162.128\/25", + "version":4796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.163.0", + "prefixLen":25, + "network":"192.208.163.0\/25", + "version":4795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.163.128", + "prefixLen":25, + "network":"192.208.163.128\/25", + "version":4794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.176.0", + "prefixLen":25, + "network":"192.208.176.0\/25", + "version":4793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.176.128", + "prefixLen":25, + "network":"192.208.176.128\/25", + "version":4792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.177.0", + "prefixLen":25, + "network":"192.208.177.0\/25", + "version":4791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.177.128", + "prefixLen":25, + "network":"192.208.177.128\/25", + "version":4790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.178.0", + "prefixLen":25, + "network":"192.208.178.0\/25", + "version":4789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.178.128", + "prefixLen":25, + "network":"192.208.178.128\/25", + "version":4788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.179.0", + "prefixLen":25, + "network":"192.208.179.0\/25", + "version":4787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.179.128", + "prefixLen":25, + "network":"192.208.179.128\/25", + "version":4786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.192.0", + "prefixLen":25, + "network":"192.208.192.0\/25", + "version":4785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.192.128", + "prefixLen":25, + "network":"192.208.192.128\/25", + "version":4784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.193.0", + "prefixLen":25, + "network":"192.208.193.0\/25", + "version":4783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.193.128", + "prefixLen":25, + "network":"192.208.193.128\/25", + "version":4782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.194.0", + "prefixLen":25, + "network":"192.208.194.0\/25", + "version":4781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.194.128", + "prefixLen":25, + "network":"192.208.194.128\/25", + "version":4780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.195.0", + "prefixLen":25, + "network":"192.208.195.0\/25", + "version":4779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.195.128", + "prefixLen":25, + "network":"192.208.195.128\/25", + "version":4778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.208.0", + "prefixLen":25, + "network":"192.208.208.0\/25", + "version":4777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.208.128", + "prefixLen":25, + "network":"192.208.208.128\/25", + "version":4776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.209.0", + "prefixLen":25, + "network":"192.208.209.0\/25", + "version":4775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.209.128", + "prefixLen":25, + "network":"192.208.209.128\/25", + "version":4774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.210.0", + "prefixLen":25, + "network":"192.208.210.0\/25", + "version":4773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.210.128", + "prefixLen":25, + "network":"192.208.210.128\/25", + "version":4772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.211.0", + "prefixLen":25, + "network":"192.208.211.0\/25", + "version":4771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.211.128", + "prefixLen":25, + "network":"192.208.211.128\/25", + "version":4770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.224.0", + "prefixLen":25, + "network":"192.208.224.0\/25", + "version":4769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.224.128", + "prefixLen":25, + "network":"192.208.224.128\/25", + "version":4768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.225.0", + "prefixLen":25, + "network":"192.208.225.0\/25", + "version":4767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.225.128", + "prefixLen":25, + "network":"192.208.225.128\/25", + "version":4766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.226.0", + "prefixLen":25, + "network":"192.208.226.0\/25", + "version":4765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.226.128", + "prefixLen":25, + "network":"192.208.226.128\/25", + "version":4764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.227.0", + "prefixLen":25, + "network":"192.208.227.0\/25", + "version":4763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.227.128", + "prefixLen":25, + "network":"192.208.227.128\/25", + "version":4762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.240.0", + "prefixLen":25, + "network":"192.208.240.0\/25", + "version":4761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.240.128", + "prefixLen":25, + "network":"192.208.240.128\/25", + "version":4760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.241.0", + "prefixLen":25, + "network":"192.208.241.0\/25", + "version":4759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.241.128", + "prefixLen":25, + "network":"192.208.241.128\/25", + "version":4758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.242.0", + "prefixLen":25, + "network":"192.208.242.0\/25", + "version":4757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.242.128", + "prefixLen":25, + "network":"192.208.242.128\/25", + "version":4756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.243.0", + "prefixLen":25, + "network":"192.208.243.0\/25", + "version":4755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.208.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.208.243.128", + "prefixLen":25, + "network":"192.208.243.128\/25", + "version":4754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64640 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.0.0", + "prefixLen":25, + "network":"192.209.0.0\/25", + "version":4881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.0.128", + "prefixLen":25, + "network":"192.209.0.128\/25", + "version":5008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.1.0", + "prefixLen":25, + "network":"192.209.1.0\/25", + "version":5007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.1.128", + "prefixLen":25, + "network":"192.209.1.128\/25", + "version":5006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.2.0", + "prefixLen":25, + "network":"192.209.2.0\/25", + "version":5005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.2.128", + "prefixLen":25, + "network":"192.209.2.128\/25", + "version":5004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.3.0", + "prefixLen":25, + "network":"192.209.3.0\/25", + "version":5003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.3.128", + "prefixLen":25, + "network":"192.209.3.128\/25", + "version":5002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.16.0", + "prefixLen":25, + "network":"192.209.16.0\/25", + "version":5001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.16.128", + "prefixLen":25, + "network":"192.209.16.128\/25", + "version":5000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.17.0", + "prefixLen":25, + "network":"192.209.17.0\/25", + "version":4999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.17.128", + "prefixLen":25, + "network":"192.209.17.128\/25", + "version":4998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.18.0", + "prefixLen":25, + "network":"192.209.18.0\/25", + "version":4997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.18.128", + "prefixLen":25, + "network":"192.209.18.128\/25", + "version":4996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.19.0", + "prefixLen":25, + "network":"192.209.19.0\/25", + "version":4995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.19.128", + "prefixLen":25, + "network":"192.209.19.128\/25", + "version":4994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.32.0", + "prefixLen":25, + "network":"192.209.32.0\/25", + "version":4993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.32.128", + "prefixLen":25, + "network":"192.209.32.128\/25", + "version":4992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.33.0", + "prefixLen":25, + "network":"192.209.33.0\/25", + "version":4991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.33.128", + "prefixLen":25, + "network":"192.209.33.128\/25", + "version":4990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.34.0", + "prefixLen":25, + "network":"192.209.34.0\/25", + "version":4989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.34.128", + "prefixLen":25, + "network":"192.209.34.128\/25", + "version":4988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.35.0", + "prefixLen":25, + "network":"192.209.35.0\/25", + "version":4987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.35.128", + "prefixLen":25, + "network":"192.209.35.128\/25", + "version":4986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.48.0", + "prefixLen":25, + "network":"192.209.48.0\/25", + "version":4985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.48.128", + "prefixLen":25, + "network":"192.209.48.128\/25", + "version":4984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.49.0", + "prefixLen":25, + "network":"192.209.49.0\/25", + "version":4983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.49.128", + "prefixLen":25, + "network":"192.209.49.128\/25", + "version":4982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.50.0", + "prefixLen":25, + "network":"192.209.50.0\/25", + "version":4981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.50.128", + "prefixLen":25, + "network":"192.209.50.128\/25", + "version":4980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.51.0", + "prefixLen":25, + "network":"192.209.51.0\/25", + "version":4979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.51.128", + "prefixLen":25, + "network":"192.209.51.128\/25", + "version":4978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.64.0", + "prefixLen":25, + "network":"192.209.64.0\/25", + "version":4977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.64.128", + "prefixLen":25, + "network":"192.209.64.128\/25", + "version":4976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.65.0", + "prefixLen":25, + "network":"192.209.65.0\/25", + "version":4975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.65.128", + "prefixLen":25, + "network":"192.209.65.128\/25", + "version":4974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.66.0", + "prefixLen":25, + "network":"192.209.66.0\/25", + "version":4973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.66.128", + "prefixLen":25, + "network":"192.209.66.128\/25", + "version":4972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.67.0", + "prefixLen":25, + "network":"192.209.67.0\/25", + "version":4971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.67.128", + "prefixLen":25, + "network":"192.209.67.128\/25", + "version":4970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.80.0", + "prefixLen":25, + "network":"192.209.80.0\/25", + "version":4969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.80.128", + "prefixLen":25, + "network":"192.209.80.128\/25", + "version":4968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.81.0", + "prefixLen":25, + "network":"192.209.81.0\/25", + "version":4967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.81.128", + "prefixLen":25, + "network":"192.209.81.128\/25", + "version":4966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.82.0", + "prefixLen":25, + "network":"192.209.82.0\/25", + "version":4965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.82.128", + "prefixLen":25, + "network":"192.209.82.128\/25", + "version":4964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.83.0", + "prefixLen":25, + "network":"192.209.83.0\/25", + "version":4963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.83.128", + "prefixLen":25, + "network":"192.209.83.128\/25", + "version":4962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.96.0", + "prefixLen":25, + "network":"192.209.96.0\/25", + "version":4961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.96.128", + "prefixLen":25, + "network":"192.209.96.128\/25", + "version":4960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.97.0", + "prefixLen":25, + "network":"192.209.97.0\/25", + "version":4959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.97.128", + "prefixLen":25, + "network":"192.209.97.128\/25", + "version":4958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.98.0", + "prefixLen":25, + "network":"192.209.98.0\/25", + "version":4957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.98.128", + "prefixLen":25, + "network":"192.209.98.128\/25", + "version":4956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.99.0", + "prefixLen":25, + "network":"192.209.99.0\/25", + "version":4955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.99.128", + "prefixLen":25, + "network":"192.209.99.128\/25", + "version":4954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.112.0", + "prefixLen":25, + "network":"192.209.112.0\/25", + "version":4953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.112.128", + "prefixLen":25, + "network":"192.209.112.128\/25", + "version":4952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.113.0", + "prefixLen":25, + "network":"192.209.113.0\/25", + "version":4951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.113.128", + "prefixLen":25, + "network":"192.209.113.128\/25", + "version":4950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.114.0", + "prefixLen":25, + "network":"192.209.114.0\/25", + "version":4949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.114.128", + "prefixLen":25, + "network":"192.209.114.128\/25", + "version":4948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.115.0", + "prefixLen":25, + "network":"192.209.115.0\/25", + "version":4947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.115.128", + "prefixLen":25, + "network":"192.209.115.128\/25", + "version":4946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.128.0", + "prefixLen":25, + "network":"192.209.128.0\/25", + "version":4945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.128.128", + "prefixLen":25, + "network":"192.209.128.128\/25", + "version":4944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.129.0", + "prefixLen":25, + "network":"192.209.129.0\/25", + "version":4943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.129.128", + "prefixLen":25, + "network":"192.209.129.128\/25", + "version":4942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.130.0", + "prefixLen":25, + "network":"192.209.130.0\/25", + "version":4941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.130.128", + "prefixLen":25, + "network":"192.209.130.128\/25", + "version":4940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.131.0", + "prefixLen":25, + "network":"192.209.131.0\/25", + "version":4939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.131.128", + "prefixLen":25, + "network":"192.209.131.128\/25", + "version":4938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.144.0", + "prefixLen":25, + "network":"192.209.144.0\/25", + "version":4937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.144.128", + "prefixLen":25, + "network":"192.209.144.128\/25", + "version":4936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.145.0", + "prefixLen":25, + "network":"192.209.145.0\/25", + "version":4935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.145.128", + "prefixLen":25, + "network":"192.209.145.128\/25", + "version":4934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.146.0", + "prefixLen":25, + "network":"192.209.146.0\/25", + "version":4933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.146.128", + "prefixLen":25, + "network":"192.209.146.128\/25", + "version":4932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.147.0", + "prefixLen":25, + "network":"192.209.147.0\/25", + "version":4931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.147.128", + "prefixLen":25, + "network":"192.209.147.128\/25", + "version":4930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.160.0", + "prefixLen":25, + "network":"192.209.160.0\/25", + "version":4929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.160.128", + "prefixLen":25, + "network":"192.209.160.128\/25", + "version":4928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.161.0", + "prefixLen":25, + "network":"192.209.161.0\/25", + "version":4927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.161.128", + "prefixLen":25, + "network":"192.209.161.128\/25", + "version":4926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.162.0", + "prefixLen":25, + "network":"192.209.162.0\/25", + "version":4925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.162.128", + "prefixLen":25, + "network":"192.209.162.128\/25", + "version":4924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.163.0", + "prefixLen":25, + "network":"192.209.163.0\/25", + "version":4923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.163.128", + "prefixLen":25, + "network":"192.209.163.128\/25", + "version":4922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.176.0", + "prefixLen":25, + "network":"192.209.176.0\/25", + "version":4921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.176.128", + "prefixLen":25, + "network":"192.209.176.128\/25", + "version":4920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.177.0", + "prefixLen":25, + "network":"192.209.177.0\/25", + "version":4919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.177.128", + "prefixLen":25, + "network":"192.209.177.128\/25", + "version":4918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.178.0", + "prefixLen":25, + "network":"192.209.178.0\/25", + "version":4917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.178.128", + "prefixLen":25, + "network":"192.209.178.128\/25", + "version":4916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.179.0", + "prefixLen":25, + "network":"192.209.179.0\/25", + "version":4915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.179.128", + "prefixLen":25, + "network":"192.209.179.128\/25", + "version":4914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.192.0", + "prefixLen":25, + "network":"192.209.192.0\/25", + "version":4913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.192.128", + "prefixLen":25, + "network":"192.209.192.128\/25", + "version":4912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.193.0", + "prefixLen":25, + "network":"192.209.193.0\/25", + "version":4911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.193.128", + "prefixLen":25, + "network":"192.209.193.128\/25", + "version":4910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.194.0", + "prefixLen":25, + "network":"192.209.194.0\/25", + "version":4909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.194.128", + "prefixLen":25, + "network":"192.209.194.128\/25", + "version":4908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.195.0", + "prefixLen":25, + "network":"192.209.195.0\/25", + "version":4907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.195.128", + "prefixLen":25, + "network":"192.209.195.128\/25", + "version":4906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.208.0", + "prefixLen":25, + "network":"192.209.208.0\/25", + "version":4905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.208.128", + "prefixLen":25, + "network":"192.209.208.128\/25", + "version":4904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.209.0", + "prefixLen":25, + "network":"192.209.209.0\/25", + "version":4903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.209.128", + "prefixLen":25, + "network":"192.209.209.128\/25", + "version":4902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.210.0", + "prefixLen":25, + "network":"192.209.210.0\/25", + "version":4901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.210.128", + "prefixLen":25, + "network":"192.209.210.128\/25", + "version":4900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.211.0", + "prefixLen":25, + "network":"192.209.211.0\/25", + "version":4899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.211.128", + "prefixLen":25, + "network":"192.209.211.128\/25", + "version":4898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.224.0", + "prefixLen":25, + "network":"192.209.224.0\/25", + "version":4897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.224.128", + "prefixLen":25, + "network":"192.209.224.128\/25", + "version":4896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.225.0", + "prefixLen":25, + "network":"192.209.225.0\/25", + "version":4895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.225.128", + "prefixLen":25, + "network":"192.209.225.128\/25", + "version":4894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.226.0", + "prefixLen":25, + "network":"192.209.226.0\/25", + "version":4893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.226.128", + "prefixLen":25, + "network":"192.209.226.128\/25", + "version":4892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.227.0", + "prefixLen":25, + "network":"192.209.227.0\/25", + "version":4891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.227.128", + "prefixLen":25, + "network":"192.209.227.128\/25", + "version":4890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.240.0", + "prefixLen":25, + "network":"192.209.240.0\/25", + "version":4889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.240.128", + "prefixLen":25, + "network":"192.209.240.128\/25", + "version":4888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.241.0", + "prefixLen":25, + "network":"192.209.241.0\/25", + "version":4887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.241.128", + "prefixLen":25, + "network":"192.209.241.128\/25", + "version":4886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.242.0", + "prefixLen":25, + "network":"192.209.242.0\/25", + "version":4885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.242.128", + "prefixLen":25, + "network":"192.209.242.128\/25", + "version":4884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.243.0", + "prefixLen":25, + "network":"192.209.243.0\/25", + "version":4883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.209.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.209.243.128", + "prefixLen":25, + "network":"192.209.243.128\/25", + "version":4882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64641 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.0.0", + "prefixLen":25, + "network":"192.210.0.0\/25", + "version":5009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.0.128", + "prefixLen":25, + "network":"192.210.0.128\/25", + "version":5136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.1.0", + "prefixLen":25, + "network":"192.210.1.0\/25", + "version":5135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.1.128", + "prefixLen":25, + "network":"192.210.1.128\/25", + "version":5134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.2.0", + "prefixLen":25, + "network":"192.210.2.0\/25", + "version":5133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.2.128", + "prefixLen":25, + "network":"192.210.2.128\/25", + "version":5132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.3.0", + "prefixLen":25, + "network":"192.210.3.0\/25", + "version":5131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.3.128", + "prefixLen":25, + "network":"192.210.3.128\/25", + "version":5130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.16.0", + "prefixLen":25, + "network":"192.210.16.0\/25", + "version":5129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.16.128", + "prefixLen":25, + "network":"192.210.16.128\/25", + "version":5128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.17.0", + "prefixLen":25, + "network":"192.210.17.0\/25", + "version":5127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.17.128", + "prefixLen":25, + "network":"192.210.17.128\/25", + "version":5126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.18.0", + "prefixLen":25, + "network":"192.210.18.0\/25", + "version":5125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.18.128", + "prefixLen":25, + "network":"192.210.18.128\/25", + "version":5124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.19.0", + "prefixLen":25, + "network":"192.210.19.0\/25", + "version":5123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.19.128", + "prefixLen":25, + "network":"192.210.19.128\/25", + "version":5122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.32.0", + "prefixLen":25, + "network":"192.210.32.0\/25", + "version":5121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.32.128", + "prefixLen":25, + "network":"192.210.32.128\/25", + "version":5120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.33.0", + "prefixLen":25, + "network":"192.210.33.0\/25", + "version":5119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.33.128", + "prefixLen":25, + "network":"192.210.33.128\/25", + "version":5118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.34.0", + "prefixLen":25, + "network":"192.210.34.0\/25", + "version":5117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.34.128", + "prefixLen":25, + "network":"192.210.34.128\/25", + "version":5116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.35.0", + "prefixLen":25, + "network":"192.210.35.0\/25", + "version":5115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.35.128", + "prefixLen":25, + "network":"192.210.35.128\/25", + "version":5114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.48.0", + "prefixLen":25, + "network":"192.210.48.0\/25", + "version":5113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.48.128", + "prefixLen":25, + "network":"192.210.48.128\/25", + "version":5112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.49.0", + "prefixLen":25, + "network":"192.210.49.0\/25", + "version":5111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.49.128", + "prefixLen":25, + "network":"192.210.49.128\/25", + "version":5110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.50.0", + "prefixLen":25, + "network":"192.210.50.0\/25", + "version":5109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.50.128", + "prefixLen":25, + "network":"192.210.50.128\/25", + "version":5108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.51.0", + "prefixLen":25, + "network":"192.210.51.0\/25", + "version":5107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.51.128", + "prefixLen":25, + "network":"192.210.51.128\/25", + "version":5106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.64.0", + "prefixLen":25, + "network":"192.210.64.0\/25", + "version":5105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.64.128", + "prefixLen":25, + "network":"192.210.64.128\/25", + "version":5104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.65.0", + "prefixLen":25, + "network":"192.210.65.0\/25", + "version":5103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.65.128", + "prefixLen":25, + "network":"192.210.65.128\/25", + "version":5102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.66.0", + "prefixLen":25, + "network":"192.210.66.0\/25", + "version":5101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.66.128", + "prefixLen":25, + "network":"192.210.66.128\/25", + "version":5100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.67.0", + "prefixLen":25, + "network":"192.210.67.0\/25", + "version":5099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.67.128", + "prefixLen":25, + "network":"192.210.67.128\/25", + "version":5098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.80.0", + "prefixLen":25, + "network":"192.210.80.0\/25", + "version":5097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.80.128", + "prefixLen":25, + "network":"192.210.80.128\/25", + "version":5096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.81.0", + "prefixLen":25, + "network":"192.210.81.0\/25", + "version":5095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.81.128", + "prefixLen":25, + "network":"192.210.81.128\/25", + "version":5094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.82.0", + "prefixLen":25, + "network":"192.210.82.0\/25", + "version":5093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.82.128", + "prefixLen":25, + "network":"192.210.82.128\/25", + "version":5092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.83.0", + "prefixLen":25, + "network":"192.210.83.0\/25", + "version":5091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.83.128", + "prefixLen":25, + "network":"192.210.83.128\/25", + "version":5090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.96.0", + "prefixLen":25, + "network":"192.210.96.0\/25", + "version":5089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.96.128", + "prefixLen":25, + "network":"192.210.96.128\/25", + "version":5088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.97.0", + "prefixLen":25, + "network":"192.210.97.0\/25", + "version":5087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.97.128", + "prefixLen":25, + "network":"192.210.97.128\/25", + "version":5086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.98.0", + "prefixLen":25, + "network":"192.210.98.0\/25", + "version":5085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.98.128", + "prefixLen":25, + "network":"192.210.98.128\/25", + "version":5084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.99.0", + "prefixLen":25, + "network":"192.210.99.0\/25", + "version":5083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.99.128", + "prefixLen":25, + "network":"192.210.99.128\/25", + "version":5082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.112.0", + "prefixLen":25, + "network":"192.210.112.0\/25", + "version":5081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.112.128", + "prefixLen":25, + "network":"192.210.112.128\/25", + "version":5080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.113.0", + "prefixLen":25, + "network":"192.210.113.0\/25", + "version":5079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.113.128", + "prefixLen":25, + "network":"192.210.113.128\/25", + "version":5078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.114.0", + "prefixLen":25, + "network":"192.210.114.0\/25", + "version":5077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.114.128", + "prefixLen":25, + "network":"192.210.114.128\/25", + "version":5076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.115.0", + "prefixLen":25, + "network":"192.210.115.0\/25", + "version":5075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.115.128", + "prefixLen":25, + "network":"192.210.115.128\/25", + "version":5074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.128.0", + "prefixLen":25, + "network":"192.210.128.0\/25", + "version":5073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.128.128", + "prefixLen":25, + "network":"192.210.128.128\/25", + "version":5072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.129.0", + "prefixLen":25, + "network":"192.210.129.0\/25", + "version":5071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.129.128", + "prefixLen":25, + "network":"192.210.129.128\/25", + "version":5070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.130.0", + "prefixLen":25, + "network":"192.210.130.0\/25", + "version":5069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.130.128", + "prefixLen":25, + "network":"192.210.130.128\/25", + "version":5068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.131.0", + "prefixLen":25, + "network":"192.210.131.0\/25", + "version":5067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.131.128", + "prefixLen":25, + "network":"192.210.131.128\/25", + "version":5066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.144.0", + "prefixLen":25, + "network":"192.210.144.0\/25", + "version":5065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.144.128", + "prefixLen":25, + "network":"192.210.144.128\/25", + "version":5064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.145.0", + "prefixLen":25, + "network":"192.210.145.0\/25", + "version":5063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.145.128", + "prefixLen":25, + "network":"192.210.145.128\/25", + "version":5062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.146.0", + "prefixLen":25, + "network":"192.210.146.0\/25", + "version":5061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.146.128", + "prefixLen":25, + "network":"192.210.146.128\/25", + "version":5060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.147.0", + "prefixLen":25, + "network":"192.210.147.0\/25", + "version":5059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.147.128", + "prefixLen":25, + "network":"192.210.147.128\/25", + "version":5058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.160.0", + "prefixLen":25, + "network":"192.210.160.0\/25", + "version":5057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.160.128", + "prefixLen":25, + "network":"192.210.160.128\/25", + "version":5056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.161.0", + "prefixLen":25, + "network":"192.210.161.0\/25", + "version":5055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.161.128", + "prefixLen":25, + "network":"192.210.161.128\/25", + "version":5054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.162.0", + "prefixLen":25, + "network":"192.210.162.0\/25", + "version":5053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.162.128", + "prefixLen":25, + "network":"192.210.162.128\/25", + "version":5052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.163.0", + "prefixLen":25, + "network":"192.210.163.0\/25", + "version":5051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.163.128", + "prefixLen":25, + "network":"192.210.163.128\/25", + "version":5050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.176.0", + "prefixLen":25, + "network":"192.210.176.0\/25", + "version":5049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.176.128", + "prefixLen":25, + "network":"192.210.176.128\/25", + "version":5048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.177.0", + "prefixLen":25, + "network":"192.210.177.0\/25", + "version":5047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.177.128", + "prefixLen":25, + "network":"192.210.177.128\/25", + "version":5046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.178.0", + "prefixLen":25, + "network":"192.210.178.0\/25", + "version":5045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.178.128", + "prefixLen":25, + "network":"192.210.178.128\/25", + "version":5044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.179.0", + "prefixLen":25, + "network":"192.210.179.0\/25", + "version":5043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.179.128", + "prefixLen":25, + "network":"192.210.179.128\/25", + "version":5042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.192.0", + "prefixLen":25, + "network":"192.210.192.0\/25", + "version":5041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.192.128", + "prefixLen":25, + "network":"192.210.192.128\/25", + "version":5040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.193.0", + "prefixLen":25, + "network":"192.210.193.0\/25", + "version":5039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.193.128", + "prefixLen":25, + "network":"192.210.193.128\/25", + "version":5038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.194.0", + "prefixLen":25, + "network":"192.210.194.0\/25", + "version":5037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.194.128", + "prefixLen":25, + "network":"192.210.194.128\/25", + "version":5036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.195.0", + "prefixLen":25, + "network":"192.210.195.0\/25", + "version":5035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.195.128", + "prefixLen":25, + "network":"192.210.195.128\/25", + "version":5034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.208.0", + "prefixLen":25, + "network":"192.210.208.0\/25", + "version":5033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.208.128", + "prefixLen":25, + "network":"192.210.208.128\/25", + "version":5032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.209.0", + "prefixLen":25, + "network":"192.210.209.0\/25", + "version":5031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.209.128", + "prefixLen":25, + "network":"192.210.209.128\/25", + "version":5030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.210.0", + "prefixLen":25, + "network":"192.210.210.0\/25", + "version":5029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.210.128", + "prefixLen":25, + "network":"192.210.210.128\/25", + "version":5028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.211.0", + "prefixLen":25, + "network":"192.210.211.0\/25", + "version":5027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.211.128", + "prefixLen":25, + "network":"192.210.211.128\/25", + "version":5026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.224.0", + "prefixLen":25, + "network":"192.210.224.0\/25", + "version":5025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.224.128", + "prefixLen":25, + "network":"192.210.224.128\/25", + "version":5024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.225.0", + "prefixLen":25, + "network":"192.210.225.0\/25", + "version":5023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.225.128", + "prefixLen":25, + "network":"192.210.225.128\/25", + "version":5022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.226.0", + "prefixLen":25, + "network":"192.210.226.0\/25", + "version":5021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.226.128", + "prefixLen":25, + "network":"192.210.226.128\/25", + "version":5020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.227.0", + "prefixLen":25, + "network":"192.210.227.0\/25", + "version":5019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.227.128", + "prefixLen":25, + "network":"192.210.227.128\/25", + "version":5018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.240.0", + "prefixLen":25, + "network":"192.210.240.0\/25", + "version":5017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.240.128", + "prefixLen":25, + "network":"192.210.240.128\/25", + "version":5016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.241.0", + "prefixLen":25, + "network":"192.210.241.0\/25", + "version":5015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.241.128", + "prefixLen":25, + "network":"192.210.241.128\/25", + "version":5014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.242.0", + "prefixLen":25, + "network":"192.210.242.0\/25", + "version":5013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.242.128", + "prefixLen":25, + "network":"192.210.242.128\/25", + "version":5012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.243.0", + "prefixLen":25, + "network":"192.210.243.0\/25", + "version":5011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.210.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.210.243.128", + "prefixLen":25, + "network":"192.210.243.128\/25", + "version":5010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64642 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.0.0", + "prefixLen":25, + "network":"192.211.0.0\/25", + "version":5137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.0.128", + "prefixLen":25, + "network":"192.211.0.128\/25", + "version":5264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.1.0", + "prefixLen":25, + "network":"192.211.1.0\/25", + "version":5263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.1.128", + "prefixLen":25, + "network":"192.211.1.128\/25", + "version":5262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.2.0", + "prefixLen":25, + "network":"192.211.2.0\/25", + "version":5261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.2.128", + "prefixLen":25, + "network":"192.211.2.128\/25", + "version":5260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.3.0", + "prefixLen":25, + "network":"192.211.3.0\/25", + "version":5259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.3.128", + "prefixLen":25, + "network":"192.211.3.128\/25", + "version":5258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.16.0", + "prefixLen":25, + "network":"192.211.16.0\/25", + "version":5257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.16.128", + "prefixLen":25, + "network":"192.211.16.128\/25", + "version":5256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.17.0", + "prefixLen":25, + "network":"192.211.17.0\/25", + "version":5255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.17.128", + "prefixLen":25, + "network":"192.211.17.128\/25", + "version":5254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.18.0", + "prefixLen":25, + "network":"192.211.18.0\/25", + "version":5253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.18.128", + "prefixLen":25, + "network":"192.211.18.128\/25", + "version":5252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.19.0", + "prefixLen":25, + "network":"192.211.19.0\/25", + "version":5251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.19.128", + "prefixLen":25, + "network":"192.211.19.128\/25", + "version":5250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.32.0", + "prefixLen":25, + "network":"192.211.32.0\/25", + "version":5249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.32.128", + "prefixLen":25, + "network":"192.211.32.128\/25", + "version":5248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.33.0", + "prefixLen":25, + "network":"192.211.33.0\/25", + "version":5247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.33.128", + "prefixLen":25, + "network":"192.211.33.128\/25", + "version":5246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.34.0", + "prefixLen":25, + "network":"192.211.34.0\/25", + "version":5245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.34.128", + "prefixLen":25, + "network":"192.211.34.128\/25", + "version":5244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.35.0", + "prefixLen":25, + "network":"192.211.35.0\/25", + "version":5243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.35.128", + "prefixLen":25, + "network":"192.211.35.128\/25", + "version":5242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.48.0", + "prefixLen":25, + "network":"192.211.48.0\/25", + "version":5241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.48.128", + "prefixLen":25, + "network":"192.211.48.128\/25", + "version":5240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.49.0", + "prefixLen":25, + "network":"192.211.49.0\/25", + "version":5239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.49.128", + "prefixLen":25, + "network":"192.211.49.128\/25", + "version":5238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.50.0", + "prefixLen":25, + "network":"192.211.50.0\/25", + "version":5237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.50.128", + "prefixLen":25, + "network":"192.211.50.128\/25", + "version":5236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.51.0", + "prefixLen":25, + "network":"192.211.51.0\/25", + "version":5235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.51.128", + "prefixLen":25, + "network":"192.211.51.128\/25", + "version":5234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.64.0", + "prefixLen":25, + "network":"192.211.64.0\/25", + "version":5233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.64.128", + "prefixLen":25, + "network":"192.211.64.128\/25", + "version":5232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.65.0", + "prefixLen":25, + "network":"192.211.65.0\/25", + "version":5231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.65.128", + "prefixLen":25, + "network":"192.211.65.128\/25", + "version":5230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.66.0", + "prefixLen":25, + "network":"192.211.66.0\/25", + "version":5229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.66.128", + "prefixLen":25, + "network":"192.211.66.128\/25", + "version":5228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.67.0", + "prefixLen":25, + "network":"192.211.67.0\/25", + "version":5227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.67.128", + "prefixLen":25, + "network":"192.211.67.128\/25", + "version":5226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.80.0", + "prefixLen":25, + "network":"192.211.80.0\/25", + "version":5225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.80.128", + "prefixLen":25, + "network":"192.211.80.128\/25", + "version":5224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.81.0", + "prefixLen":25, + "network":"192.211.81.0\/25", + "version":5223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.81.128", + "prefixLen":25, + "network":"192.211.81.128\/25", + "version":5222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.82.0", + "prefixLen":25, + "network":"192.211.82.0\/25", + "version":5221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.82.128", + "prefixLen":25, + "network":"192.211.82.128\/25", + "version":5220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.83.0", + "prefixLen":25, + "network":"192.211.83.0\/25", + "version":5219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.83.128", + "prefixLen":25, + "network":"192.211.83.128\/25", + "version":5218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.96.0", + "prefixLen":25, + "network":"192.211.96.0\/25", + "version":5217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.96.128", + "prefixLen":25, + "network":"192.211.96.128\/25", + "version":5216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.97.0", + "prefixLen":25, + "network":"192.211.97.0\/25", + "version":5215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.97.128", + "prefixLen":25, + "network":"192.211.97.128\/25", + "version":5214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.98.0", + "prefixLen":25, + "network":"192.211.98.0\/25", + "version":5213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.98.128", + "prefixLen":25, + "network":"192.211.98.128\/25", + "version":5212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.99.0", + "prefixLen":25, + "network":"192.211.99.0\/25", + "version":5211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.99.128", + "prefixLen":25, + "network":"192.211.99.128\/25", + "version":5210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.112.0", + "prefixLen":25, + "network":"192.211.112.0\/25", + "version":5209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.112.128", + "prefixLen":25, + "network":"192.211.112.128\/25", + "version":5208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.113.0", + "prefixLen":25, + "network":"192.211.113.0\/25", + "version":5207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.113.128", + "prefixLen":25, + "network":"192.211.113.128\/25", + "version":5206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.114.0", + "prefixLen":25, + "network":"192.211.114.0\/25", + "version":5205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.114.128", + "prefixLen":25, + "network":"192.211.114.128\/25", + "version":5204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.115.0", + "prefixLen":25, + "network":"192.211.115.0\/25", + "version":5203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.115.128", + "prefixLen":25, + "network":"192.211.115.128\/25", + "version":5202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.128.0", + "prefixLen":25, + "network":"192.211.128.0\/25", + "version":5201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.128.128", + "prefixLen":25, + "network":"192.211.128.128\/25", + "version":5200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.129.0", + "prefixLen":25, + "network":"192.211.129.0\/25", + "version":5199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.129.128", + "prefixLen":25, + "network":"192.211.129.128\/25", + "version":5198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.130.0", + "prefixLen":25, + "network":"192.211.130.0\/25", + "version":5197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.130.128", + "prefixLen":25, + "network":"192.211.130.128\/25", + "version":5196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.131.0", + "prefixLen":25, + "network":"192.211.131.0\/25", + "version":5195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.131.128", + "prefixLen":25, + "network":"192.211.131.128\/25", + "version":5194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.144.0", + "prefixLen":25, + "network":"192.211.144.0\/25", + "version":5193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.144.128", + "prefixLen":25, + "network":"192.211.144.128\/25", + "version":5192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.145.0", + "prefixLen":25, + "network":"192.211.145.0\/25", + "version":5191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.145.128", + "prefixLen":25, + "network":"192.211.145.128\/25", + "version":5190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.146.0", + "prefixLen":25, + "network":"192.211.146.0\/25", + "version":5189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.146.128", + "prefixLen":25, + "network":"192.211.146.128\/25", + "version":5188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.147.0", + "prefixLen":25, + "network":"192.211.147.0\/25", + "version":5187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.147.128", + "prefixLen":25, + "network":"192.211.147.128\/25", + "version":5186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.160.0", + "prefixLen":25, + "network":"192.211.160.0\/25", + "version":5185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.160.128", + "prefixLen":25, + "network":"192.211.160.128\/25", + "version":5184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.161.0", + "prefixLen":25, + "network":"192.211.161.0\/25", + "version":5183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.161.128", + "prefixLen":25, + "network":"192.211.161.128\/25", + "version":5182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.162.0", + "prefixLen":25, + "network":"192.211.162.0\/25", + "version":5181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.162.128", + "prefixLen":25, + "network":"192.211.162.128\/25", + "version":5180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.163.0", + "prefixLen":25, + "network":"192.211.163.0\/25", + "version":5179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.163.128", + "prefixLen":25, + "network":"192.211.163.128\/25", + "version":5178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.176.0", + "prefixLen":25, + "network":"192.211.176.0\/25", + "version":5177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.176.128", + "prefixLen":25, + "network":"192.211.176.128\/25", + "version":5176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.177.0", + "prefixLen":25, + "network":"192.211.177.0\/25", + "version":5175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.177.128", + "prefixLen":25, + "network":"192.211.177.128\/25", + "version":5174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.178.0", + "prefixLen":25, + "network":"192.211.178.0\/25", + "version":5173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.178.128", + "prefixLen":25, + "network":"192.211.178.128\/25", + "version":5172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.179.0", + "prefixLen":25, + "network":"192.211.179.0\/25", + "version":5171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.179.128", + "prefixLen":25, + "network":"192.211.179.128\/25", + "version":5170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.192.0", + "prefixLen":25, + "network":"192.211.192.0\/25", + "version":5169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.192.128", + "prefixLen":25, + "network":"192.211.192.128\/25", + "version":5168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.193.0", + "prefixLen":25, + "network":"192.211.193.0\/25", + "version":5167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.193.128", + "prefixLen":25, + "network":"192.211.193.128\/25", + "version":5166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.194.0", + "prefixLen":25, + "network":"192.211.194.0\/25", + "version":5165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.194.128", + "prefixLen":25, + "network":"192.211.194.128\/25", + "version":5164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.195.0", + "prefixLen":25, + "network":"192.211.195.0\/25", + "version":5163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.195.128", + "prefixLen":25, + "network":"192.211.195.128\/25", + "version":5162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.208.0", + "prefixLen":25, + "network":"192.211.208.0\/25", + "version":5161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.208.128", + "prefixLen":25, + "network":"192.211.208.128\/25", + "version":5160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.209.0", + "prefixLen":25, + "network":"192.211.209.0\/25", + "version":5159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.209.128", + "prefixLen":25, + "network":"192.211.209.128\/25", + "version":5158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.210.0", + "prefixLen":25, + "network":"192.211.210.0\/25", + "version":5157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.210.128", + "prefixLen":25, + "network":"192.211.210.128\/25", + "version":5156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.211.0", + "prefixLen":25, + "network":"192.211.211.0\/25", + "version":5155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.211.128", + "prefixLen":25, + "network":"192.211.211.128\/25", + "version":5154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.224.0", + "prefixLen":25, + "network":"192.211.224.0\/25", + "version":5153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.224.128", + "prefixLen":25, + "network":"192.211.224.128\/25", + "version":5152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.225.0", + "prefixLen":25, + "network":"192.211.225.0\/25", + "version":5151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.225.128", + "prefixLen":25, + "network":"192.211.225.128\/25", + "version":5150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.226.0", + "prefixLen":25, + "network":"192.211.226.0\/25", + "version":5149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.226.128", + "prefixLen":25, + "network":"192.211.226.128\/25", + "version":5148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.227.0", + "prefixLen":25, + "network":"192.211.227.0\/25", + "version":5147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.227.128", + "prefixLen":25, + "network":"192.211.227.128\/25", + "version":5146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.240.0", + "prefixLen":25, + "network":"192.211.240.0\/25", + "version":5145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.240.128", + "prefixLen":25, + "network":"192.211.240.128\/25", + "version":5144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.241.0", + "prefixLen":25, + "network":"192.211.241.0\/25", + "version":5143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.241.128", + "prefixLen":25, + "network":"192.211.241.128\/25", + "version":5142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.242.0", + "prefixLen":25, + "network":"192.211.242.0\/25", + "version":5141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.242.128", + "prefixLen":25, + "network":"192.211.242.128\/25", + "version":5140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.243.0", + "prefixLen":25, + "network":"192.211.243.0\/25", + "version":5139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.211.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.211.243.128", + "prefixLen":25, + "network":"192.211.243.128\/25", + "version":5138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64643 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.0.0", + "prefixLen":25, + "network":"192.212.0.0\/25", + "version":5265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.0.128", + "prefixLen":25, + "network":"192.212.0.128\/25", + "version":5392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.1.0", + "prefixLen":25, + "network":"192.212.1.0\/25", + "version":5391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.1.128", + "prefixLen":25, + "network":"192.212.1.128\/25", + "version":5390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.2.0", + "prefixLen":25, + "network":"192.212.2.0\/25", + "version":5389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.2.128", + "prefixLen":25, + "network":"192.212.2.128\/25", + "version":5388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.3.0", + "prefixLen":25, + "network":"192.212.3.0\/25", + "version":5387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.3.128", + "prefixLen":25, + "network":"192.212.3.128\/25", + "version":5386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.16.0", + "prefixLen":25, + "network":"192.212.16.0\/25", + "version":5385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.16.128", + "prefixLen":25, + "network":"192.212.16.128\/25", + "version":5384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.17.0", + "prefixLen":25, + "network":"192.212.17.0\/25", + "version":5383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.17.128", + "prefixLen":25, + "network":"192.212.17.128\/25", + "version":5382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.18.0", + "prefixLen":25, + "network":"192.212.18.0\/25", + "version":5381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.18.128", + "prefixLen":25, + "network":"192.212.18.128\/25", + "version":5380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.19.0", + "prefixLen":25, + "network":"192.212.19.0\/25", + "version":5379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.19.128", + "prefixLen":25, + "network":"192.212.19.128\/25", + "version":5378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.32.0", + "prefixLen":25, + "network":"192.212.32.0\/25", + "version":5377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.32.128", + "prefixLen":25, + "network":"192.212.32.128\/25", + "version":5376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.33.0", + "prefixLen":25, + "network":"192.212.33.0\/25", + "version":5375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.33.128", + "prefixLen":25, + "network":"192.212.33.128\/25", + "version":5374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.34.0", + "prefixLen":25, + "network":"192.212.34.0\/25", + "version":5373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.34.128", + "prefixLen":25, + "network":"192.212.34.128\/25", + "version":5372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.35.0", + "prefixLen":25, + "network":"192.212.35.0\/25", + "version":5371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.35.128", + "prefixLen":25, + "network":"192.212.35.128\/25", + "version":5370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.48.0", + "prefixLen":25, + "network":"192.212.48.0\/25", + "version":5369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.48.128", + "prefixLen":25, + "network":"192.212.48.128\/25", + "version":5368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.49.0", + "prefixLen":25, + "network":"192.212.49.0\/25", + "version":5367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.49.128", + "prefixLen":25, + "network":"192.212.49.128\/25", + "version":5366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.50.0", + "prefixLen":25, + "network":"192.212.50.0\/25", + "version":5365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.50.128", + "prefixLen":25, + "network":"192.212.50.128\/25", + "version":5364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.51.0", + "prefixLen":25, + "network":"192.212.51.0\/25", + "version":5363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.51.128", + "prefixLen":25, + "network":"192.212.51.128\/25", + "version":5362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.64.0", + "prefixLen":25, + "network":"192.212.64.0\/25", + "version":5361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.64.128", + "prefixLen":25, + "network":"192.212.64.128\/25", + "version":5360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.65.0", + "prefixLen":25, + "network":"192.212.65.0\/25", + "version":5359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.65.128", + "prefixLen":25, + "network":"192.212.65.128\/25", + "version":5358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.66.0", + "prefixLen":25, + "network":"192.212.66.0\/25", + "version":5357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.66.128", + "prefixLen":25, + "network":"192.212.66.128\/25", + "version":5356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.67.0", + "prefixLen":25, + "network":"192.212.67.0\/25", + "version":5355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.67.128", + "prefixLen":25, + "network":"192.212.67.128\/25", + "version":5354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.80.0", + "prefixLen":25, + "network":"192.212.80.0\/25", + "version":5353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.80.128", + "prefixLen":25, + "network":"192.212.80.128\/25", + "version":5352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.81.0", + "prefixLen":25, + "network":"192.212.81.0\/25", + "version":5351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.81.128", + "prefixLen":25, + "network":"192.212.81.128\/25", + "version":5350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.82.0", + "prefixLen":25, + "network":"192.212.82.0\/25", + "version":5349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.82.128", + "prefixLen":25, + "network":"192.212.82.128\/25", + "version":5348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.83.0", + "prefixLen":25, + "network":"192.212.83.0\/25", + "version":5347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.83.128", + "prefixLen":25, + "network":"192.212.83.128\/25", + "version":5346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.96.0", + "prefixLen":25, + "network":"192.212.96.0\/25", + "version":5345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.96.128", + "prefixLen":25, + "network":"192.212.96.128\/25", + "version":5344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.97.0", + "prefixLen":25, + "network":"192.212.97.0\/25", + "version":5343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.97.128", + "prefixLen":25, + "network":"192.212.97.128\/25", + "version":5342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.98.0", + "prefixLen":25, + "network":"192.212.98.0\/25", + "version":5341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.98.128", + "prefixLen":25, + "network":"192.212.98.128\/25", + "version":5340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.99.0", + "prefixLen":25, + "network":"192.212.99.0\/25", + "version":5339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.99.128", + "prefixLen":25, + "network":"192.212.99.128\/25", + "version":5338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.112.0", + "prefixLen":25, + "network":"192.212.112.0\/25", + "version":5337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.112.128", + "prefixLen":25, + "network":"192.212.112.128\/25", + "version":5336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.113.0", + "prefixLen":25, + "network":"192.212.113.0\/25", + "version":5335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.113.128", + "prefixLen":25, + "network":"192.212.113.128\/25", + "version":5334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.114.0", + "prefixLen":25, + "network":"192.212.114.0\/25", + "version":5333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.114.128", + "prefixLen":25, + "network":"192.212.114.128\/25", + "version":5332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.115.0", + "prefixLen":25, + "network":"192.212.115.0\/25", + "version":5331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.115.128", + "prefixLen":25, + "network":"192.212.115.128\/25", + "version":5330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.128.0", + "prefixLen":25, + "network":"192.212.128.0\/25", + "version":5329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.128.128", + "prefixLen":25, + "network":"192.212.128.128\/25", + "version":5328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.129.0", + "prefixLen":25, + "network":"192.212.129.0\/25", + "version":5327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.129.128", + "prefixLen":25, + "network":"192.212.129.128\/25", + "version":5326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.130.0", + "prefixLen":25, + "network":"192.212.130.0\/25", + "version":5325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.130.128", + "prefixLen":25, + "network":"192.212.130.128\/25", + "version":5324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.131.0", + "prefixLen":25, + "network":"192.212.131.0\/25", + "version":5323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.131.128", + "prefixLen":25, + "network":"192.212.131.128\/25", + "version":5322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.144.0", + "prefixLen":25, + "network":"192.212.144.0\/25", + "version":5321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.144.128", + "prefixLen":25, + "network":"192.212.144.128\/25", + "version":5320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.145.0", + "prefixLen":25, + "network":"192.212.145.0\/25", + "version":5319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.145.128", + "prefixLen":25, + "network":"192.212.145.128\/25", + "version":5318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.146.0", + "prefixLen":25, + "network":"192.212.146.0\/25", + "version":5317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.146.128", + "prefixLen":25, + "network":"192.212.146.128\/25", + "version":5316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.147.0", + "prefixLen":25, + "network":"192.212.147.0\/25", + "version":5315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.147.128", + "prefixLen":25, + "network":"192.212.147.128\/25", + "version":5314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.160.0", + "prefixLen":25, + "network":"192.212.160.0\/25", + "version":5313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.160.128", + "prefixLen":25, + "network":"192.212.160.128\/25", + "version":5312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.161.0", + "prefixLen":25, + "network":"192.212.161.0\/25", + "version":5311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.161.128", + "prefixLen":25, + "network":"192.212.161.128\/25", + "version":5310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.162.0", + "prefixLen":25, + "network":"192.212.162.0\/25", + "version":5309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.162.128", + "prefixLen":25, + "network":"192.212.162.128\/25", + "version":5308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.163.0", + "prefixLen":25, + "network":"192.212.163.0\/25", + "version":5307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.163.128", + "prefixLen":25, + "network":"192.212.163.128\/25", + "version":5306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.176.0", + "prefixLen":25, + "network":"192.212.176.0\/25", + "version":5305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.176.128", + "prefixLen":25, + "network":"192.212.176.128\/25", + "version":5304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.177.0", + "prefixLen":25, + "network":"192.212.177.0\/25", + "version":5303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.177.128", + "prefixLen":25, + "network":"192.212.177.128\/25", + "version":5302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.178.0", + "prefixLen":25, + "network":"192.212.178.0\/25", + "version":5301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.178.128", + "prefixLen":25, + "network":"192.212.178.128\/25", + "version":5300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.179.0", + "prefixLen":25, + "network":"192.212.179.0\/25", + "version":5299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.179.128", + "prefixLen":25, + "network":"192.212.179.128\/25", + "version":5298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.192.0", + "prefixLen":25, + "network":"192.212.192.0\/25", + "version":5297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.192.128", + "prefixLen":25, + "network":"192.212.192.128\/25", + "version":5296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.193.0", + "prefixLen":25, + "network":"192.212.193.0\/25", + "version":5295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.193.128", + "prefixLen":25, + "network":"192.212.193.128\/25", + "version":5294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.194.0", + "prefixLen":25, + "network":"192.212.194.0\/25", + "version":5293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.194.128", + "prefixLen":25, + "network":"192.212.194.128\/25", + "version":5292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.195.0", + "prefixLen":25, + "network":"192.212.195.0\/25", + "version":5291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.195.128", + "prefixLen":25, + "network":"192.212.195.128\/25", + "version":5290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.208.0", + "prefixLen":25, + "network":"192.212.208.0\/25", + "version":5289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.208.128", + "prefixLen":25, + "network":"192.212.208.128\/25", + "version":5288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.209.0", + "prefixLen":25, + "network":"192.212.209.0\/25", + "version":5287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.209.128", + "prefixLen":25, + "network":"192.212.209.128\/25", + "version":5286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.210.0", + "prefixLen":25, + "network":"192.212.210.0\/25", + "version":5285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.210.128", + "prefixLen":25, + "network":"192.212.210.128\/25", + "version":5284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.211.0", + "prefixLen":25, + "network":"192.212.211.0\/25", + "version":5283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.211.128", + "prefixLen":25, + "network":"192.212.211.128\/25", + "version":5282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.224.0", + "prefixLen":25, + "network":"192.212.224.0\/25", + "version":5281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.224.128", + "prefixLen":25, + "network":"192.212.224.128\/25", + "version":5280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.225.0", + "prefixLen":25, + "network":"192.212.225.0\/25", + "version":5279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.225.128", + "prefixLen":25, + "network":"192.212.225.128\/25", + "version":5278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.226.0", + "prefixLen":25, + "network":"192.212.226.0\/25", + "version":5277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.226.128", + "prefixLen":25, + "network":"192.212.226.128\/25", + "version":5276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.227.0", + "prefixLen":25, + "network":"192.212.227.0\/25", + "version":5275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.227.128", + "prefixLen":25, + "network":"192.212.227.128\/25", + "version":5274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.240.0", + "prefixLen":25, + "network":"192.212.240.0\/25", + "version":5273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.240.128", + "prefixLen":25, + "network":"192.212.240.128\/25", + "version":5272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.241.0", + "prefixLen":25, + "network":"192.212.241.0\/25", + "version":5271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.241.128", + "prefixLen":25, + "network":"192.212.241.128\/25", + "version":5270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.242.0", + "prefixLen":25, + "network":"192.212.242.0\/25", + "version":5269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.242.128", + "prefixLen":25, + "network":"192.212.242.128\/25", + "version":5268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.243.0", + "prefixLen":25, + "network":"192.212.243.0\/25", + "version":5267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.212.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.212.243.128", + "prefixLen":25, + "network":"192.212.243.128\/25", + "version":5266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64644 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.0.0", + "prefixLen":25, + "network":"192.213.0.0\/25", + "version":5393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.0.128", + "prefixLen":25, + "network":"192.213.0.128\/25", + "version":5520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.1.0", + "prefixLen":25, + "network":"192.213.1.0\/25", + "version":5519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.1.128", + "prefixLen":25, + "network":"192.213.1.128\/25", + "version":5518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.2.0", + "prefixLen":25, + "network":"192.213.2.0\/25", + "version":5517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.2.128", + "prefixLen":25, + "network":"192.213.2.128\/25", + "version":5516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.3.0", + "prefixLen":25, + "network":"192.213.3.0\/25", + "version":5515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.3.128", + "prefixLen":25, + "network":"192.213.3.128\/25", + "version":5514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.16.0", + "prefixLen":25, + "network":"192.213.16.0\/25", + "version":5513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.16.128", + "prefixLen":25, + "network":"192.213.16.128\/25", + "version":5512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.17.0", + "prefixLen":25, + "network":"192.213.17.0\/25", + "version":5511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.17.128", + "prefixLen":25, + "network":"192.213.17.128\/25", + "version":5510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.18.0", + "prefixLen":25, + "network":"192.213.18.0\/25", + "version":5509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.18.128", + "prefixLen":25, + "network":"192.213.18.128\/25", + "version":5508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.19.0", + "prefixLen":25, + "network":"192.213.19.0\/25", + "version":5507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.19.128", + "prefixLen":25, + "network":"192.213.19.128\/25", + "version":5506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.32.0", + "prefixLen":25, + "network":"192.213.32.0\/25", + "version":5505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.32.128", + "prefixLen":25, + "network":"192.213.32.128\/25", + "version":5504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.33.0", + "prefixLen":25, + "network":"192.213.33.0\/25", + "version":5503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.33.128", + "prefixLen":25, + "network":"192.213.33.128\/25", + "version":5502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.34.0", + "prefixLen":25, + "network":"192.213.34.0\/25", + "version":5501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.34.128", + "prefixLen":25, + "network":"192.213.34.128\/25", + "version":5500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.35.0", + "prefixLen":25, + "network":"192.213.35.0\/25", + "version":5499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.35.128", + "prefixLen":25, + "network":"192.213.35.128\/25", + "version":5498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.48.0", + "prefixLen":25, + "network":"192.213.48.0\/25", + "version":5497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.48.128", + "prefixLen":25, + "network":"192.213.48.128\/25", + "version":5496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.49.0", + "prefixLen":25, + "network":"192.213.49.0\/25", + "version":5495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.49.128", + "prefixLen":25, + "network":"192.213.49.128\/25", + "version":5494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.50.0", + "prefixLen":25, + "network":"192.213.50.0\/25", + "version":5493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.50.128", + "prefixLen":25, + "network":"192.213.50.128\/25", + "version":5492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.51.0", + "prefixLen":25, + "network":"192.213.51.0\/25", + "version":5491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.51.128", + "prefixLen":25, + "network":"192.213.51.128\/25", + "version":5490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.64.0", + "prefixLen":25, + "network":"192.213.64.0\/25", + "version":5489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.64.128", + "prefixLen":25, + "network":"192.213.64.128\/25", + "version":5488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.65.0", + "prefixLen":25, + "network":"192.213.65.0\/25", + "version":5487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.65.128", + "prefixLen":25, + "network":"192.213.65.128\/25", + "version":5486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.66.0", + "prefixLen":25, + "network":"192.213.66.0\/25", + "version":5485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.66.128", + "prefixLen":25, + "network":"192.213.66.128\/25", + "version":5484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.67.0", + "prefixLen":25, + "network":"192.213.67.0\/25", + "version":5483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.67.128", + "prefixLen":25, + "network":"192.213.67.128\/25", + "version":5482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.80.0", + "prefixLen":25, + "network":"192.213.80.0\/25", + "version":5481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.80.128", + "prefixLen":25, + "network":"192.213.80.128\/25", + "version":5480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.81.0", + "prefixLen":25, + "network":"192.213.81.0\/25", + "version":5479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.81.128", + "prefixLen":25, + "network":"192.213.81.128\/25", + "version":5478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.82.0", + "prefixLen":25, + "network":"192.213.82.0\/25", + "version":5477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.82.128", + "prefixLen":25, + "network":"192.213.82.128\/25", + "version":5476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.83.0", + "prefixLen":25, + "network":"192.213.83.0\/25", + "version":5475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.83.128", + "prefixLen":25, + "network":"192.213.83.128\/25", + "version":5474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.96.0", + "prefixLen":25, + "network":"192.213.96.0\/25", + "version":5473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.96.128", + "prefixLen":25, + "network":"192.213.96.128\/25", + "version":5472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.97.0", + "prefixLen":25, + "network":"192.213.97.0\/25", + "version":5471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.97.128", + "prefixLen":25, + "network":"192.213.97.128\/25", + "version":5470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.98.0", + "prefixLen":25, + "network":"192.213.98.0\/25", + "version":5469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.98.128", + "prefixLen":25, + "network":"192.213.98.128\/25", + "version":5468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.99.0", + "prefixLen":25, + "network":"192.213.99.0\/25", + "version":5467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.99.128", + "prefixLen":25, + "network":"192.213.99.128\/25", + "version":5466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.112.0", + "prefixLen":25, + "network":"192.213.112.0\/25", + "version":5465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.112.128", + "prefixLen":25, + "network":"192.213.112.128\/25", + "version":5464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.113.0", + "prefixLen":25, + "network":"192.213.113.0\/25", + "version":5463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.113.128", + "prefixLen":25, + "network":"192.213.113.128\/25", + "version":5462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.114.0", + "prefixLen":25, + "network":"192.213.114.0\/25", + "version":5461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.114.128", + "prefixLen":25, + "network":"192.213.114.128\/25", + "version":5460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.115.0", + "prefixLen":25, + "network":"192.213.115.0\/25", + "version":5459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.115.128", + "prefixLen":25, + "network":"192.213.115.128\/25", + "version":5458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.128.0", + "prefixLen":25, + "network":"192.213.128.0\/25", + "version":5457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.128.128", + "prefixLen":25, + "network":"192.213.128.128\/25", + "version":5456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.129.0", + "prefixLen":25, + "network":"192.213.129.0\/25", + "version":5455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.129.128", + "prefixLen":25, + "network":"192.213.129.128\/25", + "version":5454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.130.0", + "prefixLen":25, + "network":"192.213.130.0\/25", + "version":5453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.130.128", + "prefixLen":25, + "network":"192.213.130.128\/25", + "version":5452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.131.0", + "prefixLen":25, + "network":"192.213.131.0\/25", + "version":5451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.131.128", + "prefixLen":25, + "network":"192.213.131.128\/25", + "version":5450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.144.0", + "prefixLen":25, + "network":"192.213.144.0\/25", + "version":5449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.144.128", + "prefixLen":25, + "network":"192.213.144.128\/25", + "version":5448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.145.0", + "prefixLen":25, + "network":"192.213.145.0\/25", + "version":5447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.145.128", + "prefixLen":25, + "network":"192.213.145.128\/25", + "version":5446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.146.0", + "prefixLen":25, + "network":"192.213.146.0\/25", + "version":5445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.146.128", + "prefixLen":25, + "network":"192.213.146.128\/25", + "version":5444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.147.0", + "prefixLen":25, + "network":"192.213.147.0\/25", + "version":5443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.147.128", + "prefixLen":25, + "network":"192.213.147.128\/25", + "version":5442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.160.0", + "prefixLen":25, + "network":"192.213.160.0\/25", + "version":5441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.160.128", + "prefixLen":25, + "network":"192.213.160.128\/25", + "version":5440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.161.0", + "prefixLen":25, + "network":"192.213.161.0\/25", + "version":5439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.161.128", + "prefixLen":25, + "network":"192.213.161.128\/25", + "version":5438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.162.0", + "prefixLen":25, + "network":"192.213.162.0\/25", + "version":5437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.162.128", + "prefixLen":25, + "network":"192.213.162.128\/25", + "version":5436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.163.0", + "prefixLen":25, + "network":"192.213.163.0\/25", + "version":5435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.163.128", + "prefixLen":25, + "network":"192.213.163.128\/25", + "version":5434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.176.0", + "prefixLen":25, + "network":"192.213.176.0\/25", + "version":5433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.176.128", + "prefixLen":25, + "network":"192.213.176.128\/25", + "version":5432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.177.0", + "prefixLen":25, + "network":"192.213.177.0\/25", + "version":5431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.177.128", + "prefixLen":25, + "network":"192.213.177.128\/25", + "version":5430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.178.0", + "prefixLen":25, + "network":"192.213.178.0\/25", + "version":5429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.178.128", + "prefixLen":25, + "network":"192.213.178.128\/25", + "version":5428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.179.0", + "prefixLen":25, + "network":"192.213.179.0\/25", + "version":5427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.179.128", + "prefixLen":25, + "network":"192.213.179.128\/25", + "version":5426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.192.0", + "prefixLen":25, + "network":"192.213.192.0\/25", + "version":5425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.192.128", + "prefixLen":25, + "network":"192.213.192.128\/25", + "version":5424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.193.0", + "prefixLen":25, + "network":"192.213.193.0\/25", + "version":5423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.193.128", + "prefixLen":25, + "network":"192.213.193.128\/25", + "version":5422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.194.0", + "prefixLen":25, + "network":"192.213.194.0\/25", + "version":5421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.194.128", + "prefixLen":25, + "network":"192.213.194.128\/25", + "version":5420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.195.0", + "prefixLen":25, + "network":"192.213.195.0\/25", + "version":5419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.195.128", + "prefixLen":25, + "network":"192.213.195.128\/25", + "version":5418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.208.0", + "prefixLen":25, + "network":"192.213.208.0\/25", + "version":5417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.208.128", + "prefixLen":25, + "network":"192.213.208.128\/25", + "version":5416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.209.0", + "prefixLen":25, + "network":"192.213.209.0\/25", + "version":5415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.209.128", + "prefixLen":25, + "network":"192.213.209.128\/25", + "version":5414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.210.0", + "prefixLen":25, + "network":"192.213.210.0\/25", + "version":5413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.210.128", + "prefixLen":25, + "network":"192.213.210.128\/25", + "version":5412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.211.0", + "prefixLen":25, + "network":"192.213.211.0\/25", + "version":5411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.211.128", + "prefixLen":25, + "network":"192.213.211.128\/25", + "version":5410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.224.0", + "prefixLen":25, + "network":"192.213.224.0\/25", + "version":5409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.224.128", + "prefixLen":25, + "network":"192.213.224.128\/25", + "version":5408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.225.0", + "prefixLen":25, + "network":"192.213.225.0\/25", + "version":5407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.225.128", + "prefixLen":25, + "network":"192.213.225.128\/25", + "version":5406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.226.0", + "prefixLen":25, + "network":"192.213.226.0\/25", + "version":5405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.226.128", + "prefixLen":25, + "network":"192.213.226.128\/25", + "version":5404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.227.0", + "prefixLen":25, + "network":"192.213.227.0\/25", + "version":5403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.227.128", + "prefixLen":25, + "network":"192.213.227.128\/25", + "version":5402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.240.0", + "prefixLen":25, + "network":"192.213.240.0\/25", + "version":5401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.240.128", + "prefixLen":25, + "network":"192.213.240.128\/25", + "version":5400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.241.0", + "prefixLen":25, + "network":"192.213.241.0\/25", + "version":5399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.241.128", + "prefixLen":25, + "network":"192.213.241.128\/25", + "version":5398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.242.0", + "prefixLen":25, + "network":"192.213.242.0\/25", + "version":5397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.242.128", + "prefixLen":25, + "network":"192.213.242.128\/25", + "version":5396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.243.0", + "prefixLen":25, + "network":"192.213.243.0\/25", + "version":5395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.213.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.213.243.128", + "prefixLen":25, + "network":"192.213.243.128\/25", + "version":5394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64645 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.0.0", + "prefixLen":25, + "network":"192.214.0.0\/25", + "version":5521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.0.128", + "prefixLen":25, + "network":"192.214.0.128\/25", + "version":5648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.1.0", + "prefixLen":25, + "network":"192.214.1.0\/25", + "version":5647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.1.128", + "prefixLen":25, + "network":"192.214.1.128\/25", + "version":5646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.2.0", + "prefixLen":25, + "network":"192.214.2.0\/25", + "version":5645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.2.128", + "prefixLen":25, + "network":"192.214.2.128\/25", + "version":5644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.3.0", + "prefixLen":25, + "network":"192.214.3.0\/25", + "version":5643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.3.128", + "prefixLen":25, + "network":"192.214.3.128\/25", + "version":5642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.16.0", + "prefixLen":25, + "network":"192.214.16.0\/25", + "version":5641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.16.128", + "prefixLen":25, + "network":"192.214.16.128\/25", + "version":5640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.17.0", + "prefixLen":25, + "network":"192.214.17.0\/25", + "version":5639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.17.128", + "prefixLen":25, + "network":"192.214.17.128\/25", + "version":5638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.18.0", + "prefixLen":25, + "network":"192.214.18.0\/25", + "version":5637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.18.128", + "prefixLen":25, + "network":"192.214.18.128\/25", + "version":5636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.19.0", + "prefixLen":25, + "network":"192.214.19.0\/25", + "version":5635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.19.128", + "prefixLen":25, + "network":"192.214.19.128\/25", + "version":5634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.32.0", + "prefixLen":25, + "network":"192.214.32.0\/25", + "version":5633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.32.128", + "prefixLen":25, + "network":"192.214.32.128\/25", + "version":5632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.33.0", + "prefixLen":25, + "network":"192.214.33.0\/25", + "version":5631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.33.128", + "prefixLen":25, + "network":"192.214.33.128\/25", + "version":5630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.34.0", + "prefixLen":25, + "network":"192.214.34.0\/25", + "version":5629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.34.128", + "prefixLen":25, + "network":"192.214.34.128\/25", + "version":5628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.35.0", + "prefixLen":25, + "network":"192.214.35.0\/25", + "version":5627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.35.128", + "prefixLen":25, + "network":"192.214.35.128\/25", + "version":5626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.48.0", + "prefixLen":25, + "network":"192.214.48.0\/25", + "version":5625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.48.128", + "prefixLen":25, + "network":"192.214.48.128\/25", + "version":5624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.49.0", + "prefixLen":25, + "network":"192.214.49.0\/25", + "version":5623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.49.128", + "prefixLen":25, + "network":"192.214.49.128\/25", + "version":5622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.50.0", + "prefixLen":25, + "network":"192.214.50.0\/25", + "version":5621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.50.128", + "prefixLen":25, + "network":"192.214.50.128\/25", + "version":5620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.51.0", + "prefixLen":25, + "network":"192.214.51.0\/25", + "version":5619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.51.128", + "prefixLen":25, + "network":"192.214.51.128\/25", + "version":5618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.64.0", + "prefixLen":25, + "network":"192.214.64.0\/25", + "version":5617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.64.128", + "prefixLen":25, + "network":"192.214.64.128\/25", + "version":5616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.65.0", + "prefixLen":25, + "network":"192.214.65.0\/25", + "version":5615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.65.128", + "prefixLen":25, + "network":"192.214.65.128\/25", + "version":5614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.66.0", + "prefixLen":25, + "network":"192.214.66.0\/25", + "version":5613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.66.128", + "prefixLen":25, + "network":"192.214.66.128\/25", + "version":5612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.67.0", + "prefixLen":25, + "network":"192.214.67.0\/25", + "version":5611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.67.128", + "prefixLen":25, + "network":"192.214.67.128\/25", + "version":5610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.80.0", + "prefixLen":25, + "network":"192.214.80.0\/25", + "version":5609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.80.128", + "prefixLen":25, + "network":"192.214.80.128\/25", + "version":5608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.81.0", + "prefixLen":25, + "network":"192.214.81.0\/25", + "version":5607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.81.128", + "prefixLen":25, + "network":"192.214.81.128\/25", + "version":5606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.82.0", + "prefixLen":25, + "network":"192.214.82.0\/25", + "version":5605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.82.128", + "prefixLen":25, + "network":"192.214.82.128\/25", + "version":5604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.83.0", + "prefixLen":25, + "network":"192.214.83.0\/25", + "version":5603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.83.128", + "prefixLen":25, + "network":"192.214.83.128\/25", + "version":5602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.96.0", + "prefixLen":25, + "network":"192.214.96.0\/25", + "version":5601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.96.128", + "prefixLen":25, + "network":"192.214.96.128\/25", + "version":5600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.97.0", + "prefixLen":25, + "network":"192.214.97.0\/25", + "version":5599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.97.128", + "prefixLen":25, + "network":"192.214.97.128\/25", + "version":5598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.98.0", + "prefixLen":25, + "network":"192.214.98.0\/25", + "version":5597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.98.128", + "prefixLen":25, + "network":"192.214.98.128\/25", + "version":5596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.99.0", + "prefixLen":25, + "network":"192.214.99.0\/25", + "version":5595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.99.128", + "prefixLen":25, + "network":"192.214.99.128\/25", + "version":5594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.112.0", + "prefixLen":25, + "network":"192.214.112.0\/25", + "version":5593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.112.128", + "prefixLen":25, + "network":"192.214.112.128\/25", + "version":5592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.113.0", + "prefixLen":25, + "network":"192.214.113.0\/25", + "version":5591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.113.128", + "prefixLen":25, + "network":"192.214.113.128\/25", + "version":5590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.114.0", + "prefixLen":25, + "network":"192.214.114.0\/25", + "version":5589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.114.128", + "prefixLen":25, + "network":"192.214.114.128\/25", + "version":5588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.115.0", + "prefixLen":25, + "network":"192.214.115.0\/25", + "version":5587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.115.128", + "prefixLen":25, + "network":"192.214.115.128\/25", + "version":5586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.128.0", + "prefixLen":25, + "network":"192.214.128.0\/25", + "version":5585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.128.128", + "prefixLen":25, + "network":"192.214.128.128\/25", + "version":5584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.129.0", + "prefixLen":25, + "network":"192.214.129.0\/25", + "version":5583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.129.128", + "prefixLen":25, + "network":"192.214.129.128\/25", + "version":5582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.130.0", + "prefixLen":25, + "network":"192.214.130.0\/25", + "version":5581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.130.128", + "prefixLen":25, + "network":"192.214.130.128\/25", + "version":5580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.131.0", + "prefixLen":25, + "network":"192.214.131.0\/25", + "version":5579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.131.128", + "prefixLen":25, + "network":"192.214.131.128\/25", + "version":5578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.144.0", + "prefixLen":25, + "network":"192.214.144.0\/25", + "version":5577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.144.128", + "prefixLen":25, + "network":"192.214.144.128\/25", + "version":5576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.145.0", + "prefixLen":25, + "network":"192.214.145.0\/25", + "version":5575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.145.128", + "prefixLen":25, + "network":"192.214.145.128\/25", + "version":5574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.146.0", + "prefixLen":25, + "network":"192.214.146.0\/25", + "version":5573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.146.128", + "prefixLen":25, + "network":"192.214.146.128\/25", + "version":5572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.147.0", + "prefixLen":25, + "network":"192.214.147.0\/25", + "version":5571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.147.128", + "prefixLen":25, + "network":"192.214.147.128\/25", + "version":5570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.160.0", + "prefixLen":25, + "network":"192.214.160.0\/25", + "version":5569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.160.128", + "prefixLen":25, + "network":"192.214.160.128\/25", + "version":5568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.161.0", + "prefixLen":25, + "network":"192.214.161.0\/25", + "version":5567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.161.128", + "prefixLen":25, + "network":"192.214.161.128\/25", + "version":5566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.162.0", + "prefixLen":25, + "network":"192.214.162.0\/25", + "version":5565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.162.128", + "prefixLen":25, + "network":"192.214.162.128\/25", + "version":5564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.163.0", + "prefixLen":25, + "network":"192.214.163.0\/25", + "version":5563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.163.128", + "prefixLen":25, + "network":"192.214.163.128\/25", + "version":5562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.176.0", + "prefixLen":25, + "network":"192.214.176.0\/25", + "version":5561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.176.128", + "prefixLen":25, + "network":"192.214.176.128\/25", + "version":5560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.177.0", + "prefixLen":25, + "network":"192.214.177.0\/25", + "version":5559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.177.128", + "prefixLen":25, + "network":"192.214.177.128\/25", + "version":5558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.178.0", + "prefixLen":25, + "network":"192.214.178.0\/25", + "version":5557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.178.128", + "prefixLen":25, + "network":"192.214.178.128\/25", + "version":5556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.179.0", + "prefixLen":25, + "network":"192.214.179.0\/25", + "version":5555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.179.128", + "prefixLen":25, + "network":"192.214.179.128\/25", + "version":5554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.192.0", + "prefixLen":25, + "network":"192.214.192.0\/25", + "version":5553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.192.128", + "prefixLen":25, + "network":"192.214.192.128\/25", + "version":5552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.193.0", + "prefixLen":25, + "network":"192.214.193.0\/25", + "version":5551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.193.128", + "prefixLen":25, + "network":"192.214.193.128\/25", + "version":5550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.194.0", + "prefixLen":25, + "network":"192.214.194.0\/25", + "version":5549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.194.128", + "prefixLen":25, + "network":"192.214.194.128\/25", + "version":5548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.195.0", + "prefixLen":25, + "network":"192.214.195.0\/25", + "version":5547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.195.128", + "prefixLen":25, + "network":"192.214.195.128\/25", + "version":5546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.208.0", + "prefixLen":25, + "network":"192.214.208.0\/25", + "version":5545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.208.128", + "prefixLen":25, + "network":"192.214.208.128\/25", + "version":5544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.209.0", + "prefixLen":25, + "network":"192.214.209.0\/25", + "version":5543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.209.128", + "prefixLen":25, + "network":"192.214.209.128\/25", + "version":5542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.210.0", + "prefixLen":25, + "network":"192.214.210.0\/25", + "version":5541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.210.128", + "prefixLen":25, + "network":"192.214.210.128\/25", + "version":5540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.211.0", + "prefixLen":25, + "network":"192.214.211.0\/25", + "version":5539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.211.128", + "prefixLen":25, + "network":"192.214.211.128\/25", + "version":5538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.224.0", + "prefixLen":25, + "network":"192.214.224.0\/25", + "version":5537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.224.128", + "prefixLen":25, + "network":"192.214.224.128\/25", + "version":5536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.225.0", + "prefixLen":25, + "network":"192.214.225.0\/25", + "version":5535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.225.128", + "prefixLen":25, + "network":"192.214.225.128\/25", + "version":5534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.226.0", + "prefixLen":25, + "network":"192.214.226.0\/25", + "version":5533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.226.128", + "prefixLen":25, + "network":"192.214.226.128\/25", + "version":5532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.227.0", + "prefixLen":25, + "network":"192.214.227.0\/25", + "version":5531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.227.128", + "prefixLen":25, + "network":"192.214.227.128\/25", + "version":5530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.240.0", + "prefixLen":25, + "network":"192.214.240.0\/25", + "version":5529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.240.128", + "prefixLen":25, + "network":"192.214.240.128\/25", + "version":5528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.241.0", + "prefixLen":25, + "network":"192.214.241.0\/25", + "version":5527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.241.128", + "prefixLen":25, + "network":"192.214.241.128\/25", + "version":5526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.242.0", + "prefixLen":25, + "network":"192.214.242.0\/25", + "version":5525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.242.128", + "prefixLen":25, + "network":"192.214.242.128\/25", + "version":5524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.243.0", + "prefixLen":25, + "network":"192.214.243.0\/25", + "version":5523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.214.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.214.243.128", + "prefixLen":25, + "network":"192.214.243.128\/25", + "version":5522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64646 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.0.0", + "prefixLen":25, + "network":"192.215.0.0\/25", + "version":5649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.0.128", + "prefixLen":25, + "network":"192.215.0.128\/25", + "version":5776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.1.0", + "prefixLen":25, + "network":"192.215.1.0\/25", + "version":5775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.1.128", + "prefixLen":25, + "network":"192.215.1.128\/25", + "version":5774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.2.0", + "prefixLen":25, + "network":"192.215.2.0\/25", + "version":5773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.2.128", + "prefixLen":25, + "network":"192.215.2.128\/25", + "version":5772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.3.0", + "prefixLen":25, + "network":"192.215.3.0\/25", + "version":5771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.3.128", + "prefixLen":25, + "network":"192.215.3.128\/25", + "version":5770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.16.0", + "prefixLen":25, + "network":"192.215.16.0\/25", + "version":5769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.16.128", + "prefixLen":25, + "network":"192.215.16.128\/25", + "version":5768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.17.0", + "prefixLen":25, + "network":"192.215.17.0\/25", + "version":5767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.17.128", + "prefixLen":25, + "network":"192.215.17.128\/25", + "version":5766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.18.0", + "prefixLen":25, + "network":"192.215.18.0\/25", + "version":5765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.18.128", + "prefixLen":25, + "network":"192.215.18.128\/25", + "version":5764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.19.0", + "prefixLen":25, + "network":"192.215.19.0\/25", + "version":5763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.19.128", + "prefixLen":25, + "network":"192.215.19.128\/25", + "version":5762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.32.0", + "prefixLen":25, + "network":"192.215.32.0\/25", + "version":5761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.32.128", + "prefixLen":25, + "network":"192.215.32.128\/25", + "version":5760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.33.0", + "prefixLen":25, + "network":"192.215.33.0\/25", + "version":5759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.33.128", + "prefixLen":25, + "network":"192.215.33.128\/25", + "version":5758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.34.0", + "prefixLen":25, + "network":"192.215.34.0\/25", + "version":5757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.34.128", + "prefixLen":25, + "network":"192.215.34.128\/25", + "version":5756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.35.0", + "prefixLen":25, + "network":"192.215.35.0\/25", + "version":5755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.35.128", + "prefixLen":25, + "network":"192.215.35.128\/25", + "version":5754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.48.0", + "prefixLen":25, + "network":"192.215.48.0\/25", + "version":5753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.48.128", + "prefixLen":25, + "network":"192.215.48.128\/25", + "version":5752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.49.0", + "prefixLen":25, + "network":"192.215.49.0\/25", + "version":5751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.49.128", + "prefixLen":25, + "network":"192.215.49.128\/25", + "version":5750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.50.0", + "prefixLen":25, + "network":"192.215.50.0\/25", + "version":5749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.50.128", + "prefixLen":25, + "network":"192.215.50.128\/25", + "version":5748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.51.0", + "prefixLen":25, + "network":"192.215.51.0\/25", + "version":5747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.51.128", + "prefixLen":25, + "network":"192.215.51.128\/25", + "version":5746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.64.0", + "prefixLen":25, + "network":"192.215.64.0\/25", + "version":5745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.64.128", + "prefixLen":25, + "network":"192.215.64.128\/25", + "version":5744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.65.0", + "prefixLen":25, + "network":"192.215.65.0\/25", + "version":5743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.65.128", + "prefixLen":25, + "network":"192.215.65.128\/25", + "version":5742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.66.0", + "prefixLen":25, + "network":"192.215.66.0\/25", + "version":5741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.66.128", + "prefixLen":25, + "network":"192.215.66.128\/25", + "version":5740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.67.0", + "prefixLen":25, + "network":"192.215.67.0\/25", + "version":5739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.67.128", + "prefixLen":25, + "network":"192.215.67.128\/25", + "version":5738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.80.0", + "prefixLen":25, + "network":"192.215.80.0\/25", + "version":5737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.80.128", + "prefixLen":25, + "network":"192.215.80.128\/25", + "version":5736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.81.0", + "prefixLen":25, + "network":"192.215.81.0\/25", + "version":5735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.81.128", + "prefixLen":25, + "network":"192.215.81.128\/25", + "version":5734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.82.0", + "prefixLen":25, + "network":"192.215.82.0\/25", + "version":5733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.82.128", + "prefixLen":25, + "network":"192.215.82.128\/25", + "version":5732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.83.0", + "prefixLen":25, + "network":"192.215.83.0\/25", + "version":5731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.83.128", + "prefixLen":25, + "network":"192.215.83.128\/25", + "version":5730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.96.0", + "prefixLen":25, + "network":"192.215.96.0\/25", + "version":5729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.96.128", + "prefixLen":25, + "network":"192.215.96.128\/25", + "version":5728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.97.0", + "prefixLen":25, + "network":"192.215.97.0\/25", + "version":5727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.97.128", + "prefixLen":25, + "network":"192.215.97.128\/25", + "version":5726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.98.0", + "prefixLen":25, + "network":"192.215.98.0\/25", + "version":5725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.98.128", + "prefixLen":25, + "network":"192.215.98.128\/25", + "version":5724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.99.0", + "prefixLen":25, + "network":"192.215.99.0\/25", + "version":5723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.99.128", + "prefixLen":25, + "network":"192.215.99.128\/25", + "version":5722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.112.0", + "prefixLen":25, + "network":"192.215.112.0\/25", + "version":5721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.112.128", + "prefixLen":25, + "network":"192.215.112.128\/25", + "version":5720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.113.0", + "prefixLen":25, + "network":"192.215.113.0\/25", + "version":5719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.113.128", + "prefixLen":25, + "network":"192.215.113.128\/25", + "version":5718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.114.0", + "prefixLen":25, + "network":"192.215.114.0\/25", + "version":5717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.114.128", + "prefixLen":25, + "network":"192.215.114.128\/25", + "version":5716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.115.0", + "prefixLen":25, + "network":"192.215.115.0\/25", + "version":5715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.115.128", + "prefixLen":25, + "network":"192.215.115.128\/25", + "version":5714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.128.0", + "prefixLen":25, + "network":"192.215.128.0\/25", + "version":5713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.128.128", + "prefixLen":25, + "network":"192.215.128.128\/25", + "version":5712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.129.0", + "prefixLen":25, + "network":"192.215.129.0\/25", + "version":5711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.129.128", + "prefixLen":25, + "network":"192.215.129.128\/25", + "version":5710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.130.0", + "prefixLen":25, + "network":"192.215.130.0\/25", + "version":5709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.130.128", + "prefixLen":25, + "network":"192.215.130.128\/25", + "version":5708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.131.0", + "prefixLen":25, + "network":"192.215.131.0\/25", + "version":5707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.131.128", + "prefixLen":25, + "network":"192.215.131.128\/25", + "version":5706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.144.0", + "prefixLen":25, + "network":"192.215.144.0\/25", + "version":5705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.144.128", + "prefixLen":25, + "network":"192.215.144.128\/25", + "version":5704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.145.0", + "prefixLen":25, + "network":"192.215.145.0\/25", + "version":5703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.145.128", + "prefixLen":25, + "network":"192.215.145.128\/25", + "version":5702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.146.0", + "prefixLen":25, + "network":"192.215.146.0\/25", + "version":5701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.146.128", + "prefixLen":25, + "network":"192.215.146.128\/25", + "version":5700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.147.0", + "prefixLen":25, + "network":"192.215.147.0\/25", + "version":5699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.147.128", + "prefixLen":25, + "network":"192.215.147.128\/25", + "version":5698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.160.0", + "prefixLen":25, + "network":"192.215.160.0\/25", + "version":5697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.160.128", + "prefixLen":25, + "network":"192.215.160.128\/25", + "version":5696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.161.0", + "prefixLen":25, + "network":"192.215.161.0\/25", + "version":5695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.161.128", + "prefixLen":25, + "network":"192.215.161.128\/25", + "version":5694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.162.0", + "prefixLen":25, + "network":"192.215.162.0\/25", + "version":5693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.162.128", + "prefixLen":25, + "network":"192.215.162.128\/25", + "version":5692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.163.0", + "prefixLen":25, + "network":"192.215.163.0\/25", + "version":5691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.163.128", + "prefixLen":25, + "network":"192.215.163.128\/25", + "version":5690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.176.0", + "prefixLen":25, + "network":"192.215.176.0\/25", + "version":5689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.176.128", + "prefixLen":25, + "network":"192.215.176.128\/25", + "version":5688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.177.0", + "prefixLen":25, + "network":"192.215.177.0\/25", + "version":5687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.177.128", + "prefixLen":25, + "network":"192.215.177.128\/25", + "version":5686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.178.0", + "prefixLen":25, + "network":"192.215.178.0\/25", + "version":5685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.178.128", + "prefixLen":25, + "network":"192.215.178.128\/25", + "version":5684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.179.0", + "prefixLen":25, + "network":"192.215.179.0\/25", + "version":5683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.179.128", + "prefixLen":25, + "network":"192.215.179.128\/25", + "version":5682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.192.0", + "prefixLen":25, + "network":"192.215.192.0\/25", + "version":5681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.192.128", + "prefixLen":25, + "network":"192.215.192.128\/25", + "version":5680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.193.0", + "prefixLen":25, + "network":"192.215.193.0\/25", + "version":5679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.193.128", + "prefixLen":25, + "network":"192.215.193.128\/25", + "version":5678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.194.0", + "prefixLen":25, + "network":"192.215.194.0\/25", + "version":5677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.194.128", + "prefixLen":25, + "network":"192.215.194.128\/25", + "version":5676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.195.0", + "prefixLen":25, + "network":"192.215.195.0\/25", + "version":5675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.195.128", + "prefixLen":25, + "network":"192.215.195.128\/25", + "version":5674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.208.0", + "prefixLen":25, + "network":"192.215.208.0\/25", + "version":5673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.208.128", + "prefixLen":25, + "network":"192.215.208.128\/25", + "version":5672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.209.0", + "prefixLen":25, + "network":"192.215.209.0\/25", + "version":5671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.209.128", + "prefixLen":25, + "network":"192.215.209.128\/25", + "version":5670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.210.0", + "prefixLen":25, + "network":"192.215.210.0\/25", + "version":5669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.210.128", + "prefixLen":25, + "network":"192.215.210.128\/25", + "version":5668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.211.0", + "prefixLen":25, + "network":"192.215.211.0\/25", + "version":5667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.211.128", + "prefixLen":25, + "network":"192.215.211.128\/25", + "version":5666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.224.0", + "prefixLen":25, + "network":"192.215.224.0\/25", + "version":5665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.224.128", + "prefixLen":25, + "network":"192.215.224.128\/25", + "version":5664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.225.0", + "prefixLen":25, + "network":"192.215.225.0\/25", + "version":5663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.225.128", + "prefixLen":25, + "network":"192.215.225.128\/25", + "version":5662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.226.0", + "prefixLen":25, + "network":"192.215.226.0\/25", + "version":5661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.226.128", + "prefixLen":25, + "network":"192.215.226.128\/25", + "version":5660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.227.0", + "prefixLen":25, + "network":"192.215.227.0\/25", + "version":5659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.227.128", + "prefixLen":25, + "network":"192.215.227.128\/25", + "version":5658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.240.0", + "prefixLen":25, + "network":"192.215.240.0\/25", + "version":5657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.240.128", + "prefixLen":25, + "network":"192.215.240.128\/25", + "version":5656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.241.0", + "prefixLen":25, + "network":"192.215.241.0\/25", + "version":5655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.241.128", + "prefixLen":25, + "network":"192.215.241.128\/25", + "version":5654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.242.0", + "prefixLen":25, + "network":"192.215.242.0\/25", + "version":5653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.242.128", + "prefixLen":25, + "network":"192.215.242.128\/25", + "version":5652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.243.0", + "prefixLen":25, + "network":"192.215.243.0\/25", + "version":5651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.215.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.215.243.128", + "prefixLen":25, + "network":"192.215.243.128\/25", + "version":5650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64647 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.0.0", + "prefixLen":25, + "network":"192.216.0.0\/25", + "version":5777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.0.128", + "prefixLen":25, + "network":"192.216.0.128\/25", + "version":5904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.1.0", + "prefixLen":25, + "network":"192.216.1.0\/25", + "version":5903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.1.128", + "prefixLen":25, + "network":"192.216.1.128\/25", + "version":5902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.2.0", + "prefixLen":25, + "network":"192.216.2.0\/25", + "version":5901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.2.128", + "prefixLen":25, + "network":"192.216.2.128\/25", + "version":5900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.3.0", + "prefixLen":25, + "network":"192.216.3.0\/25", + "version":5899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.3.128", + "prefixLen":25, + "network":"192.216.3.128\/25", + "version":5898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.16.0", + "prefixLen":25, + "network":"192.216.16.0\/25", + "version":5897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.16.128", + "prefixLen":25, + "network":"192.216.16.128\/25", + "version":5896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.17.0", + "prefixLen":25, + "network":"192.216.17.0\/25", + "version":5895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.17.128", + "prefixLen":25, + "network":"192.216.17.128\/25", + "version":5894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.18.0", + "prefixLen":25, + "network":"192.216.18.0\/25", + "version":5893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.18.128", + "prefixLen":25, + "network":"192.216.18.128\/25", + "version":5892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.19.0", + "prefixLen":25, + "network":"192.216.19.0\/25", + "version":5891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.19.128", + "prefixLen":25, + "network":"192.216.19.128\/25", + "version":5890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.32.0", + "prefixLen":25, + "network":"192.216.32.0\/25", + "version":5889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.32.128", + "prefixLen":25, + "network":"192.216.32.128\/25", + "version":5888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.33.0", + "prefixLen":25, + "network":"192.216.33.0\/25", + "version":5887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.33.128", + "prefixLen":25, + "network":"192.216.33.128\/25", + "version":5886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.34.0", + "prefixLen":25, + "network":"192.216.34.0\/25", + "version":5885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.34.128", + "prefixLen":25, + "network":"192.216.34.128\/25", + "version":5884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.35.0", + "prefixLen":25, + "network":"192.216.35.0\/25", + "version":5883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.35.128", + "prefixLen":25, + "network":"192.216.35.128\/25", + "version":5882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.48.0", + "prefixLen":25, + "network":"192.216.48.0\/25", + "version":5881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.48.128", + "prefixLen":25, + "network":"192.216.48.128\/25", + "version":5880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.49.0", + "prefixLen":25, + "network":"192.216.49.0\/25", + "version":5879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.49.128", + "prefixLen":25, + "network":"192.216.49.128\/25", + "version":5878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.50.0", + "prefixLen":25, + "network":"192.216.50.0\/25", + "version":5877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.50.128", + "prefixLen":25, + "network":"192.216.50.128\/25", + "version":5876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.51.0", + "prefixLen":25, + "network":"192.216.51.0\/25", + "version":5875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.51.128", + "prefixLen":25, + "network":"192.216.51.128\/25", + "version":5874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.64.0", + "prefixLen":25, + "network":"192.216.64.0\/25", + "version":5873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.64.128", + "prefixLen":25, + "network":"192.216.64.128\/25", + "version":5872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.65.0", + "prefixLen":25, + "network":"192.216.65.0\/25", + "version":5871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.65.128", + "prefixLen":25, + "network":"192.216.65.128\/25", + "version":5870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.66.0", + "prefixLen":25, + "network":"192.216.66.0\/25", + "version":5869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.66.128", + "prefixLen":25, + "network":"192.216.66.128\/25", + "version":5868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.67.0", + "prefixLen":25, + "network":"192.216.67.0\/25", + "version":5867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.67.128", + "prefixLen":25, + "network":"192.216.67.128\/25", + "version":5866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.80.0", + "prefixLen":25, + "network":"192.216.80.0\/25", + "version":5865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.80.128", + "prefixLen":25, + "network":"192.216.80.128\/25", + "version":5864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.81.0", + "prefixLen":25, + "network":"192.216.81.0\/25", + "version":5863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.81.128", + "prefixLen":25, + "network":"192.216.81.128\/25", + "version":5862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.82.0", + "prefixLen":25, + "network":"192.216.82.0\/25", + "version":5861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.82.128", + "prefixLen":25, + "network":"192.216.82.128\/25", + "version":5860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.83.0", + "prefixLen":25, + "network":"192.216.83.0\/25", + "version":5859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.83.128", + "prefixLen":25, + "network":"192.216.83.128\/25", + "version":5858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.96.0", + "prefixLen":25, + "network":"192.216.96.0\/25", + "version":5857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.96.128", + "prefixLen":25, + "network":"192.216.96.128\/25", + "version":5856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.97.0", + "prefixLen":25, + "network":"192.216.97.0\/25", + "version":5855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.97.128", + "prefixLen":25, + "network":"192.216.97.128\/25", + "version":5854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.98.0", + "prefixLen":25, + "network":"192.216.98.0\/25", + "version":5853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.98.128", + "prefixLen":25, + "network":"192.216.98.128\/25", + "version":5852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.99.0", + "prefixLen":25, + "network":"192.216.99.0\/25", + "version":5851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.99.128", + "prefixLen":25, + "network":"192.216.99.128\/25", + "version":5850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.112.0", + "prefixLen":25, + "network":"192.216.112.0\/25", + "version":5849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.112.128", + "prefixLen":25, + "network":"192.216.112.128\/25", + "version":5848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.113.0", + "prefixLen":25, + "network":"192.216.113.0\/25", + "version":5847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.113.128", + "prefixLen":25, + "network":"192.216.113.128\/25", + "version":5846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.114.0", + "prefixLen":25, + "network":"192.216.114.0\/25", + "version":5845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.114.128", + "prefixLen":25, + "network":"192.216.114.128\/25", + "version":5844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.115.0", + "prefixLen":25, + "network":"192.216.115.0\/25", + "version":5843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.115.128", + "prefixLen":25, + "network":"192.216.115.128\/25", + "version":5842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.128.0", + "prefixLen":25, + "network":"192.216.128.0\/25", + "version":5841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.128.128", + "prefixLen":25, + "network":"192.216.128.128\/25", + "version":5840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.129.0", + "prefixLen":25, + "network":"192.216.129.0\/25", + "version":5839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.129.128", + "prefixLen":25, + "network":"192.216.129.128\/25", + "version":5838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.130.0", + "prefixLen":25, + "network":"192.216.130.0\/25", + "version":5837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.130.128", + "prefixLen":25, + "network":"192.216.130.128\/25", + "version":5836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.131.0", + "prefixLen":25, + "network":"192.216.131.0\/25", + "version":5835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.131.128", + "prefixLen":25, + "network":"192.216.131.128\/25", + "version":5834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.144.0", + "prefixLen":25, + "network":"192.216.144.0\/25", + "version":5833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.144.128", + "prefixLen":25, + "network":"192.216.144.128\/25", + "version":5832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.145.0", + "prefixLen":25, + "network":"192.216.145.0\/25", + "version":5831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.145.128", + "prefixLen":25, + "network":"192.216.145.128\/25", + "version":5830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.146.0", + "prefixLen":25, + "network":"192.216.146.0\/25", + "version":5829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.146.128", + "prefixLen":25, + "network":"192.216.146.128\/25", + "version":5828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.147.0", + "prefixLen":25, + "network":"192.216.147.0\/25", + "version":5827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.147.128", + "prefixLen":25, + "network":"192.216.147.128\/25", + "version":5826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.160.0", + "prefixLen":25, + "network":"192.216.160.0\/25", + "version":5825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.160.128", + "prefixLen":25, + "network":"192.216.160.128\/25", + "version":5824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.161.0", + "prefixLen":25, + "network":"192.216.161.0\/25", + "version":5823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.161.128", + "prefixLen":25, + "network":"192.216.161.128\/25", + "version":5822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.162.0", + "prefixLen":25, + "network":"192.216.162.0\/25", + "version":5821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.162.128", + "prefixLen":25, + "network":"192.216.162.128\/25", + "version":5820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.163.0", + "prefixLen":25, + "network":"192.216.163.0\/25", + "version":5819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.163.128", + "prefixLen":25, + "network":"192.216.163.128\/25", + "version":5818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.176.0", + "prefixLen":25, + "network":"192.216.176.0\/25", + "version":5817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.176.128", + "prefixLen":25, + "network":"192.216.176.128\/25", + "version":5816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.177.0", + "prefixLen":25, + "network":"192.216.177.0\/25", + "version":5815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.177.128", + "prefixLen":25, + "network":"192.216.177.128\/25", + "version":5814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.178.0", + "prefixLen":25, + "network":"192.216.178.0\/25", + "version":5813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.178.128", + "prefixLen":25, + "network":"192.216.178.128\/25", + "version":5812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.179.0", + "prefixLen":25, + "network":"192.216.179.0\/25", + "version":5811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.179.128", + "prefixLen":25, + "network":"192.216.179.128\/25", + "version":5810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.192.0", + "prefixLen":25, + "network":"192.216.192.0\/25", + "version":5809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.192.128", + "prefixLen":25, + "network":"192.216.192.128\/25", + "version":5808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.193.0", + "prefixLen":25, + "network":"192.216.193.0\/25", + "version":5807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.193.128", + "prefixLen":25, + "network":"192.216.193.128\/25", + "version":5806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.194.0", + "prefixLen":25, + "network":"192.216.194.0\/25", + "version":5805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.194.128", + "prefixLen":25, + "network":"192.216.194.128\/25", + "version":5804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.195.0", + "prefixLen":25, + "network":"192.216.195.0\/25", + "version":5803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.195.128", + "prefixLen":25, + "network":"192.216.195.128\/25", + "version":5802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.208.0", + "prefixLen":25, + "network":"192.216.208.0\/25", + "version":5801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.208.128", + "prefixLen":25, + "network":"192.216.208.128\/25", + "version":5800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.209.0", + "prefixLen":25, + "network":"192.216.209.0\/25", + "version":5799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.209.128", + "prefixLen":25, + "network":"192.216.209.128\/25", + "version":5798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.210.0", + "prefixLen":25, + "network":"192.216.210.0\/25", + "version":5797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.210.128", + "prefixLen":25, + "network":"192.216.210.128\/25", + "version":5796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.211.0", + "prefixLen":25, + "network":"192.216.211.0\/25", + "version":5795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.211.128", + "prefixLen":25, + "network":"192.216.211.128\/25", + "version":5794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.224.0", + "prefixLen":25, + "network":"192.216.224.0\/25", + "version":5793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.224.128", + "prefixLen":25, + "network":"192.216.224.128\/25", + "version":5792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.225.0", + "prefixLen":25, + "network":"192.216.225.0\/25", + "version":5791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.225.128", + "prefixLen":25, + "network":"192.216.225.128\/25", + "version":5790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.226.0", + "prefixLen":25, + "network":"192.216.226.0\/25", + "version":5789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.226.128", + "prefixLen":25, + "network":"192.216.226.128\/25", + "version":5788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.227.0", + "prefixLen":25, + "network":"192.216.227.0\/25", + "version":5787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.227.128", + "prefixLen":25, + "network":"192.216.227.128\/25", + "version":5786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.240.0", + "prefixLen":25, + "network":"192.216.240.0\/25", + "version":5785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.240.128", + "prefixLen":25, + "network":"192.216.240.128\/25", + "version":5784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.241.0", + "prefixLen":25, + "network":"192.216.241.0\/25", + "version":5783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.241.128", + "prefixLen":25, + "network":"192.216.241.128\/25", + "version":5782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.242.0", + "prefixLen":25, + "network":"192.216.242.0\/25", + "version":5781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.242.128", + "prefixLen":25, + "network":"192.216.242.128\/25", + "version":5780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.243.0", + "prefixLen":25, + "network":"192.216.243.0\/25", + "version":5779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.216.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.216.243.128", + "prefixLen":25, + "network":"192.216.243.128\/25", + "version":5778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64648 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.0.0", + "prefixLen":25, + "network":"192.217.0.0\/25", + "version":5905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.0.128", + "prefixLen":25, + "network":"192.217.0.128\/25", + "version":6032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.1.0", + "prefixLen":25, + "network":"192.217.1.0\/25", + "version":6031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.1.128", + "prefixLen":25, + "network":"192.217.1.128\/25", + "version":6030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.2.0", + "prefixLen":25, + "network":"192.217.2.0\/25", + "version":6029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.2.128", + "prefixLen":25, + "network":"192.217.2.128\/25", + "version":6028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.3.0", + "prefixLen":25, + "network":"192.217.3.0\/25", + "version":6027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.3.128", + "prefixLen":25, + "network":"192.217.3.128\/25", + "version":6026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.16.0", + "prefixLen":25, + "network":"192.217.16.0\/25", + "version":6025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.16.128", + "prefixLen":25, + "network":"192.217.16.128\/25", + "version":6024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.17.0", + "prefixLen":25, + "network":"192.217.17.0\/25", + "version":6023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.17.128", + "prefixLen":25, + "network":"192.217.17.128\/25", + "version":6022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.18.0", + "prefixLen":25, + "network":"192.217.18.0\/25", + "version":6021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.18.128", + "prefixLen":25, + "network":"192.217.18.128\/25", + "version":6020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.19.0", + "prefixLen":25, + "network":"192.217.19.0\/25", + "version":6019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.19.128", + "prefixLen":25, + "network":"192.217.19.128\/25", + "version":6018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.32.0", + "prefixLen":25, + "network":"192.217.32.0\/25", + "version":6017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.32.128", + "prefixLen":25, + "network":"192.217.32.128\/25", + "version":6016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.33.0", + "prefixLen":25, + "network":"192.217.33.0\/25", + "version":6015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.33.128", + "prefixLen":25, + "network":"192.217.33.128\/25", + "version":6014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.34.0", + "prefixLen":25, + "network":"192.217.34.0\/25", + "version":6013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.34.128", + "prefixLen":25, + "network":"192.217.34.128\/25", + "version":6012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.35.0", + "prefixLen":25, + "network":"192.217.35.0\/25", + "version":6011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.35.128", + "prefixLen":25, + "network":"192.217.35.128\/25", + "version":6010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.48.0", + "prefixLen":25, + "network":"192.217.48.0\/25", + "version":6009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.48.128", + "prefixLen":25, + "network":"192.217.48.128\/25", + "version":6008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.49.0", + "prefixLen":25, + "network":"192.217.49.0\/25", + "version":6007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.49.128", + "prefixLen":25, + "network":"192.217.49.128\/25", + "version":6006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.50.0", + "prefixLen":25, + "network":"192.217.50.0\/25", + "version":6005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.50.128", + "prefixLen":25, + "network":"192.217.50.128\/25", + "version":6004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.51.0", + "prefixLen":25, + "network":"192.217.51.0\/25", + "version":6003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.51.128", + "prefixLen":25, + "network":"192.217.51.128\/25", + "version":6002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.64.0", + "prefixLen":25, + "network":"192.217.64.0\/25", + "version":6001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.64.128", + "prefixLen":25, + "network":"192.217.64.128\/25", + "version":6000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.65.0", + "prefixLen":25, + "network":"192.217.65.0\/25", + "version":5999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.65.128", + "prefixLen":25, + "network":"192.217.65.128\/25", + "version":5998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.66.0", + "prefixLen":25, + "network":"192.217.66.0\/25", + "version":5997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.66.128", + "prefixLen":25, + "network":"192.217.66.128\/25", + "version":5996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.67.0", + "prefixLen":25, + "network":"192.217.67.0\/25", + "version":5995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.67.128", + "prefixLen":25, + "network":"192.217.67.128\/25", + "version":5994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.80.0", + "prefixLen":25, + "network":"192.217.80.0\/25", + "version":5993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.80.128", + "prefixLen":25, + "network":"192.217.80.128\/25", + "version":5992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.81.0", + "prefixLen":25, + "network":"192.217.81.0\/25", + "version":5991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.81.128", + "prefixLen":25, + "network":"192.217.81.128\/25", + "version":5990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.82.0", + "prefixLen":25, + "network":"192.217.82.0\/25", + "version":5989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.82.128", + "prefixLen":25, + "network":"192.217.82.128\/25", + "version":5988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.83.0", + "prefixLen":25, + "network":"192.217.83.0\/25", + "version":5987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.83.128", + "prefixLen":25, + "network":"192.217.83.128\/25", + "version":5986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.96.0", + "prefixLen":25, + "network":"192.217.96.0\/25", + "version":5985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.96.128", + "prefixLen":25, + "network":"192.217.96.128\/25", + "version":5984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.97.0", + "prefixLen":25, + "network":"192.217.97.0\/25", + "version":5983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.97.128", + "prefixLen":25, + "network":"192.217.97.128\/25", + "version":5982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.98.0", + "prefixLen":25, + "network":"192.217.98.0\/25", + "version":5981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.98.128", + "prefixLen":25, + "network":"192.217.98.128\/25", + "version":5980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.99.0", + "prefixLen":25, + "network":"192.217.99.0\/25", + "version":5979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.99.128", + "prefixLen":25, + "network":"192.217.99.128\/25", + "version":5978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.112.0", + "prefixLen":25, + "network":"192.217.112.0\/25", + "version":5977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.112.128", + "prefixLen":25, + "network":"192.217.112.128\/25", + "version":5976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.113.0", + "prefixLen":25, + "network":"192.217.113.0\/25", + "version":5975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.113.128", + "prefixLen":25, + "network":"192.217.113.128\/25", + "version":5974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.114.0", + "prefixLen":25, + "network":"192.217.114.0\/25", + "version":5973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.114.128", + "prefixLen":25, + "network":"192.217.114.128\/25", + "version":5972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.115.0", + "prefixLen":25, + "network":"192.217.115.0\/25", + "version":5971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.115.128", + "prefixLen":25, + "network":"192.217.115.128\/25", + "version":5970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.128.0", + "prefixLen":25, + "network":"192.217.128.0\/25", + "version":5969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.128.128", + "prefixLen":25, + "network":"192.217.128.128\/25", + "version":5968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.129.0", + "prefixLen":25, + "network":"192.217.129.0\/25", + "version":5967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.129.128", + "prefixLen":25, + "network":"192.217.129.128\/25", + "version":5966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.130.0", + "prefixLen":25, + "network":"192.217.130.0\/25", + "version":5965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.130.128", + "prefixLen":25, + "network":"192.217.130.128\/25", + "version":5964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.131.0", + "prefixLen":25, + "network":"192.217.131.0\/25", + "version":5963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.131.128", + "prefixLen":25, + "network":"192.217.131.128\/25", + "version":5962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.144.0", + "prefixLen":25, + "network":"192.217.144.0\/25", + "version":5961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.144.128", + "prefixLen":25, + "network":"192.217.144.128\/25", + "version":5960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.145.0", + "prefixLen":25, + "network":"192.217.145.0\/25", + "version":5959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.145.128", + "prefixLen":25, + "network":"192.217.145.128\/25", + "version":5958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.146.0", + "prefixLen":25, + "network":"192.217.146.0\/25", + "version":5957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.146.128", + "prefixLen":25, + "network":"192.217.146.128\/25", + "version":5956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.147.0", + "prefixLen":25, + "network":"192.217.147.0\/25", + "version":5955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.147.128", + "prefixLen":25, + "network":"192.217.147.128\/25", + "version":5954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.160.0", + "prefixLen":25, + "network":"192.217.160.0\/25", + "version":5953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.160.128", + "prefixLen":25, + "network":"192.217.160.128\/25", + "version":5952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.161.0", + "prefixLen":25, + "network":"192.217.161.0\/25", + "version":5951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.161.128", + "prefixLen":25, + "network":"192.217.161.128\/25", + "version":5950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.162.0", + "prefixLen":25, + "network":"192.217.162.0\/25", + "version":5949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.162.128", + "prefixLen":25, + "network":"192.217.162.128\/25", + "version":5948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.163.0", + "prefixLen":25, + "network":"192.217.163.0\/25", + "version":5947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.163.128", + "prefixLen":25, + "network":"192.217.163.128\/25", + "version":5946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.176.0", + "prefixLen":25, + "network":"192.217.176.0\/25", + "version":5945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.176.128", + "prefixLen":25, + "network":"192.217.176.128\/25", + "version":5944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.177.0", + "prefixLen":25, + "network":"192.217.177.0\/25", + "version":5943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.177.128", + "prefixLen":25, + "network":"192.217.177.128\/25", + "version":5942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.178.0", + "prefixLen":25, + "network":"192.217.178.0\/25", + "version":5941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.178.128", + "prefixLen":25, + "network":"192.217.178.128\/25", + "version":5940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.179.0", + "prefixLen":25, + "network":"192.217.179.0\/25", + "version":5939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.179.128", + "prefixLen":25, + "network":"192.217.179.128\/25", + "version":5938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.192.0", + "prefixLen":25, + "network":"192.217.192.0\/25", + "version":5937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.192.128", + "prefixLen":25, + "network":"192.217.192.128\/25", + "version":5936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.193.0", + "prefixLen":25, + "network":"192.217.193.0\/25", + "version":5935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.193.128", + "prefixLen":25, + "network":"192.217.193.128\/25", + "version":5934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.194.0", + "prefixLen":25, + "network":"192.217.194.0\/25", + "version":5933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.194.128", + "prefixLen":25, + "network":"192.217.194.128\/25", + "version":5932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.195.0", + "prefixLen":25, + "network":"192.217.195.0\/25", + "version":5931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.195.128", + "prefixLen":25, + "network":"192.217.195.128\/25", + "version":5930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.208.0", + "prefixLen":25, + "network":"192.217.208.0\/25", + "version":5929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.208.128", + "prefixLen":25, + "network":"192.217.208.128\/25", + "version":5928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.209.0", + "prefixLen":25, + "network":"192.217.209.0\/25", + "version":5927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.209.128", + "prefixLen":25, + "network":"192.217.209.128\/25", + "version":5926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.210.0", + "prefixLen":25, + "network":"192.217.210.0\/25", + "version":5925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.210.128", + "prefixLen":25, + "network":"192.217.210.128\/25", + "version":5924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.211.0", + "prefixLen":25, + "network":"192.217.211.0\/25", + "version":5923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.211.128", + "prefixLen":25, + "network":"192.217.211.128\/25", + "version":5922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.224.0", + "prefixLen":25, + "network":"192.217.224.0\/25", + "version":5921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.224.128", + "prefixLen":25, + "network":"192.217.224.128\/25", + "version":5920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.225.0", + "prefixLen":25, + "network":"192.217.225.0\/25", + "version":5919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.225.128", + "prefixLen":25, + "network":"192.217.225.128\/25", + "version":5918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.226.0", + "prefixLen":25, + "network":"192.217.226.0\/25", + "version":5917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.226.128", + "prefixLen":25, + "network":"192.217.226.128\/25", + "version":5916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.227.0", + "prefixLen":25, + "network":"192.217.227.0\/25", + "version":5915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.227.128", + "prefixLen":25, + "network":"192.217.227.128\/25", + "version":5914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.240.0", + "prefixLen":25, + "network":"192.217.240.0\/25", + "version":5913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.240.128", + "prefixLen":25, + "network":"192.217.240.128\/25", + "version":5912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.241.0", + "prefixLen":25, + "network":"192.217.241.0\/25", + "version":5911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.241.128", + "prefixLen":25, + "network":"192.217.241.128\/25", + "version":5910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.242.0", + "prefixLen":25, + "network":"192.217.242.0\/25", + "version":5909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.242.128", + "prefixLen":25, + "network":"192.217.242.128\/25", + "version":5908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.243.0", + "prefixLen":25, + "network":"192.217.243.0\/25", + "version":5907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.217.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.217.243.128", + "prefixLen":25, + "network":"192.217.243.128\/25", + "version":5906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64649 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.0.0", + "prefixLen":25, + "network":"192.218.0.0\/25", + "version":6033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.0.128", + "prefixLen":25, + "network":"192.218.0.128\/25", + "version":6160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.1.0", + "prefixLen":25, + "network":"192.218.1.0\/25", + "version":6159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.1.128", + "prefixLen":25, + "network":"192.218.1.128\/25", + "version":6158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.2.0", + "prefixLen":25, + "network":"192.218.2.0\/25", + "version":6157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.2.128", + "prefixLen":25, + "network":"192.218.2.128\/25", + "version":6156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.3.0", + "prefixLen":25, + "network":"192.218.3.0\/25", + "version":6155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.3.128", + "prefixLen":25, + "network":"192.218.3.128\/25", + "version":6154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.16.0", + "prefixLen":25, + "network":"192.218.16.0\/25", + "version":6153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.16.128", + "prefixLen":25, + "network":"192.218.16.128\/25", + "version":6152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.17.0", + "prefixLen":25, + "network":"192.218.17.0\/25", + "version":6151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.17.128", + "prefixLen":25, + "network":"192.218.17.128\/25", + "version":6150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.18.0", + "prefixLen":25, + "network":"192.218.18.0\/25", + "version":6149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.18.128", + "prefixLen":25, + "network":"192.218.18.128\/25", + "version":6148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.19.0", + "prefixLen":25, + "network":"192.218.19.0\/25", + "version":6147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.19.128", + "prefixLen":25, + "network":"192.218.19.128\/25", + "version":6146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.32.0", + "prefixLen":25, + "network":"192.218.32.0\/25", + "version":6145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.32.128", + "prefixLen":25, + "network":"192.218.32.128\/25", + "version":6144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.33.0", + "prefixLen":25, + "network":"192.218.33.0\/25", + "version":6143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.33.128", + "prefixLen":25, + "network":"192.218.33.128\/25", + "version":6142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.34.0", + "prefixLen":25, + "network":"192.218.34.0\/25", + "version":6141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.34.128", + "prefixLen":25, + "network":"192.218.34.128\/25", + "version":6140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.35.0", + "prefixLen":25, + "network":"192.218.35.0\/25", + "version":6139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.35.128", + "prefixLen":25, + "network":"192.218.35.128\/25", + "version":6138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.48.0", + "prefixLen":25, + "network":"192.218.48.0\/25", + "version":6137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.48.128", + "prefixLen":25, + "network":"192.218.48.128\/25", + "version":6136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.49.0", + "prefixLen":25, + "network":"192.218.49.0\/25", + "version":6135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.49.128", + "prefixLen":25, + "network":"192.218.49.128\/25", + "version":6134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.50.0", + "prefixLen":25, + "network":"192.218.50.0\/25", + "version":6133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.50.128", + "prefixLen":25, + "network":"192.218.50.128\/25", + "version":6132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.51.0", + "prefixLen":25, + "network":"192.218.51.0\/25", + "version":6131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.51.128", + "prefixLen":25, + "network":"192.218.51.128\/25", + "version":6130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.64.0", + "prefixLen":25, + "network":"192.218.64.0\/25", + "version":6129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.64.128", + "prefixLen":25, + "network":"192.218.64.128\/25", + "version":6128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.65.0", + "prefixLen":25, + "network":"192.218.65.0\/25", + "version":6127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.65.128", + "prefixLen":25, + "network":"192.218.65.128\/25", + "version":6126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.66.0", + "prefixLen":25, + "network":"192.218.66.0\/25", + "version":6125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.66.128", + "prefixLen":25, + "network":"192.218.66.128\/25", + "version":6124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.67.0", + "prefixLen":25, + "network":"192.218.67.0\/25", + "version":6123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.67.128", + "prefixLen":25, + "network":"192.218.67.128\/25", + "version":6122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.80.0", + "prefixLen":25, + "network":"192.218.80.0\/25", + "version":6121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.80.128", + "prefixLen":25, + "network":"192.218.80.128\/25", + "version":6120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.81.0", + "prefixLen":25, + "network":"192.218.81.0\/25", + "version":6119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.81.128", + "prefixLen":25, + "network":"192.218.81.128\/25", + "version":6118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.82.0", + "prefixLen":25, + "network":"192.218.82.0\/25", + "version":6117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.82.128", + "prefixLen":25, + "network":"192.218.82.128\/25", + "version":6116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.83.0", + "prefixLen":25, + "network":"192.218.83.0\/25", + "version":6115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.83.128", + "prefixLen":25, + "network":"192.218.83.128\/25", + "version":6114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.96.0", + "prefixLen":25, + "network":"192.218.96.0\/25", + "version":6113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.96.128", + "prefixLen":25, + "network":"192.218.96.128\/25", + "version":6112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.97.0", + "prefixLen":25, + "network":"192.218.97.0\/25", + "version":6111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.97.128", + "prefixLen":25, + "network":"192.218.97.128\/25", + "version":6110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.98.0", + "prefixLen":25, + "network":"192.218.98.0\/25", + "version":6109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.98.128", + "prefixLen":25, + "network":"192.218.98.128\/25", + "version":6108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.99.0", + "prefixLen":25, + "network":"192.218.99.0\/25", + "version":6107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.99.128", + "prefixLen":25, + "network":"192.218.99.128\/25", + "version":6106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.112.0", + "prefixLen":25, + "network":"192.218.112.0\/25", + "version":6105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.112.128", + "prefixLen":25, + "network":"192.218.112.128\/25", + "version":6104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.113.0", + "prefixLen":25, + "network":"192.218.113.0\/25", + "version":6103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.113.128", + "prefixLen":25, + "network":"192.218.113.128\/25", + "version":6102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.114.0", + "prefixLen":25, + "network":"192.218.114.0\/25", + "version":6101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.114.128", + "prefixLen":25, + "network":"192.218.114.128\/25", + "version":6100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.115.0", + "prefixLen":25, + "network":"192.218.115.0\/25", + "version":6099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.115.128", + "prefixLen":25, + "network":"192.218.115.128\/25", + "version":6098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.128.0", + "prefixLen":25, + "network":"192.218.128.0\/25", + "version":6097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.128.128", + "prefixLen":25, + "network":"192.218.128.128\/25", + "version":6096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.129.0", + "prefixLen":25, + "network":"192.218.129.0\/25", + "version":6095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.129.128", + "prefixLen":25, + "network":"192.218.129.128\/25", + "version":6094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.130.0", + "prefixLen":25, + "network":"192.218.130.0\/25", + "version":6093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.130.128", + "prefixLen":25, + "network":"192.218.130.128\/25", + "version":6092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.131.0", + "prefixLen":25, + "network":"192.218.131.0\/25", + "version":6091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.131.128", + "prefixLen":25, + "network":"192.218.131.128\/25", + "version":6090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.144.0", + "prefixLen":25, + "network":"192.218.144.0\/25", + "version":6089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.144.128", + "prefixLen":25, + "network":"192.218.144.128\/25", + "version":6088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.145.0", + "prefixLen":25, + "network":"192.218.145.0\/25", + "version":6087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.145.128", + "prefixLen":25, + "network":"192.218.145.128\/25", + "version":6086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.146.0", + "prefixLen":25, + "network":"192.218.146.0\/25", + "version":6085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.146.128", + "prefixLen":25, + "network":"192.218.146.128\/25", + "version":6084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.147.0", + "prefixLen":25, + "network":"192.218.147.0\/25", + "version":6083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.147.128", + "prefixLen":25, + "network":"192.218.147.128\/25", + "version":6082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.160.0", + "prefixLen":25, + "network":"192.218.160.0\/25", + "version":6081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.160.128", + "prefixLen":25, + "network":"192.218.160.128\/25", + "version":6080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.161.0", + "prefixLen":25, + "network":"192.218.161.0\/25", + "version":6079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.161.128", + "prefixLen":25, + "network":"192.218.161.128\/25", + "version":6078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.162.0", + "prefixLen":25, + "network":"192.218.162.0\/25", + "version":6077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.162.128", + "prefixLen":25, + "network":"192.218.162.128\/25", + "version":6076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.163.0", + "prefixLen":25, + "network":"192.218.163.0\/25", + "version":6075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.163.128", + "prefixLen":25, + "network":"192.218.163.128\/25", + "version":6074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.176.0", + "prefixLen":25, + "network":"192.218.176.0\/25", + "version":6073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.176.128", + "prefixLen":25, + "network":"192.218.176.128\/25", + "version":6072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.177.0", + "prefixLen":25, + "network":"192.218.177.0\/25", + "version":6071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.177.128", + "prefixLen":25, + "network":"192.218.177.128\/25", + "version":6070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.178.0", + "prefixLen":25, + "network":"192.218.178.0\/25", + "version":6069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.178.128", + "prefixLen":25, + "network":"192.218.178.128\/25", + "version":6068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.179.0", + "prefixLen":25, + "network":"192.218.179.0\/25", + "version":6067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.179.128", + "prefixLen":25, + "network":"192.218.179.128\/25", + "version":6066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.192.0", + "prefixLen":25, + "network":"192.218.192.0\/25", + "version":6065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.192.128", + "prefixLen":25, + "network":"192.218.192.128\/25", + "version":6064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.193.0", + "prefixLen":25, + "network":"192.218.193.0\/25", + "version":6063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.193.128", + "prefixLen":25, + "network":"192.218.193.128\/25", + "version":6062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.194.0", + "prefixLen":25, + "network":"192.218.194.0\/25", + "version":6061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.194.128", + "prefixLen":25, + "network":"192.218.194.128\/25", + "version":6060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.195.0", + "prefixLen":25, + "network":"192.218.195.0\/25", + "version":6059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.195.128", + "prefixLen":25, + "network":"192.218.195.128\/25", + "version":6058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.208.0", + "prefixLen":25, + "network":"192.218.208.0\/25", + "version":6057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.208.128", + "prefixLen":25, + "network":"192.218.208.128\/25", + "version":6056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.209.0", + "prefixLen":25, + "network":"192.218.209.0\/25", + "version":6055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.209.128", + "prefixLen":25, + "network":"192.218.209.128\/25", + "version":6054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.210.0", + "prefixLen":25, + "network":"192.218.210.0\/25", + "version":6053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.210.128", + "prefixLen":25, + "network":"192.218.210.128\/25", + "version":6052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.211.0", + "prefixLen":25, + "network":"192.218.211.0\/25", + "version":6051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.211.128", + "prefixLen":25, + "network":"192.218.211.128\/25", + "version":6050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.224.0", + "prefixLen":25, + "network":"192.218.224.0\/25", + "version":6049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.224.128", + "prefixLen":25, + "network":"192.218.224.128\/25", + "version":6048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.225.0", + "prefixLen":25, + "network":"192.218.225.0\/25", + "version":6047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.225.128", + "prefixLen":25, + "network":"192.218.225.128\/25", + "version":6046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.226.0", + "prefixLen":25, + "network":"192.218.226.0\/25", + "version":6045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.226.128", + "prefixLen":25, + "network":"192.218.226.128\/25", + "version":6044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.227.0", + "prefixLen":25, + "network":"192.218.227.0\/25", + "version":6043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.227.128", + "prefixLen":25, + "network":"192.218.227.128\/25", + "version":6042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.240.0", + "prefixLen":25, + "network":"192.218.240.0\/25", + "version":6041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.240.128", + "prefixLen":25, + "network":"192.218.240.128\/25", + "version":6040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.241.0", + "prefixLen":25, + "network":"192.218.241.0\/25", + "version":6039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.241.128", + "prefixLen":25, + "network":"192.218.241.128\/25", + "version":6038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.242.0", + "prefixLen":25, + "network":"192.218.242.0\/25", + "version":6037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.242.128", + "prefixLen":25, + "network":"192.218.242.128\/25", + "version":6036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.243.0", + "prefixLen":25, + "network":"192.218.243.0\/25", + "version":6035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.218.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.218.243.128", + "prefixLen":25, + "network":"192.218.243.128\/25", + "version":6034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64650 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.0.0", + "prefixLen":25, + "network":"192.219.0.0\/25", + "version":6161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.0.128", + "prefixLen":25, + "network":"192.219.0.128\/25", + "version":6288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.1.0", + "prefixLen":25, + "network":"192.219.1.0\/25", + "version":6287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.1.128", + "prefixLen":25, + "network":"192.219.1.128\/25", + "version":6286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.2.0", + "prefixLen":25, + "network":"192.219.2.0\/25", + "version":6285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.2.128", + "prefixLen":25, + "network":"192.219.2.128\/25", + "version":6284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.3.0", + "prefixLen":25, + "network":"192.219.3.0\/25", + "version":6283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.3.128", + "prefixLen":25, + "network":"192.219.3.128\/25", + "version":6282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.16.0", + "prefixLen":25, + "network":"192.219.16.0\/25", + "version":6281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.16.128", + "prefixLen":25, + "network":"192.219.16.128\/25", + "version":6280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.17.0", + "prefixLen":25, + "network":"192.219.17.0\/25", + "version":6279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.17.128", + "prefixLen":25, + "network":"192.219.17.128\/25", + "version":6278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.18.0", + "prefixLen":25, + "network":"192.219.18.0\/25", + "version":6277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.18.128", + "prefixLen":25, + "network":"192.219.18.128\/25", + "version":6276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.19.0", + "prefixLen":25, + "network":"192.219.19.0\/25", + "version":6275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.19.128", + "prefixLen":25, + "network":"192.219.19.128\/25", + "version":6274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.32.0", + "prefixLen":25, + "network":"192.219.32.0\/25", + "version":6273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.32.128", + "prefixLen":25, + "network":"192.219.32.128\/25", + "version":6272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.33.0", + "prefixLen":25, + "network":"192.219.33.0\/25", + "version":6271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.33.128", + "prefixLen":25, + "network":"192.219.33.128\/25", + "version":6270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.34.0", + "prefixLen":25, + "network":"192.219.34.0\/25", + "version":6269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.34.128", + "prefixLen":25, + "network":"192.219.34.128\/25", + "version":6268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.35.0", + "prefixLen":25, + "network":"192.219.35.0\/25", + "version":6267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.35.128", + "prefixLen":25, + "network":"192.219.35.128\/25", + "version":6266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.48.0", + "prefixLen":25, + "network":"192.219.48.0\/25", + "version":6265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.48.128", + "prefixLen":25, + "network":"192.219.48.128\/25", + "version":6264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.49.0", + "prefixLen":25, + "network":"192.219.49.0\/25", + "version":6263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.49.128", + "prefixLen":25, + "network":"192.219.49.128\/25", + "version":6262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.50.0", + "prefixLen":25, + "network":"192.219.50.0\/25", + "version":6261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.50.128", + "prefixLen":25, + "network":"192.219.50.128\/25", + "version":6260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.51.0", + "prefixLen":25, + "network":"192.219.51.0\/25", + "version":6259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.51.128", + "prefixLen":25, + "network":"192.219.51.128\/25", + "version":6258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.64.0", + "prefixLen":25, + "network":"192.219.64.0\/25", + "version":6257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.64.128", + "prefixLen":25, + "network":"192.219.64.128\/25", + "version":6256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.65.0", + "prefixLen":25, + "network":"192.219.65.0\/25", + "version":6255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.65.128", + "prefixLen":25, + "network":"192.219.65.128\/25", + "version":6254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.66.0", + "prefixLen":25, + "network":"192.219.66.0\/25", + "version":6253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.66.128", + "prefixLen":25, + "network":"192.219.66.128\/25", + "version":6252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.67.0", + "prefixLen":25, + "network":"192.219.67.0\/25", + "version":6251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.67.128", + "prefixLen":25, + "network":"192.219.67.128\/25", + "version":6250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.80.0", + "prefixLen":25, + "network":"192.219.80.0\/25", + "version":6249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.80.128", + "prefixLen":25, + "network":"192.219.80.128\/25", + "version":6248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.81.0", + "prefixLen":25, + "network":"192.219.81.0\/25", + "version":6247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.81.128", + "prefixLen":25, + "network":"192.219.81.128\/25", + "version":6246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.82.0", + "prefixLen":25, + "network":"192.219.82.0\/25", + "version":6245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.82.128", + "prefixLen":25, + "network":"192.219.82.128\/25", + "version":6244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.83.0", + "prefixLen":25, + "network":"192.219.83.0\/25", + "version":6243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.83.128", + "prefixLen":25, + "network":"192.219.83.128\/25", + "version":6242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.96.0", + "prefixLen":25, + "network":"192.219.96.0\/25", + "version":6241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.96.128", + "prefixLen":25, + "network":"192.219.96.128\/25", + "version":6240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.97.0", + "prefixLen":25, + "network":"192.219.97.0\/25", + "version":6239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.97.128", + "prefixLen":25, + "network":"192.219.97.128\/25", + "version":6238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.98.0", + "prefixLen":25, + "network":"192.219.98.0\/25", + "version":6237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.98.128", + "prefixLen":25, + "network":"192.219.98.128\/25", + "version":6236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.99.0", + "prefixLen":25, + "network":"192.219.99.0\/25", + "version":6235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.99.128", + "prefixLen":25, + "network":"192.219.99.128\/25", + "version":6234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.112.0", + "prefixLen":25, + "network":"192.219.112.0\/25", + "version":6233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.112.128", + "prefixLen":25, + "network":"192.219.112.128\/25", + "version":6232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.113.0", + "prefixLen":25, + "network":"192.219.113.0\/25", + "version":6231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.113.128", + "prefixLen":25, + "network":"192.219.113.128\/25", + "version":6230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.114.0", + "prefixLen":25, + "network":"192.219.114.0\/25", + "version":6229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.114.128", + "prefixLen":25, + "network":"192.219.114.128\/25", + "version":6228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.115.0", + "prefixLen":25, + "network":"192.219.115.0\/25", + "version":6227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.115.128", + "prefixLen":25, + "network":"192.219.115.128\/25", + "version":6226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.128.0", + "prefixLen":25, + "network":"192.219.128.0\/25", + "version":6225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.128.128", + "prefixLen":25, + "network":"192.219.128.128\/25", + "version":6224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.129.0", + "prefixLen":25, + "network":"192.219.129.0\/25", + "version":6223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.129.128", + "prefixLen":25, + "network":"192.219.129.128\/25", + "version":6222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.130.0", + "prefixLen":25, + "network":"192.219.130.0\/25", + "version":6221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.130.128", + "prefixLen":25, + "network":"192.219.130.128\/25", + "version":6220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.131.0", + "prefixLen":25, + "network":"192.219.131.0\/25", + "version":6219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.131.128", + "prefixLen":25, + "network":"192.219.131.128\/25", + "version":6218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.144.0", + "prefixLen":25, + "network":"192.219.144.0\/25", + "version":6217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.144.128", + "prefixLen":25, + "network":"192.219.144.128\/25", + "version":6216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.145.0", + "prefixLen":25, + "network":"192.219.145.0\/25", + "version":6215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.145.128", + "prefixLen":25, + "network":"192.219.145.128\/25", + "version":6214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.146.0", + "prefixLen":25, + "network":"192.219.146.0\/25", + "version":6213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.146.128", + "prefixLen":25, + "network":"192.219.146.128\/25", + "version":6212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.147.0", + "prefixLen":25, + "network":"192.219.147.0\/25", + "version":6211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.147.128", + "prefixLen":25, + "network":"192.219.147.128\/25", + "version":6210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.160.0", + "prefixLen":25, + "network":"192.219.160.0\/25", + "version":6209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.160.128", + "prefixLen":25, + "network":"192.219.160.128\/25", + "version":6208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.161.0", + "prefixLen":25, + "network":"192.219.161.0\/25", + "version":6207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.161.128", + "prefixLen":25, + "network":"192.219.161.128\/25", + "version":6206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.162.0", + "prefixLen":25, + "network":"192.219.162.0\/25", + "version":6205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.162.128", + "prefixLen":25, + "network":"192.219.162.128\/25", + "version":6204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.163.0", + "prefixLen":25, + "network":"192.219.163.0\/25", + "version":6203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.163.128", + "prefixLen":25, + "network":"192.219.163.128\/25", + "version":6202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.176.0", + "prefixLen":25, + "network":"192.219.176.0\/25", + "version":6201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.176.128", + "prefixLen":25, + "network":"192.219.176.128\/25", + "version":6200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.177.0", + "prefixLen":25, + "network":"192.219.177.0\/25", + "version":6199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.177.128", + "prefixLen":25, + "network":"192.219.177.128\/25", + "version":6198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.178.0", + "prefixLen":25, + "network":"192.219.178.0\/25", + "version":6197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.178.128", + "prefixLen":25, + "network":"192.219.178.128\/25", + "version":6196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.179.0", + "prefixLen":25, + "network":"192.219.179.0\/25", + "version":6195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.179.128", + "prefixLen":25, + "network":"192.219.179.128\/25", + "version":6194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.192.0", + "prefixLen":25, + "network":"192.219.192.0\/25", + "version":6193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.192.128", + "prefixLen":25, + "network":"192.219.192.128\/25", + "version":6192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.193.0", + "prefixLen":25, + "network":"192.219.193.0\/25", + "version":6191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.193.128", + "prefixLen":25, + "network":"192.219.193.128\/25", + "version":6190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.194.0", + "prefixLen":25, + "network":"192.219.194.0\/25", + "version":6189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.194.128", + "prefixLen":25, + "network":"192.219.194.128\/25", + "version":6188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.195.0", + "prefixLen":25, + "network":"192.219.195.0\/25", + "version":6187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.195.128", + "prefixLen":25, + "network":"192.219.195.128\/25", + "version":6186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.208.0", + "prefixLen":25, + "network":"192.219.208.0\/25", + "version":6185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.208.128", + "prefixLen":25, + "network":"192.219.208.128\/25", + "version":6184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.209.0", + "prefixLen":25, + "network":"192.219.209.0\/25", + "version":6183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.209.128", + "prefixLen":25, + "network":"192.219.209.128\/25", + "version":6182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.210.0", + "prefixLen":25, + "network":"192.219.210.0\/25", + "version":6181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.210.128", + "prefixLen":25, + "network":"192.219.210.128\/25", + "version":6180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.211.0", + "prefixLen":25, + "network":"192.219.211.0\/25", + "version":6179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.211.128", + "prefixLen":25, + "network":"192.219.211.128\/25", + "version":6178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.224.0", + "prefixLen":25, + "network":"192.219.224.0\/25", + "version":6177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.224.128", + "prefixLen":25, + "network":"192.219.224.128\/25", + "version":6176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.225.0", + "prefixLen":25, + "network":"192.219.225.0\/25", + "version":6175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.225.128", + "prefixLen":25, + "network":"192.219.225.128\/25", + "version":6174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.226.0", + "prefixLen":25, + "network":"192.219.226.0\/25", + "version":6173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.226.128", + "prefixLen":25, + "network":"192.219.226.128\/25", + "version":6172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.227.0", + "prefixLen":25, + "network":"192.219.227.0\/25", + "version":6171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.227.128", + "prefixLen":25, + "network":"192.219.227.128\/25", + "version":6170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.240.0", + "prefixLen":25, + "network":"192.219.240.0\/25", + "version":6169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.240.128", + "prefixLen":25, + "network":"192.219.240.128\/25", + "version":6168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.241.0", + "prefixLen":25, + "network":"192.219.241.0\/25", + "version":6167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.241.128", + "prefixLen":25, + "network":"192.219.241.128\/25", + "version":6166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.242.0", + "prefixLen":25, + "network":"192.219.242.0\/25", + "version":6165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.242.128", + "prefixLen":25, + "network":"192.219.242.128\/25", + "version":6164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.243.0", + "prefixLen":25, + "network":"192.219.243.0\/25", + "version":6163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.219.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.219.243.128", + "prefixLen":25, + "network":"192.219.243.128\/25", + "version":6162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64651 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.0.0", + "prefixLen":25, + "network":"192.220.0.0\/25", + "version":6289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.0.128", + "prefixLen":25, + "network":"192.220.0.128\/25", + "version":6416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.1.0", + "prefixLen":25, + "network":"192.220.1.0\/25", + "version":6415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.1.128", + "prefixLen":25, + "network":"192.220.1.128\/25", + "version":6414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.2.0", + "prefixLen":25, + "network":"192.220.2.0\/25", + "version":6413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.2.128", + "prefixLen":25, + "network":"192.220.2.128\/25", + "version":6412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.3.0", + "prefixLen":25, + "network":"192.220.3.0\/25", + "version":6411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.3.128", + "prefixLen":25, + "network":"192.220.3.128\/25", + "version":6410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.16.0", + "prefixLen":25, + "network":"192.220.16.0\/25", + "version":6409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.16.128", + "prefixLen":25, + "network":"192.220.16.128\/25", + "version":6408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.17.0", + "prefixLen":25, + "network":"192.220.17.0\/25", + "version":6407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.17.128", + "prefixLen":25, + "network":"192.220.17.128\/25", + "version":6406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.18.0", + "prefixLen":25, + "network":"192.220.18.0\/25", + "version":6405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.18.128", + "prefixLen":25, + "network":"192.220.18.128\/25", + "version":6404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.19.0", + "prefixLen":25, + "network":"192.220.19.0\/25", + "version":6403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.19.128", + "prefixLen":25, + "network":"192.220.19.128\/25", + "version":6402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.32.0", + "prefixLen":25, + "network":"192.220.32.0\/25", + "version":6401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.32.128", + "prefixLen":25, + "network":"192.220.32.128\/25", + "version":6400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.33.0", + "prefixLen":25, + "network":"192.220.33.0\/25", + "version":6399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.33.128", + "prefixLen":25, + "network":"192.220.33.128\/25", + "version":6398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.34.0", + "prefixLen":25, + "network":"192.220.34.0\/25", + "version":6397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.34.128", + "prefixLen":25, + "network":"192.220.34.128\/25", + "version":6396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.35.0", + "prefixLen":25, + "network":"192.220.35.0\/25", + "version":6395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.35.128", + "prefixLen":25, + "network":"192.220.35.128\/25", + "version":6394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.48.0", + "prefixLen":25, + "network":"192.220.48.0\/25", + "version":6393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.48.128", + "prefixLen":25, + "network":"192.220.48.128\/25", + "version":6392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.49.0", + "prefixLen":25, + "network":"192.220.49.0\/25", + "version":6391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.49.128", + "prefixLen":25, + "network":"192.220.49.128\/25", + "version":6390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.50.0", + "prefixLen":25, + "network":"192.220.50.0\/25", + "version":6389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.50.128", + "prefixLen":25, + "network":"192.220.50.128\/25", + "version":6388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.51.0", + "prefixLen":25, + "network":"192.220.51.0\/25", + "version":6387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.51.128", + "prefixLen":25, + "network":"192.220.51.128\/25", + "version":6386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.64.0", + "prefixLen":25, + "network":"192.220.64.0\/25", + "version":6385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.64.128", + "prefixLen":25, + "network":"192.220.64.128\/25", + "version":6384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.65.0", + "prefixLen":25, + "network":"192.220.65.0\/25", + "version":6383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.65.128", + "prefixLen":25, + "network":"192.220.65.128\/25", + "version":6382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.66.0", + "prefixLen":25, + "network":"192.220.66.0\/25", + "version":6381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.66.128", + "prefixLen":25, + "network":"192.220.66.128\/25", + "version":6380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.67.0", + "prefixLen":25, + "network":"192.220.67.0\/25", + "version":6379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.67.128", + "prefixLen":25, + "network":"192.220.67.128\/25", + "version":6378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.80.0", + "prefixLen":25, + "network":"192.220.80.0\/25", + "version":6377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.80.128", + "prefixLen":25, + "network":"192.220.80.128\/25", + "version":6376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.81.0", + "prefixLen":25, + "network":"192.220.81.0\/25", + "version":6375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.81.128", + "prefixLen":25, + "network":"192.220.81.128\/25", + "version":6374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.82.0", + "prefixLen":25, + "network":"192.220.82.0\/25", + "version":6373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.82.128", + "prefixLen":25, + "network":"192.220.82.128\/25", + "version":6372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.83.0", + "prefixLen":25, + "network":"192.220.83.0\/25", + "version":6371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.83.128", + "prefixLen":25, + "network":"192.220.83.128\/25", + "version":6370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.96.0", + "prefixLen":25, + "network":"192.220.96.0\/25", + "version":6369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.96.128", + "prefixLen":25, + "network":"192.220.96.128\/25", + "version":6368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.97.0", + "prefixLen":25, + "network":"192.220.97.0\/25", + "version":6367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.97.128", + "prefixLen":25, + "network":"192.220.97.128\/25", + "version":6366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.98.0", + "prefixLen":25, + "network":"192.220.98.0\/25", + "version":6365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.98.128", + "prefixLen":25, + "network":"192.220.98.128\/25", + "version":6364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.99.0", + "prefixLen":25, + "network":"192.220.99.0\/25", + "version":6363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.99.128", + "prefixLen":25, + "network":"192.220.99.128\/25", + "version":6362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.112.0", + "prefixLen":25, + "network":"192.220.112.0\/25", + "version":6361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.112.128", + "prefixLen":25, + "network":"192.220.112.128\/25", + "version":6360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.113.0", + "prefixLen":25, + "network":"192.220.113.0\/25", + "version":6359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.113.128", + "prefixLen":25, + "network":"192.220.113.128\/25", + "version":6358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.114.0", + "prefixLen":25, + "network":"192.220.114.0\/25", + "version":6357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.114.128", + "prefixLen":25, + "network":"192.220.114.128\/25", + "version":6356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.115.0", + "prefixLen":25, + "network":"192.220.115.0\/25", + "version":6355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.115.128", + "prefixLen":25, + "network":"192.220.115.128\/25", + "version":6354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.128.0", + "prefixLen":25, + "network":"192.220.128.0\/25", + "version":6353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.128.128", + "prefixLen":25, + "network":"192.220.128.128\/25", + "version":6352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.129.0", + "prefixLen":25, + "network":"192.220.129.0\/25", + "version":6351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.129.128", + "prefixLen":25, + "network":"192.220.129.128\/25", + "version":6350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.130.0", + "prefixLen":25, + "network":"192.220.130.0\/25", + "version":6349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.130.128", + "prefixLen":25, + "network":"192.220.130.128\/25", + "version":6348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.131.0", + "prefixLen":25, + "network":"192.220.131.0\/25", + "version":6347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.131.128", + "prefixLen":25, + "network":"192.220.131.128\/25", + "version":6346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.144.0", + "prefixLen":25, + "network":"192.220.144.0\/25", + "version":6345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.144.128", + "prefixLen":25, + "network":"192.220.144.128\/25", + "version":6344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.145.0", + "prefixLen":25, + "network":"192.220.145.0\/25", + "version":6343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.145.128", + "prefixLen":25, + "network":"192.220.145.128\/25", + "version":6342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.146.0", + "prefixLen":25, + "network":"192.220.146.0\/25", + "version":6341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.146.128", + "prefixLen":25, + "network":"192.220.146.128\/25", + "version":6340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.147.0", + "prefixLen":25, + "network":"192.220.147.0\/25", + "version":6339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.147.128", + "prefixLen":25, + "network":"192.220.147.128\/25", + "version":6338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.160.0", + "prefixLen":25, + "network":"192.220.160.0\/25", + "version":6337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.160.128", + "prefixLen":25, + "network":"192.220.160.128\/25", + "version":6336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.161.0", + "prefixLen":25, + "network":"192.220.161.0\/25", + "version":6335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.161.128", + "prefixLen":25, + "network":"192.220.161.128\/25", + "version":6334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.162.0", + "prefixLen":25, + "network":"192.220.162.0\/25", + "version":6333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.162.128", + "prefixLen":25, + "network":"192.220.162.128\/25", + "version":6332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.163.0", + "prefixLen":25, + "network":"192.220.163.0\/25", + "version":6331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.163.128", + "prefixLen":25, + "network":"192.220.163.128\/25", + "version":6330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.176.0", + "prefixLen":25, + "network":"192.220.176.0\/25", + "version":6329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.176.128", + "prefixLen":25, + "network":"192.220.176.128\/25", + "version":6328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.177.0", + "prefixLen":25, + "network":"192.220.177.0\/25", + "version":6327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.177.128", + "prefixLen":25, + "network":"192.220.177.128\/25", + "version":6326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.178.0", + "prefixLen":25, + "network":"192.220.178.0\/25", + "version":6325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.178.128", + "prefixLen":25, + "network":"192.220.178.128\/25", + "version":6324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.179.0", + "prefixLen":25, + "network":"192.220.179.0\/25", + "version":6323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.179.128", + "prefixLen":25, + "network":"192.220.179.128\/25", + "version":6322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.192.0", + "prefixLen":25, + "network":"192.220.192.0\/25", + "version":6321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.192.128", + "prefixLen":25, + "network":"192.220.192.128\/25", + "version":6320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.193.0", + "prefixLen":25, + "network":"192.220.193.0\/25", + "version":6319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.193.128", + "prefixLen":25, + "network":"192.220.193.128\/25", + "version":6318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.194.0", + "prefixLen":25, + "network":"192.220.194.0\/25", + "version":6317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.194.128", + "prefixLen":25, + "network":"192.220.194.128\/25", + "version":6316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.195.0", + "prefixLen":25, + "network":"192.220.195.0\/25", + "version":6315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.195.128", + "prefixLen":25, + "network":"192.220.195.128\/25", + "version":6314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.208.0", + "prefixLen":25, + "network":"192.220.208.0\/25", + "version":6313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.208.128", + "prefixLen":25, + "network":"192.220.208.128\/25", + "version":6312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.209.0", + "prefixLen":25, + "network":"192.220.209.0\/25", + "version":6311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.209.128", + "prefixLen":25, + "network":"192.220.209.128\/25", + "version":6310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.210.0", + "prefixLen":25, + "network":"192.220.210.0\/25", + "version":6309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.210.128", + "prefixLen":25, + "network":"192.220.210.128\/25", + "version":6308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.211.0", + "prefixLen":25, + "network":"192.220.211.0\/25", + "version":6307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.211.128", + "prefixLen":25, + "network":"192.220.211.128\/25", + "version":6306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.224.0", + "prefixLen":25, + "network":"192.220.224.0\/25", + "version":6305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.224.128", + "prefixLen":25, + "network":"192.220.224.128\/25", + "version":6304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.225.0", + "prefixLen":25, + "network":"192.220.225.0\/25", + "version":6303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.225.128", + "prefixLen":25, + "network":"192.220.225.128\/25", + "version":6302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.226.0", + "prefixLen":25, + "network":"192.220.226.0\/25", + "version":6301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.226.128", + "prefixLen":25, + "network":"192.220.226.128\/25", + "version":6300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.227.0", + "prefixLen":25, + "network":"192.220.227.0\/25", + "version":6299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.227.128", + "prefixLen":25, + "network":"192.220.227.128\/25", + "version":6298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.240.0", + "prefixLen":25, + "network":"192.220.240.0\/25", + "version":6297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.240.128", + "prefixLen":25, + "network":"192.220.240.128\/25", + "version":6296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.241.0", + "prefixLen":25, + "network":"192.220.241.0\/25", + "version":6295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.241.128", + "prefixLen":25, + "network":"192.220.241.128\/25", + "version":6294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.242.0", + "prefixLen":25, + "network":"192.220.242.0\/25", + "version":6293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.242.128", + "prefixLen":25, + "network":"192.220.242.128\/25", + "version":6292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.243.0", + "prefixLen":25, + "network":"192.220.243.0\/25", + "version":6291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.220.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.220.243.128", + "prefixLen":25, + "network":"192.220.243.128\/25", + "version":6290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64652 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.0.0", + "prefixLen":25, + "network":"192.221.0.0\/25", + "version":6417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.0.128", + "prefixLen":25, + "network":"192.221.0.128\/25", + "version":6544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.1.0", + "prefixLen":25, + "network":"192.221.1.0\/25", + "version":6543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.1.128", + "prefixLen":25, + "network":"192.221.1.128\/25", + "version":6542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.2.0", + "prefixLen":25, + "network":"192.221.2.0\/25", + "version":6541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.2.128", + "prefixLen":25, + "network":"192.221.2.128\/25", + "version":6540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.3.0", + "prefixLen":25, + "network":"192.221.3.0\/25", + "version":6539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.3.128", + "prefixLen":25, + "network":"192.221.3.128\/25", + "version":6538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.16.0", + "prefixLen":25, + "network":"192.221.16.0\/25", + "version":6537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.16.128", + "prefixLen":25, + "network":"192.221.16.128\/25", + "version":6536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.17.0", + "prefixLen":25, + "network":"192.221.17.0\/25", + "version":6535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.17.128", + "prefixLen":25, + "network":"192.221.17.128\/25", + "version":6534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.18.0", + "prefixLen":25, + "network":"192.221.18.0\/25", + "version":6533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.18.128", + "prefixLen":25, + "network":"192.221.18.128\/25", + "version":6532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.19.0", + "prefixLen":25, + "network":"192.221.19.0\/25", + "version":6531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.19.128", + "prefixLen":25, + "network":"192.221.19.128\/25", + "version":6530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.32.0", + "prefixLen":25, + "network":"192.221.32.0\/25", + "version":6529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.32.128", + "prefixLen":25, + "network":"192.221.32.128\/25", + "version":6528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.33.0", + "prefixLen":25, + "network":"192.221.33.0\/25", + "version":6527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.33.128", + "prefixLen":25, + "network":"192.221.33.128\/25", + "version":6526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.34.0", + "prefixLen":25, + "network":"192.221.34.0\/25", + "version":6525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.34.128", + "prefixLen":25, + "network":"192.221.34.128\/25", + "version":6524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.35.0", + "prefixLen":25, + "network":"192.221.35.0\/25", + "version":6523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.35.128", + "prefixLen":25, + "network":"192.221.35.128\/25", + "version":6522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.48.0", + "prefixLen":25, + "network":"192.221.48.0\/25", + "version":6521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.48.128", + "prefixLen":25, + "network":"192.221.48.128\/25", + "version":6520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.49.0", + "prefixLen":25, + "network":"192.221.49.0\/25", + "version":6519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.49.128", + "prefixLen":25, + "network":"192.221.49.128\/25", + "version":6518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.50.0", + "prefixLen":25, + "network":"192.221.50.0\/25", + "version":6517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.50.128", + "prefixLen":25, + "network":"192.221.50.128\/25", + "version":6516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.51.0", + "prefixLen":25, + "network":"192.221.51.0\/25", + "version":6515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.51.128", + "prefixLen":25, + "network":"192.221.51.128\/25", + "version":6514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.64.0", + "prefixLen":25, + "network":"192.221.64.0\/25", + "version":6513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.64.128", + "prefixLen":25, + "network":"192.221.64.128\/25", + "version":6512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.65.0", + "prefixLen":25, + "network":"192.221.65.0\/25", + "version":6511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.65.128", + "prefixLen":25, + "network":"192.221.65.128\/25", + "version":6510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.66.0", + "prefixLen":25, + "network":"192.221.66.0\/25", + "version":6509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.66.128", + "prefixLen":25, + "network":"192.221.66.128\/25", + "version":6508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.67.0", + "prefixLen":25, + "network":"192.221.67.0\/25", + "version":6507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.67.128", + "prefixLen":25, + "network":"192.221.67.128\/25", + "version":6506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.80.0", + "prefixLen":25, + "network":"192.221.80.0\/25", + "version":6505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.80.128", + "prefixLen":25, + "network":"192.221.80.128\/25", + "version":6504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.81.0", + "prefixLen":25, + "network":"192.221.81.0\/25", + "version":6503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.81.128", + "prefixLen":25, + "network":"192.221.81.128\/25", + "version":6502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.82.0", + "prefixLen":25, + "network":"192.221.82.0\/25", + "version":6501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.82.128", + "prefixLen":25, + "network":"192.221.82.128\/25", + "version":6500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.83.0", + "prefixLen":25, + "network":"192.221.83.0\/25", + "version":6499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.83.128", + "prefixLen":25, + "network":"192.221.83.128\/25", + "version":6498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.96.0", + "prefixLen":25, + "network":"192.221.96.0\/25", + "version":6497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.96.128", + "prefixLen":25, + "network":"192.221.96.128\/25", + "version":6496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.97.0", + "prefixLen":25, + "network":"192.221.97.0\/25", + "version":6495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.97.128", + "prefixLen":25, + "network":"192.221.97.128\/25", + "version":6494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.98.0", + "prefixLen":25, + "network":"192.221.98.0\/25", + "version":6493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.98.128", + "prefixLen":25, + "network":"192.221.98.128\/25", + "version":6492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.99.0", + "prefixLen":25, + "network":"192.221.99.0\/25", + "version":6491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.99.128", + "prefixLen":25, + "network":"192.221.99.128\/25", + "version":6490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.112.0", + "prefixLen":25, + "network":"192.221.112.0\/25", + "version":6489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.112.128", + "prefixLen":25, + "network":"192.221.112.128\/25", + "version":6488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.113.0", + "prefixLen":25, + "network":"192.221.113.0\/25", + "version":6487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.113.128", + "prefixLen":25, + "network":"192.221.113.128\/25", + "version":6486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.114.0", + "prefixLen":25, + "network":"192.221.114.0\/25", + "version":6485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.114.128", + "prefixLen":25, + "network":"192.221.114.128\/25", + "version":6484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.115.0", + "prefixLen":25, + "network":"192.221.115.0\/25", + "version":6483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.115.128", + "prefixLen":25, + "network":"192.221.115.128\/25", + "version":6482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.128.0", + "prefixLen":25, + "network":"192.221.128.0\/25", + "version":6481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.128.128", + "prefixLen":25, + "network":"192.221.128.128\/25", + "version":6480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.129.0", + "prefixLen":25, + "network":"192.221.129.0\/25", + "version":6479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.129.128", + "prefixLen":25, + "network":"192.221.129.128\/25", + "version":6478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.130.0", + "prefixLen":25, + "network":"192.221.130.0\/25", + "version":6477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.130.128", + "prefixLen":25, + "network":"192.221.130.128\/25", + "version":6476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.131.0", + "prefixLen":25, + "network":"192.221.131.0\/25", + "version":6475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.131.128", + "prefixLen":25, + "network":"192.221.131.128\/25", + "version":6474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.144.0", + "prefixLen":25, + "network":"192.221.144.0\/25", + "version":6473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.144.128", + "prefixLen":25, + "network":"192.221.144.128\/25", + "version":6472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.145.0", + "prefixLen":25, + "network":"192.221.145.0\/25", + "version":6471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.145.128", + "prefixLen":25, + "network":"192.221.145.128\/25", + "version":6470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.146.0", + "prefixLen":25, + "network":"192.221.146.0\/25", + "version":6469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.146.128", + "prefixLen":25, + "network":"192.221.146.128\/25", + "version":6468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.147.0", + "prefixLen":25, + "network":"192.221.147.0\/25", + "version":6467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.147.128", + "prefixLen":25, + "network":"192.221.147.128\/25", + "version":6466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.160.0", + "prefixLen":25, + "network":"192.221.160.0\/25", + "version":6465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.160.128", + "prefixLen":25, + "network":"192.221.160.128\/25", + "version":6464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.161.0", + "prefixLen":25, + "network":"192.221.161.0\/25", + "version":6463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.161.128", + "prefixLen":25, + "network":"192.221.161.128\/25", + "version":6462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.162.0", + "prefixLen":25, + "network":"192.221.162.0\/25", + "version":6461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.162.128", + "prefixLen":25, + "network":"192.221.162.128\/25", + "version":6460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.163.0", + "prefixLen":25, + "network":"192.221.163.0\/25", + "version":6459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.163.128", + "prefixLen":25, + "network":"192.221.163.128\/25", + "version":6458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.176.0", + "prefixLen":25, + "network":"192.221.176.0\/25", + "version":6457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.176.128", + "prefixLen":25, + "network":"192.221.176.128\/25", + "version":6456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.177.0", + "prefixLen":25, + "network":"192.221.177.0\/25", + "version":6455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.177.128", + "prefixLen":25, + "network":"192.221.177.128\/25", + "version":6454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.178.0", + "prefixLen":25, + "network":"192.221.178.0\/25", + "version":6453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.178.128", + "prefixLen":25, + "network":"192.221.178.128\/25", + "version":6452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.179.0", + "prefixLen":25, + "network":"192.221.179.0\/25", + "version":6451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.179.128", + "prefixLen":25, + "network":"192.221.179.128\/25", + "version":6450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.192.0", + "prefixLen":25, + "network":"192.221.192.0\/25", + "version":6449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.192.128", + "prefixLen":25, + "network":"192.221.192.128\/25", + "version":6448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.193.0", + "prefixLen":25, + "network":"192.221.193.0\/25", + "version":6447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.193.128", + "prefixLen":25, + "network":"192.221.193.128\/25", + "version":6446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.194.0", + "prefixLen":25, + "network":"192.221.194.0\/25", + "version":6445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.194.128", + "prefixLen":25, + "network":"192.221.194.128\/25", + "version":6444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.195.0", + "prefixLen":25, + "network":"192.221.195.0\/25", + "version":6443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.195.128", + "prefixLen":25, + "network":"192.221.195.128\/25", + "version":6442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.208.0", + "prefixLen":25, + "network":"192.221.208.0\/25", + "version":6441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.208.128", + "prefixLen":25, + "network":"192.221.208.128\/25", + "version":6440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.209.0", + "prefixLen":25, + "network":"192.221.209.0\/25", + "version":6439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.209.128", + "prefixLen":25, + "network":"192.221.209.128\/25", + "version":6438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.210.0", + "prefixLen":25, + "network":"192.221.210.0\/25", + "version":6437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.210.128", + "prefixLen":25, + "network":"192.221.210.128\/25", + "version":6436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.211.0", + "prefixLen":25, + "network":"192.221.211.0\/25", + "version":6435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.211.128", + "prefixLen":25, + "network":"192.221.211.128\/25", + "version":6434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.224.0", + "prefixLen":25, + "network":"192.221.224.0\/25", + "version":6433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.224.128", + "prefixLen":25, + "network":"192.221.224.128\/25", + "version":6432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.225.0", + "prefixLen":25, + "network":"192.221.225.0\/25", + "version":6431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.225.128", + "prefixLen":25, + "network":"192.221.225.128\/25", + "version":6430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.226.0", + "prefixLen":25, + "network":"192.221.226.0\/25", + "version":6429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.226.128", + "prefixLen":25, + "network":"192.221.226.128\/25", + "version":6428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.227.0", + "prefixLen":25, + "network":"192.221.227.0\/25", + "version":6427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.227.128", + "prefixLen":25, + "network":"192.221.227.128\/25", + "version":6426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.240.0", + "prefixLen":25, + "network":"192.221.240.0\/25", + "version":6425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.240.128", + "prefixLen":25, + "network":"192.221.240.128\/25", + "version":6424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.241.0", + "prefixLen":25, + "network":"192.221.241.0\/25", + "version":6423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.241.128", + "prefixLen":25, + "network":"192.221.241.128\/25", + "version":6422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.242.0", + "prefixLen":25, + "network":"192.221.242.0\/25", + "version":6421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.242.128", + "prefixLen":25, + "network":"192.221.242.128\/25", + "version":6420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.243.0", + "prefixLen":25, + "network":"192.221.243.0\/25", + "version":6419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.221.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.221.243.128", + "prefixLen":25, + "network":"192.221.243.128\/25", + "version":6418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64653 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.0.0", + "prefixLen":25, + "network":"192.222.0.0\/25", + "version":6545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.0.128", + "prefixLen":25, + "network":"192.222.0.128\/25", + "version":6672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.1.0", + "prefixLen":25, + "network":"192.222.1.0\/25", + "version":6671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.1.128", + "prefixLen":25, + "network":"192.222.1.128\/25", + "version":6670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.2.0", + "prefixLen":25, + "network":"192.222.2.0\/25", + "version":6669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.2.128", + "prefixLen":25, + "network":"192.222.2.128\/25", + "version":6668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.3.0", + "prefixLen":25, + "network":"192.222.3.0\/25", + "version":6667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.3.128", + "prefixLen":25, + "network":"192.222.3.128\/25", + "version":6666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.16.0", + "prefixLen":25, + "network":"192.222.16.0\/25", + "version":6665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.16.128", + "prefixLen":25, + "network":"192.222.16.128\/25", + "version":6664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.17.0", + "prefixLen":25, + "network":"192.222.17.0\/25", + "version":6663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.17.128", + "prefixLen":25, + "network":"192.222.17.128\/25", + "version":6662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.18.0", + "prefixLen":25, + "network":"192.222.18.0\/25", + "version":6661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.18.128", + "prefixLen":25, + "network":"192.222.18.128\/25", + "version":6660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.19.0", + "prefixLen":25, + "network":"192.222.19.0\/25", + "version":6659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.19.128", + "prefixLen":25, + "network":"192.222.19.128\/25", + "version":6658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.32.0", + "prefixLen":25, + "network":"192.222.32.0\/25", + "version":6657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.32.128", + "prefixLen":25, + "network":"192.222.32.128\/25", + "version":6656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.33.0", + "prefixLen":25, + "network":"192.222.33.0\/25", + "version":6655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.33.128", + "prefixLen":25, + "network":"192.222.33.128\/25", + "version":6654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.34.0", + "prefixLen":25, + "network":"192.222.34.0\/25", + "version":6653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.34.128", + "prefixLen":25, + "network":"192.222.34.128\/25", + "version":6652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.35.0", + "prefixLen":25, + "network":"192.222.35.0\/25", + "version":6651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.35.128", + "prefixLen":25, + "network":"192.222.35.128\/25", + "version":6650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.48.0", + "prefixLen":25, + "network":"192.222.48.0\/25", + "version":6649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.48.128", + "prefixLen":25, + "network":"192.222.48.128\/25", + "version":6648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.49.0", + "prefixLen":25, + "network":"192.222.49.0\/25", + "version":6647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.49.128", + "prefixLen":25, + "network":"192.222.49.128\/25", + "version":6646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.50.0", + "prefixLen":25, + "network":"192.222.50.0\/25", + "version":6645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.50.128", + "prefixLen":25, + "network":"192.222.50.128\/25", + "version":6644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.51.0", + "prefixLen":25, + "network":"192.222.51.0\/25", + "version":6643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.51.128", + "prefixLen":25, + "network":"192.222.51.128\/25", + "version":6642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.64.0", + "prefixLen":25, + "network":"192.222.64.0\/25", + "version":6641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.64.128", + "prefixLen":25, + "network":"192.222.64.128\/25", + "version":6640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.65.0", + "prefixLen":25, + "network":"192.222.65.0\/25", + "version":6639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.65.128", + "prefixLen":25, + "network":"192.222.65.128\/25", + "version":6638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.66.0", + "prefixLen":25, + "network":"192.222.66.0\/25", + "version":6637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.66.128", + "prefixLen":25, + "network":"192.222.66.128\/25", + "version":6636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.67.0", + "prefixLen":25, + "network":"192.222.67.0\/25", + "version":6635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.67.128", + "prefixLen":25, + "network":"192.222.67.128\/25", + "version":6634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.80.0", + "prefixLen":25, + "network":"192.222.80.0\/25", + "version":6633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.80.128", + "prefixLen":25, + "network":"192.222.80.128\/25", + "version":6632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.81.0", + "prefixLen":25, + "network":"192.222.81.0\/25", + "version":6631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.81.128", + "prefixLen":25, + "network":"192.222.81.128\/25", + "version":6630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.82.0", + "prefixLen":25, + "network":"192.222.82.0\/25", + "version":6629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.82.128", + "prefixLen":25, + "network":"192.222.82.128\/25", + "version":6628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.83.0", + "prefixLen":25, + "network":"192.222.83.0\/25", + "version":6627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.83.128", + "prefixLen":25, + "network":"192.222.83.128\/25", + "version":6626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.96.0", + "prefixLen":25, + "network":"192.222.96.0\/25", + "version":6625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.96.128", + "prefixLen":25, + "network":"192.222.96.128\/25", + "version":6624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.97.0", + "prefixLen":25, + "network":"192.222.97.0\/25", + "version":6623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.97.128", + "prefixLen":25, + "network":"192.222.97.128\/25", + "version":6622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.98.0", + "prefixLen":25, + "network":"192.222.98.0\/25", + "version":6621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.98.128", + "prefixLen":25, + "network":"192.222.98.128\/25", + "version":6620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.99.0", + "prefixLen":25, + "network":"192.222.99.0\/25", + "version":6619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.99.128", + "prefixLen":25, + "network":"192.222.99.128\/25", + "version":6618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.112.0", + "prefixLen":25, + "network":"192.222.112.0\/25", + "version":6617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.112.128", + "prefixLen":25, + "network":"192.222.112.128\/25", + "version":6616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.113.0", + "prefixLen":25, + "network":"192.222.113.0\/25", + "version":6615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.113.128", + "prefixLen":25, + "network":"192.222.113.128\/25", + "version":6614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.114.0", + "prefixLen":25, + "network":"192.222.114.0\/25", + "version":6613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.114.128", + "prefixLen":25, + "network":"192.222.114.128\/25", + "version":6612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.115.0", + "prefixLen":25, + "network":"192.222.115.0\/25", + "version":6611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.115.128", + "prefixLen":25, + "network":"192.222.115.128\/25", + "version":6610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.128.0", + "prefixLen":25, + "network":"192.222.128.0\/25", + "version":6609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.128.128", + "prefixLen":25, + "network":"192.222.128.128\/25", + "version":6608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.129.0", + "prefixLen":25, + "network":"192.222.129.0\/25", + "version":6607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.129.128", + "prefixLen":25, + "network":"192.222.129.128\/25", + "version":6606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.130.0", + "prefixLen":25, + "network":"192.222.130.0\/25", + "version":6605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.130.128", + "prefixLen":25, + "network":"192.222.130.128\/25", + "version":6604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.131.0", + "prefixLen":25, + "network":"192.222.131.0\/25", + "version":6603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.131.128", + "prefixLen":25, + "network":"192.222.131.128\/25", + "version":6602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.144.0", + "prefixLen":25, + "network":"192.222.144.0\/25", + "version":6601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.144.128", + "prefixLen":25, + "network":"192.222.144.128\/25", + "version":6600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.145.0", + "prefixLen":25, + "network":"192.222.145.0\/25", + "version":6599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.145.128", + "prefixLen":25, + "network":"192.222.145.128\/25", + "version":6598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.146.0", + "prefixLen":25, + "network":"192.222.146.0\/25", + "version":6597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.146.128", + "prefixLen":25, + "network":"192.222.146.128\/25", + "version":6596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.147.0", + "prefixLen":25, + "network":"192.222.147.0\/25", + "version":6595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.147.128", + "prefixLen":25, + "network":"192.222.147.128\/25", + "version":6594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.160.0", + "prefixLen":25, + "network":"192.222.160.0\/25", + "version":6593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.160.128", + "prefixLen":25, + "network":"192.222.160.128\/25", + "version":6592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.161.0", + "prefixLen":25, + "network":"192.222.161.0\/25", + "version":6591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.161.128", + "prefixLen":25, + "network":"192.222.161.128\/25", + "version":6590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.162.0", + "prefixLen":25, + "network":"192.222.162.0\/25", + "version":6589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.162.128", + "prefixLen":25, + "network":"192.222.162.128\/25", + "version":6588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.163.0", + "prefixLen":25, + "network":"192.222.163.0\/25", + "version":6587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.163.128", + "prefixLen":25, + "network":"192.222.163.128\/25", + "version":6586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.176.0", + "prefixLen":25, + "network":"192.222.176.0\/25", + "version":6585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.176.128", + "prefixLen":25, + "network":"192.222.176.128\/25", + "version":6584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.177.0", + "prefixLen":25, + "network":"192.222.177.0\/25", + "version":6583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.177.128", + "prefixLen":25, + "network":"192.222.177.128\/25", + "version":6582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.178.0", + "prefixLen":25, + "network":"192.222.178.0\/25", + "version":6581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.178.128", + "prefixLen":25, + "network":"192.222.178.128\/25", + "version":6580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.179.0", + "prefixLen":25, + "network":"192.222.179.0\/25", + "version":6579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.179.128", + "prefixLen":25, + "network":"192.222.179.128\/25", + "version":6578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.192.0", + "prefixLen":25, + "network":"192.222.192.0\/25", + "version":6577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.192.128", + "prefixLen":25, + "network":"192.222.192.128\/25", + "version":6576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.193.0", + "prefixLen":25, + "network":"192.222.193.0\/25", + "version":6575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.193.128", + "prefixLen":25, + "network":"192.222.193.128\/25", + "version":6574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.194.0", + "prefixLen":25, + "network":"192.222.194.0\/25", + "version":6573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.194.128", + "prefixLen":25, + "network":"192.222.194.128\/25", + "version":6572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.195.0", + "prefixLen":25, + "network":"192.222.195.0\/25", + "version":6571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.195.128", + "prefixLen":25, + "network":"192.222.195.128\/25", + "version":6570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.208.0", + "prefixLen":25, + "network":"192.222.208.0\/25", + "version":6569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.208.128", + "prefixLen":25, + "network":"192.222.208.128\/25", + "version":6568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.209.0", + "prefixLen":25, + "network":"192.222.209.0\/25", + "version":6567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.209.128", + "prefixLen":25, + "network":"192.222.209.128\/25", + "version":6566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.210.0", + "prefixLen":25, + "network":"192.222.210.0\/25", + "version":6565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.210.128", + "prefixLen":25, + "network":"192.222.210.128\/25", + "version":6564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.211.0", + "prefixLen":25, + "network":"192.222.211.0\/25", + "version":6563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.211.128", + "prefixLen":25, + "network":"192.222.211.128\/25", + "version":6562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.224.0", + "prefixLen":25, + "network":"192.222.224.0\/25", + "version":6561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.224.128", + "prefixLen":25, + "network":"192.222.224.128\/25", + "version":6560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.225.0", + "prefixLen":25, + "network":"192.222.225.0\/25", + "version":6559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.225.128", + "prefixLen":25, + "network":"192.222.225.128\/25", + "version":6558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.226.0", + "prefixLen":25, + "network":"192.222.226.0\/25", + "version":6557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.226.128", + "prefixLen":25, + "network":"192.222.226.128\/25", + "version":6556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.227.0", + "prefixLen":25, + "network":"192.222.227.0\/25", + "version":6555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.227.128", + "prefixLen":25, + "network":"192.222.227.128\/25", + "version":6554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.240.0", + "prefixLen":25, + "network":"192.222.240.0\/25", + "version":6553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.240.128", + "prefixLen":25, + "network":"192.222.240.128\/25", + "version":6552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.241.0", + "prefixLen":25, + "network":"192.222.241.0\/25", + "version":6551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.241.128", + "prefixLen":25, + "network":"192.222.241.128\/25", + "version":6550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.242.0", + "prefixLen":25, + "network":"192.222.242.0\/25", + "version":6549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.242.128", + "prefixLen":25, + "network":"192.222.242.128\/25", + "version":6548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.243.0", + "prefixLen":25, + "network":"192.222.243.0\/25", + "version":6547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.222.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.222.243.128", + "prefixLen":25, + "network":"192.222.243.128\/25", + "version":6546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64654 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.0.0", + "prefixLen":25, + "network":"192.223.0.0\/25", + "version":6673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.0.128", + "prefixLen":25, + "network":"192.223.0.128\/25", + "version":6800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.1.0", + "prefixLen":25, + "network":"192.223.1.0\/25", + "version":6799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.1.128", + "prefixLen":25, + "network":"192.223.1.128\/25", + "version":6798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.2.0", + "prefixLen":25, + "network":"192.223.2.0\/25", + "version":6797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.2.128", + "prefixLen":25, + "network":"192.223.2.128\/25", + "version":6796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.3.0", + "prefixLen":25, + "network":"192.223.3.0\/25", + "version":6795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.3.128", + "prefixLen":25, + "network":"192.223.3.128\/25", + "version":6794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.16.0", + "prefixLen":25, + "network":"192.223.16.0\/25", + "version":6793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.16.128", + "prefixLen":25, + "network":"192.223.16.128\/25", + "version":6792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.17.0", + "prefixLen":25, + "network":"192.223.17.0\/25", + "version":6791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.17.128", + "prefixLen":25, + "network":"192.223.17.128\/25", + "version":6790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.18.0", + "prefixLen":25, + "network":"192.223.18.0\/25", + "version":6789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.18.128", + "prefixLen":25, + "network":"192.223.18.128\/25", + "version":6788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.19.0", + "prefixLen":25, + "network":"192.223.19.0\/25", + "version":6787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.19.128", + "prefixLen":25, + "network":"192.223.19.128\/25", + "version":6786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.32.0", + "prefixLen":25, + "network":"192.223.32.0\/25", + "version":6785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.32.128", + "prefixLen":25, + "network":"192.223.32.128\/25", + "version":6784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.33.0", + "prefixLen":25, + "network":"192.223.33.0\/25", + "version":6783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.33.128", + "prefixLen":25, + "network":"192.223.33.128\/25", + "version":6782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.34.0", + "prefixLen":25, + "network":"192.223.34.0\/25", + "version":6781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.34.128", + "prefixLen":25, + "network":"192.223.34.128\/25", + "version":6780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.35.0", + "prefixLen":25, + "network":"192.223.35.0\/25", + "version":6779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.35.128", + "prefixLen":25, + "network":"192.223.35.128\/25", + "version":6778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.48.0", + "prefixLen":25, + "network":"192.223.48.0\/25", + "version":6777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.48.128", + "prefixLen":25, + "network":"192.223.48.128\/25", + "version":6776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.49.0", + "prefixLen":25, + "network":"192.223.49.0\/25", + "version":6775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.49.128", + "prefixLen":25, + "network":"192.223.49.128\/25", + "version":6774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.50.0", + "prefixLen":25, + "network":"192.223.50.0\/25", + "version":6773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.50.128", + "prefixLen":25, + "network":"192.223.50.128\/25", + "version":6772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.51.0", + "prefixLen":25, + "network":"192.223.51.0\/25", + "version":6771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.51.128", + "prefixLen":25, + "network":"192.223.51.128\/25", + "version":6770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.64.0", + "prefixLen":25, + "network":"192.223.64.0\/25", + "version":6769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.64.128", + "prefixLen":25, + "network":"192.223.64.128\/25", + "version":6768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.65.0", + "prefixLen":25, + "network":"192.223.65.0\/25", + "version":6767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.65.128", + "prefixLen":25, + "network":"192.223.65.128\/25", + "version":6766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.66.0", + "prefixLen":25, + "network":"192.223.66.0\/25", + "version":6765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.66.128", + "prefixLen":25, + "network":"192.223.66.128\/25", + "version":6764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.67.0", + "prefixLen":25, + "network":"192.223.67.0\/25", + "version":6763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.67.128", + "prefixLen":25, + "network":"192.223.67.128\/25", + "version":6762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.80.0", + "prefixLen":25, + "network":"192.223.80.0\/25", + "version":6761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.80.128", + "prefixLen":25, + "network":"192.223.80.128\/25", + "version":6760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.81.0", + "prefixLen":25, + "network":"192.223.81.0\/25", + "version":6759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.81.128", + "prefixLen":25, + "network":"192.223.81.128\/25", + "version":6758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.82.0", + "prefixLen":25, + "network":"192.223.82.0\/25", + "version":6757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.82.128", + "prefixLen":25, + "network":"192.223.82.128\/25", + "version":6756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.83.0", + "prefixLen":25, + "network":"192.223.83.0\/25", + "version":6755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.83.128", + "prefixLen":25, + "network":"192.223.83.128\/25", + "version":6754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.96.0", + "prefixLen":25, + "network":"192.223.96.0\/25", + "version":6753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.96.128", + "prefixLen":25, + "network":"192.223.96.128\/25", + "version":6752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.97.0", + "prefixLen":25, + "network":"192.223.97.0\/25", + "version":6751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.97.128", + "prefixLen":25, + "network":"192.223.97.128\/25", + "version":6750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.98.0", + "prefixLen":25, + "network":"192.223.98.0\/25", + "version":6749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.98.128", + "prefixLen":25, + "network":"192.223.98.128\/25", + "version":6748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.99.0", + "prefixLen":25, + "network":"192.223.99.0\/25", + "version":6747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.99.128", + "prefixLen":25, + "network":"192.223.99.128\/25", + "version":6746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.112.0", + "prefixLen":25, + "network":"192.223.112.0\/25", + "version":6745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.112.128", + "prefixLen":25, + "network":"192.223.112.128\/25", + "version":6744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.113.0", + "prefixLen":25, + "network":"192.223.113.0\/25", + "version":6743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.113.128", + "prefixLen":25, + "network":"192.223.113.128\/25", + "version":6742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.114.0", + "prefixLen":25, + "network":"192.223.114.0\/25", + "version":6741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.114.128", + "prefixLen":25, + "network":"192.223.114.128\/25", + "version":6740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.115.0", + "prefixLen":25, + "network":"192.223.115.0\/25", + "version":6739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.115.128", + "prefixLen":25, + "network":"192.223.115.128\/25", + "version":6738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.128.0", + "prefixLen":25, + "network":"192.223.128.0\/25", + "version":6737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.128.128", + "prefixLen":25, + "network":"192.223.128.128\/25", + "version":6736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.129.0", + "prefixLen":25, + "network":"192.223.129.0\/25", + "version":6735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.129.128", + "prefixLen":25, + "network":"192.223.129.128\/25", + "version":6734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.130.0", + "prefixLen":25, + "network":"192.223.130.0\/25", + "version":6733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.130.128", + "prefixLen":25, + "network":"192.223.130.128\/25", + "version":6732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.131.0", + "prefixLen":25, + "network":"192.223.131.0\/25", + "version":6731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.131.128", + "prefixLen":25, + "network":"192.223.131.128\/25", + "version":6730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.144.0", + "prefixLen":25, + "network":"192.223.144.0\/25", + "version":6729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.144.128", + "prefixLen":25, + "network":"192.223.144.128\/25", + "version":6728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.145.0", + "prefixLen":25, + "network":"192.223.145.0\/25", + "version":6727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.145.128", + "prefixLen":25, + "network":"192.223.145.128\/25", + "version":6726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.146.0", + "prefixLen":25, + "network":"192.223.146.0\/25", + "version":6725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.146.128", + "prefixLen":25, + "network":"192.223.146.128\/25", + "version":6724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.147.0", + "prefixLen":25, + "network":"192.223.147.0\/25", + "version":6723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.147.128", + "prefixLen":25, + "network":"192.223.147.128\/25", + "version":6722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.160.0", + "prefixLen":25, + "network":"192.223.160.0\/25", + "version":6721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.160.128", + "prefixLen":25, + "network":"192.223.160.128\/25", + "version":6720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.161.0", + "prefixLen":25, + "network":"192.223.161.0\/25", + "version":6719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.161.128", + "prefixLen":25, + "network":"192.223.161.128\/25", + "version":6718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.162.0", + "prefixLen":25, + "network":"192.223.162.0\/25", + "version":6717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.162.128", + "prefixLen":25, + "network":"192.223.162.128\/25", + "version":6716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.163.0", + "prefixLen":25, + "network":"192.223.163.0\/25", + "version":6715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.163.128", + "prefixLen":25, + "network":"192.223.163.128\/25", + "version":6714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.176.0", + "prefixLen":25, + "network":"192.223.176.0\/25", + "version":6713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.176.128", + "prefixLen":25, + "network":"192.223.176.128\/25", + "version":6712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.177.0", + "prefixLen":25, + "network":"192.223.177.0\/25", + "version":6711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.177.128", + "prefixLen":25, + "network":"192.223.177.128\/25", + "version":6710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.178.0", + "prefixLen":25, + "network":"192.223.178.0\/25", + "version":6709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.178.128", + "prefixLen":25, + "network":"192.223.178.128\/25", + "version":6708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.179.0", + "prefixLen":25, + "network":"192.223.179.0\/25", + "version":6707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.179.128", + "prefixLen":25, + "network":"192.223.179.128\/25", + "version":6706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.192.0", + "prefixLen":25, + "network":"192.223.192.0\/25", + "version":6705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.192.128", + "prefixLen":25, + "network":"192.223.192.128\/25", + "version":6704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.193.0", + "prefixLen":25, + "network":"192.223.193.0\/25", + "version":6703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.193.128", + "prefixLen":25, + "network":"192.223.193.128\/25", + "version":6702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.194.0", + "prefixLen":25, + "network":"192.223.194.0\/25", + "version":6701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.194.128", + "prefixLen":25, + "network":"192.223.194.128\/25", + "version":6700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.195.0", + "prefixLen":25, + "network":"192.223.195.0\/25", + "version":6699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.195.128", + "prefixLen":25, + "network":"192.223.195.128\/25", + "version":6698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.208.0", + "prefixLen":25, + "network":"192.223.208.0\/25", + "version":6697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.208.128", + "prefixLen":25, + "network":"192.223.208.128\/25", + "version":6696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.209.0", + "prefixLen":25, + "network":"192.223.209.0\/25", + "version":6695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.209.128", + "prefixLen":25, + "network":"192.223.209.128\/25", + "version":6694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.210.0", + "prefixLen":25, + "network":"192.223.210.0\/25", + "version":6693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.210.128", + "prefixLen":25, + "network":"192.223.210.128\/25", + "version":6692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.211.0", + "prefixLen":25, + "network":"192.223.211.0\/25", + "version":6691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.211.128", + "prefixLen":25, + "network":"192.223.211.128\/25", + "version":6690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.224.0", + "prefixLen":25, + "network":"192.223.224.0\/25", + "version":6689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.224.128", + "prefixLen":25, + "network":"192.223.224.128\/25", + "version":6688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.225.0", + "prefixLen":25, + "network":"192.223.225.0\/25", + "version":6687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.225.128", + "prefixLen":25, + "network":"192.223.225.128\/25", + "version":6686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.226.0", + "prefixLen":25, + "network":"192.223.226.0\/25", + "version":6685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.226.128", + "prefixLen":25, + "network":"192.223.226.128\/25", + "version":6684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.227.0", + "prefixLen":25, + "network":"192.223.227.0\/25", + "version":6683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.227.128", + "prefixLen":25, + "network":"192.223.227.128\/25", + "version":6682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.240.0", + "prefixLen":25, + "network":"192.223.240.0\/25", + "version":6681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.240.128", + "prefixLen":25, + "network":"192.223.240.128\/25", + "version":6680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.241.0", + "prefixLen":25, + "network":"192.223.241.0\/25", + "version":6679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.241.128", + "prefixLen":25, + "network":"192.223.241.128\/25", + "version":6678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.242.0", + "prefixLen":25, + "network":"192.223.242.0\/25", + "version":6677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.242.128", + "prefixLen":25, + "network":"192.223.242.128\/25", + "version":6676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.243.0", + "prefixLen":25, + "network":"192.223.243.0\/25", + "version":6675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.223.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.223.243.128", + "prefixLen":25, + "network":"192.223.243.128\/25", + "version":6674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64655 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.0.0", + "prefixLen":25, + "network":"192.224.0.0\/25", + "version":6801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.0.128", + "prefixLen":25, + "network":"192.224.0.128\/25", + "version":6928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.1.0", + "prefixLen":25, + "network":"192.224.1.0\/25", + "version":6927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.1.128", + "prefixLen":25, + "network":"192.224.1.128\/25", + "version":6926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.2.0", + "prefixLen":25, + "network":"192.224.2.0\/25", + "version":6925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.2.128", + "prefixLen":25, + "network":"192.224.2.128\/25", + "version":6924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.3.0", + "prefixLen":25, + "network":"192.224.3.0\/25", + "version":6923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.3.128", + "prefixLen":25, + "network":"192.224.3.128\/25", + "version":6922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.16.0", + "prefixLen":25, + "network":"192.224.16.0\/25", + "version":6921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.16.128", + "prefixLen":25, + "network":"192.224.16.128\/25", + "version":6920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.17.0", + "prefixLen":25, + "network":"192.224.17.0\/25", + "version":6919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.17.128", + "prefixLen":25, + "network":"192.224.17.128\/25", + "version":6918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.18.0", + "prefixLen":25, + "network":"192.224.18.0\/25", + "version":6917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.18.128", + "prefixLen":25, + "network":"192.224.18.128\/25", + "version":6916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.19.0", + "prefixLen":25, + "network":"192.224.19.0\/25", + "version":6915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.19.128", + "prefixLen":25, + "network":"192.224.19.128\/25", + "version":6914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.32.0", + "prefixLen":25, + "network":"192.224.32.0\/25", + "version":6913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.32.128", + "prefixLen":25, + "network":"192.224.32.128\/25", + "version":6912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.33.0", + "prefixLen":25, + "network":"192.224.33.0\/25", + "version":6911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.33.128", + "prefixLen":25, + "network":"192.224.33.128\/25", + "version":6910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.34.0", + "prefixLen":25, + "network":"192.224.34.0\/25", + "version":6909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.34.128", + "prefixLen":25, + "network":"192.224.34.128\/25", + "version":6908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.35.0", + "prefixLen":25, + "network":"192.224.35.0\/25", + "version":6907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.35.128", + "prefixLen":25, + "network":"192.224.35.128\/25", + "version":6906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.48.0", + "prefixLen":25, + "network":"192.224.48.0\/25", + "version":6905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.48.128", + "prefixLen":25, + "network":"192.224.48.128\/25", + "version":6904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.49.0", + "prefixLen":25, + "network":"192.224.49.0\/25", + "version":6903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.49.128", + "prefixLen":25, + "network":"192.224.49.128\/25", + "version":6902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.50.0", + "prefixLen":25, + "network":"192.224.50.0\/25", + "version":6901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.50.128", + "prefixLen":25, + "network":"192.224.50.128\/25", + "version":6900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.51.0", + "prefixLen":25, + "network":"192.224.51.0\/25", + "version":6899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.51.128", + "prefixLen":25, + "network":"192.224.51.128\/25", + "version":6898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.64.0", + "prefixLen":25, + "network":"192.224.64.0\/25", + "version":6897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.64.128", + "prefixLen":25, + "network":"192.224.64.128\/25", + "version":6896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.65.0", + "prefixLen":25, + "network":"192.224.65.0\/25", + "version":6895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.65.128", + "prefixLen":25, + "network":"192.224.65.128\/25", + "version":6894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.66.0", + "prefixLen":25, + "network":"192.224.66.0\/25", + "version":6893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.66.128", + "prefixLen":25, + "network":"192.224.66.128\/25", + "version":6892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.67.0", + "prefixLen":25, + "network":"192.224.67.0\/25", + "version":6891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.67.128", + "prefixLen":25, + "network":"192.224.67.128\/25", + "version":6890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.80.0", + "prefixLen":25, + "network":"192.224.80.0\/25", + "version":6889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.80.128", + "prefixLen":25, + "network":"192.224.80.128\/25", + "version":6888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.81.0", + "prefixLen":25, + "network":"192.224.81.0\/25", + "version":6887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.81.128", + "prefixLen":25, + "network":"192.224.81.128\/25", + "version":6886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.82.0", + "prefixLen":25, + "network":"192.224.82.0\/25", + "version":6885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.82.128", + "prefixLen":25, + "network":"192.224.82.128\/25", + "version":6884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.83.0", + "prefixLen":25, + "network":"192.224.83.0\/25", + "version":6883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.83.128", + "prefixLen":25, + "network":"192.224.83.128\/25", + "version":6882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.96.0", + "prefixLen":25, + "network":"192.224.96.0\/25", + "version":6881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.96.128", + "prefixLen":25, + "network":"192.224.96.128\/25", + "version":6880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.97.0", + "prefixLen":25, + "network":"192.224.97.0\/25", + "version":6879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.97.128", + "prefixLen":25, + "network":"192.224.97.128\/25", + "version":6878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.98.0", + "prefixLen":25, + "network":"192.224.98.0\/25", + "version":6877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.98.128", + "prefixLen":25, + "network":"192.224.98.128\/25", + "version":6876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.99.0", + "prefixLen":25, + "network":"192.224.99.0\/25", + "version":6875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.99.128", + "prefixLen":25, + "network":"192.224.99.128\/25", + "version":6874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.112.0", + "prefixLen":25, + "network":"192.224.112.0\/25", + "version":6873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.112.128", + "prefixLen":25, + "network":"192.224.112.128\/25", + "version":6872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.113.0", + "prefixLen":25, + "network":"192.224.113.0\/25", + "version":6871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.113.128", + "prefixLen":25, + "network":"192.224.113.128\/25", + "version":6870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.114.0", + "prefixLen":25, + "network":"192.224.114.0\/25", + "version":6869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.114.128", + "prefixLen":25, + "network":"192.224.114.128\/25", + "version":6868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.115.0", + "prefixLen":25, + "network":"192.224.115.0\/25", + "version":6867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.115.128", + "prefixLen":25, + "network":"192.224.115.128\/25", + "version":6866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.128.0", + "prefixLen":25, + "network":"192.224.128.0\/25", + "version":6865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.128.128", + "prefixLen":25, + "network":"192.224.128.128\/25", + "version":6864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.129.0", + "prefixLen":25, + "network":"192.224.129.0\/25", + "version":6863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.129.128", + "prefixLen":25, + "network":"192.224.129.128\/25", + "version":6862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.130.0", + "prefixLen":25, + "network":"192.224.130.0\/25", + "version":6861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.130.128", + "prefixLen":25, + "network":"192.224.130.128\/25", + "version":6860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.131.0", + "prefixLen":25, + "network":"192.224.131.0\/25", + "version":6859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.131.128", + "prefixLen":25, + "network":"192.224.131.128\/25", + "version":6858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.144.0", + "prefixLen":25, + "network":"192.224.144.0\/25", + "version":6857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.144.128", + "prefixLen":25, + "network":"192.224.144.128\/25", + "version":6856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.145.0", + "prefixLen":25, + "network":"192.224.145.0\/25", + "version":6855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.145.128", + "prefixLen":25, + "network":"192.224.145.128\/25", + "version":6854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.146.0", + "prefixLen":25, + "network":"192.224.146.0\/25", + "version":6853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.146.128", + "prefixLen":25, + "network":"192.224.146.128\/25", + "version":6852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.147.0", + "prefixLen":25, + "network":"192.224.147.0\/25", + "version":6851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.147.128", + "prefixLen":25, + "network":"192.224.147.128\/25", + "version":6850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.160.0", + "prefixLen":25, + "network":"192.224.160.0\/25", + "version":6849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.160.128", + "prefixLen":25, + "network":"192.224.160.128\/25", + "version":6848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.161.0", + "prefixLen":25, + "network":"192.224.161.0\/25", + "version":6847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.161.128", + "prefixLen":25, + "network":"192.224.161.128\/25", + "version":6846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.162.0", + "prefixLen":25, + "network":"192.224.162.0\/25", + "version":6845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.162.128", + "prefixLen":25, + "network":"192.224.162.128\/25", + "version":6844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.163.0", + "prefixLen":25, + "network":"192.224.163.0\/25", + "version":6843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.163.128", + "prefixLen":25, + "network":"192.224.163.128\/25", + "version":6842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.176.0", + "prefixLen":25, + "network":"192.224.176.0\/25", + "version":6841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.176.128", + "prefixLen":25, + "network":"192.224.176.128\/25", + "version":6840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.177.0", + "prefixLen":25, + "network":"192.224.177.0\/25", + "version":6839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.177.128", + "prefixLen":25, + "network":"192.224.177.128\/25", + "version":6838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.178.0", + "prefixLen":25, + "network":"192.224.178.0\/25", + "version":6837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.178.128", + "prefixLen":25, + "network":"192.224.178.128\/25", + "version":6836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.179.0", + "prefixLen":25, + "network":"192.224.179.0\/25", + "version":6835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.179.128", + "prefixLen":25, + "network":"192.224.179.128\/25", + "version":6834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.192.0", + "prefixLen":25, + "network":"192.224.192.0\/25", + "version":6833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.192.128", + "prefixLen":25, + "network":"192.224.192.128\/25", + "version":6832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.193.0", + "prefixLen":25, + "network":"192.224.193.0\/25", + "version":6831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.193.128", + "prefixLen":25, + "network":"192.224.193.128\/25", + "version":6830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.194.0", + "prefixLen":25, + "network":"192.224.194.0\/25", + "version":6829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.194.128", + "prefixLen":25, + "network":"192.224.194.128\/25", + "version":6828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.195.0", + "prefixLen":25, + "network":"192.224.195.0\/25", + "version":6827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.195.128", + "prefixLen":25, + "network":"192.224.195.128\/25", + "version":6826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.208.0", + "prefixLen":25, + "network":"192.224.208.0\/25", + "version":6825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.208.128", + "prefixLen":25, + "network":"192.224.208.128\/25", + "version":6824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.209.0", + "prefixLen":25, + "network":"192.224.209.0\/25", + "version":6823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.209.128", + "prefixLen":25, + "network":"192.224.209.128\/25", + "version":6822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.210.0", + "prefixLen":25, + "network":"192.224.210.0\/25", + "version":6821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.210.128", + "prefixLen":25, + "network":"192.224.210.128\/25", + "version":6820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.211.0", + "prefixLen":25, + "network":"192.224.211.0\/25", + "version":6819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.211.128", + "prefixLen":25, + "network":"192.224.211.128\/25", + "version":6818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.224.0", + "prefixLen":25, + "network":"192.224.224.0\/25", + "version":6817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.224.128", + "prefixLen":25, + "network":"192.224.224.128\/25", + "version":6816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.225.0", + "prefixLen":25, + "network":"192.224.225.0\/25", + "version":6815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.225.128", + "prefixLen":25, + "network":"192.224.225.128\/25", + "version":6814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.226.0", + "prefixLen":25, + "network":"192.224.226.0\/25", + "version":6813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.226.128", + "prefixLen":25, + "network":"192.224.226.128\/25", + "version":6812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.227.0", + "prefixLen":25, + "network":"192.224.227.0\/25", + "version":6811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.227.128", + "prefixLen":25, + "network":"192.224.227.128\/25", + "version":6810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.240.0", + "prefixLen":25, + "network":"192.224.240.0\/25", + "version":6809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.240.128", + "prefixLen":25, + "network":"192.224.240.128\/25", + "version":6808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.241.0", + "prefixLen":25, + "network":"192.224.241.0\/25", + "version":6807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.241.128", + "prefixLen":25, + "network":"192.224.241.128\/25", + "version":6806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.242.0", + "prefixLen":25, + "network":"192.224.242.0\/25", + "version":6805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.242.128", + "prefixLen":25, + "network":"192.224.242.128\/25", + "version":6804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.243.0", + "prefixLen":25, + "network":"192.224.243.0\/25", + "version":6803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.224.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.224.243.128", + "prefixLen":25, + "network":"192.224.243.128\/25", + "version":6802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64656 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.0.0", + "prefixLen":25, + "network":"192.225.0.0\/25", + "version":6929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.0.128", + "prefixLen":25, + "network":"192.225.0.128\/25", + "version":7056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.1.0", + "prefixLen":25, + "network":"192.225.1.0\/25", + "version":7055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.1.128", + "prefixLen":25, + "network":"192.225.1.128\/25", + "version":7054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.2.0", + "prefixLen":25, + "network":"192.225.2.0\/25", + "version":7053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.2.128", + "prefixLen":25, + "network":"192.225.2.128\/25", + "version":7052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.3.0", + "prefixLen":25, + "network":"192.225.3.0\/25", + "version":7051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.3.128", + "prefixLen":25, + "network":"192.225.3.128\/25", + "version":7050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.16.0", + "prefixLen":25, + "network":"192.225.16.0\/25", + "version":7049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.16.128", + "prefixLen":25, + "network":"192.225.16.128\/25", + "version":7048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.17.0", + "prefixLen":25, + "network":"192.225.17.0\/25", + "version":7047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.17.128", + "prefixLen":25, + "network":"192.225.17.128\/25", + "version":7046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.18.0", + "prefixLen":25, + "network":"192.225.18.0\/25", + "version":7045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.18.128", + "prefixLen":25, + "network":"192.225.18.128\/25", + "version":7044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.19.0", + "prefixLen":25, + "network":"192.225.19.0\/25", + "version":7043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.19.128", + "prefixLen":25, + "network":"192.225.19.128\/25", + "version":7042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.32.0", + "prefixLen":25, + "network":"192.225.32.0\/25", + "version":7041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.32.128", + "prefixLen":25, + "network":"192.225.32.128\/25", + "version":7040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.33.0", + "prefixLen":25, + "network":"192.225.33.0\/25", + "version":7039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.33.128", + "prefixLen":25, + "network":"192.225.33.128\/25", + "version":7038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.34.0", + "prefixLen":25, + "network":"192.225.34.0\/25", + "version":7037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.34.128", + "prefixLen":25, + "network":"192.225.34.128\/25", + "version":7036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.35.0", + "prefixLen":25, + "network":"192.225.35.0\/25", + "version":7035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.35.128", + "prefixLen":25, + "network":"192.225.35.128\/25", + "version":7034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.48.0", + "prefixLen":25, + "network":"192.225.48.0\/25", + "version":7033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.48.128", + "prefixLen":25, + "network":"192.225.48.128\/25", + "version":7032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.49.0", + "prefixLen":25, + "network":"192.225.49.0\/25", + "version":7031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.49.128", + "prefixLen":25, + "network":"192.225.49.128\/25", + "version":7030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.50.0", + "prefixLen":25, + "network":"192.225.50.0\/25", + "version":7029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.50.128", + "prefixLen":25, + "network":"192.225.50.128\/25", + "version":7028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.51.0", + "prefixLen":25, + "network":"192.225.51.0\/25", + "version":7027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.51.128", + "prefixLen":25, + "network":"192.225.51.128\/25", + "version":7026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.64.0", + "prefixLen":25, + "network":"192.225.64.0\/25", + "version":7025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.64.128", + "prefixLen":25, + "network":"192.225.64.128\/25", + "version":7024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.65.0", + "prefixLen":25, + "network":"192.225.65.0\/25", + "version":7023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.65.128", + "prefixLen":25, + "network":"192.225.65.128\/25", + "version":7022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.66.0", + "prefixLen":25, + "network":"192.225.66.0\/25", + "version":7021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.66.128", + "prefixLen":25, + "network":"192.225.66.128\/25", + "version":7020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.67.0", + "prefixLen":25, + "network":"192.225.67.0\/25", + "version":7019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.67.128", + "prefixLen":25, + "network":"192.225.67.128\/25", + "version":7018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.80.0", + "prefixLen":25, + "network":"192.225.80.0\/25", + "version":7017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.80.128", + "prefixLen":25, + "network":"192.225.80.128\/25", + "version":7016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.81.0", + "prefixLen":25, + "network":"192.225.81.0\/25", + "version":7015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.81.128", + "prefixLen":25, + "network":"192.225.81.128\/25", + "version":7014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.82.0", + "prefixLen":25, + "network":"192.225.82.0\/25", + "version":7013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.82.128", + "prefixLen":25, + "network":"192.225.82.128\/25", + "version":7012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.83.0", + "prefixLen":25, + "network":"192.225.83.0\/25", + "version":7011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.83.128", + "prefixLen":25, + "network":"192.225.83.128\/25", + "version":7010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.96.0", + "prefixLen":25, + "network":"192.225.96.0\/25", + "version":7009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.96.128", + "prefixLen":25, + "network":"192.225.96.128\/25", + "version":7008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.97.0", + "prefixLen":25, + "network":"192.225.97.0\/25", + "version":7007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.97.128", + "prefixLen":25, + "network":"192.225.97.128\/25", + "version":7006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.98.0", + "prefixLen":25, + "network":"192.225.98.0\/25", + "version":7005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.98.128", + "prefixLen":25, + "network":"192.225.98.128\/25", + "version":7004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.99.0", + "prefixLen":25, + "network":"192.225.99.0\/25", + "version":7003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.99.128", + "prefixLen":25, + "network":"192.225.99.128\/25", + "version":7002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.112.0", + "prefixLen":25, + "network":"192.225.112.0\/25", + "version":7001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.112.128", + "prefixLen":25, + "network":"192.225.112.128\/25", + "version":7000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.113.0", + "prefixLen":25, + "network":"192.225.113.0\/25", + "version":6999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.113.128", + "prefixLen":25, + "network":"192.225.113.128\/25", + "version":6998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.114.0", + "prefixLen":25, + "network":"192.225.114.0\/25", + "version":6997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.114.128", + "prefixLen":25, + "network":"192.225.114.128\/25", + "version":6996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.115.0", + "prefixLen":25, + "network":"192.225.115.0\/25", + "version":6995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.115.128", + "prefixLen":25, + "network":"192.225.115.128\/25", + "version":6994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.128.0", + "prefixLen":25, + "network":"192.225.128.0\/25", + "version":6993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.128.128", + "prefixLen":25, + "network":"192.225.128.128\/25", + "version":6992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.129.0", + "prefixLen":25, + "network":"192.225.129.0\/25", + "version":6991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.129.128", + "prefixLen":25, + "network":"192.225.129.128\/25", + "version":6990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.130.0", + "prefixLen":25, + "network":"192.225.130.0\/25", + "version":6989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.130.128", + "prefixLen":25, + "network":"192.225.130.128\/25", + "version":6988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.131.0", + "prefixLen":25, + "network":"192.225.131.0\/25", + "version":6987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.131.128", + "prefixLen":25, + "network":"192.225.131.128\/25", + "version":6986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.144.0", + "prefixLen":25, + "network":"192.225.144.0\/25", + "version":6985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.144.128", + "prefixLen":25, + "network":"192.225.144.128\/25", + "version":6984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.145.0", + "prefixLen":25, + "network":"192.225.145.0\/25", + "version":6983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.145.128", + "prefixLen":25, + "network":"192.225.145.128\/25", + "version":6982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.146.0", + "prefixLen":25, + "network":"192.225.146.0\/25", + "version":6981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.146.128", + "prefixLen":25, + "network":"192.225.146.128\/25", + "version":6980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.147.0", + "prefixLen":25, + "network":"192.225.147.0\/25", + "version":6979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.147.128", + "prefixLen":25, + "network":"192.225.147.128\/25", + "version":6978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.160.0", + "prefixLen":25, + "network":"192.225.160.0\/25", + "version":6977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.160.128", + "prefixLen":25, + "network":"192.225.160.128\/25", + "version":6976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.161.0", + "prefixLen":25, + "network":"192.225.161.0\/25", + "version":6975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.161.128", + "prefixLen":25, + "network":"192.225.161.128\/25", + "version":6974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.162.0", + "prefixLen":25, + "network":"192.225.162.0\/25", + "version":6973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.162.128", + "prefixLen":25, + "network":"192.225.162.128\/25", + "version":6972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.163.0", + "prefixLen":25, + "network":"192.225.163.0\/25", + "version":6971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.163.128", + "prefixLen":25, + "network":"192.225.163.128\/25", + "version":6970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.176.0", + "prefixLen":25, + "network":"192.225.176.0\/25", + "version":6969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.176.128", + "prefixLen":25, + "network":"192.225.176.128\/25", + "version":6968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.177.0", + "prefixLen":25, + "network":"192.225.177.0\/25", + "version":6967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.177.128", + "prefixLen":25, + "network":"192.225.177.128\/25", + "version":6966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.178.0", + "prefixLen":25, + "network":"192.225.178.0\/25", + "version":6965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.178.128", + "prefixLen":25, + "network":"192.225.178.128\/25", + "version":6964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.179.0", + "prefixLen":25, + "network":"192.225.179.0\/25", + "version":6963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.179.128", + "prefixLen":25, + "network":"192.225.179.128\/25", + "version":6962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.192.0", + "prefixLen":25, + "network":"192.225.192.0\/25", + "version":6961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.192.128", + "prefixLen":25, + "network":"192.225.192.128\/25", + "version":6960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.193.0", + "prefixLen":25, + "network":"192.225.193.0\/25", + "version":6959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.193.128", + "prefixLen":25, + "network":"192.225.193.128\/25", + "version":6958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.194.0", + "prefixLen":25, + "network":"192.225.194.0\/25", + "version":6957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.194.128", + "prefixLen":25, + "network":"192.225.194.128\/25", + "version":6956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.195.0", + "prefixLen":25, + "network":"192.225.195.0\/25", + "version":6955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.195.128", + "prefixLen":25, + "network":"192.225.195.128\/25", + "version":6954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.208.0", + "prefixLen":25, + "network":"192.225.208.0\/25", + "version":6953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.208.128", + "prefixLen":25, + "network":"192.225.208.128\/25", + "version":6952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.209.0", + "prefixLen":25, + "network":"192.225.209.0\/25", + "version":6951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.209.128", + "prefixLen":25, + "network":"192.225.209.128\/25", + "version":6950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.210.0", + "prefixLen":25, + "network":"192.225.210.0\/25", + "version":6949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.210.128", + "prefixLen":25, + "network":"192.225.210.128\/25", + "version":6948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.211.0", + "prefixLen":25, + "network":"192.225.211.0\/25", + "version":6947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.211.128", + "prefixLen":25, + "network":"192.225.211.128\/25", + "version":6946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.224.0", + "prefixLen":25, + "network":"192.225.224.0\/25", + "version":6945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.224.128", + "prefixLen":25, + "network":"192.225.224.128\/25", + "version":6944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.225.0", + "prefixLen":25, + "network":"192.225.225.0\/25", + "version":6943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.225.128", + "prefixLen":25, + "network":"192.225.225.128\/25", + "version":6942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.226.0", + "prefixLen":25, + "network":"192.225.226.0\/25", + "version":6941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.226.128", + "prefixLen":25, + "network":"192.225.226.128\/25", + "version":6940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.227.0", + "prefixLen":25, + "network":"192.225.227.0\/25", + "version":6939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.227.128", + "prefixLen":25, + "network":"192.225.227.128\/25", + "version":6938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.240.0", + "prefixLen":25, + "network":"192.225.240.0\/25", + "version":6937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.240.128", + "prefixLen":25, + "network":"192.225.240.128\/25", + "version":6936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.241.0", + "prefixLen":25, + "network":"192.225.241.0\/25", + "version":6935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.241.128", + "prefixLen":25, + "network":"192.225.241.128\/25", + "version":6934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.242.0", + "prefixLen":25, + "network":"192.225.242.0\/25", + "version":6933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.242.128", + "prefixLen":25, + "network":"192.225.242.128\/25", + "version":6932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.243.0", + "prefixLen":25, + "network":"192.225.243.0\/25", + "version":6931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.225.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.225.243.128", + "prefixLen":25, + "network":"192.225.243.128\/25", + "version":6930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64657 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.0.0", + "prefixLen":25, + "network":"192.226.0.0\/25", + "version":7057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.0.128", + "prefixLen":25, + "network":"192.226.0.128\/25", + "version":7184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.1.0", + "prefixLen":25, + "network":"192.226.1.0\/25", + "version":7183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.1.128", + "prefixLen":25, + "network":"192.226.1.128\/25", + "version":7182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.2.0", + "prefixLen":25, + "network":"192.226.2.0\/25", + "version":7181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.2.128", + "prefixLen":25, + "network":"192.226.2.128\/25", + "version":7180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.3.0", + "prefixLen":25, + "network":"192.226.3.0\/25", + "version":7179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.3.128", + "prefixLen":25, + "network":"192.226.3.128\/25", + "version":7178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.16.0", + "prefixLen":25, + "network":"192.226.16.0\/25", + "version":7177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.16.128", + "prefixLen":25, + "network":"192.226.16.128\/25", + "version":7176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.17.0", + "prefixLen":25, + "network":"192.226.17.0\/25", + "version":7175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.17.128", + "prefixLen":25, + "network":"192.226.17.128\/25", + "version":7174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.18.0", + "prefixLen":25, + "network":"192.226.18.0\/25", + "version":7173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.18.128", + "prefixLen":25, + "network":"192.226.18.128\/25", + "version":7172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.19.0", + "prefixLen":25, + "network":"192.226.19.0\/25", + "version":7171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.19.128", + "prefixLen":25, + "network":"192.226.19.128\/25", + "version":7170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.32.0", + "prefixLen":25, + "network":"192.226.32.0\/25", + "version":7169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.32.128", + "prefixLen":25, + "network":"192.226.32.128\/25", + "version":7168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.33.0", + "prefixLen":25, + "network":"192.226.33.0\/25", + "version":7167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.33.128", + "prefixLen":25, + "network":"192.226.33.128\/25", + "version":7166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.34.0", + "prefixLen":25, + "network":"192.226.34.0\/25", + "version":7165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.34.128", + "prefixLen":25, + "network":"192.226.34.128\/25", + "version":7164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.35.0", + "prefixLen":25, + "network":"192.226.35.0\/25", + "version":7163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.35.128", + "prefixLen":25, + "network":"192.226.35.128\/25", + "version":7162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.48.0", + "prefixLen":25, + "network":"192.226.48.0\/25", + "version":7161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.48.128", + "prefixLen":25, + "network":"192.226.48.128\/25", + "version":7160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.49.0", + "prefixLen":25, + "network":"192.226.49.0\/25", + "version":7159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.49.128", + "prefixLen":25, + "network":"192.226.49.128\/25", + "version":7158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.50.0", + "prefixLen":25, + "network":"192.226.50.0\/25", + "version":7157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.50.128", + "prefixLen":25, + "network":"192.226.50.128\/25", + "version":7156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.51.0", + "prefixLen":25, + "network":"192.226.51.0\/25", + "version":7155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.51.128", + "prefixLen":25, + "network":"192.226.51.128\/25", + "version":7154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.64.0", + "prefixLen":25, + "network":"192.226.64.0\/25", + "version":7153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.64.128", + "prefixLen":25, + "network":"192.226.64.128\/25", + "version":7152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.65.0", + "prefixLen":25, + "network":"192.226.65.0\/25", + "version":7151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.65.128", + "prefixLen":25, + "network":"192.226.65.128\/25", + "version":7150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.66.0", + "prefixLen":25, + "network":"192.226.66.0\/25", + "version":7149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.66.128", + "prefixLen":25, + "network":"192.226.66.128\/25", + "version":7148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.67.0", + "prefixLen":25, + "network":"192.226.67.0\/25", + "version":7147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.67.128", + "prefixLen":25, + "network":"192.226.67.128\/25", + "version":7146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.80.0", + "prefixLen":25, + "network":"192.226.80.0\/25", + "version":7145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.80.128", + "prefixLen":25, + "network":"192.226.80.128\/25", + "version":7144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.81.0", + "prefixLen":25, + "network":"192.226.81.0\/25", + "version":7143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.81.128", + "prefixLen":25, + "network":"192.226.81.128\/25", + "version":7142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.82.0", + "prefixLen":25, + "network":"192.226.82.0\/25", + "version":7141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.82.128", + "prefixLen":25, + "network":"192.226.82.128\/25", + "version":7140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.83.0", + "prefixLen":25, + "network":"192.226.83.0\/25", + "version":7139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.83.128", + "prefixLen":25, + "network":"192.226.83.128\/25", + "version":7138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.96.0", + "prefixLen":25, + "network":"192.226.96.0\/25", + "version":7137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.96.128", + "prefixLen":25, + "network":"192.226.96.128\/25", + "version":7136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.97.0", + "prefixLen":25, + "network":"192.226.97.0\/25", + "version":7135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.97.128", + "prefixLen":25, + "network":"192.226.97.128\/25", + "version":7134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.98.0", + "prefixLen":25, + "network":"192.226.98.0\/25", + "version":7133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.98.128", + "prefixLen":25, + "network":"192.226.98.128\/25", + "version":7132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.99.0", + "prefixLen":25, + "network":"192.226.99.0\/25", + "version":7131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.99.128", + "prefixLen":25, + "network":"192.226.99.128\/25", + "version":7130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.112.0", + "prefixLen":25, + "network":"192.226.112.0\/25", + "version":7129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.112.128", + "prefixLen":25, + "network":"192.226.112.128\/25", + "version":7128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.113.0", + "prefixLen":25, + "network":"192.226.113.0\/25", + "version":7127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.113.128", + "prefixLen":25, + "network":"192.226.113.128\/25", + "version":7126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.114.0", + "prefixLen":25, + "network":"192.226.114.0\/25", + "version":7125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.114.128", + "prefixLen":25, + "network":"192.226.114.128\/25", + "version":7124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.115.0", + "prefixLen":25, + "network":"192.226.115.0\/25", + "version":7123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.115.128", + "prefixLen":25, + "network":"192.226.115.128\/25", + "version":7122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.128.0", + "prefixLen":25, + "network":"192.226.128.0\/25", + "version":7121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.128.128", + "prefixLen":25, + "network":"192.226.128.128\/25", + "version":7120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.129.0", + "prefixLen":25, + "network":"192.226.129.0\/25", + "version":7119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.129.128", + "prefixLen":25, + "network":"192.226.129.128\/25", + "version":7118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.130.0", + "prefixLen":25, + "network":"192.226.130.0\/25", + "version":7117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.130.128", + "prefixLen":25, + "network":"192.226.130.128\/25", + "version":7116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.131.0", + "prefixLen":25, + "network":"192.226.131.0\/25", + "version":7115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.131.128", + "prefixLen":25, + "network":"192.226.131.128\/25", + "version":7114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.144.0", + "prefixLen":25, + "network":"192.226.144.0\/25", + "version":7113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.144.128", + "prefixLen":25, + "network":"192.226.144.128\/25", + "version":7112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.145.0", + "prefixLen":25, + "network":"192.226.145.0\/25", + "version":7111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.145.128", + "prefixLen":25, + "network":"192.226.145.128\/25", + "version":7110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.146.0", + "prefixLen":25, + "network":"192.226.146.0\/25", + "version":7109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.146.128", + "prefixLen":25, + "network":"192.226.146.128\/25", + "version":7108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.147.0", + "prefixLen":25, + "network":"192.226.147.0\/25", + "version":7107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.147.128", + "prefixLen":25, + "network":"192.226.147.128\/25", + "version":7106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.160.0", + "prefixLen":25, + "network":"192.226.160.0\/25", + "version":7105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.160.128", + "prefixLen":25, + "network":"192.226.160.128\/25", + "version":7104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.161.0", + "prefixLen":25, + "network":"192.226.161.0\/25", + "version":7103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.161.128", + "prefixLen":25, + "network":"192.226.161.128\/25", + "version":7102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.162.0", + "prefixLen":25, + "network":"192.226.162.0\/25", + "version":7101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.162.128", + "prefixLen":25, + "network":"192.226.162.128\/25", + "version":7100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.163.0", + "prefixLen":25, + "network":"192.226.163.0\/25", + "version":7099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.163.128", + "prefixLen":25, + "network":"192.226.163.128\/25", + "version":7098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.176.0", + "prefixLen":25, + "network":"192.226.176.0\/25", + "version":7097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.176.128", + "prefixLen":25, + "network":"192.226.176.128\/25", + "version":7096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.177.0", + "prefixLen":25, + "network":"192.226.177.0\/25", + "version":7095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.177.128", + "prefixLen":25, + "network":"192.226.177.128\/25", + "version":7094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.178.0", + "prefixLen":25, + "network":"192.226.178.0\/25", + "version":7093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.178.128", + "prefixLen":25, + "network":"192.226.178.128\/25", + "version":7092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.179.0", + "prefixLen":25, + "network":"192.226.179.0\/25", + "version":7091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.179.128", + "prefixLen":25, + "network":"192.226.179.128\/25", + "version":7090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.192.0", + "prefixLen":25, + "network":"192.226.192.0\/25", + "version":7089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.192.128", + "prefixLen":25, + "network":"192.226.192.128\/25", + "version":7088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.193.0", + "prefixLen":25, + "network":"192.226.193.0\/25", + "version":7087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.193.128", + "prefixLen":25, + "network":"192.226.193.128\/25", + "version":7086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.194.0", + "prefixLen":25, + "network":"192.226.194.0\/25", + "version":7085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.194.128", + "prefixLen":25, + "network":"192.226.194.128\/25", + "version":7084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.195.0", + "prefixLen":25, + "network":"192.226.195.0\/25", + "version":7083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.195.128", + "prefixLen":25, + "network":"192.226.195.128\/25", + "version":7082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.208.0", + "prefixLen":25, + "network":"192.226.208.0\/25", + "version":7081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.208.128", + "prefixLen":25, + "network":"192.226.208.128\/25", + "version":7080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.209.0", + "prefixLen":25, + "network":"192.226.209.0\/25", + "version":7079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.209.128", + "prefixLen":25, + "network":"192.226.209.128\/25", + "version":7078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.210.0", + "prefixLen":25, + "network":"192.226.210.0\/25", + "version":7077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.210.128", + "prefixLen":25, + "network":"192.226.210.128\/25", + "version":7076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.211.0", + "prefixLen":25, + "network":"192.226.211.0\/25", + "version":7075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.211.128", + "prefixLen":25, + "network":"192.226.211.128\/25", + "version":7074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.224.0", + "prefixLen":25, + "network":"192.226.224.0\/25", + "version":7073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.224.128", + "prefixLen":25, + "network":"192.226.224.128\/25", + "version":7072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.225.0", + "prefixLen":25, + "network":"192.226.225.0\/25", + "version":7071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.225.128", + "prefixLen":25, + "network":"192.226.225.128\/25", + "version":7070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.226.0", + "prefixLen":25, + "network":"192.226.226.0\/25", + "version":7069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.226.128", + "prefixLen":25, + "network":"192.226.226.128\/25", + "version":7068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.227.0", + "prefixLen":25, + "network":"192.226.227.0\/25", + "version":7067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.227.128", + "prefixLen":25, + "network":"192.226.227.128\/25", + "version":7066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.240.0", + "prefixLen":25, + "network":"192.226.240.0\/25", + "version":7065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.240.128", + "prefixLen":25, + "network":"192.226.240.128\/25", + "version":7064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.241.0", + "prefixLen":25, + "network":"192.226.241.0\/25", + "version":7063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.241.128", + "prefixLen":25, + "network":"192.226.241.128\/25", + "version":7062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.242.0", + "prefixLen":25, + "network":"192.226.242.0\/25", + "version":7061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.242.128", + "prefixLen":25, + "network":"192.226.242.128\/25", + "version":7060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.243.0", + "prefixLen":25, + "network":"192.226.243.0\/25", + "version":7059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.226.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.226.243.128", + "prefixLen":25, + "network":"192.226.243.128\/25", + "version":7058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64658 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.0.0", + "prefixLen":25, + "network":"192.227.0.0\/25", + "version":7185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.0.128", + "prefixLen":25, + "network":"192.227.0.128\/25", + "version":7312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.1.0", + "prefixLen":25, + "network":"192.227.1.0\/25", + "version":7311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.1.128", + "prefixLen":25, + "network":"192.227.1.128\/25", + "version":7310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.2.0", + "prefixLen":25, + "network":"192.227.2.0\/25", + "version":7309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.2.128", + "prefixLen":25, + "network":"192.227.2.128\/25", + "version":7308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.3.0", + "prefixLen":25, + "network":"192.227.3.0\/25", + "version":7307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.3.128", + "prefixLen":25, + "network":"192.227.3.128\/25", + "version":7306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.16.0", + "prefixLen":25, + "network":"192.227.16.0\/25", + "version":7305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.16.128", + "prefixLen":25, + "network":"192.227.16.128\/25", + "version":7304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.17.0", + "prefixLen":25, + "network":"192.227.17.0\/25", + "version":7303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.17.128", + "prefixLen":25, + "network":"192.227.17.128\/25", + "version":7302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.18.0", + "prefixLen":25, + "network":"192.227.18.0\/25", + "version":7301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.18.128", + "prefixLen":25, + "network":"192.227.18.128\/25", + "version":7300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.19.0", + "prefixLen":25, + "network":"192.227.19.0\/25", + "version":7299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.19.128", + "prefixLen":25, + "network":"192.227.19.128\/25", + "version":7298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.32.0", + "prefixLen":25, + "network":"192.227.32.0\/25", + "version":7297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.32.128", + "prefixLen":25, + "network":"192.227.32.128\/25", + "version":7296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.33.0", + "prefixLen":25, + "network":"192.227.33.0\/25", + "version":7295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.33.128", + "prefixLen":25, + "network":"192.227.33.128\/25", + "version":7294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.34.0", + "prefixLen":25, + "network":"192.227.34.0\/25", + "version":7293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.34.128", + "prefixLen":25, + "network":"192.227.34.128\/25", + "version":7292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.35.0", + "prefixLen":25, + "network":"192.227.35.0\/25", + "version":7291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.35.128", + "prefixLen":25, + "network":"192.227.35.128\/25", + "version":7290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.48.0", + "prefixLen":25, + "network":"192.227.48.0\/25", + "version":7289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.48.128", + "prefixLen":25, + "network":"192.227.48.128\/25", + "version":7288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.49.0", + "prefixLen":25, + "network":"192.227.49.0\/25", + "version":7287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.49.128", + "prefixLen":25, + "network":"192.227.49.128\/25", + "version":7286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.50.0", + "prefixLen":25, + "network":"192.227.50.0\/25", + "version":7285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.50.128", + "prefixLen":25, + "network":"192.227.50.128\/25", + "version":7284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.51.0", + "prefixLen":25, + "network":"192.227.51.0\/25", + "version":7283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.51.128", + "prefixLen":25, + "network":"192.227.51.128\/25", + "version":7282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.64.0", + "prefixLen":25, + "network":"192.227.64.0\/25", + "version":7281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.64.128", + "prefixLen":25, + "network":"192.227.64.128\/25", + "version":7280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.65.0", + "prefixLen":25, + "network":"192.227.65.0\/25", + "version":7279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.65.128", + "prefixLen":25, + "network":"192.227.65.128\/25", + "version":7278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.66.0", + "prefixLen":25, + "network":"192.227.66.0\/25", + "version":7277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.66.128", + "prefixLen":25, + "network":"192.227.66.128\/25", + "version":7276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.67.0", + "prefixLen":25, + "network":"192.227.67.0\/25", + "version":7275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.67.128", + "prefixLen":25, + "network":"192.227.67.128\/25", + "version":7274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.80.0", + "prefixLen":25, + "network":"192.227.80.0\/25", + "version":7273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.80.128", + "prefixLen":25, + "network":"192.227.80.128\/25", + "version":7272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.81.0", + "prefixLen":25, + "network":"192.227.81.0\/25", + "version":7271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.81.128", + "prefixLen":25, + "network":"192.227.81.128\/25", + "version":7270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.82.0", + "prefixLen":25, + "network":"192.227.82.0\/25", + "version":7269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.82.128", + "prefixLen":25, + "network":"192.227.82.128\/25", + "version":7268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.83.0", + "prefixLen":25, + "network":"192.227.83.0\/25", + "version":7267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.83.128", + "prefixLen":25, + "network":"192.227.83.128\/25", + "version":7266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.96.0", + "prefixLen":25, + "network":"192.227.96.0\/25", + "version":7265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.96.128", + "prefixLen":25, + "network":"192.227.96.128\/25", + "version":7264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.97.0", + "prefixLen":25, + "network":"192.227.97.0\/25", + "version":7263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.97.128", + "prefixLen":25, + "network":"192.227.97.128\/25", + "version":7262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.98.0", + "prefixLen":25, + "network":"192.227.98.0\/25", + "version":7261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.98.128", + "prefixLen":25, + "network":"192.227.98.128\/25", + "version":7260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.99.0", + "prefixLen":25, + "network":"192.227.99.0\/25", + "version":7259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.99.128", + "prefixLen":25, + "network":"192.227.99.128\/25", + "version":7258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.112.0", + "prefixLen":25, + "network":"192.227.112.0\/25", + "version":7257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.112.128", + "prefixLen":25, + "network":"192.227.112.128\/25", + "version":7256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.113.0", + "prefixLen":25, + "network":"192.227.113.0\/25", + "version":7255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.113.128", + "prefixLen":25, + "network":"192.227.113.128\/25", + "version":7254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.114.0", + "prefixLen":25, + "network":"192.227.114.0\/25", + "version":7253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.114.128", + "prefixLen":25, + "network":"192.227.114.128\/25", + "version":7252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.115.0", + "prefixLen":25, + "network":"192.227.115.0\/25", + "version":7251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.115.128", + "prefixLen":25, + "network":"192.227.115.128\/25", + "version":7250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.128.0", + "prefixLen":25, + "network":"192.227.128.0\/25", + "version":7249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.128.128", + "prefixLen":25, + "network":"192.227.128.128\/25", + "version":7248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.129.0", + "prefixLen":25, + "network":"192.227.129.0\/25", + "version":7247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.129.128", + "prefixLen":25, + "network":"192.227.129.128\/25", + "version":7246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.130.0", + "prefixLen":25, + "network":"192.227.130.0\/25", + "version":7245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.130.128", + "prefixLen":25, + "network":"192.227.130.128\/25", + "version":7244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.131.0", + "prefixLen":25, + "network":"192.227.131.0\/25", + "version":7243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.131.128", + "prefixLen":25, + "network":"192.227.131.128\/25", + "version":7242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.144.0", + "prefixLen":25, + "network":"192.227.144.0\/25", + "version":7241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.144.128", + "prefixLen":25, + "network":"192.227.144.128\/25", + "version":7240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.145.0", + "prefixLen":25, + "network":"192.227.145.0\/25", + "version":7239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.145.128", + "prefixLen":25, + "network":"192.227.145.128\/25", + "version":7238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.146.0", + "prefixLen":25, + "network":"192.227.146.0\/25", + "version":7237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.146.128", + "prefixLen":25, + "network":"192.227.146.128\/25", + "version":7236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.147.0", + "prefixLen":25, + "network":"192.227.147.0\/25", + "version":7235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.147.128", + "prefixLen":25, + "network":"192.227.147.128\/25", + "version":7234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.160.0", + "prefixLen":25, + "network":"192.227.160.0\/25", + "version":7233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.160.128", + "prefixLen":25, + "network":"192.227.160.128\/25", + "version":7232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.161.0", + "prefixLen":25, + "network":"192.227.161.0\/25", + "version":7231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.161.128", + "prefixLen":25, + "network":"192.227.161.128\/25", + "version":7230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.162.0", + "prefixLen":25, + "network":"192.227.162.0\/25", + "version":7229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.162.128", + "prefixLen":25, + "network":"192.227.162.128\/25", + "version":7228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.163.0", + "prefixLen":25, + "network":"192.227.163.0\/25", + "version":7227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.163.128", + "prefixLen":25, + "network":"192.227.163.128\/25", + "version":7226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.176.0", + "prefixLen":25, + "network":"192.227.176.0\/25", + "version":7225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.176.128", + "prefixLen":25, + "network":"192.227.176.128\/25", + "version":7224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.177.0", + "prefixLen":25, + "network":"192.227.177.0\/25", + "version":7223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.177.128", + "prefixLen":25, + "network":"192.227.177.128\/25", + "version":7222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.178.0", + "prefixLen":25, + "network":"192.227.178.0\/25", + "version":7221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.178.128", + "prefixLen":25, + "network":"192.227.178.128\/25", + "version":7220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.179.0", + "prefixLen":25, + "network":"192.227.179.0\/25", + "version":7219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.179.128", + "prefixLen":25, + "network":"192.227.179.128\/25", + "version":7218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.192.0", + "prefixLen":25, + "network":"192.227.192.0\/25", + "version":7217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.192.128", + "prefixLen":25, + "network":"192.227.192.128\/25", + "version":7216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.193.0", + "prefixLen":25, + "network":"192.227.193.0\/25", + "version":7215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.193.128", + "prefixLen":25, + "network":"192.227.193.128\/25", + "version":7214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.194.0", + "prefixLen":25, + "network":"192.227.194.0\/25", + "version":7213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.194.128", + "prefixLen":25, + "network":"192.227.194.128\/25", + "version":7212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.195.0", + "prefixLen":25, + "network":"192.227.195.0\/25", + "version":7211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.195.128", + "prefixLen":25, + "network":"192.227.195.128\/25", + "version":7210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.208.0", + "prefixLen":25, + "network":"192.227.208.0\/25", + "version":7209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.208.128", + "prefixLen":25, + "network":"192.227.208.128\/25", + "version":7208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.209.0", + "prefixLen":25, + "network":"192.227.209.0\/25", + "version":7207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.209.128", + "prefixLen":25, + "network":"192.227.209.128\/25", + "version":7206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.210.0", + "prefixLen":25, + "network":"192.227.210.0\/25", + "version":7205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.210.128", + "prefixLen":25, + "network":"192.227.210.128\/25", + "version":7204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.211.0", + "prefixLen":25, + "network":"192.227.211.0\/25", + "version":7203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.211.128", + "prefixLen":25, + "network":"192.227.211.128\/25", + "version":7202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.224.0", + "prefixLen":25, + "network":"192.227.224.0\/25", + "version":7201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.224.128", + "prefixLen":25, + "network":"192.227.224.128\/25", + "version":7200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.225.0", + "prefixLen":25, + "network":"192.227.225.0\/25", + "version":7199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.225.128", + "prefixLen":25, + "network":"192.227.225.128\/25", + "version":7198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.226.0", + "prefixLen":25, + "network":"192.227.226.0\/25", + "version":7197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.226.128", + "prefixLen":25, + "network":"192.227.226.128\/25", + "version":7196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.227.0", + "prefixLen":25, + "network":"192.227.227.0\/25", + "version":7195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.227.128", + "prefixLen":25, + "network":"192.227.227.128\/25", + "version":7194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.240.0", + "prefixLen":25, + "network":"192.227.240.0\/25", + "version":7193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.240.128", + "prefixLen":25, + "network":"192.227.240.128\/25", + "version":7192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.241.0", + "prefixLen":25, + "network":"192.227.241.0\/25", + "version":7191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.241.128", + "prefixLen":25, + "network":"192.227.241.128\/25", + "version":7190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.242.0", + "prefixLen":25, + "network":"192.227.242.0\/25", + "version":7189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.242.128", + "prefixLen":25, + "network":"192.227.242.128\/25", + "version":7188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.243.0", + "prefixLen":25, + "network":"192.227.243.0\/25", + "version":7187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.227.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.227.243.128", + "prefixLen":25, + "network":"192.227.243.128\/25", + "version":7186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64659 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.0.0", + "prefixLen":25, + "network":"192.228.0.0\/25", + "version":7313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.0.128", + "prefixLen":25, + "network":"192.228.0.128\/25", + "version":7440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.1.0", + "prefixLen":25, + "network":"192.228.1.0\/25", + "version":7439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.1.128", + "prefixLen":25, + "network":"192.228.1.128\/25", + "version":7438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.2.0", + "prefixLen":25, + "network":"192.228.2.0\/25", + "version":7437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.2.128", + "prefixLen":25, + "network":"192.228.2.128\/25", + "version":7436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.3.0", + "prefixLen":25, + "network":"192.228.3.0\/25", + "version":7435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.3.128", + "prefixLen":25, + "network":"192.228.3.128\/25", + "version":7434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.16.0", + "prefixLen":25, + "network":"192.228.16.0\/25", + "version":7433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.16.128", + "prefixLen":25, + "network":"192.228.16.128\/25", + "version":7432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.17.0", + "prefixLen":25, + "network":"192.228.17.0\/25", + "version":7431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.17.128", + "prefixLen":25, + "network":"192.228.17.128\/25", + "version":7430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.18.0", + "prefixLen":25, + "network":"192.228.18.0\/25", + "version":7429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.18.128", + "prefixLen":25, + "network":"192.228.18.128\/25", + "version":7428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.19.0", + "prefixLen":25, + "network":"192.228.19.0\/25", + "version":7427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.19.128", + "prefixLen":25, + "network":"192.228.19.128\/25", + "version":7426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.32.0", + "prefixLen":25, + "network":"192.228.32.0\/25", + "version":7425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.32.128", + "prefixLen":25, + "network":"192.228.32.128\/25", + "version":7424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.33.0", + "prefixLen":25, + "network":"192.228.33.0\/25", + "version":7423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.33.128", + "prefixLen":25, + "network":"192.228.33.128\/25", + "version":7422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.34.0", + "prefixLen":25, + "network":"192.228.34.0\/25", + "version":7421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.34.128", + "prefixLen":25, + "network":"192.228.34.128\/25", + "version":7420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.35.0", + "prefixLen":25, + "network":"192.228.35.0\/25", + "version":7419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.35.128", + "prefixLen":25, + "network":"192.228.35.128\/25", + "version":7418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.48.0", + "prefixLen":25, + "network":"192.228.48.0\/25", + "version":7417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.48.128", + "prefixLen":25, + "network":"192.228.48.128\/25", + "version":7416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.49.0", + "prefixLen":25, + "network":"192.228.49.0\/25", + "version":7415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.49.128", + "prefixLen":25, + "network":"192.228.49.128\/25", + "version":7414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.50.0", + "prefixLen":25, + "network":"192.228.50.0\/25", + "version":7413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.50.128", + "prefixLen":25, + "network":"192.228.50.128\/25", + "version":7412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.51.0", + "prefixLen":25, + "network":"192.228.51.0\/25", + "version":7411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.51.128", + "prefixLen":25, + "network":"192.228.51.128\/25", + "version":7410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.64.0", + "prefixLen":25, + "network":"192.228.64.0\/25", + "version":7409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.64.128", + "prefixLen":25, + "network":"192.228.64.128\/25", + "version":7408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.65.0", + "prefixLen":25, + "network":"192.228.65.0\/25", + "version":7407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.65.128", + "prefixLen":25, + "network":"192.228.65.128\/25", + "version":7406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.66.0", + "prefixLen":25, + "network":"192.228.66.0\/25", + "version":7405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.66.128", + "prefixLen":25, + "network":"192.228.66.128\/25", + "version":7404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.67.0", + "prefixLen":25, + "network":"192.228.67.0\/25", + "version":7403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.67.128", + "prefixLen":25, + "network":"192.228.67.128\/25", + "version":7402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.80.0", + "prefixLen":25, + "network":"192.228.80.0\/25", + "version":7401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.80.128", + "prefixLen":25, + "network":"192.228.80.128\/25", + "version":7400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.81.0", + "prefixLen":25, + "network":"192.228.81.0\/25", + "version":7399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.81.128", + "prefixLen":25, + "network":"192.228.81.128\/25", + "version":7398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.82.0", + "prefixLen":25, + "network":"192.228.82.0\/25", + "version":7397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.82.128", + "prefixLen":25, + "network":"192.228.82.128\/25", + "version":7396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.83.0", + "prefixLen":25, + "network":"192.228.83.0\/25", + "version":7395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.83.128", + "prefixLen":25, + "network":"192.228.83.128\/25", + "version":7394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.96.0", + "prefixLen":25, + "network":"192.228.96.0\/25", + "version":7393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.96.128", + "prefixLen":25, + "network":"192.228.96.128\/25", + "version":7392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.97.0", + "prefixLen":25, + "network":"192.228.97.0\/25", + "version":7391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.97.128", + "prefixLen":25, + "network":"192.228.97.128\/25", + "version":7390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.98.0", + "prefixLen":25, + "network":"192.228.98.0\/25", + "version":7389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.98.128", + "prefixLen":25, + "network":"192.228.98.128\/25", + "version":7388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.99.0", + "prefixLen":25, + "network":"192.228.99.0\/25", + "version":7387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.99.128", + "prefixLen":25, + "network":"192.228.99.128\/25", + "version":7386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.112.0", + "prefixLen":25, + "network":"192.228.112.0\/25", + "version":7385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.112.128", + "prefixLen":25, + "network":"192.228.112.128\/25", + "version":7384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.113.0", + "prefixLen":25, + "network":"192.228.113.0\/25", + "version":7383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.113.128", + "prefixLen":25, + "network":"192.228.113.128\/25", + "version":7382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.114.0", + "prefixLen":25, + "network":"192.228.114.0\/25", + "version":7381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.114.128", + "prefixLen":25, + "network":"192.228.114.128\/25", + "version":7380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.115.0", + "prefixLen":25, + "network":"192.228.115.0\/25", + "version":7379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.115.128", + "prefixLen":25, + "network":"192.228.115.128\/25", + "version":7378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.128.0", + "prefixLen":25, + "network":"192.228.128.0\/25", + "version":7377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.128.128", + "prefixLen":25, + "network":"192.228.128.128\/25", + "version":7376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.129.0", + "prefixLen":25, + "network":"192.228.129.0\/25", + "version":7375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.129.128", + "prefixLen":25, + "network":"192.228.129.128\/25", + "version":7374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.130.0", + "prefixLen":25, + "network":"192.228.130.0\/25", + "version":7373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.130.128", + "prefixLen":25, + "network":"192.228.130.128\/25", + "version":7372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.131.0", + "prefixLen":25, + "network":"192.228.131.0\/25", + "version":7371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.131.128", + "prefixLen":25, + "network":"192.228.131.128\/25", + "version":7370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.144.0", + "prefixLen":25, + "network":"192.228.144.0\/25", + "version":7369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.144.128", + "prefixLen":25, + "network":"192.228.144.128\/25", + "version":7368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.145.0", + "prefixLen":25, + "network":"192.228.145.0\/25", + "version":7367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.145.128", + "prefixLen":25, + "network":"192.228.145.128\/25", + "version":7366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.146.0", + "prefixLen":25, + "network":"192.228.146.0\/25", + "version":7365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.146.128", + "prefixLen":25, + "network":"192.228.146.128\/25", + "version":7364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.147.0", + "prefixLen":25, + "network":"192.228.147.0\/25", + "version":7363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.147.128", + "prefixLen":25, + "network":"192.228.147.128\/25", + "version":7362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.160.0", + "prefixLen":25, + "network":"192.228.160.0\/25", + "version":7361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.160.128", + "prefixLen":25, + "network":"192.228.160.128\/25", + "version":7360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.161.0", + "prefixLen":25, + "network":"192.228.161.0\/25", + "version":7359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.161.128", + "prefixLen":25, + "network":"192.228.161.128\/25", + "version":7358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.162.0", + "prefixLen":25, + "network":"192.228.162.0\/25", + "version":7357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.162.128", + "prefixLen":25, + "network":"192.228.162.128\/25", + "version":7356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.163.0", + "prefixLen":25, + "network":"192.228.163.0\/25", + "version":7355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.163.128", + "prefixLen":25, + "network":"192.228.163.128\/25", + "version":7354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.176.0", + "prefixLen":25, + "network":"192.228.176.0\/25", + "version":7353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.176.128", + "prefixLen":25, + "network":"192.228.176.128\/25", + "version":7352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.177.0", + "prefixLen":25, + "network":"192.228.177.0\/25", + "version":7351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.177.128", + "prefixLen":25, + "network":"192.228.177.128\/25", + "version":7350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.178.0", + "prefixLen":25, + "network":"192.228.178.0\/25", + "version":7349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.178.128", + "prefixLen":25, + "network":"192.228.178.128\/25", + "version":7348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.179.0", + "prefixLen":25, + "network":"192.228.179.0\/25", + "version":7347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.179.128", + "prefixLen":25, + "network":"192.228.179.128\/25", + "version":7346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.192.0", + "prefixLen":25, + "network":"192.228.192.0\/25", + "version":7345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.192.128", + "prefixLen":25, + "network":"192.228.192.128\/25", + "version":7344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.193.0", + "prefixLen":25, + "network":"192.228.193.0\/25", + "version":7343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.193.128", + "prefixLen":25, + "network":"192.228.193.128\/25", + "version":7342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.194.0", + "prefixLen":25, + "network":"192.228.194.0\/25", + "version":7341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.194.128", + "prefixLen":25, + "network":"192.228.194.128\/25", + "version":7340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.195.0", + "prefixLen":25, + "network":"192.228.195.0\/25", + "version":7339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.195.128", + "prefixLen":25, + "network":"192.228.195.128\/25", + "version":7338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.208.0", + "prefixLen":25, + "network":"192.228.208.0\/25", + "version":7337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.208.128", + "prefixLen":25, + "network":"192.228.208.128\/25", + "version":7336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.209.0", + "prefixLen":25, + "network":"192.228.209.0\/25", + "version":7335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.209.128", + "prefixLen":25, + "network":"192.228.209.128\/25", + "version":7334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.210.0", + "prefixLen":25, + "network":"192.228.210.0\/25", + "version":7333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.210.128", + "prefixLen":25, + "network":"192.228.210.128\/25", + "version":7332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.211.0", + "prefixLen":25, + "network":"192.228.211.0\/25", + "version":7331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.211.128", + "prefixLen":25, + "network":"192.228.211.128\/25", + "version":7330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.224.0", + "prefixLen":25, + "network":"192.228.224.0\/25", + "version":7329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.224.128", + "prefixLen":25, + "network":"192.228.224.128\/25", + "version":7328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.225.0", + "prefixLen":25, + "network":"192.228.225.0\/25", + "version":7327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.225.128", + "prefixLen":25, + "network":"192.228.225.128\/25", + "version":7326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.226.0", + "prefixLen":25, + "network":"192.228.226.0\/25", + "version":7325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.226.128", + "prefixLen":25, + "network":"192.228.226.128\/25", + "version":7324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.227.0", + "prefixLen":25, + "network":"192.228.227.0\/25", + "version":7323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.227.128", + "prefixLen":25, + "network":"192.228.227.128\/25", + "version":7322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.240.0", + "prefixLen":25, + "network":"192.228.240.0\/25", + "version":7321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.240.128", + "prefixLen":25, + "network":"192.228.240.128\/25", + "version":7320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.241.0", + "prefixLen":25, + "network":"192.228.241.0\/25", + "version":7319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.241.128", + "prefixLen":25, + "network":"192.228.241.128\/25", + "version":7318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.242.0", + "prefixLen":25, + "network":"192.228.242.0\/25", + "version":7317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.242.128", + "prefixLen":25, + "network":"192.228.242.128\/25", + "version":7316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.243.0", + "prefixLen":25, + "network":"192.228.243.0\/25", + "version":7315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.228.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.228.243.128", + "prefixLen":25, + "network":"192.228.243.128\/25", + "version":7314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64660 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.0.0", + "prefixLen":25, + "network":"192.229.0.0\/25", + "version":7441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.0.128", + "prefixLen":25, + "network":"192.229.0.128\/25", + "version":7568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.1.0", + "prefixLen":25, + "network":"192.229.1.0\/25", + "version":7567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.1.128", + "prefixLen":25, + "network":"192.229.1.128\/25", + "version":7566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.2.0", + "prefixLen":25, + "network":"192.229.2.0\/25", + "version":7565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.2.128", + "prefixLen":25, + "network":"192.229.2.128\/25", + "version":7564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.3.0", + "prefixLen":25, + "network":"192.229.3.0\/25", + "version":7563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.3.128", + "prefixLen":25, + "network":"192.229.3.128\/25", + "version":7562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.16.0", + "prefixLen":25, + "network":"192.229.16.0\/25", + "version":7561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.16.128", + "prefixLen":25, + "network":"192.229.16.128\/25", + "version":7560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.17.0", + "prefixLen":25, + "network":"192.229.17.0\/25", + "version":7559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.17.128", + "prefixLen":25, + "network":"192.229.17.128\/25", + "version":7558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.18.0", + "prefixLen":25, + "network":"192.229.18.0\/25", + "version":7557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.18.128", + "prefixLen":25, + "network":"192.229.18.128\/25", + "version":7556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.19.0", + "prefixLen":25, + "network":"192.229.19.0\/25", + "version":7555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.19.128", + "prefixLen":25, + "network":"192.229.19.128\/25", + "version":7554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.32.0", + "prefixLen":25, + "network":"192.229.32.0\/25", + "version":7553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.32.128", + "prefixLen":25, + "network":"192.229.32.128\/25", + "version":7552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.33.0", + "prefixLen":25, + "network":"192.229.33.0\/25", + "version":7551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.33.128", + "prefixLen":25, + "network":"192.229.33.128\/25", + "version":7550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.34.0", + "prefixLen":25, + "network":"192.229.34.0\/25", + "version":7549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.34.128", + "prefixLen":25, + "network":"192.229.34.128\/25", + "version":7548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.35.0", + "prefixLen":25, + "network":"192.229.35.0\/25", + "version":7547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.35.128", + "prefixLen":25, + "network":"192.229.35.128\/25", + "version":7546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.48.0", + "prefixLen":25, + "network":"192.229.48.0\/25", + "version":7545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.48.128", + "prefixLen":25, + "network":"192.229.48.128\/25", + "version":7544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.49.0", + "prefixLen":25, + "network":"192.229.49.0\/25", + "version":7543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.49.128", + "prefixLen":25, + "network":"192.229.49.128\/25", + "version":7542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.50.0", + "prefixLen":25, + "network":"192.229.50.0\/25", + "version":7541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.50.128", + "prefixLen":25, + "network":"192.229.50.128\/25", + "version":7540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.51.0", + "prefixLen":25, + "network":"192.229.51.0\/25", + "version":7539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.51.128", + "prefixLen":25, + "network":"192.229.51.128\/25", + "version":7538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.64.0", + "prefixLen":25, + "network":"192.229.64.0\/25", + "version":7537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.64.128", + "prefixLen":25, + "network":"192.229.64.128\/25", + "version":7536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.65.0", + "prefixLen":25, + "network":"192.229.65.0\/25", + "version":7535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.65.128", + "prefixLen":25, + "network":"192.229.65.128\/25", + "version":7534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.66.0", + "prefixLen":25, + "network":"192.229.66.0\/25", + "version":7533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.66.128", + "prefixLen":25, + "network":"192.229.66.128\/25", + "version":7532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.67.0", + "prefixLen":25, + "network":"192.229.67.0\/25", + "version":7531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.67.128", + "prefixLen":25, + "network":"192.229.67.128\/25", + "version":7530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.80.0", + "prefixLen":25, + "network":"192.229.80.0\/25", + "version":7529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.80.128", + "prefixLen":25, + "network":"192.229.80.128\/25", + "version":7528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.81.0", + "prefixLen":25, + "network":"192.229.81.0\/25", + "version":7527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.81.128", + "prefixLen":25, + "network":"192.229.81.128\/25", + "version":7526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.82.0", + "prefixLen":25, + "network":"192.229.82.0\/25", + "version":7525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.82.128", + "prefixLen":25, + "network":"192.229.82.128\/25", + "version":7524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.83.0", + "prefixLen":25, + "network":"192.229.83.0\/25", + "version":7523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.83.128", + "prefixLen":25, + "network":"192.229.83.128\/25", + "version":7522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.96.0", + "prefixLen":25, + "network":"192.229.96.0\/25", + "version":7521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.96.128", + "prefixLen":25, + "network":"192.229.96.128\/25", + "version":7520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.97.0", + "prefixLen":25, + "network":"192.229.97.0\/25", + "version":7519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.97.128", + "prefixLen":25, + "network":"192.229.97.128\/25", + "version":7518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.98.0", + "prefixLen":25, + "network":"192.229.98.0\/25", + "version":7517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.98.128", + "prefixLen":25, + "network":"192.229.98.128\/25", + "version":7516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.99.0", + "prefixLen":25, + "network":"192.229.99.0\/25", + "version":7515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.99.128", + "prefixLen":25, + "network":"192.229.99.128\/25", + "version":7514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.112.0", + "prefixLen":25, + "network":"192.229.112.0\/25", + "version":7513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.112.128", + "prefixLen":25, + "network":"192.229.112.128\/25", + "version":7512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.113.0", + "prefixLen":25, + "network":"192.229.113.0\/25", + "version":7511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.113.128", + "prefixLen":25, + "network":"192.229.113.128\/25", + "version":7510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.114.0", + "prefixLen":25, + "network":"192.229.114.0\/25", + "version":7509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.114.128", + "prefixLen":25, + "network":"192.229.114.128\/25", + "version":7508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.115.0", + "prefixLen":25, + "network":"192.229.115.0\/25", + "version":7507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.115.128", + "prefixLen":25, + "network":"192.229.115.128\/25", + "version":7506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.128.0", + "prefixLen":25, + "network":"192.229.128.0\/25", + "version":7505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.128.128", + "prefixLen":25, + "network":"192.229.128.128\/25", + "version":7504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.129.0", + "prefixLen":25, + "network":"192.229.129.0\/25", + "version":7503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.129.128", + "prefixLen":25, + "network":"192.229.129.128\/25", + "version":7502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.130.0", + "prefixLen":25, + "network":"192.229.130.0\/25", + "version":7501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.130.128", + "prefixLen":25, + "network":"192.229.130.128\/25", + "version":7500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.131.0", + "prefixLen":25, + "network":"192.229.131.0\/25", + "version":7499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.131.128", + "prefixLen":25, + "network":"192.229.131.128\/25", + "version":7498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.144.0", + "prefixLen":25, + "network":"192.229.144.0\/25", + "version":7497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.144.128", + "prefixLen":25, + "network":"192.229.144.128\/25", + "version":7496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.145.0", + "prefixLen":25, + "network":"192.229.145.0\/25", + "version":7495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.145.128", + "prefixLen":25, + "network":"192.229.145.128\/25", + "version":7494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.146.0", + "prefixLen":25, + "network":"192.229.146.0\/25", + "version":7493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.146.128", + "prefixLen":25, + "network":"192.229.146.128\/25", + "version":7492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.147.0", + "prefixLen":25, + "network":"192.229.147.0\/25", + "version":7491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.147.128", + "prefixLen":25, + "network":"192.229.147.128\/25", + "version":7490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.160.0", + "prefixLen":25, + "network":"192.229.160.0\/25", + "version":7489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.160.128", + "prefixLen":25, + "network":"192.229.160.128\/25", + "version":7488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.161.0", + "prefixLen":25, + "network":"192.229.161.0\/25", + "version":7487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.161.128", + "prefixLen":25, + "network":"192.229.161.128\/25", + "version":7486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.162.0", + "prefixLen":25, + "network":"192.229.162.0\/25", + "version":7485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.162.128", + "prefixLen":25, + "network":"192.229.162.128\/25", + "version":7484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.163.0", + "prefixLen":25, + "network":"192.229.163.0\/25", + "version":7483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.163.128", + "prefixLen":25, + "network":"192.229.163.128\/25", + "version":7482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.176.0", + "prefixLen":25, + "network":"192.229.176.0\/25", + "version":7481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.176.128", + "prefixLen":25, + "network":"192.229.176.128\/25", + "version":7480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.177.0", + "prefixLen":25, + "network":"192.229.177.0\/25", + "version":7479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.177.128", + "prefixLen":25, + "network":"192.229.177.128\/25", + "version":7478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.178.0", + "prefixLen":25, + "network":"192.229.178.0\/25", + "version":7477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.178.128", + "prefixLen":25, + "network":"192.229.178.128\/25", + "version":7476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.179.0", + "prefixLen":25, + "network":"192.229.179.0\/25", + "version":7475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.179.128", + "prefixLen":25, + "network":"192.229.179.128\/25", + "version":7474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.192.0", + "prefixLen":25, + "network":"192.229.192.0\/25", + "version":7473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.192.128", + "prefixLen":25, + "network":"192.229.192.128\/25", + "version":7472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.193.0", + "prefixLen":25, + "network":"192.229.193.0\/25", + "version":7471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.193.128", + "prefixLen":25, + "network":"192.229.193.128\/25", + "version":7470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.194.0", + "prefixLen":25, + "network":"192.229.194.0\/25", + "version":7469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.194.128", + "prefixLen":25, + "network":"192.229.194.128\/25", + "version":7468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.195.0", + "prefixLen":25, + "network":"192.229.195.0\/25", + "version":7467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.195.128", + "prefixLen":25, + "network":"192.229.195.128\/25", + "version":7466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.208.0", + "prefixLen":25, + "network":"192.229.208.0\/25", + "version":7465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.208.128", + "prefixLen":25, + "network":"192.229.208.128\/25", + "version":7464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.209.0", + "prefixLen":25, + "network":"192.229.209.0\/25", + "version":7463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.209.128", + "prefixLen":25, + "network":"192.229.209.128\/25", + "version":7462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.210.0", + "prefixLen":25, + "network":"192.229.210.0\/25", + "version":7461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.210.128", + "prefixLen":25, + "network":"192.229.210.128\/25", + "version":7460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.211.0", + "prefixLen":25, + "network":"192.229.211.0\/25", + "version":7459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.211.128", + "prefixLen":25, + "network":"192.229.211.128\/25", + "version":7458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.224.0", + "prefixLen":25, + "network":"192.229.224.0\/25", + "version":7457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.224.128", + "prefixLen":25, + "network":"192.229.224.128\/25", + "version":7456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.225.0", + "prefixLen":25, + "network":"192.229.225.0\/25", + "version":7455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.225.128", + "prefixLen":25, + "network":"192.229.225.128\/25", + "version":7454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.226.0", + "prefixLen":25, + "network":"192.229.226.0\/25", + "version":7453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.226.128", + "prefixLen":25, + "network":"192.229.226.128\/25", + "version":7452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.227.0", + "prefixLen":25, + "network":"192.229.227.0\/25", + "version":7451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.227.128", + "prefixLen":25, + "network":"192.229.227.128\/25", + "version":7450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.240.0", + "prefixLen":25, + "network":"192.229.240.0\/25", + "version":7449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.240.128", + "prefixLen":25, + "network":"192.229.240.128\/25", + "version":7448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.241.0", + "prefixLen":25, + "network":"192.229.241.0\/25", + "version":7447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.241.128", + "prefixLen":25, + "network":"192.229.241.128\/25", + "version":7446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.242.0", + "prefixLen":25, + "network":"192.229.242.0\/25", + "version":7445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.242.128", + "prefixLen":25, + "network":"192.229.242.128\/25", + "version":7444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.243.0", + "prefixLen":25, + "network":"192.229.243.0\/25", + "version":7443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.229.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.229.243.128", + "prefixLen":25, + "network":"192.229.243.128\/25", + "version":7442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64661 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.0.0", + "prefixLen":25, + "network":"192.230.0.0\/25", + "version":7569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.0.128", + "prefixLen":25, + "network":"192.230.0.128\/25", + "version":7696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.1.0", + "prefixLen":25, + "network":"192.230.1.0\/25", + "version":7695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.1.128", + "prefixLen":25, + "network":"192.230.1.128\/25", + "version":7694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.2.0", + "prefixLen":25, + "network":"192.230.2.0\/25", + "version":7693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.2.128", + "prefixLen":25, + "network":"192.230.2.128\/25", + "version":7692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.3.0", + "prefixLen":25, + "network":"192.230.3.0\/25", + "version":7691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.3.128", + "prefixLen":25, + "network":"192.230.3.128\/25", + "version":7690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.16.0", + "prefixLen":25, + "network":"192.230.16.0\/25", + "version":7689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.16.128", + "prefixLen":25, + "network":"192.230.16.128\/25", + "version":7688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.17.0", + "prefixLen":25, + "network":"192.230.17.0\/25", + "version":7687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.17.128", + "prefixLen":25, + "network":"192.230.17.128\/25", + "version":7686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.18.0", + "prefixLen":25, + "network":"192.230.18.0\/25", + "version":7685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.18.128", + "prefixLen":25, + "network":"192.230.18.128\/25", + "version":7684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.19.0", + "prefixLen":25, + "network":"192.230.19.0\/25", + "version":7683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.19.128", + "prefixLen":25, + "network":"192.230.19.128\/25", + "version":7682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.32.0", + "prefixLen":25, + "network":"192.230.32.0\/25", + "version":7681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.32.128", + "prefixLen":25, + "network":"192.230.32.128\/25", + "version":7680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.33.0", + "prefixLen":25, + "network":"192.230.33.0\/25", + "version":7679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.33.128", + "prefixLen":25, + "network":"192.230.33.128\/25", + "version":7678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.34.0", + "prefixLen":25, + "network":"192.230.34.0\/25", + "version":7677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.34.128", + "prefixLen":25, + "network":"192.230.34.128\/25", + "version":7676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.35.0", + "prefixLen":25, + "network":"192.230.35.0\/25", + "version":7675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.35.128", + "prefixLen":25, + "network":"192.230.35.128\/25", + "version":7674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.48.0", + "prefixLen":25, + "network":"192.230.48.0\/25", + "version":7673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.48.128", + "prefixLen":25, + "network":"192.230.48.128\/25", + "version":7672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.49.0", + "prefixLen":25, + "network":"192.230.49.0\/25", + "version":7671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.49.128", + "prefixLen":25, + "network":"192.230.49.128\/25", + "version":7670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.50.0", + "prefixLen":25, + "network":"192.230.50.0\/25", + "version":7669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.50.128", + "prefixLen":25, + "network":"192.230.50.128\/25", + "version":7668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.51.0", + "prefixLen":25, + "network":"192.230.51.0\/25", + "version":7667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.51.128", + "prefixLen":25, + "network":"192.230.51.128\/25", + "version":7666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.64.0", + "prefixLen":25, + "network":"192.230.64.0\/25", + "version":7665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.64.128", + "prefixLen":25, + "network":"192.230.64.128\/25", + "version":7664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.65.0", + "prefixLen":25, + "network":"192.230.65.0\/25", + "version":7663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.65.128", + "prefixLen":25, + "network":"192.230.65.128\/25", + "version":7662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.66.0", + "prefixLen":25, + "network":"192.230.66.0\/25", + "version":7661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.66.128", + "prefixLen":25, + "network":"192.230.66.128\/25", + "version":7660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.67.0", + "prefixLen":25, + "network":"192.230.67.0\/25", + "version":7659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.67.128", + "prefixLen":25, + "network":"192.230.67.128\/25", + "version":7658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.80.0", + "prefixLen":25, + "network":"192.230.80.0\/25", + "version":7657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.80.128", + "prefixLen":25, + "network":"192.230.80.128\/25", + "version":7656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.81.0", + "prefixLen":25, + "network":"192.230.81.0\/25", + "version":7655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.81.128", + "prefixLen":25, + "network":"192.230.81.128\/25", + "version":7654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.82.0", + "prefixLen":25, + "network":"192.230.82.0\/25", + "version":7653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.82.128", + "prefixLen":25, + "network":"192.230.82.128\/25", + "version":7652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.83.0", + "prefixLen":25, + "network":"192.230.83.0\/25", + "version":7651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.83.128", + "prefixLen":25, + "network":"192.230.83.128\/25", + "version":7650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.96.0", + "prefixLen":25, + "network":"192.230.96.0\/25", + "version":7649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.96.128", + "prefixLen":25, + "network":"192.230.96.128\/25", + "version":7648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.97.0", + "prefixLen":25, + "network":"192.230.97.0\/25", + "version":7647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.97.128", + "prefixLen":25, + "network":"192.230.97.128\/25", + "version":7646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.98.0", + "prefixLen":25, + "network":"192.230.98.0\/25", + "version":7645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.98.128", + "prefixLen":25, + "network":"192.230.98.128\/25", + "version":7644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.99.0", + "prefixLen":25, + "network":"192.230.99.0\/25", + "version":7643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.99.128", + "prefixLen":25, + "network":"192.230.99.128\/25", + "version":7642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.112.0", + "prefixLen":25, + "network":"192.230.112.0\/25", + "version":7641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.112.128", + "prefixLen":25, + "network":"192.230.112.128\/25", + "version":7640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.113.0", + "prefixLen":25, + "network":"192.230.113.0\/25", + "version":7639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.113.128", + "prefixLen":25, + "network":"192.230.113.128\/25", + "version":7638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.114.0", + "prefixLen":25, + "network":"192.230.114.0\/25", + "version":7637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.114.128", + "prefixLen":25, + "network":"192.230.114.128\/25", + "version":7636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.115.0", + "prefixLen":25, + "network":"192.230.115.0\/25", + "version":7635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.115.128", + "prefixLen":25, + "network":"192.230.115.128\/25", + "version":7634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.128.0", + "prefixLen":25, + "network":"192.230.128.0\/25", + "version":7633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.128.128", + "prefixLen":25, + "network":"192.230.128.128\/25", + "version":7632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.129.0", + "prefixLen":25, + "network":"192.230.129.0\/25", + "version":7631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.129.128", + "prefixLen":25, + "network":"192.230.129.128\/25", + "version":7630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.130.0", + "prefixLen":25, + "network":"192.230.130.0\/25", + "version":7629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.130.128", + "prefixLen":25, + "network":"192.230.130.128\/25", + "version":7628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.131.0", + "prefixLen":25, + "network":"192.230.131.0\/25", + "version":7627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.131.128", + "prefixLen":25, + "network":"192.230.131.128\/25", + "version":7626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.144.0", + "prefixLen":25, + "network":"192.230.144.0\/25", + "version":7625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.144.128", + "prefixLen":25, + "network":"192.230.144.128\/25", + "version":7624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.145.0", + "prefixLen":25, + "network":"192.230.145.0\/25", + "version":7623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.145.128", + "prefixLen":25, + "network":"192.230.145.128\/25", + "version":7622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.146.0", + "prefixLen":25, + "network":"192.230.146.0\/25", + "version":7621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.146.128", + "prefixLen":25, + "network":"192.230.146.128\/25", + "version":7620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.147.0", + "prefixLen":25, + "network":"192.230.147.0\/25", + "version":7619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.147.128", + "prefixLen":25, + "network":"192.230.147.128\/25", + "version":7618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.160.0", + "prefixLen":25, + "network":"192.230.160.0\/25", + "version":7617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.160.128", + "prefixLen":25, + "network":"192.230.160.128\/25", + "version":7616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.161.0", + "prefixLen":25, + "network":"192.230.161.0\/25", + "version":7615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.161.128", + "prefixLen":25, + "network":"192.230.161.128\/25", + "version":7614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.162.0", + "prefixLen":25, + "network":"192.230.162.0\/25", + "version":7613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.162.128", + "prefixLen":25, + "network":"192.230.162.128\/25", + "version":7612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.163.0", + "prefixLen":25, + "network":"192.230.163.0\/25", + "version":7611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.163.128", + "prefixLen":25, + "network":"192.230.163.128\/25", + "version":7610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.176.0", + "prefixLen":25, + "network":"192.230.176.0\/25", + "version":7609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.176.128", + "prefixLen":25, + "network":"192.230.176.128\/25", + "version":7608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.177.0", + "prefixLen":25, + "network":"192.230.177.0\/25", + "version":7607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.177.128", + "prefixLen":25, + "network":"192.230.177.128\/25", + "version":7606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.178.0", + "prefixLen":25, + "network":"192.230.178.0\/25", + "version":7605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.178.128", + "prefixLen":25, + "network":"192.230.178.128\/25", + "version":7604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.179.0", + "prefixLen":25, + "network":"192.230.179.0\/25", + "version":7603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.179.128", + "prefixLen":25, + "network":"192.230.179.128\/25", + "version":7602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.192.0", + "prefixLen":25, + "network":"192.230.192.0\/25", + "version":7601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.192.128", + "prefixLen":25, + "network":"192.230.192.128\/25", + "version":7600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.193.0", + "prefixLen":25, + "network":"192.230.193.0\/25", + "version":7599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.193.128", + "prefixLen":25, + "network":"192.230.193.128\/25", + "version":7598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.194.0", + "prefixLen":25, + "network":"192.230.194.0\/25", + "version":7597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.194.128", + "prefixLen":25, + "network":"192.230.194.128\/25", + "version":7596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.195.0", + "prefixLen":25, + "network":"192.230.195.0\/25", + "version":7595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.195.128", + "prefixLen":25, + "network":"192.230.195.128\/25", + "version":7594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.208.0", + "prefixLen":25, + "network":"192.230.208.0\/25", + "version":7593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.208.128", + "prefixLen":25, + "network":"192.230.208.128\/25", + "version":7592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.209.0", + "prefixLen":25, + "network":"192.230.209.0\/25", + "version":7591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.209.128", + "prefixLen":25, + "network":"192.230.209.128\/25", + "version":7590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.210.0", + "prefixLen":25, + "network":"192.230.210.0\/25", + "version":7589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.210.128", + "prefixLen":25, + "network":"192.230.210.128\/25", + "version":7588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.211.0", + "prefixLen":25, + "network":"192.230.211.0\/25", + "version":7587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.211.128", + "prefixLen":25, + "network":"192.230.211.128\/25", + "version":7586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.224.0", + "prefixLen":25, + "network":"192.230.224.0\/25", + "version":7585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.224.128", + "prefixLen":25, + "network":"192.230.224.128\/25", + "version":7584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.225.0", + "prefixLen":25, + "network":"192.230.225.0\/25", + "version":7583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.225.128", + "prefixLen":25, + "network":"192.230.225.128\/25", + "version":7582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.226.0", + "prefixLen":25, + "network":"192.230.226.0\/25", + "version":7581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.226.128", + "prefixLen":25, + "network":"192.230.226.128\/25", + "version":7580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.227.0", + "prefixLen":25, + "network":"192.230.227.0\/25", + "version":7579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.227.128", + "prefixLen":25, + "network":"192.230.227.128\/25", + "version":7578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.240.0", + "prefixLen":25, + "network":"192.230.240.0\/25", + "version":7577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.240.128", + "prefixLen":25, + "network":"192.230.240.128\/25", + "version":7576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.241.0", + "prefixLen":25, + "network":"192.230.241.0\/25", + "version":7575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.241.128", + "prefixLen":25, + "network":"192.230.241.128\/25", + "version":7574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.242.0", + "prefixLen":25, + "network":"192.230.242.0\/25", + "version":7573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.242.128", + "prefixLen":25, + "network":"192.230.242.128\/25", + "version":7572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.243.0", + "prefixLen":25, + "network":"192.230.243.0\/25", + "version":7571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.230.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.230.243.128", + "prefixLen":25, + "network":"192.230.243.128\/25", + "version":7570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64662 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.0.0", + "prefixLen":25, + "network":"192.231.0.0\/25", + "version":7697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.0.128", + "prefixLen":25, + "network":"192.231.0.128\/25", + "version":7824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.1.0", + "prefixLen":25, + "network":"192.231.1.0\/25", + "version":7823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.1.128", + "prefixLen":25, + "network":"192.231.1.128\/25", + "version":7822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.2.0", + "prefixLen":25, + "network":"192.231.2.0\/25", + "version":7821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.2.128", + "prefixLen":25, + "network":"192.231.2.128\/25", + "version":7820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.3.0", + "prefixLen":25, + "network":"192.231.3.0\/25", + "version":7819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.3.128", + "prefixLen":25, + "network":"192.231.3.128\/25", + "version":7818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.16.0", + "prefixLen":25, + "network":"192.231.16.0\/25", + "version":7817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.16.128", + "prefixLen":25, + "network":"192.231.16.128\/25", + "version":7816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.17.0", + "prefixLen":25, + "network":"192.231.17.0\/25", + "version":7815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.17.128", + "prefixLen":25, + "network":"192.231.17.128\/25", + "version":7814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.18.0", + "prefixLen":25, + "network":"192.231.18.0\/25", + "version":7813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.18.128", + "prefixLen":25, + "network":"192.231.18.128\/25", + "version":7812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.19.0", + "prefixLen":25, + "network":"192.231.19.0\/25", + "version":7811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.19.128", + "prefixLen":25, + "network":"192.231.19.128\/25", + "version":7810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.32.0", + "prefixLen":25, + "network":"192.231.32.0\/25", + "version":7809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.32.128", + "prefixLen":25, + "network":"192.231.32.128\/25", + "version":7808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.33.0", + "prefixLen":25, + "network":"192.231.33.0\/25", + "version":7807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.33.128", + "prefixLen":25, + "network":"192.231.33.128\/25", + "version":7806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.34.0", + "prefixLen":25, + "network":"192.231.34.0\/25", + "version":7805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.34.128", + "prefixLen":25, + "network":"192.231.34.128\/25", + "version":7804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.35.0", + "prefixLen":25, + "network":"192.231.35.0\/25", + "version":7803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.35.128", + "prefixLen":25, + "network":"192.231.35.128\/25", + "version":7802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.48.0", + "prefixLen":25, + "network":"192.231.48.0\/25", + "version":7801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.48.128", + "prefixLen":25, + "network":"192.231.48.128\/25", + "version":7800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.49.0", + "prefixLen":25, + "network":"192.231.49.0\/25", + "version":7799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.49.128", + "prefixLen":25, + "network":"192.231.49.128\/25", + "version":7798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.50.0", + "prefixLen":25, + "network":"192.231.50.0\/25", + "version":7797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.50.128", + "prefixLen":25, + "network":"192.231.50.128\/25", + "version":7796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.51.0", + "prefixLen":25, + "network":"192.231.51.0\/25", + "version":7795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.51.128", + "prefixLen":25, + "network":"192.231.51.128\/25", + "version":7794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.64.0", + "prefixLen":25, + "network":"192.231.64.0\/25", + "version":7793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.64.128", + "prefixLen":25, + "network":"192.231.64.128\/25", + "version":7792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.65.0", + "prefixLen":25, + "network":"192.231.65.0\/25", + "version":7791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.65.128", + "prefixLen":25, + "network":"192.231.65.128\/25", + "version":7790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.66.0", + "prefixLen":25, + "network":"192.231.66.0\/25", + "version":7789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.66.128", + "prefixLen":25, + "network":"192.231.66.128\/25", + "version":7788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.67.0", + "prefixLen":25, + "network":"192.231.67.0\/25", + "version":7787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.67.128", + "prefixLen":25, + "network":"192.231.67.128\/25", + "version":7786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.80.0", + "prefixLen":25, + "network":"192.231.80.0\/25", + "version":7785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.80.128", + "prefixLen":25, + "network":"192.231.80.128\/25", + "version":7784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.81.0", + "prefixLen":25, + "network":"192.231.81.0\/25", + "version":7783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.81.128", + "prefixLen":25, + "network":"192.231.81.128\/25", + "version":7782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.82.0", + "prefixLen":25, + "network":"192.231.82.0\/25", + "version":7781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.82.128", + "prefixLen":25, + "network":"192.231.82.128\/25", + "version":7780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.83.0", + "prefixLen":25, + "network":"192.231.83.0\/25", + "version":7779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.83.128", + "prefixLen":25, + "network":"192.231.83.128\/25", + "version":7778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.96.0", + "prefixLen":25, + "network":"192.231.96.0\/25", + "version":7777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.96.128", + "prefixLen":25, + "network":"192.231.96.128\/25", + "version":7776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.97.0", + "prefixLen":25, + "network":"192.231.97.0\/25", + "version":7775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.97.128", + "prefixLen":25, + "network":"192.231.97.128\/25", + "version":7774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.98.0", + "prefixLen":25, + "network":"192.231.98.0\/25", + "version":7773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.98.128", + "prefixLen":25, + "network":"192.231.98.128\/25", + "version":7772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.99.0", + "prefixLen":25, + "network":"192.231.99.0\/25", + "version":7771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.99.128", + "prefixLen":25, + "network":"192.231.99.128\/25", + "version":7770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.112.0", + "prefixLen":25, + "network":"192.231.112.0\/25", + "version":7769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.112.128", + "prefixLen":25, + "network":"192.231.112.128\/25", + "version":7768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.113.0", + "prefixLen":25, + "network":"192.231.113.0\/25", + "version":7767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.113.128", + "prefixLen":25, + "network":"192.231.113.128\/25", + "version":7766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.114.0", + "prefixLen":25, + "network":"192.231.114.0\/25", + "version":7765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.114.128", + "prefixLen":25, + "network":"192.231.114.128\/25", + "version":7764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.115.0", + "prefixLen":25, + "network":"192.231.115.0\/25", + "version":7763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.115.128", + "prefixLen":25, + "network":"192.231.115.128\/25", + "version":7762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.128.0", + "prefixLen":25, + "network":"192.231.128.0\/25", + "version":7761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.128.128", + "prefixLen":25, + "network":"192.231.128.128\/25", + "version":7760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.129.0", + "prefixLen":25, + "network":"192.231.129.0\/25", + "version":7759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.129.128", + "prefixLen":25, + "network":"192.231.129.128\/25", + "version":7758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.130.0", + "prefixLen":25, + "network":"192.231.130.0\/25", + "version":7757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.130.128", + "prefixLen":25, + "network":"192.231.130.128\/25", + "version":7756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.131.0", + "prefixLen":25, + "network":"192.231.131.0\/25", + "version":7755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.131.128", + "prefixLen":25, + "network":"192.231.131.128\/25", + "version":7754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.144.0", + "prefixLen":25, + "network":"192.231.144.0\/25", + "version":7753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.144.128", + "prefixLen":25, + "network":"192.231.144.128\/25", + "version":7752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.145.0", + "prefixLen":25, + "network":"192.231.145.0\/25", + "version":7751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.145.128", + "prefixLen":25, + "network":"192.231.145.128\/25", + "version":7750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.146.0", + "prefixLen":25, + "network":"192.231.146.0\/25", + "version":7749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.146.128", + "prefixLen":25, + "network":"192.231.146.128\/25", + "version":7748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.147.0", + "prefixLen":25, + "network":"192.231.147.0\/25", + "version":7747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.147.128", + "prefixLen":25, + "network":"192.231.147.128\/25", + "version":7746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.160.0", + "prefixLen":25, + "network":"192.231.160.0\/25", + "version":7745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.160.128", + "prefixLen":25, + "network":"192.231.160.128\/25", + "version":7744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.161.0", + "prefixLen":25, + "network":"192.231.161.0\/25", + "version":7743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.161.128", + "prefixLen":25, + "network":"192.231.161.128\/25", + "version":7742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.162.0", + "prefixLen":25, + "network":"192.231.162.0\/25", + "version":7741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.162.128", + "prefixLen":25, + "network":"192.231.162.128\/25", + "version":7740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.163.0", + "prefixLen":25, + "network":"192.231.163.0\/25", + "version":7739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.163.128", + "prefixLen":25, + "network":"192.231.163.128\/25", + "version":7738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.176.0", + "prefixLen":25, + "network":"192.231.176.0\/25", + "version":7737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.176.128", + "prefixLen":25, + "network":"192.231.176.128\/25", + "version":7736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.177.0", + "prefixLen":25, + "network":"192.231.177.0\/25", + "version":7735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.177.128", + "prefixLen":25, + "network":"192.231.177.128\/25", + "version":7734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.178.0", + "prefixLen":25, + "network":"192.231.178.0\/25", + "version":7733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.178.128", + "prefixLen":25, + "network":"192.231.178.128\/25", + "version":7732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.179.0", + "prefixLen":25, + "network":"192.231.179.0\/25", + "version":7731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.179.128", + "prefixLen":25, + "network":"192.231.179.128\/25", + "version":7730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.192.0", + "prefixLen":25, + "network":"192.231.192.0\/25", + "version":7729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.192.128", + "prefixLen":25, + "network":"192.231.192.128\/25", + "version":7728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.193.0", + "prefixLen":25, + "network":"192.231.193.0\/25", + "version":7727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.193.128", + "prefixLen":25, + "network":"192.231.193.128\/25", + "version":7726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.194.0", + "prefixLen":25, + "network":"192.231.194.0\/25", + "version":7725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.194.128", + "prefixLen":25, + "network":"192.231.194.128\/25", + "version":7724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.195.0", + "prefixLen":25, + "network":"192.231.195.0\/25", + "version":7723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.195.128", + "prefixLen":25, + "network":"192.231.195.128\/25", + "version":7722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.208.0", + "prefixLen":25, + "network":"192.231.208.0\/25", + "version":7721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.208.128", + "prefixLen":25, + "network":"192.231.208.128\/25", + "version":7720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.209.0", + "prefixLen":25, + "network":"192.231.209.0\/25", + "version":7719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.209.128", + "prefixLen":25, + "network":"192.231.209.128\/25", + "version":7718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.210.0", + "prefixLen":25, + "network":"192.231.210.0\/25", + "version":7717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.210.128", + "prefixLen":25, + "network":"192.231.210.128\/25", + "version":7716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.211.0", + "prefixLen":25, + "network":"192.231.211.0\/25", + "version":7715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.211.128", + "prefixLen":25, + "network":"192.231.211.128\/25", + "version":7714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.224.0", + "prefixLen":25, + "network":"192.231.224.0\/25", + "version":7713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.224.128", + "prefixLen":25, + "network":"192.231.224.128\/25", + "version":7712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.225.0", + "prefixLen":25, + "network":"192.231.225.0\/25", + "version":7711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.225.128", + "prefixLen":25, + "network":"192.231.225.128\/25", + "version":7710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.226.0", + "prefixLen":25, + "network":"192.231.226.0\/25", + "version":7709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.226.128", + "prefixLen":25, + "network":"192.231.226.128\/25", + "version":7708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.227.0", + "prefixLen":25, + "network":"192.231.227.0\/25", + "version":7707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.227.128", + "prefixLen":25, + "network":"192.231.227.128\/25", + "version":7706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.240.0", + "prefixLen":25, + "network":"192.231.240.0\/25", + "version":7705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.240.128", + "prefixLen":25, + "network":"192.231.240.128\/25", + "version":7704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.241.0", + "prefixLen":25, + "network":"192.231.241.0\/25", + "version":7703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.241.128", + "prefixLen":25, + "network":"192.231.241.128\/25", + "version":7702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.242.0", + "prefixLen":25, + "network":"192.231.242.0\/25", + "version":7701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.242.128", + "prefixLen":25, + "network":"192.231.242.128\/25", + "version":7700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.243.0", + "prefixLen":25, + "network":"192.231.243.0\/25", + "version":7699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.231.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.231.243.128", + "prefixLen":25, + "network":"192.231.243.128\/25", + "version":7698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64663 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.0.0", + "prefixLen":25, + "network":"192.232.0.0\/25", + "version":7825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.0.128", + "prefixLen":25, + "network":"192.232.0.128\/25", + "version":7952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.1.0", + "prefixLen":25, + "network":"192.232.1.0\/25", + "version":7951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.1.128", + "prefixLen":25, + "network":"192.232.1.128\/25", + "version":7950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.2.0", + "prefixLen":25, + "network":"192.232.2.0\/25", + "version":7949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.2.128", + "prefixLen":25, + "network":"192.232.2.128\/25", + "version":7948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.3.0", + "prefixLen":25, + "network":"192.232.3.0\/25", + "version":7947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.3.128", + "prefixLen":25, + "network":"192.232.3.128\/25", + "version":7946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.16.0", + "prefixLen":25, + "network":"192.232.16.0\/25", + "version":7945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.16.128", + "prefixLen":25, + "network":"192.232.16.128\/25", + "version":7944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.17.0", + "prefixLen":25, + "network":"192.232.17.0\/25", + "version":7943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.17.128", + "prefixLen":25, + "network":"192.232.17.128\/25", + "version":7942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.18.0", + "prefixLen":25, + "network":"192.232.18.0\/25", + "version":7941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.18.128", + "prefixLen":25, + "network":"192.232.18.128\/25", + "version":7940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.19.0", + "prefixLen":25, + "network":"192.232.19.0\/25", + "version":7939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.19.128", + "prefixLen":25, + "network":"192.232.19.128\/25", + "version":7938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.32.0", + "prefixLen":25, + "network":"192.232.32.0\/25", + "version":7937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.32.128", + "prefixLen":25, + "network":"192.232.32.128\/25", + "version":7936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.33.0", + "prefixLen":25, + "network":"192.232.33.0\/25", + "version":7935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.33.128", + "prefixLen":25, + "network":"192.232.33.128\/25", + "version":7934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.34.0", + "prefixLen":25, + "network":"192.232.34.0\/25", + "version":7933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.34.128", + "prefixLen":25, + "network":"192.232.34.128\/25", + "version":7932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.35.0", + "prefixLen":25, + "network":"192.232.35.0\/25", + "version":7931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.35.128", + "prefixLen":25, + "network":"192.232.35.128\/25", + "version":7930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.48.0", + "prefixLen":25, + "network":"192.232.48.0\/25", + "version":7929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.48.128", + "prefixLen":25, + "network":"192.232.48.128\/25", + "version":7928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.49.0", + "prefixLen":25, + "network":"192.232.49.0\/25", + "version":7927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.49.128", + "prefixLen":25, + "network":"192.232.49.128\/25", + "version":7926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.50.0", + "prefixLen":25, + "network":"192.232.50.0\/25", + "version":7925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.50.128", + "prefixLen":25, + "network":"192.232.50.128\/25", + "version":7924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.51.0", + "prefixLen":25, + "network":"192.232.51.0\/25", + "version":7923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.51.128", + "prefixLen":25, + "network":"192.232.51.128\/25", + "version":7922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.64.0", + "prefixLen":25, + "network":"192.232.64.0\/25", + "version":7921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.64.128", + "prefixLen":25, + "network":"192.232.64.128\/25", + "version":7920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.65.0", + "prefixLen":25, + "network":"192.232.65.0\/25", + "version":7919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.65.128", + "prefixLen":25, + "network":"192.232.65.128\/25", + "version":7918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.66.0", + "prefixLen":25, + "network":"192.232.66.0\/25", + "version":7917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.66.128", + "prefixLen":25, + "network":"192.232.66.128\/25", + "version":7916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.67.0", + "prefixLen":25, + "network":"192.232.67.0\/25", + "version":7915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.67.128", + "prefixLen":25, + "network":"192.232.67.128\/25", + "version":7914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.80.0", + "prefixLen":25, + "network":"192.232.80.0\/25", + "version":7913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.80.128", + "prefixLen":25, + "network":"192.232.80.128\/25", + "version":7912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.81.0", + "prefixLen":25, + "network":"192.232.81.0\/25", + "version":7911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.81.128", + "prefixLen":25, + "network":"192.232.81.128\/25", + "version":7910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.82.0", + "prefixLen":25, + "network":"192.232.82.0\/25", + "version":7909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.82.128", + "prefixLen":25, + "network":"192.232.82.128\/25", + "version":7908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.83.0", + "prefixLen":25, + "network":"192.232.83.0\/25", + "version":7907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.83.128", + "prefixLen":25, + "network":"192.232.83.128\/25", + "version":7906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.96.0", + "prefixLen":25, + "network":"192.232.96.0\/25", + "version":7905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.96.128", + "prefixLen":25, + "network":"192.232.96.128\/25", + "version":7904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.97.0", + "prefixLen":25, + "network":"192.232.97.0\/25", + "version":7903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.97.128", + "prefixLen":25, + "network":"192.232.97.128\/25", + "version":7902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.98.0", + "prefixLen":25, + "network":"192.232.98.0\/25", + "version":7901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.98.128", + "prefixLen":25, + "network":"192.232.98.128\/25", + "version":7900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.99.0", + "prefixLen":25, + "network":"192.232.99.0\/25", + "version":7899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.99.128", + "prefixLen":25, + "network":"192.232.99.128\/25", + "version":7898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.112.0", + "prefixLen":25, + "network":"192.232.112.0\/25", + "version":7897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.112.128", + "prefixLen":25, + "network":"192.232.112.128\/25", + "version":7896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.113.0", + "prefixLen":25, + "network":"192.232.113.0\/25", + "version":7895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.113.128", + "prefixLen":25, + "network":"192.232.113.128\/25", + "version":7894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.114.0", + "prefixLen":25, + "network":"192.232.114.0\/25", + "version":7893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.114.128", + "prefixLen":25, + "network":"192.232.114.128\/25", + "version":7892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.115.0", + "prefixLen":25, + "network":"192.232.115.0\/25", + "version":7891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.115.128", + "prefixLen":25, + "network":"192.232.115.128\/25", + "version":7890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.128.0", + "prefixLen":25, + "network":"192.232.128.0\/25", + "version":7889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.128.128", + "prefixLen":25, + "network":"192.232.128.128\/25", + "version":7888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.129.0", + "prefixLen":25, + "network":"192.232.129.0\/25", + "version":7887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.129.128", + "prefixLen":25, + "network":"192.232.129.128\/25", + "version":7886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.130.0", + "prefixLen":25, + "network":"192.232.130.0\/25", + "version":7885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.130.128", + "prefixLen":25, + "network":"192.232.130.128\/25", + "version":7884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.131.0", + "prefixLen":25, + "network":"192.232.131.0\/25", + "version":7883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.131.128", + "prefixLen":25, + "network":"192.232.131.128\/25", + "version":7882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.144.0", + "prefixLen":25, + "network":"192.232.144.0\/25", + "version":7881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.144.128", + "prefixLen":25, + "network":"192.232.144.128\/25", + "version":7880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.145.0", + "prefixLen":25, + "network":"192.232.145.0\/25", + "version":7879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.145.128", + "prefixLen":25, + "network":"192.232.145.128\/25", + "version":7878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.146.0", + "prefixLen":25, + "network":"192.232.146.0\/25", + "version":7877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.146.128", + "prefixLen":25, + "network":"192.232.146.128\/25", + "version":7876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.147.0", + "prefixLen":25, + "network":"192.232.147.0\/25", + "version":7875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.147.128", + "prefixLen":25, + "network":"192.232.147.128\/25", + "version":7874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.160.0", + "prefixLen":25, + "network":"192.232.160.0\/25", + "version":7873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.160.128", + "prefixLen":25, + "network":"192.232.160.128\/25", + "version":7872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.161.0", + "prefixLen":25, + "network":"192.232.161.0\/25", + "version":7871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.161.128", + "prefixLen":25, + "network":"192.232.161.128\/25", + "version":7870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.162.0", + "prefixLen":25, + "network":"192.232.162.0\/25", + "version":7869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.162.128", + "prefixLen":25, + "network":"192.232.162.128\/25", + "version":7868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.163.0", + "prefixLen":25, + "network":"192.232.163.0\/25", + "version":7867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.163.128", + "prefixLen":25, + "network":"192.232.163.128\/25", + "version":7866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.176.0", + "prefixLen":25, + "network":"192.232.176.0\/25", + "version":7865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.176.128", + "prefixLen":25, + "network":"192.232.176.128\/25", + "version":7864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.177.0", + "prefixLen":25, + "network":"192.232.177.0\/25", + "version":7863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.177.128", + "prefixLen":25, + "network":"192.232.177.128\/25", + "version":7862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.178.0", + "prefixLen":25, + "network":"192.232.178.0\/25", + "version":7861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.178.128", + "prefixLen":25, + "network":"192.232.178.128\/25", + "version":7860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.179.0", + "prefixLen":25, + "network":"192.232.179.0\/25", + "version":7859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.179.128", + "prefixLen":25, + "network":"192.232.179.128\/25", + "version":7858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.192.0", + "prefixLen":25, + "network":"192.232.192.0\/25", + "version":7857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.192.128", + "prefixLen":25, + "network":"192.232.192.128\/25", + "version":7856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.193.0", + "prefixLen":25, + "network":"192.232.193.0\/25", + "version":7855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.193.128", + "prefixLen":25, + "network":"192.232.193.128\/25", + "version":7854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.194.0", + "prefixLen":25, + "network":"192.232.194.0\/25", + "version":7853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.194.128", + "prefixLen":25, + "network":"192.232.194.128\/25", + "version":7852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.195.0", + "prefixLen":25, + "network":"192.232.195.0\/25", + "version":7851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.195.128", + "prefixLen":25, + "network":"192.232.195.128\/25", + "version":7850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.208.0", + "prefixLen":25, + "network":"192.232.208.0\/25", + "version":7849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.208.128", + "prefixLen":25, + "network":"192.232.208.128\/25", + "version":7848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.209.0", + "prefixLen":25, + "network":"192.232.209.0\/25", + "version":7847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.209.128", + "prefixLen":25, + "network":"192.232.209.128\/25", + "version":7846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.210.0", + "prefixLen":25, + "network":"192.232.210.0\/25", + "version":7845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.210.128", + "prefixLen":25, + "network":"192.232.210.128\/25", + "version":7844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.211.0", + "prefixLen":25, + "network":"192.232.211.0\/25", + "version":7843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.211.128", + "prefixLen":25, + "network":"192.232.211.128\/25", + "version":7842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.224.0", + "prefixLen":25, + "network":"192.232.224.0\/25", + "version":7841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.224.128", + "prefixLen":25, + "network":"192.232.224.128\/25", + "version":7840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.225.0", + "prefixLen":25, + "network":"192.232.225.0\/25", + "version":7839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.225.128", + "prefixLen":25, + "network":"192.232.225.128\/25", + "version":7838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.226.0", + "prefixLen":25, + "network":"192.232.226.0\/25", + "version":7837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.226.128", + "prefixLen":25, + "network":"192.232.226.128\/25", + "version":7836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.227.0", + "prefixLen":25, + "network":"192.232.227.0\/25", + "version":7835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.227.128", + "prefixLen":25, + "network":"192.232.227.128\/25", + "version":7834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.240.0", + "prefixLen":25, + "network":"192.232.240.0\/25", + "version":7833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.240.128", + "prefixLen":25, + "network":"192.232.240.128\/25", + "version":7832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.241.0", + "prefixLen":25, + "network":"192.232.241.0\/25", + "version":7831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.241.128", + "prefixLen":25, + "network":"192.232.241.128\/25", + "version":7830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.242.0", + "prefixLen":25, + "network":"192.232.242.0\/25", + "version":7829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.242.128", + "prefixLen":25, + "network":"192.232.242.128\/25", + "version":7828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.243.0", + "prefixLen":25, + "network":"192.232.243.0\/25", + "version":7827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.232.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.232.243.128", + "prefixLen":25, + "network":"192.232.243.128\/25", + "version":7826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64664 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.0.0", + "prefixLen":25, + "network":"192.233.0.0\/25", + "version":7953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.0.128", + "prefixLen":25, + "network":"192.233.0.128\/25", + "version":8080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.1.0", + "prefixLen":25, + "network":"192.233.1.0\/25", + "version":8079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.1.128", + "prefixLen":25, + "network":"192.233.1.128\/25", + "version":8078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.2.0", + "prefixLen":25, + "network":"192.233.2.0\/25", + "version":8077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.2.128", + "prefixLen":25, + "network":"192.233.2.128\/25", + "version":8076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.3.0", + "prefixLen":25, + "network":"192.233.3.0\/25", + "version":8075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.3.128", + "prefixLen":25, + "network":"192.233.3.128\/25", + "version":8074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.16.0", + "prefixLen":25, + "network":"192.233.16.0\/25", + "version":8073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.16.128", + "prefixLen":25, + "network":"192.233.16.128\/25", + "version":8072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.17.0", + "prefixLen":25, + "network":"192.233.17.0\/25", + "version":8071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.17.128", + "prefixLen":25, + "network":"192.233.17.128\/25", + "version":8070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.18.0", + "prefixLen":25, + "network":"192.233.18.0\/25", + "version":8069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.18.128", + "prefixLen":25, + "network":"192.233.18.128\/25", + "version":8068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.19.0", + "prefixLen":25, + "network":"192.233.19.0\/25", + "version":8067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.19.128", + "prefixLen":25, + "network":"192.233.19.128\/25", + "version":8066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.32.0", + "prefixLen":25, + "network":"192.233.32.0\/25", + "version":8065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.32.128", + "prefixLen":25, + "network":"192.233.32.128\/25", + "version":8064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.33.0", + "prefixLen":25, + "network":"192.233.33.0\/25", + "version":8063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.33.128", + "prefixLen":25, + "network":"192.233.33.128\/25", + "version":8062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.34.0", + "prefixLen":25, + "network":"192.233.34.0\/25", + "version":8061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.34.128", + "prefixLen":25, + "network":"192.233.34.128\/25", + "version":8060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.35.0", + "prefixLen":25, + "network":"192.233.35.0\/25", + "version":8059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.35.128", + "prefixLen":25, + "network":"192.233.35.128\/25", + "version":8058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.48.0", + "prefixLen":25, + "network":"192.233.48.0\/25", + "version":8057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.48.128", + "prefixLen":25, + "network":"192.233.48.128\/25", + "version":8056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.49.0", + "prefixLen":25, + "network":"192.233.49.0\/25", + "version":8055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.49.128", + "prefixLen":25, + "network":"192.233.49.128\/25", + "version":8054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.50.0", + "prefixLen":25, + "network":"192.233.50.0\/25", + "version":8053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.50.128", + "prefixLen":25, + "network":"192.233.50.128\/25", + "version":8052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.51.0", + "prefixLen":25, + "network":"192.233.51.0\/25", + "version":8051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.51.128", + "prefixLen":25, + "network":"192.233.51.128\/25", + "version":8050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.64.0", + "prefixLen":25, + "network":"192.233.64.0\/25", + "version":8049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.64.128", + "prefixLen":25, + "network":"192.233.64.128\/25", + "version":8048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.65.0", + "prefixLen":25, + "network":"192.233.65.0\/25", + "version":8047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.65.128", + "prefixLen":25, + "network":"192.233.65.128\/25", + "version":8046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.66.0", + "prefixLen":25, + "network":"192.233.66.0\/25", + "version":8045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.66.128", + "prefixLen":25, + "network":"192.233.66.128\/25", + "version":8044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.67.0", + "prefixLen":25, + "network":"192.233.67.0\/25", + "version":8043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.67.128", + "prefixLen":25, + "network":"192.233.67.128\/25", + "version":8042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.80.0", + "prefixLen":25, + "network":"192.233.80.0\/25", + "version":8041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.80.128", + "prefixLen":25, + "network":"192.233.80.128\/25", + "version":8040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.81.0", + "prefixLen":25, + "network":"192.233.81.0\/25", + "version":8039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.81.128", + "prefixLen":25, + "network":"192.233.81.128\/25", + "version":8038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.82.0", + "prefixLen":25, + "network":"192.233.82.0\/25", + "version":8037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.82.128", + "prefixLen":25, + "network":"192.233.82.128\/25", + "version":8036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.83.0", + "prefixLen":25, + "network":"192.233.83.0\/25", + "version":8035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.83.128", + "prefixLen":25, + "network":"192.233.83.128\/25", + "version":8034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.96.0", + "prefixLen":25, + "network":"192.233.96.0\/25", + "version":8033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.96.128", + "prefixLen":25, + "network":"192.233.96.128\/25", + "version":8032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.97.0", + "prefixLen":25, + "network":"192.233.97.0\/25", + "version":8031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.97.128", + "prefixLen":25, + "network":"192.233.97.128\/25", + "version":8030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.98.0", + "prefixLen":25, + "network":"192.233.98.0\/25", + "version":8029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.98.128", + "prefixLen":25, + "network":"192.233.98.128\/25", + "version":8028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.99.0", + "prefixLen":25, + "network":"192.233.99.0\/25", + "version":8027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.99.128", + "prefixLen":25, + "network":"192.233.99.128\/25", + "version":8026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.112.0", + "prefixLen":25, + "network":"192.233.112.0\/25", + "version":8025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.112.128", + "prefixLen":25, + "network":"192.233.112.128\/25", + "version":8024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.113.0", + "prefixLen":25, + "network":"192.233.113.0\/25", + "version":8023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.113.128", + "prefixLen":25, + "network":"192.233.113.128\/25", + "version":8022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.114.0", + "prefixLen":25, + "network":"192.233.114.0\/25", + "version":8021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.114.128", + "prefixLen":25, + "network":"192.233.114.128\/25", + "version":8020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.115.0", + "prefixLen":25, + "network":"192.233.115.0\/25", + "version":8019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.115.128", + "prefixLen":25, + "network":"192.233.115.128\/25", + "version":8018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.128.0", + "prefixLen":25, + "network":"192.233.128.0\/25", + "version":8017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.128.128", + "prefixLen":25, + "network":"192.233.128.128\/25", + "version":8016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.129.0", + "prefixLen":25, + "network":"192.233.129.0\/25", + "version":8015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.129.128", + "prefixLen":25, + "network":"192.233.129.128\/25", + "version":8014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.130.0", + "prefixLen":25, + "network":"192.233.130.0\/25", + "version":8013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.130.128", + "prefixLen":25, + "network":"192.233.130.128\/25", + "version":8012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.131.0", + "prefixLen":25, + "network":"192.233.131.0\/25", + "version":8011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.131.128", + "prefixLen":25, + "network":"192.233.131.128\/25", + "version":8010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.144.0", + "prefixLen":25, + "network":"192.233.144.0\/25", + "version":8009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.144.128", + "prefixLen":25, + "network":"192.233.144.128\/25", + "version":8008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.145.0", + "prefixLen":25, + "network":"192.233.145.0\/25", + "version":8007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.145.128", + "prefixLen":25, + "network":"192.233.145.128\/25", + "version":8006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.146.0", + "prefixLen":25, + "network":"192.233.146.0\/25", + "version":8005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.146.128", + "prefixLen":25, + "network":"192.233.146.128\/25", + "version":8004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.147.0", + "prefixLen":25, + "network":"192.233.147.0\/25", + "version":8003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.147.128", + "prefixLen":25, + "network":"192.233.147.128\/25", + "version":8002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.160.0", + "prefixLen":25, + "network":"192.233.160.0\/25", + "version":8001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.160.128", + "prefixLen":25, + "network":"192.233.160.128\/25", + "version":8000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.161.0", + "prefixLen":25, + "network":"192.233.161.0\/25", + "version":7999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.161.128", + "prefixLen":25, + "network":"192.233.161.128\/25", + "version":7998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.162.0", + "prefixLen":25, + "network":"192.233.162.0\/25", + "version":7997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.162.128", + "prefixLen":25, + "network":"192.233.162.128\/25", + "version":7996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.163.0", + "prefixLen":25, + "network":"192.233.163.0\/25", + "version":7995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.163.128", + "prefixLen":25, + "network":"192.233.163.128\/25", + "version":7994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.176.0", + "prefixLen":25, + "network":"192.233.176.0\/25", + "version":7993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.176.128", + "prefixLen":25, + "network":"192.233.176.128\/25", + "version":7992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.177.0", + "prefixLen":25, + "network":"192.233.177.0\/25", + "version":7991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.177.128", + "prefixLen":25, + "network":"192.233.177.128\/25", + "version":7990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.178.0", + "prefixLen":25, + "network":"192.233.178.0\/25", + "version":7989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.178.128", + "prefixLen":25, + "network":"192.233.178.128\/25", + "version":7988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.179.0", + "prefixLen":25, + "network":"192.233.179.0\/25", + "version":7987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.179.128", + "prefixLen":25, + "network":"192.233.179.128\/25", + "version":7986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.192.0", + "prefixLen":25, + "network":"192.233.192.0\/25", + "version":7985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.192.128", + "prefixLen":25, + "network":"192.233.192.128\/25", + "version":7984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.193.0", + "prefixLen":25, + "network":"192.233.193.0\/25", + "version":7983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.193.128", + "prefixLen":25, + "network":"192.233.193.128\/25", + "version":7982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.194.0", + "prefixLen":25, + "network":"192.233.194.0\/25", + "version":7981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.194.128", + "prefixLen":25, + "network":"192.233.194.128\/25", + "version":7980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.195.0", + "prefixLen":25, + "network":"192.233.195.0\/25", + "version":7979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.195.128", + "prefixLen":25, + "network":"192.233.195.128\/25", + "version":7978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.208.0", + "prefixLen":25, + "network":"192.233.208.0\/25", + "version":7977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.208.128", + "prefixLen":25, + "network":"192.233.208.128\/25", + "version":7976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.209.0", + "prefixLen":25, + "network":"192.233.209.0\/25", + "version":7975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.209.128", + "prefixLen":25, + "network":"192.233.209.128\/25", + "version":7974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.210.0", + "prefixLen":25, + "network":"192.233.210.0\/25", + "version":7973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.210.128", + "prefixLen":25, + "network":"192.233.210.128\/25", + "version":7972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.211.0", + "prefixLen":25, + "network":"192.233.211.0\/25", + "version":7971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.211.128", + "prefixLen":25, + "network":"192.233.211.128\/25", + "version":7970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.224.0", + "prefixLen":25, + "network":"192.233.224.0\/25", + "version":7969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.224.128", + "prefixLen":25, + "network":"192.233.224.128\/25", + "version":7968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.225.0", + "prefixLen":25, + "network":"192.233.225.0\/25", + "version":7967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.225.128", + "prefixLen":25, + "network":"192.233.225.128\/25", + "version":7966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.226.0", + "prefixLen":25, + "network":"192.233.226.0\/25", + "version":7965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.226.128", + "prefixLen":25, + "network":"192.233.226.128\/25", + "version":7964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.227.0", + "prefixLen":25, + "network":"192.233.227.0\/25", + "version":7963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.227.128", + "prefixLen":25, + "network":"192.233.227.128\/25", + "version":7962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.240.0", + "prefixLen":25, + "network":"192.233.240.0\/25", + "version":7961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.240.128", + "prefixLen":25, + "network":"192.233.240.128\/25", + "version":7960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.241.0", + "prefixLen":25, + "network":"192.233.241.0\/25", + "version":7959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.241.128", + "prefixLen":25, + "network":"192.233.241.128\/25", + "version":7958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.242.0", + "prefixLen":25, + "network":"192.233.242.0\/25", + "version":7957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.242.128", + "prefixLen":25, + "network":"192.233.242.128\/25", + "version":7956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.243.0", + "prefixLen":25, + "network":"192.233.243.0\/25", + "version":7955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.233.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.233.243.128", + "prefixLen":25, + "network":"192.233.243.128\/25", + "version":7954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64665 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.0.0", + "prefixLen":25, + "network":"192.234.0.0\/25", + "version":8081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.0.128", + "prefixLen":25, + "network":"192.234.0.128\/25", + "version":8208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.1.0", + "prefixLen":25, + "network":"192.234.1.0\/25", + "version":8207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.1.128", + "prefixLen":25, + "network":"192.234.1.128\/25", + "version":8206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.2.0", + "prefixLen":25, + "network":"192.234.2.0\/25", + "version":8205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.2.128", + "prefixLen":25, + "network":"192.234.2.128\/25", + "version":8204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.3.0", + "prefixLen":25, + "network":"192.234.3.0\/25", + "version":8203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.3.128", + "prefixLen":25, + "network":"192.234.3.128\/25", + "version":8202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.16.0", + "prefixLen":25, + "network":"192.234.16.0\/25", + "version":8201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.16.128", + "prefixLen":25, + "network":"192.234.16.128\/25", + "version":8200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.17.0", + "prefixLen":25, + "network":"192.234.17.0\/25", + "version":8199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.17.128", + "prefixLen":25, + "network":"192.234.17.128\/25", + "version":8198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.18.0", + "prefixLen":25, + "network":"192.234.18.0\/25", + "version":8197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.18.128", + "prefixLen":25, + "network":"192.234.18.128\/25", + "version":8196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.19.0", + "prefixLen":25, + "network":"192.234.19.0\/25", + "version":8195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.19.128", + "prefixLen":25, + "network":"192.234.19.128\/25", + "version":8194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.32.0", + "prefixLen":25, + "network":"192.234.32.0\/25", + "version":8193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.32.128", + "prefixLen":25, + "network":"192.234.32.128\/25", + "version":8192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.33.0", + "prefixLen":25, + "network":"192.234.33.0\/25", + "version":8191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.33.128", + "prefixLen":25, + "network":"192.234.33.128\/25", + "version":8190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.34.0", + "prefixLen":25, + "network":"192.234.34.0\/25", + "version":8189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.34.128", + "prefixLen":25, + "network":"192.234.34.128\/25", + "version":8188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.35.0", + "prefixLen":25, + "network":"192.234.35.0\/25", + "version":8187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.35.128", + "prefixLen":25, + "network":"192.234.35.128\/25", + "version":8186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.48.0", + "prefixLen":25, + "network":"192.234.48.0\/25", + "version":8185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.48.128", + "prefixLen":25, + "network":"192.234.48.128\/25", + "version":8184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.49.0", + "prefixLen":25, + "network":"192.234.49.0\/25", + "version":8183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.49.128", + "prefixLen":25, + "network":"192.234.49.128\/25", + "version":8182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.50.0", + "prefixLen":25, + "network":"192.234.50.0\/25", + "version":8181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.50.128", + "prefixLen":25, + "network":"192.234.50.128\/25", + "version":8180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.51.0", + "prefixLen":25, + "network":"192.234.51.0\/25", + "version":8179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.51.128", + "prefixLen":25, + "network":"192.234.51.128\/25", + "version":8178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.64.0", + "prefixLen":25, + "network":"192.234.64.0\/25", + "version":8177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.64.128", + "prefixLen":25, + "network":"192.234.64.128\/25", + "version":8176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.65.0", + "prefixLen":25, + "network":"192.234.65.0\/25", + "version":8175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.65.128", + "prefixLen":25, + "network":"192.234.65.128\/25", + "version":8174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.66.0", + "prefixLen":25, + "network":"192.234.66.0\/25", + "version":8173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.66.128", + "prefixLen":25, + "network":"192.234.66.128\/25", + "version":8172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.67.0", + "prefixLen":25, + "network":"192.234.67.0\/25", + "version":8171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.67.128", + "prefixLen":25, + "network":"192.234.67.128\/25", + "version":8170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.80.0", + "prefixLen":25, + "network":"192.234.80.0\/25", + "version":8169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.80.128", + "prefixLen":25, + "network":"192.234.80.128\/25", + "version":8168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.81.0", + "prefixLen":25, + "network":"192.234.81.0\/25", + "version":8167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.81.128", + "prefixLen":25, + "network":"192.234.81.128\/25", + "version":8166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.82.0", + "prefixLen":25, + "network":"192.234.82.0\/25", + "version":8165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.82.128", + "prefixLen":25, + "network":"192.234.82.128\/25", + "version":8164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.83.0", + "prefixLen":25, + "network":"192.234.83.0\/25", + "version":8163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.83.128", + "prefixLen":25, + "network":"192.234.83.128\/25", + "version":8162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.96.0", + "prefixLen":25, + "network":"192.234.96.0\/25", + "version":8161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.96.128", + "prefixLen":25, + "network":"192.234.96.128\/25", + "version":8160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.97.0", + "prefixLen":25, + "network":"192.234.97.0\/25", + "version":8159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.97.128", + "prefixLen":25, + "network":"192.234.97.128\/25", + "version":8158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.98.0", + "prefixLen":25, + "network":"192.234.98.0\/25", + "version":8157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.98.128", + "prefixLen":25, + "network":"192.234.98.128\/25", + "version":8156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.99.0", + "prefixLen":25, + "network":"192.234.99.0\/25", + "version":8155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.99.128", + "prefixLen":25, + "network":"192.234.99.128\/25", + "version":8154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.112.0", + "prefixLen":25, + "network":"192.234.112.0\/25", + "version":8153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.112.128", + "prefixLen":25, + "network":"192.234.112.128\/25", + "version":8152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.113.0", + "prefixLen":25, + "network":"192.234.113.0\/25", + "version":8151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.113.128", + "prefixLen":25, + "network":"192.234.113.128\/25", + "version":8150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.114.0", + "prefixLen":25, + "network":"192.234.114.0\/25", + "version":8149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.114.128", + "prefixLen":25, + "network":"192.234.114.128\/25", + "version":8148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.115.0", + "prefixLen":25, + "network":"192.234.115.0\/25", + "version":8147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.115.128", + "prefixLen":25, + "network":"192.234.115.128\/25", + "version":8146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.128.0", + "prefixLen":25, + "network":"192.234.128.0\/25", + "version":8145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.128.128", + "prefixLen":25, + "network":"192.234.128.128\/25", + "version":8144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.129.0", + "prefixLen":25, + "network":"192.234.129.0\/25", + "version":8143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.129.128", + "prefixLen":25, + "network":"192.234.129.128\/25", + "version":8142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.130.0", + "prefixLen":25, + "network":"192.234.130.0\/25", + "version":8141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.130.128", + "prefixLen":25, + "network":"192.234.130.128\/25", + "version":8140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.131.0", + "prefixLen":25, + "network":"192.234.131.0\/25", + "version":8139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.131.128", + "prefixLen":25, + "network":"192.234.131.128\/25", + "version":8138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.144.0", + "prefixLen":25, + "network":"192.234.144.0\/25", + "version":8137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.144.128", + "prefixLen":25, + "network":"192.234.144.128\/25", + "version":8136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.145.0", + "prefixLen":25, + "network":"192.234.145.0\/25", + "version":8135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.145.128", + "prefixLen":25, + "network":"192.234.145.128\/25", + "version":8134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.146.0", + "prefixLen":25, + "network":"192.234.146.0\/25", + "version":8133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.146.128", + "prefixLen":25, + "network":"192.234.146.128\/25", + "version":8132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.147.0", + "prefixLen":25, + "network":"192.234.147.0\/25", + "version":8131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.147.128", + "prefixLen":25, + "network":"192.234.147.128\/25", + "version":8130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.160.0", + "prefixLen":25, + "network":"192.234.160.0\/25", + "version":8129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.160.128", + "prefixLen":25, + "network":"192.234.160.128\/25", + "version":8128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.161.0", + "prefixLen":25, + "network":"192.234.161.0\/25", + "version":8127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.161.128", + "prefixLen":25, + "network":"192.234.161.128\/25", + "version":8126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.162.0", + "prefixLen":25, + "network":"192.234.162.0\/25", + "version":8125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.162.128", + "prefixLen":25, + "network":"192.234.162.128\/25", + "version":8124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.163.0", + "prefixLen":25, + "network":"192.234.163.0\/25", + "version":8123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.163.128", + "prefixLen":25, + "network":"192.234.163.128\/25", + "version":8122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.176.0", + "prefixLen":25, + "network":"192.234.176.0\/25", + "version":8121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.176.128", + "prefixLen":25, + "network":"192.234.176.128\/25", + "version":8120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.177.0", + "prefixLen":25, + "network":"192.234.177.0\/25", + "version":8119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.177.128", + "prefixLen":25, + "network":"192.234.177.128\/25", + "version":8118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.178.0", + "prefixLen":25, + "network":"192.234.178.0\/25", + "version":8117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.178.128", + "prefixLen":25, + "network":"192.234.178.128\/25", + "version":8116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.179.0", + "prefixLen":25, + "network":"192.234.179.0\/25", + "version":8115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.179.128", + "prefixLen":25, + "network":"192.234.179.128\/25", + "version":8114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.192.0", + "prefixLen":25, + "network":"192.234.192.0\/25", + "version":8113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.192.128", + "prefixLen":25, + "network":"192.234.192.128\/25", + "version":8112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.193.0", + "prefixLen":25, + "network":"192.234.193.0\/25", + "version":8111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.193.128", + "prefixLen":25, + "network":"192.234.193.128\/25", + "version":8110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.194.0", + "prefixLen":25, + "network":"192.234.194.0\/25", + "version":8109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.194.128", + "prefixLen":25, + "network":"192.234.194.128\/25", + "version":8108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.195.0", + "prefixLen":25, + "network":"192.234.195.0\/25", + "version":8107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.195.128", + "prefixLen":25, + "network":"192.234.195.128\/25", + "version":8106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.208.0", + "prefixLen":25, + "network":"192.234.208.0\/25", + "version":8105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.208.128", + "prefixLen":25, + "network":"192.234.208.128\/25", + "version":8104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.209.0", + "prefixLen":25, + "network":"192.234.209.0\/25", + "version":8103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.209.128", + "prefixLen":25, + "network":"192.234.209.128\/25", + "version":8102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.210.0", + "prefixLen":25, + "network":"192.234.210.0\/25", + "version":8101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.210.128", + "prefixLen":25, + "network":"192.234.210.128\/25", + "version":8100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.211.0", + "prefixLen":25, + "network":"192.234.211.0\/25", + "version":8099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.211.128", + "prefixLen":25, + "network":"192.234.211.128\/25", + "version":8098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.224.0", + "prefixLen":25, + "network":"192.234.224.0\/25", + "version":8097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.224.128", + "prefixLen":25, + "network":"192.234.224.128\/25", + "version":8096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.225.0", + "prefixLen":25, + "network":"192.234.225.0\/25", + "version":8095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.225.128", + "prefixLen":25, + "network":"192.234.225.128\/25", + "version":8094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.226.0", + "prefixLen":25, + "network":"192.234.226.0\/25", + "version":8093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.226.128", + "prefixLen":25, + "network":"192.234.226.128\/25", + "version":8092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.227.0", + "prefixLen":25, + "network":"192.234.227.0\/25", + "version":8091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.227.128", + "prefixLen":25, + "network":"192.234.227.128\/25", + "version":8090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.240.0", + "prefixLen":25, + "network":"192.234.240.0\/25", + "version":8089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.240.128", + "prefixLen":25, + "network":"192.234.240.128\/25", + "version":8088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.241.0", + "prefixLen":25, + "network":"192.234.241.0\/25", + "version":8087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.241.128", + "prefixLen":25, + "network":"192.234.241.128\/25", + "version":8086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.242.0", + "prefixLen":25, + "network":"192.234.242.0\/25", + "version":8085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.242.128", + "prefixLen":25, + "network":"192.234.242.128\/25", + "version":8084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.243.0", + "prefixLen":25, + "network":"192.234.243.0\/25", + "version":8083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.234.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.234.243.128", + "prefixLen":25, + "network":"192.234.243.128\/25", + "version":8082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64666 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.0.0", + "prefixLen":25, + "network":"192.235.0.0\/25", + "version":8209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.0.128", + "prefixLen":25, + "network":"192.235.0.128\/25", + "version":8336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.1.0", + "prefixLen":25, + "network":"192.235.1.0\/25", + "version":8335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.1.128", + "prefixLen":25, + "network":"192.235.1.128\/25", + "version":8334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.2.0", + "prefixLen":25, + "network":"192.235.2.0\/25", + "version":8333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.2.128", + "prefixLen":25, + "network":"192.235.2.128\/25", + "version":8332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.3.0", + "prefixLen":25, + "network":"192.235.3.0\/25", + "version":8331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.3.128", + "prefixLen":25, + "network":"192.235.3.128\/25", + "version":8330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.16.0", + "prefixLen":25, + "network":"192.235.16.0\/25", + "version":8329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.16.128", + "prefixLen":25, + "network":"192.235.16.128\/25", + "version":8328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.17.0", + "prefixLen":25, + "network":"192.235.17.0\/25", + "version":8327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.17.128", + "prefixLen":25, + "network":"192.235.17.128\/25", + "version":8326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.18.0", + "prefixLen":25, + "network":"192.235.18.0\/25", + "version":8325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.18.128", + "prefixLen":25, + "network":"192.235.18.128\/25", + "version":8324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.19.0", + "prefixLen":25, + "network":"192.235.19.0\/25", + "version":8323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.19.128", + "prefixLen":25, + "network":"192.235.19.128\/25", + "version":8322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.32.0", + "prefixLen":25, + "network":"192.235.32.0\/25", + "version":8321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.32.128", + "prefixLen":25, + "network":"192.235.32.128\/25", + "version":8320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.33.0", + "prefixLen":25, + "network":"192.235.33.0\/25", + "version":8319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.33.128", + "prefixLen":25, + "network":"192.235.33.128\/25", + "version":8318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.34.0", + "prefixLen":25, + "network":"192.235.34.0\/25", + "version":8317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.34.128", + "prefixLen":25, + "network":"192.235.34.128\/25", + "version":8316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.35.0", + "prefixLen":25, + "network":"192.235.35.0\/25", + "version":8315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.35.128", + "prefixLen":25, + "network":"192.235.35.128\/25", + "version":8314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.48.0", + "prefixLen":25, + "network":"192.235.48.0\/25", + "version":8313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.48.128", + "prefixLen":25, + "network":"192.235.48.128\/25", + "version":8312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.49.0", + "prefixLen":25, + "network":"192.235.49.0\/25", + "version":8311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.49.128", + "prefixLen":25, + "network":"192.235.49.128\/25", + "version":8310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.50.0", + "prefixLen":25, + "network":"192.235.50.0\/25", + "version":8309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.50.128", + "prefixLen":25, + "network":"192.235.50.128\/25", + "version":8308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.51.0", + "prefixLen":25, + "network":"192.235.51.0\/25", + "version":8307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.51.128", + "prefixLen":25, + "network":"192.235.51.128\/25", + "version":8306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.64.0", + "prefixLen":25, + "network":"192.235.64.0\/25", + "version":8305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.64.128", + "prefixLen":25, + "network":"192.235.64.128\/25", + "version":8304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.65.0", + "prefixLen":25, + "network":"192.235.65.0\/25", + "version":8303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.65.128", + "prefixLen":25, + "network":"192.235.65.128\/25", + "version":8302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.66.0", + "prefixLen":25, + "network":"192.235.66.0\/25", + "version":8301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.66.128", + "prefixLen":25, + "network":"192.235.66.128\/25", + "version":8300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.67.0", + "prefixLen":25, + "network":"192.235.67.0\/25", + "version":8299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.67.128", + "prefixLen":25, + "network":"192.235.67.128\/25", + "version":8298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.80.0", + "prefixLen":25, + "network":"192.235.80.0\/25", + "version":8297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.80.128", + "prefixLen":25, + "network":"192.235.80.128\/25", + "version":8296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.81.0", + "prefixLen":25, + "network":"192.235.81.0\/25", + "version":8295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.81.128", + "prefixLen":25, + "network":"192.235.81.128\/25", + "version":8294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.82.0", + "prefixLen":25, + "network":"192.235.82.0\/25", + "version":8293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.82.128", + "prefixLen":25, + "network":"192.235.82.128\/25", + "version":8292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.83.0", + "prefixLen":25, + "network":"192.235.83.0\/25", + "version":8291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.83.128", + "prefixLen":25, + "network":"192.235.83.128\/25", + "version":8290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.96.0", + "prefixLen":25, + "network":"192.235.96.0\/25", + "version":8289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.96.128", + "prefixLen":25, + "network":"192.235.96.128\/25", + "version":8288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.97.0", + "prefixLen":25, + "network":"192.235.97.0\/25", + "version":8287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.97.128", + "prefixLen":25, + "network":"192.235.97.128\/25", + "version":8286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.98.0", + "prefixLen":25, + "network":"192.235.98.0\/25", + "version":8285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.98.128", + "prefixLen":25, + "network":"192.235.98.128\/25", + "version":8284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.99.0", + "prefixLen":25, + "network":"192.235.99.0\/25", + "version":8283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.99.128", + "prefixLen":25, + "network":"192.235.99.128\/25", + "version":8282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.112.0", + "prefixLen":25, + "network":"192.235.112.0\/25", + "version":8281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.112.128", + "prefixLen":25, + "network":"192.235.112.128\/25", + "version":8280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.113.0", + "prefixLen":25, + "network":"192.235.113.0\/25", + "version":8279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.113.128", + "prefixLen":25, + "network":"192.235.113.128\/25", + "version":8278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.114.0", + "prefixLen":25, + "network":"192.235.114.0\/25", + "version":8277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.114.128", + "prefixLen":25, + "network":"192.235.114.128\/25", + "version":8276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.115.0", + "prefixLen":25, + "network":"192.235.115.0\/25", + "version":8275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.115.128", + "prefixLen":25, + "network":"192.235.115.128\/25", + "version":8274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.128.0", + "prefixLen":25, + "network":"192.235.128.0\/25", + "version":8273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.128.128", + "prefixLen":25, + "network":"192.235.128.128\/25", + "version":8272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.129.0", + "prefixLen":25, + "network":"192.235.129.0\/25", + "version":8271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.129.128", + "prefixLen":25, + "network":"192.235.129.128\/25", + "version":8270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.130.0", + "prefixLen":25, + "network":"192.235.130.0\/25", + "version":8269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.130.128", + "prefixLen":25, + "network":"192.235.130.128\/25", + "version":8268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.131.0", + "prefixLen":25, + "network":"192.235.131.0\/25", + "version":8267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.131.128", + "prefixLen":25, + "network":"192.235.131.128\/25", + "version":8266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.144.0", + "prefixLen":25, + "network":"192.235.144.0\/25", + "version":8265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.144.128", + "prefixLen":25, + "network":"192.235.144.128\/25", + "version":8264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.145.0", + "prefixLen":25, + "network":"192.235.145.0\/25", + "version":8263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.145.128", + "prefixLen":25, + "network":"192.235.145.128\/25", + "version":8262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.146.0", + "prefixLen":25, + "network":"192.235.146.0\/25", + "version":8261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.146.128", + "prefixLen":25, + "network":"192.235.146.128\/25", + "version":8260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.147.0", + "prefixLen":25, + "network":"192.235.147.0\/25", + "version":8259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.147.128", + "prefixLen":25, + "network":"192.235.147.128\/25", + "version":8258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.160.0", + "prefixLen":25, + "network":"192.235.160.0\/25", + "version":8257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.160.128", + "prefixLen":25, + "network":"192.235.160.128\/25", + "version":8256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.161.0", + "prefixLen":25, + "network":"192.235.161.0\/25", + "version":8255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.161.128", + "prefixLen":25, + "network":"192.235.161.128\/25", + "version":8254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.162.0", + "prefixLen":25, + "network":"192.235.162.0\/25", + "version":8253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.162.128", + "prefixLen":25, + "network":"192.235.162.128\/25", + "version":8252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.163.0", + "prefixLen":25, + "network":"192.235.163.0\/25", + "version":8251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.163.128", + "prefixLen":25, + "network":"192.235.163.128\/25", + "version":8250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.176.0", + "prefixLen":25, + "network":"192.235.176.0\/25", + "version":8249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.176.128", + "prefixLen":25, + "network":"192.235.176.128\/25", + "version":8248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.177.0", + "prefixLen":25, + "network":"192.235.177.0\/25", + "version":8247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.177.128", + "prefixLen":25, + "network":"192.235.177.128\/25", + "version":8246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.178.0", + "prefixLen":25, + "network":"192.235.178.0\/25", + "version":8245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.178.128", + "prefixLen":25, + "network":"192.235.178.128\/25", + "version":8244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.179.0", + "prefixLen":25, + "network":"192.235.179.0\/25", + "version":8243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.179.128", + "prefixLen":25, + "network":"192.235.179.128\/25", + "version":8242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.192.0", + "prefixLen":25, + "network":"192.235.192.0\/25", + "version":8241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.192.128", + "prefixLen":25, + "network":"192.235.192.128\/25", + "version":8240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.193.0", + "prefixLen":25, + "network":"192.235.193.0\/25", + "version":8239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.193.128", + "prefixLen":25, + "network":"192.235.193.128\/25", + "version":8238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.194.0", + "prefixLen":25, + "network":"192.235.194.0\/25", + "version":8237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.194.128", + "prefixLen":25, + "network":"192.235.194.128\/25", + "version":8236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.195.0", + "prefixLen":25, + "network":"192.235.195.0\/25", + "version":8235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.195.128", + "prefixLen":25, + "network":"192.235.195.128\/25", + "version":8234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.208.0", + "prefixLen":25, + "network":"192.235.208.0\/25", + "version":8233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.208.128", + "prefixLen":25, + "network":"192.235.208.128\/25", + "version":8232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.209.0", + "prefixLen":25, + "network":"192.235.209.0\/25", + "version":8231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.209.128", + "prefixLen":25, + "network":"192.235.209.128\/25", + "version":8230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.210.0", + "prefixLen":25, + "network":"192.235.210.0\/25", + "version":8229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.210.128", + "prefixLen":25, + "network":"192.235.210.128\/25", + "version":8228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.211.0", + "prefixLen":25, + "network":"192.235.211.0\/25", + "version":8227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.211.128", + "prefixLen":25, + "network":"192.235.211.128\/25", + "version":8226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.224.0", + "prefixLen":25, + "network":"192.235.224.0\/25", + "version":8225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.224.128", + "prefixLen":25, + "network":"192.235.224.128\/25", + "version":8224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.225.0", + "prefixLen":25, + "network":"192.235.225.0\/25", + "version":8223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.225.128", + "prefixLen":25, + "network":"192.235.225.128\/25", + "version":8222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.226.0", + "prefixLen":25, + "network":"192.235.226.0\/25", + "version":8221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.226.128", + "prefixLen":25, + "network":"192.235.226.128\/25", + "version":8220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.227.0", + "prefixLen":25, + "network":"192.235.227.0\/25", + "version":8219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.227.128", + "prefixLen":25, + "network":"192.235.227.128\/25", + "version":8218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.240.0", + "prefixLen":25, + "network":"192.235.240.0\/25", + "version":8217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.240.128", + "prefixLen":25, + "network":"192.235.240.128\/25", + "version":8216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.241.0", + "prefixLen":25, + "network":"192.235.241.0\/25", + "version":8215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.241.128", + "prefixLen":25, + "network":"192.235.241.128\/25", + "version":8214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.242.0", + "prefixLen":25, + "network":"192.235.242.0\/25", + "version":8213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.242.128", + "prefixLen":25, + "network":"192.235.242.128\/25", + "version":8212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.243.0", + "prefixLen":25, + "network":"192.235.243.0\/25", + "version":8211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.235.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.235.243.128", + "prefixLen":25, + "network":"192.235.243.128\/25", + "version":8210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64667 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.0.0", + "prefixLen":25, + "network":"192.236.0.0\/25", + "version":8337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.0.128", + "prefixLen":25, + "network":"192.236.0.128\/25", + "version":8464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.1.0", + "prefixLen":25, + "network":"192.236.1.0\/25", + "version":8463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.1.128", + "prefixLen":25, + "network":"192.236.1.128\/25", + "version":8462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.2.0", + "prefixLen":25, + "network":"192.236.2.0\/25", + "version":8461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.2.128", + "prefixLen":25, + "network":"192.236.2.128\/25", + "version":8460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.3.0", + "prefixLen":25, + "network":"192.236.3.0\/25", + "version":8459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.3.128", + "prefixLen":25, + "network":"192.236.3.128\/25", + "version":8458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.16.0", + "prefixLen":25, + "network":"192.236.16.0\/25", + "version":8457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.16.128", + "prefixLen":25, + "network":"192.236.16.128\/25", + "version":8456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.17.0", + "prefixLen":25, + "network":"192.236.17.0\/25", + "version":8455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.17.128", + "prefixLen":25, + "network":"192.236.17.128\/25", + "version":8454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.18.0", + "prefixLen":25, + "network":"192.236.18.0\/25", + "version":8453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.18.128", + "prefixLen":25, + "network":"192.236.18.128\/25", + "version":8452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.19.0", + "prefixLen":25, + "network":"192.236.19.0\/25", + "version":8451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.19.128", + "prefixLen":25, + "network":"192.236.19.128\/25", + "version":8450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.32.0", + "prefixLen":25, + "network":"192.236.32.0\/25", + "version":8449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.32.128", + "prefixLen":25, + "network":"192.236.32.128\/25", + "version":8448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.33.0", + "prefixLen":25, + "network":"192.236.33.0\/25", + "version":8447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.33.128", + "prefixLen":25, + "network":"192.236.33.128\/25", + "version":8446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.34.0", + "prefixLen":25, + "network":"192.236.34.0\/25", + "version":8445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.34.128", + "prefixLen":25, + "network":"192.236.34.128\/25", + "version":8444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.35.0", + "prefixLen":25, + "network":"192.236.35.0\/25", + "version":8443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.35.128", + "prefixLen":25, + "network":"192.236.35.128\/25", + "version":8442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.48.0", + "prefixLen":25, + "network":"192.236.48.0\/25", + "version":8441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.48.128", + "prefixLen":25, + "network":"192.236.48.128\/25", + "version":8440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.49.0", + "prefixLen":25, + "network":"192.236.49.0\/25", + "version":8439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.49.128", + "prefixLen":25, + "network":"192.236.49.128\/25", + "version":8438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.50.0", + "prefixLen":25, + "network":"192.236.50.0\/25", + "version":8437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.50.128", + "prefixLen":25, + "network":"192.236.50.128\/25", + "version":8436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.51.0", + "prefixLen":25, + "network":"192.236.51.0\/25", + "version":8435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.51.128", + "prefixLen":25, + "network":"192.236.51.128\/25", + "version":8434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.64.0", + "prefixLen":25, + "network":"192.236.64.0\/25", + "version":8433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.64.128", + "prefixLen":25, + "network":"192.236.64.128\/25", + "version":8432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.65.0", + "prefixLen":25, + "network":"192.236.65.0\/25", + "version":8431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.65.128", + "prefixLen":25, + "network":"192.236.65.128\/25", + "version":8430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.66.0", + "prefixLen":25, + "network":"192.236.66.0\/25", + "version":8429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.66.128", + "prefixLen":25, + "network":"192.236.66.128\/25", + "version":8428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.67.0", + "prefixLen":25, + "network":"192.236.67.0\/25", + "version":8427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.67.128", + "prefixLen":25, + "network":"192.236.67.128\/25", + "version":8426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.80.0", + "prefixLen":25, + "network":"192.236.80.0\/25", + "version":8425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.80.128", + "prefixLen":25, + "network":"192.236.80.128\/25", + "version":8424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.81.0", + "prefixLen":25, + "network":"192.236.81.0\/25", + "version":8423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.81.128", + "prefixLen":25, + "network":"192.236.81.128\/25", + "version":8422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.82.0", + "prefixLen":25, + "network":"192.236.82.0\/25", + "version":8421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.82.128", + "prefixLen":25, + "network":"192.236.82.128\/25", + "version":8420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.83.0", + "prefixLen":25, + "network":"192.236.83.0\/25", + "version":8419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.83.128", + "prefixLen":25, + "network":"192.236.83.128\/25", + "version":8418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.96.0", + "prefixLen":25, + "network":"192.236.96.0\/25", + "version":8417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.96.128", + "prefixLen":25, + "network":"192.236.96.128\/25", + "version":8416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.97.0", + "prefixLen":25, + "network":"192.236.97.0\/25", + "version":8415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.97.128", + "prefixLen":25, + "network":"192.236.97.128\/25", + "version":8414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.98.0", + "prefixLen":25, + "network":"192.236.98.0\/25", + "version":8413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.98.128", + "prefixLen":25, + "network":"192.236.98.128\/25", + "version":8412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.99.0", + "prefixLen":25, + "network":"192.236.99.0\/25", + "version":8411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.99.128", + "prefixLen":25, + "network":"192.236.99.128\/25", + "version":8410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.112.0", + "prefixLen":25, + "network":"192.236.112.0\/25", + "version":8409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.112.128", + "prefixLen":25, + "network":"192.236.112.128\/25", + "version":8408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.113.0", + "prefixLen":25, + "network":"192.236.113.0\/25", + "version":8407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.113.128", + "prefixLen":25, + "network":"192.236.113.128\/25", + "version":8406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.114.0", + "prefixLen":25, + "network":"192.236.114.0\/25", + "version":8405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.114.128", + "prefixLen":25, + "network":"192.236.114.128\/25", + "version":8404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.115.0", + "prefixLen":25, + "network":"192.236.115.0\/25", + "version":8403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.115.128", + "prefixLen":25, + "network":"192.236.115.128\/25", + "version":8402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.128.0", + "prefixLen":25, + "network":"192.236.128.0\/25", + "version":8401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.128.128", + "prefixLen":25, + "network":"192.236.128.128\/25", + "version":8400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.129.0", + "prefixLen":25, + "network":"192.236.129.0\/25", + "version":8399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.129.128", + "prefixLen":25, + "network":"192.236.129.128\/25", + "version":8398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.130.0", + "prefixLen":25, + "network":"192.236.130.0\/25", + "version":8397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.130.128", + "prefixLen":25, + "network":"192.236.130.128\/25", + "version":8396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.131.0", + "prefixLen":25, + "network":"192.236.131.0\/25", + "version":8395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.131.128", + "prefixLen":25, + "network":"192.236.131.128\/25", + "version":8394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.144.0", + "prefixLen":25, + "network":"192.236.144.0\/25", + "version":8393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.144.128", + "prefixLen":25, + "network":"192.236.144.128\/25", + "version":8392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.145.0", + "prefixLen":25, + "network":"192.236.145.0\/25", + "version":8391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.145.128", + "prefixLen":25, + "network":"192.236.145.128\/25", + "version":8390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.146.0", + "prefixLen":25, + "network":"192.236.146.0\/25", + "version":8389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.146.128", + "prefixLen":25, + "network":"192.236.146.128\/25", + "version":8388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.147.0", + "prefixLen":25, + "network":"192.236.147.0\/25", + "version":8387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.147.128", + "prefixLen":25, + "network":"192.236.147.128\/25", + "version":8386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.160.0", + "prefixLen":25, + "network":"192.236.160.0\/25", + "version":8385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.160.128", + "prefixLen":25, + "network":"192.236.160.128\/25", + "version":8384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.161.0", + "prefixLen":25, + "network":"192.236.161.0\/25", + "version":8383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.161.128", + "prefixLen":25, + "network":"192.236.161.128\/25", + "version":8382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.162.0", + "prefixLen":25, + "network":"192.236.162.0\/25", + "version":8381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.162.128", + "prefixLen":25, + "network":"192.236.162.128\/25", + "version":8380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.163.0", + "prefixLen":25, + "network":"192.236.163.0\/25", + "version":8379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.163.128", + "prefixLen":25, + "network":"192.236.163.128\/25", + "version":8378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.176.0", + "prefixLen":25, + "network":"192.236.176.0\/25", + "version":8377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.176.128", + "prefixLen":25, + "network":"192.236.176.128\/25", + "version":8376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.177.0", + "prefixLen":25, + "network":"192.236.177.0\/25", + "version":8375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.177.128", + "prefixLen":25, + "network":"192.236.177.128\/25", + "version":8374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.178.0", + "prefixLen":25, + "network":"192.236.178.0\/25", + "version":8373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.178.128", + "prefixLen":25, + "network":"192.236.178.128\/25", + "version":8372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.179.0", + "prefixLen":25, + "network":"192.236.179.0\/25", + "version":8371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.179.128", + "prefixLen":25, + "network":"192.236.179.128\/25", + "version":8370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.192.0", + "prefixLen":25, + "network":"192.236.192.0\/25", + "version":8369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.192.128", + "prefixLen":25, + "network":"192.236.192.128\/25", + "version":8368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.193.0", + "prefixLen":25, + "network":"192.236.193.0\/25", + "version":8367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.193.128", + "prefixLen":25, + "network":"192.236.193.128\/25", + "version":8366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.194.0", + "prefixLen":25, + "network":"192.236.194.0\/25", + "version":8365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.194.128", + "prefixLen":25, + "network":"192.236.194.128\/25", + "version":8364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.195.0", + "prefixLen":25, + "network":"192.236.195.0\/25", + "version":8363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.195.128", + "prefixLen":25, + "network":"192.236.195.128\/25", + "version":8362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.208.0", + "prefixLen":25, + "network":"192.236.208.0\/25", + "version":8361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.208.128", + "prefixLen":25, + "network":"192.236.208.128\/25", + "version":8360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.209.0", + "prefixLen":25, + "network":"192.236.209.0\/25", + "version":8359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.209.128", + "prefixLen":25, + "network":"192.236.209.128\/25", + "version":8358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.210.0", + "prefixLen":25, + "network":"192.236.210.0\/25", + "version":8357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.210.128", + "prefixLen":25, + "network":"192.236.210.128\/25", + "version":8356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.211.0", + "prefixLen":25, + "network":"192.236.211.0\/25", + "version":8355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.211.128", + "prefixLen":25, + "network":"192.236.211.128\/25", + "version":8354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.224.0", + "prefixLen":25, + "network":"192.236.224.0\/25", + "version":8353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.224.128", + "prefixLen":25, + "network":"192.236.224.128\/25", + "version":8352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.225.0", + "prefixLen":25, + "network":"192.236.225.0\/25", + "version":8351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.225.128", + "prefixLen":25, + "network":"192.236.225.128\/25", + "version":8350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.226.0", + "prefixLen":25, + "network":"192.236.226.0\/25", + "version":8349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.226.128", + "prefixLen":25, + "network":"192.236.226.128\/25", + "version":8348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.227.0", + "prefixLen":25, + "network":"192.236.227.0\/25", + "version":8347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.227.128", + "prefixLen":25, + "network":"192.236.227.128\/25", + "version":8346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.240.0", + "prefixLen":25, + "network":"192.236.240.0\/25", + "version":8345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.240.128", + "prefixLen":25, + "network":"192.236.240.128\/25", + "version":8344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.241.0", + "prefixLen":25, + "network":"192.236.241.0\/25", + "version":8343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.241.128", + "prefixLen":25, + "network":"192.236.241.128\/25", + "version":8342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.242.0", + "prefixLen":25, + "network":"192.236.242.0\/25", + "version":8341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.242.128", + "prefixLen":25, + "network":"192.236.242.128\/25", + "version":8340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.243.0", + "prefixLen":25, + "network":"192.236.243.0\/25", + "version":8339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.236.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.236.243.128", + "prefixLen":25, + "network":"192.236.243.128\/25", + "version":8338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64668 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.0.0", + "prefixLen":25, + "network":"192.237.0.0\/25", + "version":8465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.0.128", + "prefixLen":25, + "network":"192.237.0.128\/25", + "version":8592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.1.0", + "prefixLen":25, + "network":"192.237.1.0\/25", + "version":8591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.1.128", + "prefixLen":25, + "network":"192.237.1.128\/25", + "version":8590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.2.0", + "prefixLen":25, + "network":"192.237.2.0\/25", + "version":8589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.2.128", + "prefixLen":25, + "network":"192.237.2.128\/25", + "version":8588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.3.0", + "prefixLen":25, + "network":"192.237.3.0\/25", + "version":8587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.3.128", + "prefixLen":25, + "network":"192.237.3.128\/25", + "version":8586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.16.0", + "prefixLen":25, + "network":"192.237.16.0\/25", + "version":8585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.16.128", + "prefixLen":25, + "network":"192.237.16.128\/25", + "version":8584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.17.0", + "prefixLen":25, + "network":"192.237.17.0\/25", + "version":8583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.17.128", + "prefixLen":25, + "network":"192.237.17.128\/25", + "version":8582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.18.0", + "prefixLen":25, + "network":"192.237.18.0\/25", + "version":8581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.18.128", + "prefixLen":25, + "network":"192.237.18.128\/25", + "version":8580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.19.0", + "prefixLen":25, + "network":"192.237.19.0\/25", + "version":8579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.19.128", + "prefixLen":25, + "network":"192.237.19.128\/25", + "version":8578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.32.0", + "prefixLen":25, + "network":"192.237.32.0\/25", + "version":8577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.32.128", + "prefixLen":25, + "network":"192.237.32.128\/25", + "version":8576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.33.0", + "prefixLen":25, + "network":"192.237.33.0\/25", + "version":8575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.33.128", + "prefixLen":25, + "network":"192.237.33.128\/25", + "version":8574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.34.0", + "prefixLen":25, + "network":"192.237.34.0\/25", + "version":8573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.34.128", + "prefixLen":25, + "network":"192.237.34.128\/25", + "version":8572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.35.0", + "prefixLen":25, + "network":"192.237.35.0\/25", + "version":8571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.35.128", + "prefixLen":25, + "network":"192.237.35.128\/25", + "version":8570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.48.0", + "prefixLen":25, + "network":"192.237.48.0\/25", + "version":8569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.48.128", + "prefixLen":25, + "network":"192.237.48.128\/25", + "version":8568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.49.0", + "prefixLen":25, + "network":"192.237.49.0\/25", + "version":8567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.49.128", + "prefixLen":25, + "network":"192.237.49.128\/25", + "version":8566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.50.0", + "prefixLen":25, + "network":"192.237.50.0\/25", + "version":8565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.50.128", + "prefixLen":25, + "network":"192.237.50.128\/25", + "version":8564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.51.0", + "prefixLen":25, + "network":"192.237.51.0\/25", + "version":8563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.51.128", + "prefixLen":25, + "network":"192.237.51.128\/25", + "version":8562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.64.0", + "prefixLen":25, + "network":"192.237.64.0\/25", + "version":8561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.64.128", + "prefixLen":25, + "network":"192.237.64.128\/25", + "version":8560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.65.0", + "prefixLen":25, + "network":"192.237.65.0\/25", + "version":8559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.65.128", + "prefixLen":25, + "network":"192.237.65.128\/25", + "version":8558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.66.0", + "prefixLen":25, + "network":"192.237.66.0\/25", + "version":8557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.66.128", + "prefixLen":25, + "network":"192.237.66.128\/25", + "version":8556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.67.0", + "prefixLen":25, + "network":"192.237.67.0\/25", + "version":8555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.67.128", + "prefixLen":25, + "network":"192.237.67.128\/25", + "version":8554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.80.0", + "prefixLen":25, + "network":"192.237.80.0\/25", + "version":8553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.80.128", + "prefixLen":25, + "network":"192.237.80.128\/25", + "version":8552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.81.0", + "prefixLen":25, + "network":"192.237.81.0\/25", + "version":8551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.81.128", + "prefixLen":25, + "network":"192.237.81.128\/25", + "version":8550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.82.0", + "prefixLen":25, + "network":"192.237.82.0\/25", + "version":8549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.82.128", + "prefixLen":25, + "network":"192.237.82.128\/25", + "version":8548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.83.0", + "prefixLen":25, + "network":"192.237.83.0\/25", + "version":8547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.83.128", + "prefixLen":25, + "network":"192.237.83.128\/25", + "version":8546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.96.0", + "prefixLen":25, + "network":"192.237.96.0\/25", + "version":8545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.96.128", + "prefixLen":25, + "network":"192.237.96.128\/25", + "version":8544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.97.0", + "prefixLen":25, + "network":"192.237.97.0\/25", + "version":8543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.97.128", + "prefixLen":25, + "network":"192.237.97.128\/25", + "version":8542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.98.0", + "prefixLen":25, + "network":"192.237.98.0\/25", + "version":8541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.98.128", + "prefixLen":25, + "network":"192.237.98.128\/25", + "version":8540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.99.0", + "prefixLen":25, + "network":"192.237.99.0\/25", + "version":8539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.99.128", + "prefixLen":25, + "network":"192.237.99.128\/25", + "version":8538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.112.0", + "prefixLen":25, + "network":"192.237.112.0\/25", + "version":8537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.112.128", + "prefixLen":25, + "network":"192.237.112.128\/25", + "version":8536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.113.0", + "prefixLen":25, + "network":"192.237.113.0\/25", + "version":8535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.113.128", + "prefixLen":25, + "network":"192.237.113.128\/25", + "version":8534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.114.0", + "prefixLen":25, + "network":"192.237.114.0\/25", + "version":8533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.114.128", + "prefixLen":25, + "network":"192.237.114.128\/25", + "version":8532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.115.0", + "prefixLen":25, + "network":"192.237.115.0\/25", + "version":8531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.115.128", + "prefixLen":25, + "network":"192.237.115.128\/25", + "version":8530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.128.0", + "prefixLen":25, + "network":"192.237.128.0\/25", + "version":8529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.128.128", + "prefixLen":25, + "network":"192.237.128.128\/25", + "version":8528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.129.0", + "prefixLen":25, + "network":"192.237.129.0\/25", + "version":8527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.129.128", + "prefixLen":25, + "network":"192.237.129.128\/25", + "version":8526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.130.0", + "prefixLen":25, + "network":"192.237.130.0\/25", + "version":8525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.130.128", + "prefixLen":25, + "network":"192.237.130.128\/25", + "version":8524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.131.0", + "prefixLen":25, + "network":"192.237.131.0\/25", + "version":8523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.131.128", + "prefixLen":25, + "network":"192.237.131.128\/25", + "version":8522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.144.0", + "prefixLen":25, + "network":"192.237.144.0\/25", + "version":8521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.144.128", + "prefixLen":25, + "network":"192.237.144.128\/25", + "version":8520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.145.0", + "prefixLen":25, + "network":"192.237.145.0\/25", + "version":8519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.145.128", + "prefixLen":25, + "network":"192.237.145.128\/25", + "version":8518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.146.0", + "prefixLen":25, + "network":"192.237.146.0\/25", + "version":8517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.146.128", + "prefixLen":25, + "network":"192.237.146.128\/25", + "version":8516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.147.0", + "prefixLen":25, + "network":"192.237.147.0\/25", + "version":8515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.147.128", + "prefixLen":25, + "network":"192.237.147.128\/25", + "version":8514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.160.0", + "prefixLen":25, + "network":"192.237.160.0\/25", + "version":8513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.160.128", + "prefixLen":25, + "network":"192.237.160.128\/25", + "version":8512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.161.0", + "prefixLen":25, + "network":"192.237.161.0\/25", + "version":8511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.161.128", + "prefixLen":25, + "network":"192.237.161.128\/25", + "version":8510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.162.0", + "prefixLen":25, + "network":"192.237.162.0\/25", + "version":8509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.162.128", + "prefixLen":25, + "network":"192.237.162.128\/25", + "version":8508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.163.0", + "prefixLen":25, + "network":"192.237.163.0\/25", + "version":8507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.163.128", + "prefixLen":25, + "network":"192.237.163.128\/25", + "version":8506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.176.0", + "prefixLen":25, + "network":"192.237.176.0\/25", + "version":8505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.176.128", + "prefixLen":25, + "network":"192.237.176.128\/25", + "version":8504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.177.0", + "prefixLen":25, + "network":"192.237.177.0\/25", + "version":8503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.177.128", + "prefixLen":25, + "network":"192.237.177.128\/25", + "version":8502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.178.0", + "prefixLen":25, + "network":"192.237.178.0\/25", + "version":8501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.178.128", + "prefixLen":25, + "network":"192.237.178.128\/25", + "version":8500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.179.0", + "prefixLen":25, + "network":"192.237.179.0\/25", + "version":8499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.179.128", + "prefixLen":25, + "network":"192.237.179.128\/25", + "version":8498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.192.0", + "prefixLen":25, + "network":"192.237.192.0\/25", + "version":8497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.192.128", + "prefixLen":25, + "network":"192.237.192.128\/25", + "version":8496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.193.0", + "prefixLen":25, + "network":"192.237.193.0\/25", + "version":8495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.193.128", + "prefixLen":25, + "network":"192.237.193.128\/25", + "version":8494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.194.0", + "prefixLen":25, + "network":"192.237.194.0\/25", + "version":8493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.194.128", + "prefixLen":25, + "network":"192.237.194.128\/25", + "version":8492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.195.0", + "prefixLen":25, + "network":"192.237.195.0\/25", + "version":8491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.195.128", + "prefixLen":25, + "network":"192.237.195.128\/25", + "version":8490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.208.0", + "prefixLen":25, + "network":"192.237.208.0\/25", + "version":8489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.208.128", + "prefixLen":25, + "network":"192.237.208.128\/25", + "version":8488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.209.0", + "prefixLen":25, + "network":"192.237.209.0\/25", + "version":8487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.209.128", + "prefixLen":25, + "network":"192.237.209.128\/25", + "version":8486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.210.0", + "prefixLen":25, + "network":"192.237.210.0\/25", + "version":8485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.210.128", + "prefixLen":25, + "network":"192.237.210.128\/25", + "version":8484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.211.0", + "prefixLen":25, + "network":"192.237.211.0\/25", + "version":8483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.211.128", + "prefixLen":25, + "network":"192.237.211.128\/25", + "version":8482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.224.0", + "prefixLen":25, + "network":"192.237.224.0\/25", + "version":8481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.224.128", + "prefixLen":25, + "network":"192.237.224.128\/25", + "version":8480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.225.0", + "prefixLen":25, + "network":"192.237.225.0\/25", + "version":8479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.225.128", + "prefixLen":25, + "network":"192.237.225.128\/25", + "version":8478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.226.0", + "prefixLen":25, + "network":"192.237.226.0\/25", + "version":8477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.226.128", + "prefixLen":25, + "network":"192.237.226.128\/25", + "version":8476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.227.0", + "prefixLen":25, + "network":"192.237.227.0\/25", + "version":8475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.227.128", + "prefixLen":25, + "network":"192.237.227.128\/25", + "version":8474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.240.0", + "prefixLen":25, + "network":"192.237.240.0\/25", + "version":8473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.240.128", + "prefixLen":25, + "network":"192.237.240.128\/25", + "version":8472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.241.0", + "prefixLen":25, + "network":"192.237.241.0\/25", + "version":8471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.241.128", + "prefixLen":25, + "network":"192.237.241.128\/25", + "version":8470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.242.0", + "prefixLen":25, + "network":"192.237.242.0\/25", + "version":8469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.242.128", + "prefixLen":25, + "network":"192.237.242.128\/25", + "version":8468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.243.0", + "prefixLen":25, + "network":"192.237.243.0\/25", + "version":8467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.237.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.237.243.128", + "prefixLen":25, + "network":"192.237.243.128\/25", + "version":8466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64669 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.0.0", + "prefixLen":25, + "network":"192.238.0.0\/25", + "version":8593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.0.128", + "prefixLen":25, + "network":"192.238.0.128\/25", + "version":8720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.1.0", + "prefixLen":25, + "network":"192.238.1.0\/25", + "version":8719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.1.128", + "prefixLen":25, + "network":"192.238.1.128\/25", + "version":8718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.2.0", + "prefixLen":25, + "network":"192.238.2.0\/25", + "version":8717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.2.128", + "prefixLen":25, + "network":"192.238.2.128\/25", + "version":8716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.3.0", + "prefixLen":25, + "network":"192.238.3.0\/25", + "version":8715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.3.128", + "prefixLen":25, + "network":"192.238.3.128\/25", + "version":8714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.16.0", + "prefixLen":25, + "network":"192.238.16.0\/25", + "version":8713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.16.128", + "prefixLen":25, + "network":"192.238.16.128\/25", + "version":8712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.17.0", + "prefixLen":25, + "network":"192.238.17.0\/25", + "version":8711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.17.128", + "prefixLen":25, + "network":"192.238.17.128\/25", + "version":8710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.18.0", + "prefixLen":25, + "network":"192.238.18.0\/25", + "version":8709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.18.128", + "prefixLen":25, + "network":"192.238.18.128\/25", + "version":8708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.19.0", + "prefixLen":25, + "network":"192.238.19.0\/25", + "version":8707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.19.128", + "prefixLen":25, + "network":"192.238.19.128\/25", + "version":8706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.32.0", + "prefixLen":25, + "network":"192.238.32.0\/25", + "version":8705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.32.128", + "prefixLen":25, + "network":"192.238.32.128\/25", + "version":8704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.33.0", + "prefixLen":25, + "network":"192.238.33.0\/25", + "version":8703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.33.128", + "prefixLen":25, + "network":"192.238.33.128\/25", + "version":8702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.34.0", + "prefixLen":25, + "network":"192.238.34.0\/25", + "version":8701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.34.128", + "prefixLen":25, + "network":"192.238.34.128\/25", + "version":8700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.35.0", + "prefixLen":25, + "network":"192.238.35.0\/25", + "version":8699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.35.128", + "prefixLen":25, + "network":"192.238.35.128\/25", + "version":8698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.48.0", + "prefixLen":25, + "network":"192.238.48.0\/25", + "version":8697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.48.128", + "prefixLen":25, + "network":"192.238.48.128\/25", + "version":8696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.49.0", + "prefixLen":25, + "network":"192.238.49.0\/25", + "version":8695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.49.128", + "prefixLen":25, + "network":"192.238.49.128\/25", + "version":8694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.50.0", + "prefixLen":25, + "network":"192.238.50.0\/25", + "version":8693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.50.128", + "prefixLen":25, + "network":"192.238.50.128\/25", + "version":8692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.51.0", + "prefixLen":25, + "network":"192.238.51.0\/25", + "version":8691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.51.128", + "prefixLen":25, + "network":"192.238.51.128\/25", + "version":8690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.64.0", + "prefixLen":25, + "network":"192.238.64.0\/25", + "version":8689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.64.128", + "prefixLen":25, + "network":"192.238.64.128\/25", + "version":8688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.65.0", + "prefixLen":25, + "network":"192.238.65.0\/25", + "version":8687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.65.128", + "prefixLen":25, + "network":"192.238.65.128\/25", + "version":8686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.66.0", + "prefixLen":25, + "network":"192.238.66.0\/25", + "version":8685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.66.128", + "prefixLen":25, + "network":"192.238.66.128\/25", + "version":8684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.67.0", + "prefixLen":25, + "network":"192.238.67.0\/25", + "version":8683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.67.128", + "prefixLen":25, + "network":"192.238.67.128\/25", + "version":8682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.80.0", + "prefixLen":25, + "network":"192.238.80.0\/25", + "version":8681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.80.128", + "prefixLen":25, + "network":"192.238.80.128\/25", + "version":8680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.81.0", + "prefixLen":25, + "network":"192.238.81.0\/25", + "version":8679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.81.128", + "prefixLen":25, + "network":"192.238.81.128\/25", + "version":8678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.82.0", + "prefixLen":25, + "network":"192.238.82.0\/25", + "version":8677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.82.128", + "prefixLen":25, + "network":"192.238.82.128\/25", + "version":8676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.83.0", + "prefixLen":25, + "network":"192.238.83.0\/25", + "version":8675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.83.128", + "prefixLen":25, + "network":"192.238.83.128\/25", + "version":8674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.96.0", + "prefixLen":25, + "network":"192.238.96.0\/25", + "version":8673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.96.128", + "prefixLen":25, + "network":"192.238.96.128\/25", + "version":8672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.97.0", + "prefixLen":25, + "network":"192.238.97.0\/25", + "version":8671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.97.128", + "prefixLen":25, + "network":"192.238.97.128\/25", + "version":8670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.98.0", + "prefixLen":25, + "network":"192.238.98.0\/25", + "version":8669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.98.128", + "prefixLen":25, + "network":"192.238.98.128\/25", + "version":8668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.99.0", + "prefixLen":25, + "network":"192.238.99.0\/25", + "version":8667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.99.128", + "prefixLen":25, + "network":"192.238.99.128\/25", + "version":8666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.112.0", + "prefixLen":25, + "network":"192.238.112.0\/25", + "version":8665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.112.128", + "prefixLen":25, + "network":"192.238.112.128\/25", + "version":8664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.113.0", + "prefixLen":25, + "network":"192.238.113.0\/25", + "version":8663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.113.128", + "prefixLen":25, + "network":"192.238.113.128\/25", + "version":8662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.114.0", + "prefixLen":25, + "network":"192.238.114.0\/25", + "version":8661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.114.128", + "prefixLen":25, + "network":"192.238.114.128\/25", + "version":8660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.115.0", + "prefixLen":25, + "network":"192.238.115.0\/25", + "version":8659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.115.128", + "prefixLen":25, + "network":"192.238.115.128\/25", + "version":8658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.128.0", + "prefixLen":25, + "network":"192.238.128.0\/25", + "version":8657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.128.128", + "prefixLen":25, + "network":"192.238.128.128\/25", + "version":8656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.129.0", + "prefixLen":25, + "network":"192.238.129.0\/25", + "version":8655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.129.128", + "prefixLen":25, + "network":"192.238.129.128\/25", + "version":8654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.130.0", + "prefixLen":25, + "network":"192.238.130.0\/25", + "version":8653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.130.128", + "prefixLen":25, + "network":"192.238.130.128\/25", + "version":8652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.131.0", + "prefixLen":25, + "network":"192.238.131.0\/25", + "version":8651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.131.128", + "prefixLen":25, + "network":"192.238.131.128\/25", + "version":8650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.144.0", + "prefixLen":25, + "network":"192.238.144.0\/25", + "version":8649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.144.128", + "prefixLen":25, + "network":"192.238.144.128\/25", + "version":8648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.145.0", + "prefixLen":25, + "network":"192.238.145.0\/25", + "version":8647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.145.128", + "prefixLen":25, + "network":"192.238.145.128\/25", + "version":8646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.146.0", + "prefixLen":25, + "network":"192.238.146.0\/25", + "version":8645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.146.128", + "prefixLen":25, + "network":"192.238.146.128\/25", + "version":8644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.147.0", + "prefixLen":25, + "network":"192.238.147.0\/25", + "version":8643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.147.128", + "prefixLen":25, + "network":"192.238.147.128\/25", + "version":8642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.160.0", + "prefixLen":25, + "network":"192.238.160.0\/25", + "version":8641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.160.128", + "prefixLen":25, + "network":"192.238.160.128\/25", + "version":8640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.161.0", + "prefixLen":25, + "network":"192.238.161.0\/25", + "version":8639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.161.128", + "prefixLen":25, + "network":"192.238.161.128\/25", + "version":8638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.162.0", + "prefixLen":25, + "network":"192.238.162.0\/25", + "version":8637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.162.128", + "prefixLen":25, + "network":"192.238.162.128\/25", + "version":8636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.163.0", + "prefixLen":25, + "network":"192.238.163.0\/25", + "version":8635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.163.128", + "prefixLen":25, + "network":"192.238.163.128\/25", + "version":8634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.176.0", + "prefixLen":25, + "network":"192.238.176.0\/25", + "version":8633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.176.128", + "prefixLen":25, + "network":"192.238.176.128\/25", + "version":8632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.177.0", + "prefixLen":25, + "network":"192.238.177.0\/25", + "version":8631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.177.128", + "prefixLen":25, + "network":"192.238.177.128\/25", + "version":8630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.178.0", + "prefixLen":25, + "network":"192.238.178.0\/25", + "version":8629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.178.128", + "prefixLen":25, + "network":"192.238.178.128\/25", + "version":8628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.179.0", + "prefixLen":25, + "network":"192.238.179.0\/25", + "version":8627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.179.128", + "prefixLen":25, + "network":"192.238.179.128\/25", + "version":8626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.192.0", + "prefixLen":25, + "network":"192.238.192.0\/25", + "version":8625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.192.128", + "prefixLen":25, + "network":"192.238.192.128\/25", + "version":8624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.193.0", + "prefixLen":25, + "network":"192.238.193.0\/25", + "version":8623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.193.128", + "prefixLen":25, + "network":"192.238.193.128\/25", + "version":8622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.194.0", + "prefixLen":25, + "network":"192.238.194.0\/25", + "version":8621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.194.128", + "prefixLen":25, + "network":"192.238.194.128\/25", + "version":8620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.195.0", + "prefixLen":25, + "network":"192.238.195.0\/25", + "version":8619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.195.128", + "prefixLen":25, + "network":"192.238.195.128\/25", + "version":8618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.208.0", + "prefixLen":25, + "network":"192.238.208.0\/25", + "version":8617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.208.128", + "prefixLen":25, + "network":"192.238.208.128\/25", + "version":8616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.209.0", + "prefixLen":25, + "network":"192.238.209.0\/25", + "version":8615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.209.128", + "prefixLen":25, + "network":"192.238.209.128\/25", + "version":8614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.210.0", + "prefixLen":25, + "network":"192.238.210.0\/25", + "version":8613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.210.128", + "prefixLen":25, + "network":"192.238.210.128\/25", + "version":8612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.211.0", + "prefixLen":25, + "network":"192.238.211.0\/25", + "version":8611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.211.128", + "prefixLen":25, + "network":"192.238.211.128\/25", + "version":8610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.224.0", + "prefixLen":25, + "network":"192.238.224.0\/25", + "version":8609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.224.128", + "prefixLen":25, + "network":"192.238.224.128\/25", + "version":8608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.225.0", + "prefixLen":25, + "network":"192.238.225.0\/25", + "version":8607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.225.128", + "prefixLen":25, + "network":"192.238.225.128\/25", + "version":8606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.226.0", + "prefixLen":25, + "network":"192.238.226.0\/25", + "version":8605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.226.128", + "prefixLen":25, + "network":"192.238.226.128\/25", + "version":8604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.227.0", + "prefixLen":25, + "network":"192.238.227.0\/25", + "version":8603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.227.128", + "prefixLen":25, + "network":"192.238.227.128\/25", + "version":8602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.240.0", + "prefixLen":25, + "network":"192.238.240.0\/25", + "version":8601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.240.128", + "prefixLen":25, + "network":"192.238.240.128\/25", + "version":8600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.241.0", + "prefixLen":25, + "network":"192.238.241.0\/25", + "version":8599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.241.128", + "prefixLen":25, + "network":"192.238.241.128\/25", + "version":8598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.242.0", + "prefixLen":25, + "network":"192.238.242.0\/25", + "version":8597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.242.128", + "prefixLen":25, + "network":"192.238.242.128\/25", + "version":8596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.243.0", + "prefixLen":25, + "network":"192.238.243.0\/25", + "version":8595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.238.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.238.243.128", + "prefixLen":25, + "network":"192.238.243.128\/25", + "version":8594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64670 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.0.0", + "prefixLen":25, + "network":"192.239.0.0\/25", + "version":8721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.0.128", + "prefixLen":25, + "network":"192.239.0.128\/25", + "version":8848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.1.0", + "prefixLen":25, + "network":"192.239.1.0\/25", + "version":8847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.1.128", + "prefixLen":25, + "network":"192.239.1.128\/25", + "version":8846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.2.0", + "prefixLen":25, + "network":"192.239.2.0\/25", + "version":8845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.2.128", + "prefixLen":25, + "network":"192.239.2.128\/25", + "version":8844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.3.0", + "prefixLen":25, + "network":"192.239.3.0\/25", + "version":8843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.3.128", + "prefixLen":25, + "network":"192.239.3.128\/25", + "version":8842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.16.0", + "prefixLen":25, + "network":"192.239.16.0\/25", + "version":8841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.16.128", + "prefixLen":25, + "network":"192.239.16.128\/25", + "version":8840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.17.0", + "prefixLen":25, + "network":"192.239.17.0\/25", + "version":8839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.17.128", + "prefixLen":25, + "network":"192.239.17.128\/25", + "version":8838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.18.0", + "prefixLen":25, + "network":"192.239.18.0\/25", + "version":8837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.18.128", + "prefixLen":25, + "network":"192.239.18.128\/25", + "version":8836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.19.0", + "prefixLen":25, + "network":"192.239.19.0\/25", + "version":8835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.19.128", + "prefixLen":25, + "network":"192.239.19.128\/25", + "version":8834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.32.0", + "prefixLen":25, + "network":"192.239.32.0\/25", + "version":8833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.32.128", + "prefixLen":25, + "network":"192.239.32.128\/25", + "version":8832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.33.0", + "prefixLen":25, + "network":"192.239.33.0\/25", + "version":8831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.33.128", + "prefixLen":25, + "network":"192.239.33.128\/25", + "version":8830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.34.0", + "prefixLen":25, + "network":"192.239.34.0\/25", + "version":8829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.34.128", + "prefixLen":25, + "network":"192.239.34.128\/25", + "version":8828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.35.0", + "prefixLen":25, + "network":"192.239.35.0\/25", + "version":8827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.35.128", + "prefixLen":25, + "network":"192.239.35.128\/25", + "version":8826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.48.0", + "prefixLen":25, + "network":"192.239.48.0\/25", + "version":8825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.48.128", + "prefixLen":25, + "network":"192.239.48.128\/25", + "version":8824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.49.0", + "prefixLen":25, + "network":"192.239.49.0\/25", + "version":8823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.49.128", + "prefixLen":25, + "network":"192.239.49.128\/25", + "version":8822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.50.0", + "prefixLen":25, + "network":"192.239.50.0\/25", + "version":8821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.50.128", + "prefixLen":25, + "network":"192.239.50.128\/25", + "version":8820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.51.0", + "prefixLen":25, + "network":"192.239.51.0\/25", + "version":8819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.51.128", + "prefixLen":25, + "network":"192.239.51.128\/25", + "version":8818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.64.0", + "prefixLen":25, + "network":"192.239.64.0\/25", + "version":8817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.64.128", + "prefixLen":25, + "network":"192.239.64.128\/25", + "version":8816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.65.0", + "prefixLen":25, + "network":"192.239.65.0\/25", + "version":8815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.65.128", + "prefixLen":25, + "network":"192.239.65.128\/25", + "version":8814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.66.0", + "prefixLen":25, + "network":"192.239.66.0\/25", + "version":8813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.66.128", + "prefixLen":25, + "network":"192.239.66.128\/25", + "version":8812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.67.0", + "prefixLen":25, + "network":"192.239.67.0\/25", + "version":8811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.67.128", + "prefixLen":25, + "network":"192.239.67.128\/25", + "version":8810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.80.0", + "prefixLen":25, + "network":"192.239.80.0\/25", + "version":8809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.80.128", + "prefixLen":25, + "network":"192.239.80.128\/25", + "version":8808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.81.0", + "prefixLen":25, + "network":"192.239.81.0\/25", + "version":8807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.81.128", + "prefixLen":25, + "network":"192.239.81.128\/25", + "version":8806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.82.0", + "prefixLen":25, + "network":"192.239.82.0\/25", + "version":8805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.82.128", + "prefixLen":25, + "network":"192.239.82.128\/25", + "version":8804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.83.0", + "prefixLen":25, + "network":"192.239.83.0\/25", + "version":8803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.83.128", + "prefixLen":25, + "network":"192.239.83.128\/25", + "version":8802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.96.0", + "prefixLen":25, + "network":"192.239.96.0\/25", + "version":8801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.96.128", + "prefixLen":25, + "network":"192.239.96.128\/25", + "version":8800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.97.0", + "prefixLen":25, + "network":"192.239.97.0\/25", + "version":8799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.97.128", + "prefixLen":25, + "network":"192.239.97.128\/25", + "version":8798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.98.0", + "prefixLen":25, + "network":"192.239.98.0\/25", + "version":8797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.98.128", + "prefixLen":25, + "network":"192.239.98.128\/25", + "version":8796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.99.0", + "prefixLen":25, + "network":"192.239.99.0\/25", + "version":8795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.99.128", + "prefixLen":25, + "network":"192.239.99.128\/25", + "version":8794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.112.0", + "prefixLen":25, + "network":"192.239.112.0\/25", + "version":8793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.112.128", + "prefixLen":25, + "network":"192.239.112.128\/25", + "version":8792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.113.0", + "prefixLen":25, + "network":"192.239.113.0\/25", + "version":8791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.113.128", + "prefixLen":25, + "network":"192.239.113.128\/25", + "version":8790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.114.0", + "prefixLen":25, + "network":"192.239.114.0\/25", + "version":8789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.114.128", + "prefixLen":25, + "network":"192.239.114.128\/25", + "version":8788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.115.0", + "prefixLen":25, + "network":"192.239.115.0\/25", + "version":8787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.115.128", + "prefixLen":25, + "network":"192.239.115.128\/25", + "version":8786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.128.0", + "prefixLen":25, + "network":"192.239.128.0\/25", + "version":8785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.128.128", + "prefixLen":25, + "network":"192.239.128.128\/25", + "version":8784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.129.0", + "prefixLen":25, + "network":"192.239.129.0\/25", + "version":8783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.129.128", + "prefixLen":25, + "network":"192.239.129.128\/25", + "version":8782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.130.0", + "prefixLen":25, + "network":"192.239.130.0\/25", + "version":8781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.130.128", + "prefixLen":25, + "network":"192.239.130.128\/25", + "version":8780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.131.0", + "prefixLen":25, + "network":"192.239.131.0\/25", + "version":8779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.131.128", + "prefixLen":25, + "network":"192.239.131.128\/25", + "version":8778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.144.0", + "prefixLen":25, + "network":"192.239.144.0\/25", + "version":8777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.144.128", + "prefixLen":25, + "network":"192.239.144.128\/25", + "version":8776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.145.0", + "prefixLen":25, + "network":"192.239.145.0\/25", + "version":8775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.145.128", + "prefixLen":25, + "network":"192.239.145.128\/25", + "version":8774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.146.0", + "prefixLen":25, + "network":"192.239.146.0\/25", + "version":8773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.146.128", + "prefixLen":25, + "network":"192.239.146.128\/25", + "version":8772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.147.0", + "prefixLen":25, + "network":"192.239.147.0\/25", + "version":8771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.147.128", + "prefixLen":25, + "network":"192.239.147.128\/25", + "version":8770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.160.0", + "prefixLen":25, + "network":"192.239.160.0\/25", + "version":8769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.160.128", + "prefixLen":25, + "network":"192.239.160.128\/25", + "version":8768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.161.0", + "prefixLen":25, + "network":"192.239.161.0\/25", + "version":8767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.161.128", + "prefixLen":25, + "network":"192.239.161.128\/25", + "version":8766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.162.0", + "prefixLen":25, + "network":"192.239.162.0\/25", + "version":8765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.162.128", + "prefixLen":25, + "network":"192.239.162.128\/25", + "version":8764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.163.0", + "prefixLen":25, + "network":"192.239.163.0\/25", + "version":8763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.163.128", + "prefixLen":25, + "network":"192.239.163.128\/25", + "version":8762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.176.0", + "prefixLen":25, + "network":"192.239.176.0\/25", + "version":8761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.176.128", + "prefixLen":25, + "network":"192.239.176.128\/25", + "version":8760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.177.0", + "prefixLen":25, + "network":"192.239.177.0\/25", + "version":8759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.177.128", + "prefixLen":25, + "network":"192.239.177.128\/25", + "version":8758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.178.0", + "prefixLen":25, + "network":"192.239.178.0\/25", + "version":8757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.178.128", + "prefixLen":25, + "network":"192.239.178.128\/25", + "version":8756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.179.0", + "prefixLen":25, + "network":"192.239.179.0\/25", + "version":8755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.179.128", + "prefixLen":25, + "network":"192.239.179.128\/25", + "version":8754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.192.0", + "prefixLen":25, + "network":"192.239.192.0\/25", + "version":8753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.192.128", + "prefixLen":25, + "network":"192.239.192.128\/25", + "version":8752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.193.0", + "prefixLen":25, + "network":"192.239.193.0\/25", + "version":8751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.193.128", + "prefixLen":25, + "network":"192.239.193.128\/25", + "version":8750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.194.0", + "prefixLen":25, + "network":"192.239.194.0\/25", + "version":8749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.194.128", + "prefixLen":25, + "network":"192.239.194.128\/25", + "version":8748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.195.0", + "prefixLen":25, + "network":"192.239.195.0\/25", + "version":8747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.195.128", + "prefixLen":25, + "network":"192.239.195.128\/25", + "version":8746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.208.0", + "prefixLen":25, + "network":"192.239.208.0\/25", + "version":8745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.208.128", + "prefixLen":25, + "network":"192.239.208.128\/25", + "version":8744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.209.0", + "prefixLen":25, + "network":"192.239.209.0\/25", + "version":8743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.209.128", + "prefixLen":25, + "network":"192.239.209.128\/25", + "version":8742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.210.0", + "prefixLen":25, + "network":"192.239.210.0\/25", + "version":8741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.210.128", + "prefixLen":25, + "network":"192.239.210.128\/25", + "version":8740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.211.0", + "prefixLen":25, + "network":"192.239.211.0\/25", + "version":8739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.211.128", + "prefixLen":25, + "network":"192.239.211.128\/25", + "version":8738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.224.0", + "prefixLen":25, + "network":"192.239.224.0\/25", + "version":8737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.224.128", + "prefixLen":25, + "network":"192.239.224.128\/25", + "version":8736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.225.0", + "prefixLen":25, + "network":"192.239.225.0\/25", + "version":8735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.225.128", + "prefixLen":25, + "network":"192.239.225.128\/25", + "version":8734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.226.0", + "prefixLen":25, + "network":"192.239.226.0\/25", + "version":8733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.226.128", + "prefixLen":25, + "network":"192.239.226.128\/25", + "version":8732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.227.0", + "prefixLen":25, + "network":"192.239.227.0\/25", + "version":8731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.227.128", + "prefixLen":25, + "network":"192.239.227.128\/25", + "version":8730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.240.0", + "prefixLen":25, + "network":"192.239.240.0\/25", + "version":8729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.240.128", + "prefixLen":25, + "network":"192.239.240.128\/25", + "version":8728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.241.0", + "prefixLen":25, + "network":"192.239.241.0\/25", + "version":8727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.241.128", + "prefixLen":25, + "network":"192.239.241.128\/25", + "version":8726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.242.0", + "prefixLen":25, + "network":"192.239.242.0\/25", + "version":8725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.242.128", + "prefixLen":25, + "network":"192.239.242.128\/25", + "version":8724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.243.0", + "prefixLen":25, + "network":"192.239.243.0\/25", + "version":8723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.239.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.239.243.128", + "prefixLen":25, + "network":"192.239.243.128\/25", + "version":8722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64671 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.0.0", + "prefixLen":25, + "network":"192.240.0.0\/25", + "version":8849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.0.128", + "prefixLen":25, + "network":"192.240.0.128\/25", + "version":8976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.1.0", + "prefixLen":25, + "network":"192.240.1.0\/25", + "version":8975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.1.128", + "prefixLen":25, + "network":"192.240.1.128\/25", + "version":8974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.2.0", + "prefixLen":25, + "network":"192.240.2.0\/25", + "version":8973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.2.128", + "prefixLen":25, + "network":"192.240.2.128\/25", + "version":8972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.3.0", + "prefixLen":25, + "network":"192.240.3.0\/25", + "version":8971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.3.128", + "prefixLen":25, + "network":"192.240.3.128\/25", + "version":8970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.16.0", + "prefixLen":25, + "network":"192.240.16.0\/25", + "version":8969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.16.128", + "prefixLen":25, + "network":"192.240.16.128\/25", + "version":8968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.17.0", + "prefixLen":25, + "network":"192.240.17.0\/25", + "version":8967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.17.128", + "prefixLen":25, + "network":"192.240.17.128\/25", + "version":8966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.18.0", + "prefixLen":25, + "network":"192.240.18.0\/25", + "version":8965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.18.128", + "prefixLen":25, + "network":"192.240.18.128\/25", + "version":8964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.19.0", + "prefixLen":25, + "network":"192.240.19.0\/25", + "version":8963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.19.128", + "prefixLen":25, + "network":"192.240.19.128\/25", + "version":8962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.32.0", + "prefixLen":25, + "network":"192.240.32.0\/25", + "version":8961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.32.128", + "prefixLen":25, + "network":"192.240.32.128\/25", + "version":8960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.33.0", + "prefixLen":25, + "network":"192.240.33.0\/25", + "version":8959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.33.128", + "prefixLen":25, + "network":"192.240.33.128\/25", + "version":8958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.34.0", + "prefixLen":25, + "network":"192.240.34.0\/25", + "version":8957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.34.128", + "prefixLen":25, + "network":"192.240.34.128\/25", + "version":8956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.35.0", + "prefixLen":25, + "network":"192.240.35.0\/25", + "version":8955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.35.128", + "prefixLen":25, + "network":"192.240.35.128\/25", + "version":8954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.48.0", + "prefixLen":25, + "network":"192.240.48.0\/25", + "version":8953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.48.128", + "prefixLen":25, + "network":"192.240.48.128\/25", + "version":8952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.49.0", + "prefixLen":25, + "network":"192.240.49.0\/25", + "version":8951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.49.128", + "prefixLen":25, + "network":"192.240.49.128\/25", + "version":8950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.50.0", + "prefixLen":25, + "network":"192.240.50.0\/25", + "version":8949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.50.128", + "prefixLen":25, + "network":"192.240.50.128\/25", + "version":8948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.51.0", + "prefixLen":25, + "network":"192.240.51.0\/25", + "version":8947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.51.128", + "prefixLen":25, + "network":"192.240.51.128\/25", + "version":8946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.64.0", + "prefixLen":25, + "network":"192.240.64.0\/25", + "version":8945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.64.128", + "prefixLen":25, + "network":"192.240.64.128\/25", + "version":8944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.65.0", + "prefixLen":25, + "network":"192.240.65.0\/25", + "version":8943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.65.128", + "prefixLen":25, + "network":"192.240.65.128\/25", + "version":8942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.66.0", + "prefixLen":25, + "network":"192.240.66.0\/25", + "version":8941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.66.128", + "prefixLen":25, + "network":"192.240.66.128\/25", + "version":8940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.67.0", + "prefixLen":25, + "network":"192.240.67.0\/25", + "version":8939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.67.128", + "prefixLen":25, + "network":"192.240.67.128\/25", + "version":8938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.80.0", + "prefixLen":25, + "network":"192.240.80.0\/25", + "version":8937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.80.128", + "prefixLen":25, + "network":"192.240.80.128\/25", + "version":8936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.81.0", + "prefixLen":25, + "network":"192.240.81.0\/25", + "version":8935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.81.128", + "prefixLen":25, + "network":"192.240.81.128\/25", + "version":8934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.82.0", + "prefixLen":25, + "network":"192.240.82.0\/25", + "version":8933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.82.128", + "prefixLen":25, + "network":"192.240.82.128\/25", + "version":8932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.83.0", + "prefixLen":25, + "network":"192.240.83.0\/25", + "version":8931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.83.128", + "prefixLen":25, + "network":"192.240.83.128\/25", + "version":8930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.96.0", + "prefixLen":25, + "network":"192.240.96.0\/25", + "version":8929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.96.128", + "prefixLen":25, + "network":"192.240.96.128\/25", + "version":8928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.97.0", + "prefixLen":25, + "network":"192.240.97.0\/25", + "version":8927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.97.128", + "prefixLen":25, + "network":"192.240.97.128\/25", + "version":8926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.98.0", + "prefixLen":25, + "network":"192.240.98.0\/25", + "version":8925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.98.128", + "prefixLen":25, + "network":"192.240.98.128\/25", + "version":8924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.99.0", + "prefixLen":25, + "network":"192.240.99.0\/25", + "version":8923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.99.128", + "prefixLen":25, + "network":"192.240.99.128\/25", + "version":8922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.112.0", + "prefixLen":25, + "network":"192.240.112.0\/25", + "version":8921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.112.128", + "prefixLen":25, + "network":"192.240.112.128\/25", + "version":8920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.113.0", + "prefixLen":25, + "network":"192.240.113.0\/25", + "version":8919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.113.128", + "prefixLen":25, + "network":"192.240.113.128\/25", + "version":8918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.114.0", + "prefixLen":25, + "network":"192.240.114.0\/25", + "version":8917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.114.128", + "prefixLen":25, + "network":"192.240.114.128\/25", + "version":8916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.115.0", + "prefixLen":25, + "network":"192.240.115.0\/25", + "version":8915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.115.128", + "prefixLen":25, + "network":"192.240.115.128\/25", + "version":8914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.128.0", + "prefixLen":25, + "network":"192.240.128.0\/25", + "version":8913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.128.128", + "prefixLen":25, + "network":"192.240.128.128\/25", + "version":8912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.129.0", + "prefixLen":25, + "network":"192.240.129.0\/25", + "version":8911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.129.128", + "prefixLen":25, + "network":"192.240.129.128\/25", + "version":8910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.130.0", + "prefixLen":25, + "network":"192.240.130.0\/25", + "version":8909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.130.128", + "prefixLen":25, + "network":"192.240.130.128\/25", + "version":8908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.131.0", + "prefixLen":25, + "network":"192.240.131.0\/25", + "version":8907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.131.128", + "prefixLen":25, + "network":"192.240.131.128\/25", + "version":8906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.144.0", + "prefixLen":25, + "network":"192.240.144.0\/25", + "version":8905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.144.128", + "prefixLen":25, + "network":"192.240.144.128\/25", + "version":8904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.145.0", + "prefixLen":25, + "network":"192.240.145.0\/25", + "version":8903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.145.128", + "prefixLen":25, + "network":"192.240.145.128\/25", + "version":8902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.146.0", + "prefixLen":25, + "network":"192.240.146.0\/25", + "version":8901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.146.128", + "prefixLen":25, + "network":"192.240.146.128\/25", + "version":8900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.147.0", + "prefixLen":25, + "network":"192.240.147.0\/25", + "version":8899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.147.128", + "prefixLen":25, + "network":"192.240.147.128\/25", + "version":8898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.160.0", + "prefixLen":25, + "network":"192.240.160.0\/25", + "version":8897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.160.128", + "prefixLen":25, + "network":"192.240.160.128\/25", + "version":8896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.161.0", + "prefixLen":25, + "network":"192.240.161.0\/25", + "version":8895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.161.128", + "prefixLen":25, + "network":"192.240.161.128\/25", + "version":8894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.162.0", + "prefixLen":25, + "network":"192.240.162.0\/25", + "version":8893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.162.128", + "prefixLen":25, + "network":"192.240.162.128\/25", + "version":8892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.163.0", + "prefixLen":25, + "network":"192.240.163.0\/25", + "version":8891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.163.128", + "prefixLen":25, + "network":"192.240.163.128\/25", + "version":8890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.176.0", + "prefixLen":25, + "network":"192.240.176.0\/25", + "version":8889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.176.128", + "prefixLen":25, + "network":"192.240.176.128\/25", + "version":8888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.177.0", + "prefixLen":25, + "network":"192.240.177.0\/25", + "version":8887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.177.128", + "prefixLen":25, + "network":"192.240.177.128\/25", + "version":8886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.178.0", + "prefixLen":25, + "network":"192.240.178.0\/25", + "version":8885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.178.128", + "prefixLen":25, + "network":"192.240.178.128\/25", + "version":8884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.179.0", + "prefixLen":25, + "network":"192.240.179.0\/25", + "version":8883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.179.128", + "prefixLen":25, + "network":"192.240.179.128\/25", + "version":8882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.192.0", + "prefixLen":25, + "network":"192.240.192.0\/25", + "version":8881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.192.128", + "prefixLen":25, + "network":"192.240.192.128\/25", + "version":8880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.193.0", + "prefixLen":25, + "network":"192.240.193.0\/25", + "version":8879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.193.128", + "prefixLen":25, + "network":"192.240.193.128\/25", + "version":8878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.194.0", + "prefixLen":25, + "network":"192.240.194.0\/25", + "version":8877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.194.128", + "prefixLen":25, + "network":"192.240.194.128\/25", + "version":8876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.195.0", + "prefixLen":25, + "network":"192.240.195.0\/25", + "version":8875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.195.128", + "prefixLen":25, + "network":"192.240.195.128\/25", + "version":8874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.208.0", + "prefixLen":25, + "network":"192.240.208.0\/25", + "version":8873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.208.128", + "prefixLen":25, + "network":"192.240.208.128\/25", + "version":8872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.209.0", + "prefixLen":25, + "network":"192.240.209.0\/25", + "version":8871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.209.128", + "prefixLen":25, + "network":"192.240.209.128\/25", + "version":8870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.210.0", + "prefixLen":25, + "network":"192.240.210.0\/25", + "version":8869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.210.128", + "prefixLen":25, + "network":"192.240.210.128\/25", + "version":8868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.211.0", + "prefixLen":25, + "network":"192.240.211.0\/25", + "version":8867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.211.128", + "prefixLen":25, + "network":"192.240.211.128\/25", + "version":8866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.224.0", + "prefixLen":25, + "network":"192.240.224.0\/25", + "version":8865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.224.128", + "prefixLen":25, + "network":"192.240.224.128\/25", + "version":8864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.225.0", + "prefixLen":25, + "network":"192.240.225.0\/25", + "version":8863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.225.128", + "prefixLen":25, + "network":"192.240.225.128\/25", + "version":8862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.226.0", + "prefixLen":25, + "network":"192.240.226.0\/25", + "version":8861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.226.128", + "prefixLen":25, + "network":"192.240.226.128\/25", + "version":8860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.227.0", + "prefixLen":25, + "network":"192.240.227.0\/25", + "version":8859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.227.128", + "prefixLen":25, + "network":"192.240.227.128\/25", + "version":8858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.240.0", + "prefixLen":25, + "network":"192.240.240.0\/25", + "version":8857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.240.128", + "prefixLen":25, + "network":"192.240.240.128\/25", + "version":8856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.241.0", + "prefixLen":25, + "network":"192.240.241.0\/25", + "version":8855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.241.128", + "prefixLen":25, + "network":"192.240.241.128\/25", + "version":8854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.242.0", + "prefixLen":25, + "network":"192.240.242.0\/25", + "version":8853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.242.128", + "prefixLen":25, + "network":"192.240.242.128\/25", + "version":8852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.243.0", + "prefixLen":25, + "network":"192.240.243.0\/25", + "version":8851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.240.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.240.243.128", + "prefixLen":25, + "network":"192.240.243.128\/25", + "version":8850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64672 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.0.0", + "prefixLen":25, + "network":"192.241.0.0\/25", + "version":8977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.0.128", + "prefixLen":25, + "network":"192.241.0.128\/25", + "version":9104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.1.0", + "prefixLen":25, + "network":"192.241.1.0\/25", + "version":9103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.1.128", + "prefixLen":25, + "network":"192.241.1.128\/25", + "version":9102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.2.0", + "prefixLen":25, + "network":"192.241.2.0\/25", + "version":9101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.2.128", + "prefixLen":25, + "network":"192.241.2.128\/25", + "version":9100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.3.0", + "prefixLen":25, + "network":"192.241.3.0\/25", + "version":9099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.3.128", + "prefixLen":25, + "network":"192.241.3.128\/25", + "version":9098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.16.0", + "prefixLen":25, + "network":"192.241.16.0\/25", + "version":9097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.16.128", + "prefixLen":25, + "network":"192.241.16.128\/25", + "version":9096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.17.0", + "prefixLen":25, + "network":"192.241.17.0\/25", + "version":9095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.17.128", + "prefixLen":25, + "network":"192.241.17.128\/25", + "version":9094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.18.0", + "prefixLen":25, + "network":"192.241.18.0\/25", + "version":9093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.18.128", + "prefixLen":25, + "network":"192.241.18.128\/25", + "version":9092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.19.0", + "prefixLen":25, + "network":"192.241.19.0\/25", + "version":9091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.19.128", + "prefixLen":25, + "network":"192.241.19.128\/25", + "version":9090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.32.0", + "prefixLen":25, + "network":"192.241.32.0\/25", + "version":9089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.32.128", + "prefixLen":25, + "network":"192.241.32.128\/25", + "version":9088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.33.0", + "prefixLen":25, + "network":"192.241.33.0\/25", + "version":9087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.33.128", + "prefixLen":25, + "network":"192.241.33.128\/25", + "version":9086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.34.0", + "prefixLen":25, + "network":"192.241.34.0\/25", + "version":9085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.34.128", + "prefixLen":25, + "network":"192.241.34.128\/25", + "version":9084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.35.0", + "prefixLen":25, + "network":"192.241.35.0\/25", + "version":9083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.35.128", + "prefixLen":25, + "network":"192.241.35.128\/25", + "version":9082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.48.0", + "prefixLen":25, + "network":"192.241.48.0\/25", + "version":9081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.48.128", + "prefixLen":25, + "network":"192.241.48.128\/25", + "version":9080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.49.0", + "prefixLen":25, + "network":"192.241.49.0\/25", + "version":9079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.49.128", + "prefixLen":25, + "network":"192.241.49.128\/25", + "version":9078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.50.0", + "prefixLen":25, + "network":"192.241.50.0\/25", + "version":9077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.50.128", + "prefixLen":25, + "network":"192.241.50.128\/25", + "version":9076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.51.0", + "prefixLen":25, + "network":"192.241.51.0\/25", + "version":9075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.51.128", + "prefixLen":25, + "network":"192.241.51.128\/25", + "version":9074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.64.0", + "prefixLen":25, + "network":"192.241.64.0\/25", + "version":9073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.64.128", + "prefixLen":25, + "network":"192.241.64.128\/25", + "version":9072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.65.0", + "prefixLen":25, + "network":"192.241.65.0\/25", + "version":9071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.65.128", + "prefixLen":25, + "network":"192.241.65.128\/25", + "version":9070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.66.0", + "prefixLen":25, + "network":"192.241.66.0\/25", + "version":9069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.66.128", + "prefixLen":25, + "network":"192.241.66.128\/25", + "version":9068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.67.0", + "prefixLen":25, + "network":"192.241.67.0\/25", + "version":9067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.67.128", + "prefixLen":25, + "network":"192.241.67.128\/25", + "version":9066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.80.0", + "prefixLen":25, + "network":"192.241.80.0\/25", + "version":9065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.80.128", + "prefixLen":25, + "network":"192.241.80.128\/25", + "version":9064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.81.0", + "prefixLen":25, + "network":"192.241.81.0\/25", + "version":9063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.81.128", + "prefixLen":25, + "network":"192.241.81.128\/25", + "version":9062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.82.0", + "prefixLen":25, + "network":"192.241.82.0\/25", + "version":9061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.82.128", + "prefixLen":25, + "network":"192.241.82.128\/25", + "version":9060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.83.0", + "prefixLen":25, + "network":"192.241.83.0\/25", + "version":9059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.83.128", + "prefixLen":25, + "network":"192.241.83.128\/25", + "version":9058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.96.0", + "prefixLen":25, + "network":"192.241.96.0\/25", + "version":9057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.96.128", + "prefixLen":25, + "network":"192.241.96.128\/25", + "version":9056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.97.0", + "prefixLen":25, + "network":"192.241.97.0\/25", + "version":9055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.97.128", + "prefixLen":25, + "network":"192.241.97.128\/25", + "version":9054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.98.0", + "prefixLen":25, + "network":"192.241.98.0\/25", + "version":9053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.98.128", + "prefixLen":25, + "network":"192.241.98.128\/25", + "version":9052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.99.0", + "prefixLen":25, + "network":"192.241.99.0\/25", + "version":9051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.99.128", + "prefixLen":25, + "network":"192.241.99.128\/25", + "version":9050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.112.0", + "prefixLen":25, + "network":"192.241.112.0\/25", + "version":9049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.112.128", + "prefixLen":25, + "network":"192.241.112.128\/25", + "version":9048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.113.0", + "prefixLen":25, + "network":"192.241.113.0\/25", + "version":9047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.113.128", + "prefixLen":25, + "network":"192.241.113.128\/25", + "version":9046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.114.0", + "prefixLen":25, + "network":"192.241.114.0\/25", + "version":9045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.114.128", + "prefixLen":25, + "network":"192.241.114.128\/25", + "version":9044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.115.0", + "prefixLen":25, + "network":"192.241.115.0\/25", + "version":9043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.115.128", + "prefixLen":25, + "network":"192.241.115.128\/25", + "version":9042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.128.0", + "prefixLen":25, + "network":"192.241.128.0\/25", + "version":9041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.128.128", + "prefixLen":25, + "network":"192.241.128.128\/25", + "version":9040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.129.0", + "prefixLen":25, + "network":"192.241.129.0\/25", + "version":9039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.129.128", + "prefixLen":25, + "network":"192.241.129.128\/25", + "version":9038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.130.0", + "prefixLen":25, + "network":"192.241.130.0\/25", + "version":9037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.130.128", + "prefixLen":25, + "network":"192.241.130.128\/25", + "version":9036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.131.0", + "prefixLen":25, + "network":"192.241.131.0\/25", + "version":9035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.131.128", + "prefixLen":25, + "network":"192.241.131.128\/25", + "version":9034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.144.0", + "prefixLen":25, + "network":"192.241.144.0\/25", + "version":9033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.144.128", + "prefixLen":25, + "network":"192.241.144.128\/25", + "version":9032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.145.0", + "prefixLen":25, + "network":"192.241.145.0\/25", + "version":9031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.145.128", + "prefixLen":25, + "network":"192.241.145.128\/25", + "version":9030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.146.0", + "prefixLen":25, + "network":"192.241.146.0\/25", + "version":9029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.146.128", + "prefixLen":25, + "network":"192.241.146.128\/25", + "version":9028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.147.0", + "prefixLen":25, + "network":"192.241.147.0\/25", + "version":9027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.147.128", + "prefixLen":25, + "network":"192.241.147.128\/25", + "version":9026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.160.0", + "prefixLen":25, + "network":"192.241.160.0\/25", + "version":9025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.160.128", + "prefixLen":25, + "network":"192.241.160.128\/25", + "version":9024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.161.0", + "prefixLen":25, + "network":"192.241.161.0\/25", + "version":9023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.161.128", + "prefixLen":25, + "network":"192.241.161.128\/25", + "version":9022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.162.0", + "prefixLen":25, + "network":"192.241.162.0\/25", + "version":9021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.162.128", + "prefixLen":25, + "network":"192.241.162.128\/25", + "version":9020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.163.0", + "prefixLen":25, + "network":"192.241.163.0\/25", + "version":9019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.163.128", + "prefixLen":25, + "network":"192.241.163.128\/25", + "version":9018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.176.0", + "prefixLen":25, + "network":"192.241.176.0\/25", + "version":9017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.176.128", + "prefixLen":25, + "network":"192.241.176.128\/25", + "version":9016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.177.0", + "prefixLen":25, + "network":"192.241.177.0\/25", + "version":9015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.177.128", + "prefixLen":25, + "network":"192.241.177.128\/25", + "version":9014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.178.0", + "prefixLen":25, + "network":"192.241.178.0\/25", + "version":9013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.178.128", + "prefixLen":25, + "network":"192.241.178.128\/25", + "version":9012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.179.0", + "prefixLen":25, + "network":"192.241.179.0\/25", + "version":9011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.179.128", + "prefixLen":25, + "network":"192.241.179.128\/25", + "version":9010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.192.0", + "prefixLen":25, + "network":"192.241.192.0\/25", + "version":9009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.192.128", + "prefixLen":25, + "network":"192.241.192.128\/25", + "version":9008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.193.0", + "prefixLen":25, + "network":"192.241.193.0\/25", + "version":9007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.193.128", + "prefixLen":25, + "network":"192.241.193.128\/25", + "version":9006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.194.0", + "prefixLen":25, + "network":"192.241.194.0\/25", + "version":9005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.194.128", + "prefixLen":25, + "network":"192.241.194.128\/25", + "version":9004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.195.0", + "prefixLen":25, + "network":"192.241.195.0\/25", + "version":9003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.195.128", + "prefixLen":25, + "network":"192.241.195.128\/25", + "version":9002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.208.0", + "prefixLen":25, + "network":"192.241.208.0\/25", + "version":9001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.208.128", + "prefixLen":25, + "network":"192.241.208.128\/25", + "version":9000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.209.0", + "prefixLen":25, + "network":"192.241.209.0\/25", + "version":8999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.209.128", + "prefixLen":25, + "network":"192.241.209.128\/25", + "version":8998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.210.0", + "prefixLen":25, + "network":"192.241.210.0\/25", + "version":8997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.210.128", + "prefixLen":25, + "network":"192.241.210.128\/25", + "version":8996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.211.0", + "prefixLen":25, + "network":"192.241.211.0\/25", + "version":8995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.211.128", + "prefixLen":25, + "network":"192.241.211.128\/25", + "version":8994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.224.0", + "prefixLen":25, + "network":"192.241.224.0\/25", + "version":8993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.224.128", + "prefixLen":25, + "network":"192.241.224.128\/25", + "version":8992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.225.0", + "prefixLen":25, + "network":"192.241.225.0\/25", + "version":8991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.225.128", + "prefixLen":25, + "network":"192.241.225.128\/25", + "version":8990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.226.0", + "prefixLen":25, + "network":"192.241.226.0\/25", + "version":8989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.226.128", + "prefixLen":25, + "network":"192.241.226.128\/25", + "version":8988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.227.0", + "prefixLen":25, + "network":"192.241.227.0\/25", + "version":8987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.227.128", + "prefixLen":25, + "network":"192.241.227.128\/25", + "version":8986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.240.0", + "prefixLen":25, + "network":"192.241.240.0\/25", + "version":8985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.240.128", + "prefixLen":25, + "network":"192.241.240.128\/25", + "version":8984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.241.0", + "prefixLen":25, + "network":"192.241.241.0\/25", + "version":8983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.241.128", + "prefixLen":25, + "network":"192.241.241.128\/25", + "version":8982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.242.0", + "prefixLen":25, + "network":"192.241.242.0\/25", + "version":8981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.242.128", + "prefixLen":25, + "network":"192.241.242.128\/25", + "version":8980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.243.0", + "prefixLen":25, + "network":"192.241.243.0\/25", + "version":8979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.241.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.241.243.128", + "prefixLen":25, + "network":"192.241.243.128\/25", + "version":8978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64673 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.0.0", + "prefixLen":25, + "network":"192.242.0.0\/25", + "version":9105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.0.128", + "prefixLen":25, + "network":"192.242.0.128\/25", + "version":9232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.1.0", + "prefixLen":25, + "network":"192.242.1.0\/25", + "version":9231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.1.128", + "prefixLen":25, + "network":"192.242.1.128\/25", + "version":9230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.2.0", + "prefixLen":25, + "network":"192.242.2.0\/25", + "version":9229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.2.128", + "prefixLen":25, + "network":"192.242.2.128\/25", + "version":9228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.3.0", + "prefixLen":25, + "network":"192.242.3.0\/25", + "version":9227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.3.128", + "prefixLen":25, + "network":"192.242.3.128\/25", + "version":9226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.16.0", + "prefixLen":25, + "network":"192.242.16.0\/25", + "version":9225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.16.128", + "prefixLen":25, + "network":"192.242.16.128\/25", + "version":9224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.17.0", + "prefixLen":25, + "network":"192.242.17.0\/25", + "version":9223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.17.128", + "prefixLen":25, + "network":"192.242.17.128\/25", + "version":9222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.18.0", + "prefixLen":25, + "network":"192.242.18.0\/25", + "version":9221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.18.128", + "prefixLen":25, + "network":"192.242.18.128\/25", + "version":9220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.19.0", + "prefixLen":25, + "network":"192.242.19.0\/25", + "version":9219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.19.128", + "prefixLen":25, + "network":"192.242.19.128\/25", + "version":9218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.32.0", + "prefixLen":25, + "network":"192.242.32.0\/25", + "version":9217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.32.128", + "prefixLen":25, + "network":"192.242.32.128\/25", + "version":9216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.33.0", + "prefixLen":25, + "network":"192.242.33.0\/25", + "version":9215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.33.128", + "prefixLen":25, + "network":"192.242.33.128\/25", + "version":9214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.34.0", + "prefixLen":25, + "network":"192.242.34.0\/25", + "version":9213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.34.128", + "prefixLen":25, + "network":"192.242.34.128\/25", + "version":9212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.35.0", + "prefixLen":25, + "network":"192.242.35.0\/25", + "version":9211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.35.128", + "prefixLen":25, + "network":"192.242.35.128\/25", + "version":9210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.48.0", + "prefixLen":25, + "network":"192.242.48.0\/25", + "version":9209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.48.128", + "prefixLen":25, + "network":"192.242.48.128\/25", + "version":9208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.49.0", + "prefixLen":25, + "network":"192.242.49.0\/25", + "version":9207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.49.128", + "prefixLen":25, + "network":"192.242.49.128\/25", + "version":9206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.50.0", + "prefixLen":25, + "network":"192.242.50.0\/25", + "version":9205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.50.128", + "prefixLen":25, + "network":"192.242.50.128\/25", + "version":9204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.51.0", + "prefixLen":25, + "network":"192.242.51.0\/25", + "version":9203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.51.128", + "prefixLen":25, + "network":"192.242.51.128\/25", + "version":9202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.64.0", + "prefixLen":25, + "network":"192.242.64.0\/25", + "version":9201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.64.128", + "prefixLen":25, + "network":"192.242.64.128\/25", + "version":9200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.65.0", + "prefixLen":25, + "network":"192.242.65.0\/25", + "version":9199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.65.128", + "prefixLen":25, + "network":"192.242.65.128\/25", + "version":9198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.66.0", + "prefixLen":25, + "network":"192.242.66.0\/25", + "version":9197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.66.128", + "prefixLen":25, + "network":"192.242.66.128\/25", + "version":9196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.67.0", + "prefixLen":25, + "network":"192.242.67.0\/25", + "version":9195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.67.128", + "prefixLen":25, + "network":"192.242.67.128\/25", + "version":9194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.80.0", + "prefixLen":25, + "network":"192.242.80.0\/25", + "version":9193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.80.128", + "prefixLen":25, + "network":"192.242.80.128\/25", + "version":9192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.81.0", + "prefixLen":25, + "network":"192.242.81.0\/25", + "version":9191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.81.128", + "prefixLen":25, + "network":"192.242.81.128\/25", + "version":9190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.82.0", + "prefixLen":25, + "network":"192.242.82.0\/25", + "version":9189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.82.128", + "prefixLen":25, + "network":"192.242.82.128\/25", + "version":9188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.83.0", + "prefixLen":25, + "network":"192.242.83.0\/25", + "version":9187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.83.128", + "prefixLen":25, + "network":"192.242.83.128\/25", + "version":9186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.96.0", + "prefixLen":25, + "network":"192.242.96.0\/25", + "version":9185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.96.128", + "prefixLen":25, + "network":"192.242.96.128\/25", + "version":9184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.97.0", + "prefixLen":25, + "network":"192.242.97.0\/25", + "version":9183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.97.128", + "prefixLen":25, + "network":"192.242.97.128\/25", + "version":9182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.98.0", + "prefixLen":25, + "network":"192.242.98.0\/25", + "version":9181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.98.128", + "prefixLen":25, + "network":"192.242.98.128\/25", + "version":9180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.99.0", + "prefixLen":25, + "network":"192.242.99.0\/25", + "version":9179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.99.128", + "prefixLen":25, + "network":"192.242.99.128\/25", + "version":9178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.112.0", + "prefixLen":25, + "network":"192.242.112.0\/25", + "version":9177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.112.128", + "prefixLen":25, + "network":"192.242.112.128\/25", + "version":9176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.113.0", + "prefixLen":25, + "network":"192.242.113.0\/25", + "version":9175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.113.128", + "prefixLen":25, + "network":"192.242.113.128\/25", + "version":9174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.114.0", + "prefixLen":25, + "network":"192.242.114.0\/25", + "version":9173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.114.128", + "prefixLen":25, + "network":"192.242.114.128\/25", + "version":9172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.115.0", + "prefixLen":25, + "network":"192.242.115.0\/25", + "version":9171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.115.128", + "prefixLen":25, + "network":"192.242.115.128\/25", + "version":9170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.128.0", + "prefixLen":25, + "network":"192.242.128.0\/25", + "version":9169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.128.128", + "prefixLen":25, + "network":"192.242.128.128\/25", + "version":9168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.129.0", + "prefixLen":25, + "network":"192.242.129.0\/25", + "version":9167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.129.128", + "prefixLen":25, + "network":"192.242.129.128\/25", + "version":9166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.130.0", + "prefixLen":25, + "network":"192.242.130.0\/25", + "version":9165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.130.128", + "prefixLen":25, + "network":"192.242.130.128\/25", + "version":9164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.131.0", + "prefixLen":25, + "network":"192.242.131.0\/25", + "version":9163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.131.128", + "prefixLen":25, + "network":"192.242.131.128\/25", + "version":9162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.144.0", + "prefixLen":25, + "network":"192.242.144.0\/25", + "version":9161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.144.128", + "prefixLen":25, + "network":"192.242.144.128\/25", + "version":9160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.145.0", + "prefixLen":25, + "network":"192.242.145.0\/25", + "version":9159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.145.128", + "prefixLen":25, + "network":"192.242.145.128\/25", + "version":9158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.146.0", + "prefixLen":25, + "network":"192.242.146.0\/25", + "version":9157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.146.128", + "prefixLen":25, + "network":"192.242.146.128\/25", + "version":9156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.147.0", + "prefixLen":25, + "network":"192.242.147.0\/25", + "version":9155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.147.128", + "prefixLen":25, + "network":"192.242.147.128\/25", + "version":9154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.160.0", + "prefixLen":25, + "network":"192.242.160.0\/25", + "version":9153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.160.128", + "prefixLen":25, + "network":"192.242.160.128\/25", + "version":9152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.161.0", + "prefixLen":25, + "network":"192.242.161.0\/25", + "version":9151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.161.128", + "prefixLen":25, + "network":"192.242.161.128\/25", + "version":9150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.162.0", + "prefixLen":25, + "network":"192.242.162.0\/25", + "version":9149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.162.128", + "prefixLen":25, + "network":"192.242.162.128\/25", + "version":9148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.163.0", + "prefixLen":25, + "network":"192.242.163.0\/25", + "version":9147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.163.128", + "prefixLen":25, + "network":"192.242.163.128\/25", + "version":9146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.176.0", + "prefixLen":25, + "network":"192.242.176.0\/25", + "version":9145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.176.128", + "prefixLen":25, + "network":"192.242.176.128\/25", + "version":9144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.177.0", + "prefixLen":25, + "network":"192.242.177.0\/25", + "version":9143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.177.128", + "prefixLen":25, + "network":"192.242.177.128\/25", + "version":9142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.178.0", + "prefixLen":25, + "network":"192.242.178.0\/25", + "version":9141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.178.128", + "prefixLen":25, + "network":"192.242.178.128\/25", + "version":9140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.179.0", + "prefixLen":25, + "network":"192.242.179.0\/25", + "version":9139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.179.128", + "prefixLen":25, + "network":"192.242.179.128\/25", + "version":9138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.192.0", + "prefixLen":25, + "network":"192.242.192.0\/25", + "version":9137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.192.128", + "prefixLen":25, + "network":"192.242.192.128\/25", + "version":9136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.193.0", + "prefixLen":25, + "network":"192.242.193.0\/25", + "version":9135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.193.128", + "prefixLen":25, + "network":"192.242.193.128\/25", + "version":9134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.194.0", + "prefixLen":25, + "network":"192.242.194.0\/25", + "version":9133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.194.128", + "prefixLen":25, + "network":"192.242.194.128\/25", + "version":9132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.195.0", + "prefixLen":25, + "network":"192.242.195.0\/25", + "version":9131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.195.128", + "prefixLen":25, + "network":"192.242.195.128\/25", + "version":9130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.208.0", + "prefixLen":25, + "network":"192.242.208.0\/25", + "version":9129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.208.128", + "prefixLen":25, + "network":"192.242.208.128\/25", + "version":9128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.209.0", + "prefixLen":25, + "network":"192.242.209.0\/25", + "version":9127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.209.128", + "prefixLen":25, + "network":"192.242.209.128\/25", + "version":9126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.210.0", + "prefixLen":25, + "network":"192.242.210.0\/25", + "version":9125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.210.128", + "prefixLen":25, + "network":"192.242.210.128\/25", + "version":9124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.211.0", + "prefixLen":25, + "network":"192.242.211.0\/25", + "version":9123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.211.128", + "prefixLen":25, + "network":"192.242.211.128\/25", + "version":9122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.224.0", + "prefixLen":25, + "network":"192.242.224.0\/25", + "version":9121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.224.128", + "prefixLen":25, + "network":"192.242.224.128\/25", + "version":9120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.225.0", + "prefixLen":25, + "network":"192.242.225.0\/25", + "version":9119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.225.128", + "prefixLen":25, + "network":"192.242.225.128\/25", + "version":9118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.226.0", + "prefixLen":25, + "network":"192.242.226.0\/25", + "version":9117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.226.128", + "prefixLen":25, + "network":"192.242.226.128\/25", + "version":9116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.227.0", + "prefixLen":25, + "network":"192.242.227.0\/25", + "version":9115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.227.128", + "prefixLen":25, + "network":"192.242.227.128\/25", + "version":9114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.240.0", + "prefixLen":25, + "network":"192.242.240.0\/25", + "version":9113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.240.128", + "prefixLen":25, + "network":"192.242.240.128\/25", + "version":9112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.241.0", + "prefixLen":25, + "network":"192.242.241.0\/25", + "version":9111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.241.128", + "prefixLen":25, + "network":"192.242.241.128\/25", + "version":9110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.242.0", + "prefixLen":25, + "network":"192.242.242.0\/25", + "version":9109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.242.128", + "prefixLen":25, + "network":"192.242.242.128\/25", + "version":9108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.243.0", + "prefixLen":25, + "network":"192.242.243.0\/25", + "version":9107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.242.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.242.243.128", + "prefixLen":25, + "network":"192.242.243.128\/25", + "version":9106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64674 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.0.0", + "prefixLen":25, + "network":"192.243.0.0\/25", + "version":9233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.0.128", + "prefixLen":25, + "network":"192.243.0.128\/25", + "version":9360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.1.0", + "prefixLen":25, + "network":"192.243.1.0\/25", + "version":9359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.1.128", + "prefixLen":25, + "network":"192.243.1.128\/25", + "version":9358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.2.0", + "prefixLen":25, + "network":"192.243.2.0\/25", + "version":9357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.2.128", + "prefixLen":25, + "network":"192.243.2.128\/25", + "version":9356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.3.0", + "prefixLen":25, + "network":"192.243.3.0\/25", + "version":9355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.3.128", + "prefixLen":25, + "network":"192.243.3.128\/25", + "version":9354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.16.0", + "prefixLen":25, + "network":"192.243.16.0\/25", + "version":9353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.16.128", + "prefixLen":25, + "network":"192.243.16.128\/25", + "version":9352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.17.0", + "prefixLen":25, + "network":"192.243.17.0\/25", + "version":9351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.17.128", + "prefixLen":25, + "network":"192.243.17.128\/25", + "version":9350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.18.0", + "prefixLen":25, + "network":"192.243.18.0\/25", + "version":9349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.18.128", + "prefixLen":25, + "network":"192.243.18.128\/25", + "version":9348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.19.0", + "prefixLen":25, + "network":"192.243.19.0\/25", + "version":9347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.19.128", + "prefixLen":25, + "network":"192.243.19.128\/25", + "version":9346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.32.0", + "prefixLen":25, + "network":"192.243.32.0\/25", + "version":9345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.32.128", + "prefixLen":25, + "network":"192.243.32.128\/25", + "version":9344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.33.0", + "prefixLen":25, + "network":"192.243.33.0\/25", + "version":9343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.33.128", + "prefixLen":25, + "network":"192.243.33.128\/25", + "version":9342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.34.0", + "prefixLen":25, + "network":"192.243.34.0\/25", + "version":9341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.34.128", + "prefixLen":25, + "network":"192.243.34.128\/25", + "version":9340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.35.0", + "prefixLen":25, + "network":"192.243.35.0\/25", + "version":9339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.35.128", + "prefixLen":25, + "network":"192.243.35.128\/25", + "version":9338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.48.0", + "prefixLen":25, + "network":"192.243.48.0\/25", + "version":9337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.48.128", + "prefixLen":25, + "network":"192.243.48.128\/25", + "version":9336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.49.0", + "prefixLen":25, + "network":"192.243.49.0\/25", + "version":9335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.49.128", + "prefixLen":25, + "network":"192.243.49.128\/25", + "version":9334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.50.0", + "prefixLen":25, + "network":"192.243.50.0\/25", + "version":9333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.50.128", + "prefixLen":25, + "network":"192.243.50.128\/25", + "version":9332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.51.0", + "prefixLen":25, + "network":"192.243.51.0\/25", + "version":9331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.51.128", + "prefixLen":25, + "network":"192.243.51.128\/25", + "version":9330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.64.0", + "prefixLen":25, + "network":"192.243.64.0\/25", + "version":9329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.64.128", + "prefixLen":25, + "network":"192.243.64.128\/25", + "version":9328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.65.0", + "prefixLen":25, + "network":"192.243.65.0\/25", + "version":9327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.65.128", + "prefixLen":25, + "network":"192.243.65.128\/25", + "version":9326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.66.0", + "prefixLen":25, + "network":"192.243.66.0\/25", + "version":9325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.66.128", + "prefixLen":25, + "network":"192.243.66.128\/25", + "version":9324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.67.0", + "prefixLen":25, + "network":"192.243.67.0\/25", + "version":9323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.67.128", + "prefixLen":25, + "network":"192.243.67.128\/25", + "version":9322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.80.0", + "prefixLen":25, + "network":"192.243.80.0\/25", + "version":9321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.80.128", + "prefixLen":25, + "network":"192.243.80.128\/25", + "version":9320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.81.0", + "prefixLen":25, + "network":"192.243.81.0\/25", + "version":9319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.81.128", + "prefixLen":25, + "network":"192.243.81.128\/25", + "version":9318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.82.0", + "prefixLen":25, + "network":"192.243.82.0\/25", + "version":9317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.82.128", + "prefixLen":25, + "network":"192.243.82.128\/25", + "version":9316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.83.0", + "prefixLen":25, + "network":"192.243.83.0\/25", + "version":9315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.83.128", + "prefixLen":25, + "network":"192.243.83.128\/25", + "version":9314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.96.0", + "prefixLen":25, + "network":"192.243.96.0\/25", + "version":9313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.96.128", + "prefixLen":25, + "network":"192.243.96.128\/25", + "version":9312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.97.0", + "prefixLen":25, + "network":"192.243.97.0\/25", + "version":9311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.97.128", + "prefixLen":25, + "network":"192.243.97.128\/25", + "version":9310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.98.0", + "prefixLen":25, + "network":"192.243.98.0\/25", + "version":9309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.98.128", + "prefixLen":25, + "network":"192.243.98.128\/25", + "version":9308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.99.0", + "prefixLen":25, + "network":"192.243.99.0\/25", + "version":9307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.99.128", + "prefixLen":25, + "network":"192.243.99.128\/25", + "version":9306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.112.0", + "prefixLen":25, + "network":"192.243.112.0\/25", + "version":9305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.112.128", + "prefixLen":25, + "network":"192.243.112.128\/25", + "version":9304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.113.0", + "prefixLen":25, + "network":"192.243.113.0\/25", + "version":9303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.113.128", + "prefixLen":25, + "network":"192.243.113.128\/25", + "version":9302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.114.0", + "prefixLen":25, + "network":"192.243.114.0\/25", + "version":9301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.114.128", + "prefixLen":25, + "network":"192.243.114.128\/25", + "version":9300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.115.0", + "prefixLen":25, + "network":"192.243.115.0\/25", + "version":9299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.115.128", + "prefixLen":25, + "network":"192.243.115.128\/25", + "version":9298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.128.0", + "prefixLen":25, + "network":"192.243.128.0\/25", + "version":9297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.128.128", + "prefixLen":25, + "network":"192.243.128.128\/25", + "version":9296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.129.0", + "prefixLen":25, + "network":"192.243.129.0\/25", + "version":9295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.129.128", + "prefixLen":25, + "network":"192.243.129.128\/25", + "version":9294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.130.0", + "prefixLen":25, + "network":"192.243.130.0\/25", + "version":9293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.130.128", + "prefixLen":25, + "network":"192.243.130.128\/25", + "version":9292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.131.0", + "prefixLen":25, + "network":"192.243.131.0\/25", + "version":9291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.131.128", + "prefixLen":25, + "network":"192.243.131.128\/25", + "version":9290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.144.0", + "prefixLen":25, + "network":"192.243.144.0\/25", + "version":9289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.144.128", + "prefixLen":25, + "network":"192.243.144.128\/25", + "version":9288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.145.0", + "prefixLen":25, + "network":"192.243.145.0\/25", + "version":9287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.145.128", + "prefixLen":25, + "network":"192.243.145.128\/25", + "version":9286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.146.0", + "prefixLen":25, + "network":"192.243.146.0\/25", + "version":9285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.146.128", + "prefixLen":25, + "network":"192.243.146.128\/25", + "version":9284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.147.0", + "prefixLen":25, + "network":"192.243.147.0\/25", + "version":9283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.147.128", + "prefixLen":25, + "network":"192.243.147.128\/25", + "version":9282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.160.0", + "prefixLen":25, + "network":"192.243.160.0\/25", + "version":9281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.160.128", + "prefixLen":25, + "network":"192.243.160.128\/25", + "version":9280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.161.0", + "prefixLen":25, + "network":"192.243.161.0\/25", + "version":9279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.161.128", + "prefixLen":25, + "network":"192.243.161.128\/25", + "version":9278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.162.0", + "prefixLen":25, + "network":"192.243.162.0\/25", + "version":9277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.162.128", + "prefixLen":25, + "network":"192.243.162.128\/25", + "version":9276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.163.0", + "prefixLen":25, + "network":"192.243.163.0\/25", + "version":9275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.163.128", + "prefixLen":25, + "network":"192.243.163.128\/25", + "version":9274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.176.0", + "prefixLen":25, + "network":"192.243.176.0\/25", + "version":9273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.176.128", + "prefixLen":25, + "network":"192.243.176.128\/25", + "version":9272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.177.0", + "prefixLen":25, + "network":"192.243.177.0\/25", + "version":9271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.177.128", + "prefixLen":25, + "network":"192.243.177.128\/25", + "version":9270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.178.0", + "prefixLen":25, + "network":"192.243.178.0\/25", + "version":9269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.178.128", + "prefixLen":25, + "network":"192.243.178.128\/25", + "version":9268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.179.0", + "prefixLen":25, + "network":"192.243.179.0\/25", + "version":9267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.179.128", + "prefixLen":25, + "network":"192.243.179.128\/25", + "version":9266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.192.0", + "prefixLen":25, + "network":"192.243.192.0\/25", + "version":9265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.192.128", + "prefixLen":25, + "network":"192.243.192.128\/25", + "version":9264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.193.0", + "prefixLen":25, + "network":"192.243.193.0\/25", + "version":9263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.193.128", + "prefixLen":25, + "network":"192.243.193.128\/25", + "version":9262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.194.0", + "prefixLen":25, + "network":"192.243.194.0\/25", + "version":9261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.194.128", + "prefixLen":25, + "network":"192.243.194.128\/25", + "version":9260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.195.0", + "prefixLen":25, + "network":"192.243.195.0\/25", + "version":9259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.195.128", + "prefixLen":25, + "network":"192.243.195.128\/25", + "version":9258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.208.0", + "prefixLen":25, + "network":"192.243.208.0\/25", + "version":9257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.208.128", + "prefixLen":25, + "network":"192.243.208.128\/25", + "version":9256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.209.0", + "prefixLen":25, + "network":"192.243.209.0\/25", + "version":9255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.209.128", + "prefixLen":25, + "network":"192.243.209.128\/25", + "version":9254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.210.0", + "prefixLen":25, + "network":"192.243.210.0\/25", + "version":9253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.210.128", + "prefixLen":25, + "network":"192.243.210.128\/25", + "version":9252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.211.0", + "prefixLen":25, + "network":"192.243.211.0\/25", + "version":9251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.211.128", + "prefixLen":25, + "network":"192.243.211.128\/25", + "version":9250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.224.0", + "prefixLen":25, + "network":"192.243.224.0\/25", + "version":9249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.224.128", + "prefixLen":25, + "network":"192.243.224.128\/25", + "version":9248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.225.0", + "prefixLen":25, + "network":"192.243.225.0\/25", + "version":9247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.225.128", + "prefixLen":25, + "network":"192.243.225.128\/25", + "version":9246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.226.0", + "prefixLen":25, + "network":"192.243.226.0\/25", + "version":9245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.226.128", + "prefixLen":25, + "network":"192.243.226.128\/25", + "version":9244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.227.0", + "prefixLen":25, + "network":"192.243.227.0\/25", + "version":9243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.227.128", + "prefixLen":25, + "network":"192.243.227.128\/25", + "version":9242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.240.0", + "prefixLen":25, + "network":"192.243.240.0\/25", + "version":9241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.240.128", + "prefixLen":25, + "network":"192.243.240.128\/25", + "version":9240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.241.0", + "prefixLen":25, + "network":"192.243.241.0\/25", + "version":9239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.241.128", + "prefixLen":25, + "network":"192.243.241.128\/25", + "version":9238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.242.0", + "prefixLen":25, + "network":"192.243.242.0\/25", + "version":9237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.242.128", + "prefixLen":25, + "network":"192.243.242.128\/25", + "version":9236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.243.0", + "prefixLen":25, + "network":"192.243.243.0\/25", + "version":9235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.243.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.243.243.128", + "prefixLen":25, + "network":"192.243.243.128\/25", + "version":9234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64675 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.0.0", + "prefixLen":25, + "network":"192.244.0.0\/25", + "version":9361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.0.128", + "prefixLen":25, + "network":"192.244.0.128\/25", + "version":9488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.1.0", + "prefixLen":25, + "network":"192.244.1.0\/25", + "version":9487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.1.128", + "prefixLen":25, + "network":"192.244.1.128\/25", + "version":9486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.2.0", + "prefixLen":25, + "network":"192.244.2.0\/25", + "version":9485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.2.128", + "prefixLen":25, + "network":"192.244.2.128\/25", + "version":9484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.3.0", + "prefixLen":25, + "network":"192.244.3.0\/25", + "version":9483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.3.128", + "prefixLen":25, + "network":"192.244.3.128\/25", + "version":9482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.16.0", + "prefixLen":25, + "network":"192.244.16.0\/25", + "version":9481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.16.128", + "prefixLen":25, + "network":"192.244.16.128\/25", + "version":9480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.17.0", + "prefixLen":25, + "network":"192.244.17.0\/25", + "version":9479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.17.128", + "prefixLen":25, + "network":"192.244.17.128\/25", + "version":9478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.18.0", + "prefixLen":25, + "network":"192.244.18.0\/25", + "version":9477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.18.128", + "prefixLen":25, + "network":"192.244.18.128\/25", + "version":9476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.19.0", + "prefixLen":25, + "network":"192.244.19.0\/25", + "version":9475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.19.128", + "prefixLen":25, + "network":"192.244.19.128\/25", + "version":9474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.32.0", + "prefixLen":25, + "network":"192.244.32.0\/25", + "version":9473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.32.128", + "prefixLen":25, + "network":"192.244.32.128\/25", + "version":9472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.33.0", + "prefixLen":25, + "network":"192.244.33.0\/25", + "version":9471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.33.128", + "prefixLen":25, + "network":"192.244.33.128\/25", + "version":9470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.34.0", + "prefixLen":25, + "network":"192.244.34.0\/25", + "version":9469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.34.128", + "prefixLen":25, + "network":"192.244.34.128\/25", + "version":9468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.35.0", + "prefixLen":25, + "network":"192.244.35.0\/25", + "version":9467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.35.128", + "prefixLen":25, + "network":"192.244.35.128\/25", + "version":9466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.48.0", + "prefixLen":25, + "network":"192.244.48.0\/25", + "version":9465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.48.128", + "prefixLen":25, + "network":"192.244.48.128\/25", + "version":9464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.49.0", + "prefixLen":25, + "network":"192.244.49.0\/25", + "version":9463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.49.128", + "prefixLen":25, + "network":"192.244.49.128\/25", + "version":9462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.50.0", + "prefixLen":25, + "network":"192.244.50.0\/25", + "version":9461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.50.128", + "prefixLen":25, + "network":"192.244.50.128\/25", + "version":9460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.51.0", + "prefixLen":25, + "network":"192.244.51.0\/25", + "version":9459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.51.128", + "prefixLen":25, + "network":"192.244.51.128\/25", + "version":9458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.64.0", + "prefixLen":25, + "network":"192.244.64.0\/25", + "version":9457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.64.128", + "prefixLen":25, + "network":"192.244.64.128\/25", + "version":9456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.65.0", + "prefixLen":25, + "network":"192.244.65.0\/25", + "version":9455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.65.128", + "prefixLen":25, + "network":"192.244.65.128\/25", + "version":9454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.66.0", + "prefixLen":25, + "network":"192.244.66.0\/25", + "version":9453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.66.128", + "prefixLen":25, + "network":"192.244.66.128\/25", + "version":9452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.67.0", + "prefixLen":25, + "network":"192.244.67.0\/25", + "version":9451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.67.128", + "prefixLen":25, + "network":"192.244.67.128\/25", + "version":9450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.80.0", + "prefixLen":25, + "network":"192.244.80.0\/25", + "version":9449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.80.128", + "prefixLen":25, + "network":"192.244.80.128\/25", + "version":9448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.81.0", + "prefixLen":25, + "network":"192.244.81.0\/25", + "version":9447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.81.128", + "prefixLen":25, + "network":"192.244.81.128\/25", + "version":9446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.82.0", + "prefixLen":25, + "network":"192.244.82.0\/25", + "version":9445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.82.128", + "prefixLen":25, + "network":"192.244.82.128\/25", + "version":9444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.83.0", + "prefixLen":25, + "network":"192.244.83.0\/25", + "version":9443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.83.128", + "prefixLen":25, + "network":"192.244.83.128\/25", + "version":9442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.96.0", + "prefixLen":25, + "network":"192.244.96.0\/25", + "version":9441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.96.128", + "prefixLen":25, + "network":"192.244.96.128\/25", + "version":9440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.97.0", + "prefixLen":25, + "network":"192.244.97.0\/25", + "version":9439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.97.128", + "prefixLen":25, + "network":"192.244.97.128\/25", + "version":9438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.98.0", + "prefixLen":25, + "network":"192.244.98.0\/25", + "version":9437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.98.128", + "prefixLen":25, + "network":"192.244.98.128\/25", + "version":9436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.99.0", + "prefixLen":25, + "network":"192.244.99.0\/25", + "version":9435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.99.128", + "prefixLen":25, + "network":"192.244.99.128\/25", + "version":9434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.112.0", + "prefixLen":25, + "network":"192.244.112.0\/25", + "version":9433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.112.128", + "prefixLen":25, + "network":"192.244.112.128\/25", + "version":9432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.113.0", + "prefixLen":25, + "network":"192.244.113.0\/25", + "version":9431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.113.128", + "prefixLen":25, + "network":"192.244.113.128\/25", + "version":9430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.114.0", + "prefixLen":25, + "network":"192.244.114.0\/25", + "version":9429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.114.128", + "prefixLen":25, + "network":"192.244.114.128\/25", + "version":9428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.115.0", + "prefixLen":25, + "network":"192.244.115.0\/25", + "version":9427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.115.128", + "prefixLen":25, + "network":"192.244.115.128\/25", + "version":9426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.128.0", + "prefixLen":25, + "network":"192.244.128.0\/25", + "version":9425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.128.128", + "prefixLen":25, + "network":"192.244.128.128\/25", + "version":9424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.129.0", + "prefixLen":25, + "network":"192.244.129.0\/25", + "version":9423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.129.128", + "prefixLen":25, + "network":"192.244.129.128\/25", + "version":9422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.130.0", + "prefixLen":25, + "network":"192.244.130.0\/25", + "version":9421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.130.128", + "prefixLen":25, + "network":"192.244.130.128\/25", + "version":9420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.131.0", + "prefixLen":25, + "network":"192.244.131.0\/25", + "version":9419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.131.128", + "prefixLen":25, + "network":"192.244.131.128\/25", + "version":9418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.144.0", + "prefixLen":25, + "network":"192.244.144.0\/25", + "version":9417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.144.128", + "prefixLen":25, + "network":"192.244.144.128\/25", + "version":9416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.145.0", + "prefixLen":25, + "network":"192.244.145.0\/25", + "version":9415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.145.128", + "prefixLen":25, + "network":"192.244.145.128\/25", + "version":9414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.146.0", + "prefixLen":25, + "network":"192.244.146.0\/25", + "version":9413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.146.128", + "prefixLen":25, + "network":"192.244.146.128\/25", + "version":9412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.147.0", + "prefixLen":25, + "network":"192.244.147.0\/25", + "version":9411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.147.128", + "prefixLen":25, + "network":"192.244.147.128\/25", + "version":9410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.160.0", + "prefixLen":25, + "network":"192.244.160.0\/25", + "version":9409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.160.128", + "prefixLen":25, + "network":"192.244.160.128\/25", + "version":9408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.161.0", + "prefixLen":25, + "network":"192.244.161.0\/25", + "version":9407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.161.128", + "prefixLen":25, + "network":"192.244.161.128\/25", + "version":9406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.162.0", + "prefixLen":25, + "network":"192.244.162.0\/25", + "version":9405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.162.128", + "prefixLen":25, + "network":"192.244.162.128\/25", + "version":9404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.163.0", + "prefixLen":25, + "network":"192.244.163.0\/25", + "version":9403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.163.128", + "prefixLen":25, + "network":"192.244.163.128\/25", + "version":9402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.176.0", + "prefixLen":25, + "network":"192.244.176.0\/25", + "version":9401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.176.128", + "prefixLen":25, + "network":"192.244.176.128\/25", + "version":9400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.177.0", + "prefixLen":25, + "network":"192.244.177.0\/25", + "version":9399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.177.128", + "prefixLen":25, + "network":"192.244.177.128\/25", + "version":9398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.178.0", + "prefixLen":25, + "network":"192.244.178.0\/25", + "version":9397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.178.128", + "prefixLen":25, + "network":"192.244.178.128\/25", + "version":9396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.179.0", + "prefixLen":25, + "network":"192.244.179.0\/25", + "version":9395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.179.128", + "prefixLen":25, + "network":"192.244.179.128\/25", + "version":9394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.192.0", + "prefixLen":25, + "network":"192.244.192.0\/25", + "version":9393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.192.128", + "prefixLen":25, + "network":"192.244.192.128\/25", + "version":9392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.193.0", + "prefixLen":25, + "network":"192.244.193.0\/25", + "version":9391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.193.128", + "prefixLen":25, + "network":"192.244.193.128\/25", + "version":9390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.194.0", + "prefixLen":25, + "network":"192.244.194.0\/25", + "version":9389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.194.128", + "prefixLen":25, + "network":"192.244.194.128\/25", + "version":9388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.195.0", + "prefixLen":25, + "network":"192.244.195.0\/25", + "version":9387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.195.128", + "prefixLen":25, + "network":"192.244.195.128\/25", + "version":9386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.208.0", + "prefixLen":25, + "network":"192.244.208.0\/25", + "version":9385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.208.128", + "prefixLen":25, + "network":"192.244.208.128\/25", + "version":9384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.209.0", + "prefixLen":25, + "network":"192.244.209.0\/25", + "version":9383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.209.128", + "prefixLen":25, + "network":"192.244.209.128\/25", + "version":9382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.210.0", + "prefixLen":25, + "network":"192.244.210.0\/25", + "version":9381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.210.128", + "prefixLen":25, + "network":"192.244.210.128\/25", + "version":9380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.211.0", + "prefixLen":25, + "network":"192.244.211.0\/25", + "version":9379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.211.128", + "prefixLen":25, + "network":"192.244.211.128\/25", + "version":9378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.224.0", + "prefixLen":25, + "network":"192.244.224.0\/25", + "version":9377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.224.128", + "prefixLen":25, + "network":"192.244.224.128\/25", + "version":9376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.225.0", + "prefixLen":25, + "network":"192.244.225.0\/25", + "version":9375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.225.128", + "prefixLen":25, + "network":"192.244.225.128\/25", + "version":9374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.226.0", + "prefixLen":25, + "network":"192.244.226.0\/25", + "version":9373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.226.128", + "prefixLen":25, + "network":"192.244.226.128\/25", + "version":9372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.227.0", + "prefixLen":25, + "network":"192.244.227.0\/25", + "version":9371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.227.128", + "prefixLen":25, + "network":"192.244.227.128\/25", + "version":9370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.240.0", + "prefixLen":25, + "network":"192.244.240.0\/25", + "version":9369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.240.128", + "prefixLen":25, + "network":"192.244.240.128\/25", + "version":9368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.241.0", + "prefixLen":25, + "network":"192.244.241.0\/25", + "version":9367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.241.128", + "prefixLen":25, + "network":"192.244.241.128\/25", + "version":9366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.242.0", + "prefixLen":25, + "network":"192.244.242.0\/25", + "version":9365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.242.128", + "prefixLen":25, + "network":"192.244.242.128\/25", + "version":9364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.243.0", + "prefixLen":25, + "network":"192.244.243.0\/25", + "version":9363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.244.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.244.243.128", + "prefixLen":25, + "network":"192.244.243.128\/25", + "version":9362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64676 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.0.0", + "prefixLen":25, + "network":"192.245.0.0\/25", + "version":9489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.0.128", + "prefixLen":25, + "network":"192.245.0.128\/25", + "version":9616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.1.0", + "prefixLen":25, + "network":"192.245.1.0\/25", + "version":9615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.1.128", + "prefixLen":25, + "network":"192.245.1.128\/25", + "version":9614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.2.0", + "prefixLen":25, + "network":"192.245.2.0\/25", + "version":9613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.2.128", + "prefixLen":25, + "network":"192.245.2.128\/25", + "version":9612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.3.0", + "prefixLen":25, + "network":"192.245.3.0\/25", + "version":9611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.3.128", + "prefixLen":25, + "network":"192.245.3.128\/25", + "version":9610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.16.0", + "prefixLen":25, + "network":"192.245.16.0\/25", + "version":9609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.16.128", + "prefixLen":25, + "network":"192.245.16.128\/25", + "version":9608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.17.0", + "prefixLen":25, + "network":"192.245.17.0\/25", + "version":9607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.17.128", + "prefixLen":25, + "network":"192.245.17.128\/25", + "version":9606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.18.0", + "prefixLen":25, + "network":"192.245.18.0\/25", + "version":9605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.18.128", + "prefixLen":25, + "network":"192.245.18.128\/25", + "version":9604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.19.0", + "prefixLen":25, + "network":"192.245.19.0\/25", + "version":9603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.19.128", + "prefixLen":25, + "network":"192.245.19.128\/25", + "version":9602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.32.0", + "prefixLen":25, + "network":"192.245.32.0\/25", + "version":9601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.32.128", + "prefixLen":25, + "network":"192.245.32.128\/25", + "version":9600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.33.0", + "prefixLen":25, + "network":"192.245.33.0\/25", + "version":9599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.33.128", + "prefixLen":25, + "network":"192.245.33.128\/25", + "version":9598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.34.0", + "prefixLen":25, + "network":"192.245.34.0\/25", + "version":9597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.34.128", + "prefixLen":25, + "network":"192.245.34.128\/25", + "version":9596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.35.0", + "prefixLen":25, + "network":"192.245.35.0\/25", + "version":9595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.35.128", + "prefixLen":25, + "network":"192.245.35.128\/25", + "version":9594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.48.0", + "prefixLen":25, + "network":"192.245.48.0\/25", + "version":9593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.48.128", + "prefixLen":25, + "network":"192.245.48.128\/25", + "version":9592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.49.0", + "prefixLen":25, + "network":"192.245.49.0\/25", + "version":9591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.49.128", + "prefixLen":25, + "network":"192.245.49.128\/25", + "version":9590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.50.0", + "prefixLen":25, + "network":"192.245.50.0\/25", + "version":9589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.50.128", + "prefixLen":25, + "network":"192.245.50.128\/25", + "version":9588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.51.0", + "prefixLen":25, + "network":"192.245.51.0\/25", + "version":9587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.51.128", + "prefixLen":25, + "network":"192.245.51.128\/25", + "version":9586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.64.0", + "prefixLen":25, + "network":"192.245.64.0\/25", + "version":9585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.64.128", + "prefixLen":25, + "network":"192.245.64.128\/25", + "version":9584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.65.0", + "prefixLen":25, + "network":"192.245.65.0\/25", + "version":9583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.65.128", + "prefixLen":25, + "network":"192.245.65.128\/25", + "version":9582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.66.0", + "prefixLen":25, + "network":"192.245.66.0\/25", + "version":9581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.66.128", + "prefixLen":25, + "network":"192.245.66.128\/25", + "version":9580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.67.0", + "prefixLen":25, + "network":"192.245.67.0\/25", + "version":9579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.67.128", + "prefixLen":25, + "network":"192.245.67.128\/25", + "version":9578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.80.0", + "prefixLen":25, + "network":"192.245.80.0\/25", + "version":9577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.80.128", + "prefixLen":25, + "network":"192.245.80.128\/25", + "version":9576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.81.0", + "prefixLen":25, + "network":"192.245.81.0\/25", + "version":9575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.81.128", + "prefixLen":25, + "network":"192.245.81.128\/25", + "version":9574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.82.0", + "prefixLen":25, + "network":"192.245.82.0\/25", + "version":9573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.82.128", + "prefixLen":25, + "network":"192.245.82.128\/25", + "version":9572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.83.0", + "prefixLen":25, + "network":"192.245.83.0\/25", + "version":9571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.83.128", + "prefixLen":25, + "network":"192.245.83.128\/25", + "version":9570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.96.0", + "prefixLen":25, + "network":"192.245.96.0\/25", + "version":9569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.96.128", + "prefixLen":25, + "network":"192.245.96.128\/25", + "version":9568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.97.0", + "prefixLen":25, + "network":"192.245.97.0\/25", + "version":9567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.97.128", + "prefixLen":25, + "network":"192.245.97.128\/25", + "version":9566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.98.0", + "prefixLen":25, + "network":"192.245.98.0\/25", + "version":9565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.98.128", + "prefixLen":25, + "network":"192.245.98.128\/25", + "version":9564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.99.0", + "prefixLen":25, + "network":"192.245.99.0\/25", + "version":9563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.99.128", + "prefixLen":25, + "network":"192.245.99.128\/25", + "version":9562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.112.0", + "prefixLen":25, + "network":"192.245.112.0\/25", + "version":9561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.112.128", + "prefixLen":25, + "network":"192.245.112.128\/25", + "version":9560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.113.0", + "prefixLen":25, + "network":"192.245.113.0\/25", + "version":9559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.113.128", + "prefixLen":25, + "network":"192.245.113.128\/25", + "version":9558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.114.0", + "prefixLen":25, + "network":"192.245.114.0\/25", + "version":9557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.114.128", + "prefixLen":25, + "network":"192.245.114.128\/25", + "version":9556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.115.0", + "prefixLen":25, + "network":"192.245.115.0\/25", + "version":9555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.115.128", + "prefixLen":25, + "network":"192.245.115.128\/25", + "version":9554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.128.0", + "prefixLen":25, + "network":"192.245.128.0\/25", + "version":9553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.128.128", + "prefixLen":25, + "network":"192.245.128.128\/25", + "version":9552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.129.0", + "prefixLen":25, + "network":"192.245.129.0\/25", + "version":9551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.129.128", + "prefixLen":25, + "network":"192.245.129.128\/25", + "version":9550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.130.0", + "prefixLen":25, + "network":"192.245.130.0\/25", + "version":9549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.130.128", + "prefixLen":25, + "network":"192.245.130.128\/25", + "version":9548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.131.0", + "prefixLen":25, + "network":"192.245.131.0\/25", + "version":9547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.131.128", + "prefixLen":25, + "network":"192.245.131.128\/25", + "version":9546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.144.0", + "prefixLen":25, + "network":"192.245.144.0\/25", + "version":9545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.144.128", + "prefixLen":25, + "network":"192.245.144.128\/25", + "version":9544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.145.0", + "prefixLen":25, + "network":"192.245.145.0\/25", + "version":9543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.145.128", + "prefixLen":25, + "network":"192.245.145.128\/25", + "version":9542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.146.0", + "prefixLen":25, + "network":"192.245.146.0\/25", + "version":9541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.146.128", + "prefixLen":25, + "network":"192.245.146.128\/25", + "version":9540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.147.0", + "prefixLen":25, + "network":"192.245.147.0\/25", + "version":9539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.147.128", + "prefixLen":25, + "network":"192.245.147.128\/25", + "version":9538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.160.0", + "prefixLen":25, + "network":"192.245.160.0\/25", + "version":9537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.160.128", + "prefixLen":25, + "network":"192.245.160.128\/25", + "version":9536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.161.0", + "prefixLen":25, + "network":"192.245.161.0\/25", + "version":9535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.161.128", + "prefixLen":25, + "network":"192.245.161.128\/25", + "version":9534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.162.0", + "prefixLen":25, + "network":"192.245.162.0\/25", + "version":9533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.162.128", + "prefixLen":25, + "network":"192.245.162.128\/25", + "version":9532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.163.0", + "prefixLen":25, + "network":"192.245.163.0\/25", + "version":9531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.163.128", + "prefixLen":25, + "network":"192.245.163.128\/25", + "version":9530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.176.0", + "prefixLen":25, + "network":"192.245.176.0\/25", + "version":9529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.176.128", + "prefixLen":25, + "network":"192.245.176.128\/25", + "version":9528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.177.0", + "prefixLen":25, + "network":"192.245.177.0\/25", + "version":9527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.177.128", + "prefixLen":25, + "network":"192.245.177.128\/25", + "version":9526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.178.0", + "prefixLen":25, + "network":"192.245.178.0\/25", + "version":9525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.178.128", + "prefixLen":25, + "network":"192.245.178.128\/25", + "version":9524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.179.0", + "prefixLen":25, + "network":"192.245.179.0\/25", + "version":9523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.179.128", + "prefixLen":25, + "network":"192.245.179.128\/25", + "version":9522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.192.0", + "prefixLen":25, + "network":"192.245.192.0\/25", + "version":9521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.192.128", + "prefixLen":25, + "network":"192.245.192.128\/25", + "version":9520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.193.0", + "prefixLen":25, + "network":"192.245.193.0\/25", + "version":9519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.193.128", + "prefixLen":25, + "network":"192.245.193.128\/25", + "version":9518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.194.0", + "prefixLen":25, + "network":"192.245.194.0\/25", + "version":9517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.194.128", + "prefixLen":25, + "network":"192.245.194.128\/25", + "version":9516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.195.0", + "prefixLen":25, + "network":"192.245.195.0\/25", + "version":9515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.195.128", + "prefixLen":25, + "network":"192.245.195.128\/25", + "version":9514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.208.0", + "prefixLen":25, + "network":"192.245.208.0\/25", + "version":9513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.208.128", + "prefixLen":25, + "network":"192.245.208.128\/25", + "version":9512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.209.0", + "prefixLen":25, + "network":"192.245.209.0\/25", + "version":9511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.209.128", + "prefixLen":25, + "network":"192.245.209.128\/25", + "version":9510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.210.0", + "prefixLen":25, + "network":"192.245.210.0\/25", + "version":9509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.210.128", + "prefixLen":25, + "network":"192.245.210.128\/25", + "version":9508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.211.0", + "prefixLen":25, + "network":"192.245.211.0\/25", + "version":9507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.211.128", + "prefixLen":25, + "network":"192.245.211.128\/25", + "version":9506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.224.0", + "prefixLen":25, + "network":"192.245.224.0\/25", + "version":9505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.224.128", + "prefixLen":25, + "network":"192.245.224.128\/25", + "version":9504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.225.0", + "prefixLen":25, + "network":"192.245.225.0\/25", + "version":9503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.225.128", + "prefixLen":25, + "network":"192.245.225.128\/25", + "version":9502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.226.0", + "prefixLen":25, + "network":"192.245.226.0\/25", + "version":9501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.226.128", + "prefixLen":25, + "network":"192.245.226.128\/25", + "version":9500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.227.0", + "prefixLen":25, + "network":"192.245.227.0\/25", + "version":9499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.227.128", + "prefixLen":25, + "network":"192.245.227.128\/25", + "version":9498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.240.0", + "prefixLen":25, + "network":"192.245.240.0\/25", + "version":9497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.240.128", + "prefixLen":25, + "network":"192.245.240.128\/25", + "version":9496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.241.0", + "prefixLen":25, + "network":"192.245.241.0\/25", + "version":9495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.241.128", + "prefixLen":25, + "network":"192.245.241.128\/25", + "version":9494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.242.0", + "prefixLen":25, + "network":"192.245.242.0\/25", + "version":9493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.242.128", + "prefixLen":25, + "network":"192.245.242.128\/25", + "version":9492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.243.0", + "prefixLen":25, + "network":"192.245.243.0\/25", + "version":9491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.245.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.245.243.128", + "prefixLen":25, + "network":"192.245.243.128\/25", + "version":9490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64677 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.0.0", + "prefixLen":25, + "network":"192.246.0.0\/25", + "version":9617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.0.128", + "prefixLen":25, + "network":"192.246.0.128\/25", + "version":9744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.1.0", + "prefixLen":25, + "network":"192.246.1.0\/25", + "version":9743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.1.128", + "prefixLen":25, + "network":"192.246.1.128\/25", + "version":9742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.2.0", + "prefixLen":25, + "network":"192.246.2.0\/25", + "version":9741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.2.128", + "prefixLen":25, + "network":"192.246.2.128\/25", + "version":9740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.3.0", + "prefixLen":25, + "network":"192.246.3.0\/25", + "version":9739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.3.128", + "prefixLen":25, + "network":"192.246.3.128\/25", + "version":9738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.16.0", + "prefixLen":25, + "network":"192.246.16.0\/25", + "version":9737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.16.128", + "prefixLen":25, + "network":"192.246.16.128\/25", + "version":9736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.17.0", + "prefixLen":25, + "network":"192.246.17.0\/25", + "version":9735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.17.128", + "prefixLen":25, + "network":"192.246.17.128\/25", + "version":9734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.18.0", + "prefixLen":25, + "network":"192.246.18.0\/25", + "version":9733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.18.128", + "prefixLen":25, + "network":"192.246.18.128\/25", + "version":9732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.19.0", + "prefixLen":25, + "network":"192.246.19.0\/25", + "version":9731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.19.128", + "prefixLen":25, + "network":"192.246.19.128\/25", + "version":9730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.32.0", + "prefixLen":25, + "network":"192.246.32.0\/25", + "version":9729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.32.128", + "prefixLen":25, + "network":"192.246.32.128\/25", + "version":9728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.33.0", + "prefixLen":25, + "network":"192.246.33.0\/25", + "version":9727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.33.128", + "prefixLen":25, + "network":"192.246.33.128\/25", + "version":9726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.34.0", + "prefixLen":25, + "network":"192.246.34.0\/25", + "version":9725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.34.128", + "prefixLen":25, + "network":"192.246.34.128\/25", + "version":9724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.35.0", + "prefixLen":25, + "network":"192.246.35.0\/25", + "version":9723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.35.128", + "prefixLen":25, + "network":"192.246.35.128\/25", + "version":9722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.48.0", + "prefixLen":25, + "network":"192.246.48.0\/25", + "version":9721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.48.128", + "prefixLen":25, + "network":"192.246.48.128\/25", + "version":9720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.49.0", + "prefixLen":25, + "network":"192.246.49.0\/25", + "version":9719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.49.128", + "prefixLen":25, + "network":"192.246.49.128\/25", + "version":9718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.50.0", + "prefixLen":25, + "network":"192.246.50.0\/25", + "version":9717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.50.128", + "prefixLen":25, + "network":"192.246.50.128\/25", + "version":9716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.51.0", + "prefixLen":25, + "network":"192.246.51.0\/25", + "version":9715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.51.128", + "prefixLen":25, + "network":"192.246.51.128\/25", + "version":9714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.64.0", + "prefixLen":25, + "network":"192.246.64.0\/25", + "version":9713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.64.128", + "prefixLen":25, + "network":"192.246.64.128\/25", + "version":9712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.65.0", + "prefixLen":25, + "network":"192.246.65.0\/25", + "version":9711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.65.128", + "prefixLen":25, + "network":"192.246.65.128\/25", + "version":9710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.66.0", + "prefixLen":25, + "network":"192.246.66.0\/25", + "version":9709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.66.128", + "prefixLen":25, + "network":"192.246.66.128\/25", + "version":9708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.67.0", + "prefixLen":25, + "network":"192.246.67.0\/25", + "version":9707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.67.128", + "prefixLen":25, + "network":"192.246.67.128\/25", + "version":9706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.80.0", + "prefixLen":25, + "network":"192.246.80.0\/25", + "version":9705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.80.128", + "prefixLen":25, + "network":"192.246.80.128\/25", + "version":9704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.81.0", + "prefixLen":25, + "network":"192.246.81.0\/25", + "version":9703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.81.128", + "prefixLen":25, + "network":"192.246.81.128\/25", + "version":9702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.82.0", + "prefixLen":25, + "network":"192.246.82.0\/25", + "version":9701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.82.128", + "prefixLen":25, + "network":"192.246.82.128\/25", + "version":9700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.83.0", + "prefixLen":25, + "network":"192.246.83.0\/25", + "version":9699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.83.128", + "prefixLen":25, + "network":"192.246.83.128\/25", + "version":9698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.96.0", + "prefixLen":25, + "network":"192.246.96.0\/25", + "version":9697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.96.128", + "prefixLen":25, + "network":"192.246.96.128\/25", + "version":9696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.97.0", + "prefixLen":25, + "network":"192.246.97.0\/25", + "version":9695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.97.128", + "prefixLen":25, + "network":"192.246.97.128\/25", + "version":9694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.98.0", + "prefixLen":25, + "network":"192.246.98.0\/25", + "version":9693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.98.128", + "prefixLen":25, + "network":"192.246.98.128\/25", + "version":9692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.99.0", + "prefixLen":25, + "network":"192.246.99.0\/25", + "version":9691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.99.128", + "prefixLen":25, + "network":"192.246.99.128\/25", + "version":9690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.112.0", + "prefixLen":25, + "network":"192.246.112.0\/25", + "version":9689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.112.128", + "prefixLen":25, + "network":"192.246.112.128\/25", + "version":9688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.113.0", + "prefixLen":25, + "network":"192.246.113.0\/25", + "version":9687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.113.128", + "prefixLen":25, + "network":"192.246.113.128\/25", + "version":9686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.114.0", + "prefixLen":25, + "network":"192.246.114.0\/25", + "version":9685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.114.128", + "prefixLen":25, + "network":"192.246.114.128\/25", + "version":9684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.115.0", + "prefixLen":25, + "network":"192.246.115.0\/25", + "version":9683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.115.128", + "prefixLen":25, + "network":"192.246.115.128\/25", + "version":9682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.128.0", + "prefixLen":25, + "network":"192.246.128.0\/25", + "version":9681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.128.128", + "prefixLen":25, + "network":"192.246.128.128\/25", + "version":9680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.129.0", + "prefixLen":25, + "network":"192.246.129.0\/25", + "version":9679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.129.128", + "prefixLen":25, + "network":"192.246.129.128\/25", + "version":9678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.130.0", + "prefixLen":25, + "network":"192.246.130.0\/25", + "version":9677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.130.128", + "prefixLen":25, + "network":"192.246.130.128\/25", + "version":9676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.131.0", + "prefixLen":25, + "network":"192.246.131.0\/25", + "version":9675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.131.128", + "prefixLen":25, + "network":"192.246.131.128\/25", + "version":9674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.144.0", + "prefixLen":25, + "network":"192.246.144.0\/25", + "version":9673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.144.128", + "prefixLen":25, + "network":"192.246.144.128\/25", + "version":9672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.145.0", + "prefixLen":25, + "network":"192.246.145.0\/25", + "version":9671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.145.128", + "prefixLen":25, + "network":"192.246.145.128\/25", + "version":9670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.146.0", + "prefixLen":25, + "network":"192.246.146.0\/25", + "version":9669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.146.128", + "prefixLen":25, + "network":"192.246.146.128\/25", + "version":9668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.147.0", + "prefixLen":25, + "network":"192.246.147.0\/25", + "version":9667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.147.128", + "prefixLen":25, + "network":"192.246.147.128\/25", + "version":9666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.160.0", + "prefixLen":25, + "network":"192.246.160.0\/25", + "version":9665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.160.128", + "prefixLen":25, + "network":"192.246.160.128\/25", + "version":9664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.161.0", + "prefixLen":25, + "network":"192.246.161.0\/25", + "version":9663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.161.128", + "prefixLen":25, + "network":"192.246.161.128\/25", + "version":9662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.162.0", + "prefixLen":25, + "network":"192.246.162.0\/25", + "version":9661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.162.128", + "prefixLen":25, + "network":"192.246.162.128\/25", + "version":9660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.163.0", + "prefixLen":25, + "network":"192.246.163.0\/25", + "version":9659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.163.128", + "prefixLen":25, + "network":"192.246.163.128\/25", + "version":9658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.176.0", + "prefixLen":25, + "network":"192.246.176.0\/25", + "version":9657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.176.128", + "prefixLen":25, + "network":"192.246.176.128\/25", + "version":9656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.177.0", + "prefixLen":25, + "network":"192.246.177.0\/25", + "version":9655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.177.128", + "prefixLen":25, + "network":"192.246.177.128\/25", + "version":9654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.178.0", + "prefixLen":25, + "network":"192.246.178.0\/25", + "version":9653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.178.128", + "prefixLen":25, + "network":"192.246.178.128\/25", + "version":9652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.179.0", + "prefixLen":25, + "network":"192.246.179.0\/25", + "version":9651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.179.128", + "prefixLen":25, + "network":"192.246.179.128\/25", + "version":9650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.192.0", + "prefixLen":25, + "network":"192.246.192.0\/25", + "version":9649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.192.128", + "prefixLen":25, + "network":"192.246.192.128\/25", + "version":9648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.193.0", + "prefixLen":25, + "network":"192.246.193.0\/25", + "version":9647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.193.128", + "prefixLen":25, + "network":"192.246.193.128\/25", + "version":9646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.194.0", + "prefixLen":25, + "network":"192.246.194.0\/25", + "version":9645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.194.128", + "prefixLen":25, + "network":"192.246.194.128\/25", + "version":9644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.195.0", + "prefixLen":25, + "network":"192.246.195.0\/25", + "version":9643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.195.128", + "prefixLen":25, + "network":"192.246.195.128\/25", + "version":9642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.208.0", + "prefixLen":25, + "network":"192.246.208.0\/25", + "version":9641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.208.128", + "prefixLen":25, + "network":"192.246.208.128\/25", + "version":9640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.209.0", + "prefixLen":25, + "network":"192.246.209.0\/25", + "version":9639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.209.128", + "prefixLen":25, + "network":"192.246.209.128\/25", + "version":9638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.210.0", + "prefixLen":25, + "network":"192.246.210.0\/25", + "version":9637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.210.128", + "prefixLen":25, + "network":"192.246.210.128\/25", + "version":9636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.211.0", + "prefixLen":25, + "network":"192.246.211.0\/25", + "version":9635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.211.128", + "prefixLen":25, + "network":"192.246.211.128\/25", + "version":9634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.224.0", + "prefixLen":25, + "network":"192.246.224.0\/25", + "version":9633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.224.128", + "prefixLen":25, + "network":"192.246.224.128\/25", + "version":9632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.225.0", + "prefixLen":25, + "network":"192.246.225.0\/25", + "version":9631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.225.128", + "prefixLen":25, + "network":"192.246.225.128\/25", + "version":9630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.226.0", + "prefixLen":25, + "network":"192.246.226.0\/25", + "version":9629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.226.128", + "prefixLen":25, + "network":"192.246.226.128\/25", + "version":9628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.227.0", + "prefixLen":25, + "network":"192.246.227.0\/25", + "version":9627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.227.128", + "prefixLen":25, + "network":"192.246.227.128\/25", + "version":9626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.240.0", + "prefixLen":25, + "network":"192.246.240.0\/25", + "version":9625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.240.128", + "prefixLen":25, + "network":"192.246.240.128\/25", + "version":9624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.241.0", + "prefixLen":25, + "network":"192.246.241.0\/25", + "version":9623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.241.128", + "prefixLen":25, + "network":"192.246.241.128\/25", + "version":9622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.242.0", + "prefixLen":25, + "network":"192.246.242.0\/25", + "version":9621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.242.128", + "prefixLen":25, + "network":"192.246.242.128\/25", + "version":9620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.243.0", + "prefixLen":25, + "network":"192.246.243.0\/25", + "version":9619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.246.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.246.243.128", + "prefixLen":25, + "network":"192.246.243.128\/25", + "version":9618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64678 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.0.0", + "prefixLen":25, + "network":"192.247.0.0\/25", + "version":9745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.0.128", + "prefixLen":25, + "network":"192.247.0.128\/25", + "version":9872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.1.0", + "prefixLen":25, + "network":"192.247.1.0\/25", + "version":9871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.1.128", + "prefixLen":25, + "network":"192.247.1.128\/25", + "version":9870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.2.0", + "prefixLen":25, + "network":"192.247.2.0\/25", + "version":9869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.2.128", + "prefixLen":25, + "network":"192.247.2.128\/25", + "version":9868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.3.0", + "prefixLen":25, + "network":"192.247.3.0\/25", + "version":9867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.3.128", + "prefixLen":25, + "network":"192.247.3.128\/25", + "version":9866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.16.0", + "prefixLen":25, + "network":"192.247.16.0\/25", + "version":9865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.16.128", + "prefixLen":25, + "network":"192.247.16.128\/25", + "version":9864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.17.0", + "prefixLen":25, + "network":"192.247.17.0\/25", + "version":9863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.17.128", + "prefixLen":25, + "network":"192.247.17.128\/25", + "version":9862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.18.0", + "prefixLen":25, + "network":"192.247.18.0\/25", + "version":9861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.18.128", + "prefixLen":25, + "network":"192.247.18.128\/25", + "version":9860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.19.0", + "prefixLen":25, + "network":"192.247.19.0\/25", + "version":9859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.19.128", + "prefixLen":25, + "network":"192.247.19.128\/25", + "version":9858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.32.0", + "prefixLen":25, + "network":"192.247.32.0\/25", + "version":9857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.32.128", + "prefixLen":25, + "network":"192.247.32.128\/25", + "version":9856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.33.0", + "prefixLen":25, + "network":"192.247.33.0\/25", + "version":9855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.33.128", + "prefixLen":25, + "network":"192.247.33.128\/25", + "version":9854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.34.0", + "prefixLen":25, + "network":"192.247.34.0\/25", + "version":9853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.34.128", + "prefixLen":25, + "network":"192.247.34.128\/25", + "version":9852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.35.0", + "prefixLen":25, + "network":"192.247.35.0\/25", + "version":9851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.35.128", + "prefixLen":25, + "network":"192.247.35.128\/25", + "version":9850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.48.0", + "prefixLen":25, + "network":"192.247.48.0\/25", + "version":9849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.48.128", + "prefixLen":25, + "network":"192.247.48.128\/25", + "version":9848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.49.0", + "prefixLen":25, + "network":"192.247.49.0\/25", + "version":9847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.49.128", + "prefixLen":25, + "network":"192.247.49.128\/25", + "version":9846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.50.0", + "prefixLen":25, + "network":"192.247.50.0\/25", + "version":9845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.50.128", + "prefixLen":25, + "network":"192.247.50.128\/25", + "version":9844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.51.0", + "prefixLen":25, + "network":"192.247.51.0\/25", + "version":9843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.51.128", + "prefixLen":25, + "network":"192.247.51.128\/25", + "version":9842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.64.0", + "prefixLen":25, + "network":"192.247.64.0\/25", + "version":9841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.64.128", + "prefixLen":25, + "network":"192.247.64.128\/25", + "version":9840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.65.0", + "prefixLen":25, + "network":"192.247.65.0\/25", + "version":9839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.65.128", + "prefixLen":25, + "network":"192.247.65.128\/25", + "version":9838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.66.0", + "prefixLen":25, + "network":"192.247.66.0\/25", + "version":9837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.66.128", + "prefixLen":25, + "network":"192.247.66.128\/25", + "version":9836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.67.0", + "prefixLen":25, + "network":"192.247.67.0\/25", + "version":9835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.67.128", + "prefixLen":25, + "network":"192.247.67.128\/25", + "version":9834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.80.0", + "prefixLen":25, + "network":"192.247.80.0\/25", + "version":9833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.80.128", + "prefixLen":25, + "network":"192.247.80.128\/25", + "version":9832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.81.0", + "prefixLen":25, + "network":"192.247.81.0\/25", + "version":9831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.81.128", + "prefixLen":25, + "network":"192.247.81.128\/25", + "version":9830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.82.0", + "prefixLen":25, + "network":"192.247.82.0\/25", + "version":9829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.82.128", + "prefixLen":25, + "network":"192.247.82.128\/25", + "version":9828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.83.0", + "prefixLen":25, + "network":"192.247.83.0\/25", + "version":9827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.83.128", + "prefixLen":25, + "network":"192.247.83.128\/25", + "version":9826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.96.0", + "prefixLen":25, + "network":"192.247.96.0\/25", + "version":9825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.96.128", + "prefixLen":25, + "network":"192.247.96.128\/25", + "version":9824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.97.0", + "prefixLen":25, + "network":"192.247.97.0\/25", + "version":9823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.97.128", + "prefixLen":25, + "network":"192.247.97.128\/25", + "version":9822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.98.0", + "prefixLen":25, + "network":"192.247.98.0\/25", + "version":9821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.98.128", + "prefixLen":25, + "network":"192.247.98.128\/25", + "version":9820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.99.0", + "prefixLen":25, + "network":"192.247.99.0\/25", + "version":9819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.99.128", + "prefixLen":25, + "network":"192.247.99.128\/25", + "version":9818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.112.0", + "prefixLen":25, + "network":"192.247.112.0\/25", + "version":9817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.112.128", + "prefixLen":25, + "network":"192.247.112.128\/25", + "version":9816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.113.0", + "prefixLen":25, + "network":"192.247.113.0\/25", + "version":9815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.113.128", + "prefixLen":25, + "network":"192.247.113.128\/25", + "version":9814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.114.0", + "prefixLen":25, + "network":"192.247.114.0\/25", + "version":9813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.114.128", + "prefixLen":25, + "network":"192.247.114.128\/25", + "version":9812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.115.0", + "prefixLen":25, + "network":"192.247.115.0\/25", + "version":9811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.115.128", + "prefixLen":25, + "network":"192.247.115.128\/25", + "version":9810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.128.0", + "prefixLen":25, + "network":"192.247.128.0\/25", + "version":9809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.128.128", + "prefixLen":25, + "network":"192.247.128.128\/25", + "version":9808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.129.0", + "prefixLen":25, + "network":"192.247.129.0\/25", + "version":9807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.129.128", + "prefixLen":25, + "network":"192.247.129.128\/25", + "version":9806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.130.0", + "prefixLen":25, + "network":"192.247.130.0\/25", + "version":9805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.130.128", + "prefixLen":25, + "network":"192.247.130.128\/25", + "version":9804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.131.0", + "prefixLen":25, + "network":"192.247.131.0\/25", + "version":9803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.131.128", + "prefixLen":25, + "network":"192.247.131.128\/25", + "version":9802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.144.0", + "prefixLen":25, + "network":"192.247.144.0\/25", + "version":9801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.144.128", + "prefixLen":25, + "network":"192.247.144.128\/25", + "version":9800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.145.0", + "prefixLen":25, + "network":"192.247.145.0\/25", + "version":9799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.145.128", + "prefixLen":25, + "network":"192.247.145.128\/25", + "version":9798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.146.0", + "prefixLen":25, + "network":"192.247.146.0\/25", + "version":9797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.146.128", + "prefixLen":25, + "network":"192.247.146.128\/25", + "version":9796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.147.0", + "prefixLen":25, + "network":"192.247.147.0\/25", + "version":9795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.147.128", + "prefixLen":25, + "network":"192.247.147.128\/25", + "version":9794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.160.0", + "prefixLen":25, + "network":"192.247.160.0\/25", + "version":9793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.160.128", + "prefixLen":25, + "network":"192.247.160.128\/25", + "version":9792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.161.0", + "prefixLen":25, + "network":"192.247.161.0\/25", + "version":9791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.161.128", + "prefixLen":25, + "network":"192.247.161.128\/25", + "version":9790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.162.0", + "prefixLen":25, + "network":"192.247.162.0\/25", + "version":9789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.162.128", + "prefixLen":25, + "network":"192.247.162.128\/25", + "version":9788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.163.0", + "prefixLen":25, + "network":"192.247.163.0\/25", + "version":9787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.163.128", + "prefixLen":25, + "network":"192.247.163.128\/25", + "version":9786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.176.0", + "prefixLen":25, + "network":"192.247.176.0\/25", + "version":9785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.176.128", + "prefixLen":25, + "network":"192.247.176.128\/25", + "version":9784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.177.0", + "prefixLen":25, + "network":"192.247.177.0\/25", + "version":9783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.177.128", + "prefixLen":25, + "network":"192.247.177.128\/25", + "version":9782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.178.0", + "prefixLen":25, + "network":"192.247.178.0\/25", + "version":9781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.178.128", + "prefixLen":25, + "network":"192.247.178.128\/25", + "version":9780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.179.0", + "prefixLen":25, + "network":"192.247.179.0\/25", + "version":9779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.179.128", + "prefixLen":25, + "network":"192.247.179.128\/25", + "version":9778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.192.0", + "prefixLen":25, + "network":"192.247.192.0\/25", + "version":9777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.192.128", + "prefixLen":25, + "network":"192.247.192.128\/25", + "version":9776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.193.0", + "prefixLen":25, + "network":"192.247.193.0\/25", + "version":9775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.193.128", + "prefixLen":25, + "network":"192.247.193.128\/25", + "version":9774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.194.0", + "prefixLen":25, + "network":"192.247.194.0\/25", + "version":9773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.194.128", + "prefixLen":25, + "network":"192.247.194.128\/25", + "version":9772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.195.0", + "prefixLen":25, + "network":"192.247.195.0\/25", + "version":9771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.195.128", + "prefixLen":25, + "network":"192.247.195.128\/25", + "version":9770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.208.0", + "prefixLen":25, + "network":"192.247.208.0\/25", + "version":9769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.208.128", + "prefixLen":25, + "network":"192.247.208.128\/25", + "version":9768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.209.0", + "prefixLen":25, + "network":"192.247.209.0\/25", + "version":9767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.209.128", + "prefixLen":25, + "network":"192.247.209.128\/25", + "version":9766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.210.0", + "prefixLen":25, + "network":"192.247.210.0\/25", + "version":9765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.210.128", + "prefixLen":25, + "network":"192.247.210.128\/25", + "version":9764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.211.0", + "prefixLen":25, + "network":"192.247.211.0\/25", + "version":9763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.211.128", + "prefixLen":25, + "network":"192.247.211.128\/25", + "version":9762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.224.0", + "prefixLen":25, + "network":"192.247.224.0\/25", + "version":9761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.224.128", + "prefixLen":25, + "network":"192.247.224.128\/25", + "version":9760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.225.0", + "prefixLen":25, + "network":"192.247.225.0\/25", + "version":9759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.225.128", + "prefixLen":25, + "network":"192.247.225.128\/25", + "version":9758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.226.0", + "prefixLen":25, + "network":"192.247.226.0\/25", + "version":9757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.226.128", + "prefixLen":25, + "network":"192.247.226.128\/25", + "version":9756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.227.0", + "prefixLen":25, + "network":"192.247.227.0\/25", + "version":9755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.227.128", + "prefixLen":25, + "network":"192.247.227.128\/25", + "version":9754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.240.0", + "prefixLen":25, + "network":"192.247.240.0\/25", + "version":9753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.240.128", + "prefixLen":25, + "network":"192.247.240.128\/25", + "version":9752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.241.0", + "prefixLen":25, + "network":"192.247.241.0\/25", + "version":9751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.241.128", + "prefixLen":25, + "network":"192.247.241.128\/25", + "version":9750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.242.0", + "prefixLen":25, + "network":"192.247.242.0\/25", + "version":9749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.242.128", + "prefixLen":25, + "network":"192.247.242.128\/25", + "version":9748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.243.0", + "prefixLen":25, + "network":"192.247.243.0\/25", + "version":9747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.247.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.247.243.128", + "prefixLen":25, + "network":"192.247.243.128\/25", + "version":9746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64679 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.0.0", + "prefixLen":25, + "network":"192.248.0.0\/25", + "version":9873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.0.128", + "prefixLen":25, + "network":"192.248.0.128\/25", + "version":10000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.1.0", + "prefixLen":25, + "network":"192.248.1.0\/25", + "version":9999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.1.128", + "prefixLen":25, + "network":"192.248.1.128\/25", + "version":9998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.2.0", + "prefixLen":25, + "network":"192.248.2.0\/25", + "version":9997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.2.128", + "prefixLen":25, + "network":"192.248.2.128\/25", + "version":9996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.3.0", + "prefixLen":25, + "network":"192.248.3.0\/25", + "version":9995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.3.128", + "prefixLen":25, + "network":"192.248.3.128\/25", + "version":9994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.16.0", + "prefixLen":25, + "network":"192.248.16.0\/25", + "version":9993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.16.128", + "prefixLen":25, + "network":"192.248.16.128\/25", + "version":9992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.17.0", + "prefixLen":25, + "network":"192.248.17.0\/25", + "version":9991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.17.128", + "prefixLen":25, + "network":"192.248.17.128\/25", + "version":9990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.18.0", + "prefixLen":25, + "network":"192.248.18.0\/25", + "version":9989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.18.128", + "prefixLen":25, + "network":"192.248.18.128\/25", + "version":9988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.19.0", + "prefixLen":25, + "network":"192.248.19.0\/25", + "version":9987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.19.128", + "prefixLen":25, + "network":"192.248.19.128\/25", + "version":9986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.32.0", + "prefixLen":25, + "network":"192.248.32.0\/25", + "version":9985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.32.128", + "prefixLen":25, + "network":"192.248.32.128\/25", + "version":9984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.33.0", + "prefixLen":25, + "network":"192.248.33.0\/25", + "version":9983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.33.128", + "prefixLen":25, + "network":"192.248.33.128\/25", + "version":9982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.34.0", + "prefixLen":25, + "network":"192.248.34.0\/25", + "version":9981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.34.128", + "prefixLen":25, + "network":"192.248.34.128\/25", + "version":9980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.35.0", + "prefixLen":25, + "network":"192.248.35.0\/25", + "version":9979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.35.128", + "prefixLen":25, + "network":"192.248.35.128\/25", + "version":9978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.48.0", + "prefixLen":25, + "network":"192.248.48.0\/25", + "version":9977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.48.128", + "prefixLen":25, + "network":"192.248.48.128\/25", + "version":9976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.49.0", + "prefixLen":25, + "network":"192.248.49.0\/25", + "version":9975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.49.128", + "prefixLen":25, + "network":"192.248.49.128\/25", + "version":9974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.50.0", + "prefixLen":25, + "network":"192.248.50.0\/25", + "version":9973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.50.128", + "prefixLen":25, + "network":"192.248.50.128\/25", + "version":9972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.51.0", + "prefixLen":25, + "network":"192.248.51.0\/25", + "version":9971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.51.128", + "prefixLen":25, + "network":"192.248.51.128\/25", + "version":9970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.64.0", + "prefixLen":25, + "network":"192.248.64.0\/25", + "version":9969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.64.128", + "prefixLen":25, + "network":"192.248.64.128\/25", + "version":9968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.65.0", + "prefixLen":25, + "network":"192.248.65.0\/25", + "version":9967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.65.128", + "prefixLen":25, + "network":"192.248.65.128\/25", + "version":9966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.66.0", + "prefixLen":25, + "network":"192.248.66.0\/25", + "version":9965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.66.128", + "prefixLen":25, + "network":"192.248.66.128\/25", + "version":9964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.67.0", + "prefixLen":25, + "network":"192.248.67.0\/25", + "version":9963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.67.128", + "prefixLen":25, + "network":"192.248.67.128\/25", + "version":9962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.80.0", + "prefixLen":25, + "network":"192.248.80.0\/25", + "version":9961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.80.128", + "prefixLen":25, + "network":"192.248.80.128\/25", + "version":9960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.81.0", + "prefixLen":25, + "network":"192.248.81.0\/25", + "version":9959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.81.128", + "prefixLen":25, + "network":"192.248.81.128\/25", + "version":9958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.82.0", + "prefixLen":25, + "network":"192.248.82.0\/25", + "version":9957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.82.128", + "prefixLen":25, + "network":"192.248.82.128\/25", + "version":9956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.83.0", + "prefixLen":25, + "network":"192.248.83.0\/25", + "version":9955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.83.128", + "prefixLen":25, + "network":"192.248.83.128\/25", + "version":9954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.96.0", + "prefixLen":25, + "network":"192.248.96.0\/25", + "version":9953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.96.128", + "prefixLen":25, + "network":"192.248.96.128\/25", + "version":9952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.97.0", + "prefixLen":25, + "network":"192.248.97.0\/25", + "version":9951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.97.128", + "prefixLen":25, + "network":"192.248.97.128\/25", + "version":9950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.98.0", + "prefixLen":25, + "network":"192.248.98.0\/25", + "version":9949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.98.128", + "prefixLen":25, + "network":"192.248.98.128\/25", + "version":9948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.99.0", + "prefixLen":25, + "network":"192.248.99.0\/25", + "version":9947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.99.128", + "prefixLen":25, + "network":"192.248.99.128\/25", + "version":9946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.112.0", + "prefixLen":25, + "network":"192.248.112.0\/25", + "version":9945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.112.128", + "prefixLen":25, + "network":"192.248.112.128\/25", + "version":9944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.113.0", + "prefixLen":25, + "network":"192.248.113.0\/25", + "version":9943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.113.128", + "prefixLen":25, + "network":"192.248.113.128\/25", + "version":9942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.114.0", + "prefixLen":25, + "network":"192.248.114.0\/25", + "version":9941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.114.128", + "prefixLen":25, + "network":"192.248.114.128\/25", + "version":9940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.115.0", + "prefixLen":25, + "network":"192.248.115.0\/25", + "version":9939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.115.128", + "prefixLen":25, + "network":"192.248.115.128\/25", + "version":9938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.128.0", + "prefixLen":25, + "network":"192.248.128.0\/25", + "version":9937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.128.128", + "prefixLen":25, + "network":"192.248.128.128\/25", + "version":9936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.129.0", + "prefixLen":25, + "network":"192.248.129.0\/25", + "version":9935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.129.128", + "prefixLen":25, + "network":"192.248.129.128\/25", + "version":9934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.130.0", + "prefixLen":25, + "network":"192.248.130.0\/25", + "version":9933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.130.128", + "prefixLen":25, + "network":"192.248.130.128\/25", + "version":9932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.131.0", + "prefixLen":25, + "network":"192.248.131.0\/25", + "version":9931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.131.128", + "prefixLen":25, + "network":"192.248.131.128\/25", + "version":9930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.144.0", + "prefixLen":25, + "network":"192.248.144.0\/25", + "version":9929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.144.128", + "prefixLen":25, + "network":"192.248.144.128\/25", + "version":9928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.145.0", + "prefixLen":25, + "network":"192.248.145.0\/25", + "version":9927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.145.128", + "prefixLen":25, + "network":"192.248.145.128\/25", + "version":9926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.146.0", + "prefixLen":25, + "network":"192.248.146.0\/25", + "version":9925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.146.128", + "prefixLen":25, + "network":"192.248.146.128\/25", + "version":9924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.147.0", + "prefixLen":25, + "network":"192.248.147.0\/25", + "version":9923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.147.128", + "prefixLen":25, + "network":"192.248.147.128\/25", + "version":9922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.160.0", + "prefixLen":25, + "network":"192.248.160.0\/25", + "version":9921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.160.128", + "prefixLen":25, + "network":"192.248.160.128\/25", + "version":9920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.161.0", + "prefixLen":25, + "network":"192.248.161.0\/25", + "version":9919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.161.128", + "prefixLen":25, + "network":"192.248.161.128\/25", + "version":9918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.162.0", + "prefixLen":25, + "network":"192.248.162.0\/25", + "version":9917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.162.128", + "prefixLen":25, + "network":"192.248.162.128\/25", + "version":9916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.163.0", + "prefixLen":25, + "network":"192.248.163.0\/25", + "version":9915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.163.128", + "prefixLen":25, + "network":"192.248.163.128\/25", + "version":9914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.176.0", + "prefixLen":25, + "network":"192.248.176.0\/25", + "version":9913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.176.128", + "prefixLen":25, + "network":"192.248.176.128\/25", + "version":9912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.177.0", + "prefixLen":25, + "network":"192.248.177.0\/25", + "version":9911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.177.128", + "prefixLen":25, + "network":"192.248.177.128\/25", + "version":9910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.178.0", + "prefixLen":25, + "network":"192.248.178.0\/25", + "version":9909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.178.128", + "prefixLen":25, + "network":"192.248.178.128\/25", + "version":9908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.179.0", + "prefixLen":25, + "network":"192.248.179.0\/25", + "version":9907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.179.128", + "prefixLen":25, + "network":"192.248.179.128\/25", + "version":9906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.192.0", + "prefixLen":25, + "network":"192.248.192.0\/25", + "version":9905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.192.128", + "prefixLen":25, + "network":"192.248.192.128\/25", + "version":9904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.193.0", + "prefixLen":25, + "network":"192.248.193.0\/25", + "version":9903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.193.128", + "prefixLen":25, + "network":"192.248.193.128\/25", + "version":9902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.194.0", + "prefixLen":25, + "network":"192.248.194.0\/25", + "version":9901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.194.128", + "prefixLen":25, + "network":"192.248.194.128\/25", + "version":9900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.195.0", + "prefixLen":25, + "network":"192.248.195.0\/25", + "version":9899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.195.128", + "prefixLen":25, + "network":"192.248.195.128\/25", + "version":9898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.208.0", + "prefixLen":25, + "network":"192.248.208.0\/25", + "version":9897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.208.128", + "prefixLen":25, + "network":"192.248.208.128\/25", + "version":9896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.209.0", + "prefixLen":25, + "network":"192.248.209.0\/25", + "version":9895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.209.128", + "prefixLen":25, + "network":"192.248.209.128\/25", + "version":9894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.210.0", + "prefixLen":25, + "network":"192.248.210.0\/25", + "version":9893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.210.128", + "prefixLen":25, + "network":"192.248.210.128\/25", + "version":9892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.211.0", + "prefixLen":25, + "network":"192.248.211.0\/25", + "version":9891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.211.128", + "prefixLen":25, + "network":"192.248.211.128\/25", + "version":9890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.224.0", + "prefixLen":25, + "network":"192.248.224.0\/25", + "version":9889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.224.128", + "prefixLen":25, + "network":"192.248.224.128\/25", + "version":9888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.225.0", + "prefixLen":25, + "network":"192.248.225.0\/25", + "version":9887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.225.128", + "prefixLen":25, + "network":"192.248.225.128\/25", + "version":9886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.226.0", + "prefixLen":25, + "network":"192.248.226.0\/25", + "version":9885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.226.128", + "prefixLen":25, + "network":"192.248.226.128\/25", + "version":9884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.227.0", + "prefixLen":25, + "network":"192.248.227.0\/25", + "version":9883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.227.128", + "prefixLen":25, + "network":"192.248.227.128\/25", + "version":9882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.240.0", + "prefixLen":25, + "network":"192.248.240.0\/25", + "version":9881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.240.128", + "prefixLen":25, + "network":"192.248.240.128\/25", + "version":9880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.241.0", + "prefixLen":25, + "network":"192.248.241.0\/25", + "version":9879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.241.128", + "prefixLen":25, + "network":"192.248.241.128\/25", + "version":9878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.242.0", + "prefixLen":25, + "network":"192.248.242.0\/25", + "version":9877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.242.128", + "prefixLen":25, + "network":"192.248.242.128\/25", + "version":9876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.243.0", + "prefixLen":25, + "network":"192.248.243.0\/25", + "version":9875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.248.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.248.243.128", + "prefixLen":25, + "network":"192.248.243.128\/25", + "version":9874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64680 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.0.0", + "prefixLen":25, + "network":"192.249.0.0\/25", + "version":10001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.0.128", + "prefixLen":25, + "network":"192.249.0.128\/25", + "version":10128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.1.0", + "prefixLen":25, + "network":"192.249.1.0\/25", + "version":10127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.1.128", + "prefixLen":25, + "network":"192.249.1.128\/25", + "version":10126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.2.0", + "prefixLen":25, + "network":"192.249.2.0\/25", + "version":10125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.2.128", + "prefixLen":25, + "network":"192.249.2.128\/25", + "version":10124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.3.0", + "prefixLen":25, + "network":"192.249.3.0\/25", + "version":10123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.3.128", + "prefixLen":25, + "network":"192.249.3.128\/25", + "version":10122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.16.0", + "prefixLen":25, + "network":"192.249.16.0\/25", + "version":10121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.16.128", + "prefixLen":25, + "network":"192.249.16.128\/25", + "version":10120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.17.0", + "prefixLen":25, + "network":"192.249.17.0\/25", + "version":10119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.17.128", + "prefixLen":25, + "network":"192.249.17.128\/25", + "version":10118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.18.0", + "prefixLen":25, + "network":"192.249.18.0\/25", + "version":10117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.18.128", + "prefixLen":25, + "network":"192.249.18.128\/25", + "version":10116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.19.0", + "prefixLen":25, + "network":"192.249.19.0\/25", + "version":10115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.19.128", + "prefixLen":25, + "network":"192.249.19.128\/25", + "version":10114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.32.0", + "prefixLen":25, + "network":"192.249.32.0\/25", + "version":10113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.32.128", + "prefixLen":25, + "network":"192.249.32.128\/25", + "version":10112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.33.0", + "prefixLen":25, + "network":"192.249.33.0\/25", + "version":10111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.33.128", + "prefixLen":25, + "network":"192.249.33.128\/25", + "version":10110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.34.0", + "prefixLen":25, + "network":"192.249.34.0\/25", + "version":10109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.34.128", + "prefixLen":25, + "network":"192.249.34.128\/25", + "version":10108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.35.0", + "prefixLen":25, + "network":"192.249.35.0\/25", + "version":10107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.35.128", + "prefixLen":25, + "network":"192.249.35.128\/25", + "version":10106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.48.0", + "prefixLen":25, + "network":"192.249.48.0\/25", + "version":10105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.48.128", + "prefixLen":25, + "network":"192.249.48.128\/25", + "version":10104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.49.0", + "prefixLen":25, + "network":"192.249.49.0\/25", + "version":10103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.49.128", + "prefixLen":25, + "network":"192.249.49.128\/25", + "version":10102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.50.0", + "prefixLen":25, + "network":"192.249.50.0\/25", + "version":10101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.50.128", + "prefixLen":25, + "network":"192.249.50.128\/25", + "version":10100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.51.0", + "prefixLen":25, + "network":"192.249.51.0\/25", + "version":10099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.51.128", + "prefixLen":25, + "network":"192.249.51.128\/25", + "version":10098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.64.0", + "prefixLen":25, + "network":"192.249.64.0\/25", + "version":10097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.64.128", + "prefixLen":25, + "network":"192.249.64.128\/25", + "version":10096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.65.0", + "prefixLen":25, + "network":"192.249.65.0\/25", + "version":10095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.65.128", + "prefixLen":25, + "network":"192.249.65.128\/25", + "version":10094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.66.0", + "prefixLen":25, + "network":"192.249.66.0\/25", + "version":10093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.66.128", + "prefixLen":25, + "network":"192.249.66.128\/25", + "version":10092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.67.0", + "prefixLen":25, + "network":"192.249.67.0\/25", + "version":10091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.67.128", + "prefixLen":25, + "network":"192.249.67.128\/25", + "version":10090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.80.0", + "prefixLen":25, + "network":"192.249.80.0\/25", + "version":10089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.80.128", + "prefixLen":25, + "network":"192.249.80.128\/25", + "version":10088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.81.0", + "prefixLen":25, + "network":"192.249.81.0\/25", + "version":10087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.81.128", + "prefixLen":25, + "network":"192.249.81.128\/25", + "version":10086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.82.0", + "prefixLen":25, + "network":"192.249.82.0\/25", + "version":10085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.82.128", + "prefixLen":25, + "network":"192.249.82.128\/25", + "version":10084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.83.0", + "prefixLen":25, + "network":"192.249.83.0\/25", + "version":10083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.83.128", + "prefixLen":25, + "network":"192.249.83.128\/25", + "version":10082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.96.0", + "prefixLen":25, + "network":"192.249.96.0\/25", + "version":10081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.96.128", + "prefixLen":25, + "network":"192.249.96.128\/25", + "version":10080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.97.0", + "prefixLen":25, + "network":"192.249.97.0\/25", + "version":10079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.97.128", + "prefixLen":25, + "network":"192.249.97.128\/25", + "version":10078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.98.0", + "prefixLen":25, + "network":"192.249.98.0\/25", + "version":10077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.98.128", + "prefixLen":25, + "network":"192.249.98.128\/25", + "version":10076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.99.0", + "prefixLen":25, + "network":"192.249.99.0\/25", + "version":10075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.99.128", + "prefixLen":25, + "network":"192.249.99.128\/25", + "version":10074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.112.0", + "prefixLen":25, + "network":"192.249.112.0\/25", + "version":10073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.112.128", + "prefixLen":25, + "network":"192.249.112.128\/25", + "version":10072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.113.0", + "prefixLen":25, + "network":"192.249.113.0\/25", + "version":10071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.113.128", + "prefixLen":25, + "network":"192.249.113.128\/25", + "version":10070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.114.0", + "prefixLen":25, + "network":"192.249.114.0\/25", + "version":10069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.114.128", + "prefixLen":25, + "network":"192.249.114.128\/25", + "version":10068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.115.0", + "prefixLen":25, + "network":"192.249.115.0\/25", + "version":10067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.115.128", + "prefixLen":25, + "network":"192.249.115.128\/25", + "version":10066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.128.0", + "prefixLen":25, + "network":"192.249.128.0\/25", + "version":10065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.128.128", + "prefixLen":25, + "network":"192.249.128.128\/25", + "version":10064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.129.0", + "prefixLen":25, + "network":"192.249.129.0\/25", + "version":10063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.129.128", + "prefixLen":25, + "network":"192.249.129.128\/25", + "version":10062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.130.0", + "prefixLen":25, + "network":"192.249.130.0\/25", + "version":10061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.130.128", + "prefixLen":25, + "network":"192.249.130.128\/25", + "version":10060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.131.0", + "prefixLen":25, + "network":"192.249.131.0\/25", + "version":10059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.131.128", + "prefixLen":25, + "network":"192.249.131.128\/25", + "version":10058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.144.0", + "prefixLen":25, + "network":"192.249.144.0\/25", + "version":10057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.144.128", + "prefixLen":25, + "network":"192.249.144.128\/25", + "version":10056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.145.0", + "prefixLen":25, + "network":"192.249.145.0\/25", + "version":10055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.145.128", + "prefixLen":25, + "network":"192.249.145.128\/25", + "version":10054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.146.0", + "prefixLen":25, + "network":"192.249.146.0\/25", + "version":10053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.146.128", + "prefixLen":25, + "network":"192.249.146.128\/25", + "version":10052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.147.0", + "prefixLen":25, + "network":"192.249.147.0\/25", + "version":10051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.147.128", + "prefixLen":25, + "network":"192.249.147.128\/25", + "version":10050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.160.0", + "prefixLen":25, + "network":"192.249.160.0\/25", + "version":10049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.160.128", + "prefixLen":25, + "network":"192.249.160.128\/25", + "version":10048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.161.0", + "prefixLen":25, + "network":"192.249.161.0\/25", + "version":10047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.161.128", + "prefixLen":25, + "network":"192.249.161.128\/25", + "version":10046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.162.0", + "prefixLen":25, + "network":"192.249.162.0\/25", + "version":10045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.162.128", + "prefixLen":25, + "network":"192.249.162.128\/25", + "version":10044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.163.0", + "prefixLen":25, + "network":"192.249.163.0\/25", + "version":10043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.163.128", + "prefixLen":25, + "network":"192.249.163.128\/25", + "version":10042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.176.0", + "prefixLen":25, + "network":"192.249.176.0\/25", + "version":10041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.176.128", + "prefixLen":25, + "network":"192.249.176.128\/25", + "version":10040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.177.0", + "prefixLen":25, + "network":"192.249.177.0\/25", + "version":10039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.177.128", + "prefixLen":25, + "network":"192.249.177.128\/25", + "version":10038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.178.0", + "prefixLen":25, + "network":"192.249.178.0\/25", + "version":10037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.178.128", + "prefixLen":25, + "network":"192.249.178.128\/25", + "version":10036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.179.0", + "prefixLen":25, + "network":"192.249.179.0\/25", + "version":10035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.179.128", + "prefixLen":25, + "network":"192.249.179.128\/25", + "version":10034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.192.0", + "prefixLen":25, + "network":"192.249.192.0\/25", + "version":10033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.192.128", + "prefixLen":25, + "network":"192.249.192.128\/25", + "version":10032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.193.0", + "prefixLen":25, + "network":"192.249.193.0\/25", + "version":10031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.193.128", + "prefixLen":25, + "network":"192.249.193.128\/25", + "version":10030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.194.0", + "prefixLen":25, + "network":"192.249.194.0\/25", + "version":10029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.194.128", + "prefixLen":25, + "network":"192.249.194.128\/25", + "version":10028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.195.0", + "prefixLen":25, + "network":"192.249.195.0\/25", + "version":10027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.195.128", + "prefixLen":25, + "network":"192.249.195.128\/25", + "version":10026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.208.0", + "prefixLen":25, + "network":"192.249.208.0\/25", + "version":10025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.208.128", + "prefixLen":25, + "network":"192.249.208.128\/25", + "version":10024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.209.0", + "prefixLen":25, + "network":"192.249.209.0\/25", + "version":10023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.209.128", + "prefixLen":25, + "network":"192.249.209.128\/25", + "version":10022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.210.0", + "prefixLen":25, + "network":"192.249.210.0\/25", + "version":10021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.210.128", + "prefixLen":25, + "network":"192.249.210.128\/25", + "version":10020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.211.0", + "prefixLen":25, + "network":"192.249.211.0\/25", + "version":10019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.211.128", + "prefixLen":25, + "network":"192.249.211.128\/25", + "version":10018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.224.0", + "prefixLen":25, + "network":"192.249.224.0\/25", + "version":10017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.224.128", + "prefixLen":25, + "network":"192.249.224.128\/25", + "version":10016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.225.0", + "prefixLen":25, + "network":"192.249.225.0\/25", + "version":10015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.225.128", + "prefixLen":25, + "network":"192.249.225.128\/25", + "version":10014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.226.0", + "prefixLen":25, + "network":"192.249.226.0\/25", + "version":10013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.226.128", + "prefixLen":25, + "network":"192.249.226.128\/25", + "version":10012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.227.0", + "prefixLen":25, + "network":"192.249.227.0\/25", + "version":10011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.227.128", + "prefixLen":25, + "network":"192.249.227.128\/25", + "version":10010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.240.0", + "prefixLen":25, + "network":"192.249.240.0\/25", + "version":10009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.240.128", + "prefixLen":25, + "network":"192.249.240.128\/25", + "version":10008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.241.0", + "prefixLen":25, + "network":"192.249.241.0\/25", + "version":10007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.241.128", + "prefixLen":25, + "network":"192.249.241.128\/25", + "version":10006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.242.0", + "prefixLen":25, + "network":"192.249.242.0\/25", + "version":10005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.242.128", + "prefixLen":25, + "network":"192.249.242.128\/25", + "version":10004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.243.0", + "prefixLen":25, + "network":"192.249.243.0\/25", + "version":10003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.249.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.249.243.128", + "prefixLen":25, + "network":"192.249.243.128\/25", + "version":10002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64681 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.0.0", + "prefixLen":25, + "network":"192.250.0.0\/25", + "version":10129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.0.128", + "prefixLen":25, + "network":"192.250.0.128\/25", + "version":10256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.1.0", + "prefixLen":25, + "network":"192.250.1.0\/25", + "version":10255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.1.128", + "prefixLen":25, + "network":"192.250.1.128\/25", + "version":10254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.2.0", + "prefixLen":25, + "network":"192.250.2.0\/25", + "version":10253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.2.128", + "prefixLen":25, + "network":"192.250.2.128\/25", + "version":10252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.3.0", + "prefixLen":25, + "network":"192.250.3.0\/25", + "version":10251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.3.128", + "prefixLen":25, + "network":"192.250.3.128\/25", + "version":10250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.16.0", + "prefixLen":25, + "network":"192.250.16.0\/25", + "version":10249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.16.128", + "prefixLen":25, + "network":"192.250.16.128\/25", + "version":10248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.17.0", + "prefixLen":25, + "network":"192.250.17.0\/25", + "version":10247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.17.128", + "prefixLen":25, + "network":"192.250.17.128\/25", + "version":10246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.18.0", + "prefixLen":25, + "network":"192.250.18.0\/25", + "version":10245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.18.128", + "prefixLen":25, + "network":"192.250.18.128\/25", + "version":10244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.19.0", + "prefixLen":25, + "network":"192.250.19.0\/25", + "version":10243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.19.128", + "prefixLen":25, + "network":"192.250.19.128\/25", + "version":10242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.32.0", + "prefixLen":25, + "network":"192.250.32.0\/25", + "version":10241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.32.128", + "prefixLen":25, + "network":"192.250.32.128\/25", + "version":10240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.33.0", + "prefixLen":25, + "network":"192.250.33.0\/25", + "version":10239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.33.128", + "prefixLen":25, + "network":"192.250.33.128\/25", + "version":10238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.34.0", + "prefixLen":25, + "network":"192.250.34.0\/25", + "version":10237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.34.128", + "prefixLen":25, + "network":"192.250.34.128\/25", + "version":10236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.35.0", + "prefixLen":25, + "network":"192.250.35.0\/25", + "version":10235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.35.128", + "prefixLen":25, + "network":"192.250.35.128\/25", + "version":10234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.48.0", + "prefixLen":25, + "network":"192.250.48.0\/25", + "version":10233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.48.128", + "prefixLen":25, + "network":"192.250.48.128\/25", + "version":10232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.49.0", + "prefixLen":25, + "network":"192.250.49.0\/25", + "version":10231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.49.128", + "prefixLen":25, + "network":"192.250.49.128\/25", + "version":10230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.50.0", + "prefixLen":25, + "network":"192.250.50.0\/25", + "version":10229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.50.128", + "prefixLen":25, + "network":"192.250.50.128\/25", + "version":10228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.51.0", + "prefixLen":25, + "network":"192.250.51.0\/25", + "version":10227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.51.128", + "prefixLen":25, + "network":"192.250.51.128\/25", + "version":10226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.64.0", + "prefixLen":25, + "network":"192.250.64.0\/25", + "version":10225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.64.128", + "prefixLen":25, + "network":"192.250.64.128\/25", + "version":10224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.65.0", + "prefixLen":25, + "network":"192.250.65.0\/25", + "version":10223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.65.128", + "prefixLen":25, + "network":"192.250.65.128\/25", + "version":10222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.66.0", + "prefixLen":25, + "network":"192.250.66.0\/25", + "version":10221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.66.128", + "prefixLen":25, + "network":"192.250.66.128\/25", + "version":10220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.67.0", + "prefixLen":25, + "network":"192.250.67.0\/25", + "version":10219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.67.128", + "prefixLen":25, + "network":"192.250.67.128\/25", + "version":10218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.80.0", + "prefixLen":25, + "network":"192.250.80.0\/25", + "version":10217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.80.128", + "prefixLen":25, + "network":"192.250.80.128\/25", + "version":10216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.81.0", + "prefixLen":25, + "network":"192.250.81.0\/25", + "version":10215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.81.128", + "prefixLen":25, + "network":"192.250.81.128\/25", + "version":10214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.82.0", + "prefixLen":25, + "network":"192.250.82.0\/25", + "version":10213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.82.128", + "prefixLen":25, + "network":"192.250.82.128\/25", + "version":10212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.83.0", + "prefixLen":25, + "network":"192.250.83.0\/25", + "version":10211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.83.128", + "prefixLen":25, + "network":"192.250.83.128\/25", + "version":10210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.96.0", + "prefixLen":25, + "network":"192.250.96.0\/25", + "version":10209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.96.128", + "prefixLen":25, + "network":"192.250.96.128\/25", + "version":10208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.97.0", + "prefixLen":25, + "network":"192.250.97.0\/25", + "version":10207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.97.128", + "prefixLen":25, + "network":"192.250.97.128\/25", + "version":10206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.98.0", + "prefixLen":25, + "network":"192.250.98.0\/25", + "version":10205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.98.128", + "prefixLen":25, + "network":"192.250.98.128\/25", + "version":10204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.99.0", + "prefixLen":25, + "network":"192.250.99.0\/25", + "version":10203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.99.128", + "prefixLen":25, + "network":"192.250.99.128\/25", + "version":10202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.112.0", + "prefixLen":25, + "network":"192.250.112.0\/25", + "version":10201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.112.128", + "prefixLen":25, + "network":"192.250.112.128\/25", + "version":10200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.113.0", + "prefixLen":25, + "network":"192.250.113.0\/25", + "version":10199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.113.128", + "prefixLen":25, + "network":"192.250.113.128\/25", + "version":10198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.114.0", + "prefixLen":25, + "network":"192.250.114.0\/25", + "version":10197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.114.128", + "prefixLen":25, + "network":"192.250.114.128\/25", + "version":10196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.115.0", + "prefixLen":25, + "network":"192.250.115.0\/25", + "version":10195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.115.128", + "prefixLen":25, + "network":"192.250.115.128\/25", + "version":10194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.128.0", + "prefixLen":25, + "network":"192.250.128.0\/25", + "version":10193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.128.128", + "prefixLen":25, + "network":"192.250.128.128\/25", + "version":10192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.129.0", + "prefixLen":25, + "network":"192.250.129.0\/25", + "version":10191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.129.128", + "prefixLen":25, + "network":"192.250.129.128\/25", + "version":10190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.130.0", + "prefixLen":25, + "network":"192.250.130.0\/25", + "version":10189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.130.128", + "prefixLen":25, + "network":"192.250.130.128\/25", + "version":10188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.131.0", + "prefixLen":25, + "network":"192.250.131.0\/25", + "version":10187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.131.128", + "prefixLen":25, + "network":"192.250.131.128\/25", + "version":10186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.144.0", + "prefixLen":25, + "network":"192.250.144.0\/25", + "version":10185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.144.128", + "prefixLen":25, + "network":"192.250.144.128\/25", + "version":10184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.145.0", + "prefixLen":25, + "network":"192.250.145.0\/25", + "version":10183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.145.128", + "prefixLen":25, + "network":"192.250.145.128\/25", + "version":10182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.146.0", + "prefixLen":25, + "network":"192.250.146.0\/25", + "version":10181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.146.128", + "prefixLen":25, + "network":"192.250.146.128\/25", + "version":10180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.147.0", + "prefixLen":25, + "network":"192.250.147.0\/25", + "version":10179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.147.128", + "prefixLen":25, + "network":"192.250.147.128\/25", + "version":10178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.160.0", + "prefixLen":25, + "network":"192.250.160.0\/25", + "version":10177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.160.128", + "prefixLen":25, + "network":"192.250.160.128\/25", + "version":10176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.161.0", + "prefixLen":25, + "network":"192.250.161.0\/25", + "version":10175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.161.128", + "prefixLen":25, + "network":"192.250.161.128\/25", + "version":10174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.162.0", + "prefixLen":25, + "network":"192.250.162.0\/25", + "version":10173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.162.128", + "prefixLen":25, + "network":"192.250.162.128\/25", + "version":10172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.163.0", + "prefixLen":25, + "network":"192.250.163.0\/25", + "version":10171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.163.128", + "prefixLen":25, + "network":"192.250.163.128\/25", + "version":10170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.176.0", + "prefixLen":25, + "network":"192.250.176.0\/25", + "version":10169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.176.128", + "prefixLen":25, + "network":"192.250.176.128\/25", + "version":10168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.177.0", + "prefixLen":25, + "network":"192.250.177.0\/25", + "version":10167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.177.128", + "prefixLen":25, + "network":"192.250.177.128\/25", + "version":10166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.178.0", + "prefixLen":25, + "network":"192.250.178.0\/25", + "version":10165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.178.128", + "prefixLen":25, + "network":"192.250.178.128\/25", + "version":10164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.179.0", + "prefixLen":25, + "network":"192.250.179.0\/25", + "version":10163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.179.128", + "prefixLen":25, + "network":"192.250.179.128\/25", + "version":10162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.192.0", + "prefixLen":25, + "network":"192.250.192.0\/25", + "version":10161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.192.128", + "prefixLen":25, + "network":"192.250.192.128\/25", + "version":10160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.193.0", + "prefixLen":25, + "network":"192.250.193.0\/25", + "version":10159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.193.128", + "prefixLen":25, + "network":"192.250.193.128\/25", + "version":10158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.194.0", + "prefixLen":25, + "network":"192.250.194.0\/25", + "version":10157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.194.128", + "prefixLen":25, + "network":"192.250.194.128\/25", + "version":10156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.195.0", + "prefixLen":25, + "network":"192.250.195.0\/25", + "version":10155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.195.128", + "prefixLen":25, + "network":"192.250.195.128\/25", + "version":10154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.208.0", + "prefixLen":25, + "network":"192.250.208.0\/25", + "version":10153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.208.128", + "prefixLen":25, + "network":"192.250.208.128\/25", + "version":10152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.209.0", + "prefixLen":25, + "network":"192.250.209.0\/25", + "version":10151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.209.128", + "prefixLen":25, + "network":"192.250.209.128\/25", + "version":10150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.210.0", + "prefixLen":25, + "network":"192.250.210.0\/25", + "version":10149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.210.128", + "prefixLen":25, + "network":"192.250.210.128\/25", + "version":10148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.211.0", + "prefixLen":25, + "network":"192.250.211.0\/25", + "version":10147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.211.128", + "prefixLen":25, + "network":"192.250.211.128\/25", + "version":10146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.224.0", + "prefixLen":25, + "network":"192.250.224.0\/25", + "version":10145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.224.128", + "prefixLen":25, + "network":"192.250.224.128\/25", + "version":10144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.225.0", + "prefixLen":25, + "network":"192.250.225.0\/25", + "version":10143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.225.128", + "prefixLen":25, + "network":"192.250.225.128\/25", + "version":10142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.226.0", + "prefixLen":25, + "network":"192.250.226.0\/25", + "version":10141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.226.128", + "prefixLen":25, + "network":"192.250.226.128\/25", + "version":10140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.227.0", + "prefixLen":25, + "network":"192.250.227.0\/25", + "version":10139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.227.128", + "prefixLen":25, + "network":"192.250.227.128\/25", + "version":10138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.240.0", + "prefixLen":25, + "network":"192.250.240.0\/25", + "version":10137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.240.128", + "prefixLen":25, + "network":"192.250.240.128\/25", + "version":10136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.241.0", + "prefixLen":25, + "network":"192.250.241.0\/25", + "version":10135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.241.128", + "prefixLen":25, + "network":"192.250.241.128\/25", + "version":10134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.242.0", + "prefixLen":25, + "network":"192.250.242.0\/25", + "version":10133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.242.128", + "prefixLen":25, + "network":"192.250.242.128\/25", + "version":10132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.243.0", + "prefixLen":25, + "network":"192.250.243.0\/25", + "version":10131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.250.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.250.243.128", + "prefixLen":25, + "network":"192.250.243.128\/25", + "version":10130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64682 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.0.0", + "prefixLen":25, + "network":"192.251.0.0\/25", + "version":10257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.0.128", + "prefixLen":25, + "network":"192.251.0.128\/25", + "version":10384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.1.0", + "prefixLen":25, + "network":"192.251.1.0\/25", + "version":10383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.1.128", + "prefixLen":25, + "network":"192.251.1.128\/25", + "version":10382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.2.0", + "prefixLen":25, + "network":"192.251.2.0\/25", + "version":10381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.2.128", + "prefixLen":25, + "network":"192.251.2.128\/25", + "version":10380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.3.0", + "prefixLen":25, + "network":"192.251.3.0\/25", + "version":10379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.3.128", + "prefixLen":25, + "network":"192.251.3.128\/25", + "version":10378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.16.0", + "prefixLen":25, + "network":"192.251.16.0\/25", + "version":10377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.16.128", + "prefixLen":25, + "network":"192.251.16.128\/25", + "version":10376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.17.0", + "prefixLen":25, + "network":"192.251.17.0\/25", + "version":10375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.17.128", + "prefixLen":25, + "network":"192.251.17.128\/25", + "version":10374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.18.0", + "prefixLen":25, + "network":"192.251.18.0\/25", + "version":10373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.18.128", + "prefixLen":25, + "network":"192.251.18.128\/25", + "version":10372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.19.0", + "prefixLen":25, + "network":"192.251.19.0\/25", + "version":10371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.19.128", + "prefixLen":25, + "network":"192.251.19.128\/25", + "version":10370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.32.0", + "prefixLen":25, + "network":"192.251.32.0\/25", + "version":10369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.32.128", + "prefixLen":25, + "network":"192.251.32.128\/25", + "version":10368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.33.0", + "prefixLen":25, + "network":"192.251.33.0\/25", + "version":10367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.33.128", + "prefixLen":25, + "network":"192.251.33.128\/25", + "version":10366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.34.0", + "prefixLen":25, + "network":"192.251.34.0\/25", + "version":10365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.34.128", + "prefixLen":25, + "network":"192.251.34.128\/25", + "version":10364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.35.0", + "prefixLen":25, + "network":"192.251.35.0\/25", + "version":10363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.35.128", + "prefixLen":25, + "network":"192.251.35.128\/25", + "version":10362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.48.0", + "prefixLen":25, + "network":"192.251.48.0\/25", + "version":10361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.48.128", + "prefixLen":25, + "network":"192.251.48.128\/25", + "version":10360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.49.0", + "prefixLen":25, + "network":"192.251.49.0\/25", + "version":10359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.49.128", + "prefixLen":25, + "network":"192.251.49.128\/25", + "version":10358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.50.0", + "prefixLen":25, + "network":"192.251.50.0\/25", + "version":10357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.50.128", + "prefixLen":25, + "network":"192.251.50.128\/25", + "version":10356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.51.0", + "prefixLen":25, + "network":"192.251.51.0\/25", + "version":10355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.51.128", + "prefixLen":25, + "network":"192.251.51.128\/25", + "version":10354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.64.0", + "prefixLen":25, + "network":"192.251.64.0\/25", + "version":10353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.64.128", + "prefixLen":25, + "network":"192.251.64.128\/25", + "version":10352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.65.0", + "prefixLen":25, + "network":"192.251.65.0\/25", + "version":10351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.65.128", + "prefixLen":25, + "network":"192.251.65.128\/25", + "version":10350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.66.0", + "prefixLen":25, + "network":"192.251.66.0\/25", + "version":10349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.66.128", + "prefixLen":25, + "network":"192.251.66.128\/25", + "version":10348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.67.0", + "prefixLen":25, + "network":"192.251.67.0\/25", + "version":10347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.67.128", + "prefixLen":25, + "network":"192.251.67.128\/25", + "version":10346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.80.0", + "prefixLen":25, + "network":"192.251.80.0\/25", + "version":10345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.80.128", + "prefixLen":25, + "network":"192.251.80.128\/25", + "version":10344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.81.0", + "prefixLen":25, + "network":"192.251.81.0\/25", + "version":10343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.81.128", + "prefixLen":25, + "network":"192.251.81.128\/25", + "version":10342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.82.0", + "prefixLen":25, + "network":"192.251.82.0\/25", + "version":10341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.82.128", + "prefixLen":25, + "network":"192.251.82.128\/25", + "version":10340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.83.0", + "prefixLen":25, + "network":"192.251.83.0\/25", + "version":10339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.83.128", + "prefixLen":25, + "network":"192.251.83.128\/25", + "version":10338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.96.0", + "prefixLen":25, + "network":"192.251.96.0\/25", + "version":10337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.96.128", + "prefixLen":25, + "network":"192.251.96.128\/25", + "version":10336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.97.0", + "prefixLen":25, + "network":"192.251.97.0\/25", + "version":10335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.97.128", + "prefixLen":25, + "network":"192.251.97.128\/25", + "version":10334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.98.0", + "prefixLen":25, + "network":"192.251.98.0\/25", + "version":10333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.98.128", + "prefixLen":25, + "network":"192.251.98.128\/25", + "version":10332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.99.0", + "prefixLen":25, + "network":"192.251.99.0\/25", + "version":10331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.99.128", + "prefixLen":25, + "network":"192.251.99.128\/25", + "version":10330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.112.0", + "prefixLen":25, + "network":"192.251.112.0\/25", + "version":10329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.112.128", + "prefixLen":25, + "network":"192.251.112.128\/25", + "version":10328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.113.0", + "prefixLen":25, + "network":"192.251.113.0\/25", + "version":10327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.113.128", + "prefixLen":25, + "network":"192.251.113.128\/25", + "version":10326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.114.0", + "prefixLen":25, + "network":"192.251.114.0\/25", + "version":10325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.114.128", + "prefixLen":25, + "network":"192.251.114.128\/25", + "version":10324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.115.0", + "prefixLen":25, + "network":"192.251.115.0\/25", + "version":10323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.115.128", + "prefixLen":25, + "network":"192.251.115.128\/25", + "version":10322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.128.0", + "prefixLen":25, + "network":"192.251.128.0\/25", + "version":10321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.128.128", + "prefixLen":25, + "network":"192.251.128.128\/25", + "version":10320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.129.0", + "prefixLen":25, + "network":"192.251.129.0\/25", + "version":10319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.129.128", + "prefixLen":25, + "network":"192.251.129.128\/25", + "version":10318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.130.0", + "prefixLen":25, + "network":"192.251.130.0\/25", + "version":10317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.130.128", + "prefixLen":25, + "network":"192.251.130.128\/25", + "version":10316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.131.0", + "prefixLen":25, + "network":"192.251.131.0\/25", + "version":10315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.131.128", + "prefixLen":25, + "network":"192.251.131.128\/25", + "version":10314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.144.0", + "prefixLen":25, + "network":"192.251.144.0\/25", + "version":10313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.144.128", + "prefixLen":25, + "network":"192.251.144.128\/25", + "version":10312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.145.0", + "prefixLen":25, + "network":"192.251.145.0\/25", + "version":10311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.145.128", + "prefixLen":25, + "network":"192.251.145.128\/25", + "version":10310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.146.0", + "prefixLen":25, + "network":"192.251.146.0\/25", + "version":10309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.146.128", + "prefixLen":25, + "network":"192.251.146.128\/25", + "version":10308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.147.0", + "prefixLen":25, + "network":"192.251.147.0\/25", + "version":10307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.147.128", + "prefixLen":25, + "network":"192.251.147.128\/25", + "version":10306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.160.0", + "prefixLen":25, + "network":"192.251.160.0\/25", + "version":10305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.160.128", + "prefixLen":25, + "network":"192.251.160.128\/25", + "version":10304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.161.0", + "prefixLen":25, + "network":"192.251.161.0\/25", + "version":10303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.161.128", + "prefixLen":25, + "network":"192.251.161.128\/25", + "version":10302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.162.0", + "prefixLen":25, + "network":"192.251.162.0\/25", + "version":10301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.162.128", + "prefixLen":25, + "network":"192.251.162.128\/25", + "version":10300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.163.0", + "prefixLen":25, + "network":"192.251.163.0\/25", + "version":10299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.163.128", + "prefixLen":25, + "network":"192.251.163.128\/25", + "version":10298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.176.0", + "prefixLen":25, + "network":"192.251.176.0\/25", + "version":10297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.176.128", + "prefixLen":25, + "network":"192.251.176.128\/25", + "version":10296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.177.0", + "prefixLen":25, + "network":"192.251.177.0\/25", + "version":10295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.177.128", + "prefixLen":25, + "network":"192.251.177.128\/25", + "version":10294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.178.0", + "prefixLen":25, + "network":"192.251.178.0\/25", + "version":10293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.178.128", + "prefixLen":25, + "network":"192.251.178.128\/25", + "version":10292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.179.0", + "prefixLen":25, + "network":"192.251.179.0\/25", + "version":10291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.179.128", + "prefixLen":25, + "network":"192.251.179.128\/25", + "version":10290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.192.0", + "prefixLen":25, + "network":"192.251.192.0\/25", + "version":10289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.192.128", + "prefixLen":25, + "network":"192.251.192.128\/25", + "version":10288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.193.0", + "prefixLen":25, + "network":"192.251.193.0\/25", + "version":10287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.193.128", + "prefixLen":25, + "network":"192.251.193.128\/25", + "version":10286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.194.0", + "prefixLen":25, + "network":"192.251.194.0\/25", + "version":10285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.194.128", + "prefixLen":25, + "network":"192.251.194.128\/25", + "version":10284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.195.0", + "prefixLen":25, + "network":"192.251.195.0\/25", + "version":10283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.195.128", + "prefixLen":25, + "network":"192.251.195.128\/25", + "version":10282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.208.0", + "prefixLen":25, + "network":"192.251.208.0\/25", + "version":10281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.208.128", + "prefixLen":25, + "network":"192.251.208.128\/25", + "version":10280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.209.0", + "prefixLen":25, + "network":"192.251.209.0\/25", + "version":10279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.209.128", + "prefixLen":25, + "network":"192.251.209.128\/25", + "version":10278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.210.0", + "prefixLen":25, + "network":"192.251.210.0\/25", + "version":10277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.210.128", + "prefixLen":25, + "network":"192.251.210.128\/25", + "version":10276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.211.0", + "prefixLen":25, + "network":"192.251.211.0\/25", + "version":10275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.211.128", + "prefixLen":25, + "network":"192.251.211.128\/25", + "version":10274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.224.0", + "prefixLen":25, + "network":"192.251.224.0\/25", + "version":10273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.224.128", + "prefixLen":25, + "network":"192.251.224.128\/25", + "version":10272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.225.0", + "prefixLen":25, + "network":"192.251.225.0\/25", + "version":10271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.225.128", + "prefixLen":25, + "network":"192.251.225.128\/25", + "version":10270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.226.0", + "prefixLen":25, + "network":"192.251.226.0\/25", + "version":10269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.226.128", + "prefixLen":25, + "network":"192.251.226.128\/25", + "version":10268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.227.0", + "prefixLen":25, + "network":"192.251.227.0\/25", + "version":10267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.227.128", + "prefixLen":25, + "network":"192.251.227.128\/25", + "version":10266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.240.0", + "prefixLen":25, + "network":"192.251.240.0\/25", + "version":10265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.240.128", + "prefixLen":25, + "network":"192.251.240.128\/25", + "version":10264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.241.0", + "prefixLen":25, + "network":"192.251.241.0\/25", + "version":10263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.241.128", + "prefixLen":25, + "network":"192.251.241.128\/25", + "version":10262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.242.0", + "prefixLen":25, + "network":"192.251.242.0\/25", + "version":10261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.242.128", + "prefixLen":25, + "network":"192.251.242.128\/25", + "version":10260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.243.0", + "prefixLen":25, + "network":"192.251.243.0\/25", + "version":10259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.251.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.251.243.128", + "prefixLen":25, + "network":"192.251.243.128\/25", + "version":10258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64683 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.0.0", + "prefixLen":25, + "network":"192.252.0.0\/25", + "version":10385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.0.128", + "prefixLen":25, + "network":"192.252.0.128\/25", + "version":10512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.1.0", + "prefixLen":25, + "network":"192.252.1.0\/25", + "version":10511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.1.128", + "prefixLen":25, + "network":"192.252.1.128\/25", + "version":10510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.2.0", + "prefixLen":25, + "network":"192.252.2.0\/25", + "version":10509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.2.128", + "prefixLen":25, + "network":"192.252.2.128\/25", + "version":10508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.3.0", + "prefixLen":25, + "network":"192.252.3.0\/25", + "version":10507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.3.128", + "prefixLen":25, + "network":"192.252.3.128\/25", + "version":10506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.16.0", + "prefixLen":25, + "network":"192.252.16.0\/25", + "version":10505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.16.128", + "prefixLen":25, + "network":"192.252.16.128\/25", + "version":10504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.17.0", + "prefixLen":25, + "network":"192.252.17.0\/25", + "version":10503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.17.128", + "prefixLen":25, + "network":"192.252.17.128\/25", + "version":10502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.18.0", + "prefixLen":25, + "network":"192.252.18.0\/25", + "version":10501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.18.128", + "prefixLen":25, + "network":"192.252.18.128\/25", + "version":10500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.19.0", + "prefixLen":25, + "network":"192.252.19.0\/25", + "version":10499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.19.128", + "prefixLen":25, + "network":"192.252.19.128\/25", + "version":10498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.32.0", + "prefixLen":25, + "network":"192.252.32.0\/25", + "version":10497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.32.128", + "prefixLen":25, + "network":"192.252.32.128\/25", + "version":10496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.33.0", + "prefixLen":25, + "network":"192.252.33.0\/25", + "version":10495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.33.128", + "prefixLen":25, + "network":"192.252.33.128\/25", + "version":10494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.34.0", + "prefixLen":25, + "network":"192.252.34.0\/25", + "version":10493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.34.128", + "prefixLen":25, + "network":"192.252.34.128\/25", + "version":10492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.35.0", + "prefixLen":25, + "network":"192.252.35.0\/25", + "version":10491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.35.128", + "prefixLen":25, + "network":"192.252.35.128\/25", + "version":10490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.48.0", + "prefixLen":25, + "network":"192.252.48.0\/25", + "version":10489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.48.128", + "prefixLen":25, + "network":"192.252.48.128\/25", + "version":10488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.49.0", + "prefixLen":25, + "network":"192.252.49.0\/25", + "version":10487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.49.128", + "prefixLen":25, + "network":"192.252.49.128\/25", + "version":10486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.50.0", + "prefixLen":25, + "network":"192.252.50.0\/25", + "version":10485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.50.128", + "prefixLen":25, + "network":"192.252.50.128\/25", + "version":10484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.51.0", + "prefixLen":25, + "network":"192.252.51.0\/25", + "version":10483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.51.128", + "prefixLen":25, + "network":"192.252.51.128\/25", + "version":10482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.64.0", + "prefixLen":25, + "network":"192.252.64.0\/25", + "version":10481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.64.128", + "prefixLen":25, + "network":"192.252.64.128\/25", + "version":10480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.65.0", + "prefixLen":25, + "network":"192.252.65.0\/25", + "version":10479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.65.128", + "prefixLen":25, + "network":"192.252.65.128\/25", + "version":10478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.66.0", + "prefixLen":25, + "network":"192.252.66.0\/25", + "version":10477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.66.128", + "prefixLen":25, + "network":"192.252.66.128\/25", + "version":10476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.67.0", + "prefixLen":25, + "network":"192.252.67.0\/25", + "version":10475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.67.128", + "prefixLen":25, + "network":"192.252.67.128\/25", + "version":10474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.80.0", + "prefixLen":25, + "network":"192.252.80.0\/25", + "version":10473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.80.128", + "prefixLen":25, + "network":"192.252.80.128\/25", + "version":10472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.81.0", + "prefixLen":25, + "network":"192.252.81.0\/25", + "version":10471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.81.128", + "prefixLen":25, + "network":"192.252.81.128\/25", + "version":10470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.82.0", + "prefixLen":25, + "network":"192.252.82.0\/25", + "version":10469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.82.128", + "prefixLen":25, + "network":"192.252.82.128\/25", + "version":10468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.83.0", + "prefixLen":25, + "network":"192.252.83.0\/25", + "version":10467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.83.128", + "prefixLen":25, + "network":"192.252.83.128\/25", + "version":10466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.96.0", + "prefixLen":25, + "network":"192.252.96.0\/25", + "version":10465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.96.128", + "prefixLen":25, + "network":"192.252.96.128\/25", + "version":10464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.97.0", + "prefixLen":25, + "network":"192.252.97.0\/25", + "version":10463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.97.128", + "prefixLen":25, + "network":"192.252.97.128\/25", + "version":10462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.98.0", + "prefixLen":25, + "network":"192.252.98.0\/25", + "version":10461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.98.128", + "prefixLen":25, + "network":"192.252.98.128\/25", + "version":10460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.99.0", + "prefixLen":25, + "network":"192.252.99.0\/25", + "version":10459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.99.128", + "prefixLen":25, + "network":"192.252.99.128\/25", + "version":10458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.112.0", + "prefixLen":25, + "network":"192.252.112.0\/25", + "version":10457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.112.128", + "prefixLen":25, + "network":"192.252.112.128\/25", + "version":10456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.113.0", + "prefixLen":25, + "network":"192.252.113.0\/25", + "version":10455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.113.128", + "prefixLen":25, + "network":"192.252.113.128\/25", + "version":10454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.114.0", + "prefixLen":25, + "network":"192.252.114.0\/25", + "version":10453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.114.128", + "prefixLen":25, + "network":"192.252.114.128\/25", + "version":10452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.115.0", + "prefixLen":25, + "network":"192.252.115.0\/25", + "version":10451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.115.128", + "prefixLen":25, + "network":"192.252.115.128\/25", + "version":10450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.128.0", + "prefixLen":25, + "network":"192.252.128.0\/25", + "version":10449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.128.128", + "prefixLen":25, + "network":"192.252.128.128\/25", + "version":10448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.129.0", + "prefixLen":25, + "network":"192.252.129.0\/25", + "version":10447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.129.128", + "prefixLen":25, + "network":"192.252.129.128\/25", + "version":10446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.130.0", + "prefixLen":25, + "network":"192.252.130.0\/25", + "version":10445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.130.128", + "prefixLen":25, + "network":"192.252.130.128\/25", + "version":10444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.131.0", + "prefixLen":25, + "network":"192.252.131.0\/25", + "version":10443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.131.128", + "prefixLen":25, + "network":"192.252.131.128\/25", + "version":10442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.144.0", + "prefixLen":25, + "network":"192.252.144.0\/25", + "version":10441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.144.128", + "prefixLen":25, + "network":"192.252.144.128\/25", + "version":10440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.145.0", + "prefixLen":25, + "network":"192.252.145.0\/25", + "version":10439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.145.128", + "prefixLen":25, + "network":"192.252.145.128\/25", + "version":10438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.146.0", + "prefixLen":25, + "network":"192.252.146.0\/25", + "version":10437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.146.128", + "prefixLen":25, + "network":"192.252.146.128\/25", + "version":10436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.147.0", + "prefixLen":25, + "network":"192.252.147.0\/25", + "version":10435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.147.128", + "prefixLen":25, + "network":"192.252.147.128\/25", + "version":10434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.160.0", + "prefixLen":25, + "network":"192.252.160.0\/25", + "version":10433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.160.128", + "prefixLen":25, + "network":"192.252.160.128\/25", + "version":10432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.161.0", + "prefixLen":25, + "network":"192.252.161.0\/25", + "version":10431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.161.128", + "prefixLen":25, + "network":"192.252.161.128\/25", + "version":10430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.162.0", + "prefixLen":25, + "network":"192.252.162.0\/25", + "version":10429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.162.128", + "prefixLen":25, + "network":"192.252.162.128\/25", + "version":10428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.163.0", + "prefixLen":25, + "network":"192.252.163.0\/25", + "version":10427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.163.128", + "prefixLen":25, + "network":"192.252.163.128\/25", + "version":10426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.176.0", + "prefixLen":25, + "network":"192.252.176.0\/25", + "version":10425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.176.128", + "prefixLen":25, + "network":"192.252.176.128\/25", + "version":10424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.177.0", + "prefixLen":25, + "network":"192.252.177.0\/25", + "version":10423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.177.128", + "prefixLen":25, + "network":"192.252.177.128\/25", + "version":10422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.178.0", + "prefixLen":25, + "network":"192.252.178.0\/25", + "version":10421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.178.128", + "prefixLen":25, + "network":"192.252.178.128\/25", + "version":10420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.179.0", + "prefixLen":25, + "network":"192.252.179.0\/25", + "version":10419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.179.128", + "prefixLen":25, + "network":"192.252.179.128\/25", + "version":10418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.192.0", + "prefixLen":25, + "network":"192.252.192.0\/25", + "version":10417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.192.128", + "prefixLen":25, + "network":"192.252.192.128\/25", + "version":10416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.193.0", + "prefixLen":25, + "network":"192.252.193.0\/25", + "version":10415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.193.128", + "prefixLen":25, + "network":"192.252.193.128\/25", + "version":10414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.194.0", + "prefixLen":25, + "network":"192.252.194.0\/25", + "version":10413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.194.128", + "prefixLen":25, + "network":"192.252.194.128\/25", + "version":10412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.195.0", + "prefixLen":25, + "network":"192.252.195.0\/25", + "version":10411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.195.128", + "prefixLen":25, + "network":"192.252.195.128\/25", + "version":10410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.208.0", + "prefixLen":25, + "network":"192.252.208.0\/25", + "version":10409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.208.128", + "prefixLen":25, + "network":"192.252.208.128\/25", + "version":10408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.209.0", + "prefixLen":25, + "network":"192.252.209.0\/25", + "version":10407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.209.128", + "prefixLen":25, + "network":"192.252.209.128\/25", + "version":10406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.210.0", + "prefixLen":25, + "network":"192.252.210.0\/25", + "version":10405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.210.128", + "prefixLen":25, + "network":"192.252.210.128\/25", + "version":10404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.211.0", + "prefixLen":25, + "network":"192.252.211.0\/25", + "version":10403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.211.128", + "prefixLen":25, + "network":"192.252.211.128\/25", + "version":10402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.224.0", + "prefixLen":25, + "network":"192.252.224.0\/25", + "version":10401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.224.128", + "prefixLen":25, + "network":"192.252.224.128\/25", + "version":10400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.225.0", + "prefixLen":25, + "network":"192.252.225.0\/25", + "version":10399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.225.128", + "prefixLen":25, + "network":"192.252.225.128\/25", + "version":10398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.226.0", + "prefixLen":25, + "network":"192.252.226.0\/25", + "version":10397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.226.128", + "prefixLen":25, + "network":"192.252.226.128\/25", + "version":10396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.227.0", + "prefixLen":25, + "network":"192.252.227.0\/25", + "version":10395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.227.128", + "prefixLen":25, + "network":"192.252.227.128\/25", + "version":10394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.240.0", + "prefixLen":25, + "network":"192.252.240.0\/25", + "version":10393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.240.128", + "prefixLen":25, + "network":"192.252.240.128\/25", + "version":10392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.241.0", + "prefixLen":25, + "network":"192.252.241.0\/25", + "version":10391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.241.128", + "prefixLen":25, + "network":"192.252.241.128\/25", + "version":10390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.242.0", + "prefixLen":25, + "network":"192.252.242.0\/25", + "version":10389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.242.128", + "prefixLen":25, + "network":"192.252.242.128\/25", + "version":10388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.243.0", + "prefixLen":25, + "network":"192.252.243.0\/25", + "version":10387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.252.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.252.243.128", + "prefixLen":25, + "network":"192.252.243.128\/25", + "version":10386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64684 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.0.0", + "prefixLen":25, + "network":"192.253.0.0\/25", + "version":10513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.0.128", + "prefixLen":25, + "network":"192.253.0.128\/25", + "version":10640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.1.0", + "prefixLen":25, + "network":"192.253.1.0\/25", + "version":10639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.1.128", + "prefixLen":25, + "network":"192.253.1.128\/25", + "version":10638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.2.0", + "prefixLen":25, + "network":"192.253.2.0\/25", + "version":10637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.2.128", + "prefixLen":25, + "network":"192.253.2.128\/25", + "version":10636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.3.0", + "prefixLen":25, + "network":"192.253.3.0\/25", + "version":10635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.3.128", + "prefixLen":25, + "network":"192.253.3.128\/25", + "version":10634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.16.0", + "prefixLen":25, + "network":"192.253.16.0\/25", + "version":10633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.16.128", + "prefixLen":25, + "network":"192.253.16.128\/25", + "version":10632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.17.0", + "prefixLen":25, + "network":"192.253.17.0\/25", + "version":10631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.17.128", + "prefixLen":25, + "network":"192.253.17.128\/25", + "version":10630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.18.0", + "prefixLen":25, + "network":"192.253.18.0\/25", + "version":10629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.18.128", + "prefixLen":25, + "network":"192.253.18.128\/25", + "version":10628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.19.0", + "prefixLen":25, + "network":"192.253.19.0\/25", + "version":10627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.19.128", + "prefixLen":25, + "network":"192.253.19.128\/25", + "version":10626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.32.0", + "prefixLen":25, + "network":"192.253.32.0\/25", + "version":10625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.32.128", + "prefixLen":25, + "network":"192.253.32.128\/25", + "version":10624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.33.0", + "prefixLen":25, + "network":"192.253.33.0\/25", + "version":10623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.33.128", + "prefixLen":25, + "network":"192.253.33.128\/25", + "version":10622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.34.0", + "prefixLen":25, + "network":"192.253.34.0\/25", + "version":10621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.34.128", + "prefixLen":25, + "network":"192.253.34.128\/25", + "version":10620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.35.0", + "prefixLen":25, + "network":"192.253.35.0\/25", + "version":10619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.35.128", + "prefixLen":25, + "network":"192.253.35.128\/25", + "version":10618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.48.0", + "prefixLen":25, + "network":"192.253.48.0\/25", + "version":10617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.48.128", + "prefixLen":25, + "network":"192.253.48.128\/25", + "version":10616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.49.0", + "prefixLen":25, + "network":"192.253.49.0\/25", + "version":10615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.49.128", + "prefixLen":25, + "network":"192.253.49.128\/25", + "version":10614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.50.0", + "prefixLen":25, + "network":"192.253.50.0\/25", + "version":10613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.50.128", + "prefixLen":25, + "network":"192.253.50.128\/25", + "version":10612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.51.0", + "prefixLen":25, + "network":"192.253.51.0\/25", + "version":10611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.51.128", + "prefixLen":25, + "network":"192.253.51.128\/25", + "version":10610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.64.0", + "prefixLen":25, + "network":"192.253.64.0\/25", + "version":10609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.64.128", + "prefixLen":25, + "network":"192.253.64.128\/25", + "version":10608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.65.0", + "prefixLen":25, + "network":"192.253.65.0\/25", + "version":10607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.65.128", + "prefixLen":25, + "network":"192.253.65.128\/25", + "version":10606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.66.0", + "prefixLen":25, + "network":"192.253.66.0\/25", + "version":10605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.66.128", + "prefixLen":25, + "network":"192.253.66.128\/25", + "version":10604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.67.0", + "prefixLen":25, + "network":"192.253.67.0\/25", + "version":10603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.67.128", + "prefixLen":25, + "network":"192.253.67.128\/25", + "version":10602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.80.0", + "prefixLen":25, + "network":"192.253.80.0\/25", + "version":10601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.80.128", + "prefixLen":25, + "network":"192.253.80.128\/25", + "version":10600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.81.0", + "prefixLen":25, + "network":"192.253.81.0\/25", + "version":10599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.81.128", + "prefixLen":25, + "network":"192.253.81.128\/25", + "version":10598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.82.0", + "prefixLen":25, + "network":"192.253.82.0\/25", + "version":10597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.82.128", + "prefixLen":25, + "network":"192.253.82.128\/25", + "version":10596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.83.0", + "prefixLen":25, + "network":"192.253.83.0\/25", + "version":10595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.83.128", + "prefixLen":25, + "network":"192.253.83.128\/25", + "version":10594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.96.0", + "prefixLen":25, + "network":"192.253.96.0\/25", + "version":10593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.96.128", + "prefixLen":25, + "network":"192.253.96.128\/25", + "version":10592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.97.0", + "prefixLen":25, + "network":"192.253.97.0\/25", + "version":10591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.97.128", + "prefixLen":25, + "network":"192.253.97.128\/25", + "version":10590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.98.0", + "prefixLen":25, + "network":"192.253.98.0\/25", + "version":10589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.98.128", + "prefixLen":25, + "network":"192.253.98.128\/25", + "version":10588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.99.0", + "prefixLen":25, + "network":"192.253.99.0\/25", + "version":10587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.99.128", + "prefixLen":25, + "network":"192.253.99.128\/25", + "version":10586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.112.0", + "prefixLen":25, + "network":"192.253.112.0\/25", + "version":10585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.112.128", + "prefixLen":25, + "network":"192.253.112.128\/25", + "version":10584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.113.0", + "prefixLen":25, + "network":"192.253.113.0\/25", + "version":10583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.113.128", + "prefixLen":25, + "network":"192.253.113.128\/25", + "version":10582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.114.0", + "prefixLen":25, + "network":"192.253.114.0\/25", + "version":10581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.114.128", + "prefixLen":25, + "network":"192.253.114.128\/25", + "version":10580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.115.0", + "prefixLen":25, + "network":"192.253.115.0\/25", + "version":10579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.115.128", + "prefixLen":25, + "network":"192.253.115.128\/25", + "version":10578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.128.0", + "prefixLen":25, + "network":"192.253.128.0\/25", + "version":10577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.128.128", + "prefixLen":25, + "network":"192.253.128.128\/25", + "version":10576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.129.0", + "prefixLen":25, + "network":"192.253.129.0\/25", + "version":10575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.129.128", + "prefixLen":25, + "network":"192.253.129.128\/25", + "version":10574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.130.0", + "prefixLen":25, + "network":"192.253.130.0\/25", + "version":10573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.130.128", + "prefixLen":25, + "network":"192.253.130.128\/25", + "version":10572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.131.0", + "prefixLen":25, + "network":"192.253.131.0\/25", + "version":10571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.131.128", + "prefixLen":25, + "network":"192.253.131.128\/25", + "version":10570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.144.0", + "prefixLen":25, + "network":"192.253.144.0\/25", + "version":10569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.144.128", + "prefixLen":25, + "network":"192.253.144.128\/25", + "version":10568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.145.0", + "prefixLen":25, + "network":"192.253.145.0\/25", + "version":10567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.145.128", + "prefixLen":25, + "network":"192.253.145.128\/25", + "version":10566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.146.0", + "prefixLen":25, + "network":"192.253.146.0\/25", + "version":10565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.146.128", + "prefixLen":25, + "network":"192.253.146.128\/25", + "version":10564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.147.0", + "prefixLen":25, + "network":"192.253.147.0\/25", + "version":10563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.147.128", + "prefixLen":25, + "network":"192.253.147.128\/25", + "version":10562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.160.0", + "prefixLen":25, + "network":"192.253.160.0\/25", + "version":10561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.160.128", + "prefixLen":25, + "network":"192.253.160.128\/25", + "version":10560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.161.0", + "prefixLen":25, + "network":"192.253.161.0\/25", + "version":10559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.161.128", + "prefixLen":25, + "network":"192.253.161.128\/25", + "version":10558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.162.0", + "prefixLen":25, + "network":"192.253.162.0\/25", + "version":10557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.162.128", + "prefixLen":25, + "network":"192.253.162.128\/25", + "version":10556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.163.0", + "prefixLen":25, + "network":"192.253.163.0\/25", + "version":10555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.163.128", + "prefixLen":25, + "network":"192.253.163.128\/25", + "version":10554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.176.0", + "prefixLen":25, + "network":"192.253.176.0\/25", + "version":10553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.176.128", + "prefixLen":25, + "network":"192.253.176.128\/25", + "version":10552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.177.0", + "prefixLen":25, + "network":"192.253.177.0\/25", + "version":10551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.177.128", + "prefixLen":25, + "network":"192.253.177.128\/25", + "version":10550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.178.0", + "prefixLen":25, + "network":"192.253.178.0\/25", + "version":10549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.178.128", + "prefixLen":25, + "network":"192.253.178.128\/25", + "version":10548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.179.0", + "prefixLen":25, + "network":"192.253.179.0\/25", + "version":10547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.179.128", + "prefixLen":25, + "network":"192.253.179.128\/25", + "version":10546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.192.0", + "prefixLen":25, + "network":"192.253.192.0\/25", + "version":10545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.192.128", + "prefixLen":25, + "network":"192.253.192.128\/25", + "version":10544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.193.0", + "prefixLen":25, + "network":"192.253.193.0\/25", + "version":10543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.193.128", + "prefixLen":25, + "network":"192.253.193.128\/25", + "version":10542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.194.0", + "prefixLen":25, + "network":"192.253.194.0\/25", + "version":10541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.194.128", + "prefixLen":25, + "network":"192.253.194.128\/25", + "version":10540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.195.0", + "prefixLen":25, + "network":"192.253.195.0\/25", + "version":10539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.195.128", + "prefixLen":25, + "network":"192.253.195.128\/25", + "version":10538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.208.0", + "prefixLen":25, + "network":"192.253.208.0\/25", + "version":10537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.208.128", + "prefixLen":25, + "network":"192.253.208.128\/25", + "version":10536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.209.0", + "prefixLen":25, + "network":"192.253.209.0\/25", + "version":10535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.209.128", + "prefixLen":25, + "network":"192.253.209.128\/25", + "version":10534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.210.0", + "prefixLen":25, + "network":"192.253.210.0\/25", + "version":10533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.210.128", + "prefixLen":25, + "network":"192.253.210.128\/25", + "version":10532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.211.0", + "prefixLen":25, + "network":"192.253.211.0\/25", + "version":10531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.211.128", + "prefixLen":25, + "network":"192.253.211.128\/25", + "version":10530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.224.0", + "prefixLen":25, + "network":"192.253.224.0\/25", + "version":10529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.224.128", + "prefixLen":25, + "network":"192.253.224.128\/25", + "version":10528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.225.0", + "prefixLen":25, + "network":"192.253.225.0\/25", + "version":10527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.225.128", + "prefixLen":25, + "network":"192.253.225.128\/25", + "version":10526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.226.0", + "prefixLen":25, + "network":"192.253.226.0\/25", + "version":10525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.226.128", + "prefixLen":25, + "network":"192.253.226.128\/25", + "version":10524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.227.0", + "prefixLen":25, + "network":"192.253.227.0\/25", + "version":10523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.227.128", + "prefixLen":25, + "network":"192.253.227.128\/25", + "version":10522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.240.0", + "prefixLen":25, + "network":"192.253.240.0\/25", + "version":10521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.240.128", + "prefixLen":25, + "network":"192.253.240.128\/25", + "version":10520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.241.0", + "prefixLen":25, + "network":"192.253.241.0\/25", + "version":10519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.241.128", + "prefixLen":25, + "network":"192.253.241.128\/25", + "version":10518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.242.0", + "prefixLen":25, + "network":"192.253.242.0\/25", + "version":10517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.242.128", + "prefixLen":25, + "network":"192.253.242.128\/25", + "version":10516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.243.0", + "prefixLen":25, + "network":"192.253.243.0\/25", + "version":10515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.253.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.253.243.128", + "prefixLen":25, + "network":"192.253.243.128\/25", + "version":10514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64685 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.0.0", + "prefixLen":25, + "network":"192.254.0.0\/25", + "version":10641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.0.128", + "prefixLen":25, + "network":"192.254.0.128\/25", + "version":10768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.1.0", + "prefixLen":25, + "network":"192.254.1.0\/25", + "version":10767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.1.128", + "prefixLen":25, + "network":"192.254.1.128\/25", + "version":10766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.2.0", + "prefixLen":25, + "network":"192.254.2.0\/25", + "version":10765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.2.128", + "prefixLen":25, + "network":"192.254.2.128\/25", + "version":10764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.3.0", + "prefixLen":25, + "network":"192.254.3.0\/25", + "version":10763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.3.128", + "prefixLen":25, + "network":"192.254.3.128\/25", + "version":10762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.16.0", + "prefixLen":25, + "network":"192.254.16.0\/25", + "version":10761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.16.128", + "prefixLen":25, + "network":"192.254.16.128\/25", + "version":10760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.17.0", + "prefixLen":25, + "network":"192.254.17.0\/25", + "version":10759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.17.128", + "prefixLen":25, + "network":"192.254.17.128\/25", + "version":10758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.18.0", + "prefixLen":25, + "network":"192.254.18.0\/25", + "version":10757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.18.128", + "prefixLen":25, + "network":"192.254.18.128\/25", + "version":10756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.19.0", + "prefixLen":25, + "network":"192.254.19.0\/25", + "version":10755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.19.128", + "prefixLen":25, + "network":"192.254.19.128\/25", + "version":10754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.32.0", + "prefixLen":25, + "network":"192.254.32.0\/25", + "version":10753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.32.128", + "prefixLen":25, + "network":"192.254.32.128\/25", + "version":10752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.33.0", + "prefixLen":25, + "network":"192.254.33.0\/25", + "version":10751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.33.128", + "prefixLen":25, + "network":"192.254.33.128\/25", + "version":10750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.34.0", + "prefixLen":25, + "network":"192.254.34.0\/25", + "version":10749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.34.128", + "prefixLen":25, + "network":"192.254.34.128\/25", + "version":10748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.35.0", + "prefixLen":25, + "network":"192.254.35.0\/25", + "version":10747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.35.128", + "prefixLen":25, + "network":"192.254.35.128\/25", + "version":10746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.48.0", + "prefixLen":25, + "network":"192.254.48.0\/25", + "version":10745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.48.128", + "prefixLen":25, + "network":"192.254.48.128\/25", + "version":10744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.49.0", + "prefixLen":25, + "network":"192.254.49.0\/25", + "version":10743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.49.128", + "prefixLen":25, + "network":"192.254.49.128\/25", + "version":10742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.50.0", + "prefixLen":25, + "network":"192.254.50.0\/25", + "version":10741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.50.128", + "prefixLen":25, + "network":"192.254.50.128\/25", + "version":10740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.51.0", + "prefixLen":25, + "network":"192.254.51.0\/25", + "version":10739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.51.128", + "prefixLen":25, + "network":"192.254.51.128\/25", + "version":10738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.64.0", + "prefixLen":25, + "network":"192.254.64.0\/25", + "version":10737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.64.128", + "prefixLen":25, + "network":"192.254.64.128\/25", + "version":10736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.65.0", + "prefixLen":25, + "network":"192.254.65.0\/25", + "version":10735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.65.128", + "prefixLen":25, + "network":"192.254.65.128\/25", + "version":10734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.66.0", + "prefixLen":25, + "network":"192.254.66.0\/25", + "version":10733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.66.128", + "prefixLen":25, + "network":"192.254.66.128\/25", + "version":10732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.67.0", + "prefixLen":25, + "network":"192.254.67.0\/25", + "version":10731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.67.128", + "prefixLen":25, + "network":"192.254.67.128\/25", + "version":10730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.80.0", + "prefixLen":25, + "network":"192.254.80.0\/25", + "version":10729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.80.128", + "prefixLen":25, + "network":"192.254.80.128\/25", + "version":10728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.81.0", + "prefixLen":25, + "network":"192.254.81.0\/25", + "version":10727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.81.128", + "prefixLen":25, + "network":"192.254.81.128\/25", + "version":10726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.82.0", + "prefixLen":25, + "network":"192.254.82.0\/25", + "version":10725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.82.128", + "prefixLen":25, + "network":"192.254.82.128\/25", + "version":10724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.83.0", + "prefixLen":25, + "network":"192.254.83.0\/25", + "version":10723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.83.128", + "prefixLen":25, + "network":"192.254.83.128\/25", + "version":10722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.96.0", + "prefixLen":25, + "network":"192.254.96.0\/25", + "version":10721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.96.128", + "prefixLen":25, + "network":"192.254.96.128\/25", + "version":10720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.97.0", + "prefixLen":25, + "network":"192.254.97.0\/25", + "version":10719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.97.128", + "prefixLen":25, + "network":"192.254.97.128\/25", + "version":10718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.98.0", + "prefixLen":25, + "network":"192.254.98.0\/25", + "version":10717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.98.128", + "prefixLen":25, + "network":"192.254.98.128\/25", + "version":10716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.99.0", + "prefixLen":25, + "network":"192.254.99.0\/25", + "version":10715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.99.128", + "prefixLen":25, + "network":"192.254.99.128\/25", + "version":10714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.112.0", + "prefixLen":25, + "network":"192.254.112.0\/25", + "version":10713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.112.128", + "prefixLen":25, + "network":"192.254.112.128\/25", + "version":10712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.113.0", + "prefixLen":25, + "network":"192.254.113.0\/25", + "version":10711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.113.128", + "prefixLen":25, + "network":"192.254.113.128\/25", + "version":10710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.114.0", + "prefixLen":25, + "network":"192.254.114.0\/25", + "version":10709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.114.128", + "prefixLen":25, + "network":"192.254.114.128\/25", + "version":10708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.115.0", + "prefixLen":25, + "network":"192.254.115.0\/25", + "version":10707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.115.128", + "prefixLen":25, + "network":"192.254.115.128\/25", + "version":10706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.128.0", + "prefixLen":25, + "network":"192.254.128.0\/25", + "version":10705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.128.128", + "prefixLen":25, + "network":"192.254.128.128\/25", + "version":10704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.129.0", + "prefixLen":25, + "network":"192.254.129.0\/25", + "version":10703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.129.128", + "prefixLen":25, + "network":"192.254.129.128\/25", + "version":10702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.130.0", + "prefixLen":25, + "network":"192.254.130.0\/25", + "version":10701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.130.128", + "prefixLen":25, + "network":"192.254.130.128\/25", + "version":10700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.131.0", + "prefixLen":25, + "network":"192.254.131.0\/25", + "version":10699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.131.128", + "prefixLen":25, + "network":"192.254.131.128\/25", + "version":10698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.144.0", + "prefixLen":25, + "network":"192.254.144.0\/25", + "version":10697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.144.128", + "prefixLen":25, + "network":"192.254.144.128\/25", + "version":10696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.145.0", + "prefixLen":25, + "network":"192.254.145.0\/25", + "version":10695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.145.128", + "prefixLen":25, + "network":"192.254.145.128\/25", + "version":10694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.146.0", + "prefixLen":25, + "network":"192.254.146.0\/25", + "version":10693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.146.128", + "prefixLen":25, + "network":"192.254.146.128\/25", + "version":10692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.147.0", + "prefixLen":25, + "network":"192.254.147.0\/25", + "version":10691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.147.128", + "prefixLen":25, + "network":"192.254.147.128\/25", + "version":10690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.160.0", + "prefixLen":25, + "network":"192.254.160.0\/25", + "version":10689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.160.128", + "prefixLen":25, + "network":"192.254.160.128\/25", + "version":10688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.161.0", + "prefixLen":25, + "network":"192.254.161.0\/25", + "version":10687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.161.128", + "prefixLen":25, + "network":"192.254.161.128\/25", + "version":10686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.162.0", + "prefixLen":25, + "network":"192.254.162.0\/25", + "version":10685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.162.128", + "prefixLen":25, + "network":"192.254.162.128\/25", + "version":10684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.163.0", + "prefixLen":25, + "network":"192.254.163.0\/25", + "version":10683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.163.128", + "prefixLen":25, + "network":"192.254.163.128\/25", + "version":10682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.176.0", + "prefixLen":25, + "network":"192.254.176.0\/25", + "version":10681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.176.128", + "prefixLen":25, + "network":"192.254.176.128\/25", + "version":10680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.177.0", + "prefixLen":25, + "network":"192.254.177.0\/25", + "version":10679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.177.128", + "prefixLen":25, + "network":"192.254.177.128\/25", + "version":10678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.178.0", + "prefixLen":25, + "network":"192.254.178.0\/25", + "version":10677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.178.128", + "prefixLen":25, + "network":"192.254.178.128\/25", + "version":10676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.179.0", + "prefixLen":25, + "network":"192.254.179.0\/25", + "version":10675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.179.128", + "prefixLen":25, + "network":"192.254.179.128\/25", + "version":10674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.192.0", + "prefixLen":25, + "network":"192.254.192.0\/25", + "version":10673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.192.128", + "prefixLen":25, + "network":"192.254.192.128\/25", + "version":10672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.193.0", + "prefixLen":25, + "network":"192.254.193.0\/25", + "version":10671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.193.128", + "prefixLen":25, + "network":"192.254.193.128\/25", + "version":10670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.194.0", + "prefixLen":25, + "network":"192.254.194.0\/25", + "version":10669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.194.128", + "prefixLen":25, + "network":"192.254.194.128\/25", + "version":10668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.195.0", + "prefixLen":25, + "network":"192.254.195.0\/25", + "version":10667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.195.128", + "prefixLen":25, + "network":"192.254.195.128\/25", + "version":10666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.208.0", + "prefixLen":25, + "network":"192.254.208.0\/25", + "version":10665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.208.128", + "prefixLen":25, + "network":"192.254.208.128\/25", + "version":10664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.209.0", + "prefixLen":25, + "network":"192.254.209.0\/25", + "version":10663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.209.128", + "prefixLen":25, + "network":"192.254.209.128\/25", + "version":10662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.210.0", + "prefixLen":25, + "network":"192.254.210.0\/25", + "version":10661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.210.128", + "prefixLen":25, + "network":"192.254.210.128\/25", + "version":10660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.211.0", + "prefixLen":25, + "network":"192.254.211.0\/25", + "version":10659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.211.128", + "prefixLen":25, + "network":"192.254.211.128\/25", + "version":10658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.224.0", + "prefixLen":25, + "network":"192.254.224.0\/25", + "version":10657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.224.128", + "prefixLen":25, + "network":"192.254.224.128\/25", + "version":10656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.225.0", + "prefixLen":25, + "network":"192.254.225.0\/25", + "version":10655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.225.128", + "prefixLen":25, + "network":"192.254.225.128\/25", + "version":10654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.226.0", + "prefixLen":25, + "network":"192.254.226.0\/25", + "version":10653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.226.128", + "prefixLen":25, + "network":"192.254.226.128\/25", + "version":10652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.227.0", + "prefixLen":25, + "network":"192.254.227.0\/25", + "version":10651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.227.128", + "prefixLen":25, + "network":"192.254.227.128\/25", + "version":10650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.240.0", + "prefixLen":25, + "network":"192.254.240.0\/25", + "version":10649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.240.128", + "prefixLen":25, + "network":"192.254.240.128\/25", + "version":10648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.241.0", + "prefixLen":25, + "network":"192.254.241.0\/25", + "version":10647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.241.128", + "prefixLen":25, + "network":"192.254.241.128\/25", + "version":10646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.242.0", + "prefixLen":25, + "network":"192.254.242.0\/25", + "version":10645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.242.128", + "prefixLen":25, + "network":"192.254.242.128\/25", + "version":10644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.243.0", + "prefixLen":25, + "network":"192.254.243.0\/25", + "version":10643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.254.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.254.243.128", + "prefixLen":25, + "network":"192.254.243.128\/25", + "version":10642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64686 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.0.0", + "prefixLen":25, + "network":"192.255.0.0\/25", + "version":10769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.0.128", + "prefixLen":25, + "network":"192.255.0.128\/25", + "version":10896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.1.0", + "prefixLen":25, + "network":"192.255.1.0\/25", + "version":10895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.1.128", + "prefixLen":25, + "network":"192.255.1.128\/25", + "version":10894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.2.0", + "prefixLen":25, + "network":"192.255.2.0\/25", + "version":10893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.2.128", + "prefixLen":25, + "network":"192.255.2.128\/25", + "version":10892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.3.0", + "prefixLen":25, + "network":"192.255.3.0\/25", + "version":10891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.3.128", + "prefixLen":25, + "network":"192.255.3.128\/25", + "version":10890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.16.0", + "prefixLen":25, + "network":"192.255.16.0\/25", + "version":10889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.16.128", + "prefixLen":25, + "network":"192.255.16.128\/25", + "version":10888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.17.0", + "prefixLen":25, + "network":"192.255.17.0\/25", + "version":10887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.17.128", + "prefixLen":25, + "network":"192.255.17.128\/25", + "version":10886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.18.0", + "prefixLen":25, + "network":"192.255.18.0\/25", + "version":10885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.18.128", + "prefixLen":25, + "network":"192.255.18.128\/25", + "version":10884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.19.0", + "prefixLen":25, + "network":"192.255.19.0\/25", + "version":10883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.19.128", + "prefixLen":25, + "network":"192.255.19.128\/25", + "version":10882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.32.0", + "prefixLen":25, + "network":"192.255.32.0\/25", + "version":10881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.32.128", + "prefixLen":25, + "network":"192.255.32.128\/25", + "version":10880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.33.0", + "prefixLen":25, + "network":"192.255.33.0\/25", + "version":10879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.33.128", + "prefixLen":25, + "network":"192.255.33.128\/25", + "version":10878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.34.0", + "prefixLen":25, + "network":"192.255.34.0\/25", + "version":10877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.34.128", + "prefixLen":25, + "network":"192.255.34.128\/25", + "version":10876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.35.0", + "prefixLen":25, + "network":"192.255.35.0\/25", + "version":10875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.35.128", + "prefixLen":25, + "network":"192.255.35.128\/25", + "version":10874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.48.0", + "prefixLen":25, + "network":"192.255.48.0\/25", + "version":10873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.48.128", + "prefixLen":25, + "network":"192.255.48.128\/25", + "version":10872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.49.0", + "prefixLen":25, + "network":"192.255.49.0\/25", + "version":10871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.49.128", + "prefixLen":25, + "network":"192.255.49.128\/25", + "version":10870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.50.0", + "prefixLen":25, + "network":"192.255.50.0\/25", + "version":10869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.50.128", + "prefixLen":25, + "network":"192.255.50.128\/25", + "version":10868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.51.0", + "prefixLen":25, + "network":"192.255.51.0\/25", + "version":10867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.51.128", + "prefixLen":25, + "network":"192.255.51.128\/25", + "version":10866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.64.0", + "prefixLen":25, + "network":"192.255.64.0\/25", + "version":10865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.64.128", + "prefixLen":25, + "network":"192.255.64.128\/25", + "version":10864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.65.0", + "prefixLen":25, + "network":"192.255.65.0\/25", + "version":10863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.65.128", + "prefixLen":25, + "network":"192.255.65.128\/25", + "version":10862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.66.0", + "prefixLen":25, + "network":"192.255.66.0\/25", + "version":10861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.66.128", + "prefixLen":25, + "network":"192.255.66.128\/25", + "version":10860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.67.0", + "prefixLen":25, + "network":"192.255.67.0\/25", + "version":10859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.67.128", + "prefixLen":25, + "network":"192.255.67.128\/25", + "version":10858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.80.0", + "prefixLen":25, + "network":"192.255.80.0\/25", + "version":10857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.80.128", + "prefixLen":25, + "network":"192.255.80.128\/25", + "version":10856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.81.0", + "prefixLen":25, + "network":"192.255.81.0\/25", + "version":10855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.81.128", + "prefixLen":25, + "network":"192.255.81.128\/25", + "version":10854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.82.0", + "prefixLen":25, + "network":"192.255.82.0\/25", + "version":10853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.82.128", + "prefixLen":25, + "network":"192.255.82.128\/25", + "version":10852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.83.0", + "prefixLen":25, + "network":"192.255.83.0\/25", + "version":10851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.83.128", + "prefixLen":25, + "network":"192.255.83.128\/25", + "version":10850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.96.0", + "prefixLen":25, + "network":"192.255.96.0\/25", + "version":10849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.96.128", + "prefixLen":25, + "network":"192.255.96.128\/25", + "version":10848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.97.0", + "prefixLen":25, + "network":"192.255.97.0\/25", + "version":10847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.97.128", + "prefixLen":25, + "network":"192.255.97.128\/25", + "version":10846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.98.0", + "prefixLen":25, + "network":"192.255.98.0\/25", + "version":10845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.98.128", + "prefixLen":25, + "network":"192.255.98.128\/25", + "version":10844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.99.0", + "prefixLen":25, + "network":"192.255.99.0\/25", + "version":10843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.99.128", + "prefixLen":25, + "network":"192.255.99.128\/25", + "version":10842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.112.0", + "prefixLen":25, + "network":"192.255.112.0\/25", + "version":10841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.112.128", + "prefixLen":25, + "network":"192.255.112.128\/25", + "version":10840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.113.0", + "prefixLen":25, + "network":"192.255.113.0\/25", + "version":10839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.113.128", + "prefixLen":25, + "network":"192.255.113.128\/25", + "version":10838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.114.0", + "prefixLen":25, + "network":"192.255.114.0\/25", + "version":10837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.114.128", + "prefixLen":25, + "network":"192.255.114.128\/25", + "version":10836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.115.0", + "prefixLen":25, + "network":"192.255.115.0\/25", + "version":10835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.115.128", + "prefixLen":25, + "network":"192.255.115.128\/25", + "version":10834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.128.0", + "prefixLen":25, + "network":"192.255.128.0\/25", + "version":10833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.128.128", + "prefixLen":25, + "network":"192.255.128.128\/25", + "version":10832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.129.0", + "prefixLen":25, + "network":"192.255.129.0\/25", + "version":10831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.129.128", + "prefixLen":25, + "network":"192.255.129.128\/25", + "version":10830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.130.0", + "prefixLen":25, + "network":"192.255.130.0\/25", + "version":10829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.130.128", + "prefixLen":25, + "network":"192.255.130.128\/25", + "version":10828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.131.0", + "prefixLen":25, + "network":"192.255.131.0\/25", + "version":10827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.131.128", + "prefixLen":25, + "network":"192.255.131.128\/25", + "version":10826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.144.0", + "prefixLen":25, + "network":"192.255.144.0\/25", + "version":10825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.144.128", + "prefixLen":25, + "network":"192.255.144.128\/25", + "version":10824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.145.0", + "prefixLen":25, + "network":"192.255.145.0\/25", + "version":10823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.145.128", + "prefixLen":25, + "network":"192.255.145.128\/25", + "version":10822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.146.0", + "prefixLen":25, + "network":"192.255.146.0\/25", + "version":10821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.146.128", + "prefixLen":25, + "network":"192.255.146.128\/25", + "version":10820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.147.0", + "prefixLen":25, + "network":"192.255.147.0\/25", + "version":10819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.147.128", + "prefixLen":25, + "network":"192.255.147.128\/25", + "version":10818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.160.0", + "prefixLen":25, + "network":"192.255.160.0\/25", + "version":10817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.160.128", + "prefixLen":25, + "network":"192.255.160.128\/25", + "version":10816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.161.0", + "prefixLen":25, + "network":"192.255.161.0\/25", + "version":10815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.161.128", + "prefixLen":25, + "network":"192.255.161.128\/25", + "version":10814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.162.0", + "prefixLen":25, + "network":"192.255.162.0\/25", + "version":10813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.162.128", + "prefixLen":25, + "network":"192.255.162.128\/25", + "version":10812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.163.0", + "prefixLen":25, + "network":"192.255.163.0\/25", + "version":10811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.163.128", + "prefixLen":25, + "network":"192.255.163.128\/25", + "version":10810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.176.0", + "prefixLen":25, + "network":"192.255.176.0\/25", + "version":10809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.176.128", + "prefixLen":25, + "network":"192.255.176.128\/25", + "version":10808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.177.0", + "prefixLen":25, + "network":"192.255.177.0\/25", + "version":10807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.177.128", + "prefixLen":25, + "network":"192.255.177.128\/25", + "version":10806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.178.0", + "prefixLen":25, + "network":"192.255.178.0\/25", + "version":10805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.178.128", + "prefixLen":25, + "network":"192.255.178.128\/25", + "version":10804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.179.0", + "prefixLen":25, + "network":"192.255.179.0\/25", + "version":10803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.179.128", + "prefixLen":25, + "network":"192.255.179.128\/25", + "version":10802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.192.0", + "prefixLen":25, + "network":"192.255.192.0\/25", + "version":10801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.192.128", + "prefixLen":25, + "network":"192.255.192.128\/25", + "version":10800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.193.0", + "prefixLen":25, + "network":"192.255.193.0\/25", + "version":10799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.193.128", + "prefixLen":25, + "network":"192.255.193.128\/25", + "version":10798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.194.0", + "prefixLen":25, + "network":"192.255.194.0\/25", + "version":10797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.194.128", + "prefixLen":25, + "network":"192.255.194.128\/25", + "version":10796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.195.0", + "prefixLen":25, + "network":"192.255.195.0\/25", + "version":10795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.195.128", + "prefixLen":25, + "network":"192.255.195.128\/25", + "version":10794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.208.0", + "prefixLen":25, + "network":"192.255.208.0\/25", + "version":10793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.208.128", + "prefixLen":25, + "network":"192.255.208.128\/25", + "version":10792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.209.0", + "prefixLen":25, + "network":"192.255.209.0\/25", + "version":10791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.209.128", + "prefixLen":25, + "network":"192.255.209.128\/25", + "version":10790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.210.0", + "prefixLen":25, + "network":"192.255.210.0\/25", + "version":10789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.210.128", + "prefixLen":25, + "network":"192.255.210.128\/25", + "version":10788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.211.0", + "prefixLen":25, + "network":"192.255.211.0\/25", + "version":10787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.211.128", + "prefixLen":25, + "network":"192.255.211.128\/25", + "version":10786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.224.0", + "prefixLen":25, + "network":"192.255.224.0\/25", + "version":10785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.224.128", + "prefixLen":25, + "network":"192.255.224.128\/25", + "version":10784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.225.0", + "prefixLen":25, + "network":"192.255.225.0\/25", + "version":10783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.225.128", + "prefixLen":25, + "network":"192.255.225.128\/25", + "version":10782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.226.0", + "prefixLen":25, + "network":"192.255.226.0\/25", + "version":10781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.226.128", + "prefixLen":25, + "network":"192.255.226.128\/25", + "version":10780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.227.0", + "prefixLen":25, + "network":"192.255.227.0\/25", + "version":10779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.227.128", + "prefixLen":25, + "network":"192.255.227.128\/25", + "version":10778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.240.0", + "prefixLen":25, + "network":"192.255.240.0\/25", + "version":10777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.240.128", + "prefixLen":25, + "network":"192.255.240.128\/25", + "version":10776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.241.0", + "prefixLen":25, + "network":"192.255.241.0\/25", + "version":10775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.241.128", + "prefixLen":25, + "network":"192.255.241.128\/25", + "version":10774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.242.0", + "prefixLen":25, + "network":"192.255.242.0\/25", + "version":10773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.242.128", + "prefixLen":25, + "network":"192.255.242.128\/25", + "version":10772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.243.0", + "prefixLen":25, + "network":"192.255.243.0\/25", + "version":10771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"192.255.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"192.255.243.128", + "prefixLen":25, + "network":"192.255.243.128\/25", + "version":10770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64687 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.0.0", + "prefixLen":25, + "network":"193.0.0.0\/25", + "version":10897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.0.128", + "prefixLen":25, + "network":"193.0.0.128\/25", + "version":11024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.1.0", + "prefixLen":25, + "network":"193.0.1.0\/25", + "version":11023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.1.128", + "prefixLen":25, + "network":"193.0.1.128\/25", + "version":11022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.2.0", + "prefixLen":25, + "network":"193.0.2.0\/25", + "version":11021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.2.128", + "prefixLen":25, + "network":"193.0.2.128\/25", + "version":11020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.3.0", + "prefixLen":25, + "network":"193.0.3.0\/25", + "version":11019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.3.128", + "prefixLen":25, + "network":"193.0.3.128\/25", + "version":11018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.16.0", + "prefixLen":25, + "network":"193.0.16.0\/25", + "version":11017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.16.128", + "prefixLen":25, + "network":"193.0.16.128\/25", + "version":11016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.17.0", + "prefixLen":25, + "network":"193.0.17.0\/25", + "version":11015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.17.128", + "prefixLen":25, + "network":"193.0.17.128\/25", + "version":11014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.18.0", + "prefixLen":25, + "network":"193.0.18.0\/25", + "version":11013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.18.128", + "prefixLen":25, + "network":"193.0.18.128\/25", + "version":11012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.19.0", + "prefixLen":25, + "network":"193.0.19.0\/25", + "version":11011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.19.128", + "prefixLen":25, + "network":"193.0.19.128\/25", + "version":11010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.32.0", + "prefixLen":25, + "network":"193.0.32.0\/25", + "version":11009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.32.128", + "prefixLen":25, + "network":"193.0.32.128\/25", + "version":11008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.33.0", + "prefixLen":25, + "network":"193.0.33.0\/25", + "version":11007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.33.128", + "prefixLen":25, + "network":"193.0.33.128\/25", + "version":11006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.34.0", + "prefixLen":25, + "network":"193.0.34.0\/25", + "version":11005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.34.128", + "prefixLen":25, + "network":"193.0.34.128\/25", + "version":11004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.35.0", + "prefixLen":25, + "network":"193.0.35.0\/25", + "version":11003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.35.128", + "prefixLen":25, + "network":"193.0.35.128\/25", + "version":11002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.48.0", + "prefixLen":25, + "network":"193.0.48.0\/25", + "version":11001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.48.128", + "prefixLen":25, + "network":"193.0.48.128\/25", + "version":11000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.49.0", + "prefixLen":25, + "network":"193.0.49.0\/25", + "version":10999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.49.128", + "prefixLen":25, + "network":"193.0.49.128\/25", + "version":10998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.50.0", + "prefixLen":25, + "network":"193.0.50.0\/25", + "version":10997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.50.128", + "prefixLen":25, + "network":"193.0.50.128\/25", + "version":10996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.51.0", + "prefixLen":25, + "network":"193.0.51.0\/25", + "version":10995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.51.128", + "prefixLen":25, + "network":"193.0.51.128\/25", + "version":10994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.64.0", + "prefixLen":25, + "network":"193.0.64.0\/25", + "version":10993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.64.128", + "prefixLen":25, + "network":"193.0.64.128\/25", + "version":10992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.65.0", + "prefixLen":25, + "network":"193.0.65.0\/25", + "version":10991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.65.128", + "prefixLen":25, + "network":"193.0.65.128\/25", + "version":10990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.66.0", + "prefixLen":25, + "network":"193.0.66.0\/25", + "version":10989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.66.128", + "prefixLen":25, + "network":"193.0.66.128\/25", + "version":10988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.67.0", + "prefixLen":25, + "network":"193.0.67.0\/25", + "version":10987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.67.128", + "prefixLen":25, + "network":"193.0.67.128\/25", + "version":10986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.80.0", + "prefixLen":25, + "network":"193.0.80.0\/25", + "version":10985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.80.128", + "prefixLen":25, + "network":"193.0.80.128\/25", + "version":10984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.81.0", + "prefixLen":25, + "network":"193.0.81.0\/25", + "version":10983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.81.128", + "prefixLen":25, + "network":"193.0.81.128\/25", + "version":10982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.82.0", + "prefixLen":25, + "network":"193.0.82.0\/25", + "version":10981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.82.128", + "prefixLen":25, + "network":"193.0.82.128\/25", + "version":10980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.83.0", + "prefixLen":25, + "network":"193.0.83.0\/25", + "version":10979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.83.128", + "prefixLen":25, + "network":"193.0.83.128\/25", + "version":10978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.96.0", + "prefixLen":25, + "network":"193.0.96.0\/25", + "version":10977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.96.128", + "prefixLen":25, + "network":"193.0.96.128\/25", + "version":10976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.97.0", + "prefixLen":25, + "network":"193.0.97.0\/25", + "version":10975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.97.128", + "prefixLen":25, + "network":"193.0.97.128\/25", + "version":10974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.98.0", + "prefixLen":25, + "network":"193.0.98.0\/25", + "version":10973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.98.128", + "prefixLen":25, + "network":"193.0.98.128\/25", + "version":10972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.99.0", + "prefixLen":25, + "network":"193.0.99.0\/25", + "version":10971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.99.128", + "prefixLen":25, + "network":"193.0.99.128\/25", + "version":10970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.112.0", + "prefixLen":25, + "network":"193.0.112.0\/25", + "version":10969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.112.128", + "prefixLen":25, + "network":"193.0.112.128\/25", + "version":10968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.113.0", + "prefixLen":25, + "network":"193.0.113.0\/25", + "version":10967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.113.128", + "prefixLen":25, + "network":"193.0.113.128\/25", + "version":10966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.114.0", + "prefixLen":25, + "network":"193.0.114.0\/25", + "version":10965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.114.128", + "prefixLen":25, + "network":"193.0.114.128\/25", + "version":10964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.115.0", + "prefixLen":25, + "network":"193.0.115.0\/25", + "version":10963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.115.128", + "prefixLen":25, + "network":"193.0.115.128\/25", + "version":10962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.128.0", + "prefixLen":25, + "network":"193.0.128.0\/25", + "version":10961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.128.128", + "prefixLen":25, + "network":"193.0.128.128\/25", + "version":10960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.129.0", + "prefixLen":25, + "network":"193.0.129.0\/25", + "version":10959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.129.128", + "prefixLen":25, + "network":"193.0.129.128\/25", + "version":10958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.130.0", + "prefixLen":25, + "network":"193.0.130.0\/25", + "version":10957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.130.128", + "prefixLen":25, + "network":"193.0.130.128\/25", + "version":10956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.131.0", + "prefixLen":25, + "network":"193.0.131.0\/25", + "version":10955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.131.128", + "prefixLen":25, + "network":"193.0.131.128\/25", + "version":10954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.144.0", + "prefixLen":25, + "network":"193.0.144.0\/25", + "version":10953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.144.128", + "prefixLen":25, + "network":"193.0.144.128\/25", + "version":10952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.145.0", + "prefixLen":25, + "network":"193.0.145.0\/25", + "version":10951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.145.128", + "prefixLen":25, + "network":"193.0.145.128\/25", + "version":10950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.146.0", + "prefixLen":25, + "network":"193.0.146.0\/25", + "version":10949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.146.128", + "prefixLen":25, + "network":"193.0.146.128\/25", + "version":10948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.147.0", + "prefixLen":25, + "network":"193.0.147.0\/25", + "version":10947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.147.128", + "prefixLen":25, + "network":"193.0.147.128\/25", + "version":10946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.160.0", + "prefixLen":25, + "network":"193.0.160.0\/25", + "version":10945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.160.128", + "prefixLen":25, + "network":"193.0.160.128\/25", + "version":10944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.161.0", + "prefixLen":25, + "network":"193.0.161.0\/25", + "version":10943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.161.128", + "prefixLen":25, + "network":"193.0.161.128\/25", + "version":10942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.162.0", + "prefixLen":25, + "network":"193.0.162.0\/25", + "version":10941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.162.128", + "prefixLen":25, + "network":"193.0.162.128\/25", + "version":10940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.163.0", + "prefixLen":25, + "network":"193.0.163.0\/25", + "version":10939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.163.128", + "prefixLen":25, + "network":"193.0.163.128\/25", + "version":10938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.176.0", + "prefixLen":25, + "network":"193.0.176.0\/25", + "version":10937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.176.128", + "prefixLen":25, + "network":"193.0.176.128\/25", + "version":10936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.177.0", + "prefixLen":25, + "network":"193.0.177.0\/25", + "version":10935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.177.128", + "prefixLen":25, + "network":"193.0.177.128\/25", + "version":10934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.178.0", + "prefixLen":25, + "network":"193.0.178.0\/25", + "version":10933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.178.128", + "prefixLen":25, + "network":"193.0.178.128\/25", + "version":10932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.179.0", + "prefixLen":25, + "network":"193.0.179.0\/25", + "version":10931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.179.128", + "prefixLen":25, + "network":"193.0.179.128\/25", + "version":10930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.192.0", + "prefixLen":25, + "network":"193.0.192.0\/25", + "version":10929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.192.128", + "prefixLen":25, + "network":"193.0.192.128\/25", + "version":10928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.193.0", + "prefixLen":25, + "network":"193.0.193.0\/25", + "version":10927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.193.128", + "prefixLen":25, + "network":"193.0.193.128\/25", + "version":10926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.194.0", + "prefixLen":25, + "network":"193.0.194.0\/25", + "version":10925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.194.128", + "prefixLen":25, + "network":"193.0.194.128\/25", + "version":10924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.195.0", + "prefixLen":25, + "network":"193.0.195.0\/25", + "version":10923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.195.128", + "prefixLen":25, + "network":"193.0.195.128\/25", + "version":10922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.208.0", + "prefixLen":25, + "network":"193.0.208.0\/25", + "version":10921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.208.128", + "prefixLen":25, + "network":"193.0.208.128\/25", + "version":10920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.209.0", + "prefixLen":25, + "network":"193.0.209.0\/25", + "version":10919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.209.128", + "prefixLen":25, + "network":"193.0.209.128\/25", + "version":10918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.210.0", + "prefixLen":25, + "network":"193.0.210.0\/25", + "version":10917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.210.128", + "prefixLen":25, + "network":"193.0.210.128\/25", + "version":10916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.211.0", + "prefixLen":25, + "network":"193.0.211.0\/25", + "version":10915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.211.128", + "prefixLen":25, + "network":"193.0.211.128\/25", + "version":10914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.224.0", + "prefixLen":25, + "network":"193.0.224.0\/25", + "version":10913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.224.128", + "prefixLen":25, + "network":"193.0.224.128\/25", + "version":10912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.225.0", + "prefixLen":25, + "network":"193.0.225.0\/25", + "version":10911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.225.128", + "prefixLen":25, + "network":"193.0.225.128\/25", + "version":10910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.226.0", + "prefixLen":25, + "network":"193.0.226.0\/25", + "version":10909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.226.128", + "prefixLen":25, + "network":"193.0.226.128\/25", + "version":10908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.227.0", + "prefixLen":25, + "network":"193.0.227.0\/25", + "version":10907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.227.128", + "prefixLen":25, + "network":"193.0.227.128\/25", + "version":10906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.240.0", + "prefixLen":25, + "network":"193.0.240.0\/25", + "version":10905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.240.128", + "prefixLen":25, + "network":"193.0.240.128\/25", + "version":10904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.241.0", + "prefixLen":25, + "network":"193.0.241.0\/25", + "version":10903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.241.128", + "prefixLen":25, + "network":"193.0.241.128\/25", + "version":10902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.242.0", + "prefixLen":25, + "network":"193.0.242.0\/25", + "version":10901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.242.128", + "prefixLen":25, + "network":"193.0.242.128\/25", + "version":10900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.243.0", + "prefixLen":25, + "network":"193.0.243.0\/25", + "version":10899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.0.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.0.243.128", + "prefixLen":25, + "network":"193.0.243.128\/25", + "version":10898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64688 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.0.0", + "prefixLen":25, + "network":"193.1.0.0\/25", + "version":11025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.0.128", + "prefixLen":25, + "network":"193.1.0.128\/25", + "version":11152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.1.0", + "prefixLen":25, + "network":"193.1.1.0\/25", + "version":11151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.1.128", + "prefixLen":25, + "network":"193.1.1.128\/25", + "version":11150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.2.0", + "prefixLen":25, + "network":"193.1.2.0\/25", + "version":11149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.2.128", + "prefixLen":25, + "network":"193.1.2.128\/25", + "version":11148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.3.0", + "prefixLen":25, + "network":"193.1.3.0\/25", + "version":11147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.3.128", + "prefixLen":25, + "network":"193.1.3.128\/25", + "version":11146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.16.0", + "prefixLen":25, + "network":"193.1.16.0\/25", + "version":11145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.16.128", + "prefixLen":25, + "network":"193.1.16.128\/25", + "version":11144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.17.0", + "prefixLen":25, + "network":"193.1.17.0\/25", + "version":11143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.17.128", + "prefixLen":25, + "network":"193.1.17.128\/25", + "version":11142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.18.0", + "prefixLen":25, + "network":"193.1.18.0\/25", + "version":11141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.18.128", + "prefixLen":25, + "network":"193.1.18.128\/25", + "version":11140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.19.0", + "prefixLen":25, + "network":"193.1.19.0\/25", + "version":11139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.19.128", + "prefixLen":25, + "network":"193.1.19.128\/25", + "version":11138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.32.0", + "prefixLen":25, + "network":"193.1.32.0\/25", + "version":11137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.32.128", + "prefixLen":25, + "network":"193.1.32.128\/25", + "version":11136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.33.0", + "prefixLen":25, + "network":"193.1.33.0\/25", + "version":11135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.33.128", + "prefixLen":25, + "network":"193.1.33.128\/25", + "version":11134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.34.0", + "prefixLen":25, + "network":"193.1.34.0\/25", + "version":11133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.34.128", + "prefixLen":25, + "network":"193.1.34.128\/25", + "version":11132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.35.0", + "prefixLen":25, + "network":"193.1.35.0\/25", + "version":11131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.35.128", + "prefixLen":25, + "network":"193.1.35.128\/25", + "version":11130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.48.0", + "prefixLen":25, + "network":"193.1.48.0\/25", + "version":11129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.48.128", + "prefixLen":25, + "network":"193.1.48.128\/25", + "version":11128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.49.0", + "prefixLen":25, + "network":"193.1.49.0\/25", + "version":11127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.49.128", + "prefixLen":25, + "network":"193.1.49.128\/25", + "version":11126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.50.0", + "prefixLen":25, + "network":"193.1.50.0\/25", + "version":11125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.50.128", + "prefixLen":25, + "network":"193.1.50.128\/25", + "version":11124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.51.0", + "prefixLen":25, + "network":"193.1.51.0\/25", + "version":11123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.51.128", + "prefixLen":25, + "network":"193.1.51.128\/25", + "version":11122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.64.0", + "prefixLen":25, + "network":"193.1.64.0\/25", + "version":11121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.64.128", + "prefixLen":25, + "network":"193.1.64.128\/25", + "version":11120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.65.0", + "prefixLen":25, + "network":"193.1.65.0\/25", + "version":11119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.65.128", + "prefixLen":25, + "network":"193.1.65.128\/25", + "version":11118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.66.0", + "prefixLen":25, + "network":"193.1.66.0\/25", + "version":11117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.66.128", + "prefixLen":25, + "network":"193.1.66.128\/25", + "version":11116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.67.0", + "prefixLen":25, + "network":"193.1.67.0\/25", + "version":11115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.67.128", + "prefixLen":25, + "network":"193.1.67.128\/25", + "version":11114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.80.0", + "prefixLen":25, + "network":"193.1.80.0\/25", + "version":11113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.80.128", + "prefixLen":25, + "network":"193.1.80.128\/25", + "version":11112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.81.0", + "prefixLen":25, + "network":"193.1.81.0\/25", + "version":11111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.81.128", + "prefixLen":25, + "network":"193.1.81.128\/25", + "version":11110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.82.0", + "prefixLen":25, + "network":"193.1.82.0\/25", + "version":11109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.82.128", + "prefixLen":25, + "network":"193.1.82.128\/25", + "version":11108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.83.0", + "prefixLen":25, + "network":"193.1.83.0\/25", + "version":11107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.83.128", + "prefixLen":25, + "network":"193.1.83.128\/25", + "version":11106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.96.0", + "prefixLen":25, + "network":"193.1.96.0\/25", + "version":11105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.96.128", + "prefixLen":25, + "network":"193.1.96.128\/25", + "version":11104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.97.0", + "prefixLen":25, + "network":"193.1.97.0\/25", + "version":11103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.97.128", + "prefixLen":25, + "network":"193.1.97.128\/25", + "version":11102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.98.0", + "prefixLen":25, + "network":"193.1.98.0\/25", + "version":11101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.98.128", + "prefixLen":25, + "network":"193.1.98.128\/25", + "version":11100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.99.0", + "prefixLen":25, + "network":"193.1.99.0\/25", + "version":11099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.99.128", + "prefixLen":25, + "network":"193.1.99.128\/25", + "version":11098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.112.0", + "prefixLen":25, + "network":"193.1.112.0\/25", + "version":11097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.112.128", + "prefixLen":25, + "network":"193.1.112.128\/25", + "version":11096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.113.0", + "prefixLen":25, + "network":"193.1.113.0\/25", + "version":11095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.113.128", + "prefixLen":25, + "network":"193.1.113.128\/25", + "version":11094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.114.0", + "prefixLen":25, + "network":"193.1.114.0\/25", + "version":11093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.114.128", + "prefixLen":25, + "network":"193.1.114.128\/25", + "version":11092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.115.0", + "prefixLen":25, + "network":"193.1.115.0\/25", + "version":11091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.115.128", + "prefixLen":25, + "network":"193.1.115.128\/25", + "version":11090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.128.0", + "prefixLen":25, + "network":"193.1.128.0\/25", + "version":11089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.128.128", + "prefixLen":25, + "network":"193.1.128.128\/25", + "version":11088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.129.0", + "prefixLen":25, + "network":"193.1.129.0\/25", + "version":11087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.129.128", + "prefixLen":25, + "network":"193.1.129.128\/25", + "version":11086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.130.0", + "prefixLen":25, + "network":"193.1.130.0\/25", + "version":11085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.130.128", + "prefixLen":25, + "network":"193.1.130.128\/25", + "version":11084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.131.0", + "prefixLen":25, + "network":"193.1.131.0\/25", + "version":11083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.131.128", + "prefixLen":25, + "network":"193.1.131.128\/25", + "version":11082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.144.0", + "prefixLen":25, + "network":"193.1.144.0\/25", + "version":11081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.144.128", + "prefixLen":25, + "network":"193.1.144.128\/25", + "version":11080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.145.0", + "prefixLen":25, + "network":"193.1.145.0\/25", + "version":11079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.145.128", + "prefixLen":25, + "network":"193.1.145.128\/25", + "version":11078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.146.0", + "prefixLen":25, + "network":"193.1.146.0\/25", + "version":11077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.146.128", + "prefixLen":25, + "network":"193.1.146.128\/25", + "version":11076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.147.0", + "prefixLen":25, + "network":"193.1.147.0\/25", + "version":11075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.147.128", + "prefixLen":25, + "network":"193.1.147.128\/25", + "version":11074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.160.0", + "prefixLen":25, + "network":"193.1.160.0\/25", + "version":11073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.160.128", + "prefixLen":25, + "network":"193.1.160.128\/25", + "version":11072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.161.0", + "prefixLen":25, + "network":"193.1.161.0\/25", + "version":11071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.161.128", + "prefixLen":25, + "network":"193.1.161.128\/25", + "version":11070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.162.0", + "prefixLen":25, + "network":"193.1.162.0\/25", + "version":11069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.162.128", + "prefixLen":25, + "network":"193.1.162.128\/25", + "version":11068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.163.0", + "prefixLen":25, + "network":"193.1.163.0\/25", + "version":11067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.163.128", + "prefixLen":25, + "network":"193.1.163.128\/25", + "version":11066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.176.0", + "prefixLen":25, + "network":"193.1.176.0\/25", + "version":11065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.176.128", + "prefixLen":25, + "network":"193.1.176.128\/25", + "version":11064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.177.0", + "prefixLen":25, + "network":"193.1.177.0\/25", + "version":11063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.177.128", + "prefixLen":25, + "network":"193.1.177.128\/25", + "version":11062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.178.0", + "prefixLen":25, + "network":"193.1.178.0\/25", + "version":11061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.178.128", + "prefixLen":25, + "network":"193.1.178.128\/25", + "version":11060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.179.0", + "prefixLen":25, + "network":"193.1.179.0\/25", + "version":11059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.179.128", + "prefixLen":25, + "network":"193.1.179.128\/25", + "version":11058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.192.0", + "prefixLen":25, + "network":"193.1.192.0\/25", + "version":11057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.192.128", + "prefixLen":25, + "network":"193.1.192.128\/25", + "version":11056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.193.0", + "prefixLen":25, + "network":"193.1.193.0\/25", + "version":11055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.193.128", + "prefixLen":25, + "network":"193.1.193.128\/25", + "version":11054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.194.0", + "prefixLen":25, + "network":"193.1.194.0\/25", + "version":11053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.194.128", + "prefixLen":25, + "network":"193.1.194.128\/25", + "version":11052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.195.0", + "prefixLen":25, + "network":"193.1.195.0\/25", + "version":11051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.195.128", + "prefixLen":25, + "network":"193.1.195.128\/25", + "version":11050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.208.0", + "prefixLen":25, + "network":"193.1.208.0\/25", + "version":11049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.208.128", + "prefixLen":25, + "network":"193.1.208.128\/25", + "version":11048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.209.0", + "prefixLen":25, + "network":"193.1.209.0\/25", + "version":11047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.209.128", + "prefixLen":25, + "network":"193.1.209.128\/25", + "version":11046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.210.0", + "prefixLen":25, + "network":"193.1.210.0\/25", + "version":11045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.210.128", + "prefixLen":25, + "network":"193.1.210.128\/25", + "version":11044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.211.0", + "prefixLen":25, + "network":"193.1.211.0\/25", + "version":11043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.211.128", + "prefixLen":25, + "network":"193.1.211.128\/25", + "version":11042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.224.0", + "prefixLen":25, + "network":"193.1.224.0\/25", + "version":11041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.224.128", + "prefixLen":25, + "network":"193.1.224.128\/25", + "version":11040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.225.0", + "prefixLen":25, + "network":"193.1.225.0\/25", + "version":11039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.225.128", + "prefixLen":25, + "network":"193.1.225.128\/25", + "version":11038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.226.0", + "prefixLen":25, + "network":"193.1.226.0\/25", + "version":11037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.226.128", + "prefixLen":25, + "network":"193.1.226.128\/25", + "version":11036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.227.0", + "prefixLen":25, + "network":"193.1.227.0\/25", + "version":11035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.227.128", + "prefixLen":25, + "network":"193.1.227.128\/25", + "version":11034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.240.0", + "prefixLen":25, + "network":"193.1.240.0\/25", + "version":11033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.240.128", + "prefixLen":25, + "network":"193.1.240.128\/25", + "version":11032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.241.0", + "prefixLen":25, + "network":"193.1.241.0\/25", + "version":11031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.241.128", + "prefixLen":25, + "network":"193.1.241.128\/25", + "version":11030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.242.0", + "prefixLen":25, + "network":"193.1.242.0\/25", + "version":11029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.242.128", + "prefixLen":25, + "network":"193.1.242.128\/25", + "version":11028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.243.0", + "prefixLen":25, + "network":"193.1.243.0\/25", + "version":11027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.1.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.1.243.128", + "prefixLen":25, + "network":"193.1.243.128\/25", + "version":11026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64689 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.0.0", + "prefixLen":25, + "network":"193.2.0.0\/25", + "version":11153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.0.128", + "prefixLen":25, + "network":"193.2.0.128\/25", + "version":11280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.1.0", + "prefixLen":25, + "network":"193.2.1.0\/25", + "version":11279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.1.128", + "prefixLen":25, + "network":"193.2.1.128\/25", + "version":11278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.2.0", + "prefixLen":25, + "network":"193.2.2.0\/25", + "version":11277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.2.128", + "prefixLen":25, + "network":"193.2.2.128\/25", + "version":11276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.3.0", + "prefixLen":25, + "network":"193.2.3.0\/25", + "version":11275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.3.128", + "prefixLen":25, + "network":"193.2.3.128\/25", + "version":11274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.16.0", + "prefixLen":25, + "network":"193.2.16.0\/25", + "version":11273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.16.128", + "prefixLen":25, + "network":"193.2.16.128\/25", + "version":11272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.17.0", + "prefixLen":25, + "network":"193.2.17.0\/25", + "version":11271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.17.128", + "prefixLen":25, + "network":"193.2.17.128\/25", + "version":11270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.18.0", + "prefixLen":25, + "network":"193.2.18.0\/25", + "version":11269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.18.128", + "prefixLen":25, + "network":"193.2.18.128\/25", + "version":11268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.19.0", + "prefixLen":25, + "network":"193.2.19.0\/25", + "version":11267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.19.128", + "prefixLen":25, + "network":"193.2.19.128\/25", + "version":11266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.32.0", + "prefixLen":25, + "network":"193.2.32.0\/25", + "version":11265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.32.128", + "prefixLen":25, + "network":"193.2.32.128\/25", + "version":11264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.33.0", + "prefixLen":25, + "network":"193.2.33.0\/25", + "version":11263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.33.128", + "prefixLen":25, + "network":"193.2.33.128\/25", + "version":11262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.34.0", + "prefixLen":25, + "network":"193.2.34.0\/25", + "version":11261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.34.128", + "prefixLen":25, + "network":"193.2.34.128\/25", + "version":11260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.35.0", + "prefixLen":25, + "network":"193.2.35.0\/25", + "version":11259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.35.128", + "prefixLen":25, + "network":"193.2.35.128\/25", + "version":11258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.48.0", + "prefixLen":25, + "network":"193.2.48.0\/25", + "version":11257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.48.128", + "prefixLen":25, + "network":"193.2.48.128\/25", + "version":11256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.49.0", + "prefixLen":25, + "network":"193.2.49.0\/25", + "version":11255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.49.128", + "prefixLen":25, + "network":"193.2.49.128\/25", + "version":11254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.50.0", + "prefixLen":25, + "network":"193.2.50.0\/25", + "version":11253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.50.128", + "prefixLen":25, + "network":"193.2.50.128\/25", + "version":11252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.51.0", + "prefixLen":25, + "network":"193.2.51.0\/25", + "version":11251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.51.128", + "prefixLen":25, + "network":"193.2.51.128\/25", + "version":11250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.64.0", + "prefixLen":25, + "network":"193.2.64.0\/25", + "version":11249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.64.128", + "prefixLen":25, + "network":"193.2.64.128\/25", + "version":11248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.65.0", + "prefixLen":25, + "network":"193.2.65.0\/25", + "version":11247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.65.128", + "prefixLen":25, + "network":"193.2.65.128\/25", + "version":11246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.66.0", + "prefixLen":25, + "network":"193.2.66.0\/25", + "version":11245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.66.128", + "prefixLen":25, + "network":"193.2.66.128\/25", + "version":11244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.67.0", + "prefixLen":25, + "network":"193.2.67.0\/25", + "version":11243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.67.128", + "prefixLen":25, + "network":"193.2.67.128\/25", + "version":11242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.80.0", + "prefixLen":25, + "network":"193.2.80.0\/25", + "version":11241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.80.128", + "prefixLen":25, + "network":"193.2.80.128\/25", + "version":11240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.81.0", + "prefixLen":25, + "network":"193.2.81.0\/25", + "version":11239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.81.128", + "prefixLen":25, + "network":"193.2.81.128\/25", + "version":11238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.82.0", + "prefixLen":25, + "network":"193.2.82.0\/25", + "version":11237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.82.128", + "prefixLen":25, + "network":"193.2.82.128\/25", + "version":11236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.83.0", + "prefixLen":25, + "network":"193.2.83.0\/25", + "version":11235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.83.128", + "prefixLen":25, + "network":"193.2.83.128\/25", + "version":11234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.96.0", + "prefixLen":25, + "network":"193.2.96.0\/25", + "version":11233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.96.128", + "prefixLen":25, + "network":"193.2.96.128\/25", + "version":11232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.97.0", + "prefixLen":25, + "network":"193.2.97.0\/25", + "version":11231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.97.128", + "prefixLen":25, + "network":"193.2.97.128\/25", + "version":11230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.98.0", + "prefixLen":25, + "network":"193.2.98.0\/25", + "version":11229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.98.128", + "prefixLen":25, + "network":"193.2.98.128\/25", + "version":11228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.99.0", + "prefixLen":25, + "network":"193.2.99.0\/25", + "version":11227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.99.128", + "prefixLen":25, + "network":"193.2.99.128\/25", + "version":11226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.112.0", + "prefixLen":25, + "network":"193.2.112.0\/25", + "version":11225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.112.128", + "prefixLen":25, + "network":"193.2.112.128\/25", + "version":11224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.113.0", + "prefixLen":25, + "network":"193.2.113.0\/25", + "version":11223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.113.128", + "prefixLen":25, + "network":"193.2.113.128\/25", + "version":11222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.114.0", + "prefixLen":25, + "network":"193.2.114.0\/25", + "version":11221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.114.128", + "prefixLen":25, + "network":"193.2.114.128\/25", + "version":11220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.115.0", + "prefixLen":25, + "network":"193.2.115.0\/25", + "version":11219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.115.128", + "prefixLen":25, + "network":"193.2.115.128\/25", + "version":11218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.128.0", + "prefixLen":25, + "network":"193.2.128.0\/25", + "version":11217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.128.128", + "prefixLen":25, + "network":"193.2.128.128\/25", + "version":11216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.129.0", + "prefixLen":25, + "network":"193.2.129.0\/25", + "version":11215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.129.128", + "prefixLen":25, + "network":"193.2.129.128\/25", + "version":11214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.130.0", + "prefixLen":25, + "network":"193.2.130.0\/25", + "version":11213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.130.128", + "prefixLen":25, + "network":"193.2.130.128\/25", + "version":11212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.131.0", + "prefixLen":25, + "network":"193.2.131.0\/25", + "version":11211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.131.128", + "prefixLen":25, + "network":"193.2.131.128\/25", + "version":11210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.144.0", + "prefixLen":25, + "network":"193.2.144.0\/25", + "version":11209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.144.128", + "prefixLen":25, + "network":"193.2.144.128\/25", + "version":11208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.145.0", + "prefixLen":25, + "network":"193.2.145.0\/25", + "version":11207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.145.128", + "prefixLen":25, + "network":"193.2.145.128\/25", + "version":11206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.146.0", + "prefixLen":25, + "network":"193.2.146.0\/25", + "version":11205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.146.128", + "prefixLen":25, + "network":"193.2.146.128\/25", + "version":11204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.147.0", + "prefixLen":25, + "network":"193.2.147.0\/25", + "version":11203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.147.128", + "prefixLen":25, + "network":"193.2.147.128\/25", + "version":11202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.160.0", + "prefixLen":25, + "network":"193.2.160.0\/25", + "version":11201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.160.128", + "prefixLen":25, + "network":"193.2.160.128\/25", + "version":11200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.161.0", + "prefixLen":25, + "network":"193.2.161.0\/25", + "version":11199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.161.128", + "prefixLen":25, + "network":"193.2.161.128\/25", + "version":11198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.162.0", + "prefixLen":25, + "network":"193.2.162.0\/25", + "version":11197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.162.128", + "prefixLen":25, + "network":"193.2.162.128\/25", + "version":11196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.163.0", + "prefixLen":25, + "network":"193.2.163.0\/25", + "version":11195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.163.128", + "prefixLen":25, + "network":"193.2.163.128\/25", + "version":11194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.176.0", + "prefixLen":25, + "network":"193.2.176.0\/25", + "version":11193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.176.128", + "prefixLen":25, + "network":"193.2.176.128\/25", + "version":11192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.177.0", + "prefixLen":25, + "network":"193.2.177.0\/25", + "version":11191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.177.128", + "prefixLen":25, + "network":"193.2.177.128\/25", + "version":11190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.178.0", + "prefixLen":25, + "network":"193.2.178.0\/25", + "version":11189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.178.128", + "prefixLen":25, + "network":"193.2.178.128\/25", + "version":11188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.179.0", + "prefixLen":25, + "network":"193.2.179.0\/25", + "version":11187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.179.128", + "prefixLen":25, + "network":"193.2.179.128\/25", + "version":11186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.192.0", + "prefixLen":25, + "network":"193.2.192.0\/25", + "version":11185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.192.128", + "prefixLen":25, + "network":"193.2.192.128\/25", + "version":11184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.193.0", + "prefixLen":25, + "network":"193.2.193.0\/25", + "version":11183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.193.128", + "prefixLen":25, + "network":"193.2.193.128\/25", + "version":11182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.194.0", + "prefixLen":25, + "network":"193.2.194.0\/25", + "version":11181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.194.128", + "prefixLen":25, + "network":"193.2.194.128\/25", + "version":11180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.195.0", + "prefixLen":25, + "network":"193.2.195.0\/25", + "version":11179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.195.128", + "prefixLen":25, + "network":"193.2.195.128\/25", + "version":11178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.208.0", + "prefixLen":25, + "network":"193.2.208.0\/25", + "version":11177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.208.128", + "prefixLen":25, + "network":"193.2.208.128\/25", + "version":11176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.209.0", + "prefixLen":25, + "network":"193.2.209.0\/25", + "version":11175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.209.128", + "prefixLen":25, + "network":"193.2.209.128\/25", + "version":11174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.210.0", + "prefixLen":25, + "network":"193.2.210.0\/25", + "version":11173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.210.128", + "prefixLen":25, + "network":"193.2.210.128\/25", + "version":11172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.211.0", + "prefixLen":25, + "network":"193.2.211.0\/25", + "version":11171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.211.128", + "prefixLen":25, + "network":"193.2.211.128\/25", + "version":11170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.224.0", + "prefixLen":25, + "network":"193.2.224.0\/25", + "version":11169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.224.128", + "prefixLen":25, + "network":"193.2.224.128\/25", + "version":11168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.225.0", + "prefixLen":25, + "network":"193.2.225.0\/25", + "version":11167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.225.128", + "prefixLen":25, + "network":"193.2.225.128\/25", + "version":11166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.226.0", + "prefixLen":25, + "network":"193.2.226.0\/25", + "version":11165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.226.128", + "prefixLen":25, + "network":"193.2.226.128\/25", + "version":11164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.227.0", + "prefixLen":25, + "network":"193.2.227.0\/25", + "version":11163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.227.128", + "prefixLen":25, + "network":"193.2.227.128\/25", + "version":11162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.240.0", + "prefixLen":25, + "network":"193.2.240.0\/25", + "version":11161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.240.128", + "prefixLen":25, + "network":"193.2.240.128\/25", + "version":11160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.241.0", + "prefixLen":25, + "network":"193.2.241.0\/25", + "version":11159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.241.128", + "prefixLen":25, + "network":"193.2.241.128\/25", + "version":11158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.242.0", + "prefixLen":25, + "network":"193.2.242.0\/25", + "version":11157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.242.128", + "prefixLen":25, + "network":"193.2.242.128\/25", + "version":11156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.243.0", + "prefixLen":25, + "network":"193.2.243.0\/25", + "version":11155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.2.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.2.243.128", + "prefixLen":25, + "network":"193.2.243.128\/25", + "version":11154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64690 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.0.0", + "prefixLen":25, + "network":"193.3.0.0\/25", + "version":11281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.0.128", + "prefixLen":25, + "network":"193.3.0.128\/25", + "version":11408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.1.0", + "prefixLen":25, + "network":"193.3.1.0\/25", + "version":11407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.1.128", + "prefixLen":25, + "network":"193.3.1.128\/25", + "version":11406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.2.0", + "prefixLen":25, + "network":"193.3.2.0\/25", + "version":11405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.2.128", + "prefixLen":25, + "network":"193.3.2.128\/25", + "version":11404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.3.0", + "prefixLen":25, + "network":"193.3.3.0\/25", + "version":11403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.3.128", + "prefixLen":25, + "network":"193.3.3.128\/25", + "version":11402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.16.0", + "prefixLen":25, + "network":"193.3.16.0\/25", + "version":11401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.16.128", + "prefixLen":25, + "network":"193.3.16.128\/25", + "version":11400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.17.0", + "prefixLen":25, + "network":"193.3.17.0\/25", + "version":11399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.17.128", + "prefixLen":25, + "network":"193.3.17.128\/25", + "version":11398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.18.0", + "prefixLen":25, + "network":"193.3.18.0\/25", + "version":11397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.18.128", + "prefixLen":25, + "network":"193.3.18.128\/25", + "version":11396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.19.0", + "prefixLen":25, + "network":"193.3.19.0\/25", + "version":11395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.19.128", + "prefixLen":25, + "network":"193.3.19.128\/25", + "version":11394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.32.0", + "prefixLen":25, + "network":"193.3.32.0\/25", + "version":11393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.32.128", + "prefixLen":25, + "network":"193.3.32.128\/25", + "version":11392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.33.0", + "prefixLen":25, + "network":"193.3.33.0\/25", + "version":11391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.33.128", + "prefixLen":25, + "network":"193.3.33.128\/25", + "version":11390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.34.0", + "prefixLen":25, + "network":"193.3.34.0\/25", + "version":11389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.34.128", + "prefixLen":25, + "network":"193.3.34.128\/25", + "version":11388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.35.0", + "prefixLen":25, + "network":"193.3.35.0\/25", + "version":11387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.35.128", + "prefixLen":25, + "network":"193.3.35.128\/25", + "version":11386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.48.0", + "prefixLen":25, + "network":"193.3.48.0\/25", + "version":11385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.48.128", + "prefixLen":25, + "network":"193.3.48.128\/25", + "version":11384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.49.0", + "prefixLen":25, + "network":"193.3.49.0\/25", + "version":11383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.49.128", + "prefixLen":25, + "network":"193.3.49.128\/25", + "version":11382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.50.0", + "prefixLen":25, + "network":"193.3.50.0\/25", + "version":11381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.50.128", + "prefixLen":25, + "network":"193.3.50.128\/25", + "version":11380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.51.0", + "prefixLen":25, + "network":"193.3.51.0\/25", + "version":11379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.51.128", + "prefixLen":25, + "network":"193.3.51.128\/25", + "version":11378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.64.0", + "prefixLen":25, + "network":"193.3.64.0\/25", + "version":11377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.64.128", + "prefixLen":25, + "network":"193.3.64.128\/25", + "version":11376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.65.0", + "prefixLen":25, + "network":"193.3.65.0\/25", + "version":11375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.65.128", + "prefixLen":25, + "network":"193.3.65.128\/25", + "version":11374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.66.0", + "prefixLen":25, + "network":"193.3.66.0\/25", + "version":11373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.66.128", + "prefixLen":25, + "network":"193.3.66.128\/25", + "version":11372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.67.0", + "prefixLen":25, + "network":"193.3.67.0\/25", + "version":11371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.67.128", + "prefixLen":25, + "network":"193.3.67.128\/25", + "version":11370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.80.0", + "prefixLen":25, + "network":"193.3.80.0\/25", + "version":11369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.80.128", + "prefixLen":25, + "network":"193.3.80.128\/25", + "version":11368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.81.0", + "prefixLen":25, + "network":"193.3.81.0\/25", + "version":11367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.81.128", + "prefixLen":25, + "network":"193.3.81.128\/25", + "version":11366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.82.0", + "prefixLen":25, + "network":"193.3.82.0\/25", + "version":11365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.82.128", + "prefixLen":25, + "network":"193.3.82.128\/25", + "version":11364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.83.0", + "prefixLen":25, + "network":"193.3.83.0\/25", + "version":11363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.83.128", + "prefixLen":25, + "network":"193.3.83.128\/25", + "version":11362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.96.0", + "prefixLen":25, + "network":"193.3.96.0\/25", + "version":11361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.96.128", + "prefixLen":25, + "network":"193.3.96.128\/25", + "version":11360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.97.0", + "prefixLen":25, + "network":"193.3.97.0\/25", + "version":11359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.97.128", + "prefixLen":25, + "network":"193.3.97.128\/25", + "version":11358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.98.0", + "prefixLen":25, + "network":"193.3.98.0\/25", + "version":11357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.98.128", + "prefixLen":25, + "network":"193.3.98.128\/25", + "version":11356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.99.0", + "prefixLen":25, + "network":"193.3.99.0\/25", + "version":11355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.99.128", + "prefixLen":25, + "network":"193.3.99.128\/25", + "version":11354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.112.0", + "prefixLen":25, + "network":"193.3.112.0\/25", + "version":11353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.112.128", + "prefixLen":25, + "network":"193.3.112.128\/25", + "version":11352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.113.0", + "prefixLen":25, + "network":"193.3.113.0\/25", + "version":11351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.113.128", + "prefixLen":25, + "network":"193.3.113.128\/25", + "version":11350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.114.0", + "prefixLen":25, + "network":"193.3.114.0\/25", + "version":11349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.114.128", + "prefixLen":25, + "network":"193.3.114.128\/25", + "version":11348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.115.0", + "prefixLen":25, + "network":"193.3.115.0\/25", + "version":11347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.115.128", + "prefixLen":25, + "network":"193.3.115.128\/25", + "version":11346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.128.0", + "prefixLen":25, + "network":"193.3.128.0\/25", + "version":11345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.128.128", + "prefixLen":25, + "network":"193.3.128.128\/25", + "version":11344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.129.0", + "prefixLen":25, + "network":"193.3.129.0\/25", + "version":11343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.129.128", + "prefixLen":25, + "network":"193.3.129.128\/25", + "version":11342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.130.0", + "prefixLen":25, + "network":"193.3.130.0\/25", + "version":11341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.130.128", + "prefixLen":25, + "network":"193.3.130.128\/25", + "version":11340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.131.0", + "prefixLen":25, + "network":"193.3.131.0\/25", + "version":11339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.131.128", + "prefixLen":25, + "network":"193.3.131.128\/25", + "version":11338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.144.0", + "prefixLen":25, + "network":"193.3.144.0\/25", + "version":11337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.144.128", + "prefixLen":25, + "network":"193.3.144.128\/25", + "version":11336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.145.0", + "prefixLen":25, + "network":"193.3.145.0\/25", + "version":11335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.145.128", + "prefixLen":25, + "network":"193.3.145.128\/25", + "version":11334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.146.0", + "prefixLen":25, + "network":"193.3.146.0\/25", + "version":11333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.146.128", + "prefixLen":25, + "network":"193.3.146.128\/25", + "version":11332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.147.0", + "prefixLen":25, + "network":"193.3.147.0\/25", + "version":11331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.147.128", + "prefixLen":25, + "network":"193.3.147.128\/25", + "version":11330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.160.0", + "prefixLen":25, + "network":"193.3.160.0\/25", + "version":11329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.160.128", + "prefixLen":25, + "network":"193.3.160.128\/25", + "version":11328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.161.0", + "prefixLen":25, + "network":"193.3.161.0\/25", + "version":11327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.161.128", + "prefixLen":25, + "network":"193.3.161.128\/25", + "version":11326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.162.0", + "prefixLen":25, + "network":"193.3.162.0\/25", + "version":11325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.162.128", + "prefixLen":25, + "network":"193.3.162.128\/25", + "version":11324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.163.0", + "prefixLen":25, + "network":"193.3.163.0\/25", + "version":11323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.163.128", + "prefixLen":25, + "network":"193.3.163.128\/25", + "version":11322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.176.0", + "prefixLen":25, + "network":"193.3.176.0\/25", + "version":11321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.176.128", + "prefixLen":25, + "network":"193.3.176.128\/25", + "version":11320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.177.0", + "prefixLen":25, + "network":"193.3.177.0\/25", + "version":11319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.177.128", + "prefixLen":25, + "network":"193.3.177.128\/25", + "version":11318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.178.0", + "prefixLen":25, + "network":"193.3.178.0\/25", + "version":11317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.178.128", + "prefixLen":25, + "network":"193.3.178.128\/25", + "version":11316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.179.0", + "prefixLen":25, + "network":"193.3.179.0\/25", + "version":11315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.179.128", + "prefixLen":25, + "network":"193.3.179.128\/25", + "version":11314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.192.0", + "prefixLen":25, + "network":"193.3.192.0\/25", + "version":11313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.192.128", + "prefixLen":25, + "network":"193.3.192.128\/25", + "version":11312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.193.0", + "prefixLen":25, + "network":"193.3.193.0\/25", + "version":11311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.193.128", + "prefixLen":25, + "network":"193.3.193.128\/25", + "version":11310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.194.0", + "prefixLen":25, + "network":"193.3.194.0\/25", + "version":11309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.194.128", + "prefixLen":25, + "network":"193.3.194.128\/25", + "version":11308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.195.0", + "prefixLen":25, + "network":"193.3.195.0\/25", + "version":11307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.195.128", + "prefixLen":25, + "network":"193.3.195.128\/25", + "version":11306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.208.0", + "prefixLen":25, + "network":"193.3.208.0\/25", + "version":11305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.208.128", + "prefixLen":25, + "network":"193.3.208.128\/25", + "version":11304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.209.0", + "prefixLen":25, + "network":"193.3.209.0\/25", + "version":11303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.209.128", + "prefixLen":25, + "network":"193.3.209.128\/25", + "version":11302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.210.0", + "prefixLen":25, + "network":"193.3.210.0\/25", + "version":11301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.210.128", + "prefixLen":25, + "network":"193.3.210.128\/25", + "version":11300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.211.0", + "prefixLen":25, + "network":"193.3.211.0\/25", + "version":11299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.211.128", + "prefixLen":25, + "network":"193.3.211.128\/25", + "version":11298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.224.0", + "prefixLen":25, + "network":"193.3.224.0\/25", + "version":11297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.224.128", + "prefixLen":25, + "network":"193.3.224.128\/25", + "version":11296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.225.0", + "prefixLen":25, + "network":"193.3.225.0\/25", + "version":11295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.225.128", + "prefixLen":25, + "network":"193.3.225.128\/25", + "version":11294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.226.0", + "prefixLen":25, + "network":"193.3.226.0\/25", + "version":11293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.226.128", + "prefixLen":25, + "network":"193.3.226.128\/25", + "version":11292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.227.0", + "prefixLen":25, + "network":"193.3.227.0\/25", + "version":11291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.227.128", + "prefixLen":25, + "network":"193.3.227.128\/25", + "version":11290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.240.0", + "prefixLen":25, + "network":"193.3.240.0\/25", + "version":11289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.240.128", + "prefixLen":25, + "network":"193.3.240.128\/25", + "version":11288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.241.0", + "prefixLen":25, + "network":"193.3.241.0\/25", + "version":11287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.241.128", + "prefixLen":25, + "network":"193.3.241.128\/25", + "version":11286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.242.0", + "prefixLen":25, + "network":"193.3.242.0\/25", + "version":11285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.242.128", + "prefixLen":25, + "network":"193.3.242.128\/25", + "version":11284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.243.0", + "prefixLen":25, + "network":"193.3.243.0\/25", + "version":11283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.3.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.3.243.128", + "prefixLen":25, + "network":"193.3.243.128\/25", + "version":11282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64691 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.0.0", + "prefixLen":25, + "network":"193.4.0.0\/25", + "version":11409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.0.128", + "prefixLen":25, + "network":"193.4.0.128\/25", + "version":11536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.1.0", + "prefixLen":25, + "network":"193.4.1.0\/25", + "version":11535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.1.128", + "prefixLen":25, + "network":"193.4.1.128\/25", + "version":11534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.2.0", + "prefixLen":25, + "network":"193.4.2.0\/25", + "version":11533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.2.128", + "prefixLen":25, + "network":"193.4.2.128\/25", + "version":11532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.3.0", + "prefixLen":25, + "network":"193.4.3.0\/25", + "version":11531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.3.128", + "prefixLen":25, + "network":"193.4.3.128\/25", + "version":11530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.16.0", + "prefixLen":25, + "network":"193.4.16.0\/25", + "version":11529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.16.128", + "prefixLen":25, + "network":"193.4.16.128\/25", + "version":11528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.17.0", + "prefixLen":25, + "network":"193.4.17.0\/25", + "version":11527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.17.128", + "prefixLen":25, + "network":"193.4.17.128\/25", + "version":11526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.18.0", + "prefixLen":25, + "network":"193.4.18.0\/25", + "version":11525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.18.128", + "prefixLen":25, + "network":"193.4.18.128\/25", + "version":11524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.19.0", + "prefixLen":25, + "network":"193.4.19.0\/25", + "version":11523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.19.128", + "prefixLen":25, + "network":"193.4.19.128\/25", + "version":11522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.32.0", + "prefixLen":25, + "network":"193.4.32.0\/25", + "version":11521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.32.128", + "prefixLen":25, + "network":"193.4.32.128\/25", + "version":11520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.33.0", + "prefixLen":25, + "network":"193.4.33.0\/25", + "version":11519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.33.128", + "prefixLen":25, + "network":"193.4.33.128\/25", + "version":11518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.34.0", + "prefixLen":25, + "network":"193.4.34.0\/25", + "version":11517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.34.128", + "prefixLen":25, + "network":"193.4.34.128\/25", + "version":11516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.35.0", + "prefixLen":25, + "network":"193.4.35.0\/25", + "version":11515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.35.128", + "prefixLen":25, + "network":"193.4.35.128\/25", + "version":11514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.48.0", + "prefixLen":25, + "network":"193.4.48.0\/25", + "version":11513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.48.128", + "prefixLen":25, + "network":"193.4.48.128\/25", + "version":11512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.49.0", + "prefixLen":25, + "network":"193.4.49.0\/25", + "version":11511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.49.128", + "prefixLen":25, + "network":"193.4.49.128\/25", + "version":11510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.50.0", + "prefixLen":25, + "network":"193.4.50.0\/25", + "version":11509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.50.128", + "prefixLen":25, + "network":"193.4.50.128\/25", + "version":11508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.51.0", + "prefixLen":25, + "network":"193.4.51.0\/25", + "version":11507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.51.128", + "prefixLen":25, + "network":"193.4.51.128\/25", + "version":11506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.64.0", + "prefixLen":25, + "network":"193.4.64.0\/25", + "version":11505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.64.128", + "prefixLen":25, + "network":"193.4.64.128\/25", + "version":11504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.65.0", + "prefixLen":25, + "network":"193.4.65.0\/25", + "version":11503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.65.128", + "prefixLen":25, + "network":"193.4.65.128\/25", + "version":11502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.66.0", + "prefixLen":25, + "network":"193.4.66.0\/25", + "version":11501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.66.128", + "prefixLen":25, + "network":"193.4.66.128\/25", + "version":11500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.67.0", + "prefixLen":25, + "network":"193.4.67.0\/25", + "version":11499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.67.128", + "prefixLen":25, + "network":"193.4.67.128\/25", + "version":11498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.80.0", + "prefixLen":25, + "network":"193.4.80.0\/25", + "version":11497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.80.128", + "prefixLen":25, + "network":"193.4.80.128\/25", + "version":11496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.81.0", + "prefixLen":25, + "network":"193.4.81.0\/25", + "version":11495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.81.128", + "prefixLen":25, + "network":"193.4.81.128\/25", + "version":11494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.82.0", + "prefixLen":25, + "network":"193.4.82.0\/25", + "version":11493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.82.128", + "prefixLen":25, + "network":"193.4.82.128\/25", + "version":11492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.83.0", + "prefixLen":25, + "network":"193.4.83.0\/25", + "version":11491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.83.128", + "prefixLen":25, + "network":"193.4.83.128\/25", + "version":11490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.96.0", + "prefixLen":25, + "network":"193.4.96.0\/25", + "version":11489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.96.128", + "prefixLen":25, + "network":"193.4.96.128\/25", + "version":11488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.97.0", + "prefixLen":25, + "network":"193.4.97.0\/25", + "version":11487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.97.128", + "prefixLen":25, + "network":"193.4.97.128\/25", + "version":11486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.98.0", + "prefixLen":25, + "network":"193.4.98.0\/25", + "version":11485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.98.128", + "prefixLen":25, + "network":"193.4.98.128\/25", + "version":11484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.99.0", + "prefixLen":25, + "network":"193.4.99.0\/25", + "version":11483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.99.128", + "prefixLen":25, + "network":"193.4.99.128\/25", + "version":11482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.112.0", + "prefixLen":25, + "network":"193.4.112.0\/25", + "version":11481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.112.128", + "prefixLen":25, + "network":"193.4.112.128\/25", + "version":11480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.113.0", + "prefixLen":25, + "network":"193.4.113.0\/25", + "version":11479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.113.128", + "prefixLen":25, + "network":"193.4.113.128\/25", + "version":11478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.114.0", + "prefixLen":25, + "network":"193.4.114.0\/25", + "version":11477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.114.128", + "prefixLen":25, + "network":"193.4.114.128\/25", + "version":11476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.115.0", + "prefixLen":25, + "network":"193.4.115.0\/25", + "version":11475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.115.128", + "prefixLen":25, + "network":"193.4.115.128\/25", + "version":11474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.128.0", + "prefixLen":25, + "network":"193.4.128.0\/25", + "version":11473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.128.128", + "prefixLen":25, + "network":"193.4.128.128\/25", + "version":11472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.129.0", + "prefixLen":25, + "network":"193.4.129.0\/25", + "version":11471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.129.128", + "prefixLen":25, + "network":"193.4.129.128\/25", + "version":11470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.130.0", + "prefixLen":25, + "network":"193.4.130.0\/25", + "version":11469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.130.128", + "prefixLen":25, + "network":"193.4.130.128\/25", + "version":11468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.131.0", + "prefixLen":25, + "network":"193.4.131.0\/25", + "version":11467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.131.128", + "prefixLen":25, + "network":"193.4.131.128\/25", + "version":11466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.144.0", + "prefixLen":25, + "network":"193.4.144.0\/25", + "version":11465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.144.128", + "prefixLen":25, + "network":"193.4.144.128\/25", + "version":11464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.145.0", + "prefixLen":25, + "network":"193.4.145.0\/25", + "version":11463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.145.128", + "prefixLen":25, + "network":"193.4.145.128\/25", + "version":11462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.146.0", + "prefixLen":25, + "network":"193.4.146.0\/25", + "version":11461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.146.128", + "prefixLen":25, + "network":"193.4.146.128\/25", + "version":11460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.147.0", + "prefixLen":25, + "network":"193.4.147.0\/25", + "version":11459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.147.128", + "prefixLen":25, + "network":"193.4.147.128\/25", + "version":11458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.160.0", + "prefixLen":25, + "network":"193.4.160.0\/25", + "version":11457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.160.128", + "prefixLen":25, + "network":"193.4.160.128\/25", + "version":11456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.161.0", + "prefixLen":25, + "network":"193.4.161.0\/25", + "version":11455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.161.128", + "prefixLen":25, + "network":"193.4.161.128\/25", + "version":11454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.162.0", + "prefixLen":25, + "network":"193.4.162.0\/25", + "version":11453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.162.128", + "prefixLen":25, + "network":"193.4.162.128\/25", + "version":11452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.163.0", + "prefixLen":25, + "network":"193.4.163.0\/25", + "version":11451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.163.128", + "prefixLen":25, + "network":"193.4.163.128\/25", + "version":11450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.176.0", + "prefixLen":25, + "network":"193.4.176.0\/25", + "version":11449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.176.128", + "prefixLen":25, + "network":"193.4.176.128\/25", + "version":11448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.177.0", + "prefixLen":25, + "network":"193.4.177.0\/25", + "version":11447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.177.128", + "prefixLen":25, + "network":"193.4.177.128\/25", + "version":11446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.178.0", + "prefixLen":25, + "network":"193.4.178.0\/25", + "version":11445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.178.128", + "prefixLen":25, + "network":"193.4.178.128\/25", + "version":11444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.179.0", + "prefixLen":25, + "network":"193.4.179.0\/25", + "version":11443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.179.128", + "prefixLen":25, + "network":"193.4.179.128\/25", + "version":11442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.192.0", + "prefixLen":25, + "network":"193.4.192.0\/25", + "version":11441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.192.128", + "prefixLen":25, + "network":"193.4.192.128\/25", + "version":11440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.193.0", + "prefixLen":25, + "network":"193.4.193.0\/25", + "version":11439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.193.128", + "prefixLen":25, + "network":"193.4.193.128\/25", + "version":11438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.194.0", + "prefixLen":25, + "network":"193.4.194.0\/25", + "version":11437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.194.128", + "prefixLen":25, + "network":"193.4.194.128\/25", + "version":11436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.195.0", + "prefixLen":25, + "network":"193.4.195.0\/25", + "version":11435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.195.128", + "prefixLen":25, + "network":"193.4.195.128\/25", + "version":11434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.208.0", + "prefixLen":25, + "network":"193.4.208.0\/25", + "version":11433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.208.128", + "prefixLen":25, + "network":"193.4.208.128\/25", + "version":11432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.209.0", + "prefixLen":25, + "network":"193.4.209.0\/25", + "version":11431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.209.128", + "prefixLen":25, + "network":"193.4.209.128\/25", + "version":11430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.210.0", + "prefixLen":25, + "network":"193.4.210.0\/25", + "version":11429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.210.128", + "prefixLen":25, + "network":"193.4.210.128\/25", + "version":11428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.211.0", + "prefixLen":25, + "network":"193.4.211.0\/25", + "version":11427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.211.128", + "prefixLen":25, + "network":"193.4.211.128\/25", + "version":11426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.224.0", + "prefixLen":25, + "network":"193.4.224.0\/25", + "version":11425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.224.128", + "prefixLen":25, + "network":"193.4.224.128\/25", + "version":11424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.225.0", + "prefixLen":25, + "network":"193.4.225.0\/25", + "version":11423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.225.128", + "prefixLen":25, + "network":"193.4.225.128\/25", + "version":11422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.226.0", + "prefixLen":25, + "network":"193.4.226.0\/25", + "version":11421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.226.128", + "prefixLen":25, + "network":"193.4.226.128\/25", + "version":11420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.227.0", + "prefixLen":25, + "network":"193.4.227.0\/25", + "version":11419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.227.128", + "prefixLen":25, + "network":"193.4.227.128\/25", + "version":11418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.240.0", + "prefixLen":25, + "network":"193.4.240.0\/25", + "version":11417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.240.128", + "prefixLen":25, + "network":"193.4.240.128\/25", + "version":11416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.241.0", + "prefixLen":25, + "network":"193.4.241.0\/25", + "version":11415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.241.128", + "prefixLen":25, + "network":"193.4.241.128\/25", + "version":11414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.242.0", + "prefixLen":25, + "network":"193.4.242.0\/25", + "version":11413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.242.128", + "prefixLen":25, + "network":"193.4.242.128\/25", + "version":11412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.243.0", + "prefixLen":25, + "network":"193.4.243.0\/25", + "version":11411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.4.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.4.243.128", + "prefixLen":25, + "network":"193.4.243.128\/25", + "version":11410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64692 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.0.0", + "prefixLen":25, + "network":"193.5.0.0\/25", + "version":11537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.0.128", + "prefixLen":25, + "network":"193.5.0.128\/25", + "version":11664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.1.0", + "prefixLen":25, + "network":"193.5.1.0\/25", + "version":11663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.1.128", + "prefixLen":25, + "network":"193.5.1.128\/25", + "version":11662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.2.0", + "prefixLen":25, + "network":"193.5.2.0\/25", + "version":11661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.2.128", + "prefixLen":25, + "network":"193.5.2.128\/25", + "version":11660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.3.0", + "prefixLen":25, + "network":"193.5.3.0\/25", + "version":11659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.3.128", + "prefixLen":25, + "network":"193.5.3.128\/25", + "version":11658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.16.0", + "prefixLen":25, + "network":"193.5.16.0\/25", + "version":11657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.16.128", + "prefixLen":25, + "network":"193.5.16.128\/25", + "version":11656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.17.0", + "prefixLen":25, + "network":"193.5.17.0\/25", + "version":11655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.17.128", + "prefixLen":25, + "network":"193.5.17.128\/25", + "version":11654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.18.0", + "prefixLen":25, + "network":"193.5.18.0\/25", + "version":11653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.18.128", + "prefixLen":25, + "network":"193.5.18.128\/25", + "version":11652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.19.0", + "prefixLen":25, + "network":"193.5.19.0\/25", + "version":11651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.19.128", + "prefixLen":25, + "network":"193.5.19.128\/25", + "version":11650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.32.0", + "prefixLen":25, + "network":"193.5.32.0\/25", + "version":11649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.32.128", + "prefixLen":25, + "network":"193.5.32.128\/25", + "version":11648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.33.0", + "prefixLen":25, + "network":"193.5.33.0\/25", + "version":11647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.33.128", + "prefixLen":25, + "network":"193.5.33.128\/25", + "version":11646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.34.0", + "prefixLen":25, + "network":"193.5.34.0\/25", + "version":11645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.34.128", + "prefixLen":25, + "network":"193.5.34.128\/25", + "version":11644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.35.0", + "prefixLen":25, + "network":"193.5.35.0\/25", + "version":11643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.35.128", + "prefixLen":25, + "network":"193.5.35.128\/25", + "version":11642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.48.0", + "prefixLen":25, + "network":"193.5.48.0\/25", + "version":11641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.48.128", + "prefixLen":25, + "network":"193.5.48.128\/25", + "version":11640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.49.0", + "prefixLen":25, + "network":"193.5.49.0\/25", + "version":11639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.49.128", + "prefixLen":25, + "network":"193.5.49.128\/25", + "version":11638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.50.0", + "prefixLen":25, + "network":"193.5.50.0\/25", + "version":11637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.50.128", + "prefixLen":25, + "network":"193.5.50.128\/25", + "version":11636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.51.0", + "prefixLen":25, + "network":"193.5.51.0\/25", + "version":11635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.51.128", + "prefixLen":25, + "network":"193.5.51.128\/25", + "version":11634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.64.0", + "prefixLen":25, + "network":"193.5.64.0\/25", + "version":11633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.64.128", + "prefixLen":25, + "network":"193.5.64.128\/25", + "version":11632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.65.0", + "prefixLen":25, + "network":"193.5.65.0\/25", + "version":11631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.65.128", + "prefixLen":25, + "network":"193.5.65.128\/25", + "version":11630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.66.0", + "prefixLen":25, + "network":"193.5.66.0\/25", + "version":11629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.66.128", + "prefixLen":25, + "network":"193.5.66.128\/25", + "version":11628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.67.0", + "prefixLen":25, + "network":"193.5.67.0\/25", + "version":11627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.67.128", + "prefixLen":25, + "network":"193.5.67.128\/25", + "version":11626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.80.0", + "prefixLen":25, + "network":"193.5.80.0\/25", + "version":11625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.80.128", + "prefixLen":25, + "network":"193.5.80.128\/25", + "version":11624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.81.0", + "prefixLen":25, + "network":"193.5.81.0\/25", + "version":11623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.81.128", + "prefixLen":25, + "network":"193.5.81.128\/25", + "version":11622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.82.0", + "prefixLen":25, + "network":"193.5.82.0\/25", + "version":11621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.82.128", + "prefixLen":25, + "network":"193.5.82.128\/25", + "version":11620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.83.0", + "prefixLen":25, + "network":"193.5.83.0\/25", + "version":11619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.83.128", + "prefixLen":25, + "network":"193.5.83.128\/25", + "version":11618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.96.0", + "prefixLen":25, + "network":"193.5.96.0\/25", + "version":11617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.96.128", + "prefixLen":25, + "network":"193.5.96.128\/25", + "version":11616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.97.0", + "prefixLen":25, + "network":"193.5.97.0\/25", + "version":11615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.97.128", + "prefixLen":25, + "network":"193.5.97.128\/25", + "version":11614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.98.0", + "prefixLen":25, + "network":"193.5.98.0\/25", + "version":11613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.98.128", + "prefixLen":25, + "network":"193.5.98.128\/25", + "version":11612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.99.0", + "prefixLen":25, + "network":"193.5.99.0\/25", + "version":11611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.99.128", + "prefixLen":25, + "network":"193.5.99.128\/25", + "version":11610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.112.0", + "prefixLen":25, + "network":"193.5.112.0\/25", + "version":11609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.112.128", + "prefixLen":25, + "network":"193.5.112.128\/25", + "version":11608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.113.0", + "prefixLen":25, + "network":"193.5.113.0\/25", + "version":11607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.113.128", + "prefixLen":25, + "network":"193.5.113.128\/25", + "version":11606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.114.0", + "prefixLen":25, + "network":"193.5.114.0\/25", + "version":11605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.114.128", + "prefixLen":25, + "network":"193.5.114.128\/25", + "version":11604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.115.0", + "prefixLen":25, + "network":"193.5.115.0\/25", + "version":11603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.115.128", + "prefixLen":25, + "network":"193.5.115.128\/25", + "version":11602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.128.0", + "prefixLen":25, + "network":"193.5.128.0\/25", + "version":11601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.128.128", + "prefixLen":25, + "network":"193.5.128.128\/25", + "version":11600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.129.0", + "prefixLen":25, + "network":"193.5.129.0\/25", + "version":11599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.129.128", + "prefixLen":25, + "network":"193.5.129.128\/25", + "version":11598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.130.0", + "prefixLen":25, + "network":"193.5.130.0\/25", + "version":11597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.130.128", + "prefixLen":25, + "network":"193.5.130.128\/25", + "version":11596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.131.0", + "prefixLen":25, + "network":"193.5.131.0\/25", + "version":11595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.131.128", + "prefixLen":25, + "network":"193.5.131.128\/25", + "version":11594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.144.0", + "prefixLen":25, + "network":"193.5.144.0\/25", + "version":11593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.144.128", + "prefixLen":25, + "network":"193.5.144.128\/25", + "version":11592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.145.0", + "prefixLen":25, + "network":"193.5.145.0\/25", + "version":11591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.145.128", + "prefixLen":25, + "network":"193.5.145.128\/25", + "version":11590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.146.0", + "prefixLen":25, + "network":"193.5.146.0\/25", + "version":11589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.146.128", + "prefixLen":25, + "network":"193.5.146.128\/25", + "version":11588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.147.0", + "prefixLen":25, + "network":"193.5.147.0\/25", + "version":11587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.147.128", + "prefixLen":25, + "network":"193.5.147.128\/25", + "version":11586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.160.0", + "prefixLen":25, + "network":"193.5.160.0\/25", + "version":11585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.160.128", + "prefixLen":25, + "network":"193.5.160.128\/25", + "version":11584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.161.0", + "prefixLen":25, + "network":"193.5.161.0\/25", + "version":11583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.161.128", + "prefixLen":25, + "network":"193.5.161.128\/25", + "version":11582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.162.0", + "prefixLen":25, + "network":"193.5.162.0\/25", + "version":11581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.162.128", + "prefixLen":25, + "network":"193.5.162.128\/25", + "version":11580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.163.0", + "prefixLen":25, + "network":"193.5.163.0\/25", + "version":11579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.163.128", + "prefixLen":25, + "network":"193.5.163.128\/25", + "version":11578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.176.0", + "prefixLen":25, + "network":"193.5.176.0\/25", + "version":11577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.176.128", + "prefixLen":25, + "network":"193.5.176.128\/25", + "version":11576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.177.0", + "prefixLen":25, + "network":"193.5.177.0\/25", + "version":11575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.177.128", + "prefixLen":25, + "network":"193.5.177.128\/25", + "version":11574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.178.0", + "prefixLen":25, + "network":"193.5.178.0\/25", + "version":11573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.178.128", + "prefixLen":25, + "network":"193.5.178.128\/25", + "version":11572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.179.0", + "prefixLen":25, + "network":"193.5.179.0\/25", + "version":11571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.179.128", + "prefixLen":25, + "network":"193.5.179.128\/25", + "version":11570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.192.0", + "prefixLen":25, + "network":"193.5.192.0\/25", + "version":11569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.192.128", + "prefixLen":25, + "network":"193.5.192.128\/25", + "version":11568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.193.0", + "prefixLen":25, + "network":"193.5.193.0\/25", + "version":11567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.193.128", + "prefixLen":25, + "network":"193.5.193.128\/25", + "version":11566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.194.0", + "prefixLen":25, + "network":"193.5.194.0\/25", + "version":11565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.194.128", + "prefixLen":25, + "network":"193.5.194.128\/25", + "version":11564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.195.0", + "prefixLen":25, + "network":"193.5.195.0\/25", + "version":11563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.195.128", + "prefixLen":25, + "network":"193.5.195.128\/25", + "version":11562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.208.0", + "prefixLen":25, + "network":"193.5.208.0\/25", + "version":11561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.208.128", + "prefixLen":25, + "network":"193.5.208.128\/25", + "version":11560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.209.0", + "prefixLen":25, + "network":"193.5.209.0\/25", + "version":11559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.209.128", + "prefixLen":25, + "network":"193.5.209.128\/25", + "version":11558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.210.0", + "prefixLen":25, + "network":"193.5.210.0\/25", + "version":11557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.210.128", + "prefixLen":25, + "network":"193.5.210.128\/25", + "version":11556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.211.0", + "prefixLen":25, + "network":"193.5.211.0\/25", + "version":11555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.211.128", + "prefixLen":25, + "network":"193.5.211.128\/25", + "version":11554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.224.0", + "prefixLen":25, + "network":"193.5.224.0\/25", + "version":11553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.224.128", + "prefixLen":25, + "network":"193.5.224.128\/25", + "version":11552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.225.0", + "prefixLen":25, + "network":"193.5.225.0\/25", + "version":11551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.225.128", + "prefixLen":25, + "network":"193.5.225.128\/25", + "version":11550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.226.0", + "prefixLen":25, + "network":"193.5.226.0\/25", + "version":11549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.226.128", + "prefixLen":25, + "network":"193.5.226.128\/25", + "version":11548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.227.0", + "prefixLen":25, + "network":"193.5.227.0\/25", + "version":11547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.227.128", + "prefixLen":25, + "network":"193.5.227.128\/25", + "version":11546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.240.0", + "prefixLen":25, + "network":"193.5.240.0\/25", + "version":11545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.240.128", + "prefixLen":25, + "network":"193.5.240.128\/25", + "version":11544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.241.0", + "prefixLen":25, + "network":"193.5.241.0\/25", + "version":11543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.241.128", + "prefixLen":25, + "network":"193.5.241.128\/25", + "version":11542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.242.0", + "prefixLen":25, + "network":"193.5.242.0\/25", + "version":11541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.242.128", + "prefixLen":25, + "network":"193.5.242.128\/25", + "version":11540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.243.0", + "prefixLen":25, + "network":"193.5.243.0\/25", + "version":11539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.5.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.5.243.128", + "prefixLen":25, + "network":"193.5.243.128\/25", + "version":11538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64693 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.0.0", + "prefixLen":25, + "network":"193.6.0.0\/25", + "version":11665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.0.128", + "prefixLen":25, + "network":"193.6.0.128\/25", + "version":11792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.1.0", + "prefixLen":25, + "network":"193.6.1.0\/25", + "version":11791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.1.128", + "prefixLen":25, + "network":"193.6.1.128\/25", + "version":11790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.2.0", + "prefixLen":25, + "network":"193.6.2.0\/25", + "version":11789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.2.128", + "prefixLen":25, + "network":"193.6.2.128\/25", + "version":11788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.3.0", + "prefixLen":25, + "network":"193.6.3.0\/25", + "version":11787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.3.128", + "prefixLen":25, + "network":"193.6.3.128\/25", + "version":11786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.16.0", + "prefixLen":25, + "network":"193.6.16.0\/25", + "version":11785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.16.128", + "prefixLen":25, + "network":"193.6.16.128\/25", + "version":11784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.17.0", + "prefixLen":25, + "network":"193.6.17.0\/25", + "version":11783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.17.128", + "prefixLen":25, + "network":"193.6.17.128\/25", + "version":11782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.18.0", + "prefixLen":25, + "network":"193.6.18.0\/25", + "version":11781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.18.128", + "prefixLen":25, + "network":"193.6.18.128\/25", + "version":11780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.19.0", + "prefixLen":25, + "network":"193.6.19.0\/25", + "version":11779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.19.128", + "prefixLen":25, + "network":"193.6.19.128\/25", + "version":11778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.32.0", + "prefixLen":25, + "network":"193.6.32.0\/25", + "version":11777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.32.128", + "prefixLen":25, + "network":"193.6.32.128\/25", + "version":11776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.33.0", + "prefixLen":25, + "network":"193.6.33.0\/25", + "version":11775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.33.128", + "prefixLen":25, + "network":"193.6.33.128\/25", + "version":11774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.34.0", + "prefixLen":25, + "network":"193.6.34.0\/25", + "version":11773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.34.128", + "prefixLen":25, + "network":"193.6.34.128\/25", + "version":11772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.35.0", + "prefixLen":25, + "network":"193.6.35.0\/25", + "version":11771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.35.128", + "prefixLen":25, + "network":"193.6.35.128\/25", + "version":11770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.48.0", + "prefixLen":25, + "network":"193.6.48.0\/25", + "version":11769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.48.128", + "prefixLen":25, + "network":"193.6.48.128\/25", + "version":11768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.49.0", + "prefixLen":25, + "network":"193.6.49.0\/25", + "version":11767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.49.128", + "prefixLen":25, + "network":"193.6.49.128\/25", + "version":11766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.50.0", + "prefixLen":25, + "network":"193.6.50.0\/25", + "version":11765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.50.128", + "prefixLen":25, + "network":"193.6.50.128\/25", + "version":11764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.51.0", + "prefixLen":25, + "network":"193.6.51.0\/25", + "version":11763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.51.128", + "prefixLen":25, + "network":"193.6.51.128\/25", + "version":11762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.64.0", + "prefixLen":25, + "network":"193.6.64.0\/25", + "version":11761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.64.128", + "prefixLen":25, + "network":"193.6.64.128\/25", + "version":11760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.65.0", + "prefixLen":25, + "network":"193.6.65.0\/25", + "version":11759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.65.128", + "prefixLen":25, + "network":"193.6.65.128\/25", + "version":11758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.66.0", + "prefixLen":25, + "network":"193.6.66.0\/25", + "version":11757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.66.128", + "prefixLen":25, + "network":"193.6.66.128\/25", + "version":11756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.67.0", + "prefixLen":25, + "network":"193.6.67.0\/25", + "version":11755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.67.128", + "prefixLen":25, + "network":"193.6.67.128\/25", + "version":11754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.80.0", + "prefixLen":25, + "network":"193.6.80.0\/25", + "version":11753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.80.128", + "prefixLen":25, + "network":"193.6.80.128\/25", + "version":11752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.81.0", + "prefixLen":25, + "network":"193.6.81.0\/25", + "version":11751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.81.128", + "prefixLen":25, + "network":"193.6.81.128\/25", + "version":11750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.82.0", + "prefixLen":25, + "network":"193.6.82.0\/25", + "version":11749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.82.128", + "prefixLen":25, + "network":"193.6.82.128\/25", + "version":11748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.83.0", + "prefixLen":25, + "network":"193.6.83.0\/25", + "version":11747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.83.128", + "prefixLen":25, + "network":"193.6.83.128\/25", + "version":11746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.96.0", + "prefixLen":25, + "network":"193.6.96.0\/25", + "version":11745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.96.128", + "prefixLen":25, + "network":"193.6.96.128\/25", + "version":11744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.97.0", + "prefixLen":25, + "network":"193.6.97.0\/25", + "version":11743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.97.128", + "prefixLen":25, + "network":"193.6.97.128\/25", + "version":11742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.98.0", + "prefixLen":25, + "network":"193.6.98.0\/25", + "version":11741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.98.128", + "prefixLen":25, + "network":"193.6.98.128\/25", + "version":11740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.99.0", + "prefixLen":25, + "network":"193.6.99.0\/25", + "version":11739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.99.128", + "prefixLen":25, + "network":"193.6.99.128\/25", + "version":11738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.112.0", + "prefixLen":25, + "network":"193.6.112.0\/25", + "version":11737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.112.128", + "prefixLen":25, + "network":"193.6.112.128\/25", + "version":11736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.113.0", + "prefixLen":25, + "network":"193.6.113.0\/25", + "version":11735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.113.128", + "prefixLen":25, + "network":"193.6.113.128\/25", + "version":11734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.114.0", + "prefixLen":25, + "network":"193.6.114.0\/25", + "version":11733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.114.128", + "prefixLen":25, + "network":"193.6.114.128\/25", + "version":11732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.115.0", + "prefixLen":25, + "network":"193.6.115.0\/25", + "version":11731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.115.128", + "prefixLen":25, + "network":"193.6.115.128\/25", + "version":11730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.128.0", + "prefixLen":25, + "network":"193.6.128.0\/25", + "version":11729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.128.128", + "prefixLen":25, + "network":"193.6.128.128\/25", + "version":11728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.129.0", + "prefixLen":25, + "network":"193.6.129.0\/25", + "version":11727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.129.128", + "prefixLen":25, + "network":"193.6.129.128\/25", + "version":11726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.130.0", + "prefixLen":25, + "network":"193.6.130.0\/25", + "version":11725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.130.128", + "prefixLen":25, + "network":"193.6.130.128\/25", + "version":11724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.131.0", + "prefixLen":25, + "network":"193.6.131.0\/25", + "version":11723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.131.128", + "prefixLen":25, + "network":"193.6.131.128\/25", + "version":11722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.144.0", + "prefixLen":25, + "network":"193.6.144.0\/25", + "version":11721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.144.128", + "prefixLen":25, + "network":"193.6.144.128\/25", + "version":11720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.145.0", + "prefixLen":25, + "network":"193.6.145.0\/25", + "version":11719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.145.128", + "prefixLen":25, + "network":"193.6.145.128\/25", + "version":11718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.146.0", + "prefixLen":25, + "network":"193.6.146.0\/25", + "version":11717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.146.128", + "prefixLen":25, + "network":"193.6.146.128\/25", + "version":11716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.147.0", + "prefixLen":25, + "network":"193.6.147.0\/25", + "version":11715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.147.128", + "prefixLen":25, + "network":"193.6.147.128\/25", + "version":11714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.160.0", + "prefixLen":25, + "network":"193.6.160.0\/25", + "version":11713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.160.128", + "prefixLen":25, + "network":"193.6.160.128\/25", + "version":11712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.161.0", + "prefixLen":25, + "network":"193.6.161.0\/25", + "version":11711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.161.128", + "prefixLen":25, + "network":"193.6.161.128\/25", + "version":11710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.162.0", + "prefixLen":25, + "network":"193.6.162.0\/25", + "version":11709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.162.128", + "prefixLen":25, + "network":"193.6.162.128\/25", + "version":11708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.163.0", + "prefixLen":25, + "network":"193.6.163.0\/25", + "version":11707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.163.128", + "prefixLen":25, + "network":"193.6.163.128\/25", + "version":11706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.176.0", + "prefixLen":25, + "network":"193.6.176.0\/25", + "version":11705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.176.128", + "prefixLen":25, + "network":"193.6.176.128\/25", + "version":11704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.177.0", + "prefixLen":25, + "network":"193.6.177.0\/25", + "version":11703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.177.128", + "prefixLen":25, + "network":"193.6.177.128\/25", + "version":11702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.178.0", + "prefixLen":25, + "network":"193.6.178.0\/25", + "version":11701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.178.128", + "prefixLen":25, + "network":"193.6.178.128\/25", + "version":11700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.179.0", + "prefixLen":25, + "network":"193.6.179.0\/25", + "version":11699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.179.128", + "prefixLen":25, + "network":"193.6.179.128\/25", + "version":11698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.192.0", + "prefixLen":25, + "network":"193.6.192.0\/25", + "version":11697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.192.128", + "prefixLen":25, + "network":"193.6.192.128\/25", + "version":11696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.193.0", + "prefixLen":25, + "network":"193.6.193.0\/25", + "version":11695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.193.128", + "prefixLen":25, + "network":"193.6.193.128\/25", + "version":11694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.194.0", + "prefixLen":25, + "network":"193.6.194.0\/25", + "version":11693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.194.128", + "prefixLen":25, + "network":"193.6.194.128\/25", + "version":11692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.195.0", + "prefixLen":25, + "network":"193.6.195.0\/25", + "version":11691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.195.128", + "prefixLen":25, + "network":"193.6.195.128\/25", + "version":11690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.208.0", + "prefixLen":25, + "network":"193.6.208.0\/25", + "version":11689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.208.128", + "prefixLen":25, + "network":"193.6.208.128\/25", + "version":11688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.209.0", + "prefixLen":25, + "network":"193.6.209.0\/25", + "version":11687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.209.128", + "prefixLen":25, + "network":"193.6.209.128\/25", + "version":11686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.210.0", + "prefixLen":25, + "network":"193.6.210.0\/25", + "version":11685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.210.128", + "prefixLen":25, + "network":"193.6.210.128\/25", + "version":11684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.211.0", + "prefixLen":25, + "network":"193.6.211.0\/25", + "version":11683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.211.128", + "prefixLen":25, + "network":"193.6.211.128\/25", + "version":11682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.224.0", + "prefixLen":25, + "network":"193.6.224.0\/25", + "version":11681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.224.128", + "prefixLen":25, + "network":"193.6.224.128\/25", + "version":11680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.225.0", + "prefixLen":25, + "network":"193.6.225.0\/25", + "version":11679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.225.128", + "prefixLen":25, + "network":"193.6.225.128\/25", + "version":11678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.226.0", + "prefixLen":25, + "network":"193.6.226.0\/25", + "version":11677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.226.128", + "prefixLen":25, + "network":"193.6.226.128\/25", + "version":11676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.227.0", + "prefixLen":25, + "network":"193.6.227.0\/25", + "version":11675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.227.128", + "prefixLen":25, + "network":"193.6.227.128\/25", + "version":11674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.240.0", + "prefixLen":25, + "network":"193.6.240.0\/25", + "version":11673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.240.128", + "prefixLen":25, + "network":"193.6.240.128\/25", + "version":11672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.241.0", + "prefixLen":25, + "network":"193.6.241.0\/25", + "version":11671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.241.128", + "prefixLen":25, + "network":"193.6.241.128\/25", + "version":11670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.242.0", + "prefixLen":25, + "network":"193.6.242.0\/25", + "version":11669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.242.128", + "prefixLen":25, + "network":"193.6.242.128\/25", + "version":11668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.243.0", + "prefixLen":25, + "network":"193.6.243.0\/25", + "version":11667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.6.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.6.243.128", + "prefixLen":25, + "network":"193.6.243.128\/25", + "version":11666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64694 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.0.0", + "prefixLen":25, + "network":"193.7.0.0\/25", + "version":11793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.0.128", + "prefixLen":25, + "network":"193.7.0.128\/25", + "version":11920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.1.0", + "prefixLen":25, + "network":"193.7.1.0\/25", + "version":11919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.1.128", + "prefixLen":25, + "network":"193.7.1.128\/25", + "version":11918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.2.0", + "prefixLen":25, + "network":"193.7.2.0\/25", + "version":11917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.2.128", + "prefixLen":25, + "network":"193.7.2.128\/25", + "version":11916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.3.0", + "prefixLen":25, + "network":"193.7.3.0\/25", + "version":11915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.3.128", + "prefixLen":25, + "network":"193.7.3.128\/25", + "version":11914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.16.0", + "prefixLen":25, + "network":"193.7.16.0\/25", + "version":11913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.16.128", + "prefixLen":25, + "network":"193.7.16.128\/25", + "version":11912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.17.0", + "prefixLen":25, + "network":"193.7.17.0\/25", + "version":11911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.17.128", + "prefixLen":25, + "network":"193.7.17.128\/25", + "version":11910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.18.0", + "prefixLen":25, + "network":"193.7.18.0\/25", + "version":11909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.18.128", + "prefixLen":25, + "network":"193.7.18.128\/25", + "version":11908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.19.0", + "prefixLen":25, + "network":"193.7.19.0\/25", + "version":11907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.19.128", + "prefixLen":25, + "network":"193.7.19.128\/25", + "version":11906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.32.0", + "prefixLen":25, + "network":"193.7.32.0\/25", + "version":11905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.32.128", + "prefixLen":25, + "network":"193.7.32.128\/25", + "version":11904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.33.0", + "prefixLen":25, + "network":"193.7.33.0\/25", + "version":11903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.33.128", + "prefixLen":25, + "network":"193.7.33.128\/25", + "version":11902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.34.0", + "prefixLen":25, + "network":"193.7.34.0\/25", + "version":11901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.34.128", + "prefixLen":25, + "network":"193.7.34.128\/25", + "version":11900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.35.0", + "prefixLen":25, + "network":"193.7.35.0\/25", + "version":11899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.35.128", + "prefixLen":25, + "network":"193.7.35.128\/25", + "version":11898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.48.0", + "prefixLen":25, + "network":"193.7.48.0\/25", + "version":11897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.48.128", + "prefixLen":25, + "network":"193.7.48.128\/25", + "version":11896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.49.0", + "prefixLen":25, + "network":"193.7.49.0\/25", + "version":11895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.49.128", + "prefixLen":25, + "network":"193.7.49.128\/25", + "version":11894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.50.0", + "prefixLen":25, + "network":"193.7.50.0\/25", + "version":11893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.50.128", + "prefixLen":25, + "network":"193.7.50.128\/25", + "version":11892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.51.0", + "prefixLen":25, + "network":"193.7.51.0\/25", + "version":11891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.51.128", + "prefixLen":25, + "network":"193.7.51.128\/25", + "version":11890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.64.0", + "prefixLen":25, + "network":"193.7.64.0\/25", + "version":11889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.64.128", + "prefixLen":25, + "network":"193.7.64.128\/25", + "version":11888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.65.0", + "prefixLen":25, + "network":"193.7.65.0\/25", + "version":11887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.65.128", + "prefixLen":25, + "network":"193.7.65.128\/25", + "version":11886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.66.0", + "prefixLen":25, + "network":"193.7.66.0\/25", + "version":11885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.66.128", + "prefixLen":25, + "network":"193.7.66.128\/25", + "version":11884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.67.0", + "prefixLen":25, + "network":"193.7.67.0\/25", + "version":11883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.67.128", + "prefixLen":25, + "network":"193.7.67.128\/25", + "version":11882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.80.0", + "prefixLen":25, + "network":"193.7.80.0\/25", + "version":11881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.80.128", + "prefixLen":25, + "network":"193.7.80.128\/25", + "version":11880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.81.0", + "prefixLen":25, + "network":"193.7.81.0\/25", + "version":11879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.81.128", + "prefixLen":25, + "network":"193.7.81.128\/25", + "version":11878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.82.0", + "prefixLen":25, + "network":"193.7.82.0\/25", + "version":11877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.82.128", + "prefixLen":25, + "network":"193.7.82.128\/25", + "version":11876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.83.0", + "prefixLen":25, + "network":"193.7.83.0\/25", + "version":11875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.83.128", + "prefixLen":25, + "network":"193.7.83.128\/25", + "version":11874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.96.0", + "prefixLen":25, + "network":"193.7.96.0\/25", + "version":11873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.96.128", + "prefixLen":25, + "network":"193.7.96.128\/25", + "version":11872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.97.0", + "prefixLen":25, + "network":"193.7.97.0\/25", + "version":11871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.97.128", + "prefixLen":25, + "network":"193.7.97.128\/25", + "version":11870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.98.0", + "prefixLen":25, + "network":"193.7.98.0\/25", + "version":11869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.98.128", + "prefixLen":25, + "network":"193.7.98.128\/25", + "version":11868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.99.0", + "prefixLen":25, + "network":"193.7.99.0\/25", + "version":11867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.99.128", + "prefixLen":25, + "network":"193.7.99.128\/25", + "version":11866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.112.0", + "prefixLen":25, + "network":"193.7.112.0\/25", + "version":11865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.112.128", + "prefixLen":25, + "network":"193.7.112.128\/25", + "version":11864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.113.0", + "prefixLen":25, + "network":"193.7.113.0\/25", + "version":11863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.113.128", + "prefixLen":25, + "network":"193.7.113.128\/25", + "version":11862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.114.0", + "prefixLen":25, + "network":"193.7.114.0\/25", + "version":11861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.114.128", + "prefixLen":25, + "network":"193.7.114.128\/25", + "version":11860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.115.0", + "prefixLen":25, + "network":"193.7.115.0\/25", + "version":11859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.115.128", + "prefixLen":25, + "network":"193.7.115.128\/25", + "version":11858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.128.0", + "prefixLen":25, + "network":"193.7.128.0\/25", + "version":11857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.128.128", + "prefixLen":25, + "network":"193.7.128.128\/25", + "version":11856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.129.0", + "prefixLen":25, + "network":"193.7.129.0\/25", + "version":11855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.129.128", + "prefixLen":25, + "network":"193.7.129.128\/25", + "version":11854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.130.0", + "prefixLen":25, + "network":"193.7.130.0\/25", + "version":11853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.130.128", + "prefixLen":25, + "network":"193.7.130.128\/25", + "version":11852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.131.0", + "prefixLen":25, + "network":"193.7.131.0\/25", + "version":11851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.131.128", + "prefixLen":25, + "network":"193.7.131.128\/25", + "version":11850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.144.0", + "prefixLen":25, + "network":"193.7.144.0\/25", + "version":11849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.144.128", + "prefixLen":25, + "network":"193.7.144.128\/25", + "version":11848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.145.0", + "prefixLen":25, + "network":"193.7.145.0\/25", + "version":11847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.145.128", + "prefixLen":25, + "network":"193.7.145.128\/25", + "version":11846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.146.0", + "prefixLen":25, + "network":"193.7.146.0\/25", + "version":11845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.146.128", + "prefixLen":25, + "network":"193.7.146.128\/25", + "version":11844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.147.0", + "prefixLen":25, + "network":"193.7.147.0\/25", + "version":11843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.147.128", + "prefixLen":25, + "network":"193.7.147.128\/25", + "version":11842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.160.0", + "prefixLen":25, + "network":"193.7.160.0\/25", + "version":11841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.160.128", + "prefixLen":25, + "network":"193.7.160.128\/25", + "version":11840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.161.0", + "prefixLen":25, + "network":"193.7.161.0\/25", + "version":11839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.161.128", + "prefixLen":25, + "network":"193.7.161.128\/25", + "version":11838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.162.0", + "prefixLen":25, + "network":"193.7.162.0\/25", + "version":11837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.162.128", + "prefixLen":25, + "network":"193.7.162.128\/25", + "version":11836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.163.0", + "prefixLen":25, + "network":"193.7.163.0\/25", + "version":11835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.163.128", + "prefixLen":25, + "network":"193.7.163.128\/25", + "version":11834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.176.0", + "prefixLen":25, + "network":"193.7.176.0\/25", + "version":11833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.176.128", + "prefixLen":25, + "network":"193.7.176.128\/25", + "version":11832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.177.0", + "prefixLen":25, + "network":"193.7.177.0\/25", + "version":11831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.177.128", + "prefixLen":25, + "network":"193.7.177.128\/25", + "version":11830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.178.0", + "prefixLen":25, + "network":"193.7.178.0\/25", + "version":11829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.178.128", + "prefixLen":25, + "network":"193.7.178.128\/25", + "version":11828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.179.0", + "prefixLen":25, + "network":"193.7.179.0\/25", + "version":11827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.179.128", + "prefixLen":25, + "network":"193.7.179.128\/25", + "version":11826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.192.0", + "prefixLen":25, + "network":"193.7.192.0\/25", + "version":11825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.192.128", + "prefixLen":25, + "network":"193.7.192.128\/25", + "version":11824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.193.0", + "prefixLen":25, + "network":"193.7.193.0\/25", + "version":11823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.193.128", + "prefixLen":25, + "network":"193.7.193.128\/25", + "version":11822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.194.0", + "prefixLen":25, + "network":"193.7.194.0\/25", + "version":11821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.194.128", + "prefixLen":25, + "network":"193.7.194.128\/25", + "version":11820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.195.0", + "prefixLen":25, + "network":"193.7.195.0\/25", + "version":11819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.195.128", + "prefixLen":25, + "network":"193.7.195.128\/25", + "version":11818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.208.0", + "prefixLen":25, + "network":"193.7.208.0\/25", + "version":11817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.208.128", + "prefixLen":25, + "network":"193.7.208.128\/25", + "version":11816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.209.0", + "prefixLen":25, + "network":"193.7.209.0\/25", + "version":11815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.209.128", + "prefixLen":25, + "network":"193.7.209.128\/25", + "version":11814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.210.0", + "prefixLen":25, + "network":"193.7.210.0\/25", + "version":11813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.210.128", + "prefixLen":25, + "network":"193.7.210.128\/25", + "version":11812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.211.0", + "prefixLen":25, + "network":"193.7.211.0\/25", + "version":11811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.211.128", + "prefixLen":25, + "network":"193.7.211.128\/25", + "version":11810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.224.0", + "prefixLen":25, + "network":"193.7.224.0\/25", + "version":11809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.224.128", + "prefixLen":25, + "network":"193.7.224.128\/25", + "version":11808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.225.0", + "prefixLen":25, + "network":"193.7.225.0\/25", + "version":11807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.225.128", + "prefixLen":25, + "network":"193.7.225.128\/25", + "version":11806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.226.0", + "prefixLen":25, + "network":"193.7.226.0\/25", + "version":11805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.226.128", + "prefixLen":25, + "network":"193.7.226.128\/25", + "version":11804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.227.0", + "prefixLen":25, + "network":"193.7.227.0\/25", + "version":11803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.227.128", + "prefixLen":25, + "network":"193.7.227.128\/25", + "version":11802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.240.0", + "prefixLen":25, + "network":"193.7.240.0\/25", + "version":11801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.240.128", + "prefixLen":25, + "network":"193.7.240.128\/25", + "version":11800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.241.0", + "prefixLen":25, + "network":"193.7.241.0\/25", + "version":11799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.241.128", + "prefixLen":25, + "network":"193.7.241.128\/25", + "version":11798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.242.0", + "prefixLen":25, + "network":"193.7.242.0\/25", + "version":11797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.242.128", + "prefixLen":25, + "network":"193.7.242.128\/25", + "version":11796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.243.0", + "prefixLen":25, + "network":"193.7.243.0\/25", + "version":11795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.7.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.7.243.128", + "prefixLen":25, + "network":"193.7.243.128\/25", + "version":11794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64695 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.0.0", + "prefixLen":25, + "network":"193.8.0.0\/25", + "version":11921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.0.128", + "prefixLen":25, + "network":"193.8.0.128\/25", + "version":12048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.1.0", + "prefixLen":25, + "network":"193.8.1.0\/25", + "version":12047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.1.128", + "prefixLen":25, + "network":"193.8.1.128\/25", + "version":12046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.2.0", + "prefixLen":25, + "network":"193.8.2.0\/25", + "version":12045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.2.128", + "prefixLen":25, + "network":"193.8.2.128\/25", + "version":12044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.3.0", + "prefixLen":25, + "network":"193.8.3.0\/25", + "version":12043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.3.128", + "prefixLen":25, + "network":"193.8.3.128\/25", + "version":12042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.16.0", + "prefixLen":25, + "network":"193.8.16.0\/25", + "version":12041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.16.128", + "prefixLen":25, + "network":"193.8.16.128\/25", + "version":12040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.17.0", + "prefixLen":25, + "network":"193.8.17.0\/25", + "version":12039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.17.128", + "prefixLen":25, + "network":"193.8.17.128\/25", + "version":12038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.18.0", + "prefixLen":25, + "network":"193.8.18.0\/25", + "version":12037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.18.128", + "prefixLen":25, + "network":"193.8.18.128\/25", + "version":12036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.19.0", + "prefixLen":25, + "network":"193.8.19.0\/25", + "version":12035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.19.128", + "prefixLen":25, + "network":"193.8.19.128\/25", + "version":12034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.32.0", + "prefixLen":25, + "network":"193.8.32.0\/25", + "version":12033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.32.128", + "prefixLen":25, + "network":"193.8.32.128\/25", + "version":12032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.33.0", + "prefixLen":25, + "network":"193.8.33.0\/25", + "version":12031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.33.128", + "prefixLen":25, + "network":"193.8.33.128\/25", + "version":12030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.34.0", + "prefixLen":25, + "network":"193.8.34.0\/25", + "version":12029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.34.128", + "prefixLen":25, + "network":"193.8.34.128\/25", + "version":12028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.35.0", + "prefixLen":25, + "network":"193.8.35.0\/25", + "version":12027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.35.128", + "prefixLen":25, + "network":"193.8.35.128\/25", + "version":12026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.48.0", + "prefixLen":25, + "network":"193.8.48.0\/25", + "version":12025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.48.128", + "prefixLen":25, + "network":"193.8.48.128\/25", + "version":12024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.49.0", + "prefixLen":25, + "network":"193.8.49.0\/25", + "version":12023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.49.128", + "prefixLen":25, + "network":"193.8.49.128\/25", + "version":12022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.50.0", + "prefixLen":25, + "network":"193.8.50.0\/25", + "version":12021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.50.128", + "prefixLen":25, + "network":"193.8.50.128\/25", + "version":12020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.51.0", + "prefixLen":25, + "network":"193.8.51.0\/25", + "version":12019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.51.128", + "prefixLen":25, + "network":"193.8.51.128\/25", + "version":12018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.64.0", + "prefixLen":25, + "network":"193.8.64.0\/25", + "version":12017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.64.128", + "prefixLen":25, + "network":"193.8.64.128\/25", + "version":12016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.65.0", + "prefixLen":25, + "network":"193.8.65.0\/25", + "version":12015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.65.128", + "prefixLen":25, + "network":"193.8.65.128\/25", + "version":12014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.66.0", + "prefixLen":25, + "network":"193.8.66.0\/25", + "version":12013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.66.128", + "prefixLen":25, + "network":"193.8.66.128\/25", + "version":12012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.67.0", + "prefixLen":25, + "network":"193.8.67.0\/25", + "version":12011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.67.128", + "prefixLen":25, + "network":"193.8.67.128\/25", + "version":12010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.80.0", + "prefixLen":25, + "network":"193.8.80.0\/25", + "version":12009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.80.128", + "prefixLen":25, + "network":"193.8.80.128\/25", + "version":12008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.81.0", + "prefixLen":25, + "network":"193.8.81.0\/25", + "version":12007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.81.128", + "prefixLen":25, + "network":"193.8.81.128\/25", + "version":12006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.82.0", + "prefixLen":25, + "network":"193.8.82.0\/25", + "version":12005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.82.128", + "prefixLen":25, + "network":"193.8.82.128\/25", + "version":12004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.83.0", + "prefixLen":25, + "network":"193.8.83.0\/25", + "version":12003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.83.128", + "prefixLen":25, + "network":"193.8.83.128\/25", + "version":12002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.96.0", + "prefixLen":25, + "network":"193.8.96.0\/25", + "version":12001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.96.128", + "prefixLen":25, + "network":"193.8.96.128\/25", + "version":12000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.97.0", + "prefixLen":25, + "network":"193.8.97.0\/25", + "version":11999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.97.128", + "prefixLen":25, + "network":"193.8.97.128\/25", + "version":11998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.98.0", + "prefixLen":25, + "network":"193.8.98.0\/25", + "version":11997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.98.128", + "prefixLen":25, + "network":"193.8.98.128\/25", + "version":11996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.99.0", + "prefixLen":25, + "network":"193.8.99.0\/25", + "version":11995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.99.128", + "prefixLen":25, + "network":"193.8.99.128\/25", + "version":11994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.112.0", + "prefixLen":25, + "network":"193.8.112.0\/25", + "version":11993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.112.128", + "prefixLen":25, + "network":"193.8.112.128\/25", + "version":11992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.113.0", + "prefixLen":25, + "network":"193.8.113.0\/25", + "version":11991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.113.128", + "prefixLen":25, + "network":"193.8.113.128\/25", + "version":11990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.114.0", + "prefixLen":25, + "network":"193.8.114.0\/25", + "version":11989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.114.128", + "prefixLen":25, + "network":"193.8.114.128\/25", + "version":11988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.115.0", + "prefixLen":25, + "network":"193.8.115.0\/25", + "version":11987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.115.128", + "prefixLen":25, + "network":"193.8.115.128\/25", + "version":11986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.128.0", + "prefixLen":25, + "network":"193.8.128.0\/25", + "version":11985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.128.128", + "prefixLen":25, + "network":"193.8.128.128\/25", + "version":11984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.129.0", + "prefixLen":25, + "network":"193.8.129.0\/25", + "version":11983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.129.128", + "prefixLen":25, + "network":"193.8.129.128\/25", + "version":11982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.130.0", + "prefixLen":25, + "network":"193.8.130.0\/25", + "version":11981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.130.128", + "prefixLen":25, + "network":"193.8.130.128\/25", + "version":11980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.131.0", + "prefixLen":25, + "network":"193.8.131.0\/25", + "version":11979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.131.128", + "prefixLen":25, + "network":"193.8.131.128\/25", + "version":11978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.144.0", + "prefixLen":25, + "network":"193.8.144.0\/25", + "version":11977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.144.128", + "prefixLen":25, + "network":"193.8.144.128\/25", + "version":11976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.145.0", + "prefixLen":25, + "network":"193.8.145.0\/25", + "version":11975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.145.128", + "prefixLen":25, + "network":"193.8.145.128\/25", + "version":11974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.146.0", + "prefixLen":25, + "network":"193.8.146.0\/25", + "version":11973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.146.128", + "prefixLen":25, + "network":"193.8.146.128\/25", + "version":11972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.147.0", + "prefixLen":25, + "network":"193.8.147.0\/25", + "version":11971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.147.128", + "prefixLen":25, + "network":"193.8.147.128\/25", + "version":11970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.160.0", + "prefixLen":25, + "network":"193.8.160.0\/25", + "version":11969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.160.128", + "prefixLen":25, + "network":"193.8.160.128\/25", + "version":11968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.161.0", + "prefixLen":25, + "network":"193.8.161.0\/25", + "version":11967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.161.128", + "prefixLen":25, + "network":"193.8.161.128\/25", + "version":11966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.162.0", + "prefixLen":25, + "network":"193.8.162.0\/25", + "version":11965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.162.128", + "prefixLen":25, + "network":"193.8.162.128\/25", + "version":11964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.163.0", + "prefixLen":25, + "network":"193.8.163.0\/25", + "version":11963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.163.128", + "prefixLen":25, + "network":"193.8.163.128\/25", + "version":11962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.176.0", + "prefixLen":25, + "network":"193.8.176.0\/25", + "version":11961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.176.128", + "prefixLen":25, + "network":"193.8.176.128\/25", + "version":11960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.177.0", + "prefixLen":25, + "network":"193.8.177.0\/25", + "version":11959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.177.128", + "prefixLen":25, + "network":"193.8.177.128\/25", + "version":11958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.178.0", + "prefixLen":25, + "network":"193.8.178.0\/25", + "version":11957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.178.128", + "prefixLen":25, + "network":"193.8.178.128\/25", + "version":11956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.179.0", + "prefixLen":25, + "network":"193.8.179.0\/25", + "version":11955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.179.128", + "prefixLen":25, + "network":"193.8.179.128\/25", + "version":11954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.192.0", + "prefixLen":25, + "network":"193.8.192.0\/25", + "version":11953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.192.128", + "prefixLen":25, + "network":"193.8.192.128\/25", + "version":11952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.193.0", + "prefixLen":25, + "network":"193.8.193.0\/25", + "version":11951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.193.128", + "prefixLen":25, + "network":"193.8.193.128\/25", + "version":11950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.194.0", + "prefixLen":25, + "network":"193.8.194.0\/25", + "version":11949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.194.128", + "prefixLen":25, + "network":"193.8.194.128\/25", + "version":11948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.195.0", + "prefixLen":25, + "network":"193.8.195.0\/25", + "version":11947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.195.128", + "prefixLen":25, + "network":"193.8.195.128\/25", + "version":11946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.208.0", + "prefixLen":25, + "network":"193.8.208.0\/25", + "version":11945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.208.128", + "prefixLen":25, + "network":"193.8.208.128\/25", + "version":11944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.209.0", + "prefixLen":25, + "network":"193.8.209.0\/25", + "version":11943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.209.128", + "prefixLen":25, + "network":"193.8.209.128\/25", + "version":11942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.210.0", + "prefixLen":25, + "network":"193.8.210.0\/25", + "version":11941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.210.128", + "prefixLen":25, + "network":"193.8.210.128\/25", + "version":11940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.211.0", + "prefixLen":25, + "network":"193.8.211.0\/25", + "version":11939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.211.128", + "prefixLen":25, + "network":"193.8.211.128\/25", + "version":11938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.224.0", + "prefixLen":25, + "network":"193.8.224.0\/25", + "version":11937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.224.128", + "prefixLen":25, + "network":"193.8.224.128\/25", + "version":11936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.225.0", + "prefixLen":25, + "network":"193.8.225.0\/25", + "version":11935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.225.128", + "prefixLen":25, + "network":"193.8.225.128\/25", + "version":11934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.226.0", + "prefixLen":25, + "network":"193.8.226.0\/25", + "version":11933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.226.128", + "prefixLen":25, + "network":"193.8.226.128\/25", + "version":11932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.227.0", + "prefixLen":25, + "network":"193.8.227.0\/25", + "version":11931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.227.128", + "prefixLen":25, + "network":"193.8.227.128\/25", + "version":11930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.240.0", + "prefixLen":25, + "network":"193.8.240.0\/25", + "version":11929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.240.128", + "prefixLen":25, + "network":"193.8.240.128\/25", + "version":11928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.241.0", + "prefixLen":25, + "network":"193.8.241.0\/25", + "version":11927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.241.128", + "prefixLen":25, + "network":"193.8.241.128\/25", + "version":11926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.242.0", + "prefixLen":25, + "network":"193.8.242.0\/25", + "version":11925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.242.128", + "prefixLen":25, + "network":"193.8.242.128\/25", + "version":11924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.243.0", + "prefixLen":25, + "network":"193.8.243.0\/25", + "version":11923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.8.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.8.243.128", + "prefixLen":25, + "network":"193.8.243.128\/25", + "version":11922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64696 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.0.0", + "prefixLen":25, + "network":"193.9.0.0\/25", + "version":12049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.0.128", + "prefixLen":25, + "network":"193.9.0.128\/25", + "version":12176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.1.0", + "prefixLen":25, + "network":"193.9.1.0\/25", + "version":12175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.1.128", + "prefixLen":25, + "network":"193.9.1.128\/25", + "version":12174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.2.0", + "prefixLen":25, + "network":"193.9.2.0\/25", + "version":12173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.2.128", + "prefixLen":25, + "network":"193.9.2.128\/25", + "version":12172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.3.0", + "prefixLen":25, + "network":"193.9.3.0\/25", + "version":12171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.3.128", + "prefixLen":25, + "network":"193.9.3.128\/25", + "version":12170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.16.0", + "prefixLen":25, + "network":"193.9.16.0\/25", + "version":12169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.16.128", + "prefixLen":25, + "network":"193.9.16.128\/25", + "version":12168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.17.0", + "prefixLen":25, + "network":"193.9.17.0\/25", + "version":12167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.17.128", + "prefixLen":25, + "network":"193.9.17.128\/25", + "version":12166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.18.0", + "prefixLen":25, + "network":"193.9.18.0\/25", + "version":12165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.18.128", + "prefixLen":25, + "network":"193.9.18.128\/25", + "version":12164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.19.0", + "prefixLen":25, + "network":"193.9.19.0\/25", + "version":12163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.19.128", + "prefixLen":25, + "network":"193.9.19.128\/25", + "version":12162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.32.0", + "prefixLen":25, + "network":"193.9.32.0\/25", + "version":12161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.32.128", + "prefixLen":25, + "network":"193.9.32.128\/25", + "version":12160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.33.0", + "prefixLen":25, + "network":"193.9.33.0\/25", + "version":12159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.33.128", + "prefixLen":25, + "network":"193.9.33.128\/25", + "version":12158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.34.0", + "prefixLen":25, + "network":"193.9.34.0\/25", + "version":12157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.34.128", + "prefixLen":25, + "network":"193.9.34.128\/25", + "version":12156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.35.0", + "prefixLen":25, + "network":"193.9.35.0\/25", + "version":12155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.35.128", + "prefixLen":25, + "network":"193.9.35.128\/25", + "version":12154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.48.0", + "prefixLen":25, + "network":"193.9.48.0\/25", + "version":12153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.48.128", + "prefixLen":25, + "network":"193.9.48.128\/25", + "version":12152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.49.0", + "prefixLen":25, + "network":"193.9.49.0\/25", + "version":12151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.49.128", + "prefixLen":25, + "network":"193.9.49.128\/25", + "version":12150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.50.0", + "prefixLen":25, + "network":"193.9.50.0\/25", + "version":12149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.50.128", + "prefixLen":25, + "network":"193.9.50.128\/25", + "version":12148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.51.0", + "prefixLen":25, + "network":"193.9.51.0\/25", + "version":12147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.51.128", + "prefixLen":25, + "network":"193.9.51.128\/25", + "version":12146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.64.0", + "prefixLen":25, + "network":"193.9.64.0\/25", + "version":12145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.64.128", + "prefixLen":25, + "network":"193.9.64.128\/25", + "version":12144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.65.0", + "prefixLen":25, + "network":"193.9.65.0\/25", + "version":12143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.65.128", + "prefixLen":25, + "network":"193.9.65.128\/25", + "version":12142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.66.0", + "prefixLen":25, + "network":"193.9.66.0\/25", + "version":12141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.66.128", + "prefixLen":25, + "network":"193.9.66.128\/25", + "version":12140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.67.0", + "prefixLen":25, + "network":"193.9.67.0\/25", + "version":12139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.67.128", + "prefixLen":25, + "network":"193.9.67.128\/25", + "version":12138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.80.0", + "prefixLen":25, + "network":"193.9.80.0\/25", + "version":12137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.80.128", + "prefixLen":25, + "network":"193.9.80.128\/25", + "version":12136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.81.0", + "prefixLen":25, + "network":"193.9.81.0\/25", + "version":12135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.81.128", + "prefixLen":25, + "network":"193.9.81.128\/25", + "version":12134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.82.0", + "prefixLen":25, + "network":"193.9.82.0\/25", + "version":12133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.82.128", + "prefixLen":25, + "network":"193.9.82.128\/25", + "version":12132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.83.0", + "prefixLen":25, + "network":"193.9.83.0\/25", + "version":12131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.83.128", + "prefixLen":25, + "network":"193.9.83.128\/25", + "version":12130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.96.0", + "prefixLen":25, + "network":"193.9.96.0\/25", + "version":12129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.96.128", + "prefixLen":25, + "network":"193.9.96.128\/25", + "version":12128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.97.0", + "prefixLen":25, + "network":"193.9.97.0\/25", + "version":12127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.97.128", + "prefixLen":25, + "network":"193.9.97.128\/25", + "version":12126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.98.0", + "prefixLen":25, + "network":"193.9.98.0\/25", + "version":12125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.98.128", + "prefixLen":25, + "network":"193.9.98.128\/25", + "version":12124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.99.0", + "prefixLen":25, + "network":"193.9.99.0\/25", + "version":12123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.99.128", + "prefixLen":25, + "network":"193.9.99.128\/25", + "version":12122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.112.0", + "prefixLen":25, + "network":"193.9.112.0\/25", + "version":12121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.112.128", + "prefixLen":25, + "network":"193.9.112.128\/25", + "version":12120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.113.0", + "prefixLen":25, + "network":"193.9.113.0\/25", + "version":12119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.113.128", + "prefixLen":25, + "network":"193.9.113.128\/25", + "version":12118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.114.0", + "prefixLen":25, + "network":"193.9.114.0\/25", + "version":12117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.114.128", + "prefixLen":25, + "network":"193.9.114.128\/25", + "version":12116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.115.0", + "prefixLen":25, + "network":"193.9.115.0\/25", + "version":12115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.115.128", + "prefixLen":25, + "network":"193.9.115.128\/25", + "version":12114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.128.0", + "prefixLen":25, + "network":"193.9.128.0\/25", + "version":12113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.128.128", + "prefixLen":25, + "network":"193.9.128.128\/25", + "version":12112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.129.0", + "prefixLen":25, + "network":"193.9.129.0\/25", + "version":12111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.129.128", + "prefixLen":25, + "network":"193.9.129.128\/25", + "version":12110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.130.0", + "prefixLen":25, + "network":"193.9.130.0\/25", + "version":12109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.130.128", + "prefixLen":25, + "network":"193.9.130.128\/25", + "version":12108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.131.0", + "prefixLen":25, + "network":"193.9.131.0\/25", + "version":12107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.131.128", + "prefixLen":25, + "network":"193.9.131.128\/25", + "version":12106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.144.0", + "prefixLen":25, + "network":"193.9.144.0\/25", + "version":12105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.144.128", + "prefixLen":25, + "network":"193.9.144.128\/25", + "version":12104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.145.0", + "prefixLen":25, + "network":"193.9.145.0\/25", + "version":12103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.145.128", + "prefixLen":25, + "network":"193.9.145.128\/25", + "version":12102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.146.0", + "prefixLen":25, + "network":"193.9.146.0\/25", + "version":12101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.146.128", + "prefixLen":25, + "network":"193.9.146.128\/25", + "version":12100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.147.0", + "prefixLen":25, + "network":"193.9.147.0\/25", + "version":12099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.147.128", + "prefixLen":25, + "network":"193.9.147.128\/25", + "version":12098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.160.0", + "prefixLen":25, + "network":"193.9.160.0\/25", + "version":12097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.160.128", + "prefixLen":25, + "network":"193.9.160.128\/25", + "version":12096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.161.0", + "prefixLen":25, + "network":"193.9.161.0\/25", + "version":12095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.161.128", + "prefixLen":25, + "network":"193.9.161.128\/25", + "version":12094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.162.0", + "prefixLen":25, + "network":"193.9.162.0\/25", + "version":12093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.162.128", + "prefixLen":25, + "network":"193.9.162.128\/25", + "version":12092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.163.0", + "prefixLen":25, + "network":"193.9.163.0\/25", + "version":12091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.163.128", + "prefixLen":25, + "network":"193.9.163.128\/25", + "version":12090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.176.0", + "prefixLen":25, + "network":"193.9.176.0\/25", + "version":12089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.176.128", + "prefixLen":25, + "network":"193.9.176.128\/25", + "version":12088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.177.0", + "prefixLen":25, + "network":"193.9.177.0\/25", + "version":12087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.177.128", + "prefixLen":25, + "network":"193.9.177.128\/25", + "version":12086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.178.0", + "prefixLen":25, + "network":"193.9.178.0\/25", + "version":12085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.178.128", + "prefixLen":25, + "network":"193.9.178.128\/25", + "version":12084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.179.0", + "prefixLen":25, + "network":"193.9.179.0\/25", + "version":12083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.179.128", + "prefixLen":25, + "network":"193.9.179.128\/25", + "version":12082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.192.0", + "prefixLen":25, + "network":"193.9.192.0\/25", + "version":12081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.192.128", + "prefixLen":25, + "network":"193.9.192.128\/25", + "version":12080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.193.0", + "prefixLen":25, + "network":"193.9.193.0\/25", + "version":12079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.193.128", + "prefixLen":25, + "network":"193.9.193.128\/25", + "version":12078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.194.0", + "prefixLen":25, + "network":"193.9.194.0\/25", + "version":12077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.194.128", + "prefixLen":25, + "network":"193.9.194.128\/25", + "version":12076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.195.0", + "prefixLen":25, + "network":"193.9.195.0\/25", + "version":12075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.195.128", + "prefixLen":25, + "network":"193.9.195.128\/25", + "version":12074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.208.0", + "prefixLen":25, + "network":"193.9.208.0\/25", + "version":12073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.208.128", + "prefixLen":25, + "network":"193.9.208.128\/25", + "version":12072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.209.0", + "prefixLen":25, + "network":"193.9.209.0\/25", + "version":12071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.209.128", + "prefixLen":25, + "network":"193.9.209.128\/25", + "version":12070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.210.0", + "prefixLen":25, + "network":"193.9.210.0\/25", + "version":12069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.210.128", + "prefixLen":25, + "network":"193.9.210.128\/25", + "version":12068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.211.0", + "prefixLen":25, + "network":"193.9.211.0\/25", + "version":12067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.211.128", + "prefixLen":25, + "network":"193.9.211.128\/25", + "version":12066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.224.0", + "prefixLen":25, + "network":"193.9.224.0\/25", + "version":12065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.224.128", + "prefixLen":25, + "network":"193.9.224.128\/25", + "version":12064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.225.0", + "prefixLen":25, + "network":"193.9.225.0\/25", + "version":12063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.225.128", + "prefixLen":25, + "network":"193.9.225.128\/25", + "version":12062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.226.0", + "prefixLen":25, + "network":"193.9.226.0\/25", + "version":12061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.226.128", + "prefixLen":25, + "network":"193.9.226.128\/25", + "version":12060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.227.0", + "prefixLen":25, + "network":"193.9.227.0\/25", + "version":12059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.227.128", + "prefixLen":25, + "network":"193.9.227.128\/25", + "version":12058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.240.0", + "prefixLen":25, + "network":"193.9.240.0\/25", + "version":12057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.240.128", + "prefixLen":25, + "network":"193.9.240.128\/25", + "version":12056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.241.0", + "prefixLen":25, + "network":"193.9.241.0\/25", + "version":12055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.241.128", + "prefixLen":25, + "network":"193.9.241.128\/25", + "version":12054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.242.0", + "prefixLen":25, + "network":"193.9.242.0\/25", + "version":12053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.242.128", + "prefixLen":25, + "network":"193.9.242.128\/25", + "version":12052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.243.0", + "prefixLen":25, + "network":"193.9.243.0\/25", + "version":12051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.9.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.9.243.128", + "prefixLen":25, + "network":"193.9.243.128\/25", + "version":12050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64697 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.0.0", + "prefixLen":25, + "network":"193.10.0.0\/25", + "version":12177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.0.128", + "prefixLen":25, + "network":"193.10.0.128\/25", + "version":12304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.1.0", + "prefixLen":25, + "network":"193.10.1.0\/25", + "version":12303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.1.128", + "prefixLen":25, + "network":"193.10.1.128\/25", + "version":12302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.2.0", + "prefixLen":25, + "network":"193.10.2.0\/25", + "version":12301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.2.128", + "prefixLen":25, + "network":"193.10.2.128\/25", + "version":12300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.3.0", + "prefixLen":25, + "network":"193.10.3.0\/25", + "version":12299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.3.128", + "prefixLen":25, + "network":"193.10.3.128\/25", + "version":12298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.16.0", + "prefixLen":25, + "network":"193.10.16.0\/25", + "version":12297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.16.128", + "prefixLen":25, + "network":"193.10.16.128\/25", + "version":12296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.17.0", + "prefixLen":25, + "network":"193.10.17.0\/25", + "version":12295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.17.128", + "prefixLen":25, + "network":"193.10.17.128\/25", + "version":12294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.18.0", + "prefixLen":25, + "network":"193.10.18.0\/25", + "version":12293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.18.128", + "prefixLen":25, + "network":"193.10.18.128\/25", + "version":12292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.19.0", + "prefixLen":25, + "network":"193.10.19.0\/25", + "version":12291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.19.128", + "prefixLen":25, + "network":"193.10.19.128\/25", + "version":12290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.32.0", + "prefixLen":25, + "network":"193.10.32.0\/25", + "version":12289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.32.128", + "prefixLen":25, + "network":"193.10.32.128\/25", + "version":12288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.33.0", + "prefixLen":25, + "network":"193.10.33.0\/25", + "version":12287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.33.128", + "prefixLen":25, + "network":"193.10.33.128\/25", + "version":12286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.34.0", + "prefixLen":25, + "network":"193.10.34.0\/25", + "version":12285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.34.128", + "prefixLen":25, + "network":"193.10.34.128\/25", + "version":12284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.35.0", + "prefixLen":25, + "network":"193.10.35.0\/25", + "version":12283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.35.128", + "prefixLen":25, + "network":"193.10.35.128\/25", + "version":12282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.48.0", + "prefixLen":25, + "network":"193.10.48.0\/25", + "version":12281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.48.128", + "prefixLen":25, + "network":"193.10.48.128\/25", + "version":12280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.49.0", + "prefixLen":25, + "network":"193.10.49.0\/25", + "version":12279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.49.128", + "prefixLen":25, + "network":"193.10.49.128\/25", + "version":12278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.50.0", + "prefixLen":25, + "network":"193.10.50.0\/25", + "version":12277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.50.128", + "prefixLen":25, + "network":"193.10.50.128\/25", + "version":12276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.51.0", + "prefixLen":25, + "network":"193.10.51.0\/25", + "version":12275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.51.128", + "prefixLen":25, + "network":"193.10.51.128\/25", + "version":12274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.64.0", + "prefixLen":25, + "network":"193.10.64.0\/25", + "version":12273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.64.128", + "prefixLen":25, + "network":"193.10.64.128\/25", + "version":12272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.65.0", + "prefixLen":25, + "network":"193.10.65.0\/25", + "version":12271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.65.128", + "prefixLen":25, + "network":"193.10.65.128\/25", + "version":12270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.66.0", + "prefixLen":25, + "network":"193.10.66.0\/25", + "version":12269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.66.128", + "prefixLen":25, + "network":"193.10.66.128\/25", + "version":12268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.67.0", + "prefixLen":25, + "network":"193.10.67.0\/25", + "version":12267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.67.128", + "prefixLen":25, + "network":"193.10.67.128\/25", + "version":12266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.80.0", + "prefixLen":25, + "network":"193.10.80.0\/25", + "version":12265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.80.128", + "prefixLen":25, + "network":"193.10.80.128\/25", + "version":12264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.81.0", + "prefixLen":25, + "network":"193.10.81.0\/25", + "version":12263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.81.128", + "prefixLen":25, + "network":"193.10.81.128\/25", + "version":12262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.82.0", + "prefixLen":25, + "network":"193.10.82.0\/25", + "version":12261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.82.128", + "prefixLen":25, + "network":"193.10.82.128\/25", + "version":12260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.83.0", + "prefixLen":25, + "network":"193.10.83.0\/25", + "version":12259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.83.128", + "prefixLen":25, + "network":"193.10.83.128\/25", + "version":12258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.96.0", + "prefixLen":25, + "network":"193.10.96.0\/25", + "version":12257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.96.128", + "prefixLen":25, + "network":"193.10.96.128\/25", + "version":12256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.97.0", + "prefixLen":25, + "network":"193.10.97.0\/25", + "version":12255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.97.128", + "prefixLen":25, + "network":"193.10.97.128\/25", + "version":12254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.98.0", + "prefixLen":25, + "network":"193.10.98.0\/25", + "version":12253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.98.128", + "prefixLen":25, + "network":"193.10.98.128\/25", + "version":12252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.99.0", + "prefixLen":25, + "network":"193.10.99.0\/25", + "version":12251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.99.128", + "prefixLen":25, + "network":"193.10.99.128\/25", + "version":12250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.112.0", + "prefixLen":25, + "network":"193.10.112.0\/25", + "version":12249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.112.128", + "prefixLen":25, + "network":"193.10.112.128\/25", + "version":12248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.113.0", + "prefixLen":25, + "network":"193.10.113.0\/25", + "version":12247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.113.128", + "prefixLen":25, + "network":"193.10.113.128\/25", + "version":12246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.114.0", + "prefixLen":25, + "network":"193.10.114.0\/25", + "version":12245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.114.128", + "prefixLen":25, + "network":"193.10.114.128\/25", + "version":12244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.115.0", + "prefixLen":25, + "network":"193.10.115.0\/25", + "version":12243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.115.128", + "prefixLen":25, + "network":"193.10.115.128\/25", + "version":12242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.128.0", + "prefixLen":25, + "network":"193.10.128.0\/25", + "version":12241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.128.128", + "prefixLen":25, + "network":"193.10.128.128\/25", + "version":12240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.129.0", + "prefixLen":25, + "network":"193.10.129.0\/25", + "version":12239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.129.128", + "prefixLen":25, + "network":"193.10.129.128\/25", + "version":12238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.130.0", + "prefixLen":25, + "network":"193.10.130.0\/25", + "version":12237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.130.128", + "prefixLen":25, + "network":"193.10.130.128\/25", + "version":12236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.131.0", + "prefixLen":25, + "network":"193.10.131.0\/25", + "version":12235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.131.128", + "prefixLen":25, + "network":"193.10.131.128\/25", + "version":12234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.144.0", + "prefixLen":25, + "network":"193.10.144.0\/25", + "version":12233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.144.128", + "prefixLen":25, + "network":"193.10.144.128\/25", + "version":12232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.145.0", + "prefixLen":25, + "network":"193.10.145.0\/25", + "version":12231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.145.128", + "prefixLen":25, + "network":"193.10.145.128\/25", + "version":12230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.146.0", + "prefixLen":25, + "network":"193.10.146.0\/25", + "version":12229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.146.128", + "prefixLen":25, + "network":"193.10.146.128\/25", + "version":12228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.147.0", + "prefixLen":25, + "network":"193.10.147.0\/25", + "version":12227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.147.128", + "prefixLen":25, + "network":"193.10.147.128\/25", + "version":12226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.160.0", + "prefixLen":25, + "network":"193.10.160.0\/25", + "version":12225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.160.128", + "prefixLen":25, + "network":"193.10.160.128\/25", + "version":12224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.161.0", + "prefixLen":25, + "network":"193.10.161.0\/25", + "version":12223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.161.128", + "prefixLen":25, + "network":"193.10.161.128\/25", + "version":12222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.162.0", + "prefixLen":25, + "network":"193.10.162.0\/25", + "version":12221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.162.128", + "prefixLen":25, + "network":"193.10.162.128\/25", + "version":12220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.163.0", + "prefixLen":25, + "network":"193.10.163.0\/25", + "version":12219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.163.128", + "prefixLen":25, + "network":"193.10.163.128\/25", + "version":12218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.176.0", + "prefixLen":25, + "network":"193.10.176.0\/25", + "version":12217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.176.128", + "prefixLen":25, + "network":"193.10.176.128\/25", + "version":12216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.177.0", + "prefixLen":25, + "network":"193.10.177.0\/25", + "version":12215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.177.128", + "prefixLen":25, + "network":"193.10.177.128\/25", + "version":12214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.178.0", + "prefixLen":25, + "network":"193.10.178.0\/25", + "version":12213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.178.128", + "prefixLen":25, + "network":"193.10.178.128\/25", + "version":12212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.179.0", + "prefixLen":25, + "network":"193.10.179.0\/25", + "version":12211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.179.128", + "prefixLen":25, + "network":"193.10.179.128\/25", + "version":12210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.192.0", + "prefixLen":25, + "network":"193.10.192.0\/25", + "version":12209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.192.128", + "prefixLen":25, + "network":"193.10.192.128\/25", + "version":12208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.193.0", + "prefixLen":25, + "network":"193.10.193.0\/25", + "version":12207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.193.128", + "prefixLen":25, + "network":"193.10.193.128\/25", + "version":12206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.194.0", + "prefixLen":25, + "network":"193.10.194.0\/25", + "version":12205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.194.128", + "prefixLen":25, + "network":"193.10.194.128\/25", + "version":12204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.195.0", + "prefixLen":25, + "network":"193.10.195.0\/25", + "version":12203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.195.128", + "prefixLen":25, + "network":"193.10.195.128\/25", + "version":12202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.208.0", + "prefixLen":25, + "network":"193.10.208.0\/25", + "version":12201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.208.128", + "prefixLen":25, + "network":"193.10.208.128\/25", + "version":12200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.209.0", + "prefixLen":25, + "network":"193.10.209.0\/25", + "version":12199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.209.128", + "prefixLen":25, + "network":"193.10.209.128\/25", + "version":12198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.210.0", + "prefixLen":25, + "network":"193.10.210.0\/25", + "version":12197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.210.128", + "prefixLen":25, + "network":"193.10.210.128\/25", + "version":12196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.211.0", + "prefixLen":25, + "network":"193.10.211.0\/25", + "version":12195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.211.128", + "prefixLen":25, + "network":"193.10.211.128\/25", + "version":12194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.224.0", + "prefixLen":25, + "network":"193.10.224.0\/25", + "version":12193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.224.128", + "prefixLen":25, + "network":"193.10.224.128\/25", + "version":12192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.225.0", + "prefixLen":25, + "network":"193.10.225.0\/25", + "version":12191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.225.128", + "prefixLen":25, + "network":"193.10.225.128\/25", + "version":12190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.226.0", + "prefixLen":25, + "network":"193.10.226.0\/25", + "version":12189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.226.128", + "prefixLen":25, + "network":"193.10.226.128\/25", + "version":12188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.227.0", + "prefixLen":25, + "network":"193.10.227.0\/25", + "version":12187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.227.128", + "prefixLen":25, + "network":"193.10.227.128\/25", + "version":12186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.240.0", + "prefixLen":25, + "network":"193.10.240.0\/25", + "version":12185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.240.128", + "prefixLen":25, + "network":"193.10.240.128\/25", + "version":12184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.241.0", + "prefixLen":25, + "network":"193.10.241.0\/25", + "version":12183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.241.128", + "prefixLen":25, + "network":"193.10.241.128\/25", + "version":12182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.242.0", + "prefixLen":25, + "network":"193.10.242.0\/25", + "version":12181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.242.128", + "prefixLen":25, + "network":"193.10.242.128\/25", + "version":12180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.243.0", + "prefixLen":25, + "network":"193.10.243.0\/25", + "version":12179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.10.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.10.243.128", + "prefixLen":25, + "network":"193.10.243.128\/25", + "version":12178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64698 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.0.0", + "prefixLen":25, + "network":"193.11.0.0\/25", + "version":12305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.0.128", + "prefixLen":25, + "network":"193.11.0.128\/25", + "version":12432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.1.0", + "prefixLen":25, + "network":"193.11.1.0\/25", + "version":12431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.1.128", + "prefixLen":25, + "network":"193.11.1.128\/25", + "version":12430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.2.0", + "prefixLen":25, + "network":"193.11.2.0\/25", + "version":12429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.2.128", + "prefixLen":25, + "network":"193.11.2.128\/25", + "version":12428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.3.0", + "prefixLen":25, + "network":"193.11.3.0\/25", + "version":12427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.3.128", + "prefixLen":25, + "network":"193.11.3.128\/25", + "version":12426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.16.0", + "prefixLen":25, + "network":"193.11.16.0\/25", + "version":12425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.16.128", + "prefixLen":25, + "network":"193.11.16.128\/25", + "version":12424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.17.0", + "prefixLen":25, + "network":"193.11.17.0\/25", + "version":12423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.17.128", + "prefixLen":25, + "network":"193.11.17.128\/25", + "version":12422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.18.0", + "prefixLen":25, + "network":"193.11.18.0\/25", + "version":12421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.18.128", + "prefixLen":25, + "network":"193.11.18.128\/25", + "version":12420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.19.0", + "prefixLen":25, + "network":"193.11.19.0\/25", + "version":12419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.19.128", + "prefixLen":25, + "network":"193.11.19.128\/25", + "version":12418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.32.0", + "prefixLen":25, + "network":"193.11.32.0\/25", + "version":12417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.32.128", + "prefixLen":25, + "network":"193.11.32.128\/25", + "version":12416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.33.0", + "prefixLen":25, + "network":"193.11.33.0\/25", + "version":12415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.33.128", + "prefixLen":25, + "network":"193.11.33.128\/25", + "version":12414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.34.0", + "prefixLen":25, + "network":"193.11.34.0\/25", + "version":12413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.34.128", + "prefixLen":25, + "network":"193.11.34.128\/25", + "version":12412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.35.0", + "prefixLen":25, + "network":"193.11.35.0\/25", + "version":12411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.35.128", + "prefixLen":25, + "network":"193.11.35.128\/25", + "version":12410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.48.0", + "prefixLen":25, + "network":"193.11.48.0\/25", + "version":12409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.48.128", + "prefixLen":25, + "network":"193.11.48.128\/25", + "version":12408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.49.0", + "prefixLen":25, + "network":"193.11.49.0\/25", + "version":12407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.49.128", + "prefixLen":25, + "network":"193.11.49.128\/25", + "version":12406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.50.0", + "prefixLen":25, + "network":"193.11.50.0\/25", + "version":12405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.50.128", + "prefixLen":25, + "network":"193.11.50.128\/25", + "version":12404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.51.0", + "prefixLen":25, + "network":"193.11.51.0\/25", + "version":12403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.51.128", + "prefixLen":25, + "network":"193.11.51.128\/25", + "version":12402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.64.0", + "prefixLen":25, + "network":"193.11.64.0\/25", + "version":12401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.64.128", + "prefixLen":25, + "network":"193.11.64.128\/25", + "version":12400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.65.0", + "prefixLen":25, + "network":"193.11.65.0\/25", + "version":12399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.65.128", + "prefixLen":25, + "network":"193.11.65.128\/25", + "version":12398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.66.0", + "prefixLen":25, + "network":"193.11.66.0\/25", + "version":12397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.66.128", + "prefixLen":25, + "network":"193.11.66.128\/25", + "version":12396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.67.0", + "prefixLen":25, + "network":"193.11.67.0\/25", + "version":12395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.67.128", + "prefixLen":25, + "network":"193.11.67.128\/25", + "version":12394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.80.0", + "prefixLen":25, + "network":"193.11.80.0\/25", + "version":12393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.80.128", + "prefixLen":25, + "network":"193.11.80.128\/25", + "version":12392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.81.0", + "prefixLen":25, + "network":"193.11.81.0\/25", + "version":12391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.81.128", + "prefixLen":25, + "network":"193.11.81.128\/25", + "version":12390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.82.0", + "prefixLen":25, + "network":"193.11.82.0\/25", + "version":12389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.82.128", + "prefixLen":25, + "network":"193.11.82.128\/25", + "version":12388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.83.0", + "prefixLen":25, + "network":"193.11.83.0\/25", + "version":12387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.83.128", + "prefixLen":25, + "network":"193.11.83.128\/25", + "version":12386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.96.0", + "prefixLen":25, + "network":"193.11.96.0\/25", + "version":12385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.96.128", + "prefixLen":25, + "network":"193.11.96.128\/25", + "version":12384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.97.0", + "prefixLen":25, + "network":"193.11.97.0\/25", + "version":12383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.97.128", + "prefixLen":25, + "network":"193.11.97.128\/25", + "version":12382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.98.0", + "prefixLen":25, + "network":"193.11.98.0\/25", + "version":12381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.98.128", + "prefixLen":25, + "network":"193.11.98.128\/25", + "version":12380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.99.0", + "prefixLen":25, + "network":"193.11.99.0\/25", + "version":12379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.99.128", + "prefixLen":25, + "network":"193.11.99.128\/25", + "version":12378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.112.0", + "prefixLen":25, + "network":"193.11.112.0\/25", + "version":12377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.112.128", + "prefixLen":25, + "network":"193.11.112.128\/25", + "version":12376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.113.0", + "prefixLen":25, + "network":"193.11.113.0\/25", + "version":12375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.113.128", + "prefixLen":25, + "network":"193.11.113.128\/25", + "version":12374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.114.0", + "prefixLen":25, + "network":"193.11.114.0\/25", + "version":12373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.114.128", + "prefixLen":25, + "network":"193.11.114.128\/25", + "version":12372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.115.0", + "prefixLen":25, + "network":"193.11.115.0\/25", + "version":12371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.115.128", + "prefixLen":25, + "network":"193.11.115.128\/25", + "version":12370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.128.0", + "prefixLen":25, + "network":"193.11.128.0\/25", + "version":12369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.128.128", + "prefixLen":25, + "network":"193.11.128.128\/25", + "version":12368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.129.0", + "prefixLen":25, + "network":"193.11.129.0\/25", + "version":12367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.129.128", + "prefixLen":25, + "network":"193.11.129.128\/25", + "version":12366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.130.0", + "prefixLen":25, + "network":"193.11.130.0\/25", + "version":12365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.130.128", + "prefixLen":25, + "network":"193.11.130.128\/25", + "version":12364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.131.0", + "prefixLen":25, + "network":"193.11.131.0\/25", + "version":12363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.131.128", + "prefixLen":25, + "network":"193.11.131.128\/25", + "version":12362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.144.0", + "prefixLen":25, + "network":"193.11.144.0\/25", + "version":12361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.144.128", + "prefixLen":25, + "network":"193.11.144.128\/25", + "version":12360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.145.0", + "prefixLen":25, + "network":"193.11.145.0\/25", + "version":12359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.145.128", + "prefixLen":25, + "network":"193.11.145.128\/25", + "version":12358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.146.0", + "prefixLen":25, + "network":"193.11.146.0\/25", + "version":12357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.146.128", + "prefixLen":25, + "network":"193.11.146.128\/25", + "version":12356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.147.0", + "prefixLen":25, + "network":"193.11.147.0\/25", + "version":12355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.147.128", + "prefixLen":25, + "network":"193.11.147.128\/25", + "version":12354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.160.0", + "prefixLen":25, + "network":"193.11.160.0\/25", + "version":12353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.160.128", + "prefixLen":25, + "network":"193.11.160.128\/25", + "version":12352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.161.0", + "prefixLen":25, + "network":"193.11.161.0\/25", + "version":12351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.161.128", + "prefixLen":25, + "network":"193.11.161.128\/25", + "version":12350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.162.0", + "prefixLen":25, + "network":"193.11.162.0\/25", + "version":12349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.162.128", + "prefixLen":25, + "network":"193.11.162.128\/25", + "version":12348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.163.0", + "prefixLen":25, + "network":"193.11.163.0\/25", + "version":12347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.163.128", + "prefixLen":25, + "network":"193.11.163.128\/25", + "version":12346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.176.0", + "prefixLen":25, + "network":"193.11.176.0\/25", + "version":12345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.176.128", + "prefixLen":25, + "network":"193.11.176.128\/25", + "version":12344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.177.0", + "prefixLen":25, + "network":"193.11.177.0\/25", + "version":12343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.177.128", + "prefixLen":25, + "network":"193.11.177.128\/25", + "version":12342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.178.0", + "prefixLen":25, + "network":"193.11.178.0\/25", + "version":12341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.178.128", + "prefixLen":25, + "network":"193.11.178.128\/25", + "version":12340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.179.0", + "prefixLen":25, + "network":"193.11.179.0\/25", + "version":12339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.179.128", + "prefixLen":25, + "network":"193.11.179.128\/25", + "version":12338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.192.0", + "prefixLen":25, + "network":"193.11.192.0\/25", + "version":12337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.192.128", + "prefixLen":25, + "network":"193.11.192.128\/25", + "version":12336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.193.0", + "prefixLen":25, + "network":"193.11.193.0\/25", + "version":12335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.193.128", + "prefixLen":25, + "network":"193.11.193.128\/25", + "version":12334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.194.0", + "prefixLen":25, + "network":"193.11.194.0\/25", + "version":12333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.194.128", + "prefixLen":25, + "network":"193.11.194.128\/25", + "version":12332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.195.0", + "prefixLen":25, + "network":"193.11.195.0\/25", + "version":12331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.195.128", + "prefixLen":25, + "network":"193.11.195.128\/25", + "version":12330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.208.0", + "prefixLen":25, + "network":"193.11.208.0\/25", + "version":12329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.208.128", + "prefixLen":25, + "network":"193.11.208.128\/25", + "version":12328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.209.0", + "prefixLen":25, + "network":"193.11.209.0\/25", + "version":12327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.209.128", + "prefixLen":25, + "network":"193.11.209.128\/25", + "version":12326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.210.0", + "prefixLen":25, + "network":"193.11.210.0\/25", + "version":12325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.210.128", + "prefixLen":25, + "network":"193.11.210.128\/25", + "version":12324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.211.0", + "prefixLen":25, + "network":"193.11.211.0\/25", + "version":12323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.211.128", + "prefixLen":25, + "network":"193.11.211.128\/25", + "version":12322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.224.0", + "prefixLen":25, + "network":"193.11.224.0\/25", + "version":12321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.224.128", + "prefixLen":25, + "network":"193.11.224.128\/25", + "version":12320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.225.0", + "prefixLen":25, + "network":"193.11.225.0\/25", + "version":12319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.225.128", + "prefixLen":25, + "network":"193.11.225.128\/25", + "version":12318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.226.0", + "prefixLen":25, + "network":"193.11.226.0\/25", + "version":12317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.226.128", + "prefixLen":25, + "network":"193.11.226.128\/25", + "version":12316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.227.0", + "prefixLen":25, + "network":"193.11.227.0\/25", + "version":12315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.227.128", + "prefixLen":25, + "network":"193.11.227.128\/25", + "version":12314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.240.0", + "prefixLen":25, + "network":"193.11.240.0\/25", + "version":12313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.240.128", + "prefixLen":25, + "network":"193.11.240.128\/25", + "version":12312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.241.0", + "prefixLen":25, + "network":"193.11.241.0\/25", + "version":12311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.241.128", + "prefixLen":25, + "network":"193.11.241.128\/25", + "version":12310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.242.0", + "prefixLen":25, + "network":"193.11.242.0\/25", + "version":12309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.242.128", + "prefixLen":25, + "network":"193.11.242.128\/25", + "version":12308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.243.0", + "prefixLen":25, + "network":"193.11.243.0\/25", + "version":12307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.11.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.11.243.128", + "prefixLen":25, + "network":"193.11.243.128\/25", + "version":12306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64699 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.0.0", + "prefixLen":25, + "network":"193.12.0.0\/25", + "version":12433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.0.128", + "prefixLen":25, + "network":"193.12.0.128\/25", + "version":12560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.1.0", + "prefixLen":25, + "network":"193.12.1.0\/25", + "version":12559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.1.128", + "prefixLen":25, + "network":"193.12.1.128\/25", + "version":12558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.2.0", + "prefixLen":25, + "network":"193.12.2.0\/25", + "version":12557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.2.128", + "prefixLen":25, + "network":"193.12.2.128\/25", + "version":12556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.3.0", + "prefixLen":25, + "network":"193.12.3.0\/25", + "version":12555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.3.128", + "prefixLen":25, + "network":"193.12.3.128\/25", + "version":12554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.16.0", + "prefixLen":25, + "network":"193.12.16.0\/25", + "version":12553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.16.128", + "prefixLen":25, + "network":"193.12.16.128\/25", + "version":12552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.17.0", + "prefixLen":25, + "network":"193.12.17.0\/25", + "version":12551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.17.128", + "prefixLen":25, + "network":"193.12.17.128\/25", + "version":12550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.18.0", + "prefixLen":25, + "network":"193.12.18.0\/25", + "version":12549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.18.128", + "prefixLen":25, + "network":"193.12.18.128\/25", + "version":12548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.19.0", + "prefixLen":25, + "network":"193.12.19.0\/25", + "version":12547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.19.128", + "prefixLen":25, + "network":"193.12.19.128\/25", + "version":12546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.32.0", + "prefixLen":25, + "network":"193.12.32.0\/25", + "version":12545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.32.128", + "prefixLen":25, + "network":"193.12.32.128\/25", + "version":12544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.33.0", + "prefixLen":25, + "network":"193.12.33.0\/25", + "version":12543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.33.128", + "prefixLen":25, + "network":"193.12.33.128\/25", + "version":12542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.34.0", + "prefixLen":25, + "network":"193.12.34.0\/25", + "version":12541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.34.128", + "prefixLen":25, + "network":"193.12.34.128\/25", + "version":12540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.35.0", + "prefixLen":25, + "network":"193.12.35.0\/25", + "version":12539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.35.128", + "prefixLen":25, + "network":"193.12.35.128\/25", + "version":12538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.48.0", + "prefixLen":25, + "network":"193.12.48.0\/25", + "version":12537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.48.128", + "prefixLen":25, + "network":"193.12.48.128\/25", + "version":12536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.49.0", + "prefixLen":25, + "network":"193.12.49.0\/25", + "version":12535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.49.128", + "prefixLen":25, + "network":"193.12.49.128\/25", + "version":12534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.50.0", + "prefixLen":25, + "network":"193.12.50.0\/25", + "version":12533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.50.128", + "prefixLen":25, + "network":"193.12.50.128\/25", + "version":12532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.51.0", + "prefixLen":25, + "network":"193.12.51.0\/25", + "version":12531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.51.128", + "prefixLen":25, + "network":"193.12.51.128\/25", + "version":12530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.64.0", + "prefixLen":25, + "network":"193.12.64.0\/25", + "version":12529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.64.128", + "prefixLen":25, + "network":"193.12.64.128\/25", + "version":12528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.65.0", + "prefixLen":25, + "network":"193.12.65.0\/25", + "version":12527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.65.128", + "prefixLen":25, + "network":"193.12.65.128\/25", + "version":12526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.66.0", + "prefixLen":25, + "network":"193.12.66.0\/25", + "version":12525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.66.128", + "prefixLen":25, + "network":"193.12.66.128\/25", + "version":12524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.67.0", + "prefixLen":25, + "network":"193.12.67.0\/25", + "version":12523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.67.128", + "prefixLen":25, + "network":"193.12.67.128\/25", + "version":12522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.80.0", + "prefixLen":25, + "network":"193.12.80.0\/25", + "version":12521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.80.128", + "prefixLen":25, + "network":"193.12.80.128\/25", + "version":12520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.81.0", + "prefixLen":25, + "network":"193.12.81.0\/25", + "version":12519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.81.128", + "prefixLen":25, + "network":"193.12.81.128\/25", + "version":12518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.82.0", + "prefixLen":25, + "network":"193.12.82.0\/25", + "version":12517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.82.128", + "prefixLen":25, + "network":"193.12.82.128\/25", + "version":12516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.83.0", + "prefixLen":25, + "network":"193.12.83.0\/25", + "version":12515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.83.128", + "prefixLen":25, + "network":"193.12.83.128\/25", + "version":12514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.96.0", + "prefixLen":25, + "network":"193.12.96.0\/25", + "version":12513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.96.128", + "prefixLen":25, + "network":"193.12.96.128\/25", + "version":12512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.97.0", + "prefixLen":25, + "network":"193.12.97.0\/25", + "version":12511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.97.128", + "prefixLen":25, + "network":"193.12.97.128\/25", + "version":12510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.98.0", + "prefixLen":25, + "network":"193.12.98.0\/25", + "version":12509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.98.128", + "prefixLen":25, + "network":"193.12.98.128\/25", + "version":12508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.99.0", + "prefixLen":25, + "network":"193.12.99.0\/25", + "version":12507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.99.128", + "prefixLen":25, + "network":"193.12.99.128\/25", + "version":12506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.112.0", + "prefixLen":25, + "network":"193.12.112.0\/25", + "version":12505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.112.128", + "prefixLen":25, + "network":"193.12.112.128\/25", + "version":12504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.113.0", + "prefixLen":25, + "network":"193.12.113.0\/25", + "version":12503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.113.128", + "prefixLen":25, + "network":"193.12.113.128\/25", + "version":12502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.114.0", + "prefixLen":25, + "network":"193.12.114.0\/25", + "version":12501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.114.128", + "prefixLen":25, + "network":"193.12.114.128\/25", + "version":12500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.115.0", + "prefixLen":25, + "network":"193.12.115.0\/25", + "version":12499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.115.128", + "prefixLen":25, + "network":"193.12.115.128\/25", + "version":12498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.128.0", + "prefixLen":25, + "network":"193.12.128.0\/25", + "version":12497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.128.128", + "prefixLen":25, + "network":"193.12.128.128\/25", + "version":12496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.129.0", + "prefixLen":25, + "network":"193.12.129.0\/25", + "version":12495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.129.128", + "prefixLen":25, + "network":"193.12.129.128\/25", + "version":12494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.130.0", + "prefixLen":25, + "network":"193.12.130.0\/25", + "version":12493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.130.128", + "prefixLen":25, + "network":"193.12.130.128\/25", + "version":12492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.131.0", + "prefixLen":25, + "network":"193.12.131.0\/25", + "version":12491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.131.128", + "prefixLen":25, + "network":"193.12.131.128\/25", + "version":12490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.144.0", + "prefixLen":25, + "network":"193.12.144.0\/25", + "version":12489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.144.128", + "prefixLen":25, + "network":"193.12.144.128\/25", + "version":12488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.145.0", + "prefixLen":25, + "network":"193.12.145.0\/25", + "version":12487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.145.128", + "prefixLen":25, + "network":"193.12.145.128\/25", + "version":12486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.146.0", + "prefixLen":25, + "network":"193.12.146.0\/25", + "version":12485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.146.128", + "prefixLen":25, + "network":"193.12.146.128\/25", + "version":12484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.147.0", + "prefixLen":25, + "network":"193.12.147.0\/25", + "version":12483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.147.128", + "prefixLen":25, + "network":"193.12.147.128\/25", + "version":12482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.160.0", + "prefixLen":25, + "network":"193.12.160.0\/25", + "version":12481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.160.128", + "prefixLen":25, + "network":"193.12.160.128\/25", + "version":12480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.161.0", + "prefixLen":25, + "network":"193.12.161.0\/25", + "version":12479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.161.128", + "prefixLen":25, + "network":"193.12.161.128\/25", + "version":12478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.162.0", + "prefixLen":25, + "network":"193.12.162.0\/25", + "version":12477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.162.128", + "prefixLen":25, + "network":"193.12.162.128\/25", + "version":12476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.163.0", + "prefixLen":25, + "network":"193.12.163.0\/25", + "version":12475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.163.128", + "prefixLen":25, + "network":"193.12.163.128\/25", + "version":12474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.176.0", + "prefixLen":25, + "network":"193.12.176.0\/25", + "version":12473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.176.128", + "prefixLen":25, + "network":"193.12.176.128\/25", + "version":12472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.177.0", + "prefixLen":25, + "network":"193.12.177.0\/25", + "version":12471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.177.128", + "prefixLen":25, + "network":"193.12.177.128\/25", + "version":12470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.178.0", + "prefixLen":25, + "network":"193.12.178.0\/25", + "version":12469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.178.128", + "prefixLen":25, + "network":"193.12.178.128\/25", + "version":12468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.179.0", + "prefixLen":25, + "network":"193.12.179.0\/25", + "version":12467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.179.128", + "prefixLen":25, + "network":"193.12.179.128\/25", + "version":12466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.192.0", + "prefixLen":25, + "network":"193.12.192.0\/25", + "version":12465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.192.128", + "prefixLen":25, + "network":"193.12.192.128\/25", + "version":12464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.193.0", + "prefixLen":25, + "network":"193.12.193.0\/25", + "version":12463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.193.128", + "prefixLen":25, + "network":"193.12.193.128\/25", + "version":12462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.194.0", + "prefixLen":25, + "network":"193.12.194.0\/25", + "version":12461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.194.128", + "prefixLen":25, + "network":"193.12.194.128\/25", + "version":12460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.195.0", + "prefixLen":25, + "network":"193.12.195.0\/25", + "version":12459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.195.128", + "prefixLen":25, + "network":"193.12.195.128\/25", + "version":12458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.208.0", + "prefixLen":25, + "network":"193.12.208.0\/25", + "version":12457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.208.128", + "prefixLen":25, + "network":"193.12.208.128\/25", + "version":12456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.209.0", + "prefixLen":25, + "network":"193.12.209.0\/25", + "version":12455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.209.128", + "prefixLen":25, + "network":"193.12.209.128\/25", + "version":12454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.210.0", + "prefixLen":25, + "network":"193.12.210.0\/25", + "version":12453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.210.128", + "prefixLen":25, + "network":"193.12.210.128\/25", + "version":12452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.211.0", + "prefixLen":25, + "network":"193.12.211.0\/25", + "version":12451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.211.128", + "prefixLen":25, + "network":"193.12.211.128\/25", + "version":12450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.224.0", + "prefixLen":25, + "network":"193.12.224.0\/25", + "version":12449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.224.128", + "prefixLen":25, + "network":"193.12.224.128\/25", + "version":12448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.225.0", + "prefixLen":25, + "network":"193.12.225.0\/25", + "version":12447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.225.128", + "prefixLen":25, + "network":"193.12.225.128\/25", + "version":12446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.226.0", + "prefixLen":25, + "network":"193.12.226.0\/25", + "version":12445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.226.128", + "prefixLen":25, + "network":"193.12.226.128\/25", + "version":12444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.227.0", + "prefixLen":25, + "network":"193.12.227.0\/25", + "version":12443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.227.128", + "prefixLen":25, + "network":"193.12.227.128\/25", + "version":12442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.240.0", + "prefixLen":25, + "network":"193.12.240.0\/25", + "version":12441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.240.128", + "prefixLen":25, + "network":"193.12.240.128\/25", + "version":12440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.241.0", + "prefixLen":25, + "network":"193.12.241.0\/25", + "version":12439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.241.128", + "prefixLen":25, + "network":"193.12.241.128\/25", + "version":12438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.242.0", + "prefixLen":25, + "network":"193.12.242.0\/25", + "version":12437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.242.128", + "prefixLen":25, + "network":"193.12.242.128\/25", + "version":12436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.243.0", + "prefixLen":25, + "network":"193.12.243.0\/25", + "version":12435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.12.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.12.243.128", + "prefixLen":25, + "network":"193.12.243.128\/25", + "version":12434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64700 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.0.0", + "prefixLen":25, + "network":"193.13.0.0\/25", + "version":12561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.0.128", + "prefixLen":25, + "network":"193.13.0.128\/25", + "version":12688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.1.0", + "prefixLen":25, + "network":"193.13.1.0\/25", + "version":12687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.1.128", + "prefixLen":25, + "network":"193.13.1.128\/25", + "version":12686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.2.0", + "prefixLen":25, + "network":"193.13.2.0\/25", + "version":12685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.2.128", + "prefixLen":25, + "network":"193.13.2.128\/25", + "version":12684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.3.0", + "prefixLen":25, + "network":"193.13.3.0\/25", + "version":12683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.3.128", + "prefixLen":25, + "network":"193.13.3.128\/25", + "version":12682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.16.0", + "prefixLen":25, + "network":"193.13.16.0\/25", + "version":12681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.16.128", + "prefixLen":25, + "network":"193.13.16.128\/25", + "version":12680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.17.0", + "prefixLen":25, + "network":"193.13.17.0\/25", + "version":12679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.17.128", + "prefixLen":25, + "network":"193.13.17.128\/25", + "version":12678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.18.0", + "prefixLen":25, + "network":"193.13.18.0\/25", + "version":12677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.18.128", + "prefixLen":25, + "network":"193.13.18.128\/25", + "version":12676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.19.0", + "prefixLen":25, + "network":"193.13.19.0\/25", + "version":12675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.19.128", + "prefixLen":25, + "network":"193.13.19.128\/25", + "version":12674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.32.0", + "prefixLen":25, + "network":"193.13.32.0\/25", + "version":12673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.32.128", + "prefixLen":25, + "network":"193.13.32.128\/25", + "version":12672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.33.0", + "prefixLen":25, + "network":"193.13.33.0\/25", + "version":12671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.33.128", + "prefixLen":25, + "network":"193.13.33.128\/25", + "version":12670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.34.0", + "prefixLen":25, + "network":"193.13.34.0\/25", + "version":12669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.34.128", + "prefixLen":25, + "network":"193.13.34.128\/25", + "version":12668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.35.0", + "prefixLen":25, + "network":"193.13.35.0\/25", + "version":12667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.35.128", + "prefixLen":25, + "network":"193.13.35.128\/25", + "version":12666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.48.0", + "prefixLen":25, + "network":"193.13.48.0\/25", + "version":12665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.48.128", + "prefixLen":25, + "network":"193.13.48.128\/25", + "version":12664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.49.0", + "prefixLen":25, + "network":"193.13.49.0\/25", + "version":12663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.49.128", + "prefixLen":25, + "network":"193.13.49.128\/25", + "version":12662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.50.0", + "prefixLen":25, + "network":"193.13.50.0\/25", + "version":12661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.50.128", + "prefixLen":25, + "network":"193.13.50.128\/25", + "version":12660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.51.0", + "prefixLen":25, + "network":"193.13.51.0\/25", + "version":12659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.51.128", + "prefixLen":25, + "network":"193.13.51.128\/25", + "version":12658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.64.0", + "prefixLen":25, + "network":"193.13.64.0\/25", + "version":12657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.64.128", + "prefixLen":25, + "network":"193.13.64.128\/25", + "version":12656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.65.0", + "prefixLen":25, + "network":"193.13.65.0\/25", + "version":12655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.65.128", + "prefixLen":25, + "network":"193.13.65.128\/25", + "version":12654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.66.0", + "prefixLen":25, + "network":"193.13.66.0\/25", + "version":12653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.66.128", + "prefixLen":25, + "network":"193.13.66.128\/25", + "version":12652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.67.0", + "prefixLen":25, + "network":"193.13.67.0\/25", + "version":12651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.67.128", + "prefixLen":25, + "network":"193.13.67.128\/25", + "version":12650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.80.0", + "prefixLen":25, + "network":"193.13.80.0\/25", + "version":12649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.80.128", + "prefixLen":25, + "network":"193.13.80.128\/25", + "version":12648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.81.0", + "prefixLen":25, + "network":"193.13.81.0\/25", + "version":12647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.81.128", + "prefixLen":25, + "network":"193.13.81.128\/25", + "version":12646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.82.0", + "prefixLen":25, + "network":"193.13.82.0\/25", + "version":12645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.82.128", + "prefixLen":25, + "network":"193.13.82.128\/25", + "version":12644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.83.0", + "prefixLen":25, + "network":"193.13.83.0\/25", + "version":12643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.83.128", + "prefixLen":25, + "network":"193.13.83.128\/25", + "version":12642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.96.0", + "prefixLen":25, + "network":"193.13.96.0\/25", + "version":12641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.96.128", + "prefixLen":25, + "network":"193.13.96.128\/25", + "version":12640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.97.0", + "prefixLen":25, + "network":"193.13.97.0\/25", + "version":12639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.97.128", + "prefixLen":25, + "network":"193.13.97.128\/25", + "version":12638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.98.0", + "prefixLen":25, + "network":"193.13.98.0\/25", + "version":12637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.98.128", + "prefixLen":25, + "network":"193.13.98.128\/25", + "version":12636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.99.0", + "prefixLen":25, + "network":"193.13.99.0\/25", + "version":12635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.99.128", + "prefixLen":25, + "network":"193.13.99.128\/25", + "version":12634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.112.0", + "prefixLen":25, + "network":"193.13.112.0\/25", + "version":12633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.112.128", + "prefixLen":25, + "network":"193.13.112.128\/25", + "version":12632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.113.0", + "prefixLen":25, + "network":"193.13.113.0\/25", + "version":12631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.113.128", + "prefixLen":25, + "network":"193.13.113.128\/25", + "version":12630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.114.0", + "prefixLen":25, + "network":"193.13.114.0\/25", + "version":12629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.114.128", + "prefixLen":25, + "network":"193.13.114.128\/25", + "version":12628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.115.0", + "prefixLen":25, + "network":"193.13.115.0\/25", + "version":12627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.115.128", + "prefixLen":25, + "network":"193.13.115.128\/25", + "version":12626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.128.0", + "prefixLen":25, + "network":"193.13.128.0\/25", + "version":12625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.128.128", + "prefixLen":25, + "network":"193.13.128.128\/25", + "version":12624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.129.0", + "prefixLen":25, + "network":"193.13.129.0\/25", + "version":12623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.129.128", + "prefixLen":25, + "network":"193.13.129.128\/25", + "version":12622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.130.0", + "prefixLen":25, + "network":"193.13.130.0\/25", + "version":12621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.130.128", + "prefixLen":25, + "network":"193.13.130.128\/25", + "version":12620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.131.0", + "prefixLen":25, + "network":"193.13.131.0\/25", + "version":12619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.131.128", + "prefixLen":25, + "network":"193.13.131.128\/25", + "version":12618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.144.0", + "prefixLen":25, + "network":"193.13.144.0\/25", + "version":12617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.144.128", + "prefixLen":25, + "network":"193.13.144.128\/25", + "version":12616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.145.0", + "prefixLen":25, + "network":"193.13.145.0\/25", + "version":12615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.145.128", + "prefixLen":25, + "network":"193.13.145.128\/25", + "version":12614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.146.0", + "prefixLen":25, + "network":"193.13.146.0\/25", + "version":12613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.146.128", + "prefixLen":25, + "network":"193.13.146.128\/25", + "version":12612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.147.0", + "prefixLen":25, + "network":"193.13.147.0\/25", + "version":12611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.147.128", + "prefixLen":25, + "network":"193.13.147.128\/25", + "version":12610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.160.0", + "prefixLen":25, + "network":"193.13.160.0\/25", + "version":12609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.160.128", + "prefixLen":25, + "network":"193.13.160.128\/25", + "version":12608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.161.0", + "prefixLen":25, + "network":"193.13.161.0\/25", + "version":12607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.161.128", + "prefixLen":25, + "network":"193.13.161.128\/25", + "version":12606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.162.0", + "prefixLen":25, + "network":"193.13.162.0\/25", + "version":12605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.162.128", + "prefixLen":25, + "network":"193.13.162.128\/25", + "version":12604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.163.0", + "prefixLen":25, + "network":"193.13.163.0\/25", + "version":12603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.163.128", + "prefixLen":25, + "network":"193.13.163.128\/25", + "version":12602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.176.0", + "prefixLen":25, + "network":"193.13.176.0\/25", + "version":12601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.176.128", + "prefixLen":25, + "network":"193.13.176.128\/25", + "version":12600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.177.0", + "prefixLen":25, + "network":"193.13.177.0\/25", + "version":12599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.177.128", + "prefixLen":25, + "network":"193.13.177.128\/25", + "version":12598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.178.0", + "prefixLen":25, + "network":"193.13.178.0\/25", + "version":12597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.178.128", + "prefixLen":25, + "network":"193.13.178.128\/25", + "version":12596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.179.0", + "prefixLen":25, + "network":"193.13.179.0\/25", + "version":12595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.179.128", + "prefixLen":25, + "network":"193.13.179.128\/25", + "version":12594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.192.0", + "prefixLen":25, + "network":"193.13.192.0\/25", + "version":12593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.192.128", + "prefixLen":25, + "network":"193.13.192.128\/25", + "version":12592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.193.0", + "prefixLen":25, + "network":"193.13.193.0\/25", + "version":12591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.193.128", + "prefixLen":25, + "network":"193.13.193.128\/25", + "version":12590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.194.0", + "prefixLen":25, + "network":"193.13.194.0\/25", + "version":12589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.194.128", + "prefixLen":25, + "network":"193.13.194.128\/25", + "version":12588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.195.0", + "prefixLen":25, + "network":"193.13.195.0\/25", + "version":12587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.195.128", + "prefixLen":25, + "network":"193.13.195.128\/25", + "version":12586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.208.0", + "prefixLen":25, + "network":"193.13.208.0\/25", + "version":12585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.208.128", + "prefixLen":25, + "network":"193.13.208.128\/25", + "version":12584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.209.0", + "prefixLen":25, + "network":"193.13.209.0\/25", + "version":12583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.209.128", + "prefixLen":25, + "network":"193.13.209.128\/25", + "version":12582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.210.0", + "prefixLen":25, + "network":"193.13.210.0\/25", + "version":12581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.210.128", + "prefixLen":25, + "network":"193.13.210.128\/25", + "version":12580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.211.0", + "prefixLen":25, + "network":"193.13.211.0\/25", + "version":12579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.211.128", + "prefixLen":25, + "network":"193.13.211.128\/25", + "version":12578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.224.0", + "prefixLen":25, + "network":"193.13.224.0\/25", + "version":12577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.224.128", + "prefixLen":25, + "network":"193.13.224.128\/25", + "version":12576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.225.0", + "prefixLen":25, + "network":"193.13.225.0\/25", + "version":12575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.225.128", + "prefixLen":25, + "network":"193.13.225.128\/25", + "version":12574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.226.0", + "prefixLen":25, + "network":"193.13.226.0\/25", + "version":12573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.226.128", + "prefixLen":25, + "network":"193.13.226.128\/25", + "version":12572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.227.0", + "prefixLen":25, + "network":"193.13.227.0\/25", + "version":12571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.227.128", + "prefixLen":25, + "network":"193.13.227.128\/25", + "version":12570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.240.0", + "prefixLen":25, + "network":"193.13.240.0\/25", + "version":12569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.240.128", + "prefixLen":25, + "network":"193.13.240.128\/25", + "version":12568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.241.0", + "prefixLen":25, + "network":"193.13.241.0\/25", + "version":12567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.241.128", + "prefixLen":25, + "network":"193.13.241.128\/25", + "version":12566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.242.0", + "prefixLen":25, + "network":"193.13.242.0\/25", + "version":12565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.242.128", + "prefixLen":25, + "network":"193.13.242.128\/25", + "version":12564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.243.0", + "prefixLen":25, + "network":"193.13.243.0\/25", + "version":12563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.13.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.13.243.128", + "prefixLen":25, + "network":"193.13.243.128\/25", + "version":12562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64701 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.0.0", + "prefixLen":25, + "network":"193.14.0.0\/25", + "version":12689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.0.128", + "prefixLen":25, + "network":"193.14.0.128\/25", + "version":12816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.1.0", + "prefixLen":25, + "network":"193.14.1.0\/25", + "version":12815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.1.128", + "prefixLen":25, + "network":"193.14.1.128\/25", + "version":12814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.2.0", + "prefixLen":25, + "network":"193.14.2.0\/25", + "version":12813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.2.128", + "prefixLen":25, + "network":"193.14.2.128\/25", + "version":12812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.3.0", + "prefixLen":25, + "network":"193.14.3.0\/25", + "version":12811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.3.128", + "prefixLen":25, + "network":"193.14.3.128\/25", + "version":12810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.16.0", + "prefixLen":25, + "network":"193.14.16.0\/25", + "version":12809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.16.128", + "prefixLen":25, + "network":"193.14.16.128\/25", + "version":12808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.17.0", + "prefixLen":25, + "network":"193.14.17.0\/25", + "version":12807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.17.128", + "prefixLen":25, + "network":"193.14.17.128\/25", + "version":12806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.18.0", + "prefixLen":25, + "network":"193.14.18.0\/25", + "version":12805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.18.128", + "prefixLen":25, + "network":"193.14.18.128\/25", + "version":12804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.19.0", + "prefixLen":25, + "network":"193.14.19.0\/25", + "version":12803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.19.128", + "prefixLen":25, + "network":"193.14.19.128\/25", + "version":12802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.32.0", + "prefixLen":25, + "network":"193.14.32.0\/25", + "version":12801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.32.128", + "prefixLen":25, + "network":"193.14.32.128\/25", + "version":12800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.33.0", + "prefixLen":25, + "network":"193.14.33.0\/25", + "version":12799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.33.128", + "prefixLen":25, + "network":"193.14.33.128\/25", + "version":12798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.34.0", + "prefixLen":25, + "network":"193.14.34.0\/25", + "version":12797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.34.128", + "prefixLen":25, + "network":"193.14.34.128\/25", + "version":12796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.35.0", + "prefixLen":25, + "network":"193.14.35.0\/25", + "version":12795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.35.128", + "prefixLen":25, + "network":"193.14.35.128\/25", + "version":12794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.48.0", + "prefixLen":25, + "network":"193.14.48.0\/25", + "version":12793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.48.128", + "prefixLen":25, + "network":"193.14.48.128\/25", + "version":12792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.49.0", + "prefixLen":25, + "network":"193.14.49.0\/25", + "version":12791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.49.128", + "prefixLen":25, + "network":"193.14.49.128\/25", + "version":12790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.50.0", + "prefixLen":25, + "network":"193.14.50.0\/25", + "version":12789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.50.128", + "prefixLen":25, + "network":"193.14.50.128\/25", + "version":12788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.51.0", + "prefixLen":25, + "network":"193.14.51.0\/25", + "version":12787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.51.128", + "prefixLen":25, + "network":"193.14.51.128\/25", + "version":12786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.64.0", + "prefixLen":25, + "network":"193.14.64.0\/25", + "version":12785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.64.128", + "prefixLen":25, + "network":"193.14.64.128\/25", + "version":12784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.65.0", + "prefixLen":25, + "network":"193.14.65.0\/25", + "version":12783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.65.128", + "prefixLen":25, + "network":"193.14.65.128\/25", + "version":12782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.66.0", + "prefixLen":25, + "network":"193.14.66.0\/25", + "version":12781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.66.128", + "prefixLen":25, + "network":"193.14.66.128\/25", + "version":12780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.67.0", + "prefixLen":25, + "network":"193.14.67.0\/25", + "version":12779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.67.128", + "prefixLen":25, + "network":"193.14.67.128\/25", + "version":12778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.80.0", + "prefixLen":25, + "network":"193.14.80.0\/25", + "version":12777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.80.128", + "prefixLen":25, + "network":"193.14.80.128\/25", + "version":12776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.81.0", + "prefixLen":25, + "network":"193.14.81.0\/25", + "version":12775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.81.128", + "prefixLen":25, + "network":"193.14.81.128\/25", + "version":12774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.82.0", + "prefixLen":25, + "network":"193.14.82.0\/25", + "version":12773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.82.128", + "prefixLen":25, + "network":"193.14.82.128\/25", + "version":12772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.83.0", + "prefixLen":25, + "network":"193.14.83.0\/25", + "version":12771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.83.128", + "prefixLen":25, + "network":"193.14.83.128\/25", + "version":12770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.96.0", + "prefixLen":25, + "network":"193.14.96.0\/25", + "version":12769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.96.128", + "prefixLen":25, + "network":"193.14.96.128\/25", + "version":12768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.97.0", + "prefixLen":25, + "network":"193.14.97.0\/25", + "version":12767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.97.128", + "prefixLen":25, + "network":"193.14.97.128\/25", + "version":12766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.98.0", + "prefixLen":25, + "network":"193.14.98.0\/25", + "version":12765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.98.128", + "prefixLen":25, + "network":"193.14.98.128\/25", + "version":12764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.99.0", + "prefixLen":25, + "network":"193.14.99.0\/25", + "version":12763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.99.128", + "prefixLen":25, + "network":"193.14.99.128\/25", + "version":12762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.112.0", + "prefixLen":25, + "network":"193.14.112.0\/25", + "version":12761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.112.128", + "prefixLen":25, + "network":"193.14.112.128\/25", + "version":12760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.113.0", + "prefixLen":25, + "network":"193.14.113.0\/25", + "version":12759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.113.128", + "prefixLen":25, + "network":"193.14.113.128\/25", + "version":12758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.114.0", + "prefixLen":25, + "network":"193.14.114.0\/25", + "version":12757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.114.128", + "prefixLen":25, + "network":"193.14.114.128\/25", + "version":12756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.115.0", + "prefixLen":25, + "network":"193.14.115.0\/25", + "version":12755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.115.128", + "prefixLen":25, + "network":"193.14.115.128\/25", + "version":12754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.128.0", + "prefixLen":25, + "network":"193.14.128.0\/25", + "version":12753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.128.128", + "prefixLen":25, + "network":"193.14.128.128\/25", + "version":12752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.129.0", + "prefixLen":25, + "network":"193.14.129.0\/25", + "version":12751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.129.128", + "prefixLen":25, + "network":"193.14.129.128\/25", + "version":12750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.130.0", + "prefixLen":25, + "network":"193.14.130.0\/25", + "version":12749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.130.128", + "prefixLen":25, + "network":"193.14.130.128\/25", + "version":12748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.131.0", + "prefixLen":25, + "network":"193.14.131.0\/25", + "version":12747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.131.128", + "prefixLen":25, + "network":"193.14.131.128\/25", + "version":12746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.144.0", + "prefixLen":25, + "network":"193.14.144.0\/25", + "version":12745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.144.128", + "prefixLen":25, + "network":"193.14.144.128\/25", + "version":12744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.145.0", + "prefixLen":25, + "network":"193.14.145.0\/25", + "version":12743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.145.128", + "prefixLen":25, + "network":"193.14.145.128\/25", + "version":12742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.146.0", + "prefixLen":25, + "network":"193.14.146.0\/25", + "version":12741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.146.128", + "prefixLen":25, + "network":"193.14.146.128\/25", + "version":12740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.147.0", + "prefixLen":25, + "network":"193.14.147.0\/25", + "version":12739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.147.128", + "prefixLen":25, + "network":"193.14.147.128\/25", + "version":12738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.160.0", + "prefixLen":25, + "network":"193.14.160.0\/25", + "version":12737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.160.128", + "prefixLen":25, + "network":"193.14.160.128\/25", + "version":12736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.161.0", + "prefixLen":25, + "network":"193.14.161.0\/25", + "version":12735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.161.128", + "prefixLen":25, + "network":"193.14.161.128\/25", + "version":12734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.162.0", + "prefixLen":25, + "network":"193.14.162.0\/25", + "version":12733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.162.128", + "prefixLen":25, + "network":"193.14.162.128\/25", + "version":12732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.163.0", + "prefixLen":25, + "network":"193.14.163.0\/25", + "version":12731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.163.128", + "prefixLen":25, + "network":"193.14.163.128\/25", + "version":12730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.176.0", + "prefixLen":25, + "network":"193.14.176.0\/25", + "version":12729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.176.128", + "prefixLen":25, + "network":"193.14.176.128\/25", + "version":12728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.177.0", + "prefixLen":25, + "network":"193.14.177.0\/25", + "version":12727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.177.128", + "prefixLen":25, + "network":"193.14.177.128\/25", + "version":12726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.178.0", + "prefixLen":25, + "network":"193.14.178.0\/25", + "version":12725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.178.128", + "prefixLen":25, + "network":"193.14.178.128\/25", + "version":12724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.179.0", + "prefixLen":25, + "network":"193.14.179.0\/25", + "version":12723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.179.128", + "prefixLen":25, + "network":"193.14.179.128\/25", + "version":12722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.192.0", + "prefixLen":25, + "network":"193.14.192.0\/25", + "version":12721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.192.128", + "prefixLen":25, + "network":"193.14.192.128\/25", + "version":12720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.193.0", + "prefixLen":25, + "network":"193.14.193.0\/25", + "version":12719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.193.128", + "prefixLen":25, + "network":"193.14.193.128\/25", + "version":12718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.194.0", + "prefixLen":25, + "network":"193.14.194.0\/25", + "version":12717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.194.128", + "prefixLen":25, + "network":"193.14.194.128\/25", + "version":12716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.195.0", + "prefixLen":25, + "network":"193.14.195.0\/25", + "version":12715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.195.128", + "prefixLen":25, + "network":"193.14.195.128\/25", + "version":12714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.208.0", + "prefixLen":25, + "network":"193.14.208.0\/25", + "version":12713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.208.128", + "prefixLen":25, + "network":"193.14.208.128\/25", + "version":12712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.209.0", + "prefixLen":25, + "network":"193.14.209.0\/25", + "version":12711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.209.128", + "prefixLen":25, + "network":"193.14.209.128\/25", + "version":12710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.210.0", + "prefixLen":25, + "network":"193.14.210.0\/25", + "version":12709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.210.128", + "prefixLen":25, + "network":"193.14.210.128\/25", + "version":12708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.211.0", + "prefixLen":25, + "network":"193.14.211.0\/25", + "version":12707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.211.128", + "prefixLen":25, + "network":"193.14.211.128\/25", + "version":12706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.224.0", + "prefixLen":25, + "network":"193.14.224.0\/25", + "version":12705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.224.128", + "prefixLen":25, + "network":"193.14.224.128\/25", + "version":12704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.225.0", + "prefixLen":25, + "network":"193.14.225.0\/25", + "version":12703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.225.128", + "prefixLen":25, + "network":"193.14.225.128\/25", + "version":12702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.226.0", + "prefixLen":25, + "network":"193.14.226.0\/25", + "version":12701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.226.128", + "prefixLen":25, + "network":"193.14.226.128\/25", + "version":12700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.227.0", + "prefixLen":25, + "network":"193.14.227.0\/25", + "version":12699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.227.128", + "prefixLen":25, + "network":"193.14.227.128\/25", + "version":12698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.240.0", + "prefixLen":25, + "network":"193.14.240.0\/25", + "version":12697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.240.128", + "prefixLen":25, + "network":"193.14.240.128\/25", + "version":12696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.241.0", + "prefixLen":25, + "network":"193.14.241.0\/25", + "version":12695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.241.128", + "prefixLen":25, + "network":"193.14.241.128\/25", + "version":12694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.242.0", + "prefixLen":25, + "network":"193.14.242.0\/25", + "version":12693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.242.128", + "prefixLen":25, + "network":"193.14.242.128\/25", + "version":12692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.243.0", + "prefixLen":25, + "network":"193.14.243.0\/25", + "version":12691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.14.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.14.243.128", + "prefixLen":25, + "network":"193.14.243.128\/25", + "version":12690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64702 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.0.0", + "prefixLen":25, + "network":"193.15.0.0\/25", + "version":12817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.0.128", + "prefixLen":25, + "network":"193.15.0.128\/25", + "version":12944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.1.0", + "prefixLen":25, + "network":"193.15.1.0\/25", + "version":12943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.1.128", + "prefixLen":25, + "network":"193.15.1.128\/25", + "version":12942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.2.0", + "prefixLen":25, + "network":"193.15.2.0\/25", + "version":12941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.2.128", + "prefixLen":25, + "network":"193.15.2.128\/25", + "version":12940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.3.0", + "prefixLen":25, + "network":"193.15.3.0\/25", + "version":12939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.3.128", + "prefixLen":25, + "network":"193.15.3.128\/25", + "version":12938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.16.0", + "prefixLen":25, + "network":"193.15.16.0\/25", + "version":12937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.16.128", + "prefixLen":25, + "network":"193.15.16.128\/25", + "version":12936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.17.0", + "prefixLen":25, + "network":"193.15.17.0\/25", + "version":12935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.17.128", + "prefixLen":25, + "network":"193.15.17.128\/25", + "version":12934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.18.0", + "prefixLen":25, + "network":"193.15.18.0\/25", + "version":12933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.18.128", + "prefixLen":25, + "network":"193.15.18.128\/25", + "version":12932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.19.0", + "prefixLen":25, + "network":"193.15.19.0\/25", + "version":12931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.19.128", + "prefixLen":25, + "network":"193.15.19.128\/25", + "version":12930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.32.0", + "prefixLen":25, + "network":"193.15.32.0\/25", + "version":12929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.32.128", + "prefixLen":25, + "network":"193.15.32.128\/25", + "version":12928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.33.0", + "prefixLen":25, + "network":"193.15.33.0\/25", + "version":12927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.33.128", + "prefixLen":25, + "network":"193.15.33.128\/25", + "version":12926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.34.0", + "prefixLen":25, + "network":"193.15.34.0\/25", + "version":12925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.34.128", + "prefixLen":25, + "network":"193.15.34.128\/25", + "version":12924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.35.0", + "prefixLen":25, + "network":"193.15.35.0\/25", + "version":12923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.35.128", + "prefixLen":25, + "network":"193.15.35.128\/25", + "version":12922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.48.0", + "prefixLen":25, + "network":"193.15.48.0\/25", + "version":12921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.48.128", + "prefixLen":25, + "network":"193.15.48.128\/25", + "version":12920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.49.0", + "prefixLen":25, + "network":"193.15.49.0\/25", + "version":12919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.49.128", + "prefixLen":25, + "network":"193.15.49.128\/25", + "version":12918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.50.0", + "prefixLen":25, + "network":"193.15.50.0\/25", + "version":12917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.50.128", + "prefixLen":25, + "network":"193.15.50.128\/25", + "version":12916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.51.0", + "prefixLen":25, + "network":"193.15.51.0\/25", + "version":12915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.51.128", + "prefixLen":25, + "network":"193.15.51.128\/25", + "version":12914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.64.0", + "prefixLen":25, + "network":"193.15.64.0\/25", + "version":12913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.64.128", + "prefixLen":25, + "network":"193.15.64.128\/25", + "version":12912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.65.0", + "prefixLen":25, + "network":"193.15.65.0\/25", + "version":12911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.65.128", + "prefixLen":25, + "network":"193.15.65.128\/25", + "version":12910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.66.0", + "prefixLen":25, + "network":"193.15.66.0\/25", + "version":12909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.66.128", + "prefixLen":25, + "network":"193.15.66.128\/25", + "version":12908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.67.0", + "prefixLen":25, + "network":"193.15.67.0\/25", + "version":12907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.67.128", + "prefixLen":25, + "network":"193.15.67.128\/25", + "version":12906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.80.0", + "prefixLen":25, + "network":"193.15.80.0\/25", + "version":12905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.80.128", + "prefixLen":25, + "network":"193.15.80.128\/25", + "version":12904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.81.0", + "prefixLen":25, + "network":"193.15.81.0\/25", + "version":12903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.81.128", + "prefixLen":25, + "network":"193.15.81.128\/25", + "version":12902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.82.0", + "prefixLen":25, + "network":"193.15.82.0\/25", + "version":12901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.82.128", + "prefixLen":25, + "network":"193.15.82.128\/25", + "version":12900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.83.0", + "prefixLen":25, + "network":"193.15.83.0\/25", + "version":12899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.83.128", + "prefixLen":25, + "network":"193.15.83.128\/25", + "version":12898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.96.0", + "prefixLen":25, + "network":"193.15.96.0\/25", + "version":12897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.96.128", + "prefixLen":25, + "network":"193.15.96.128\/25", + "version":12896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.97.0", + "prefixLen":25, + "network":"193.15.97.0\/25", + "version":12895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.97.128", + "prefixLen":25, + "network":"193.15.97.128\/25", + "version":12894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.98.0", + "prefixLen":25, + "network":"193.15.98.0\/25", + "version":12893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.98.128", + "prefixLen":25, + "network":"193.15.98.128\/25", + "version":12892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.99.0", + "prefixLen":25, + "network":"193.15.99.0\/25", + "version":12891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.99.128", + "prefixLen":25, + "network":"193.15.99.128\/25", + "version":12890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.112.0", + "prefixLen":25, + "network":"193.15.112.0\/25", + "version":12889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.112.128", + "prefixLen":25, + "network":"193.15.112.128\/25", + "version":12888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.113.0", + "prefixLen":25, + "network":"193.15.113.0\/25", + "version":12887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.113.128", + "prefixLen":25, + "network":"193.15.113.128\/25", + "version":12886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.114.0", + "prefixLen":25, + "network":"193.15.114.0\/25", + "version":12885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.114.128", + "prefixLen":25, + "network":"193.15.114.128\/25", + "version":12884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.115.0", + "prefixLen":25, + "network":"193.15.115.0\/25", + "version":12883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.115.128", + "prefixLen":25, + "network":"193.15.115.128\/25", + "version":12882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.128.0", + "prefixLen":25, + "network":"193.15.128.0\/25", + "version":12881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.128.128", + "prefixLen":25, + "network":"193.15.128.128\/25", + "version":12880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.129.0", + "prefixLen":25, + "network":"193.15.129.0\/25", + "version":12879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.129.128", + "prefixLen":25, + "network":"193.15.129.128\/25", + "version":12878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.130.0", + "prefixLen":25, + "network":"193.15.130.0\/25", + "version":12877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.130.128", + "prefixLen":25, + "network":"193.15.130.128\/25", + "version":12876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.131.0", + "prefixLen":25, + "network":"193.15.131.0\/25", + "version":12875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.131.128", + "prefixLen":25, + "network":"193.15.131.128\/25", + "version":12874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.144.0", + "prefixLen":25, + "network":"193.15.144.0\/25", + "version":12873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.144.128", + "prefixLen":25, + "network":"193.15.144.128\/25", + "version":12872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.145.0", + "prefixLen":25, + "network":"193.15.145.0\/25", + "version":12871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.145.128", + "prefixLen":25, + "network":"193.15.145.128\/25", + "version":12870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.146.0", + "prefixLen":25, + "network":"193.15.146.0\/25", + "version":12869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.146.128", + "prefixLen":25, + "network":"193.15.146.128\/25", + "version":12868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.147.0", + "prefixLen":25, + "network":"193.15.147.0\/25", + "version":12867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.147.128", + "prefixLen":25, + "network":"193.15.147.128\/25", + "version":12866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.160.0", + "prefixLen":25, + "network":"193.15.160.0\/25", + "version":12865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.160.128", + "prefixLen":25, + "network":"193.15.160.128\/25", + "version":12864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.161.0", + "prefixLen":25, + "network":"193.15.161.0\/25", + "version":12863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.161.128", + "prefixLen":25, + "network":"193.15.161.128\/25", + "version":12862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.162.0", + "prefixLen":25, + "network":"193.15.162.0\/25", + "version":12861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.162.128", + "prefixLen":25, + "network":"193.15.162.128\/25", + "version":12860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.163.0", + "prefixLen":25, + "network":"193.15.163.0\/25", + "version":12859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.163.128", + "prefixLen":25, + "network":"193.15.163.128\/25", + "version":12858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.176.0", + "prefixLen":25, + "network":"193.15.176.0\/25", + "version":12857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.176.128", + "prefixLen":25, + "network":"193.15.176.128\/25", + "version":12856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.177.0", + "prefixLen":25, + "network":"193.15.177.0\/25", + "version":12855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.177.128", + "prefixLen":25, + "network":"193.15.177.128\/25", + "version":12854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.178.0", + "prefixLen":25, + "network":"193.15.178.0\/25", + "version":12853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.178.128", + "prefixLen":25, + "network":"193.15.178.128\/25", + "version":12852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.179.0", + "prefixLen":25, + "network":"193.15.179.0\/25", + "version":12851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.179.128", + "prefixLen":25, + "network":"193.15.179.128\/25", + "version":12850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.192.0", + "prefixLen":25, + "network":"193.15.192.0\/25", + "version":12849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.192.128", + "prefixLen":25, + "network":"193.15.192.128\/25", + "version":12848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.193.0", + "prefixLen":25, + "network":"193.15.193.0\/25", + "version":12847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.193.128", + "prefixLen":25, + "network":"193.15.193.128\/25", + "version":12846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.194.0", + "prefixLen":25, + "network":"193.15.194.0\/25", + "version":12845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.194.128", + "prefixLen":25, + "network":"193.15.194.128\/25", + "version":12844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.195.0", + "prefixLen":25, + "network":"193.15.195.0\/25", + "version":12843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.195.128", + "prefixLen":25, + "network":"193.15.195.128\/25", + "version":12842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.208.0", + "prefixLen":25, + "network":"193.15.208.0\/25", + "version":12841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.208.128", + "prefixLen":25, + "network":"193.15.208.128\/25", + "version":12840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.209.0", + "prefixLen":25, + "network":"193.15.209.0\/25", + "version":12839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.209.128", + "prefixLen":25, + "network":"193.15.209.128\/25", + "version":12838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.210.0", + "prefixLen":25, + "network":"193.15.210.0\/25", + "version":12837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.210.128", + "prefixLen":25, + "network":"193.15.210.128\/25", + "version":12836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.211.0", + "prefixLen":25, + "network":"193.15.211.0\/25", + "version":12835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.211.128", + "prefixLen":25, + "network":"193.15.211.128\/25", + "version":12834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.224.0", + "prefixLen":25, + "network":"193.15.224.0\/25", + "version":12833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.224.128", + "prefixLen":25, + "network":"193.15.224.128\/25", + "version":12832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.225.0", + "prefixLen":25, + "network":"193.15.225.0\/25", + "version":12831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.225.128", + "prefixLen":25, + "network":"193.15.225.128\/25", + "version":12830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.226.0", + "prefixLen":25, + "network":"193.15.226.0\/25", + "version":12829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.226.128", + "prefixLen":25, + "network":"193.15.226.128\/25", + "version":12828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.227.0", + "prefixLen":25, + "network":"193.15.227.0\/25", + "version":12827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.227.128", + "prefixLen":25, + "network":"193.15.227.128\/25", + "version":12826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.240.0", + "prefixLen":25, + "network":"193.15.240.0\/25", + "version":12825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.240.128", + "prefixLen":25, + "network":"193.15.240.128\/25", + "version":12824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.241.0", + "prefixLen":25, + "network":"193.15.241.0\/25", + "version":12823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.241.128", + "prefixLen":25, + "network":"193.15.241.128\/25", + "version":12822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.242.0", + "prefixLen":25, + "network":"193.15.242.0\/25", + "version":12821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.242.128", + "prefixLen":25, + "network":"193.15.242.128\/25", + "version":12820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.243.0", + "prefixLen":25, + "network":"193.15.243.0\/25", + "version":12819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.15.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.15.243.128", + "prefixLen":25, + "network":"193.15.243.128\/25", + "version":12818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64703 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.0.0", + "prefixLen":25, + "network":"193.16.0.0\/25", + "version":12945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.0.128", + "prefixLen":25, + "network":"193.16.0.128\/25", + "version":13072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.1.0", + "prefixLen":25, + "network":"193.16.1.0\/25", + "version":13071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.1.128", + "prefixLen":25, + "network":"193.16.1.128\/25", + "version":13070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.2.0", + "prefixLen":25, + "network":"193.16.2.0\/25", + "version":13069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.2.128", + "prefixLen":25, + "network":"193.16.2.128\/25", + "version":13068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.3.0", + "prefixLen":25, + "network":"193.16.3.0\/25", + "version":13067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.3.128", + "prefixLen":25, + "network":"193.16.3.128\/25", + "version":13066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.16.0", + "prefixLen":25, + "network":"193.16.16.0\/25", + "version":13065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.16.128", + "prefixLen":25, + "network":"193.16.16.128\/25", + "version":13064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.17.0", + "prefixLen":25, + "network":"193.16.17.0\/25", + "version":13063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.17.128", + "prefixLen":25, + "network":"193.16.17.128\/25", + "version":13062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.18.0", + "prefixLen":25, + "network":"193.16.18.0\/25", + "version":13061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.18.128", + "prefixLen":25, + "network":"193.16.18.128\/25", + "version":13060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.19.0", + "prefixLen":25, + "network":"193.16.19.0\/25", + "version":13059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.19.128", + "prefixLen":25, + "network":"193.16.19.128\/25", + "version":13058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.32.0", + "prefixLen":25, + "network":"193.16.32.0\/25", + "version":13057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.32.128", + "prefixLen":25, + "network":"193.16.32.128\/25", + "version":13056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.33.0", + "prefixLen":25, + "network":"193.16.33.0\/25", + "version":13055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.33.128", + "prefixLen":25, + "network":"193.16.33.128\/25", + "version":13054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.34.0", + "prefixLen":25, + "network":"193.16.34.0\/25", + "version":13053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.34.128", + "prefixLen":25, + "network":"193.16.34.128\/25", + "version":13052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.35.0", + "prefixLen":25, + "network":"193.16.35.0\/25", + "version":13051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.35.128", + "prefixLen":25, + "network":"193.16.35.128\/25", + "version":13050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.48.0", + "prefixLen":25, + "network":"193.16.48.0\/25", + "version":13049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.48.128", + "prefixLen":25, + "network":"193.16.48.128\/25", + "version":13048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.49.0", + "prefixLen":25, + "network":"193.16.49.0\/25", + "version":13047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.49.128", + "prefixLen":25, + "network":"193.16.49.128\/25", + "version":13046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.50.0", + "prefixLen":25, + "network":"193.16.50.0\/25", + "version":13045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.50.128", + "prefixLen":25, + "network":"193.16.50.128\/25", + "version":13044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.51.0", + "prefixLen":25, + "network":"193.16.51.0\/25", + "version":13043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.51.128", + "prefixLen":25, + "network":"193.16.51.128\/25", + "version":13042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.64.0", + "prefixLen":25, + "network":"193.16.64.0\/25", + "version":13041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.64.128", + "prefixLen":25, + "network":"193.16.64.128\/25", + "version":13040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.65.0", + "prefixLen":25, + "network":"193.16.65.0\/25", + "version":13039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.65.128", + "prefixLen":25, + "network":"193.16.65.128\/25", + "version":13038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.66.0", + "prefixLen":25, + "network":"193.16.66.0\/25", + "version":13037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.66.128", + "prefixLen":25, + "network":"193.16.66.128\/25", + "version":13036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.67.0", + "prefixLen":25, + "network":"193.16.67.0\/25", + "version":13035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.67.128", + "prefixLen":25, + "network":"193.16.67.128\/25", + "version":13034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.80.0", + "prefixLen":25, + "network":"193.16.80.0\/25", + "version":13033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.80.128", + "prefixLen":25, + "network":"193.16.80.128\/25", + "version":13032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.81.0", + "prefixLen":25, + "network":"193.16.81.0\/25", + "version":13031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.81.128", + "prefixLen":25, + "network":"193.16.81.128\/25", + "version":13030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.82.0", + "prefixLen":25, + "network":"193.16.82.0\/25", + "version":13029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.82.128", + "prefixLen":25, + "network":"193.16.82.128\/25", + "version":13028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.83.0", + "prefixLen":25, + "network":"193.16.83.0\/25", + "version":13027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.83.128", + "prefixLen":25, + "network":"193.16.83.128\/25", + "version":13026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.96.0", + "prefixLen":25, + "network":"193.16.96.0\/25", + "version":13025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.96.128", + "prefixLen":25, + "network":"193.16.96.128\/25", + "version":13024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.97.0", + "prefixLen":25, + "network":"193.16.97.0\/25", + "version":13023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.97.128", + "prefixLen":25, + "network":"193.16.97.128\/25", + "version":13022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.98.0", + "prefixLen":25, + "network":"193.16.98.0\/25", + "version":13021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.98.128", + "prefixLen":25, + "network":"193.16.98.128\/25", + "version":13020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.99.0", + "prefixLen":25, + "network":"193.16.99.0\/25", + "version":13019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.99.128", + "prefixLen":25, + "network":"193.16.99.128\/25", + "version":13018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.112.0", + "prefixLen":25, + "network":"193.16.112.0\/25", + "version":13017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.112.128", + "prefixLen":25, + "network":"193.16.112.128\/25", + "version":13016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.113.0", + "prefixLen":25, + "network":"193.16.113.0\/25", + "version":13015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.113.128", + "prefixLen":25, + "network":"193.16.113.128\/25", + "version":13014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.114.0", + "prefixLen":25, + "network":"193.16.114.0\/25", + "version":13013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.114.128", + "prefixLen":25, + "network":"193.16.114.128\/25", + "version":13012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.115.0", + "prefixLen":25, + "network":"193.16.115.0\/25", + "version":13011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.115.128", + "prefixLen":25, + "network":"193.16.115.128\/25", + "version":13010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.128.0", + "prefixLen":25, + "network":"193.16.128.0\/25", + "version":13009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.128.128", + "prefixLen":25, + "network":"193.16.128.128\/25", + "version":13008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.129.0", + "prefixLen":25, + "network":"193.16.129.0\/25", + "version":13007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.129.128", + "prefixLen":25, + "network":"193.16.129.128\/25", + "version":13006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.130.0", + "prefixLen":25, + "network":"193.16.130.0\/25", + "version":13005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.130.128", + "prefixLen":25, + "network":"193.16.130.128\/25", + "version":13004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.131.0", + "prefixLen":25, + "network":"193.16.131.0\/25", + "version":13003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.131.128", + "prefixLen":25, + "network":"193.16.131.128\/25", + "version":13002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.144.0", + "prefixLen":25, + "network":"193.16.144.0\/25", + "version":13001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.144.128", + "prefixLen":25, + "network":"193.16.144.128\/25", + "version":13000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.145.0", + "prefixLen":25, + "network":"193.16.145.0\/25", + "version":12999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.145.128", + "prefixLen":25, + "network":"193.16.145.128\/25", + "version":12998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.146.0", + "prefixLen":25, + "network":"193.16.146.0\/25", + "version":12997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.146.128", + "prefixLen":25, + "network":"193.16.146.128\/25", + "version":12996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.147.0", + "prefixLen":25, + "network":"193.16.147.0\/25", + "version":12995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.147.128", + "prefixLen":25, + "network":"193.16.147.128\/25", + "version":12994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.160.0", + "prefixLen":25, + "network":"193.16.160.0\/25", + "version":12993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.160.128", + "prefixLen":25, + "network":"193.16.160.128\/25", + "version":12992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.161.0", + "prefixLen":25, + "network":"193.16.161.0\/25", + "version":12991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.161.128", + "prefixLen":25, + "network":"193.16.161.128\/25", + "version":12990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.162.0", + "prefixLen":25, + "network":"193.16.162.0\/25", + "version":12989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.162.128", + "prefixLen":25, + "network":"193.16.162.128\/25", + "version":12988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.163.0", + "prefixLen":25, + "network":"193.16.163.0\/25", + "version":12987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.163.128", + "prefixLen":25, + "network":"193.16.163.128\/25", + "version":12986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.176.0", + "prefixLen":25, + "network":"193.16.176.0\/25", + "version":12985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.176.128", + "prefixLen":25, + "network":"193.16.176.128\/25", + "version":12984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.177.0", + "prefixLen":25, + "network":"193.16.177.0\/25", + "version":12983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.177.128", + "prefixLen":25, + "network":"193.16.177.128\/25", + "version":12982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.178.0", + "prefixLen":25, + "network":"193.16.178.0\/25", + "version":12981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.178.128", + "prefixLen":25, + "network":"193.16.178.128\/25", + "version":12980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.179.0", + "prefixLen":25, + "network":"193.16.179.0\/25", + "version":12979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.179.128", + "prefixLen":25, + "network":"193.16.179.128\/25", + "version":12978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.192.0", + "prefixLen":25, + "network":"193.16.192.0\/25", + "version":12977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.192.128", + "prefixLen":25, + "network":"193.16.192.128\/25", + "version":12976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.193.0", + "prefixLen":25, + "network":"193.16.193.0\/25", + "version":12975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.193.128", + "prefixLen":25, + "network":"193.16.193.128\/25", + "version":12974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.194.0", + "prefixLen":25, + "network":"193.16.194.0\/25", + "version":12973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.194.128", + "prefixLen":25, + "network":"193.16.194.128\/25", + "version":12972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.195.0", + "prefixLen":25, + "network":"193.16.195.0\/25", + "version":12971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.195.128", + "prefixLen":25, + "network":"193.16.195.128\/25", + "version":12970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.208.0", + "prefixLen":25, + "network":"193.16.208.0\/25", + "version":12969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.208.128", + "prefixLen":25, + "network":"193.16.208.128\/25", + "version":12968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.209.0", + "prefixLen":25, + "network":"193.16.209.0\/25", + "version":12967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.209.128", + "prefixLen":25, + "network":"193.16.209.128\/25", + "version":12966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.210.0", + "prefixLen":25, + "network":"193.16.210.0\/25", + "version":12965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.210.128", + "prefixLen":25, + "network":"193.16.210.128\/25", + "version":12964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.211.0", + "prefixLen":25, + "network":"193.16.211.0\/25", + "version":12963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.211.128", + "prefixLen":25, + "network":"193.16.211.128\/25", + "version":12962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.224.0", + "prefixLen":25, + "network":"193.16.224.0\/25", + "version":12961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.224.128", + "prefixLen":25, + "network":"193.16.224.128\/25", + "version":12960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.225.0", + "prefixLen":25, + "network":"193.16.225.0\/25", + "version":12959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.225.128", + "prefixLen":25, + "network":"193.16.225.128\/25", + "version":12958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.226.0", + "prefixLen":25, + "network":"193.16.226.0\/25", + "version":12957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.226.128", + "prefixLen":25, + "network":"193.16.226.128\/25", + "version":12956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.227.0", + "prefixLen":25, + "network":"193.16.227.0\/25", + "version":12955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.227.128", + "prefixLen":25, + "network":"193.16.227.128\/25", + "version":12954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.240.0", + "prefixLen":25, + "network":"193.16.240.0\/25", + "version":12953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.240.128", + "prefixLen":25, + "network":"193.16.240.128\/25", + "version":12952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.241.0", + "prefixLen":25, + "network":"193.16.241.0\/25", + "version":12951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.241.128", + "prefixLen":25, + "network":"193.16.241.128\/25", + "version":12950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.242.0", + "prefixLen":25, + "network":"193.16.242.0\/25", + "version":12949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.242.128", + "prefixLen":25, + "network":"193.16.242.128\/25", + "version":12948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.243.0", + "prefixLen":25, + "network":"193.16.243.0\/25", + "version":12947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.16.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.16.243.128", + "prefixLen":25, + "network":"193.16.243.128\/25", + "version":12946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64704 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.0.0", + "prefixLen":25, + "network":"193.17.0.0\/25", + "version":13073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.0.128", + "prefixLen":25, + "network":"193.17.0.128\/25", + "version":13200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.1.0", + "prefixLen":25, + "network":"193.17.1.0\/25", + "version":13199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.1.128", + "prefixLen":25, + "network":"193.17.1.128\/25", + "version":13198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.2.0", + "prefixLen":25, + "network":"193.17.2.0\/25", + "version":13197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.2.128", + "prefixLen":25, + "network":"193.17.2.128\/25", + "version":13196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.3.0", + "prefixLen":25, + "network":"193.17.3.0\/25", + "version":13195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.3.128", + "prefixLen":25, + "network":"193.17.3.128\/25", + "version":13194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.16.0", + "prefixLen":25, + "network":"193.17.16.0\/25", + "version":13193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.16.128", + "prefixLen":25, + "network":"193.17.16.128\/25", + "version":13192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.17.0", + "prefixLen":25, + "network":"193.17.17.0\/25", + "version":13191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.17.128", + "prefixLen":25, + "network":"193.17.17.128\/25", + "version":13190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.18.0", + "prefixLen":25, + "network":"193.17.18.0\/25", + "version":13189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.18.128", + "prefixLen":25, + "network":"193.17.18.128\/25", + "version":13188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.19.0", + "prefixLen":25, + "network":"193.17.19.0\/25", + "version":13187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.19.128", + "prefixLen":25, + "network":"193.17.19.128\/25", + "version":13186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.32.0", + "prefixLen":25, + "network":"193.17.32.0\/25", + "version":13185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.32.128", + "prefixLen":25, + "network":"193.17.32.128\/25", + "version":13184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.33.0", + "prefixLen":25, + "network":"193.17.33.0\/25", + "version":13183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.33.128", + "prefixLen":25, + "network":"193.17.33.128\/25", + "version":13182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.34.0", + "prefixLen":25, + "network":"193.17.34.0\/25", + "version":13181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.34.128", + "prefixLen":25, + "network":"193.17.34.128\/25", + "version":13180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.35.0", + "prefixLen":25, + "network":"193.17.35.0\/25", + "version":13179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.35.128", + "prefixLen":25, + "network":"193.17.35.128\/25", + "version":13178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.48.0", + "prefixLen":25, + "network":"193.17.48.0\/25", + "version":13177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.48.128", + "prefixLen":25, + "network":"193.17.48.128\/25", + "version":13176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.49.0", + "prefixLen":25, + "network":"193.17.49.0\/25", + "version":13175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.49.128", + "prefixLen":25, + "network":"193.17.49.128\/25", + "version":13174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.50.0", + "prefixLen":25, + "network":"193.17.50.0\/25", + "version":13173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.50.128", + "prefixLen":25, + "network":"193.17.50.128\/25", + "version":13172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.51.0", + "prefixLen":25, + "network":"193.17.51.0\/25", + "version":13171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.51.128", + "prefixLen":25, + "network":"193.17.51.128\/25", + "version":13170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.64.0", + "prefixLen":25, + "network":"193.17.64.0\/25", + "version":13169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.64.128", + "prefixLen":25, + "network":"193.17.64.128\/25", + "version":13168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.65.0", + "prefixLen":25, + "network":"193.17.65.0\/25", + "version":13167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.65.128", + "prefixLen":25, + "network":"193.17.65.128\/25", + "version":13166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.66.0", + "prefixLen":25, + "network":"193.17.66.0\/25", + "version":13165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.66.128", + "prefixLen":25, + "network":"193.17.66.128\/25", + "version":13164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.67.0", + "prefixLen":25, + "network":"193.17.67.0\/25", + "version":13163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.67.128", + "prefixLen":25, + "network":"193.17.67.128\/25", + "version":13162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.80.0", + "prefixLen":25, + "network":"193.17.80.0\/25", + "version":13161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.80.128", + "prefixLen":25, + "network":"193.17.80.128\/25", + "version":13160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.81.0", + "prefixLen":25, + "network":"193.17.81.0\/25", + "version":13159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.81.128", + "prefixLen":25, + "network":"193.17.81.128\/25", + "version":13158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.82.0", + "prefixLen":25, + "network":"193.17.82.0\/25", + "version":13157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.82.128", + "prefixLen":25, + "network":"193.17.82.128\/25", + "version":13156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.83.0", + "prefixLen":25, + "network":"193.17.83.0\/25", + "version":13155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.83.128", + "prefixLen":25, + "network":"193.17.83.128\/25", + "version":13154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.96.0", + "prefixLen":25, + "network":"193.17.96.0\/25", + "version":13153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.96.128", + "prefixLen":25, + "network":"193.17.96.128\/25", + "version":13152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.97.0", + "prefixLen":25, + "network":"193.17.97.0\/25", + "version":13151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.97.128", + "prefixLen":25, + "network":"193.17.97.128\/25", + "version":13150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.98.0", + "prefixLen":25, + "network":"193.17.98.0\/25", + "version":13149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.98.128", + "prefixLen":25, + "network":"193.17.98.128\/25", + "version":13148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.99.0", + "prefixLen":25, + "network":"193.17.99.0\/25", + "version":13147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.99.128", + "prefixLen":25, + "network":"193.17.99.128\/25", + "version":13146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.112.0", + "prefixLen":25, + "network":"193.17.112.0\/25", + "version":13145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.112.128", + "prefixLen":25, + "network":"193.17.112.128\/25", + "version":13144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.113.0", + "prefixLen":25, + "network":"193.17.113.0\/25", + "version":13143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.113.128", + "prefixLen":25, + "network":"193.17.113.128\/25", + "version":13142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.114.0", + "prefixLen":25, + "network":"193.17.114.0\/25", + "version":13141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.114.128", + "prefixLen":25, + "network":"193.17.114.128\/25", + "version":13140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.115.0", + "prefixLen":25, + "network":"193.17.115.0\/25", + "version":13139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.115.128", + "prefixLen":25, + "network":"193.17.115.128\/25", + "version":13138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.128.0", + "prefixLen":25, + "network":"193.17.128.0\/25", + "version":13137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.128.128", + "prefixLen":25, + "network":"193.17.128.128\/25", + "version":13136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.129.0", + "prefixLen":25, + "network":"193.17.129.0\/25", + "version":13135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.129.128", + "prefixLen":25, + "network":"193.17.129.128\/25", + "version":13134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.130.0", + "prefixLen":25, + "network":"193.17.130.0\/25", + "version":13133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.130.128", + "prefixLen":25, + "network":"193.17.130.128\/25", + "version":13132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.131.0", + "prefixLen":25, + "network":"193.17.131.0\/25", + "version":13131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.131.128", + "prefixLen":25, + "network":"193.17.131.128\/25", + "version":13130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.144.0", + "prefixLen":25, + "network":"193.17.144.0\/25", + "version":13129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.144.128", + "prefixLen":25, + "network":"193.17.144.128\/25", + "version":13128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.145.0", + "prefixLen":25, + "network":"193.17.145.0\/25", + "version":13127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.145.128", + "prefixLen":25, + "network":"193.17.145.128\/25", + "version":13126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.146.0", + "prefixLen":25, + "network":"193.17.146.0\/25", + "version":13125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.146.128", + "prefixLen":25, + "network":"193.17.146.128\/25", + "version":13124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.147.0", + "prefixLen":25, + "network":"193.17.147.0\/25", + "version":13123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.147.128", + "prefixLen":25, + "network":"193.17.147.128\/25", + "version":13122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.160.0", + "prefixLen":25, + "network":"193.17.160.0\/25", + "version":13121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.160.128", + "prefixLen":25, + "network":"193.17.160.128\/25", + "version":13120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.161.0", + "prefixLen":25, + "network":"193.17.161.0\/25", + "version":13119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.161.128", + "prefixLen":25, + "network":"193.17.161.128\/25", + "version":13118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.162.0", + "prefixLen":25, + "network":"193.17.162.0\/25", + "version":13117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.162.128", + "prefixLen":25, + "network":"193.17.162.128\/25", + "version":13116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.163.0", + "prefixLen":25, + "network":"193.17.163.0\/25", + "version":13115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.163.128", + "prefixLen":25, + "network":"193.17.163.128\/25", + "version":13114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.176.0", + "prefixLen":25, + "network":"193.17.176.0\/25", + "version":13113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.176.128", + "prefixLen":25, + "network":"193.17.176.128\/25", + "version":13112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.177.0", + "prefixLen":25, + "network":"193.17.177.0\/25", + "version":13111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.177.128", + "prefixLen":25, + "network":"193.17.177.128\/25", + "version":13110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.178.0", + "prefixLen":25, + "network":"193.17.178.0\/25", + "version":13109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.178.128", + "prefixLen":25, + "network":"193.17.178.128\/25", + "version":13108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.179.0", + "prefixLen":25, + "network":"193.17.179.0\/25", + "version":13107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.179.128", + "prefixLen":25, + "network":"193.17.179.128\/25", + "version":13106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.192.0", + "prefixLen":25, + "network":"193.17.192.0\/25", + "version":13105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.192.128", + "prefixLen":25, + "network":"193.17.192.128\/25", + "version":13104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.193.0", + "prefixLen":25, + "network":"193.17.193.0\/25", + "version":13103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.193.128", + "prefixLen":25, + "network":"193.17.193.128\/25", + "version":13102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.194.0", + "prefixLen":25, + "network":"193.17.194.0\/25", + "version":13101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.194.128", + "prefixLen":25, + "network":"193.17.194.128\/25", + "version":13100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.195.0", + "prefixLen":25, + "network":"193.17.195.0\/25", + "version":13099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.195.128", + "prefixLen":25, + "network":"193.17.195.128\/25", + "version":13098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.208.0", + "prefixLen":25, + "network":"193.17.208.0\/25", + "version":13097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.208.128", + "prefixLen":25, + "network":"193.17.208.128\/25", + "version":13096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.209.0", + "prefixLen":25, + "network":"193.17.209.0\/25", + "version":13095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.209.128", + "prefixLen":25, + "network":"193.17.209.128\/25", + "version":13094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.210.0", + "prefixLen":25, + "network":"193.17.210.0\/25", + "version":13093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.210.128", + "prefixLen":25, + "network":"193.17.210.128\/25", + "version":13092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.211.0", + "prefixLen":25, + "network":"193.17.211.0\/25", + "version":13091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.211.128", + "prefixLen":25, + "network":"193.17.211.128\/25", + "version":13090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.224.0", + "prefixLen":25, + "network":"193.17.224.0\/25", + "version":13089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.224.128", + "prefixLen":25, + "network":"193.17.224.128\/25", + "version":13088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.225.0", + "prefixLen":25, + "network":"193.17.225.0\/25", + "version":13087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.225.128", + "prefixLen":25, + "network":"193.17.225.128\/25", + "version":13086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.226.0", + "prefixLen":25, + "network":"193.17.226.0\/25", + "version":13085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.226.128", + "prefixLen":25, + "network":"193.17.226.128\/25", + "version":13084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.227.0", + "prefixLen":25, + "network":"193.17.227.0\/25", + "version":13083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.227.128", + "prefixLen":25, + "network":"193.17.227.128\/25", + "version":13082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.240.0", + "prefixLen":25, + "network":"193.17.240.0\/25", + "version":13081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.240.128", + "prefixLen":25, + "network":"193.17.240.128\/25", + "version":13080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.241.0", + "prefixLen":25, + "network":"193.17.241.0\/25", + "version":13079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.241.128", + "prefixLen":25, + "network":"193.17.241.128\/25", + "version":13078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.242.0", + "prefixLen":25, + "network":"193.17.242.0\/25", + "version":13077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.242.128", + "prefixLen":25, + "network":"193.17.242.128\/25", + "version":13076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.243.0", + "prefixLen":25, + "network":"193.17.243.0\/25", + "version":13075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.17.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.17.243.128", + "prefixLen":25, + "network":"193.17.243.128\/25", + "version":13074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64705 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.0.0", + "prefixLen":25, + "network":"193.18.0.0\/25", + "version":13717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.0.128", + "prefixLen":25, + "network":"193.18.0.128\/25", + "version":13844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.1.0", + "prefixLen":25, + "network":"193.18.1.0\/25", + "version":13843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.1.128", + "prefixLen":25, + "network":"193.18.1.128\/25", + "version":13842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.2.0", + "prefixLen":25, + "network":"193.18.2.0\/25", + "version":13841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.2.128", + "prefixLen":25, + "network":"193.18.2.128\/25", + "version":13840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.3.0", + "prefixLen":25, + "network":"193.18.3.0\/25", + "version":13839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.3.128", + "prefixLen":25, + "network":"193.18.3.128\/25", + "version":13838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.16.0", + "prefixLen":25, + "network":"193.18.16.0\/25", + "version":13837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.16.128", + "prefixLen":25, + "network":"193.18.16.128\/25", + "version":13836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.17.0", + "prefixLen":25, + "network":"193.18.17.0\/25", + "version":13835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.17.128", + "prefixLen":25, + "network":"193.18.17.128\/25", + "version":13834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.18.0", + "prefixLen":25, + "network":"193.18.18.0\/25", + "version":13833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.18.128", + "prefixLen":25, + "network":"193.18.18.128\/25", + "version":13832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.19.0", + "prefixLen":25, + "network":"193.18.19.0\/25", + "version":13831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.19.128", + "prefixLen":25, + "network":"193.18.19.128\/25", + "version":13830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.32.0", + "prefixLen":25, + "network":"193.18.32.0\/25", + "version":13829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.32.128", + "prefixLen":25, + "network":"193.18.32.128\/25", + "version":13828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.33.0", + "prefixLen":25, + "network":"193.18.33.0\/25", + "version":13827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.33.128", + "prefixLen":25, + "network":"193.18.33.128\/25", + "version":13826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.34.0", + "prefixLen":25, + "network":"193.18.34.0\/25", + "version":13825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.34.128", + "prefixLen":25, + "network":"193.18.34.128\/25", + "version":13824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.35.0", + "prefixLen":25, + "network":"193.18.35.0\/25", + "version":13823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.35.128", + "prefixLen":25, + "network":"193.18.35.128\/25", + "version":13822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.48.0", + "prefixLen":25, + "network":"193.18.48.0\/25", + "version":13821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.48.128", + "prefixLen":25, + "network":"193.18.48.128\/25", + "version":13820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.49.0", + "prefixLen":25, + "network":"193.18.49.0\/25", + "version":13819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.49.128", + "prefixLen":25, + "network":"193.18.49.128\/25", + "version":13818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.50.0", + "prefixLen":25, + "network":"193.18.50.0\/25", + "version":13817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.50.128", + "prefixLen":25, + "network":"193.18.50.128\/25", + "version":13816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.51.0", + "prefixLen":25, + "network":"193.18.51.0\/25", + "version":13815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.51.128", + "prefixLen":25, + "network":"193.18.51.128\/25", + "version":13814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.64.0", + "prefixLen":25, + "network":"193.18.64.0\/25", + "version":13813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.64.128", + "prefixLen":25, + "network":"193.18.64.128\/25", + "version":13812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.65.0", + "prefixLen":25, + "network":"193.18.65.0\/25", + "version":13811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.65.128", + "prefixLen":25, + "network":"193.18.65.128\/25", + "version":13810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.66.0", + "prefixLen":25, + "network":"193.18.66.0\/25", + "version":13809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.66.128", + "prefixLen":25, + "network":"193.18.66.128\/25", + "version":13808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.67.0", + "prefixLen":25, + "network":"193.18.67.0\/25", + "version":13807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.67.128", + "prefixLen":25, + "network":"193.18.67.128\/25", + "version":13806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.80.0", + "prefixLen":25, + "network":"193.18.80.0\/25", + "version":13805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.80.128", + "prefixLen":25, + "network":"193.18.80.128\/25", + "version":13804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.81.0", + "prefixLen":25, + "network":"193.18.81.0\/25", + "version":13803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.81.128", + "prefixLen":25, + "network":"193.18.81.128\/25", + "version":13802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.82.0", + "prefixLen":25, + "network":"193.18.82.0\/25", + "version":13801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.82.128", + "prefixLen":25, + "network":"193.18.82.128\/25", + "version":13800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.83.0", + "prefixLen":25, + "network":"193.18.83.0\/25", + "version":13799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.83.128", + "prefixLen":25, + "network":"193.18.83.128\/25", + "version":13798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.96.0", + "prefixLen":25, + "network":"193.18.96.0\/25", + "version":13797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.96.128", + "prefixLen":25, + "network":"193.18.96.128\/25", + "version":13796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.97.0", + "prefixLen":25, + "network":"193.18.97.0\/25", + "version":13795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.97.128", + "prefixLen":25, + "network":"193.18.97.128\/25", + "version":13794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.98.0", + "prefixLen":25, + "network":"193.18.98.0\/25", + "version":13793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.98.128", + "prefixLen":25, + "network":"193.18.98.128\/25", + "version":13792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.99.0", + "prefixLen":25, + "network":"193.18.99.0\/25", + "version":13791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.99.128", + "prefixLen":25, + "network":"193.18.99.128\/25", + "version":13790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.112.0", + "prefixLen":25, + "network":"193.18.112.0\/25", + "version":13789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.112.128", + "prefixLen":25, + "network":"193.18.112.128\/25", + "version":13788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.113.0", + "prefixLen":25, + "network":"193.18.113.0\/25", + "version":13787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.113.128", + "prefixLen":25, + "network":"193.18.113.128\/25", + "version":13786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.114.0", + "prefixLen":25, + "network":"193.18.114.0\/25", + "version":13785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.114.128", + "prefixLen":25, + "network":"193.18.114.128\/25", + "version":13784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.115.0", + "prefixLen":25, + "network":"193.18.115.0\/25", + "version":13783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.115.128", + "prefixLen":25, + "network":"193.18.115.128\/25", + "version":13782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.128.0", + "prefixLen":25, + "network":"193.18.128.0\/25", + "version":13781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.128.128", + "prefixLen":25, + "network":"193.18.128.128\/25", + "version":13780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.129.0", + "prefixLen":25, + "network":"193.18.129.0\/25", + "version":13779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.129.128", + "prefixLen":25, + "network":"193.18.129.128\/25", + "version":13778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.130.0", + "prefixLen":25, + "network":"193.18.130.0\/25", + "version":13777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.130.128", + "prefixLen":25, + "network":"193.18.130.128\/25", + "version":13776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.131.0", + "prefixLen":25, + "network":"193.18.131.0\/25", + "version":13775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.131.128", + "prefixLen":25, + "network":"193.18.131.128\/25", + "version":13774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.144.0", + "prefixLen":25, + "network":"193.18.144.0\/25", + "version":13773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.144.128", + "prefixLen":25, + "network":"193.18.144.128\/25", + "version":13772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.145.0", + "prefixLen":25, + "network":"193.18.145.0\/25", + "version":13771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.145.128", + "prefixLen":25, + "network":"193.18.145.128\/25", + "version":13770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.146.0", + "prefixLen":25, + "network":"193.18.146.0\/25", + "version":13769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.146.128", + "prefixLen":25, + "network":"193.18.146.128\/25", + "version":13768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.147.0", + "prefixLen":25, + "network":"193.18.147.0\/25", + "version":13767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.147.128", + "prefixLen":25, + "network":"193.18.147.128\/25", + "version":13766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.160.0", + "prefixLen":25, + "network":"193.18.160.0\/25", + "version":13765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.160.128", + "prefixLen":25, + "network":"193.18.160.128\/25", + "version":13764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.161.0", + "prefixLen":25, + "network":"193.18.161.0\/25", + "version":13763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.161.128", + "prefixLen":25, + "network":"193.18.161.128\/25", + "version":13762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.162.0", + "prefixLen":25, + "network":"193.18.162.0\/25", + "version":13761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.162.128", + "prefixLen":25, + "network":"193.18.162.128\/25", + "version":13760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.163.0", + "prefixLen":25, + "network":"193.18.163.0\/25", + "version":13759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.163.128", + "prefixLen":25, + "network":"193.18.163.128\/25", + "version":13758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.176.0", + "prefixLen":25, + "network":"193.18.176.0\/25", + "version":13757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.176.128", + "prefixLen":25, + "network":"193.18.176.128\/25", + "version":13756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.177.0", + "prefixLen":25, + "network":"193.18.177.0\/25", + "version":13755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.177.128", + "prefixLen":25, + "network":"193.18.177.128\/25", + "version":13754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.178.0", + "prefixLen":25, + "network":"193.18.178.0\/25", + "version":13753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.178.128", + "prefixLen":25, + "network":"193.18.178.128\/25", + "version":13752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.179.0", + "prefixLen":25, + "network":"193.18.179.0\/25", + "version":13751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.179.128", + "prefixLen":25, + "network":"193.18.179.128\/25", + "version":13750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.192.0", + "prefixLen":25, + "network":"193.18.192.0\/25", + "version":13749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.192.128", + "prefixLen":25, + "network":"193.18.192.128\/25", + "version":13748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.193.0", + "prefixLen":25, + "network":"193.18.193.0\/25", + "version":13747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.193.128", + "prefixLen":25, + "network":"193.18.193.128\/25", + "version":13746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.194.0", + "prefixLen":25, + "network":"193.18.194.0\/25", + "version":13745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.194.128", + "prefixLen":25, + "network":"193.18.194.128\/25", + "version":13744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.195.0", + "prefixLen":25, + "network":"193.18.195.0\/25", + "version":13743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.195.128", + "prefixLen":25, + "network":"193.18.195.128\/25", + "version":13742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.208.0", + "prefixLen":25, + "network":"193.18.208.0\/25", + "version":13741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.208.128", + "prefixLen":25, + "network":"193.18.208.128\/25", + "version":13740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.209.0", + "prefixLen":25, + "network":"193.18.209.0\/25", + "version":13739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.209.128", + "prefixLen":25, + "network":"193.18.209.128\/25", + "version":13738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.210.0", + "prefixLen":25, + "network":"193.18.210.0\/25", + "version":13737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.210.128", + "prefixLen":25, + "network":"193.18.210.128\/25", + "version":13736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.211.0", + "prefixLen":25, + "network":"193.18.211.0\/25", + "version":13735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.211.128", + "prefixLen":25, + "network":"193.18.211.128\/25", + "version":13734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.224.0", + "prefixLen":25, + "network":"193.18.224.0\/25", + "version":13733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.224.128", + "prefixLen":25, + "network":"193.18.224.128\/25", + "version":13732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.225.0", + "prefixLen":25, + "network":"193.18.225.0\/25", + "version":13731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.225.128", + "prefixLen":25, + "network":"193.18.225.128\/25", + "version":13730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.226.0", + "prefixLen":25, + "network":"193.18.226.0\/25", + "version":13729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.226.128", + "prefixLen":25, + "network":"193.18.226.128\/25", + "version":13728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.227.0", + "prefixLen":25, + "network":"193.18.227.0\/25", + "version":13727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.227.128", + "prefixLen":25, + "network":"193.18.227.128\/25", + "version":13726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.240.0", + "prefixLen":25, + "network":"193.18.240.0\/25", + "version":13725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.240.128", + "prefixLen":25, + "network":"193.18.240.128\/25", + "version":13724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.241.0", + "prefixLen":25, + "network":"193.18.241.0\/25", + "version":13723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.241.128", + "prefixLen":25, + "network":"193.18.241.128\/25", + "version":13722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.242.0", + "prefixLen":25, + "network":"193.18.242.0\/25", + "version":13721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.242.128", + "prefixLen":25, + "network":"193.18.242.128\/25", + "version":13720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.243.0", + "prefixLen":25, + "network":"193.18.243.0\/25", + "version":13719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.18.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.18.243.128", + "prefixLen":25, + "network":"193.18.243.128\/25", + "version":13718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64706 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.0.0", + "prefixLen":25, + "network":"193.19.0.0\/25", + "version":13845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.0.128", + "prefixLen":25, + "network":"193.19.0.128\/25", + "version":13972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.1.0", + "prefixLen":25, + "network":"193.19.1.0\/25", + "version":13971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.1.128", + "prefixLen":25, + "network":"193.19.1.128\/25", + "version":13970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.2.0", + "prefixLen":25, + "network":"193.19.2.0\/25", + "version":13969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.2.128", + "prefixLen":25, + "network":"193.19.2.128\/25", + "version":13968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.3.0", + "prefixLen":25, + "network":"193.19.3.0\/25", + "version":13967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.3.128", + "prefixLen":25, + "network":"193.19.3.128\/25", + "version":13966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.16.0", + "prefixLen":25, + "network":"193.19.16.0\/25", + "version":13965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.16.128", + "prefixLen":25, + "network":"193.19.16.128\/25", + "version":13964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.17.0", + "prefixLen":25, + "network":"193.19.17.0\/25", + "version":13963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.17.128", + "prefixLen":25, + "network":"193.19.17.128\/25", + "version":13962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.18.0", + "prefixLen":25, + "network":"193.19.18.0\/25", + "version":13961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.18.128", + "prefixLen":25, + "network":"193.19.18.128\/25", + "version":13960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.19.0", + "prefixLen":25, + "network":"193.19.19.0\/25", + "version":13959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.19.128", + "prefixLen":25, + "network":"193.19.19.128\/25", + "version":13958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.32.0", + "prefixLen":25, + "network":"193.19.32.0\/25", + "version":13957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.32.128", + "prefixLen":25, + "network":"193.19.32.128\/25", + "version":13956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.33.0", + "prefixLen":25, + "network":"193.19.33.0\/25", + "version":13955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.33.128", + "prefixLen":25, + "network":"193.19.33.128\/25", + "version":13954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.34.0", + "prefixLen":25, + "network":"193.19.34.0\/25", + "version":13953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.34.128", + "prefixLen":25, + "network":"193.19.34.128\/25", + "version":13952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.35.0", + "prefixLen":25, + "network":"193.19.35.0\/25", + "version":13951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.35.128", + "prefixLen":25, + "network":"193.19.35.128\/25", + "version":13950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.48.0", + "prefixLen":25, + "network":"193.19.48.0\/25", + "version":13949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.48.128", + "prefixLen":25, + "network":"193.19.48.128\/25", + "version":13948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.49.0", + "prefixLen":25, + "network":"193.19.49.0\/25", + "version":13947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.49.128", + "prefixLen":25, + "network":"193.19.49.128\/25", + "version":13946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.50.0", + "prefixLen":25, + "network":"193.19.50.0\/25", + "version":13945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.50.128", + "prefixLen":25, + "network":"193.19.50.128\/25", + "version":13944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.51.0", + "prefixLen":25, + "network":"193.19.51.0\/25", + "version":13943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.51.128", + "prefixLen":25, + "network":"193.19.51.128\/25", + "version":13942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.64.0", + "prefixLen":25, + "network":"193.19.64.0\/25", + "version":13941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.64.128", + "prefixLen":25, + "network":"193.19.64.128\/25", + "version":13940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.65.0", + "prefixLen":25, + "network":"193.19.65.0\/25", + "version":13939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.65.128", + "prefixLen":25, + "network":"193.19.65.128\/25", + "version":13938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.66.0", + "prefixLen":25, + "network":"193.19.66.0\/25", + "version":13937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.66.128", + "prefixLen":25, + "network":"193.19.66.128\/25", + "version":13936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.67.0", + "prefixLen":25, + "network":"193.19.67.0\/25", + "version":13935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.67.128", + "prefixLen":25, + "network":"193.19.67.128\/25", + "version":13934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.80.0", + "prefixLen":25, + "network":"193.19.80.0\/25", + "version":13933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.80.128", + "prefixLen":25, + "network":"193.19.80.128\/25", + "version":13932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.81.0", + "prefixLen":25, + "network":"193.19.81.0\/25", + "version":13931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.81.128", + "prefixLen":25, + "network":"193.19.81.128\/25", + "version":13930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.82.0", + "prefixLen":25, + "network":"193.19.82.0\/25", + "version":13929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.82.128", + "prefixLen":25, + "network":"193.19.82.128\/25", + "version":13928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.83.0", + "prefixLen":25, + "network":"193.19.83.0\/25", + "version":13927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.83.128", + "prefixLen":25, + "network":"193.19.83.128\/25", + "version":13926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.96.0", + "prefixLen":25, + "network":"193.19.96.0\/25", + "version":13925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.96.128", + "prefixLen":25, + "network":"193.19.96.128\/25", + "version":13924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.97.0", + "prefixLen":25, + "network":"193.19.97.0\/25", + "version":13923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.97.128", + "prefixLen":25, + "network":"193.19.97.128\/25", + "version":13922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.98.0", + "prefixLen":25, + "network":"193.19.98.0\/25", + "version":13921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.98.128", + "prefixLen":25, + "network":"193.19.98.128\/25", + "version":13920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.99.0", + "prefixLen":25, + "network":"193.19.99.0\/25", + "version":13919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.99.128", + "prefixLen":25, + "network":"193.19.99.128\/25", + "version":13918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.112.0", + "prefixLen":25, + "network":"193.19.112.0\/25", + "version":13917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.112.128", + "prefixLen":25, + "network":"193.19.112.128\/25", + "version":13916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.113.0", + "prefixLen":25, + "network":"193.19.113.0\/25", + "version":13915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.113.128", + "prefixLen":25, + "network":"193.19.113.128\/25", + "version":13914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.114.0", + "prefixLen":25, + "network":"193.19.114.0\/25", + "version":13913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.114.128", + "prefixLen":25, + "network":"193.19.114.128\/25", + "version":13912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.115.0", + "prefixLen":25, + "network":"193.19.115.0\/25", + "version":13911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.115.128", + "prefixLen":25, + "network":"193.19.115.128\/25", + "version":13910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.128.0", + "prefixLen":25, + "network":"193.19.128.0\/25", + "version":13909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.128.128", + "prefixLen":25, + "network":"193.19.128.128\/25", + "version":13908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.129.0", + "prefixLen":25, + "network":"193.19.129.0\/25", + "version":13907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.129.128", + "prefixLen":25, + "network":"193.19.129.128\/25", + "version":13906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.130.0", + "prefixLen":25, + "network":"193.19.130.0\/25", + "version":13905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.130.128", + "prefixLen":25, + "network":"193.19.130.128\/25", + "version":13904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.131.0", + "prefixLen":25, + "network":"193.19.131.0\/25", + "version":13903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.131.128", + "prefixLen":25, + "network":"193.19.131.128\/25", + "version":13902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.144.0", + "prefixLen":25, + "network":"193.19.144.0\/25", + "version":13901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.144.128", + "prefixLen":25, + "network":"193.19.144.128\/25", + "version":13900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.145.0", + "prefixLen":25, + "network":"193.19.145.0\/25", + "version":13899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.145.128", + "prefixLen":25, + "network":"193.19.145.128\/25", + "version":13898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.146.0", + "prefixLen":25, + "network":"193.19.146.0\/25", + "version":13897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.146.128", + "prefixLen":25, + "network":"193.19.146.128\/25", + "version":13896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.147.0", + "prefixLen":25, + "network":"193.19.147.0\/25", + "version":13895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.147.128", + "prefixLen":25, + "network":"193.19.147.128\/25", + "version":13894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.160.0", + "prefixLen":25, + "network":"193.19.160.0\/25", + "version":13893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.160.128", + "prefixLen":25, + "network":"193.19.160.128\/25", + "version":13892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.161.0", + "prefixLen":25, + "network":"193.19.161.0\/25", + "version":13891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.161.128", + "prefixLen":25, + "network":"193.19.161.128\/25", + "version":13890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.162.0", + "prefixLen":25, + "network":"193.19.162.0\/25", + "version":13889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.162.128", + "prefixLen":25, + "network":"193.19.162.128\/25", + "version":13888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.163.0", + "prefixLen":25, + "network":"193.19.163.0\/25", + "version":13887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.163.128", + "prefixLen":25, + "network":"193.19.163.128\/25", + "version":13886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.176.0", + "prefixLen":25, + "network":"193.19.176.0\/25", + "version":13885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.176.128", + "prefixLen":25, + "network":"193.19.176.128\/25", + "version":13884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.177.0", + "prefixLen":25, + "network":"193.19.177.0\/25", + "version":13883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.177.128", + "prefixLen":25, + "network":"193.19.177.128\/25", + "version":13882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.178.0", + "prefixLen":25, + "network":"193.19.178.0\/25", + "version":13881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.178.128", + "prefixLen":25, + "network":"193.19.178.128\/25", + "version":13880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.179.0", + "prefixLen":25, + "network":"193.19.179.0\/25", + "version":13879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.179.128", + "prefixLen":25, + "network":"193.19.179.128\/25", + "version":13878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.192.0", + "prefixLen":25, + "network":"193.19.192.0\/25", + "version":13877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.192.128", + "prefixLen":25, + "network":"193.19.192.128\/25", + "version":13876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.193.0", + "prefixLen":25, + "network":"193.19.193.0\/25", + "version":13875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.193.128", + "prefixLen":25, + "network":"193.19.193.128\/25", + "version":13874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.194.0", + "prefixLen":25, + "network":"193.19.194.0\/25", + "version":13873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.194.128", + "prefixLen":25, + "network":"193.19.194.128\/25", + "version":13872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.195.0", + "prefixLen":25, + "network":"193.19.195.0\/25", + "version":13871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.195.128", + "prefixLen":25, + "network":"193.19.195.128\/25", + "version":13870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.208.0", + "prefixLen":25, + "network":"193.19.208.0\/25", + "version":13869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.208.128", + "prefixLen":25, + "network":"193.19.208.128\/25", + "version":13868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.209.0", + "prefixLen":25, + "network":"193.19.209.0\/25", + "version":13867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.209.128", + "prefixLen":25, + "network":"193.19.209.128\/25", + "version":13866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.210.0", + "prefixLen":25, + "network":"193.19.210.0\/25", + "version":13865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.210.128", + "prefixLen":25, + "network":"193.19.210.128\/25", + "version":13864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.211.0", + "prefixLen":25, + "network":"193.19.211.0\/25", + "version":13863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.211.128", + "prefixLen":25, + "network":"193.19.211.128\/25", + "version":13862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.224.0", + "prefixLen":25, + "network":"193.19.224.0\/25", + "version":13861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.224.128", + "prefixLen":25, + "network":"193.19.224.128\/25", + "version":13860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.225.0", + "prefixLen":25, + "network":"193.19.225.0\/25", + "version":13859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.225.128", + "prefixLen":25, + "network":"193.19.225.128\/25", + "version":13858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.226.0", + "prefixLen":25, + "network":"193.19.226.0\/25", + "version":13857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.226.128", + "prefixLen":25, + "network":"193.19.226.128\/25", + "version":13856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.227.0", + "prefixLen":25, + "network":"193.19.227.0\/25", + "version":13855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.227.128", + "prefixLen":25, + "network":"193.19.227.128\/25", + "version":13854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.240.0", + "prefixLen":25, + "network":"193.19.240.0\/25", + "version":13853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.240.128", + "prefixLen":25, + "network":"193.19.240.128\/25", + "version":13852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.241.0", + "prefixLen":25, + "network":"193.19.241.0\/25", + "version":13851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.241.128", + "prefixLen":25, + "network":"193.19.241.128\/25", + "version":13850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.242.0", + "prefixLen":25, + "network":"193.19.242.0\/25", + "version":13849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.242.128", + "prefixLen":25, + "network":"193.19.242.128\/25", + "version":13848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.243.0", + "prefixLen":25, + "network":"193.19.243.0\/25", + "version":13847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.19.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.19.243.128", + "prefixLen":25, + "network":"193.19.243.128\/25", + "version":13846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64707 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.0.0", + "prefixLen":25, + "network":"193.20.0.0\/25", + "version":13973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.0.128", + "prefixLen":25, + "network":"193.20.0.128\/25", + "version":14100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.1.0", + "prefixLen":25, + "network":"193.20.1.0\/25", + "version":14099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.1.128", + "prefixLen":25, + "network":"193.20.1.128\/25", + "version":14098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.2.0", + "prefixLen":25, + "network":"193.20.2.0\/25", + "version":14097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.2.128", + "prefixLen":25, + "network":"193.20.2.128\/25", + "version":14096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.3.0", + "prefixLen":25, + "network":"193.20.3.0\/25", + "version":14095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.3.128", + "prefixLen":25, + "network":"193.20.3.128\/25", + "version":14094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.16.0", + "prefixLen":25, + "network":"193.20.16.0\/25", + "version":14093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.16.128", + "prefixLen":25, + "network":"193.20.16.128\/25", + "version":14092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.17.0", + "prefixLen":25, + "network":"193.20.17.0\/25", + "version":14091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.17.128", + "prefixLen":25, + "network":"193.20.17.128\/25", + "version":14090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.18.0", + "prefixLen":25, + "network":"193.20.18.0\/25", + "version":14089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.18.128", + "prefixLen":25, + "network":"193.20.18.128\/25", + "version":14088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.19.0", + "prefixLen":25, + "network":"193.20.19.0\/25", + "version":14087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.19.128", + "prefixLen":25, + "network":"193.20.19.128\/25", + "version":14086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.32.0", + "prefixLen":25, + "network":"193.20.32.0\/25", + "version":14085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.32.128", + "prefixLen":25, + "network":"193.20.32.128\/25", + "version":14084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.33.0", + "prefixLen":25, + "network":"193.20.33.0\/25", + "version":14083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.33.128", + "prefixLen":25, + "network":"193.20.33.128\/25", + "version":14082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.34.0", + "prefixLen":25, + "network":"193.20.34.0\/25", + "version":14081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.34.128", + "prefixLen":25, + "network":"193.20.34.128\/25", + "version":14080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.35.0", + "prefixLen":25, + "network":"193.20.35.0\/25", + "version":14079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.35.128", + "prefixLen":25, + "network":"193.20.35.128\/25", + "version":14078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.48.0", + "prefixLen":25, + "network":"193.20.48.0\/25", + "version":14077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.48.128", + "prefixLen":25, + "network":"193.20.48.128\/25", + "version":14076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.49.0", + "prefixLen":25, + "network":"193.20.49.0\/25", + "version":14075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.49.128", + "prefixLen":25, + "network":"193.20.49.128\/25", + "version":14074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.50.0", + "prefixLen":25, + "network":"193.20.50.0\/25", + "version":14073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.50.128", + "prefixLen":25, + "network":"193.20.50.128\/25", + "version":14072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.51.0", + "prefixLen":25, + "network":"193.20.51.0\/25", + "version":14071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.51.128", + "prefixLen":25, + "network":"193.20.51.128\/25", + "version":14070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.64.0", + "prefixLen":25, + "network":"193.20.64.0\/25", + "version":14069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.64.128", + "prefixLen":25, + "network":"193.20.64.128\/25", + "version":14068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.65.0", + "prefixLen":25, + "network":"193.20.65.0\/25", + "version":14067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.65.128", + "prefixLen":25, + "network":"193.20.65.128\/25", + "version":14066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.66.0", + "prefixLen":25, + "network":"193.20.66.0\/25", + "version":14065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.66.128", + "prefixLen":25, + "network":"193.20.66.128\/25", + "version":14064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.67.0", + "prefixLen":25, + "network":"193.20.67.0\/25", + "version":14063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.67.128", + "prefixLen":25, + "network":"193.20.67.128\/25", + "version":14062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.80.0", + "prefixLen":25, + "network":"193.20.80.0\/25", + "version":14061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.80.128", + "prefixLen":25, + "network":"193.20.80.128\/25", + "version":14060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.81.0", + "prefixLen":25, + "network":"193.20.81.0\/25", + "version":14059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.81.128", + "prefixLen":25, + "network":"193.20.81.128\/25", + "version":14058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.82.0", + "prefixLen":25, + "network":"193.20.82.0\/25", + "version":14057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.82.128", + "prefixLen":25, + "network":"193.20.82.128\/25", + "version":14056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.83.0", + "prefixLen":25, + "network":"193.20.83.0\/25", + "version":14055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.83.128", + "prefixLen":25, + "network":"193.20.83.128\/25", + "version":14054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.96.0", + "prefixLen":25, + "network":"193.20.96.0\/25", + "version":14053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.96.128", + "prefixLen":25, + "network":"193.20.96.128\/25", + "version":14052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.97.0", + "prefixLen":25, + "network":"193.20.97.0\/25", + "version":14051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.97.128", + "prefixLen":25, + "network":"193.20.97.128\/25", + "version":14050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.98.0", + "prefixLen":25, + "network":"193.20.98.0\/25", + "version":14049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.98.128", + "prefixLen":25, + "network":"193.20.98.128\/25", + "version":14048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.99.0", + "prefixLen":25, + "network":"193.20.99.0\/25", + "version":14047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.99.128", + "prefixLen":25, + "network":"193.20.99.128\/25", + "version":14046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.112.0", + "prefixLen":25, + "network":"193.20.112.0\/25", + "version":14045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.112.128", + "prefixLen":25, + "network":"193.20.112.128\/25", + "version":14044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.113.0", + "prefixLen":25, + "network":"193.20.113.0\/25", + "version":14043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.113.128", + "prefixLen":25, + "network":"193.20.113.128\/25", + "version":14042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.114.0", + "prefixLen":25, + "network":"193.20.114.0\/25", + "version":14041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.114.128", + "prefixLen":25, + "network":"193.20.114.128\/25", + "version":14040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.115.0", + "prefixLen":25, + "network":"193.20.115.0\/25", + "version":14039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.115.128", + "prefixLen":25, + "network":"193.20.115.128\/25", + "version":14038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.128.0", + "prefixLen":25, + "network":"193.20.128.0\/25", + "version":14037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.128.128", + "prefixLen":25, + "network":"193.20.128.128\/25", + "version":14036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.129.0", + "prefixLen":25, + "network":"193.20.129.0\/25", + "version":14035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.129.128", + "prefixLen":25, + "network":"193.20.129.128\/25", + "version":14034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.130.0", + "prefixLen":25, + "network":"193.20.130.0\/25", + "version":14033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.130.128", + "prefixLen":25, + "network":"193.20.130.128\/25", + "version":14032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.131.0", + "prefixLen":25, + "network":"193.20.131.0\/25", + "version":14031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.131.128", + "prefixLen":25, + "network":"193.20.131.128\/25", + "version":14030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.144.0", + "prefixLen":25, + "network":"193.20.144.0\/25", + "version":14029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.144.128", + "prefixLen":25, + "network":"193.20.144.128\/25", + "version":14028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.145.0", + "prefixLen":25, + "network":"193.20.145.0\/25", + "version":14027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.145.128", + "prefixLen":25, + "network":"193.20.145.128\/25", + "version":14026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.146.0", + "prefixLen":25, + "network":"193.20.146.0\/25", + "version":14025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.146.128", + "prefixLen":25, + "network":"193.20.146.128\/25", + "version":14024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.147.0", + "prefixLen":25, + "network":"193.20.147.0\/25", + "version":14023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.147.128", + "prefixLen":25, + "network":"193.20.147.128\/25", + "version":14022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.160.0", + "prefixLen":25, + "network":"193.20.160.0\/25", + "version":14021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.160.128", + "prefixLen":25, + "network":"193.20.160.128\/25", + "version":14020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.161.0", + "prefixLen":25, + "network":"193.20.161.0\/25", + "version":14019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.161.128", + "prefixLen":25, + "network":"193.20.161.128\/25", + "version":14018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.162.0", + "prefixLen":25, + "network":"193.20.162.0\/25", + "version":14017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.162.128", + "prefixLen":25, + "network":"193.20.162.128\/25", + "version":14016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.163.0", + "prefixLen":25, + "network":"193.20.163.0\/25", + "version":14015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.163.128", + "prefixLen":25, + "network":"193.20.163.128\/25", + "version":14014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.176.0", + "prefixLen":25, + "network":"193.20.176.0\/25", + "version":14013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.176.128", + "prefixLen":25, + "network":"193.20.176.128\/25", + "version":14012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.177.0", + "prefixLen":25, + "network":"193.20.177.0\/25", + "version":14011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.177.128", + "prefixLen":25, + "network":"193.20.177.128\/25", + "version":14010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.178.0", + "prefixLen":25, + "network":"193.20.178.0\/25", + "version":14009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.178.128", + "prefixLen":25, + "network":"193.20.178.128\/25", + "version":14008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.179.0", + "prefixLen":25, + "network":"193.20.179.0\/25", + "version":14007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.179.128", + "prefixLen":25, + "network":"193.20.179.128\/25", + "version":14006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.192.0", + "prefixLen":25, + "network":"193.20.192.0\/25", + "version":14005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.192.128", + "prefixLen":25, + "network":"193.20.192.128\/25", + "version":14004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.193.0", + "prefixLen":25, + "network":"193.20.193.0\/25", + "version":14003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.193.128", + "prefixLen":25, + "network":"193.20.193.128\/25", + "version":14002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.194.0", + "prefixLen":25, + "network":"193.20.194.0\/25", + "version":14001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.194.128", + "prefixLen":25, + "network":"193.20.194.128\/25", + "version":14000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.195.0", + "prefixLen":25, + "network":"193.20.195.0\/25", + "version":13999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.195.128", + "prefixLen":25, + "network":"193.20.195.128\/25", + "version":13998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.208.0", + "prefixLen":25, + "network":"193.20.208.0\/25", + "version":13997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.208.128", + "prefixLen":25, + "network":"193.20.208.128\/25", + "version":13996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.209.0", + "prefixLen":25, + "network":"193.20.209.0\/25", + "version":13995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.209.128", + "prefixLen":25, + "network":"193.20.209.128\/25", + "version":13994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.210.0", + "prefixLen":25, + "network":"193.20.210.0\/25", + "version":13993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.210.128", + "prefixLen":25, + "network":"193.20.210.128\/25", + "version":13992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.211.0", + "prefixLen":25, + "network":"193.20.211.0\/25", + "version":13991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.211.128", + "prefixLen":25, + "network":"193.20.211.128\/25", + "version":13990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.224.0", + "prefixLen":25, + "network":"193.20.224.0\/25", + "version":13989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.224.128", + "prefixLen":25, + "network":"193.20.224.128\/25", + "version":13988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.225.0", + "prefixLen":25, + "network":"193.20.225.0\/25", + "version":13987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.225.128", + "prefixLen":25, + "network":"193.20.225.128\/25", + "version":13986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.226.0", + "prefixLen":25, + "network":"193.20.226.0\/25", + "version":13985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.226.128", + "prefixLen":25, + "network":"193.20.226.128\/25", + "version":13984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.227.0", + "prefixLen":25, + "network":"193.20.227.0\/25", + "version":13983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.227.128", + "prefixLen":25, + "network":"193.20.227.128\/25", + "version":13982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.240.0", + "prefixLen":25, + "network":"193.20.240.0\/25", + "version":13981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.240.128", + "prefixLen":25, + "network":"193.20.240.128\/25", + "version":13980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.241.0", + "prefixLen":25, + "network":"193.20.241.0\/25", + "version":13979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.241.128", + "prefixLen":25, + "network":"193.20.241.128\/25", + "version":13978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.242.0", + "prefixLen":25, + "network":"193.20.242.0\/25", + "version":13977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.242.128", + "prefixLen":25, + "network":"193.20.242.128\/25", + "version":13976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.243.0", + "prefixLen":25, + "network":"193.20.243.0\/25", + "version":13975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.20.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.20.243.128", + "prefixLen":25, + "network":"193.20.243.128\/25", + "version":13974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64708 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.0.0", + "prefixLen":25, + "network":"193.21.0.0\/25", + "version":14101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.0.128", + "prefixLen":25, + "network":"193.21.0.128\/25", + "version":14228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.1.0", + "prefixLen":25, + "network":"193.21.1.0\/25", + "version":14227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.1.128", + "prefixLen":25, + "network":"193.21.1.128\/25", + "version":14226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.2.0", + "prefixLen":25, + "network":"193.21.2.0\/25", + "version":14225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.2.128", + "prefixLen":25, + "network":"193.21.2.128\/25", + "version":14224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.3.0", + "prefixLen":25, + "network":"193.21.3.0\/25", + "version":14223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.3.128", + "prefixLen":25, + "network":"193.21.3.128\/25", + "version":14222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.16.0", + "prefixLen":25, + "network":"193.21.16.0\/25", + "version":14221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.16.128", + "prefixLen":25, + "network":"193.21.16.128\/25", + "version":14220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.17.0", + "prefixLen":25, + "network":"193.21.17.0\/25", + "version":14219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.17.128", + "prefixLen":25, + "network":"193.21.17.128\/25", + "version":14218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.18.0", + "prefixLen":25, + "network":"193.21.18.0\/25", + "version":14217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.18.128", + "prefixLen":25, + "network":"193.21.18.128\/25", + "version":14216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.19.0", + "prefixLen":25, + "network":"193.21.19.0\/25", + "version":14215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.19.128", + "prefixLen":25, + "network":"193.21.19.128\/25", + "version":14214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.32.0", + "prefixLen":25, + "network":"193.21.32.0\/25", + "version":14213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.32.128", + "prefixLen":25, + "network":"193.21.32.128\/25", + "version":14212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.33.0", + "prefixLen":25, + "network":"193.21.33.0\/25", + "version":14211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.33.128", + "prefixLen":25, + "network":"193.21.33.128\/25", + "version":14210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.34.0", + "prefixLen":25, + "network":"193.21.34.0\/25", + "version":14209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.34.128", + "prefixLen":25, + "network":"193.21.34.128\/25", + "version":14208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.35.0", + "prefixLen":25, + "network":"193.21.35.0\/25", + "version":14207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.35.128", + "prefixLen":25, + "network":"193.21.35.128\/25", + "version":14206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.48.0", + "prefixLen":25, + "network":"193.21.48.0\/25", + "version":14205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.48.128", + "prefixLen":25, + "network":"193.21.48.128\/25", + "version":14204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.49.0", + "prefixLen":25, + "network":"193.21.49.0\/25", + "version":14203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.49.128", + "prefixLen":25, + "network":"193.21.49.128\/25", + "version":14202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.50.0", + "prefixLen":25, + "network":"193.21.50.0\/25", + "version":14201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.50.128", + "prefixLen":25, + "network":"193.21.50.128\/25", + "version":14200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.51.0", + "prefixLen":25, + "network":"193.21.51.0\/25", + "version":14199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.51.128", + "prefixLen":25, + "network":"193.21.51.128\/25", + "version":14198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.64.0", + "prefixLen":25, + "network":"193.21.64.0\/25", + "version":14197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.64.128", + "prefixLen":25, + "network":"193.21.64.128\/25", + "version":14196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.65.0", + "prefixLen":25, + "network":"193.21.65.0\/25", + "version":14195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.65.128", + "prefixLen":25, + "network":"193.21.65.128\/25", + "version":14194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.66.0", + "prefixLen":25, + "network":"193.21.66.0\/25", + "version":14193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.66.128", + "prefixLen":25, + "network":"193.21.66.128\/25", + "version":14192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.67.0", + "prefixLen":25, + "network":"193.21.67.0\/25", + "version":14191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.67.128", + "prefixLen":25, + "network":"193.21.67.128\/25", + "version":14190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.80.0", + "prefixLen":25, + "network":"193.21.80.0\/25", + "version":14189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.80.128", + "prefixLen":25, + "network":"193.21.80.128\/25", + "version":14188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.81.0", + "prefixLen":25, + "network":"193.21.81.0\/25", + "version":14187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.81.128", + "prefixLen":25, + "network":"193.21.81.128\/25", + "version":14186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.82.0", + "prefixLen":25, + "network":"193.21.82.0\/25", + "version":14185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.82.128", + "prefixLen":25, + "network":"193.21.82.128\/25", + "version":14184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.83.0", + "prefixLen":25, + "network":"193.21.83.0\/25", + "version":14183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.83.128", + "prefixLen":25, + "network":"193.21.83.128\/25", + "version":14182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.96.0", + "prefixLen":25, + "network":"193.21.96.0\/25", + "version":14181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.96.128", + "prefixLen":25, + "network":"193.21.96.128\/25", + "version":14180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.97.0", + "prefixLen":25, + "network":"193.21.97.0\/25", + "version":14179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.97.128", + "prefixLen":25, + "network":"193.21.97.128\/25", + "version":14178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.98.0", + "prefixLen":25, + "network":"193.21.98.0\/25", + "version":14177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.98.128", + "prefixLen":25, + "network":"193.21.98.128\/25", + "version":14176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.99.0", + "prefixLen":25, + "network":"193.21.99.0\/25", + "version":14175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.99.128", + "prefixLen":25, + "network":"193.21.99.128\/25", + "version":14174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.112.0", + "prefixLen":25, + "network":"193.21.112.0\/25", + "version":14173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.112.128", + "prefixLen":25, + "network":"193.21.112.128\/25", + "version":14172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.113.0", + "prefixLen":25, + "network":"193.21.113.0\/25", + "version":14171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.113.128", + "prefixLen":25, + "network":"193.21.113.128\/25", + "version":14170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.114.0", + "prefixLen":25, + "network":"193.21.114.0\/25", + "version":14169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.114.128", + "prefixLen":25, + "network":"193.21.114.128\/25", + "version":14168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.115.0", + "prefixLen":25, + "network":"193.21.115.0\/25", + "version":14167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.115.128", + "prefixLen":25, + "network":"193.21.115.128\/25", + "version":14166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.128.0", + "prefixLen":25, + "network":"193.21.128.0\/25", + "version":14165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.128.128", + "prefixLen":25, + "network":"193.21.128.128\/25", + "version":14164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.129.0", + "prefixLen":25, + "network":"193.21.129.0\/25", + "version":14163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.129.128", + "prefixLen":25, + "network":"193.21.129.128\/25", + "version":14162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.130.0", + "prefixLen":25, + "network":"193.21.130.0\/25", + "version":14161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.130.128", + "prefixLen":25, + "network":"193.21.130.128\/25", + "version":14160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.131.0", + "prefixLen":25, + "network":"193.21.131.0\/25", + "version":14159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.131.128", + "prefixLen":25, + "network":"193.21.131.128\/25", + "version":14158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.144.0", + "prefixLen":25, + "network":"193.21.144.0\/25", + "version":14157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.144.128", + "prefixLen":25, + "network":"193.21.144.128\/25", + "version":14156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.145.0", + "prefixLen":25, + "network":"193.21.145.0\/25", + "version":14155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.145.128", + "prefixLen":25, + "network":"193.21.145.128\/25", + "version":14154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.146.0", + "prefixLen":25, + "network":"193.21.146.0\/25", + "version":14153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.146.128", + "prefixLen":25, + "network":"193.21.146.128\/25", + "version":14152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.147.0", + "prefixLen":25, + "network":"193.21.147.0\/25", + "version":14151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.147.128", + "prefixLen":25, + "network":"193.21.147.128\/25", + "version":14150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.160.0", + "prefixLen":25, + "network":"193.21.160.0\/25", + "version":14149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.160.128", + "prefixLen":25, + "network":"193.21.160.128\/25", + "version":14148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.161.0", + "prefixLen":25, + "network":"193.21.161.0\/25", + "version":14147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.161.128", + "prefixLen":25, + "network":"193.21.161.128\/25", + "version":14146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.162.0", + "prefixLen":25, + "network":"193.21.162.0\/25", + "version":14145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.162.128", + "prefixLen":25, + "network":"193.21.162.128\/25", + "version":14144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.163.0", + "prefixLen":25, + "network":"193.21.163.0\/25", + "version":14143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.163.128", + "prefixLen":25, + "network":"193.21.163.128\/25", + "version":14142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.176.0", + "prefixLen":25, + "network":"193.21.176.0\/25", + "version":14141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.176.128", + "prefixLen":25, + "network":"193.21.176.128\/25", + "version":14140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.177.0", + "prefixLen":25, + "network":"193.21.177.0\/25", + "version":14139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.177.128", + "prefixLen":25, + "network":"193.21.177.128\/25", + "version":14138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.178.0", + "prefixLen":25, + "network":"193.21.178.0\/25", + "version":14137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.178.128", + "prefixLen":25, + "network":"193.21.178.128\/25", + "version":14136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.179.0", + "prefixLen":25, + "network":"193.21.179.0\/25", + "version":14135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.179.128", + "prefixLen":25, + "network":"193.21.179.128\/25", + "version":14134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.192.0", + "prefixLen":25, + "network":"193.21.192.0\/25", + "version":14133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.192.128", + "prefixLen":25, + "network":"193.21.192.128\/25", + "version":14132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.193.0", + "prefixLen":25, + "network":"193.21.193.0\/25", + "version":14131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.193.128", + "prefixLen":25, + "network":"193.21.193.128\/25", + "version":14130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.194.0", + "prefixLen":25, + "network":"193.21.194.0\/25", + "version":14129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.194.128", + "prefixLen":25, + "network":"193.21.194.128\/25", + "version":14128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.195.0", + "prefixLen":25, + "network":"193.21.195.0\/25", + "version":14127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.195.128", + "prefixLen":25, + "network":"193.21.195.128\/25", + "version":14126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.208.0", + "prefixLen":25, + "network":"193.21.208.0\/25", + "version":14125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.208.128", + "prefixLen":25, + "network":"193.21.208.128\/25", + "version":14124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.209.0", + "prefixLen":25, + "network":"193.21.209.0\/25", + "version":14123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.209.128", + "prefixLen":25, + "network":"193.21.209.128\/25", + "version":14122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.210.0", + "prefixLen":25, + "network":"193.21.210.0\/25", + "version":14121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.210.128", + "prefixLen":25, + "network":"193.21.210.128\/25", + "version":14120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.211.0", + "prefixLen":25, + "network":"193.21.211.0\/25", + "version":14119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.211.128", + "prefixLen":25, + "network":"193.21.211.128\/25", + "version":14118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.224.0", + "prefixLen":25, + "network":"193.21.224.0\/25", + "version":14117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.224.128", + "prefixLen":25, + "network":"193.21.224.128\/25", + "version":14116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.225.0", + "prefixLen":25, + "network":"193.21.225.0\/25", + "version":14115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.225.128", + "prefixLen":25, + "network":"193.21.225.128\/25", + "version":14114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.226.0", + "prefixLen":25, + "network":"193.21.226.0\/25", + "version":14113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.226.128", + "prefixLen":25, + "network":"193.21.226.128\/25", + "version":14112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.227.0", + "prefixLen":25, + "network":"193.21.227.0\/25", + "version":14111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.227.128", + "prefixLen":25, + "network":"193.21.227.128\/25", + "version":14110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.240.0", + "prefixLen":25, + "network":"193.21.240.0\/25", + "version":14109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.240.128", + "prefixLen":25, + "network":"193.21.240.128\/25", + "version":14108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.241.0", + "prefixLen":25, + "network":"193.21.241.0\/25", + "version":14107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.241.128", + "prefixLen":25, + "network":"193.21.241.128\/25", + "version":14106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.242.0", + "prefixLen":25, + "network":"193.21.242.0\/25", + "version":14105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.242.128", + "prefixLen":25, + "network":"193.21.242.128\/25", + "version":14104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.243.0", + "prefixLen":25, + "network":"193.21.243.0\/25", + "version":14103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.21.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.21.243.128", + "prefixLen":25, + "network":"193.21.243.128\/25", + "version":14102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64709 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.0.0", + "prefixLen":25, + "network":"193.22.0.0\/25", + "version":14229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.0.128", + "prefixLen":25, + "network":"193.22.0.128\/25", + "version":14356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.1.0", + "prefixLen":25, + "network":"193.22.1.0\/25", + "version":14355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.1.128", + "prefixLen":25, + "network":"193.22.1.128\/25", + "version":14354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.2.0", + "prefixLen":25, + "network":"193.22.2.0\/25", + "version":14353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.2.128", + "prefixLen":25, + "network":"193.22.2.128\/25", + "version":14352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.3.0", + "prefixLen":25, + "network":"193.22.3.0\/25", + "version":14351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.3.128", + "prefixLen":25, + "network":"193.22.3.128\/25", + "version":14350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.16.0", + "prefixLen":25, + "network":"193.22.16.0\/25", + "version":14349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.16.128", + "prefixLen":25, + "network":"193.22.16.128\/25", + "version":14348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.17.0", + "prefixLen":25, + "network":"193.22.17.0\/25", + "version":14347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.17.128", + "prefixLen":25, + "network":"193.22.17.128\/25", + "version":14346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.18.0", + "prefixLen":25, + "network":"193.22.18.0\/25", + "version":14345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.18.128", + "prefixLen":25, + "network":"193.22.18.128\/25", + "version":14344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.19.0", + "prefixLen":25, + "network":"193.22.19.0\/25", + "version":14343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.19.128", + "prefixLen":25, + "network":"193.22.19.128\/25", + "version":14342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.32.0", + "prefixLen":25, + "network":"193.22.32.0\/25", + "version":14341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.32.128", + "prefixLen":25, + "network":"193.22.32.128\/25", + "version":14340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.33.0", + "prefixLen":25, + "network":"193.22.33.0\/25", + "version":14339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.33.128", + "prefixLen":25, + "network":"193.22.33.128\/25", + "version":14338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.34.0", + "prefixLen":25, + "network":"193.22.34.0\/25", + "version":14337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.34.128", + "prefixLen":25, + "network":"193.22.34.128\/25", + "version":14336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.35.0", + "prefixLen":25, + "network":"193.22.35.0\/25", + "version":14335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.35.128", + "prefixLen":25, + "network":"193.22.35.128\/25", + "version":14334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.48.0", + "prefixLen":25, + "network":"193.22.48.0\/25", + "version":14333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.48.128", + "prefixLen":25, + "network":"193.22.48.128\/25", + "version":14332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.49.0", + "prefixLen":25, + "network":"193.22.49.0\/25", + "version":14331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.49.128", + "prefixLen":25, + "network":"193.22.49.128\/25", + "version":14330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.50.0", + "prefixLen":25, + "network":"193.22.50.0\/25", + "version":14329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.50.128", + "prefixLen":25, + "network":"193.22.50.128\/25", + "version":14328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.51.0", + "prefixLen":25, + "network":"193.22.51.0\/25", + "version":14327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.51.128", + "prefixLen":25, + "network":"193.22.51.128\/25", + "version":14326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.64.0", + "prefixLen":25, + "network":"193.22.64.0\/25", + "version":14325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.64.128", + "prefixLen":25, + "network":"193.22.64.128\/25", + "version":14324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.65.0", + "prefixLen":25, + "network":"193.22.65.0\/25", + "version":14323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.65.128", + "prefixLen":25, + "network":"193.22.65.128\/25", + "version":14322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.66.0", + "prefixLen":25, + "network":"193.22.66.0\/25", + "version":14321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.66.128", + "prefixLen":25, + "network":"193.22.66.128\/25", + "version":14320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.67.0", + "prefixLen":25, + "network":"193.22.67.0\/25", + "version":14319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.67.128", + "prefixLen":25, + "network":"193.22.67.128\/25", + "version":14318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.80.0", + "prefixLen":25, + "network":"193.22.80.0\/25", + "version":14317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.80.128", + "prefixLen":25, + "network":"193.22.80.128\/25", + "version":14316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.81.0", + "prefixLen":25, + "network":"193.22.81.0\/25", + "version":14315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.81.128", + "prefixLen":25, + "network":"193.22.81.128\/25", + "version":14314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.82.0", + "prefixLen":25, + "network":"193.22.82.0\/25", + "version":14313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.82.128", + "prefixLen":25, + "network":"193.22.82.128\/25", + "version":14312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.83.0", + "prefixLen":25, + "network":"193.22.83.0\/25", + "version":14311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.83.128", + "prefixLen":25, + "network":"193.22.83.128\/25", + "version":14310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.96.0", + "prefixLen":25, + "network":"193.22.96.0\/25", + "version":14309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.96.128", + "prefixLen":25, + "network":"193.22.96.128\/25", + "version":14308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.97.0", + "prefixLen":25, + "network":"193.22.97.0\/25", + "version":14307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.97.128", + "prefixLen":25, + "network":"193.22.97.128\/25", + "version":14306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.98.0", + "prefixLen":25, + "network":"193.22.98.0\/25", + "version":14305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.98.128", + "prefixLen":25, + "network":"193.22.98.128\/25", + "version":14304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.99.0", + "prefixLen":25, + "network":"193.22.99.0\/25", + "version":14303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.99.128", + "prefixLen":25, + "network":"193.22.99.128\/25", + "version":14302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.112.0", + "prefixLen":25, + "network":"193.22.112.0\/25", + "version":14301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.112.128", + "prefixLen":25, + "network":"193.22.112.128\/25", + "version":14300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.113.0", + "prefixLen":25, + "network":"193.22.113.0\/25", + "version":14299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.113.128", + "prefixLen":25, + "network":"193.22.113.128\/25", + "version":14298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.114.0", + "prefixLen":25, + "network":"193.22.114.0\/25", + "version":14297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.114.128", + "prefixLen":25, + "network":"193.22.114.128\/25", + "version":14296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.115.0", + "prefixLen":25, + "network":"193.22.115.0\/25", + "version":14295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.115.128", + "prefixLen":25, + "network":"193.22.115.128\/25", + "version":14294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.128.0", + "prefixLen":25, + "network":"193.22.128.0\/25", + "version":14293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.128.128", + "prefixLen":25, + "network":"193.22.128.128\/25", + "version":14292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.129.0", + "prefixLen":25, + "network":"193.22.129.0\/25", + "version":14291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.129.128", + "prefixLen":25, + "network":"193.22.129.128\/25", + "version":14290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.130.0", + "prefixLen":25, + "network":"193.22.130.0\/25", + "version":14289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.130.128", + "prefixLen":25, + "network":"193.22.130.128\/25", + "version":14288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.131.0", + "prefixLen":25, + "network":"193.22.131.0\/25", + "version":14287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.131.128", + "prefixLen":25, + "network":"193.22.131.128\/25", + "version":14286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.144.0", + "prefixLen":25, + "network":"193.22.144.0\/25", + "version":14285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.144.128", + "prefixLen":25, + "network":"193.22.144.128\/25", + "version":14284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.145.0", + "prefixLen":25, + "network":"193.22.145.0\/25", + "version":14283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.145.128", + "prefixLen":25, + "network":"193.22.145.128\/25", + "version":14282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.146.0", + "prefixLen":25, + "network":"193.22.146.0\/25", + "version":14281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.146.128", + "prefixLen":25, + "network":"193.22.146.128\/25", + "version":14280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.147.0", + "prefixLen":25, + "network":"193.22.147.0\/25", + "version":14279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.147.128", + "prefixLen":25, + "network":"193.22.147.128\/25", + "version":14278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.160.0", + "prefixLen":25, + "network":"193.22.160.0\/25", + "version":14277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.160.128", + "prefixLen":25, + "network":"193.22.160.128\/25", + "version":14276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.161.0", + "prefixLen":25, + "network":"193.22.161.0\/25", + "version":14275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.161.128", + "prefixLen":25, + "network":"193.22.161.128\/25", + "version":14274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.162.0", + "prefixLen":25, + "network":"193.22.162.0\/25", + "version":14273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.162.128", + "prefixLen":25, + "network":"193.22.162.128\/25", + "version":14272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.163.0", + "prefixLen":25, + "network":"193.22.163.0\/25", + "version":14271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.163.128", + "prefixLen":25, + "network":"193.22.163.128\/25", + "version":14270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.176.0", + "prefixLen":25, + "network":"193.22.176.0\/25", + "version":14269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.176.128", + "prefixLen":25, + "network":"193.22.176.128\/25", + "version":14268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.177.0", + "prefixLen":25, + "network":"193.22.177.0\/25", + "version":14267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.177.128", + "prefixLen":25, + "network":"193.22.177.128\/25", + "version":14266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.178.0", + "prefixLen":25, + "network":"193.22.178.0\/25", + "version":14265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.178.128", + "prefixLen":25, + "network":"193.22.178.128\/25", + "version":14264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.179.0", + "prefixLen":25, + "network":"193.22.179.0\/25", + "version":14263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.179.128", + "prefixLen":25, + "network":"193.22.179.128\/25", + "version":14262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.192.0", + "prefixLen":25, + "network":"193.22.192.0\/25", + "version":14261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.192.128", + "prefixLen":25, + "network":"193.22.192.128\/25", + "version":14260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.193.0", + "prefixLen":25, + "network":"193.22.193.0\/25", + "version":14259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.193.128", + "prefixLen":25, + "network":"193.22.193.128\/25", + "version":14258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.194.0", + "prefixLen":25, + "network":"193.22.194.0\/25", + "version":14257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.194.128", + "prefixLen":25, + "network":"193.22.194.128\/25", + "version":14256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.195.0", + "prefixLen":25, + "network":"193.22.195.0\/25", + "version":14255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.195.128", + "prefixLen":25, + "network":"193.22.195.128\/25", + "version":14254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.208.0", + "prefixLen":25, + "network":"193.22.208.0\/25", + "version":14253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.208.128", + "prefixLen":25, + "network":"193.22.208.128\/25", + "version":14252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.209.0", + "prefixLen":25, + "network":"193.22.209.0\/25", + "version":14251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.209.128", + "prefixLen":25, + "network":"193.22.209.128\/25", + "version":14250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.210.0", + "prefixLen":25, + "network":"193.22.210.0\/25", + "version":14249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.210.128", + "prefixLen":25, + "network":"193.22.210.128\/25", + "version":14248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.211.0", + "prefixLen":25, + "network":"193.22.211.0\/25", + "version":14247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.211.128", + "prefixLen":25, + "network":"193.22.211.128\/25", + "version":14246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.224.0", + "prefixLen":25, + "network":"193.22.224.0\/25", + "version":14245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.224.128", + "prefixLen":25, + "network":"193.22.224.128\/25", + "version":14244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.225.0", + "prefixLen":25, + "network":"193.22.225.0\/25", + "version":14243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.225.128", + "prefixLen":25, + "network":"193.22.225.128\/25", + "version":14242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.226.0", + "prefixLen":25, + "network":"193.22.226.0\/25", + "version":14241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.226.128", + "prefixLen":25, + "network":"193.22.226.128\/25", + "version":14240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.227.0", + "prefixLen":25, + "network":"193.22.227.0\/25", + "version":14239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.227.128", + "prefixLen":25, + "network":"193.22.227.128\/25", + "version":14238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.240.0", + "prefixLen":25, + "network":"193.22.240.0\/25", + "version":14237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.240.128", + "prefixLen":25, + "network":"193.22.240.128\/25", + "version":14236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.241.0", + "prefixLen":25, + "network":"193.22.241.0\/25", + "version":14235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.241.128", + "prefixLen":25, + "network":"193.22.241.128\/25", + "version":14234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.242.0", + "prefixLen":25, + "network":"193.22.242.0\/25", + "version":14233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.242.128", + "prefixLen":25, + "network":"193.22.242.128\/25", + "version":14232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.243.0", + "prefixLen":25, + "network":"193.22.243.0\/25", + "version":14231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.22.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.22.243.128", + "prefixLen":25, + "network":"193.22.243.128\/25", + "version":14230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64710 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.0.0", + "prefixLen":25, + "network":"193.23.0.0\/25", + "version":14357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.0.128", + "prefixLen":25, + "network":"193.23.0.128\/25", + "version":14484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.1.0", + "prefixLen":25, + "network":"193.23.1.0\/25", + "version":14483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.1.128", + "prefixLen":25, + "network":"193.23.1.128\/25", + "version":14482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.2.0", + "prefixLen":25, + "network":"193.23.2.0\/25", + "version":14481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.2.128", + "prefixLen":25, + "network":"193.23.2.128\/25", + "version":14480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.3.0", + "prefixLen":25, + "network":"193.23.3.0\/25", + "version":14479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.3.128", + "prefixLen":25, + "network":"193.23.3.128\/25", + "version":14478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.16.0", + "prefixLen":25, + "network":"193.23.16.0\/25", + "version":14477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.16.128", + "prefixLen":25, + "network":"193.23.16.128\/25", + "version":14476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.17.0", + "prefixLen":25, + "network":"193.23.17.0\/25", + "version":14475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.17.128", + "prefixLen":25, + "network":"193.23.17.128\/25", + "version":14474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.18.0", + "prefixLen":25, + "network":"193.23.18.0\/25", + "version":14473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.18.128", + "prefixLen":25, + "network":"193.23.18.128\/25", + "version":14472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.19.0", + "prefixLen":25, + "network":"193.23.19.0\/25", + "version":14471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.19.128", + "prefixLen":25, + "network":"193.23.19.128\/25", + "version":14470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.32.0", + "prefixLen":25, + "network":"193.23.32.0\/25", + "version":14469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.32.128", + "prefixLen":25, + "network":"193.23.32.128\/25", + "version":14468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.33.0", + "prefixLen":25, + "network":"193.23.33.0\/25", + "version":14467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.33.128", + "prefixLen":25, + "network":"193.23.33.128\/25", + "version":14466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.34.0", + "prefixLen":25, + "network":"193.23.34.0\/25", + "version":14465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.34.128", + "prefixLen":25, + "network":"193.23.34.128\/25", + "version":14464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.35.0", + "prefixLen":25, + "network":"193.23.35.0\/25", + "version":14463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.35.128", + "prefixLen":25, + "network":"193.23.35.128\/25", + "version":14462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.48.0", + "prefixLen":25, + "network":"193.23.48.0\/25", + "version":14461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.48.128", + "prefixLen":25, + "network":"193.23.48.128\/25", + "version":14460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.49.0", + "prefixLen":25, + "network":"193.23.49.0\/25", + "version":14459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.49.128", + "prefixLen":25, + "network":"193.23.49.128\/25", + "version":14458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.50.0", + "prefixLen":25, + "network":"193.23.50.0\/25", + "version":14457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.50.128", + "prefixLen":25, + "network":"193.23.50.128\/25", + "version":14456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.51.0", + "prefixLen":25, + "network":"193.23.51.0\/25", + "version":14455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.51.128", + "prefixLen":25, + "network":"193.23.51.128\/25", + "version":14454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.64.0", + "prefixLen":25, + "network":"193.23.64.0\/25", + "version":14453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.64.128", + "prefixLen":25, + "network":"193.23.64.128\/25", + "version":14452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.65.0", + "prefixLen":25, + "network":"193.23.65.0\/25", + "version":14451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.65.128", + "prefixLen":25, + "network":"193.23.65.128\/25", + "version":14450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.66.0", + "prefixLen":25, + "network":"193.23.66.0\/25", + "version":14449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.66.128", + "prefixLen":25, + "network":"193.23.66.128\/25", + "version":14448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.67.0", + "prefixLen":25, + "network":"193.23.67.0\/25", + "version":14447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.67.128", + "prefixLen":25, + "network":"193.23.67.128\/25", + "version":14446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.80.0", + "prefixLen":25, + "network":"193.23.80.0\/25", + "version":14445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.80.128", + "prefixLen":25, + "network":"193.23.80.128\/25", + "version":14444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.81.0", + "prefixLen":25, + "network":"193.23.81.0\/25", + "version":14443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.81.128", + "prefixLen":25, + "network":"193.23.81.128\/25", + "version":14442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.82.0", + "prefixLen":25, + "network":"193.23.82.0\/25", + "version":14441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.82.128", + "prefixLen":25, + "network":"193.23.82.128\/25", + "version":14440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.83.0", + "prefixLen":25, + "network":"193.23.83.0\/25", + "version":14439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.83.128", + "prefixLen":25, + "network":"193.23.83.128\/25", + "version":14438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.96.0", + "prefixLen":25, + "network":"193.23.96.0\/25", + "version":14437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.96.128", + "prefixLen":25, + "network":"193.23.96.128\/25", + "version":14436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.97.0", + "prefixLen":25, + "network":"193.23.97.0\/25", + "version":14435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.97.128", + "prefixLen":25, + "network":"193.23.97.128\/25", + "version":14434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.98.0", + "prefixLen":25, + "network":"193.23.98.0\/25", + "version":14433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.98.128", + "prefixLen":25, + "network":"193.23.98.128\/25", + "version":14432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.99.0", + "prefixLen":25, + "network":"193.23.99.0\/25", + "version":14431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.99.128", + "prefixLen":25, + "network":"193.23.99.128\/25", + "version":14430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.112.0", + "prefixLen":25, + "network":"193.23.112.0\/25", + "version":14429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.112.128", + "prefixLen":25, + "network":"193.23.112.128\/25", + "version":14428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.113.0", + "prefixLen":25, + "network":"193.23.113.0\/25", + "version":14427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.113.128", + "prefixLen":25, + "network":"193.23.113.128\/25", + "version":14426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.114.0", + "prefixLen":25, + "network":"193.23.114.0\/25", + "version":14425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.114.128", + "prefixLen":25, + "network":"193.23.114.128\/25", + "version":14424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.115.0", + "prefixLen":25, + "network":"193.23.115.0\/25", + "version":14423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.115.128", + "prefixLen":25, + "network":"193.23.115.128\/25", + "version":14422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.128.0", + "prefixLen":25, + "network":"193.23.128.0\/25", + "version":14421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.128.128", + "prefixLen":25, + "network":"193.23.128.128\/25", + "version":14420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.129.0", + "prefixLen":25, + "network":"193.23.129.0\/25", + "version":14419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.129.128", + "prefixLen":25, + "network":"193.23.129.128\/25", + "version":14418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.130.0", + "prefixLen":25, + "network":"193.23.130.0\/25", + "version":14417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.130.128", + "prefixLen":25, + "network":"193.23.130.128\/25", + "version":14416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.131.0", + "prefixLen":25, + "network":"193.23.131.0\/25", + "version":14415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.131.128", + "prefixLen":25, + "network":"193.23.131.128\/25", + "version":14414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.144.0", + "prefixLen":25, + "network":"193.23.144.0\/25", + "version":14413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.144.128", + "prefixLen":25, + "network":"193.23.144.128\/25", + "version":14412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.145.0", + "prefixLen":25, + "network":"193.23.145.0\/25", + "version":14411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.145.128", + "prefixLen":25, + "network":"193.23.145.128\/25", + "version":14410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.146.0", + "prefixLen":25, + "network":"193.23.146.0\/25", + "version":14409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.146.128", + "prefixLen":25, + "network":"193.23.146.128\/25", + "version":14408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.147.0", + "prefixLen":25, + "network":"193.23.147.0\/25", + "version":14407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.147.128", + "prefixLen":25, + "network":"193.23.147.128\/25", + "version":14406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.160.0", + "prefixLen":25, + "network":"193.23.160.0\/25", + "version":14405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.160.128", + "prefixLen":25, + "network":"193.23.160.128\/25", + "version":14404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.161.0", + "prefixLen":25, + "network":"193.23.161.0\/25", + "version":14403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.161.128", + "prefixLen":25, + "network":"193.23.161.128\/25", + "version":14402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.162.0", + "prefixLen":25, + "network":"193.23.162.0\/25", + "version":14401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.162.128", + "prefixLen":25, + "network":"193.23.162.128\/25", + "version":14400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.163.0", + "prefixLen":25, + "network":"193.23.163.0\/25", + "version":14399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.163.128", + "prefixLen":25, + "network":"193.23.163.128\/25", + "version":14398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.176.0", + "prefixLen":25, + "network":"193.23.176.0\/25", + "version":14397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.176.128", + "prefixLen":25, + "network":"193.23.176.128\/25", + "version":14396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.177.0", + "prefixLen":25, + "network":"193.23.177.0\/25", + "version":14395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.177.128", + "prefixLen":25, + "network":"193.23.177.128\/25", + "version":14394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.178.0", + "prefixLen":25, + "network":"193.23.178.0\/25", + "version":14393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.178.128", + "prefixLen":25, + "network":"193.23.178.128\/25", + "version":14392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.179.0", + "prefixLen":25, + "network":"193.23.179.0\/25", + "version":14391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.179.128", + "prefixLen":25, + "network":"193.23.179.128\/25", + "version":14390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.192.0", + "prefixLen":25, + "network":"193.23.192.0\/25", + "version":14389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.192.128", + "prefixLen":25, + "network":"193.23.192.128\/25", + "version":14388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.193.0", + "prefixLen":25, + "network":"193.23.193.0\/25", + "version":14387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.193.128", + "prefixLen":25, + "network":"193.23.193.128\/25", + "version":14386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.194.0", + "prefixLen":25, + "network":"193.23.194.0\/25", + "version":14385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.194.128", + "prefixLen":25, + "network":"193.23.194.128\/25", + "version":14384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.195.0", + "prefixLen":25, + "network":"193.23.195.0\/25", + "version":14383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.195.128", + "prefixLen":25, + "network":"193.23.195.128\/25", + "version":14382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.208.0", + "prefixLen":25, + "network":"193.23.208.0\/25", + "version":14381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.208.128", + "prefixLen":25, + "network":"193.23.208.128\/25", + "version":14380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.209.0", + "prefixLen":25, + "network":"193.23.209.0\/25", + "version":14379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.209.128", + "prefixLen":25, + "network":"193.23.209.128\/25", + "version":14378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.210.0", + "prefixLen":25, + "network":"193.23.210.0\/25", + "version":14377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.210.128", + "prefixLen":25, + "network":"193.23.210.128\/25", + "version":14376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.211.0", + "prefixLen":25, + "network":"193.23.211.0\/25", + "version":14375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.211.128", + "prefixLen":25, + "network":"193.23.211.128\/25", + "version":14374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.224.0", + "prefixLen":25, + "network":"193.23.224.0\/25", + "version":14373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.224.128", + "prefixLen":25, + "network":"193.23.224.128\/25", + "version":14372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.225.0", + "prefixLen":25, + "network":"193.23.225.0\/25", + "version":14371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.225.128", + "prefixLen":25, + "network":"193.23.225.128\/25", + "version":14370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.226.0", + "prefixLen":25, + "network":"193.23.226.0\/25", + "version":14369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.226.128", + "prefixLen":25, + "network":"193.23.226.128\/25", + "version":14368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.227.0", + "prefixLen":25, + "network":"193.23.227.0\/25", + "version":14367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.227.128", + "prefixLen":25, + "network":"193.23.227.128\/25", + "version":14366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.240.0", + "prefixLen":25, + "network":"193.23.240.0\/25", + "version":14365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.240.128", + "prefixLen":25, + "network":"193.23.240.128\/25", + "version":14364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.241.0", + "prefixLen":25, + "network":"193.23.241.0\/25", + "version":14363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.241.128", + "prefixLen":25, + "network":"193.23.241.128\/25", + "version":14362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.242.0", + "prefixLen":25, + "network":"193.23.242.0\/25", + "version":14361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.242.128", + "prefixLen":25, + "network":"193.23.242.128\/25", + "version":14360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.243.0", + "prefixLen":25, + "network":"193.23.243.0\/25", + "version":14359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.23.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.23.243.128", + "prefixLen":25, + "network":"193.23.243.128\/25", + "version":14358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64711 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.0.0", + "prefixLen":25, + "network":"193.24.0.0\/25", + "version":14485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.0.128", + "prefixLen":25, + "network":"193.24.0.128\/25", + "version":14612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.1.0", + "prefixLen":25, + "network":"193.24.1.0\/25", + "version":14611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.1.128", + "prefixLen":25, + "network":"193.24.1.128\/25", + "version":14610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.2.0", + "prefixLen":25, + "network":"193.24.2.0\/25", + "version":14609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.2.128", + "prefixLen":25, + "network":"193.24.2.128\/25", + "version":14608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.3.0", + "prefixLen":25, + "network":"193.24.3.0\/25", + "version":14607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.3.128", + "prefixLen":25, + "network":"193.24.3.128\/25", + "version":14606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.16.0", + "prefixLen":25, + "network":"193.24.16.0\/25", + "version":14605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.16.128", + "prefixLen":25, + "network":"193.24.16.128\/25", + "version":14604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.17.0", + "prefixLen":25, + "network":"193.24.17.0\/25", + "version":14603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.17.128", + "prefixLen":25, + "network":"193.24.17.128\/25", + "version":14602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.18.0", + "prefixLen":25, + "network":"193.24.18.0\/25", + "version":14601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.18.128", + "prefixLen":25, + "network":"193.24.18.128\/25", + "version":14600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.19.0", + "prefixLen":25, + "network":"193.24.19.0\/25", + "version":14599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.19.128", + "prefixLen":25, + "network":"193.24.19.128\/25", + "version":14598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.32.0", + "prefixLen":25, + "network":"193.24.32.0\/25", + "version":14597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.32.128", + "prefixLen":25, + "network":"193.24.32.128\/25", + "version":14596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.33.0", + "prefixLen":25, + "network":"193.24.33.0\/25", + "version":14595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.33.128", + "prefixLen":25, + "network":"193.24.33.128\/25", + "version":14594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.34.0", + "prefixLen":25, + "network":"193.24.34.0\/25", + "version":14593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.34.128", + "prefixLen":25, + "network":"193.24.34.128\/25", + "version":14592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.35.0", + "prefixLen":25, + "network":"193.24.35.0\/25", + "version":14591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.35.128", + "prefixLen":25, + "network":"193.24.35.128\/25", + "version":14590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.48.0", + "prefixLen":25, + "network":"193.24.48.0\/25", + "version":14589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.48.128", + "prefixLen":25, + "network":"193.24.48.128\/25", + "version":14588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.49.0", + "prefixLen":25, + "network":"193.24.49.0\/25", + "version":14587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.49.128", + "prefixLen":25, + "network":"193.24.49.128\/25", + "version":14586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.50.0", + "prefixLen":25, + "network":"193.24.50.0\/25", + "version":14585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.50.128", + "prefixLen":25, + "network":"193.24.50.128\/25", + "version":14584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.51.0", + "prefixLen":25, + "network":"193.24.51.0\/25", + "version":14583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.51.128", + "prefixLen":25, + "network":"193.24.51.128\/25", + "version":14582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.64.0", + "prefixLen":25, + "network":"193.24.64.0\/25", + "version":14581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.64.128", + "prefixLen":25, + "network":"193.24.64.128\/25", + "version":14580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.65.0", + "prefixLen":25, + "network":"193.24.65.0\/25", + "version":14579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.65.128", + "prefixLen":25, + "network":"193.24.65.128\/25", + "version":14578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.66.0", + "prefixLen":25, + "network":"193.24.66.0\/25", + "version":14577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.66.128", + "prefixLen":25, + "network":"193.24.66.128\/25", + "version":14576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.67.0", + "prefixLen":25, + "network":"193.24.67.0\/25", + "version":14575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.67.128", + "prefixLen":25, + "network":"193.24.67.128\/25", + "version":14574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.80.0", + "prefixLen":25, + "network":"193.24.80.0\/25", + "version":14573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.80.128", + "prefixLen":25, + "network":"193.24.80.128\/25", + "version":14572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.81.0", + "prefixLen":25, + "network":"193.24.81.0\/25", + "version":14571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.81.128", + "prefixLen":25, + "network":"193.24.81.128\/25", + "version":14570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.82.0", + "prefixLen":25, + "network":"193.24.82.0\/25", + "version":14569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.82.128", + "prefixLen":25, + "network":"193.24.82.128\/25", + "version":14568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.83.0", + "prefixLen":25, + "network":"193.24.83.0\/25", + "version":14567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.83.128", + "prefixLen":25, + "network":"193.24.83.128\/25", + "version":14566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.96.0", + "prefixLen":25, + "network":"193.24.96.0\/25", + "version":14565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.96.128", + "prefixLen":25, + "network":"193.24.96.128\/25", + "version":14564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.97.0", + "prefixLen":25, + "network":"193.24.97.0\/25", + "version":14563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.97.128", + "prefixLen":25, + "network":"193.24.97.128\/25", + "version":14562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.98.0", + "prefixLen":25, + "network":"193.24.98.0\/25", + "version":14561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.98.128", + "prefixLen":25, + "network":"193.24.98.128\/25", + "version":14560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.99.0", + "prefixLen":25, + "network":"193.24.99.0\/25", + "version":14559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.99.128", + "prefixLen":25, + "network":"193.24.99.128\/25", + "version":14558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.112.0", + "prefixLen":25, + "network":"193.24.112.0\/25", + "version":14557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.112.128", + "prefixLen":25, + "network":"193.24.112.128\/25", + "version":14556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.113.0", + "prefixLen":25, + "network":"193.24.113.0\/25", + "version":14555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.113.128", + "prefixLen":25, + "network":"193.24.113.128\/25", + "version":14554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.114.0", + "prefixLen":25, + "network":"193.24.114.0\/25", + "version":14553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.114.128", + "prefixLen":25, + "network":"193.24.114.128\/25", + "version":14552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.115.0", + "prefixLen":25, + "network":"193.24.115.0\/25", + "version":14551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.115.128", + "prefixLen":25, + "network":"193.24.115.128\/25", + "version":14550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.128.0", + "prefixLen":25, + "network":"193.24.128.0\/25", + "version":14549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.128.128", + "prefixLen":25, + "network":"193.24.128.128\/25", + "version":14548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.129.0", + "prefixLen":25, + "network":"193.24.129.0\/25", + "version":14547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.129.128", + "prefixLen":25, + "network":"193.24.129.128\/25", + "version":14546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.130.0", + "prefixLen":25, + "network":"193.24.130.0\/25", + "version":14545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.130.128", + "prefixLen":25, + "network":"193.24.130.128\/25", + "version":14544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.131.0", + "prefixLen":25, + "network":"193.24.131.0\/25", + "version":14543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.131.128", + "prefixLen":25, + "network":"193.24.131.128\/25", + "version":14542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.144.0", + "prefixLen":25, + "network":"193.24.144.0\/25", + "version":14541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.144.128", + "prefixLen":25, + "network":"193.24.144.128\/25", + "version":14540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.145.0", + "prefixLen":25, + "network":"193.24.145.0\/25", + "version":14539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.145.128", + "prefixLen":25, + "network":"193.24.145.128\/25", + "version":14538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.146.0", + "prefixLen":25, + "network":"193.24.146.0\/25", + "version":14537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.146.128", + "prefixLen":25, + "network":"193.24.146.128\/25", + "version":14536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.147.0", + "prefixLen":25, + "network":"193.24.147.0\/25", + "version":14535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.147.128", + "prefixLen":25, + "network":"193.24.147.128\/25", + "version":14534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.160.0", + "prefixLen":25, + "network":"193.24.160.0\/25", + "version":14533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.160.128", + "prefixLen":25, + "network":"193.24.160.128\/25", + "version":14532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.161.0", + "prefixLen":25, + "network":"193.24.161.0\/25", + "version":14531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.161.128", + "prefixLen":25, + "network":"193.24.161.128\/25", + "version":14530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.162.0", + "prefixLen":25, + "network":"193.24.162.0\/25", + "version":14529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.162.128", + "prefixLen":25, + "network":"193.24.162.128\/25", + "version":14528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.163.0", + "prefixLen":25, + "network":"193.24.163.0\/25", + "version":14527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.163.128", + "prefixLen":25, + "network":"193.24.163.128\/25", + "version":14526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.176.0", + "prefixLen":25, + "network":"193.24.176.0\/25", + "version":14525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.176.128", + "prefixLen":25, + "network":"193.24.176.128\/25", + "version":14524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.177.0", + "prefixLen":25, + "network":"193.24.177.0\/25", + "version":14523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.177.128", + "prefixLen":25, + "network":"193.24.177.128\/25", + "version":14522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.178.0", + "prefixLen":25, + "network":"193.24.178.0\/25", + "version":14521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.178.128", + "prefixLen":25, + "network":"193.24.178.128\/25", + "version":14520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.179.0", + "prefixLen":25, + "network":"193.24.179.0\/25", + "version":14519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.179.128", + "prefixLen":25, + "network":"193.24.179.128\/25", + "version":14518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.192.0", + "prefixLen":25, + "network":"193.24.192.0\/25", + "version":14517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.192.128", + "prefixLen":25, + "network":"193.24.192.128\/25", + "version":14516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.193.0", + "prefixLen":25, + "network":"193.24.193.0\/25", + "version":14515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.193.128", + "prefixLen":25, + "network":"193.24.193.128\/25", + "version":14514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.194.0", + "prefixLen":25, + "network":"193.24.194.0\/25", + "version":14513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.194.128", + "prefixLen":25, + "network":"193.24.194.128\/25", + "version":14512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.195.0", + "prefixLen":25, + "network":"193.24.195.0\/25", + "version":14511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.195.128", + "prefixLen":25, + "network":"193.24.195.128\/25", + "version":14510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.208.0", + "prefixLen":25, + "network":"193.24.208.0\/25", + "version":14509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.208.128", + "prefixLen":25, + "network":"193.24.208.128\/25", + "version":14508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.209.0", + "prefixLen":25, + "network":"193.24.209.0\/25", + "version":14507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.209.128", + "prefixLen":25, + "network":"193.24.209.128\/25", + "version":14506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.210.0", + "prefixLen":25, + "network":"193.24.210.0\/25", + "version":14505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.210.128", + "prefixLen":25, + "network":"193.24.210.128\/25", + "version":14504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.211.0", + "prefixLen":25, + "network":"193.24.211.0\/25", + "version":14503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.211.128", + "prefixLen":25, + "network":"193.24.211.128\/25", + "version":14502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.224.0", + "prefixLen":25, + "network":"193.24.224.0\/25", + "version":14501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.224.128", + "prefixLen":25, + "network":"193.24.224.128\/25", + "version":14500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.225.0", + "prefixLen":25, + "network":"193.24.225.0\/25", + "version":14499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.225.128", + "prefixLen":25, + "network":"193.24.225.128\/25", + "version":14498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.226.0", + "prefixLen":25, + "network":"193.24.226.0\/25", + "version":14497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.226.128", + "prefixLen":25, + "network":"193.24.226.128\/25", + "version":14496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.227.0", + "prefixLen":25, + "network":"193.24.227.0\/25", + "version":14495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.227.128", + "prefixLen":25, + "network":"193.24.227.128\/25", + "version":14494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.240.0", + "prefixLen":25, + "network":"193.24.240.0\/25", + "version":14493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.240.128", + "prefixLen":25, + "network":"193.24.240.128\/25", + "version":14492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.241.0", + "prefixLen":25, + "network":"193.24.241.0\/25", + "version":14491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.241.128", + "prefixLen":25, + "network":"193.24.241.128\/25", + "version":14490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.242.0", + "prefixLen":25, + "network":"193.24.242.0\/25", + "version":14489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.242.128", + "prefixLen":25, + "network":"193.24.242.128\/25", + "version":14488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.243.0", + "prefixLen":25, + "network":"193.24.243.0\/25", + "version":14487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.24.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.24.243.128", + "prefixLen":25, + "network":"193.24.243.128\/25", + "version":14486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64712 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.0.0", + "prefixLen":25, + "network":"193.25.0.0\/25", + "version":14613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.0.128", + "prefixLen":25, + "network":"193.25.0.128\/25", + "version":14740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.1.0", + "prefixLen":25, + "network":"193.25.1.0\/25", + "version":14739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.1.128", + "prefixLen":25, + "network":"193.25.1.128\/25", + "version":14738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.2.0", + "prefixLen":25, + "network":"193.25.2.0\/25", + "version":14737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.2.128", + "prefixLen":25, + "network":"193.25.2.128\/25", + "version":14736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.3.0", + "prefixLen":25, + "network":"193.25.3.0\/25", + "version":14735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.3.128", + "prefixLen":25, + "network":"193.25.3.128\/25", + "version":14734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.16.0", + "prefixLen":25, + "network":"193.25.16.0\/25", + "version":14733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.16.128", + "prefixLen":25, + "network":"193.25.16.128\/25", + "version":14732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.17.0", + "prefixLen":25, + "network":"193.25.17.0\/25", + "version":14731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.17.128", + "prefixLen":25, + "network":"193.25.17.128\/25", + "version":14730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.18.0", + "prefixLen":25, + "network":"193.25.18.0\/25", + "version":14729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.18.128", + "prefixLen":25, + "network":"193.25.18.128\/25", + "version":14728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.19.0", + "prefixLen":25, + "network":"193.25.19.0\/25", + "version":14727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.19.128", + "prefixLen":25, + "network":"193.25.19.128\/25", + "version":14726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.32.0", + "prefixLen":25, + "network":"193.25.32.0\/25", + "version":14725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.32.128", + "prefixLen":25, + "network":"193.25.32.128\/25", + "version":14724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.33.0", + "prefixLen":25, + "network":"193.25.33.0\/25", + "version":14723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.33.128", + "prefixLen":25, + "network":"193.25.33.128\/25", + "version":14722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.34.0", + "prefixLen":25, + "network":"193.25.34.0\/25", + "version":14721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.34.128", + "prefixLen":25, + "network":"193.25.34.128\/25", + "version":14720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.35.0", + "prefixLen":25, + "network":"193.25.35.0\/25", + "version":14719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.35.128", + "prefixLen":25, + "network":"193.25.35.128\/25", + "version":14718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.48.0", + "prefixLen":25, + "network":"193.25.48.0\/25", + "version":14717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.48.128", + "prefixLen":25, + "network":"193.25.48.128\/25", + "version":14716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.49.0", + "prefixLen":25, + "network":"193.25.49.0\/25", + "version":14715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.49.128", + "prefixLen":25, + "network":"193.25.49.128\/25", + "version":14714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.50.0", + "prefixLen":25, + "network":"193.25.50.0\/25", + "version":14713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.50.128", + "prefixLen":25, + "network":"193.25.50.128\/25", + "version":14712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.51.0", + "prefixLen":25, + "network":"193.25.51.0\/25", + "version":14711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.51.128", + "prefixLen":25, + "network":"193.25.51.128\/25", + "version":14710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.64.0", + "prefixLen":25, + "network":"193.25.64.0\/25", + "version":14709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.64.128", + "prefixLen":25, + "network":"193.25.64.128\/25", + "version":14708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.65.0", + "prefixLen":25, + "network":"193.25.65.0\/25", + "version":14707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.65.128", + "prefixLen":25, + "network":"193.25.65.128\/25", + "version":14706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.66.0", + "prefixLen":25, + "network":"193.25.66.0\/25", + "version":14705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.66.128", + "prefixLen":25, + "network":"193.25.66.128\/25", + "version":14704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.67.0", + "prefixLen":25, + "network":"193.25.67.0\/25", + "version":14703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.67.128", + "prefixLen":25, + "network":"193.25.67.128\/25", + "version":14702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.80.0", + "prefixLen":25, + "network":"193.25.80.0\/25", + "version":14701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.80.128", + "prefixLen":25, + "network":"193.25.80.128\/25", + "version":14700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.81.0", + "prefixLen":25, + "network":"193.25.81.0\/25", + "version":14699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.81.128", + "prefixLen":25, + "network":"193.25.81.128\/25", + "version":14698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.82.0", + "prefixLen":25, + "network":"193.25.82.0\/25", + "version":14697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.82.128", + "prefixLen":25, + "network":"193.25.82.128\/25", + "version":14696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.83.0", + "prefixLen":25, + "network":"193.25.83.0\/25", + "version":14695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.83.128", + "prefixLen":25, + "network":"193.25.83.128\/25", + "version":14694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.96.0", + "prefixLen":25, + "network":"193.25.96.0\/25", + "version":14693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.96.128", + "prefixLen":25, + "network":"193.25.96.128\/25", + "version":14692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.97.0", + "prefixLen":25, + "network":"193.25.97.0\/25", + "version":14691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.97.128", + "prefixLen":25, + "network":"193.25.97.128\/25", + "version":14690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.98.0", + "prefixLen":25, + "network":"193.25.98.0\/25", + "version":14689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.98.128", + "prefixLen":25, + "network":"193.25.98.128\/25", + "version":14688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.99.0", + "prefixLen":25, + "network":"193.25.99.0\/25", + "version":14687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.99.128", + "prefixLen":25, + "network":"193.25.99.128\/25", + "version":14686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.112.0", + "prefixLen":25, + "network":"193.25.112.0\/25", + "version":14685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.112.128", + "prefixLen":25, + "network":"193.25.112.128\/25", + "version":14684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.113.0", + "prefixLen":25, + "network":"193.25.113.0\/25", + "version":14683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.113.128", + "prefixLen":25, + "network":"193.25.113.128\/25", + "version":14682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.114.0", + "prefixLen":25, + "network":"193.25.114.0\/25", + "version":14681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.114.128", + "prefixLen":25, + "network":"193.25.114.128\/25", + "version":14680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.115.0", + "prefixLen":25, + "network":"193.25.115.0\/25", + "version":14679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.115.128", + "prefixLen":25, + "network":"193.25.115.128\/25", + "version":14678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.128.0", + "prefixLen":25, + "network":"193.25.128.0\/25", + "version":14677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.128.128", + "prefixLen":25, + "network":"193.25.128.128\/25", + "version":14676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.129.0", + "prefixLen":25, + "network":"193.25.129.0\/25", + "version":14675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.129.128", + "prefixLen":25, + "network":"193.25.129.128\/25", + "version":14674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.130.0", + "prefixLen":25, + "network":"193.25.130.0\/25", + "version":14673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.130.128", + "prefixLen":25, + "network":"193.25.130.128\/25", + "version":14672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.131.0", + "prefixLen":25, + "network":"193.25.131.0\/25", + "version":14671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.131.128", + "prefixLen":25, + "network":"193.25.131.128\/25", + "version":14670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.144.0", + "prefixLen":25, + "network":"193.25.144.0\/25", + "version":14669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.144.128", + "prefixLen":25, + "network":"193.25.144.128\/25", + "version":14668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.145.0", + "prefixLen":25, + "network":"193.25.145.0\/25", + "version":14667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.145.128", + "prefixLen":25, + "network":"193.25.145.128\/25", + "version":14666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.146.0", + "prefixLen":25, + "network":"193.25.146.0\/25", + "version":14665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.146.128", + "prefixLen":25, + "network":"193.25.146.128\/25", + "version":14664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.147.0", + "prefixLen":25, + "network":"193.25.147.0\/25", + "version":14663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.147.128", + "prefixLen":25, + "network":"193.25.147.128\/25", + "version":14662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.160.0", + "prefixLen":25, + "network":"193.25.160.0\/25", + "version":14661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.160.128", + "prefixLen":25, + "network":"193.25.160.128\/25", + "version":14660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.161.0", + "prefixLen":25, + "network":"193.25.161.0\/25", + "version":14659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.161.128", + "prefixLen":25, + "network":"193.25.161.128\/25", + "version":14658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.162.0", + "prefixLen":25, + "network":"193.25.162.0\/25", + "version":14657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.162.128", + "prefixLen":25, + "network":"193.25.162.128\/25", + "version":14656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.163.0", + "prefixLen":25, + "network":"193.25.163.0\/25", + "version":14655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.163.128", + "prefixLen":25, + "network":"193.25.163.128\/25", + "version":14654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.176.0", + "prefixLen":25, + "network":"193.25.176.0\/25", + "version":14653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.176.128", + "prefixLen":25, + "network":"193.25.176.128\/25", + "version":14652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.177.0", + "prefixLen":25, + "network":"193.25.177.0\/25", + "version":14651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.177.128", + "prefixLen":25, + "network":"193.25.177.128\/25", + "version":14650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.178.0", + "prefixLen":25, + "network":"193.25.178.0\/25", + "version":14649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.178.128", + "prefixLen":25, + "network":"193.25.178.128\/25", + "version":14648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.179.0", + "prefixLen":25, + "network":"193.25.179.0\/25", + "version":14647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.179.128", + "prefixLen":25, + "network":"193.25.179.128\/25", + "version":14646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.192.0", + "prefixLen":25, + "network":"193.25.192.0\/25", + "version":14645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.192.128", + "prefixLen":25, + "network":"193.25.192.128\/25", + "version":14644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.193.0", + "prefixLen":25, + "network":"193.25.193.0\/25", + "version":14643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.193.128", + "prefixLen":25, + "network":"193.25.193.128\/25", + "version":14642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.194.0", + "prefixLen":25, + "network":"193.25.194.0\/25", + "version":14641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.194.128", + "prefixLen":25, + "network":"193.25.194.128\/25", + "version":14640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.195.0", + "prefixLen":25, + "network":"193.25.195.0\/25", + "version":14639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.195.128", + "prefixLen":25, + "network":"193.25.195.128\/25", + "version":14638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.208.0", + "prefixLen":25, + "network":"193.25.208.0\/25", + "version":14637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.208.128", + "prefixLen":25, + "network":"193.25.208.128\/25", + "version":14636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.209.0", + "prefixLen":25, + "network":"193.25.209.0\/25", + "version":14635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.209.128", + "prefixLen":25, + "network":"193.25.209.128\/25", + "version":14634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.210.0", + "prefixLen":25, + "network":"193.25.210.0\/25", + "version":14633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.210.128", + "prefixLen":25, + "network":"193.25.210.128\/25", + "version":14632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.211.0", + "prefixLen":25, + "network":"193.25.211.0\/25", + "version":14631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.211.128", + "prefixLen":25, + "network":"193.25.211.128\/25", + "version":14630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.224.0", + "prefixLen":25, + "network":"193.25.224.0\/25", + "version":14629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.224.128", + "prefixLen":25, + "network":"193.25.224.128\/25", + "version":14628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.225.0", + "prefixLen":25, + "network":"193.25.225.0\/25", + "version":14627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.225.128", + "prefixLen":25, + "network":"193.25.225.128\/25", + "version":14626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.226.0", + "prefixLen":25, + "network":"193.25.226.0\/25", + "version":14625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.226.128", + "prefixLen":25, + "network":"193.25.226.128\/25", + "version":14624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.227.0", + "prefixLen":25, + "network":"193.25.227.0\/25", + "version":14623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.227.128", + "prefixLen":25, + "network":"193.25.227.128\/25", + "version":14622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.240.0", + "prefixLen":25, + "network":"193.25.240.0\/25", + "version":14621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.240.128", + "prefixLen":25, + "network":"193.25.240.128\/25", + "version":14620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.241.0", + "prefixLen":25, + "network":"193.25.241.0\/25", + "version":14619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.241.128", + "prefixLen":25, + "network":"193.25.241.128\/25", + "version":14618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.242.0", + "prefixLen":25, + "network":"193.25.242.0\/25", + "version":14617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.242.128", + "prefixLen":25, + "network":"193.25.242.128\/25", + "version":14616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.243.0", + "prefixLen":25, + "network":"193.25.243.0\/25", + "version":14615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.25.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.25.243.128", + "prefixLen":25, + "network":"193.25.243.128\/25", + "version":14614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64713 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.0.0", + "prefixLen":25, + "network":"193.26.0.0\/25", + "version":14741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.0.128", + "prefixLen":25, + "network":"193.26.0.128\/25", + "version":14868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.1.0", + "prefixLen":25, + "network":"193.26.1.0\/25", + "version":14867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.1.128", + "prefixLen":25, + "network":"193.26.1.128\/25", + "version":14866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.2.0", + "prefixLen":25, + "network":"193.26.2.0\/25", + "version":14865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.2.128", + "prefixLen":25, + "network":"193.26.2.128\/25", + "version":14864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.3.0", + "prefixLen":25, + "network":"193.26.3.0\/25", + "version":14863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.3.128", + "prefixLen":25, + "network":"193.26.3.128\/25", + "version":14862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.16.0", + "prefixLen":25, + "network":"193.26.16.0\/25", + "version":14861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.16.128", + "prefixLen":25, + "network":"193.26.16.128\/25", + "version":14860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.17.0", + "prefixLen":25, + "network":"193.26.17.0\/25", + "version":14859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.17.128", + "prefixLen":25, + "network":"193.26.17.128\/25", + "version":14858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.18.0", + "prefixLen":25, + "network":"193.26.18.0\/25", + "version":14857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.18.128", + "prefixLen":25, + "network":"193.26.18.128\/25", + "version":14856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.19.0", + "prefixLen":25, + "network":"193.26.19.0\/25", + "version":14855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.19.128", + "prefixLen":25, + "network":"193.26.19.128\/25", + "version":14854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.32.0", + "prefixLen":25, + "network":"193.26.32.0\/25", + "version":14853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.32.128", + "prefixLen":25, + "network":"193.26.32.128\/25", + "version":14852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.33.0", + "prefixLen":25, + "network":"193.26.33.0\/25", + "version":14851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.33.128", + "prefixLen":25, + "network":"193.26.33.128\/25", + "version":14850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.34.0", + "prefixLen":25, + "network":"193.26.34.0\/25", + "version":14849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.34.128", + "prefixLen":25, + "network":"193.26.34.128\/25", + "version":14848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.35.0", + "prefixLen":25, + "network":"193.26.35.0\/25", + "version":14847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.35.128", + "prefixLen":25, + "network":"193.26.35.128\/25", + "version":14846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.48.0", + "prefixLen":25, + "network":"193.26.48.0\/25", + "version":14845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.48.128", + "prefixLen":25, + "network":"193.26.48.128\/25", + "version":14844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.49.0", + "prefixLen":25, + "network":"193.26.49.0\/25", + "version":14843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.49.128", + "prefixLen":25, + "network":"193.26.49.128\/25", + "version":14842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.50.0", + "prefixLen":25, + "network":"193.26.50.0\/25", + "version":14841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.50.128", + "prefixLen":25, + "network":"193.26.50.128\/25", + "version":14840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.51.0", + "prefixLen":25, + "network":"193.26.51.0\/25", + "version":14839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.51.128", + "prefixLen":25, + "network":"193.26.51.128\/25", + "version":14838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.64.0", + "prefixLen":25, + "network":"193.26.64.0\/25", + "version":14837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.64.128", + "prefixLen":25, + "network":"193.26.64.128\/25", + "version":14836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.65.0", + "prefixLen":25, + "network":"193.26.65.0\/25", + "version":14835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.65.128", + "prefixLen":25, + "network":"193.26.65.128\/25", + "version":14834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.66.0", + "prefixLen":25, + "network":"193.26.66.0\/25", + "version":14833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.66.128", + "prefixLen":25, + "network":"193.26.66.128\/25", + "version":14832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.67.0", + "prefixLen":25, + "network":"193.26.67.0\/25", + "version":14831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.67.128", + "prefixLen":25, + "network":"193.26.67.128\/25", + "version":14830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.80.0", + "prefixLen":25, + "network":"193.26.80.0\/25", + "version":14829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.80.128", + "prefixLen":25, + "network":"193.26.80.128\/25", + "version":14828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.81.0", + "prefixLen":25, + "network":"193.26.81.0\/25", + "version":14827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.81.128", + "prefixLen":25, + "network":"193.26.81.128\/25", + "version":14826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.82.0", + "prefixLen":25, + "network":"193.26.82.0\/25", + "version":14825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.82.128", + "prefixLen":25, + "network":"193.26.82.128\/25", + "version":14824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.83.0", + "prefixLen":25, + "network":"193.26.83.0\/25", + "version":14823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.83.128", + "prefixLen":25, + "network":"193.26.83.128\/25", + "version":14822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.96.0", + "prefixLen":25, + "network":"193.26.96.0\/25", + "version":14821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.96.128", + "prefixLen":25, + "network":"193.26.96.128\/25", + "version":14820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.97.0", + "prefixLen":25, + "network":"193.26.97.0\/25", + "version":14819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.97.128", + "prefixLen":25, + "network":"193.26.97.128\/25", + "version":14818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.98.0", + "prefixLen":25, + "network":"193.26.98.0\/25", + "version":14817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.98.128", + "prefixLen":25, + "network":"193.26.98.128\/25", + "version":14816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.99.0", + "prefixLen":25, + "network":"193.26.99.0\/25", + "version":14815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.99.128", + "prefixLen":25, + "network":"193.26.99.128\/25", + "version":14814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.112.0", + "prefixLen":25, + "network":"193.26.112.0\/25", + "version":14813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.112.128", + "prefixLen":25, + "network":"193.26.112.128\/25", + "version":14812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.113.0", + "prefixLen":25, + "network":"193.26.113.0\/25", + "version":14811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.113.128", + "prefixLen":25, + "network":"193.26.113.128\/25", + "version":14810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.114.0", + "prefixLen":25, + "network":"193.26.114.0\/25", + "version":14809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.114.128", + "prefixLen":25, + "network":"193.26.114.128\/25", + "version":14808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.115.0", + "prefixLen":25, + "network":"193.26.115.0\/25", + "version":14807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.115.128", + "prefixLen":25, + "network":"193.26.115.128\/25", + "version":14806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.128.0", + "prefixLen":25, + "network":"193.26.128.0\/25", + "version":14805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.128.128", + "prefixLen":25, + "network":"193.26.128.128\/25", + "version":14804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.129.0", + "prefixLen":25, + "network":"193.26.129.0\/25", + "version":14803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.129.128", + "prefixLen":25, + "network":"193.26.129.128\/25", + "version":14802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.130.0", + "prefixLen":25, + "network":"193.26.130.0\/25", + "version":14801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.130.128", + "prefixLen":25, + "network":"193.26.130.128\/25", + "version":14800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.131.0", + "prefixLen":25, + "network":"193.26.131.0\/25", + "version":14799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.131.128", + "prefixLen":25, + "network":"193.26.131.128\/25", + "version":14798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.144.0", + "prefixLen":25, + "network":"193.26.144.0\/25", + "version":14797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.144.128", + "prefixLen":25, + "network":"193.26.144.128\/25", + "version":14796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.145.0", + "prefixLen":25, + "network":"193.26.145.0\/25", + "version":14795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.145.128", + "prefixLen":25, + "network":"193.26.145.128\/25", + "version":14794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.146.0", + "prefixLen":25, + "network":"193.26.146.0\/25", + "version":14793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.146.128", + "prefixLen":25, + "network":"193.26.146.128\/25", + "version":14792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.147.0", + "prefixLen":25, + "network":"193.26.147.0\/25", + "version":14791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.147.128", + "prefixLen":25, + "network":"193.26.147.128\/25", + "version":14790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.160.0", + "prefixLen":25, + "network":"193.26.160.0\/25", + "version":14789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.160.128", + "prefixLen":25, + "network":"193.26.160.128\/25", + "version":14788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.161.0", + "prefixLen":25, + "network":"193.26.161.0\/25", + "version":14787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.161.128", + "prefixLen":25, + "network":"193.26.161.128\/25", + "version":14786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.162.0", + "prefixLen":25, + "network":"193.26.162.0\/25", + "version":14785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.162.128", + "prefixLen":25, + "network":"193.26.162.128\/25", + "version":14784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.163.0", + "prefixLen":25, + "network":"193.26.163.0\/25", + "version":14783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.163.128", + "prefixLen":25, + "network":"193.26.163.128\/25", + "version":14782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.176.0", + "prefixLen":25, + "network":"193.26.176.0\/25", + "version":14781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.176.128", + "prefixLen":25, + "network":"193.26.176.128\/25", + "version":14780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.177.0", + "prefixLen":25, + "network":"193.26.177.0\/25", + "version":14779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.177.128", + "prefixLen":25, + "network":"193.26.177.128\/25", + "version":14778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.178.0", + "prefixLen":25, + "network":"193.26.178.0\/25", + "version":14777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.178.128", + "prefixLen":25, + "network":"193.26.178.128\/25", + "version":14776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.179.0", + "prefixLen":25, + "network":"193.26.179.0\/25", + "version":14775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.179.128", + "prefixLen":25, + "network":"193.26.179.128\/25", + "version":14774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.192.0", + "prefixLen":25, + "network":"193.26.192.0\/25", + "version":14773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.192.128", + "prefixLen":25, + "network":"193.26.192.128\/25", + "version":14772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.193.0", + "prefixLen":25, + "network":"193.26.193.0\/25", + "version":14771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.193.128", + "prefixLen":25, + "network":"193.26.193.128\/25", + "version":14770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.194.0", + "prefixLen":25, + "network":"193.26.194.0\/25", + "version":14769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.194.128", + "prefixLen":25, + "network":"193.26.194.128\/25", + "version":14768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.195.0", + "prefixLen":25, + "network":"193.26.195.0\/25", + "version":14767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.195.128", + "prefixLen":25, + "network":"193.26.195.128\/25", + "version":14766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.208.0", + "prefixLen":25, + "network":"193.26.208.0\/25", + "version":14765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.208.128", + "prefixLen":25, + "network":"193.26.208.128\/25", + "version":14764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.209.0", + "prefixLen":25, + "network":"193.26.209.0\/25", + "version":14763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.209.128", + "prefixLen":25, + "network":"193.26.209.128\/25", + "version":14762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.210.0", + "prefixLen":25, + "network":"193.26.210.0\/25", + "version":14761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.210.128", + "prefixLen":25, + "network":"193.26.210.128\/25", + "version":14760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.211.0", + "prefixLen":25, + "network":"193.26.211.0\/25", + "version":14759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.211.128", + "prefixLen":25, + "network":"193.26.211.128\/25", + "version":14758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.224.0", + "prefixLen":25, + "network":"193.26.224.0\/25", + "version":14757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.224.128", + "prefixLen":25, + "network":"193.26.224.128\/25", + "version":14756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.225.0", + "prefixLen":25, + "network":"193.26.225.0\/25", + "version":14755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.225.128", + "prefixLen":25, + "network":"193.26.225.128\/25", + "version":14754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.226.0", + "prefixLen":25, + "network":"193.26.226.0\/25", + "version":14753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.226.128", + "prefixLen":25, + "network":"193.26.226.128\/25", + "version":14752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.227.0", + "prefixLen":25, + "network":"193.26.227.0\/25", + "version":14751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.227.128", + "prefixLen":25, + "network":"193.26.227.128\/25", + "version":14750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.240.0", + "prefixLen":25, + "network":"193.26.240.0\/25", + "version":14749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.240.128", + "prefixLen":25, + "network":"193.26.240.128\/25", + "version":14748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.241.0", + "prefixLen":25, + "network":"193.26.241.0\/25", + "version":14747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.241.128", + "prefixLen":25, + "network":"193.26.241.128\/25", + "version":14746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.242.0", + "prefixLen":25, + "network":"193.26.242.0\/25", + "version":14745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.242.128", + "prefixLen":25, + "network":"193.26.242.128\/25", + "version":14744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.243.0", + "prefixLen":25, + "network":"193.26.243.0\/25", + "version":14743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.26.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.26.243.128", + "prefixLen":25, + "network":"193.26.243.128\/25", + "version":14742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64714 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.0.0", + "prefixLen":25, + "network":"193.27.0.0\/25", + "version":14869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.0.128", + "prefixLen":25, + "network":"193.27.0.128\/25", + "version":14996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.1.0", + "prefixLen":25, + "network":"193.27.1.0\/25", + "version":14995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.1.128", + "prefixLen":25, + "network":"193.27.1.128\/25", + "version":14994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.2.0", + "prefixLen":25, + "network":"193.27.2.0\/25", + "version":14993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.2.128", + "prefixLen":25, + "network":"193.27.2.128\/25", + "version":14992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.3.0", + "prefixLen":25, + "network":"193.27.3.0\/25", + "version":14991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.3.128", + "prefixLen":25, + "network":"193.27.3.128\/25", + "version":14990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.16.0", + "prefixLen":25, + "network":"193.27.16.0\/25", + "version":14989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.16.128", + "prefixLen":25, + "network":"193.27.16.128\/25", + "version":14988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.17.0", + "prefixLen":25, + "network":"193.27.17.0\/25", + "version":14987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.17.128", + "prefixLen":25, + "network":"193.27.17.128\/25", + "version":14986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.18.0", + "prefixLen":25, + "network":"193.27.18.0\/25", + "version":14985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.18.128", + "prefixLen":25, + "network":"193.27.18.128\/25", + "version":14984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.19.0", + "prefixLen":25, + "network":"193.27.19.0\/25", + "version":14983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.19.128", + "prefixLen":25, + "network":"193.27.19.128\/25", + "version":14982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.32.0", + "prefixLen":25, + "network":"193.27.32.0\/25", + "version":14981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.32.128", + "prefixLen":25, + "network":"193.27.32.128\/25", + "version":14980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.33.0", + "prefixLen":25, + "network":"193.27.33.0\/25", + "version":14979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.33.128", + "prefixLen":25, + "network":"193.27.33.128\/25", + "version":14978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.34.0", + "prefixLen":25, + "network":"193.27.34.0\/25", + "version":14977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.34.128", + "prefixLen":25, + "network":"193.27.34.128\/25", + "version":14976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.35.0", + "prefixLen":25, + "network":"193.27.35.0\/25", + "version":14975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.35.128", + "prefixLen":25, + "network":"193.27.35.128\/25", + "version":14974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.48.0", + "prefixLen":25, + "network":"193.27.48.0\/25", + "version":14973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.48.128", + "prefixLen":25, + "network":"193.27.48.128\/25", + "version":14972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.49.0", + "prefixLen":25, + "network":"193.27.49.0\/25", + "version":14971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.49.128", + "prefixLen":25, + "network":"193.27.49.128\/25", + "version":14970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.50.0", + "prefixLen":25, + "network":"193.27.50.0\/25", + "version":14969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.50.128", + "prefixLen":25, + "network":"193.27.50.128\/25", + "version":14968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.51.0", + "prefixLen":25, + "network":"193.27.51.0\/25", + "version":14967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.51.128", + "prefixLen":25, + "network":"193.27.51.128\/25", + "version":14966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.64.0", + "prefixLen":25, + "network":"193.27.64.0\/25", + "version":14965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.64.128", + "prefixLen":25, + "network":"193.27.64.128\/25", + "version":14964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.65.0", + "prefixLen":25, + "network":"193.27.65.0\/25", + "version":14963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.65.128", + "prefixLen":25, + "network":"193.27.65.128\/25", + "version":14962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.66.0", + "prefixLen":25, + "network":"193.27.66.0\/25", + "version":14961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.66.128", + "prefixLen":25, + "network":"193.27.66.128\/25", + "version":14960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.67.0", + "prefixLen":25, + "network":"193.27.67.0\/25", + "version":14959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.67.128", + "prefixLen":25, + "network":"193.27.67.128\/25", + "version":14958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.80.0", + "prefixLen":25, + "network":"193.27.80.0\/25", + "version":14957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.80.128", + "prefixLen":25, + "network":"193.27.80.128\/25", + "version":14956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.81.0", + "prefixLen":25, + "network":"193.27.81.0\/25", + "version":14955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.81.128", + "prefixLen":25, + "network":"193.27.81.128\/25", + "version":14954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.82.0", + "prefixLen":25, + "network":"193.27.82.0\/25", + "version":14953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.82.128", + "prefixLen":25, + "network":"193.27.82.128\/25", + "version":14952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.83.0", + "prefixLen":25, + "network":"193.27.83.0\/25", + "version":14951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.83.128", + "prefixLen":25, + "network":"193.27.83.128\/25", + "version":14950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.96.0", + "prefixLen":25, + "network":"193.27.96.0\/25", + "version":14949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.96.128", + "prefixLen":25, + "network":"193.27.96.128\/25", + "version":14948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.97.0", + "prefixLen":25, + "network":"193.27.97.0\/25", + "version":14947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.97.128", + "prefixLen":25, + "network":"193.27.97.128\/25", + "version":14946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.98.0", + "prefixLen":25, + "network":"193.27.98.0\/25", + "version":14945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.98.128", + "prefixLen":25, + "network":"193.27.98.128\/25", + "version":14944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.99.0", + "prefixLen":25, + "network":"193.27.99.0\/25", + "version":14943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.99.128", + "prefixLen":25, + "network":"193.27.99.128\/25", + "version":14942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.112.0", + "prefixLen":25, + "network":"193.27.112.0\/25", + "version":14941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.112.128", + "prefixLen":25, + "network":"193.27.112.128\/25", + "version":14940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.113.0", + "prefixLen":25, + "network":"193.27.113.0\/25", + "version":14939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.113.128", + "prefixLen":25, + "network":"193.27.113.128\/25", + "version":14938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.114.0", + "prefixLen":25, + "network":"193.27.114.0\/25", + "version":14937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.114.128", + "prefixLen":25, + "network":"193.27.114.128\/25", + "version":14936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.115.0", + "prefixLen":25, + "network":"193.27.115.0\/25", + "version":14935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.115.128", + "prefixLen":25, + "network":"193.27.115.128\/25", + "version":14934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.128.0", + "prefixLen":25, + "network":"193.27.128.0\/25", + "version":14933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.128.128", + "prefixLen":25, + "network":"193.27.128.128\/25", + "version":14932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.129.0", + "prefixLen":25, + "network":"193.27.129.0\/25", + "version":14931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.129.128", + "prefixLen":25, + "network":"193.27.129.128\/25", + "version":14930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.130.0", + "prefixLen":25, + "network":"193.27.130.0\/25", + "version":14929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.130.128", + "prefixLen":25, + "network":"193.27.130.128\/25", + "version":14928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.131.0", + "prefixLen":25, + "network":"193.27.131.0\/25", + "version":14927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.131.128", + "prefixLen":25, + "network":"193.27.131.128\/25", + "version":14926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.144.0", + "prefixLen":25, + "network":"193.27.144.0\/25", + "version":14925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.144.128", + "prefixLen":25, + "network":"193.27.144.128\/25", + "version":14924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.145.0", + "prefixLen":25, + "network":"193.27.145.0\/25", + "version":14923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.145.128", + "prefixLen":25, + "network":"193.27.145.128\/25", + "version":14922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.146.0", + "prefixLen":25, + "network":"193.27.146.0\/25", + "version":14921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.146.128", + "prefixLen":25, + "network":"193.27.146.128\/25", + "version":14920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.147.0", + "prefixLen":25, + "network":"193.27.147.0\/25", + "version":14919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.147.128", + "prefixLen":25, + "network":"193.27.147.128\/25", + "version":14918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.160.0", + "prefixLen":25, + "network":"193.27.160.0\/25", + "version":14917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.160.128", + "prefixLen":25, + "network":"193.27.160.128\/25", + "version":14916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.161.0", + "prefixLen":25, + "network":"193.27.161.0\/25", + "version":14915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.161.128", + "prefixLen":25, + "network":"193.27.161.128\/25", + "version":14914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.162.0", + "prefixLen":25, + "network":"193.27.162.0\/25", + "version":14913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.162.128", + "prefixLen":25, + "network":"193.27.162.128\/25", + "version":14912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.163.0", + "prefixLen":25, + "network":"193.27.163.0\/25", + "version":14911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.163.128", + "prefixLen":25, + "network":"193.27.163.128\/25", + "version":14910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.176.0", + "prefixLen":25, + "network":"193.27.176.0\/25", + "version":14909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.176.128", + "prefixLen":25, + "network":"193.27.176.128\/25", + "version":14908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.177.0", + "prefixLen":25, + "network":"193.27.177.0\/25", + "version":14907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.177.128", + "prefixLen":25, + "network":"193.27.177.128\/25", + "version":14906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.178.0", + "prefixLen":25, + "network":"193.27.178.0\/25", + "version":14905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.178.128", + "prefixLen":25, + "network":"193.27.178.128\/25", + "version":14904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.179.0", + "prefixLen":25, + "network":"193.27.179.0\/25", + "version":14903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.179.128", + "prefixLen":25, + "network":"193.27.179.128\/25", + "version":14902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.192.0", + "prefixLen":25, + "network":"193.27.192.0\/25", + "version":14901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.192.128", + "prefixLen":25, + "network":"193.27.192.128\/25", + "version":14900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.193.0", + "prefixLen":25, + "network":"193.27.193.0\/25", + "version":14899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.193.128", + "prefixLen":25, + "network":"193.27.193.128\/25", + "version":14898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.194.0", + "prefixLen":25, + "network":"193.27.194.0\/25", + "version":14897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.194.128", + "prefixLen":25, + "network":"193.27.194.128\/25", + "version":14896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.195.0", + "prefixLen":25, + "network":"193.27.195.0\/25", + "version":14895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.195.128", + "prefixLen":25, + "network":"193.27.195.128\/25", + "version":14894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.208.0", + "prefixLen":25, + "network":"193.27.208.0\/25", + "version":14893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.208.128", + "prefixLen":25, + "network":"193.27.208.128\/25", + "version":14892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.209.0", + "prefixLen":25, + "network":"193.27.209.0\/25", + "version":14891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.209.128", + "prefixLen":25, + "network":"193.27.209.128\/25", + "version":14890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.210.0", + "prefixLen":25, + "network":"193.27.210.0\/25", + "version":14889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.210.128", + "prefixLen":25, + "network":"193.27.210.128\/25", + "version":14888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.211.0", + "prefixLen":25, + "network":"193.27.211.0\/25", + "version":14887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.211.128", + "prefixLen":25, + "network":"193.27.211.128\/25", + "version":14886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.224.0", + "prefixLen":25, + "network":"193.27.224.0\/25", + "version":14885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.224.128", + "prefixLen":25, + "network":"193.27.224.128\/25", + "version":14884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.225.0", + "prefixLen":25, + "network":"193.27.225.0\/25", + "version":14883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.225.128", + "prefixLen":25, + "network":"193.27.225.128\/25", + "version":14882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.226.0", + "prefixLen":25, + "network":"193.27.226.0\/25", + "version":14881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.226.128", + "prefixLen":25, + "network":"193.27.226.128\/25", + "version":14880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.227.0", + "prefixLen":25, + "network":"193.27.227.0\/25", + "version":14879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.227.128", + "prefixLen":25, + "network":"193.27.227.128\/25", + "version":14878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.240.0", + "prefixLen":25, + "network":"193.27.240.0\/25", + "version":14877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.240.128", + "prefixLen":25, + "network":"193.27.240.128\/25", + "version":14876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.241.0", + "prefixLen":25, + "network":"193.27.241.0\/25", + "version":14875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.241.128", + "prefixLen":25, + "network":"193.27.241.128\/25", + "version":14874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.242.0", + "prefixLen":25, + "network":"193.27.242.0\/25", + "version":14873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.242.128", + "prefixLen":25, + "network":"193.27.242.128\/25", + "version":14872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.243.0", + "prefixLen":25, + "network":"193.27.243.0\/25", + "version":14871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.27.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.27.243.128", + "prefixLen":25, + "network":"193.27.243.128\/25", + "version":14870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64715 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.0.0", + "prefixLen":25, + "network":"193.28.0.0\/25", + "version":16277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.0.128", + "prefixLen":25, + "network":"193.28.0.128\/25", + "version":16404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.1.0", + "prefixLen":25, + "network":"193.28.1.0\/25", + "version":16403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.1.128", + "prefixLen":25, + "network":"193.28.1.128\/25", + "version":16402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.2.0", + "prefixLen":25, + "network":"193.28.2.0\/25", + "version":16401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.2.128", + "prefixLen":25, + "network":"193.28.2.128\/25", + "version":16400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.3.0", + "prefixLen":25, + "network":"193.28.3.0\/25", + "version":16399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.3.128", + "prefixLen":25, + "network":"193.28.3.128\/25", + "version":16398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.16.0", + "prefixLen":25, + "network":"193.28.16.0\/25", + "version":16397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.16.128", + "prefixLen":25, + "network":"193.28.16.128\/25", + "version":16396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.17.0", + "prefixLen":25, + "network":"193.28.17.0\/25", + "version":16395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.17.128", + "prefixLen":25, + "network":"193.28.17.128\/25", + "version":16394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.18.0", + "prefixLen":25, + "network":"193.28.18.0\/25", + "version":16393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.18.128", + "prefixLen":25, + "network":"193.28.18.128\/25", + "version":16392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.19.0", + "prefixLen":25, + "network":"193.28.19.0\/25", + "version":16391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.19.128", + "prefixLen":25, + "network":"193.28.19.128\/25", + "version":16390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.32.0", + "prefixLen":25, + "network":"193.28.32.0\/25", + "version":16389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.32.128", + "prefixLen":25, + "network":"193.28.32.128\/25", + "version":16388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.33.0", + "prefixLen":25, + "network":"193.28.33.0\/25", + "version":16387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.33.128", + "prefixLen":25, + "network":"193.28.33.128\/25", + "version":16386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.34.0", + "prefixLen":25, + "network":"193.28.34.0\/25", + "version":16385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.34.128", + "prefixLen":25, + "network":"193.28.34.128\/25", + "version":16384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.35.0", + "prefixLen":25, + "network":"193.28.35.0\/25", + "version":16383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.35.128", + "prefixLen":25, + "network":"193.28.35.128\/25", + "version":16382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.48.0", + "prefixLen":25, + "network":"193.28.48.0\/25", + "version":16381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.48.128", + "prefixLen":25, + "network":"193.28.48.128\/25", + "version":16380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.49.0", + "prefixLen":25, + "network":"193.28.49.0\/25", + "version":16379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.49.128", + "prefixLen":25, + "network":"193.28.49.128\/25", + "version":16378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.50.0", + "prefixLen":25, + "network":"193.28.50.0\/25", + "version":16377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.50.128", + "prefixLen":25, + "network":"193.28.50.128\/25", + "version":16376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.51.0", + "prefixLen":25, + "network":"193.28.51.0\/25", + "version":16375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.51.128", + "prefixLen":25, + "network":"193.28.51.128\/25", + "version":16374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.64.0", + "prefixLen":25, + "network":"193.28.64.0\/25", + "version":16373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.64.128", + "prefixLen":25, + "network":"193.28.64.128\/25", + "version":16372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.65.0", + "prefixLen":25, + "network":"193.28.65.0\/25", + "version":16371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.65.128", + "prefixLen":25, + "network":"193.28.65.128\/25", + "version":16370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.66.0", + "prefixLen":25, + "network":"193.28.66.0\/25", + "version":16369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.66.128", + "prefixLen":25, + "network":"193.28.66.128\/25", + "version":16368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.67.0", + "prefixLen":25, + "network":"193.28.67.0\/25", + "version":16367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.67.128", + "prefixLen":25, + "network":"193.28.67.128\/25", + "version":16366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.80.0", + "prefixLen":25, + "network":"193.28.80.0\/25", + "version":16365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.80.128", + "prefixLen":25, + "network":"193.28.80.128\/25", + "version":16364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.81.0", + "prefixLen":25, + "network":"193.28.81.0\/25", + "version":16363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.81.128", + "prefixLen":25, + "network":"193.28.81.128\/25", + "version":16362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.82.0", + "prefixLen":25, + "network":"193.28.82.0\/25", + "version":16361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.82.128", + "prefixLen":25, + "network":"193.28.82.128\/25", + "version":16360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.83.0", + "prefixLen":25, + "network":"193.28.83.0\/25", + "version":16359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.83.128", + "prefixLen":25, + "network":"193.28.83.128\/25", + "version":16358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.96.0", + "prefixLen":25, + "network":"193.28.96.0\/25", + "version":16357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.96.128", + "prefixLen":25, + "network":"193.28.96.128\/25", + "version":16356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.97.0", + "prefixLen":25, + "network":"193.28.97.0\/25", + "version":16355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.97.128", + "prefixLen":25, + "network":"193.28.97.128\/25", + "version":16354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.98.0", + "prefixLen":25, + "network":"193.28.98.0\/25", + "version":16353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.98.128", + "prefixLen":25, + "network":"193.28.98.128\/25", + "version":16352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.99.0", + "prefixLen":25, + "network":"193.28.99.0\/25", + "version":16351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.99.128", + "prefixLen":25, + "network":"193.28.99.128\/25", + "version":16350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.112.0", + "prefixLen":25, + "network":"193.28.112.0\/25", + "version":16349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.112.128", + "prefixLen":25, + "network":"193.28.112.128\/25", + "version":16348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.113.0", + "prefixLen":25, + "network":"193.28.113.0\/25", + "version":16347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.113.128", + "prefixLen":25, + "network":"193.28.113.128\/25", + "version":16346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.114.0", + "prefixLen":25, + "network":"193.28.114.0\/25", + "version":16345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.114.128", + "prefixLen":25, + "network":"193.28.114.128\/25", + "version":16344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.115.0", + "prefixLen":25, + "network":"193.28.115.0\/25", + "version":16343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.115.128", + "prefixLen":25, + "network":"193.28.115.128\/25", + "version":16342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.128.0", + "prefixLen":25, + "network":"193.28.128.0\/25", + "version":16341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.128.128", + "prefixLen":25, + "network":"193.28.128.128\/25", + "version":16340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.129.0", + "prefixLen":25, + "network":"193.28.129.0\/25", + "version":16339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.129.128", + "prefixLen":25, + "network":"193.28.129.128\/25", + "version":16338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.130.0", + "prefixLen":25, + "network":"193.28.130.0\/25", + "version":16337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.130.128", + "prefixLen":25, + "network":"193.28.130.128\/25", + "version":16336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.131.0", + "prefixLen":25, + "network":"193.28.131.0\/25", + "version":16335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.131.128", + "prefixLen":25, + "network":"193.28.131.128\/25", + "version":16334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.144.0", + "prefixLen":25, + "network":"193.28.144.0\/25", + "version":16333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.144.128", + "prefixLen":25, + "network":"193.28.144.128\/25", + "version":16332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.145.0", + "prefixLen":25, + "network":"193.28.145.0\/25", + "version":16331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.145.128", + "prefixLen":25, + "network":"193.28.145.128\/25", + "version":16330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.146.0", + "prefixLen":25, + "network":"193.28.146.0\/25", + "version":16329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.146.128", + "prefixLen":25, + "network":"193.28.146.128\/25", + "version":16328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.147.0", + "prefixLen":25, + "network":"193.28.147.0\/25", + "version":16327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.147.128", + "prefixLen":25, + "network":"193.28.147.128\/25", + "version":16326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.160.0", + "prefixLen":25, + "network":"193.28.160.0\/25", + "version":16325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.160.128", + "prefixLen":25, + "network":"193.28.160.128\/25", + "version":16324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.161.0", + "prefixLen":25, + "network":"193.28.161.0\/25", + "version":16323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.161.128", + "prefixLen":25, + "network":"193.28.161.128\/25", + "version":16322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.162.0", + "prefixLen":25, + "network":"193.28.162.0\/25", + "version":16321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.162.128", + "prefixLen":25, + "network":"193.28.162.128\/25", + "version":16320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.163.0", + "prefixLen":25, + "network":"193.28.163.0\/25", + "version":16319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.163.128", + "prefixLen":25, + "network":"193.28.163.128\/25", + "version":16318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.176.0", + "prefixLen":25, + "network":"193.28.176.0\/25", + "version":16317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.176.128", + "prefixLen":25, + "network":"193.28.176.128\/25", + "version":16316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.177.0", + "prefixLen":25, + "network":"193.28.177.0\/25", + "version":16315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.177.128", + "prefixLen":25, + "network":"193.28.177.128\/25", + "version":16314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.178.0", + "prefixLen":25, + "network":"193.28.178.0\/25", + "version":16313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.178.128", + "prefixLen":25, + "network":"193.28.178.128\/25", + "version":16312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.179.0", + "prefixLen":25, + "network":"193.28.179.0\/25", + "version":16311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.179.128", + "prefixLen":25, + "network":"193.28.179.128\/25", + "version":16310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.192.0", + "prefixLen":25, + "network":"193.28.192.0\/25", + "version":16309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.192.128", + "prefixLen":25, + "network":"193.28.192.128\/25", + "version":16308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.193.0", + "prefixLen":25, + "network":"193.28.193.0\/25", + "version":16307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.193.128", + "prefixLen":25, + "network":"193.28.193.128\/25", + "version":16306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.194.0", + "prefixLen":25, + "network":"193.28.194.0\/25", + "version":16305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.194.128", + "prefixLen":25, + "network":"193.28.194.128\/25", + "version":16304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.195.0", + "prefixLen":25, + "network":"193.28.195.0\/25", + "version":16303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.195.128", + "prefixLen":25, + "network":"193.28.195.128\/25", + "version":16302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.208.0", + "prefixLen":25, + "network":"193.28.208.0\/25", + "version":16301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.208.128", + "prefixLen":25, + "network":"193.28.208.128\/25", + "version":16300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.209.0", + "prefixLen":25, + "network":"193.28.209.0\/25", + "version":16299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.209.128", + "prefixLen":25, + "network":"193.28.209.128\/25", + "version":16298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.210.0", + "prefixLen":25, + "network":"193.28.210.0\/25", + "version":16297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.210.128", + "prefixLen":25, + "network":"193.28.210.128\/25", + "version":16296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.211.0", + "prefixLen":25, + "network":"193.28.211.0\/25", + "version":16295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.211.128", + "prefixLen":25, + "network":"193.28.211.128\/25", + "version":16294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.224.0", + "prefixLen":25, + "network":"193.28.224.0\/25", + "version":16293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.224.128", + "prefixLen":25, + "network":"193.28.224.128\/25", + "version":16292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.225.0", + "prefixLen":25, + "network":"193.28.225.0\/25", + "version":16291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.225.128", + "prefixLen":25, + "network":"193.28.225.128\/25", + "version":16290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.226.0", + "prefixLen":25, + "network":"193.28.226.0\/25", + "version":16289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.226.128", + "prefixLen":25, + "network":"193.28.226.128\/25", + "version":16288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.227.0", + "prefixLen":25, + "network":"193.28.227.0\/25", + "version":16287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.227.128", + "prefixLen":25, + "network":"193.28.227.128\/25", + "version":16286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.240.0", + "prefixLen":25, + "network":"193.28.240.0\/25", + "version":16285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.240.128", + "prefixLen":25, + "network":"193.28.240.128\/25", + "version":16284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.241.0", + "prefixLen":25, + "network":"193.28.241.0\/25", + "version":16283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.241.128", + "prefixLen":25, + "network":"193.28.241.128\/25", + "version":16282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.242.0", + "prefixLen":25, + "network":"193.28.242.0\/25", + "version":16281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.242.128", + "prefixLen":25, + "network":"193.28.242.128\/25", + "version":16280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.243.0", + "prefixLen":25, + "network":"193.28.243.0\/25", + "version":16279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.28.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.28.243.128", + "prefixLen":25, + "network":"193.28.243.128\/25", + "version":16278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64716 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.0.0", + "prefixLen":25, + "network":"193.29.0.0\/25", + "version":16405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.0.128", + "prefixLen":25, + "network":"193.29.0.128\/25", + "version":16532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.1.0", + "prefixLen":25, + "network":"193.29.1.0\/25", + "version":16531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.1.128", + "prefixLen":25, + "network":"193.29.1.128\/25", + "version":16530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.2.0", + "prefixLen":25, + "network":"193.29.2.0\/25", + "version":16529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.2.128", + "prefixLen":25, + "network":"193.29.2.128\/25", + "version":16528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.3.0", + "prefixLen":25, + "network":"193.29.3.0\/25", + "version":16527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.3.128", + "prefixLen":25, + "network":"193.29.3.128\/25", + "version":16526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.16.0", + "prefixLen":25, + "network":"193.29.16.0\/25", + "version":16525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.16.128", + "prefixLen":25, + "network":"193.29.16.128\/25", + "version":16524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.17.0", + "prefixLen":25, + "network":"193.29.17.0\/25", + "version":16523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.17.128", + "prefixLen":25, + "network":"193.29.17.128\/25", + "version":16522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.18.0", + "prefixLen":25, + "network":"193.29.18.0\/25", + "version":16521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.18.128", + "prefixLen":25, + "network":"193.29.18.128\/25", + "version":16520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.19.0", + "prefixLen":25, + "network":"193.29.19.0\/25", + "version":16519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.19.128", + "prefixLen":25, + "network":"193.29.19.128\/25", + "version":16518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.32.0", + "prefixLen":25, + "network":"193.29.32.0\/25", + "version":16517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.32.128", + "prefixLen":25, + "network":"193.29.32.128\/25", + "version":16516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.33.0", + "prefixLen":25, + "network":"193.29.33.0\/25", + "version":16515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.33.128", + "prefixLen":25, + "network":"193.29.33.128\/25", + "version":16514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.34.0", + "prefixLen":25, + "network":"193.29.34.0\/25", + "version":16513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.34.128", + "prefixLen":25, + "network":"193.29.34.128\/25", + "version":16512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.35.0", + "prefixLen":25, + "network":"193.29.35.0\/25", + "version":16511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.35.128", + "prefixLen":25, + "network":"193.29.35.128\/25", + "version":16510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.48.0", + "prefixLen":25, + "network":"193.29.48.0\/25", + "version":16509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.48.128", + "prefixLen":25, + "network":"193.29.48.128\/25", + "version":16508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.49.0", + "prefixLen":25, + "network":"193.29.49.0\/25", + "version":16507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.49.128", + "prefixLen":25, + "network":"193.29.49.128\/25", + "version":16506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.50.0", + "prefixLen":25, + "network":"193.29.50.0\/25", + "version":16505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.50.128", + "prefixLen":25, + "network":"193.29.50.128\/25", + "version":16504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.51.0", + "prefixLen":25, + "network":"193.29.51.0\/25", + "version":16503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.51.128", + "prefixLen":25, + "network":"193.29.51.128\/25", + "version":16502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.64.0", + "prefixLen":25, + "network":"193.29.64.0\/25", + "version":16501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.64.128", + "prefixLen":25, + "network":"193.29.64.128\/25", + "version":16500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.65.0", + "prefixLen":25, + "network":"193.29.65.0\/25", + "version":16499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.65.128", + "prefixLen":25, + "network":"193.29.65.128\/25", + "version":16498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.66.0", + "prefixLen":25, + "network":"193.29.66.0\/25", + "version":16497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.66.128", + "prefixLen":25, + "network":"193.29.66.128\/25", + "version":16496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.67.0", + "prefixLen":25, + "network":"193.29.67.0\/25", + "version":16495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.67.128", + "prefixLen":25, + "network":"193.29.67.128\/25", + "version":16494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.80.0", + "prefixLen":25, + "network":"193.29.80.0\/25", + "version":16493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.80.128", + "prefixLen":25, + "network":"193.29.80.128\/25", + "version":16492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.81.0", + "prefixLen":25, + "network":"193.29.81.0\/25", + "version":16491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.81.128", + "prefixLen":25, + "network":"193.29.81.128\/25", + "version":16490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.82.0", + "prefixLen":25, + "network":"193.29.82.0\/25", + "version":16489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.82.128", + "prefixLen":25, + "network":"193.29.82.128\/25", + "version":16488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.83.0", + "prefixLen":25, + "network":"193.29.83.0\/25", + "version":16487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.83.128", + "prefixLen":25, + "network":"193.29.83.128\/25", + "version":16486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.96.0", + "prefixLen":25, + "network":"193.29.96.0\/25", + "version":16485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.96.128", + "prefixLen":25, + "network":"193.29.96.128\/25", + "version":16484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.97.0", + "prefixLen":25, + "network":"193.29.97.0\/25", + "version":16483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.97.128", + "prefixLen":25, + "network":"193.29.97.128\/25", + "version":16482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.98.0", + "prefixLen":25, + "network":"193.29.98.0\/25", + "version":16481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.98.128", + "prefixLen":25, + "network":"193.29.98.128\/25", + "version":16480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.99.0", + "prefixLen":25, + "network":"193.29.99.0\/25", + "version":16479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.99.128", + "prefixLen":25, + "network":"193.29.99.128\/25", + "version":16478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.112.0", + "prefixLen":25, + "network":"193.29.112.0\/25", + "version":16477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.112.128", + "prefixLen":25, + "network":"193.29.112.128\/25", + "version":16476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.113.0", + "prefixLen":25, + "network":"193.29.113.0\/25", + "version":16475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.113.128", + "prefixLen":25, + "network":"193.29.113.128\/25", + "version":16474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.114.0", + "prefixLen":25, + "network":"193.29.114.0\/25", + "version":16473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.114.128", + "prefixLen":25, + "network":"193.29.114.128\/25", + "version":16472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.115.0", + "prefixLen":25, + "network":"193.29.115.0\/25", + "version":16471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.115.128", + "prefixLen":25, + "network":"193.29.115.128\/25", + "version":16470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.128.0", + "prefixLen":25, + "network":"193.29.128.0\/25", + "version":16469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.128.128", + "prefixLen":25, + "network":"193.29.128.128\/25", + "version":16468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.129.0", + "prefixLen":25, + "network":"193.29.129.0\/25", + "version":16467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.129.128", + "prefixLen":25, + "network":"193.29.129.128\/25", + "version":16466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.130.0", + "prefixLen":25, + "network":"193.29.130.0\/25", + "version":16465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.130.128", + "prefixLen":25, + "network":"193.29.130.128\/25", + "version":16464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.131.0", + "prefixLen":25, + "network":"193.29.131.0\/25", + "version":16463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.131.128", + "prefixLen":25, + "network":"193.29.131.128\/25", + "version":16462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.144.0", + "prefixLen":25, + "network":"193.29.144.0\/25", + "version":16461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.144.128", + "prefixLen":25, + "network":"193.29.144.128\/25", + "version":16460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.145.0", + "prefixLen":25, + "network":"193.29.145.0\/25", + "version":16459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.145.128", + "prefixLen":25, + "network":"193.29.145.128\/25", + "version":16458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.146.0", + "prefixLen":25, + "network":"193.29.146.0\/25", + "version":16457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.146.128", + "prefixLen":25, + "network":"193.29.146.128\/25", + "version":16456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.147.0", + "prefixLen":25, + "network":"193.29.147.0\/25", + "version":16455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.147.128", + "prefixLen":25, + "network":"193.29.147.128\/25", + "version":16454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.160.0", + "prefixLen":25, + "network":"193.29.160.0\/25", + "version":16453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.160.128", + "prefixLen":25, + "network":"193.29.160.128\/25", + "version":16452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.161.0", + "prefixLen":25, + "network":"193.29.161.0\/25", + "version":16451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.161.128", + "prefixLen":25, + "network":"193.29.161.128\/25", + "version":16450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.162.0", + "prefixLen":25, + "network":"193.29.162.0\/25", + "version":16449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.162.128", + "prefixLen":25, + "network":"193.29.162.128\/25", + "version":16448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.163.0", + "prefixLen":25, + "network":"193.29.163.0\/25", + "version":16447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.163.128", + "prefixLen":25, + "network":"193.29.163.128\/25", + "version":16446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.176.0", + "prefixLen":25, + "network":"193.29.176.0\/25", + "version":16445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.176.128", + "prefixLen":25, + "network":"193.29.176.128\/25", + "version":16444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.177.0", + "prefixLen":25, + "network":"193.29.177.0\/25", + "version":16443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.177.128", + "prefixLen":25, + "network":"193.29.177.128\/25", + "version":16442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.178.0", + "prefixLen":25, + "network":"193.29.178.0\/25", + "version":16441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.178.128", + "prefixLen":25, + "network":"193.29.178.128\/25", + "version":16440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.179.0", + "prefixLen":25, + "network":"193.29.179.0\/25", + "version":16439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.179.128", + "prefixLen":25, + "network":"193.29.179.128\/25", + "version":16438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.192.0", + "prefixLen":25, + "network":"193.29.192.0\/25", + "version":16437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.192.128", + "prefixLen":25, + "network":"193.29.192.128\/25", + "version":16436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.193.0", + "prefixLen":25, + "network":"193.29.193.0\/25", + "version":16435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.193.128", + "prefixLen":25, + "network":"193.29.193.128\/25", + "version":16434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.194.0", + "prefixLen":25, + "network":"193.29.194.0\/25", + "version":16433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.194.128", + "prefixLen":25, + "network":"193.29.194.128\/25", + "version":16432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.195.0", + "prefixLen":25, + "network":"193.29.195.0\/25", + "version":16431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.195.128", + "prefixLen":25, + "network":"193.29.195.128\/25", + "version":16430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.208.0", + "prefixLen":25, + "network":"193.29.208.0\/25", + "version":16429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.208.128", + "prefixLen":25, + "network":"193.29.208.128\/25", + "version":16428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.209.0", + "prefixLen":25, + "network":"193.29.209.0\/25", + "version":16427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.209.128", + "prefixLen":25, + "network":"193.29.209.128\/25", + "version":16426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.210.0", + "prefixLen":25, + "network":"193.29.210.0\/25", + "version":16425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.210.128", + "prefixLen":25, + "network":"193.29.210.128\/25", + "version":16424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.211.0", + "prefixLen":25, + "network":"193.29.211.0\/25", + "version":16423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.211.128", + "prefixLen":25, + "network":"193.29.211.128\/25", + "version":16422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.224.0", + "prefixLen":25, + "network":"193.29.224.0\/25", + "version":16421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.224.128", + "prefixLen":25, + "network":"193.29.224.128\/25", + "version":16420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.225.0", + "prefixLen":25, + "network":"193.29.225.0\/25", + "version":16419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.225.128", + "prefixLen":25, + "network":"193.29.225.128\/25", + "version":16418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.226.0", + "prefixLen":25, + "network":"193.29.226.0\/25", + "version":16417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.226.128", + "prefixLen":25, + "network":"193.29.226.128\/25", + "version":16416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.227.0", + "prefixLen":25, + "network":"193.29.227.0\/25", + "version":16415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.227.128", + "prefixLen":25, + "network":"193.29.227.128\/25", + "version":16414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.240.0", + "prefixLen":25, + "network":"193.29.240.0\/25", + "version":16413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.240.128", + "prefixLen":25, + "network":"193.29.240.128\/25", + "version":16412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.241.0", + "prefixLen":25, + "network":"193.29.241.0\/25", + "version":16411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.241.128", + "prefixLen":25, + "network":"193.29.241.128\/25", + "version":16410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.242.0", + "prefixLen":25, + "network":"193.29.242.0\/25", + "version":16409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.242.128", + "prefixLen":25, + "network":"193.29.242.128\/25", + "version":16408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.243.0", + "prefixLen":25, + "network":"193.29.243.0\/25", + "version":16407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.29.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.29.243.128", + "prefixLen":25, + "network":"193.29.243.128\/25", + "version":16406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64717 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.0.0", + "prefixLen":25, + "network":"193.30.0.0\/25", + "version":16533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.0.128", + "prefixLen":25, + "network":"193.30.0.128\/25", + "version":16660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.1.0", + "prefixLen":25, + "network":"193.30.1.0\/25", + "version":16659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.1.128", + "prefixLen":25, + "network":"193.30.1.128\/25", + "version":16658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.2.0", + "prefixLen":25, + "network":"193.30.2.0\/25", + "version":16657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.2.128", + "prefixLen":25, + "network":"193.30.2.128\/25", + "version":16656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.3.0", + "prefixLen":25, + "network":"193.30.3.0\/25", + "version":16655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.3.128", + "prefixLen":25, + "network":"193.30.3.128\/25", + "version":16654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.16.0", + "prefixLen":25, + "network":"193.30.16.0\/25", + "version":16653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.16.128", + "prefixLen":25, + "network":"193.30.16.128\/25", + "version":16652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.17.0", + "prefixLen":25, + "network":"193.30.17.0\/25", + "version":16651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.17.128", + "prefixLen":25, + "network":"193.30.17.128\/25", + "version":16650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.18.0", + "prefixLen":25, + "network":"193.30.18.0\/25", + "version":16649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.18.128", + "prefixLen":25, + "network":"193.30.18.128\/25", + "version":16648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.19.0", + "prefixLen":25, + "network":"193.30.19.0\/25", + "version":16647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.19.128", + "prefixLen":25, + "network":"193.30.19.128\/25", + "version":16646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.32.0", + "prefixLen":25, + "network":"193.30.32.0\/25", + "version":16645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.32.128", + "prefixLen":25, + "network":"193.30.32.128\/25", + "version":16644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.33.0", + "prefixLen":25, + "network":"193.30.33.0\/25", + "version":16643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.33.128", + "prefixLen":25, + "network":"193.30.33.128\/25", + "version":16642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.34.0", + "prefixLen":25, + "network":"193.30.34.0\/25", + "version":16641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.34.128", + "prefixLen":25, + "network":"193.30.34.128\/25", + "version":16640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.35.0", + "prefixLen":25, + "network":"193.30.35.0\/25", + "version":16639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.35.128", + "prefixLen":25, + "network":"193.30.35.128\/25", + "version":16638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.48.0", + "prefixLen":25, + "network":"193.30.48.0\/25", + "version":16637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.48.128", + "prefixLen":25, + "network":"193.30.48.128\/25", + "version":16636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.49.0", + "prefixLen":25, + "network":"193.30.49.0\/25", + "version":16635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.49.128", + "prefixLen":25, + "network":"193.30.49.128\/25", + "version":16634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.50.0", + "prefixLen":25, + "network":"193.30.50.0\/25", + "version":16633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.50.128", + "prefixLen":25, + "network":"193.30.50.128\/25", + "version":16632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.51.0", + "prefixLen":25, + "network":"193.30.51.0\/25", + "version":16631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.51.128", + "prefixLen":25, + "network":"193.30.51.128\/25", + "version":16630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.64.0", + "prefixLen":25, + "network":"193.30.64.0\/25", + "version":16629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.64.128", + "prefixLen":25, + "network":"193.30.64.128\/25", + "version":16628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.65.0", + "prefixLen":25, + "network":"193.30.65.0\/25", + "version":16627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.65.128", + "prefixLen":25, + "network":"193.30.65.128\/25", + "version":16626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.66.0", + "prefixLen":25, + "network":"193.30.66.0\/25", + "version":16625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.66.128", + "prefixLen":25, + "network":"193.30.66.128\/25", + "version":16624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.67.0", + "prefixLen":25, + "network":"193.30.67.0\/25", + "version":16623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.67.128", + "prefixLen":25, + "network":"193.30.67.128\/25", + "version":16622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.80.0", + "prefixLen":25, + "network":"193.30.80.0\/25", + "version":16621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.80.128", + "prefixLen":25, + "network":"193.30.80.128\/25", + "version":16620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.81.0", + "prefixLen":25, + "network":"193.30.81.0\/25", + "version":16619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.81.128", + "prefixLen":25, + "network":"193.30.81.128\/25", + "version":16618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.82.0", + "prefixLen":25, + "network":"193.30.82.0\/25", + "version":16617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.82.128", + "prefixLen":25, + "network":"193.30.82.128\/25", + "version":16616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.83.0", + "prefixLen":25, + "network":"193.30.83.0\/25", + "version":16615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.83.128", + "prefixLen":25, + "network":"193.30.83.128\/25", + "version":16614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.96.0", + "prefixLen":25, + "network":"193.30.96.0\/25", + "version":16613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.96.128", + "prefixLen":25, + "network":"193.30.96.128\/25", + "version":16612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.97.0", + "prefixLen":25, + "network":"193.30.97.0\/25", + "version":16611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.97.128", + "prefixLen":25, + "network":"193.30.97.128\/25", + "version":16610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.98.0", + "prefixLen":25, + "network":"193.30.98.0\/25", + "version":16609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.98.128", + "prefixLen":25, + "network":"193.30.98.128\/25", + "version":16608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.99.0", + "prefixLen":25, + "network":"193.30.99.0\/25", + "version":16607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.99.128", + "prefixLen":25, + "network":"193.30.99.128\/25", + "version":16606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.112.0", + "prefixLen":25, + "network":"193.30.112.0\/25", + "version":16605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.112.128", + "prefixLen":25, + "network":"193.30.112.128\/25", + "version":16604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.113.0", + "prefixLen":25, + "network":"193.30.113.0\/25", + "version":16603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.113.128", + "prefixLen":25, + "network":"193.30.113.128\/25", + "version":16602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.114.0", + "prefixLen":25, + "network":"193.30.114.0\/25", + "version":16601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.114.128", + "prefixLen":25, + "network":"193.30.114.128\/25", + "version":16600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.115.0", + "prefixLen":25, + "network":"193.30.115.0\/25", + "version":16599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.115.128", + "prefixLen":25, + "network":"193.30.115.128\/25", + "version":16598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.128.0", + "prefixLen":25, + "network":"193.30.128.0\/25", + "version":16597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.128.128", + "prefixLen":25, + "network":"193.30.128.128\/25", + "version":16596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.129.0", + "prefixLen":25, + "network":"193.30.129.0\/25", + "version":16595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.129.128", + "prefixLen":25, + "network":"193.30.129.128\/25", + "version":16594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.130.0", + "prefixLen":25, + "network":"193.30.130.0\/25", + "version":16593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.130.128", + "prefixLen":25, + "network":"193.30.130.128\/25", + "version":16592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.131.0", + "prefixLen":25, + "network":"193.30.131.0\/25", + "version":16591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.131.128", + "prefixLen":25, + "network":"193.30.131.128\/25", + "version":16590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.144.0", + "prefixLen":25, + "network":"193.30.144.0\/25", + "version":16589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.144.128", + "prefixLen":25, + "network":"193.30.144.128\/25", + "version":16588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.145.0", + "prefixLen":25, + "network":"193.30.145.0\/25", + "version":16587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.145.128", + "prefixLen":25, + "network":"193.30.145.128\/25", + "version":16586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.146.0", + "prefixLen":25, + "network":"193.30.146.0\/25", + "version":16585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.146.128", + "prefixLen":25, + "network":"193.30.146.128\/25", + "version":16584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.147.0", + "prefixLen":25, + "network":"193.30.147.0\/25", + "version":16583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.147.128", + "prefixLen":25, + "network":"193.30.147.128\/25", + "version":16582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.160.0", + "prefixLen":25, + "network":"193.30.160.0\/25", + "version":16581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.160.128", + "prefixLen":25, + "network":"193.30.160.128\/25", + "version":16580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.161.0", + "prefixLen":25, + "network":"193.30.161.0\/25", + "version":16579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.161.128", + "prefixLen":25, + "network":"193.30.161.128\/25", + "version":16578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.162.0", + "prefixLen":25, + "network":"193.30.162.0\/25", + "version":16577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.162.128", + "prefixLen":25, + "network":"193.30.162.128\/25", + "version":16576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.163.0", + "prefixLen":25, + "network":"193.30.163.0\/25", + "version":16575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.163.128", + "prefixLen":25, + "network":"193.30.163.128\/25", + "version":16574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.176.0", + "prefixLen":25, + "network":"193.30.176.0\/25", + "version":16573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.176.128", + "prefixLen":25, + "network":"193.30.176.128\/25", + "version":16572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.177.0", + "prefixLen":25, + "network":"193.30.177.0\/25", + "version":16571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.177.128", + "prefixLen":25, + "network":"193.30.177.128\/25", + "version":16570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.178.0", + "prefixLen":25, + "network":"193.30.178.0\/25", + "version":16569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.178.128", + "prefixLen":25, + "network":"193.30.178.128\/25", + "version":16568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.179.0", + "prefixLen":25, + "network":"193.30.179.0\/25", + "version":16567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.179.128", + "prefixLen":25, + "network":"193.30.179.128\/25", + "version":16566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.192.0", + "prefixLen":25, + "network":"193.30.192.0\/25", + "version":16565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.192.128", + "prefixLen":25, + "network":"193.30.192.128\/25", + "version":16564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.193.0", + "prefixLen":25, + "network":"193.30.193.0\/25", + "version":16563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.193.128", + "prefixLen":25, + "network":"193.30.193.128\/25", + "version":16562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.194.0", + "prefixLen":25, + "network":"193.30.194.0\/25", + "version":16561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.194.128", + "prefixLen":25, + "network":"193.30.194.128\/25", + "version":16560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.195.0", + "prefixLen":25, + "network":"193.30.195.0\/25", + "version":16559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.195.128", + "prefixLen":25, + "network":"193.30.195.128\/25", + "version":16558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.208.0", + "prefixLen":25, + "network":"193.30.208.0\/25", + "version":16557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.208.128", + "prefixLen":25, + "network":"193.30.208.128\/25", + "version":16556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.209.0", + "prefixLen":25, + "network":"193.30.209.0\/25", + "version":16555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.209.128", + "prefixLen":25, + "network":"193.30.209.128\/25", + "version":16554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.210.0", + "prefixLen":25, + "network":"193.30.210.0\/25", + "version":16553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.210.128", + "prefixLen":25, + "network":"193.30.210.128\/25", + "version":16552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.211.0", + "prefixLen":25, + "network":"193.30.211.0\/25", + "version":16551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.211.128", + "prefixLen":25, + "network":"193.30.211.128\/25", + "version":16550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.224.0", + "prefixLen":25, + "network":"193.30.224.0\/25", + "version":16549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.224.128", + "prefixLen":25, + "network":"193.30.224.128\/25", + "version":16548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.225.0", + "prefixLen":25, + "network":"193.30.225.0\/25", + "version":16547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.225.128", + "prefixLen":25, + "network":"193.30.225.128\/25", + "version":16546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.226.0", + "prefixLen":25, + "network":"193.30.226.0\/25", + "version":16545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.226.128", + "prefixLen":25, + "network":"193.30.226.128\/25", + "version":16544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.227.0", + "prefixLen":25, + "network":"193.30.227.0\/25", + "version":16543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.227.128", + "prefixLen":25, + "network":"193.30.227.128\/25", + "version":16542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.240.0", + "prefixLen":25, + "network":"193.30.240.0\/25", + "version":16541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.240.128", + "prefixLen":25, + "network":"193.30.240.128\/25", + "version":16540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.241.0", + "prefixLen":25, + "network":"193.30.241.0\/25", + "version":16539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.241.128", + "prefixLen":25, + "network":"193.30.241.128\/25", + "version":16538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.242.0", + "prefixLen":25, + "network":"193.30.242.0\/25", + "version":16537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.242.128", + "prefixLen":25, + "network":"193.30.242.128\/25", + "version":16536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.243.0", + "prefixLen":25, + "network":"193.30.243.0\/25", + "version":16535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.30.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.30.243.128", + "prefixLen":25, + "network":"193.30.243.128\/25", + "version":16534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64718 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.0.0", + "prefixLen":25, + "network":"193.31.0.0\/25", + "version":16661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.0.128", + "prefixLen":25, + "network":"193.31.0.128\/25", + "version":16788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.1.0", + "prefixLen":25, + "network":"193.31.1.0\/25", + "version":16787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.1.128", + "prefixLen":25, + "network":"193.31.1.128\/25", + "version":16786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.2.0", + "prefixLen":25, + "network":"193.31.2.0\/25", + "version":16785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.2.128", + "prefixLen":25, + "network":"193.31.2.128\/25", + "version":16784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.3.0", + "prefixLen":25, + "network":"193.31.3.0\/25", + "version":16783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.3.128", + "prefixLen":25, + "network":"193.31.3.128\/25", + "version":16782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.16.0", + "prefixLen":25, + "network":"193.31.16.0\/25", + "version":16781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.16.128", + "prefixLen":25, + "network":"193.31.16.128\/25", + "version":16780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.17.0", + "prefixLen":25, + "network":"193.31.17.0\/25", + "version":16779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.17.128", + "prefixLen":25, + "network":"193.31.17.128\/25", + "version":16778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.18.0", + "prefixLen":25, + "network":"193.31.18.0\/25", + "version":16777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.18.128", + "prefixLen":25, + "network":"193.31.18.128\/25", + "version":16776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.19.0", + "prefixLen":25, + "network":"193.31.19.0\/25", + "version":16775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.19.128", + "prefixLen":25, + "network":"193.31.19.128\/25", + "version":16774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.32.0", + "prefixLen":25, + "network":"193.31.32.0\/25", + "version":16773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.32.128", + "prefixLen":25, + "network":"193.31.32.128\/25", + "version":16772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.33.0", + "prefixLen":25, + "network":"193.31.33.0\/25", + "version":16771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.33.128", + "prefixLen":25, + "network":"193.31.33.128\/25", + "version":16770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.34.0", + "prefixLen":25, + "network":"193.31.34.0\/25", + "version":16769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.34.128", + "prefixLen":25, + "network":"193.31.34.128\/25", + "version":16768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.35.0", + "prefixLen":25, + "network":"193.31.35.0\/25", + "version":16767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.35.128", + "prefixLen":25, + "network":"193.31.35.128\/25", + "version":16766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.48.0", + "prefixLen":25, + "network":"193.31.48.0\/25", + "version":16765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.48.128", + "prefixLen":25, + "network":"193.31.48.128\/25", + "version":16764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.49.0", + "prefixLen":25, + "network":"193.31.49.0\/25", + "version":16763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.49.128", + "prefixLen":25, + "network":"193.31.49.128\/25", + "version":16762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.50.0", + "prefixLen":25, + "network":"193.31.50.0\/25", + "version":16761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.50.128", + "prefixLen":25, + "network":"193.31.50.128\/25", + "version":16760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.51.0", + "prefixLen":25, + "network":"193.31.51.0\/25", + "version":16759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.51.128", + "prefixLen":25, + "network":"193.31.51.128\/25", + "version":16758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.64.0", + "prefixLen":25, + "network":"193.31.64.0\/25", + "version":16757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.64.128", + "prefixLen":25, + "network":"193.31.64.128\/25", + "version":16756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.65.0", + "prefixLen":25, + "network":"193.31.65.0\/25", + "version":16755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.65.128", + "prefixLen":25, + "network":"193.31.65.128\/25", + "version":16754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.66.0", + "prefixLen":25, + "network":"193.31.66.0\/25", + "version":16753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.66.128", + "prefixLen":25, + "network":"193.31.66.128\/25", + "version":16752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.67.0", + "prefixLen":25, + "network":"193.31.67.0\/25", + "version":16751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.67.128", + "prefixLen":25, + "network":"193.31.67.128\/25", + "version":16750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.80.0", + "prefixLen":25, + "network":"193.31.80.0\/25", + "version":16749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.80.128", + "prefixLen":25, + "network":"193.31.80.128\/25", + "version":16748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.81.0", + "prefixLen":25, + "network":"193.31.81.0\/25", + "version":16747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.81.128", + "prefixLen":25, + "network":"193.31.81.128\/25", + "version":16746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.82.0", + "prefixLen":25, + "network":"193.31.82.0\/25", + "version":16745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.82.128", + "prefixLen":25, + "network":"193.31.82.128\/25", + "version":16744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.83.0", + "prefixLen":25, + "network":"193.31.83.0\/25", + "version":16743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.83.128", + "prefixLen":25, + "network":"193.31.83.128\/25", + "version":16742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.96.0", + "prefixLen":25, + "network":"193.31.96.0\/25", + "version":16741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.96.128", + "prefixLen":25, + "network":"193.31.96.128\/25", + "version":16740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.97.0", + "prefixLen":25, + "network":"193.31.97.0\/25", + "version":16739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.97.128", + "prefixLen":25, + "network":"193.31.97.128\/25", + "version":16738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.98.0", + "prefixLen":25, + "network":"193.31.98.0\/25", + "version":16737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.98.128", + "prefixLen":25, + "network":"193.31.98.128\/25", + "version":16736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.99.0", + "prefixLen":25, + "network":"193.31.99.0\/25", + "version":16735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.99.128", + "prefixLen":25, + "network":"193.31.99.128\/25", + "version":16734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.112.0", + "prefixLen":25, + "network":"193.31.112.0\/25", + "version":16733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.112.128", + "prefixLen":25, + "network":"193.31.112.128\/25", + "version":16732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.113.0", + "prefixLen":25, + "network":"193.31.113.0\/25", + "version":16731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.113.128", + "prefixLen":25, + "network":"193.31.113.128\/25", + "version":16730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.114.0", + "prefixLen":25, + "network":"193.31.114.0\/25", + "version":16729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.114.128", + "prefixLen":25, + "network":"193.31.114.128\/25", + "version":16728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.115.0", + "prefixLen":25, + "network":"193.31.115.0\/25", + "version":16727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.115.128", + "prefixLen":25, + "network":"193.31.115.128\/25", + "version":16726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.128.0", + "prefixLen":25, + "network":"193.31.128.0\/25", + "version":16725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.128.128", + "prefixLen":25, + "network":"193.31.128.128\/25", + "version":16724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.129.0", + "prefixLen":25, + "network":"193.31.129.0\/25", + "version":16723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.129.128", + "prefixLen":25, + "network":"193.31.129.128\/25", + "version":16722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.130.0", + "prefixLen":25, + "network":"193.31.130.0\/25", + "version":16721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.130.128", + "prefixLen":25, + "network":"193.31.130.128\/25", + "version":16720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.131.0", + "prefixLen":25, + "network":"193.31.131.0\/25", + "version":16719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.131.128", + "prefixLen":25, + "network":"193.31.131.128\/25", + "version":16718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.144.0", + "prefixLen":25, + "network":"193.31.144.0\/25", + "version":16717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.144.128", + "prefixLen":25, + "network":"193.31.144.128\/25", + "version":16716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.145.0", + "prefixLen":25, + "network":"193.31.145.0\/25", + "version":16715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.145.128", + "prefixLen":25, + "network":"193.31.145.128\/25", + "version":16714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.146.0", + "prefixLen":25, + "network":"193.31.146.0\/25", + "version":16713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.146.128", + "prefixLen":25, + "network":"193.31.146.128\/25", + "version":16712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.147.0", + "prefixLen":25, + "network":"193.31.147.0\/25", + "version":16711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.147.128", + "prefixLen":25, + "network":"193.31.147.128\/25", + "version":16710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.160.0", + "prefixLen":25, + "network":"193.31.160.0\/25", + "version":16709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.160.128", + "prefixLen":25, + "network":"193.31.160.128\/25", + "version":16708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.161.0", + "prefixLen":25, + "network":"193.31.161.0\/25", + "version":16707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.161.128", + "prefixLen":25, + "network":"193.31.161.128\/25", + "version":16706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.162.0", + "prefixLen":25, + "network":"193.31.162.0\/25", + "version":16705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.162.128", + "prefixLen":25, + "network":"193.31.162.128\/25", + "version":16704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.163.0", + "prefixLen":25, + "network":"193.31.163.0\/25", + "version":16703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.163.128", + "prefixLen":25, + "network":"193.31.163.128\/25", + "version":16702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.176.0", + "prefixLen":25, + "network":"193.31.176.0\/25", + "version":16701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.176.128", + "prefixLen":25, + "network":"193.31.176.128\/25", + "version":16700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.177.0", + "prefixLen":25, + "network":"193.31.177.0\/25", + "version":16699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.177.128", + "prefixLen":25, + "network":"193.31.177.128\/25", + "version":16698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.178.0", + "prefixLen":25, + "network":"193.31.178.0\/25", + "version":16697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.178.128", + "prefixLen":25, + "network":"193.31.178.128\/25", + "version":16696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.179.0", + "prefixLen":25, + "network":"193.31.179.0\/25", + "version":16695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.179.128", + "prefixLen":25, + "network":"193.31.179.128\/25", + "version":16694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.192.0", + "prefixLen":25, + "network":"193.31.192.0\/25", + "version":16693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.192.128", + "prefixLen":25, + "network":"193.31.192.128\/25", + "version":16692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.193.0", + "prefixLen":25, + "network":"193.31.193.0\/25", + "version":16691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.193.128", + "prefixLen":25, + "network":"193.31.193.128\/25", + "version":16690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.194.0", + "prefixLen":25, + "network":"193.31.194.0\/25", + "version":16689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.194.128", + "prefixLen":25, + "network":"193.31.194.128\/25", + "version":16688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.195.0", + "prefixLen":25, + "network":"193.31.195.0\/25", + "version":16687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.195.128", + "prefixLen":25, + "network":"193.31.195.128\/25", + "version":16686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.208.0", + "prefixLen":25, + "network":"193.31.208.0\/25", + "version":16685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.208.128", + "prefixLen":25, + "network":"193.31.208.128\/25", + "version":16684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.209.0", + "prefixLen":25, + "network":"193.31.209.0\/25", + "version":16683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.209.128", + "prefixLen":25, + "network":"193.31.209.128\/25", + "version":16682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.210.0", + "prefixLen":25, + "network":"193.31.210.0\/25", + "version":16681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.210.128", + "prefixLen":25, + "network":"193.31.210.128\/25", + "version":16680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.211.0", + "prefixLen":25, + "network":"193.31.211.0\/25", + "version":16679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.211.128", + "prefixLen":25, + "network":"193.31.211.128\/25", + "version":16678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.224.0", + "prefixLen":25, + "network":"193.31.224.0\/25", + "version":16677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.224.128", + "prefixLen":25, + "network":"193.31.224.128\/25", + "version":16676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.225.0", + "prefixLen":25, + "network":"193.31.225.0\/25", + "version":16675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.225.128", + "prefixLen":25, + "network":"193.31.225.128\/25", + "version":16674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.226.0", + "prefixLen":25, + "network":"193.31.226.0\/25", + "version":16673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.226.128", + "prefixLen":25, + "network":"193.31.226.128\/25", + "version":16672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.227.0", + "prefixLen":25, + "network":"193.31.227.0\/25", + "version":16671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.227.128", + "prefixLen":25, + "network":"193.31.227.128\/25", + "version":16670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.240.0", + "prefixLen":25, + "network":"193.31.240.0\/25", + "version":16669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.240.128", + "prefixLen":25, + "network":"193.31.240.128\/25", + "version":16668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.241.0", + "prefixLen":25, + "network":"193.31.241.0\/25", + "version":16667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.241.128", + "prefixLen":25, + "network":"193.31.241.128\/25", + "version":16666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.242.0", + "prefixLen":25, + "network":"193.31.242.0\/25", + "version":16665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.242.128", + "prefixLen":25, + "network":"193.31.242.128\/25", + "version":16664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.243.0", + "prefixLen":25, + "network":"193.31.243.0\/25", + "version":16663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.31.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.31.243.128", + "prefixLen":25, + "network":"193.31.243.128\/25", + "version":16662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64719 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.0.0", + "prefixLen":25, + "network":"193.32.0.0\/25", + "version":16789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.0.128", + "prefixLen":25, + "network":"193.32.0.128\/25", + "version":16916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.1.0", + "prefixLen":25, + "network":"193.32.1.0\/25", + "version":16915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.1.128", + "prefixLen":25, + "network":"193.32.1.128\/25", + "version":16914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.2.0", + "prefixLen":25, + "network":"193.32.2.0\/25", + "version":16913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.2.128", + "prefixLen":25, + "network":"193.32.2.128\/25", + "version":16912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.3.0", + "prefixLen":25, + "network":"193.32.3.0\/25", + "version":16911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.3.128", + "prefixLen":25, + "network":"193.32.3.128\/25", + "version":16910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.16.0", + "prefixLen":25, + "network":"193.32.16.0\/25", + "version":16909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.16.128", + "prefixLen":25, + "network":"193.32.16.128\/25", + "version":16908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.17.0", + "prefixLen":25, + "network":"193.32.17.0\/25", + "version":16907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.17.128", + "prefixLen":25, + "network":"193.32.17.128\/25", + "version":16906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.18.0", + "prefixLen":25, + "network":"193.32.18.0\/25", + "version":16905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.18.128", + "prefixLen":25, + "network":"193.32.18.128\/25", + "version":16904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.19.0", + "prefixLen":25, + "network":"193.32.19.0\/25", + "version":16903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.19.128", + "prefixLen":25, + "network":"193.32.19.128\/25", + "version":16902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.32.0", + "prefixLen":25, + "network":"193.32.32.0\/25", + "version":16901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.32.128", + "prefixLen":25, + "network":"193.32.32.128\/25", + "version":16900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.33.0", + "prefixLen":25, + "network":"193.32.33.0\/25", + "version":16899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.33.128", + "prefixLen":25, + "network":"193.32.33.128\/25", + "version":16898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.34.0", + "prefixLen":25, + "network":"193.32.34.0\/25", + "version":16897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.34.128", + "prefixLen":25, + "network":"193.32.34.128\/25", + "version":16896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.35.0", + "prefixLen":25, + "network":"193.32.35.0\/25", + "version":16895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.35.128", + "prefixLen":25, + "network":"193.32.35.128\/25", + "version":16894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.48.0", + "prefixLen":25, + "network":"193.32.48.0\/25", + "version":16893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.48.128", + "prefixLen":25, + "network":"193.32.48.128\/25", + "version":16892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.49.0", + "prefixLen":25, + "network":"193.32.49.0\/25", + "version":16891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.49.128", + "prefixLen":25, + "network":"193.32.49.128\/25", + "version":16890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.50.0", + "prefixLen":25, + "network":"193.32.50.0\/25", + "version":16889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.50.128", + "prefixLen":25, + "network":"193.32.50.128\/25", + "version":16888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.51.0", + "prefixLen":25, + "network":"193.32.51.0\/25", + "version":16887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.51.128", + "prefixLen":25, + "network":"193.32.51.128\/25", + "version":16886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.64.0", + "prefixLen":25, + "network":"193.32.64.0\/25", + "version":16885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.64.128", + "prefixLen":25, + "network":"193.32.64.128\/25", + "version":16884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.65.0", + "prefixLen":25, + "network":"193.32.65.0\/25", + "version":16883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.65.128", + "prefixLen":25, + "network":"193.32.65.128\/25", + "version":16882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.66.0", + "prefixLen":25, + "network":"193.32.66.0\/25", + "version":16881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.66.128", + "prefixLen":25, + "network":"193.32.66.128\/25", + "version":16880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.67.0", + "prefixLen":25, + "network":"193.32.67.0\/25", + "version":16879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.67.128", + "prefixLen":25, + "network":"193.32.67.128\/25", + "version":16878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.80.0", + "prefixLen":25, + "network":"193.32.80.0\/25", + "version":16877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.80.128", + "prefixLen":25, + "network":"193.32.80.128\/25", + "version":16876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.81.0", + "prefixLen":25, + "network":"193.32.81.0\/25", + "version":16875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.81.128", + "prefixLen":25, + "network":"193.32.81.128\/25", + "version":16874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.82.0", + "prefixLen":25, + "network":"193.32.82.0\/25", + "version":16873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.82.128", + "prefixLen":25, + "network":"193.32.82.128\/25", + "version":16872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.83.0", + "prefixLen":25, + "network":"193.32.83.0\/25", + "version":16871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.83.128", + "prefixLen":25, + "network":"193.32.83.128\/25", + "version":16870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.96.0", + "prefixLen":25, + "network":"193.32.96.0\/25", + "version":16869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.96.128", + "prefixLen":25, + "network":"193.32.96.128\/25", + "version":16868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.97.0", + "prefixLen":25, + "network":"193.32.97.0\/25", + "version":16867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.97.128", + "prefixLen":25, + "network":"193.32.97.128\/25", + "version":16866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.98.0", + "prefixLen":25, + "network":"193.32.98.0\/25", + "version":16865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.98.128", + "prefixLen":25, + "network":"193.32.98.128\/25", + "version":16864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.99.0", + "prefixLen":25, + "network":"193.32.99.0\/25", + "version":16863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.99.128", + "prefixLen":25, + "network":"193.32.99.128\/25", + "version":16862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.112.0", + "prefixLen":25, + "network":"193.32.112.0\/25", + "version":16861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.112.128", + "prefixLen":25, + "network":"193.32.112.128\/25", + "version":16860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.113.0", + "prefixLen":25, + "network":"193.32.113.0\/25", + "version":16859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.113.128", + "prefixLen":25, + "network":"193.32.113.128\/25", + "version":16858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.114.0", + "prefixLen":25, + "network":"193.32.114.0\/25", + "version":16857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.114.128", + "prefixLen":25, + "network":"193.32.114.128\/25", + "version":16856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.115.0", + "prefixLen":25, + "network":"193.32.115.0\/25", + "version":16855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.115.128", + "prefixLen":25, + "network":"193.32.115.128\/25", + "version":16854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.128.0", + "prefixLen":25, + "network":"193.32.128.0\/25", + "version":16853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.128.128", + "prefixLen":25, + "network":"193.32.128.128\/25", + "version":16852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.129.0", + "prefixLen":25, + "network":"193.32.129.0\/25", + "version":16851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.129.128", + "prefixLen":25, + "network":"193.32.129.128\/25", + "version":16850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.130.0", + "prefixLen":25, + "network":"193.32.130.0\/25", + "version":16849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.130.128", + "prefixLen":25, + "network":"193.32.130.128\/25", + "version":16848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.131.0", + "prefixLen":25, + "network":"193.32.131.0\/25", + "version":16847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.131.128", + "prefixLen":25, + "network":"193.32.131.128\/25", + "version":16846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.144.0", + "prefixLen":25, + "network":"193.32.144.0\/25", + "version":16845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.144.128", + "prefixLen":25, + "network":"193.32.144.128\/25", + "version":16844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.145.0", + "prefixLen":25, + "network":"193.32.145.0\/25", + "version":16843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.145.128", + "prefixLen":25, + "network":"193.32.145.128\/25", + "version":16842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.146.0", + "prefixLen":25, + "network":"193.32.146.0\/25", + "version":16841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.146.128", + "prefixLen":25, + "network":"193.32.146.128\/25", + "version":16840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.147.0", + "prefixLen":25, + "network":"193.32.147.0\/25", + "version":16839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.147.128", + "prefixLen":25, + "network":"193.32.147.128\/25", + "version":16838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.160.0", + "prefixLen":25, + "network":"193.32.160.0\/25", + "version":16837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.160.128", + "prefixLen":25, + "network":"193.32.160.128\/25", + "version":16836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.161.0", + "prefixLen":25, + "network":"193.32.161.0\/25", + "version":16835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.161.128", + "prefixLen":25, + "network":"193.32.161.128\/25", + "version":16834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.162.0", + "prefixLen":25, + "network":"193.32.162.0\/25", + "version":16833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.162.128", + "prefixLen":25, + "network":"193.32.162.128\/25", + "version":16832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.163.0", + "prefixLen":25, + "network":"193.32.163.0\/25", + "version":16831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.163.128", + "prefixLen":25, + "network":"193.32.163.128\/25", + "version":16830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.176.0", + "prefixLen":25, + "network":"193.32.176.0\/25", + "version":16829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.176.128", + "prefixLen":25, + "network":"193.32.176.128\/25", + "version":16828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.177.0", + "prefixLen":25, + "network":"193.32.177.0\/25", + "version":16827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.177.128", + "prefixLen":25, + "network":"193.32.177.128\/25", + "version":16826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.178.0", + "prefixLen":25, + "network":"193.32.178.0\/25", + "version":16825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.178.128", + "prefixLen":25, + "network":"193.32.178.128\/25", + "version":16824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.179.0", + "prefixLen":25, + "network":"193.32.179.0\/25", + "version":16823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.179.128", + "prefixLen":25, + "network":"193.32.179.128\/25", + "version":16822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.192.0", + "prefixLen":25, + "network":"193.32.192.0\/25", + "version":16821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.192.128", + "prefixLen":25, + "network":"193.32.192.128\/25", + "version":16820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.193.0", + "prefixLen":25, + "network":"193.32.193.0\/25", + "version":16819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.193.128", + "prefixLen":25, + "network":"193.32.193.128\/25", + "version":16818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.194.0", + "prefixLen":25, + "network":"193.32.194.0\/25", + "version":16817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.194.128", + "prefixLen":25, + "network":"193.32.194.128\/25", + "version":16816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.195.0", + "prefixLen":25, + "network":"193.32.195.0\/25", + "version":16815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.195.128", + "prefixLen":25, + "network":"193.32.195.128\/25", + "version":16814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.208.0", + "prefixLen":25, + "network":"193.32.208.0\/25", + "version":16813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.208.128", + "prefixLen":25, + "network":"193.32.208.128\/25", + "version":16812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.209.0", + "prefixLen":25, + "network":"193.32.209.0\/25", + "version":16811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.209.128", + "prefixLen":25, + "network":"193.32.209.128\/25", + "version":16810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.210.0", + "prefixLen":25, + "network":"193.32.210.0\/25", + "version":16809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.210.128", + "prefixLen":25, + "network":"193.32.210.128\/25", + "version":16808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.211.0", + "prefixLen":25, + "network":"193.32.211.0\/25", + "version":16807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.211.128", + "prefixLen":25, + "network":"193.32.211.128\/25", + "version":16806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.224.0", + "prefixLen":25, + "network":"193.32.224.0\/25", + "version":16805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.224.128", + "prefixLen":25, + "network":"193.32.224.128\/25", + "version":16804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.225.0", + "prefixLen":25, + "network":"193.32.225.0\/25", + "version":16803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.225.128", + "prefixLen":25, + "network":"193.32.225.128\/25", + "version":16802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.226.0", + "prefixLen":25, + "network":"193.32.226.0\/25", + "version":16801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.226.128", + "prefixLen":25, + "network":"193.32.226.128\/25", + "version":16800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.227.0", + "prefixLen":25, + "network":"193.32.227.0\/25", + "version":16799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.227.128", + "prefixLen":25, + "network":"193.32.227.128\/25", + "version":16798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.240.0", + "prefixLen":25, + "network":"193.32.240.0\/25", + "version":16797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.240.128", + "prefixLen":25, + "network":"193.32.240.128\/25", + "version":16796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.241.0", + "prefixLen":25, + "network":"193.32.241.0\/25", + "version":16795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.241.128", + "prefixLen":25, + "network":"193.32.241.128\/25", + "version":16794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.242.0", + "prefixLen":25, + "network":"193.32.242.0\/25", + "version":16793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.242.128", + "prefixLen":25, + "network":"193.32.242.128\/25", + "version":16792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.243.0", + "prefixLen":25, + "network":"193.32.243.0\/25", + "version":16791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.32.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.32.243.128", + "prefixLen":25, + "network":"193.32.243.128\/25", + "version":16790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64720 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.0.0", + "prefixLen":25, + "network":"193.33.0.0\/25", + "version":16917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.0.128", + "prefixLen":25, + "network":"193.33.0.128\/25", + "version":17044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.1.0", + "prefixLen":25, + "network":"193.33.1.0\/25", + "version":17043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.1.128", + "prefixLen":25, + "network":"193.33.1.128\/25", + "version":17042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.2.0", + "prefixLen":25, + "network":"193.33.2.0\/25", + "version":17041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.2.128", + "prefixLen":25, + "network":"193.33.2.128\/25", + "version":17040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.3.0", + "prefixLen":25, + "network":"193.33.3.0\/25", + "version":17039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.3.128", + "prefixLen":25, + "network":"193.33.3.128\/25", + "version":17038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.16.0", + "prefixLen":25, + "network":"193.33.16.0\/25", + "version":17037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.16.128", + "prefixLen":25, + "network":"193.33.16.128\/25", + "version":17036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.17.0", + "prefixLen":25, + "network":"193.33.17.0\/25", + "version":17035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.17.128", + "prefixLen":25, + "network":"193.33.17.128\/25", + "version":17034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.18.0", + "prefixLen":25, + "network":"193.33.18.0\/25", + "version":17033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.18.128", + "prefixLen":25, + "network":"193.33.18.128\/25", + "version":17032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.19.0", + "prefixLen":25, + "network":"193.33.19.0\/25", + "version":17031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.19.128", + "prefixLen":25, + "network":"193.33.19.128\/25", + "version":17030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.32.0", + "prefixLen":25, + "network":"193.33.32.0\/25", + "version":17029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.32.128", + "prefixLen":25, + "network":"193.33.32.128\/25", + "version":17028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.33.0", + "prefixLen":25, + "network":"193.33.33.0\/25", + "version":17027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.33.128", + "prefixLen":25, + "network":"193.33.33.128\/25", + "version":17026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.34.0", + "prefixLen":25, + "network":"193.33.34.0\/25", + "version":17025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.34.128", + "prefixLen":25, + "network":"193.33.34.128\/25", + "version":17024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.35.0", + "prefixLen":25, + "network":"193.33.35.0\/25", + "version":17023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.35.128", + "prefixLen":25, + "network":"193.33.35.128\/25", + "version":17022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.48.0", + "prefixLen":25, + "network":"193.33.48.0\/25", + "version":17021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.48.128", + "prefixLen":25, + "network":"193.33.48.128\/25", + "version":17020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.49.0", + "prefixLen":25, + "network":"193.33.49.0\/25", + "version":17019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.49.128", + "prefixLen":25, + "network":"193.33.49.128\/25", + "version":17018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.50.0", + "prefixLen":25, + "network":"193.33.50.0\/25", + "version":17017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.50.128", + "prefixLen":25, + "network":"193.33.50.128\/25", + "version":17016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.51.0", + "prefixLen":25, + "network":"193.33.51.0\/25", + "version":17015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.51.128", + "prefixLen":25, + "network":"193.33.51.128\/25", + "version":17014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.64.0", + "prefixLen":25, + "network":"193.33.64.0\/25", + "version":17013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.64.128", + "prefixLen":25, + "network":"193.33.64.128\/25", + "version":17012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.65.0", + "prefixLen":25, + "network":"193.33.65.0\/25", + "version":17011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.65.128", + "prefixLen":25, + "network":"193.33.65.128\/25", + "version":17010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.66.0", + "prefixLen":25, + "network":"193.33.66.0\/25", + "version":17009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.66.128", + "prefixLen":25, + "network":"193.33.66.128\/25", + "version":17008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.67.0", + "prefixLen":25, + "network":"193.33.67.0\/25", + "version":17007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.67.128", + "prefixLen":25, + "network":"193.33.67.128\/25", + "version":17006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.80.0", + "prefixLen":25, + "network":"193.33.80.0\/25", + "version":17005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.80.128", + "prefixLen":25, + "network":"193.33.80.128\/25", + "version":17004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.81.0", + "prefixLen":25, + "network":"193.33.81.0\/25", + "version":17003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.81.128", + "prefixLen":25, + "network":"193.33.81.128\/25", + "version":17002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.82.0", + "prefixLen":25, + "network":"193.33.82.0\/25", + "version":17001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.82.128", + "prefixLen":25, + "network":"193.33.82.128\/25", + "version":17000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.83.0", + "prefixLen":25, + "network":"193.33.83.0\/25", + "version":16999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.83.128", + "prefixLen":25, + "network":"193.33.83.128\/25", + "version":16998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.96.0", + "prefixLen":25, + "network":"193.33.96.0\/25", + "version":16997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.96.128", + "prefixLen":25, + "network":"193.33.96.128\/25", + "version":16996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.97.0", + "prefixLen":25, + "network":"193.33.97.0\/25", + "version":16995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.97.128", + "prefixLen":25, + "network":"193.33.97.128\/25", + "version":16994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.98.0", + "prefixLen":25, + "network":"193.33.98.0\/25", + "version":16993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.98.128", + "prefixLen":25, + "network":"193.33.98.128\/25", + "version":16992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.99.0", + "prefixLen":25, + "network":"193.33.99.0\/25", + "version":16991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.99.128", + "prefixLen":25, + "network":"193.33.99.128\/25", + "version":16990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.112.0", + "prefixLen":25, + "network":"193.33.112.0\/25", + "version":16989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.112.128", + "prefixLen":25, + "network":"193.33.112.128\/25", + "version":16988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.113.0", + "prefixLen":25, + "network":"193.33.113.0\/25", + "version":16987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.113.128", + "prefixLen":25, + "network":"193.33.113.128\/25", + "version":16986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.114.0", + "prefixLen":25, + "network":"193.33.114.0\/25", + "version":16985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.114.128", + "prefixLen":25, + "network":"193.33.114.128\/25", + "version":16984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.115.0", + "prefixLen":25, + "network":"193.33.115.0\/25", + "version":16983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.115.128", + "prefixLen":25, + "network":"193.33.115.128\/25", + "version":16982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.128.0", + "prefixLen":25, + "network":"193.33.128.0\/25", + "version":16981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.128.128", + "prefixLen":25, + "network":"193.33.128.128\/25", + "version":16980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.129.0", + "prefixLen":25, + "network":"193.33.129.0\/25", + "version":16979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.129.128", + "prefixLen":25, + "network":"193.33.129.128\/25", + "version":16978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.130.0", + "prefixLen":25, + "network":"193.33.130.0\/25", + "version":16977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.130.128", + "prefixLen":25, + "network":"193.33.130.128\/25", + "version":16976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.131.0", + "prefixLen":25, + "network":"193.33.131.0\/25", + "version":16975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.131.128", + "prefixLen":25, + "network":"193.33.131.128\/25", + "version":16974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.144.0", + "prefixLen":25, + "network":"193.33.144.0\/25", + "version":16973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.144.128", + "prefixLen":25, + "network":"193.33.144.128\/25", + "version":16972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.145.0", + "prefixLen":25, + "network":"193.33.145.0\/25", + "version":16971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.145.128", + "prefixLen":25, + "network":"193.33.145.128\/25", + "version":16970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.146.0", + "prefixLen":25, + "network":"193.33.146.0\/25", + "version":16969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.146.128", + "prefixLen":25, + "network":"193.33.146.128\/25", + "version":16968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.147.0", + "prefixLen":25, + "network":"193.33.147.0\/25", + "version":16967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.147.128", + "prefixLen":25, + "network":"193.33.147.128\/25", + "version":16966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.160.0", + "prefixLen":25, + "network":"193.33.160.0\/25", + "version":16965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.160.128", + "prefixLen":25, + "network":"193.33.160.128\/25", + "version":16964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.161.0", + "prefixLen":25, + "network":"193.33.161.0\/25", + "version":16963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.161.128", + "prefixLen":25, + "network":"193.33.161.128\/25", + "version":16962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.162.0", + "prefixLen":25, + "network":"193.33.162.0\/25", + "version":16961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.162.128", + "prefixLen":25, + "network":"193.33.162.128\/25", + "version":16960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.163.0", + "prefixLen":25, + "network":"193.33.163.0\/25", + "version":16959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.163.128", + "prefixLen":25, + "network":"193.33.163.128\/25", + "version":16958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.176.0", + "prefixLen":25, + "network":"193.33.176.0\/25", + "version":16957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.176.128", + "prefixLen":25, + "network":"193.33.176.128\/25", + "version":16956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.177.0", + "prefixLen":25, + "network":"193.33.177.0\/25", + "version":16955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.177.128", + "prefixLen":25, + "network":"193.33.177.128\/25", + "version":16954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.178.0", + "prefixLen":25, + "network":"193.33.178.0\/25", + "version":16953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.178.128", + "prefixLen":25, + "network":"193.33.178.128\/25", + "version":16952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.179.0", + "prefixLen":25, + "network":"193.33.179.0\/25", + "version":16951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.179.128", + "prefixLen":25, + "network":"193.33.179.128\/25", + "version":16950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.192.0", + "prefixLen":25, + "network":"193.33.192.0\/25", + "version":16949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.192.128", + "prefixLen":25, + "network":"193.33.192.128\/25", + "version":16948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.193.0", + "prefixLen":25, + "network":"193.33.193.0\/25", + "version":16947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.193.128", + "prefixLen":25, + "network":"193.33.193.128\/25", + "version":16946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.194.0", + "prefixLen":25, + "network":"193.33.194.0\/25", + "version":16945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.194.128", + "prefixLen":25, + "network":"193.33.194.128\/25", + "version":16944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.195.0", + "prefixLen":25, + "network":"193.33.195.0\/25", + "version":16943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.195.128", + "prefixLen":25, + "network":"193.33.195.128\/25", + "version":16942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.208.0", + "prefixLen":25, + "network":"193.33.208.0\/25", + "version":16941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.208.128", + "prefixLen":25, + "network":"193.33.208.128\/25", + "version":16940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.209.0", + "prefixLen":25, + "network":"193.33.209.0\/25", + "version":16939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.209.128", + "prefixLen":25, + "network":"193.33.209.128\/25", + "version":16938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.210.0", + "prefixLen":25, + "network":"193.33.210.0\/25", + "version":16937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.210.128", + "prefixLen":25, + "network":"193.33.210.128\/25", + "version":16936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.211.0", + "prefixLen":25, + "network":"193.33.211.0\/25", + "version":16935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.211.128", + "prefixLen":25, + "network":"193.33.211.128\/25", + "version":16934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.224.0", + "prefixLen":25, + "network":"193.33.224.0\/25", + "version":16933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.224.128", + "prefixLen":25, + "network":"193.33.224.128\/25", + "version":16932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.225.0", + "prefixLen":25, + "network":"193.33.225.0\/25", + "version":16931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.225.128", + "prefixLen":25, + "network":"193.33.225.128\/25", + "version":16930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.226.0", + "prefixLen":25, + "network":"193.33.226.0\/25", + "version":16929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.226.128", + "prefixLen":25, + "network":"193.33.226.128\/25", + "version":16928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.227.0", + "prefixLen":25, + "network":"193.33.227.0\/25", + "version":16927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.227.128", + "prefixLen":25, + "network":"193.33.227.128\/25", + "version":16926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.240.0", + "prefixLen":25, + "network":"193.33.240.0\/25", + "version":16925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.240.128", + "prefixLen":25, + "network":"193.33.240.128\/25", + "version":16924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.241.0", + "prefixLen":25, + "network":"193.33.241.0\/25", + "version":16923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.241.128", + "prefixLen":25, + "network":"193.33.241.128\/25", + "version":16922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.242.0", + "prefixLen":25, + "network":"193.33.242.0\/25", + "version":16921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.242.128", + "prefixLen":25, + "network":"193.33.242.128\/25", + "version":16920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.243.0", + "prefixLen":25, + "network":"193.33.243.0\/25", + "version":16919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.33.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.33.243.128", + "prefixLen":25, + "network":"193.33.243.128\/25", + "version":16918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64721 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.0.0", + "prefixLen":25, + "network":"193.34.0.0\/25", + "version":17045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.0.128", + "prefixLen":25, + "network":"193.34.0.128\/25", + "version":17172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.1.0", + "prefixLen":25, + "network":"193.34.1.0\/25", + "version":17171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.1.128", + "prefixLen":25, + "network":"193.34.1.128\/25", + "version":17170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.2.0", + "prefixLen":25, + "network":"193.34.2.0\/25", + "version":17169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.2.128", + "prefixLen":25, + "network":"193.34.2.128\/25", + "version":17168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.3.0", + "prefixLen":25, + "network":"193.34.3.0\/25", + "version":17167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.3.128", + "prefixLen":25, + "network":"193.34.3.128\/25", + "version":17166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.16.0", + "prefixLen":25, + "network":"193.34.16.0\/25", + "version":17165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.16.128", + "prefixLen":25, + "network":"193.34.16.128\/25", + "version":17164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.17.0", + "prefixLen":25, + "network":"193.34.17.0\/25", + "version":17163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.17.128", + "prefixLen":25, + "network":"193.34.17.128\/25", + "version":17162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.18.0", + "prefixLen":25, + "network":"193.34.18.0\/25", + "version":17161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.18.128", + "prefixLen":25, + "network":"193.34.18.128\/25", + "version":17160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.19.0", + "prefixLen":25, + "network":"193.34.19.0\/25", + "version":17159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.19.128", + "prefixLen":25, + "network":"193.34.19.128\/25", + "version":17158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.32.0", + "prefixLen":25, + "network":"193.34.32.0\/25", + "version":17157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.32.128", + "prefixLen":25, + "network":"193.34.32.128\/25", + "version":17156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.33.0", + "prefixLen":25, + "network":"193.34.33.0\/25", + "version":17155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.33.128", + "prefixLen":25, + "network":"193.34.33.128\/25", + "version":17154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.34.0", + "prefixLen":25, + "network":"193.34.34.0\/25", + "version":17153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.34.128", + "prefixLen":25, + "network":"193.34.34.128\/25", + "version":17152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.35.0", + "prefixLen":25, + "network":"193.34.35.0\/25", + "version":17151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.35.128", + "prefixLen":25, + "network":"193.34.35.128\/25", + "version":17150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.48.0", + "prefixLen":25, + "network":"193.34.48.0\/25", + "version":17149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.48.128", + "prefixLen":25, + "network":"193.34.48.128\/25", + "version":17148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.49.0", + "prefixLen":25, + "network":"193.34.49.0\/25", + "version":17147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.49.128", + "prefixLen":25, + "network":"193.34.49.128\/25", + "version":17146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.50.0", + "prefixLen":25, + "network":"193.34.50.0\/25", + "version":17145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.50.128", + "prefixLen":25, + "network":"193.34.50.128\/25", + "version":17144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.51.0", + "prefixLen":25, + "network":"193.34.51.0\/25", + "version":17143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.51.128", + "prefixLen":25, + "network":"193.34.51.128\/25", + "version":17142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.64.0", + "prefixLen":25, + "network":"193.34.64.0\/25", + "version":17141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.64.128", + "prefixLen":25, + "network":"193.34.64.128\/25", + "version":17140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.65.0", + "prefixLen":25, + "network":"193.34.65.0\/25", + "version":17139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.65.128", + "prefixLen":25, + "network":"193.34.65.128\/25", + "version":17138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.66.0", + "prefixLen":25, + "network":"193.34.66.0\/25", + "version":17137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.66.128", + "prefixLen":25, + "network":"193.34.66.128\/25", + "version":17136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.67.0", + "prefixLen":25, + "network":"193.34.67.0\/25", + "version":17135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.67.128", + "prefixLen":25, + "network":"193.34.67.128\/25", + "version":17134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.80.0", + "prefixLen":25, + "network":"193.34.80.0\/25", + "version":17133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.80.128", + "prefixLen":25, + "network":"193.34.80.128\/25", + "version":17132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.81.0", + "prefixLen":25, + "network":"193.34.81.0\/25", + "version":17131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.81.128", + "prefixLen":25, + "network":"193.34.81.128\/25", + "version":17130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.82.0", + "prefixLen":25, + "network":"193.34.82.0\/25", + "version":17129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.82.128", + "prefixLen":25, + "network":"193.34.82.128\/25", + "version":17128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.83.0", + "prefixLen":25, + "network":"193.34.83.0\/25", + "version":17127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.83.128", + "prefixLen":25, + "network":"193.34.83.128\/25", + "version":17126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.96.0", + "prefixLen":25, + "network":"193.34.96.0\/25", + "version":17125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.96.128", + "prefixLen":25, + "network":"193.34.96.128\/25", + "version":17124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.97.0", + "prefixLen":25, + "network":"193.34.97.0\/25", + "version":17123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.97.128", + "prefixLen":25, + "network":"193.34.97.128\/25", + "version":17122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.98.0", + "prefixLen":25, + "network":"193.34.98.0\/25", + "version":17121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.98.128", + "prefixLen":25, + "network":"193.34.98.128\/25", + "version":17120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.99.0", + "prefixLen":25, + "network":"193.34.99.0\/25", + "version":17119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.99.128", + "prefixLen":25, + "network":"193.34.99.128\/25", + "version":17118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.112.0", + "prefixLen":25, + "network":"193.34.112.0\/25", + "version":17117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.112.128", + "prefixLen":25, + "network":"193.34.112.128\/25", + "version":17116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.113.0", + "prefixLen":25, + "network":"193.34.113.0\/25", + "version":17115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.113.128", + "prefixLen":25, + "network":"193.34.113.128\/25", + "version":17114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.114.0", + "prefixLen":25, + "network":"193.34.114.0\/25", + "version":17113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.114.128", + "prefixLen":25, + "network":"193.34.114.128\/25", + "version":17112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.115.0", + "prefixLen":25, + "network":"193.34.115.0\/25", + "version":17111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.115.128", + "prefixLen":25, + "network":"193.34.115.128\/25", + "version":17110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.128.0", + "prefixLen":25, + "network":"193.34.128.0\/25", + "version":17109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.128.128", + "prefixLen":25, + "network":"193.34.128.128\/25", + "version":17108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.129.0", + "prefixLen":25, + "network":"193.34.129.0\/25", + "version":17107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.129.128", + "prefixLen":25, + "network":"193.34.129.128\/25", + "version":17106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.130.0", + "prefixLen":25, + "network":"193.34.130.0\/25", + "version":17105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.130.128", + "prefixLen":25, + "network":"193.34.130.128\/25", + "version":17104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.131.0", + "prefixLen":25, + "network":"193.34.131.0\/25", + "version":17103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.131.128", + "prefixLen":25, + "network":"193.34.131.128\/25", + "version":17102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.144.0", + "prefixLen":25, + "network":"193.34.144.0\/25", + "version":17101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.144.128", + "prefixLen":25, + "network":"193.34.144.128\/25", + "version":17100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.145.0", + "prefixLen":25, + "network":"193.34.145.0\/25", + "version":17099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.145.128", + "prefixLen":25, + "network":"193.34.145.128\/25", + "version":17098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.146.0", + "prefixLen":25, + "network":"193.34.146.0\/25", + "version":17097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.146.128", + "prefixLen":25, + "network":"193.34.146.128\/25", + "version":17096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.147.0", + "prefixLen":25, + "network":"193.34.147.0\/25", + "version":17095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.147.128", + "prefixLen":25, + "network":"193.34.147.128\/25", + "version":17094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.160.0", + "prefixLen":25, + "network":"193.34.160.0\/25", + "version":17093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.160.128", + "prefixLen":25, + "network":"193.34.160.128\/25", + "version":17092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.161.0", + "prefixLen":25, + "network":"193.34.161.0\/25", + "version":17091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.161.128", + "prefixLen":25, + "network":"193.34.161.128\/25", + "version":17090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.162.0", + "prefixLen":25, + "network":"193.34.162.0\/25", + "version":17089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.162.128", + "prefixLen":25, + "network":"193.34.162.128\/25", + "version":17088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.163.0", + "prefixLen":25, + "network":"193.34.163.0\/25", + "version":17087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.163.128", + "prefixLen":25, + "network":"193.34.163.128\/25", + "version":17086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.176.0", + "prefixLen":25, + "network":"193.34.176.0\/25", + "version":17085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.176.128", + "prefixLen":25, + "network":"193.34.176.128\/25", + "version":17084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.177.0", + "prefixLen":25, + "network":"193.34.177.0\/25", + "version":17083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.177.128", + "prefixLen":25, + "network":"193.34.177.128\/25", + "version":17082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.178.0", + "prefixLen":25, + "network":"193.34.178.0\/25", + "version":17081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.178.128", + "prefixLen":25, + "network":"193.34.178.128\/25", + "version":17080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.179.0", + "prefixLen":25, + "network":"193.34.179.0\/25", + "version":17079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.179.128", + "prefixLen":25, + "network":"193.34.179.128\/25", + "version":17078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.192.0", + "prefixLen":25, + "network":"193.34.192.0\/25", + "version":17077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.192.128", + "prefixLen":25, + "network":"193.34.192.128\/25", + "version":17076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.193.0", + "prefixLen":25, + "network":"193.34.193.0\/25", + "version":17075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.193.128", + "prefixLen":25, + "network":"193.34.193.128\/25", + "version":17074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.194.0", + "prefixLen":25, + "network":"193.34.194.0\/25", + "version":17073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.194.128", + "prefixLen":25, + "network":"193.34.194.128\/25", + "version":17072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.195.0", + "prefixLen":25, + "network":"193.34.195.0\/25", + "version":17071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.195.128", + "prefixLen":25, + "network":"193.34.195.128\/25", + "version":17070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.208.0", + "prefixLen":25, + "network":"193.34.208.0\/25", + "version":17069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.208.128", + "prefixLen":25, + "network":"193.34.208.128\/25", + "version":17068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.209.0", + "prefixLen":25, + "network":"193.34.209.0\/25", + "version":17067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.209.128", + "prefixLen":25, + "network":"193.34.209.128\/25", + "version":17066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.210.0", + "prefixLen":25, + "network":"193.34.210.0\/25", + "version":17065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.210.128", + "prefixLen":25, + "network":"193.34.210.128\/25", + "version":17064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.211.0", + "prefixLen":25, + "network":"193.34.211.0\/25", + "version":17063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.211.128", + "prefixLen":25, + "network":"193.34.211.128\/25", + "version":17062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.224.0", + "prefixLen":25, + "network":"193.34.224.0\/25", + "version":17061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.224.128", + "prefixLen":25, + "network":"193.34.224.128\/25", + "version":17060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.225.0", + "prefixLen":25, + "network":"193.34.225.0\/25", + "version":17059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.225.128", + "prefixLen":25, + "network":"193.34.225.128\/25", + "version":17058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.226.0", + "prefixLen":25, + "network":"193.34.226.0\/25", + "version":17057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.226.128", + "prefixLen":25, + "network":"193.34.226.128\/25", + "version":17056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.227.0", + "prefixLen":25, + "network":"193.34.227.0\/25", + "version":17055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.227.128", + "prefixLen":25, + "network":"193.34.227.128\/25", + "version":17054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.240.0", + "prefixLen":25, + "network":"193.34.240.0\/25", + "version":17053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.240.128", + "prefixLen":25, + "network":"193.34.240.128\/25", + "version":17052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.241.0", + "prefixLen":25, + "network":"193.34.241.0\/25", + "version":17051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.241.128", + "prefixLen":25, + "network":"193.34.241.128\/25", + "version":17050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.242.0", + "prefixLen":25, + "network":"193.34.242.0\/25", + "version":17049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.242.128", + "prefixLen":25, + "network":"193.34.242.128\/25", + "version":17048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.243.0", + "prefixLen":25, + "network":"193.34.243.0\/25", + "version":17047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.34.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.34.243.128", + "prefixLen":25, + "network":"193.34.243.128\/25", + "version":17046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64722 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.0.0", + "prefixLen":25, + "network":"193.35.0.0\/25", + "version":17173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.0.128", + "prefixLen":25, + "network":"193.35.0.128\/25", + "version":17300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.1.0", + "prefixLen":25, + "network":"193.35.1.0\/25", + "version":17299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.1.128", + "prefixLen":25, + "network":"193.35.1.128\/25", + "version":17298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.2.0", + "prefixLen":25, + "network":"193.35.2.0\/25", + "version":17297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.2.128", + "prefixLen":25, + "network":"193.35.2.128\/25", + "version":17296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.3.0", + "prefixLen":25, + "network":"193.35.3.0\/25", + "version":17295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.3.128", + "prefixLen":25, + "network":"193.35.3.128\/25", + "version":17294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.16.0", + "prefixLen":25, + "network":"193.35.16.0\/25", + "version":17293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.16.128", + "prefixLen":25, + "network":"193.35.16.128\/25", + "version":17292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.17.0", + "prefixLen":25, + "network":"193.35.17.0\/25", + "version":17291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.17.128", + "prefixLen":25, + "network":"193.35.17.128\/25", + "version":17290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.18.0", + "prefixLen":25, + "network":"193.35.18.0\/25", + "version":17289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.18.128", + "prefixLen":25, + "network":"193.35.18.128\/25", + "version":17288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.19.0", + "prefixLen":25, + "network":"193.35.19.0\/25", + "version":17287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.19.128", + "prefixLen":25, + "network":"193.35.19.128\/25", + "version":17286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.32.0", + "prefixLen":25, + "network":"193.35.32.0\/25", + "version":17285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.32.128", + "prefixLen":25, + "network":"193.35.32.128\/25", + "version":17284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.33.0", + "prefixLen":25, + "network":"193.35.33.0\/25", + "version":17283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.33.128", + "prefixLen":25, + "network":"193.35.33.128\/25", + "version":17282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.34.0", + "prefixLen":25, + "network":"193.35.34.0\/25", + "version":17281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.34.128", + "prefixLen":25, + "network":"193.35.34.128\/25", + "version":17280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.35.0", + "prefixLen":25, + "network":"193.35.35.0\/25", + "version":17279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.35.128", + "prefixLen":25, + "network":"193.35.35.128\/25", + "version":17278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.48.0", + "prefixLen":25, + "network":"193.35.48.0\/25", + "version":17277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.48.128", + "prefixLen":25, + "network":"193.35.48.128\/25", + "version":17276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.49.0", + "prefixLen":25, + "network":"193.35.49.0\/25", + "version":17275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.49.128", + "prefixLen":25, + "network":"193.35.49.128\/25", + "version":17274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.50.0", + "prefixLen":25, + "network":"193.35.50.0\/25", + "version":17273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.50.128", + "prefixLen":25, + "network":"193.35.50.128\/25", + "version":17272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.51.0", + "prefixLen":25, + "network":"193.35.51.0\/25", + "version":17271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.51.128", + "prefixLen":25, + "network":"193.35.51.128\/25", + "version":17270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.64.0", + "prefixLen":25, + "network":"193.35.64.0\/25", + "version":17269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.64.128", + "prefixLen":25, + "network":"193.35.64.128\/25", + "version":17268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.65.0", + "prefixLen":25, + "network":"193.35.65.0\/25", + "version":17267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.65.128", + "prefixLen":25, + "network":"193.35.65.128\/25", + "version":17266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.66.0", + "prefixLen":25, + "network":"193.35.66.0\/25", + "version":17265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.66.128", + "prefixLen":25, + "network":"193.35.66.128\/25", + "version":17264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.67.0", + "prefixLen":25, + "network":"193.35.67.0\/25", + "version":17263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.67.128", + "prefixLen":25, + "network":"193.35.67.128\/25", + "version":17262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.80.0", + "prefixLen":25, + "network":"193.35.80.0\/25", + "version":17261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.80.128", + "prefixLen":25, + "network":"193.35.80.128\/25", + "version":17260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.81.0", + "prefixLen":25, + "network":"193.35.81.0\/25", + "version":17259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.81.128", + "prefixLen":25, + "network":"193.35.81.128\/25", + "version":17258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.82.0", + "prefixLen":25, + "network":"193.35.82.0\/25", + "version":17257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.82.128", + "prefixLen":25, + "network":"193.35.82.128\/25", + "version":17256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.83.0", + "prefixLen":25, + "network":"193.35.83.0\/25", + "version":17255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.83.128", + "prefixLen":25, + "network":"193.35.83.128\/25", + "version":17254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.96.0", + "prefixLen":25, + "network":"193.35.96.0\/25", + "version":17253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.96.128", + "prefixLen":25, + "network":"193.35.96.128\/25", + "version":17252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.97.0", + "prefixLen":25, + "network":"193.35.97.0\/25", + "version":17251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.97.128", + "prefixLen":25, + "network":"193.35.97.128\/25", + "version":17250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.98.0", + "prefixLen":25, + "network":"193.35.98.0\/25", + "version":17249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.98.128", + "prefixLen":25, + "network":"193.35.98.128\/25", + "version":17248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.99.0", + "prefixLen":25, + "network":"193.35.99.0\/25", + "version":17247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.99.128", + "prefixLen":25, + "network":"193.35.99.128\/25", + "version":17246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.112.0", + "prefixLen":25, + "network":"193.35.112.0\/25", + "version":17245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.112.128", + "prefixLen":25, + "network":"193.35.112.128\/25", + "version":17244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.113.0", + "prefixLen":25, + "network":"193.35.113.0\/25", + "version":17243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.113.128", + "prefixLen":25, + "network":"193.35.113.128\/25", + "version":17242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.114.0", + "prefixLen":25, + "network":"193.35.114.0\/25", + "version":17241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.114.128", + "prefixLen":25, + "network":"193.35.114.128\/25", + "version":17240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.115.0", + "prefixLen":25, + "network":"193.35.115.0\/25", + "version":17239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.115.128", + "prefixLen":25, + "network":"193.35.115.128\/25", + "version":17238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.128.0", + "prefixLen":25, + "network":"193.35.128.0\/25", + "version":17237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.128.128", + "prefixLen":25, + "network":"193.35.128.128\/25", + "version":17236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.129.0", + "prefixLen":25, + "network":"193.35.129.0\/25", + "version":17235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.129.128", + "prefixLen":25, + "network":"193.35.129.128\/25", + "version":17234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.130.0", + "prefixLen":25, + "network":"193.35.130.0\/25", + "version":17233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.130.128", + "prefixLen":25, + "network":"193.35.130.128\/25", + "version":17232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.131.0", + "prefixLen":25, + "network":"193.35.131.0\/25", + "version":17231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.131.128", + "prefixLen":25, + "network":"193.35.131.128\/25", + "version":17230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.144.0", + "prefixLen":25, + "network":"193.35.144.0\/25", + "version":17229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.144.128", + "prefixLen":25, + "network":"193.35.144.128\/25", + "version":17228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.145.0", + "prefixLen":25, + "network":"193.35.145.0\/25", + "version":17227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.145.128", + "prefixLen":25, + "network":"193.35.145.128\/25", + "version":17226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.146.0", + "prefixLen":25, + "network":"193.35.146.0\/25", + "version":17225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.146.128", + "prefixLen":25, + "network":"193.35.146.128\/25", + "version":17224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.147.0", + "prefixLen":25, + "network":"193.35.147.0\/25", + "version":17223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.147.128", + "prefixLen":25, + "network":"193.35.147.128\/25", + "version":17222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.160.0", + "prefixLen":25, + "network":"193.35.160.0\/25", + "version":17221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.160.128", + "prefixLen":25, + "network":"193.35.160.128\/25", + "version":17220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.161.0", + "prefixLen":25, + "network":"193.35.161.0\/25", + "version":17219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.161.128", + "prefixLen":25, + "network":"193.35.161.128\/25", + "version":17218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.162.0", + "prefixLen":25, + "network":"193.35.162.0\/25", + "version":17217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.162.128", + "prefixLen":25, + "network":"193.35.162.128\/25", + "version":17216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.163.0", + "prefixLen":25, + "network":"193.35.163.0\/25", + "version":17215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.163.128", + "prefixLen":25, + "network":"193.35.163.128\/25", + "version":17214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.176.0", + "prefixLen":25, + "network":"193.35.176.0\/25", + "version":17213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.176.128", + "prefixLen":25, + "network":"193.35.176.128\/25", + "version":17212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.177.0", + "prefixLen":25, + "network":"193.35.177.0\/25", + "version":17211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.177.128", + "prefixLen":25, + "network":"193.35.177.128\/25", + "version":17210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.178.0", + "prefixLen":25, + "network":"193.35.178.0\/25", + "version":17209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.178.128", + "prefixLen":25, + "network":"193.35.178.128\/25", + "version":17208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.179.0", + "prefixLen":25, + "network":"193.35.179.0\/25", + "version":17207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.179.128", + "prefixLen":25, + "network":"193.35.179.128\/25", + "version":17206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.192.0", + "prefixLen":25, + "network":"193.35.192.0\/25", + "version":17205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.192.128", + "prefixLen":25, + "network":"193.35.192.128\/25", + "version":17204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.193.0", + "prefixLen":25, + "network":"193.35.193.0\/25", + "version":17203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.193.128", + "prefixLen":25, + "network":"193.35.193.128\/25", + "version":17202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.194.0", + "prefixLen":25, + "network":"193.35.194.0\/25", + "version":17201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.194.128", + "prefixLen":25, + "network":"193.35.194.128\/25", + "version":17200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.195.0", + "prefixLen":25, + "network":"193.35.195.0\/25", + "version":17199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.195.128", + "prefixLen":25, + "network":"193.35.195.128\/25", + "version":17198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.208.0", + "prefixLen":25, + "network":"193.35.208.0\/25", + "version":17197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.208.128", + "prefixLen":25, + "network":"193.35.208.128\/25", + "version":17196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.209.0", + "prefixLen":25, + "network":"193.35.209.0\/25", + "version":17195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.209.128", + "prefixLen":25, + "network":"193.35.209.128\/25", + "version":17194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.210.0", + "prefixLen":25, + "network":"193.35.210.0\/25", + "version":17193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.210.128", + "prefixLen":25, + "network":"193.35.210.128\/25", + "version":17192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.211.0", + "prefixLen":25, + "network":"193.35.211.0\/25", + "version":17191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.211.128", + "prefixLen":25, + "network":"193.35.211.128\/25", + "version":17190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.224.0", + "prefixLen":25, + "network":"193.35.224.0\/25", + "version":17189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.224.128", + "prefixLen":25, + "network":"193.35.224.128\/25", + "version":17188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.225.0", + "prefixLen":25, + "network":"193.35.225.0\/25", + "version":17187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.225.128", + "prefixLen":25, + "network":"193.35.225.128\/25", + "version":17186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.226.0", + "prefixLen":25, + "network":"193.35.226.0\/25", + "version":17185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.226.128", + "prefixLen":25, + "network":"193.35.226.128\/25", + "version":17184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.227.0", + "prefixLen":25, + "network":"193.35.227.0\/25", + "version":17183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.227.128", + "prefixLen":25, + "network":"193.35.227.128\/25", + "version":17182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.240.0", + "prefixLen":25, + "network":"193.35.240.0\/25", + "version":17181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.240.128", + "prefixLen":25, + "network":"193.35.240.128\/25", + "version":17180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.241.0", + "prefixLen":25, + "network":"193.35.241.0\/25", + "version":17179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.241.128", + "prefixLen":25, + "network":"193.35.241.128\/25", + "version":17178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.242.0", + "prefixLen":25, + "network":"193.35.242.0\/25", + "version":17177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.242.128", + "prefixLen":25, + "network":"193.35.242.128\/25", + "version":17176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.243.0", + "prefixLen":25, + "network":"193.35.243.0\/25", + "version":17175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.35.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.35.243.128", + "prefixLen":25, + "network":"193.35.243.128\/25", + "version":17174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64723 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.0.0", + "prefixLen":25, + "network":"193.36.0.0\/25", + "version":17301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.0.128", + "prefixLen":25, + "network":"193.36.0.128\/25", + "version":17428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.1.0", + "prefixLen":25, + "network":"193.36.1.0\/25", + "version":17427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.1.128", + "prefixLen":25, + "network":"193.36.1.128\/25", + "version":17426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.2.0", + "prefixLen":25, + "network":"193.36.2.0\/25", + "version":17425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.2.128", + "prefixLen":25, + "network":"193.36.2.128\/25", + "version":17424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.3.0", + "prefixLen":25, + "network":"193.36.3.0\/25", + "version":17423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.3.128", + "prefixLen":25, + "network":"193.36.3.128\/25", + "version":17422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.16.0", + "prefixLen":25, + "network":"193.36.16.0\/25", + "version":17421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.16.128", + "prefixLen":25, + "network":"193.36.16.128\/25", + "version":17420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.17.0", + "prefixLen":25, + "network":"193.36.17.0\/25", + "version":17419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.17.128", + "prefixLen":25, + "network":"193.36.17.128\/25", + "version":17418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.18.0", + "prefixLen":25, + "network":"193.36.18.0\/25", + "version":17417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.18.128", + "prefixLen":25, + "network":"193.36.18.128\/25", + "version":17416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.19.0", + "prefixLen":25, + "network":"193.36.19.0\/25", + "version":17415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.19.128", + "prefixLen":25, + "network":"193.36.19.128\/25", + "version":17414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.32.0", + "prefixLen":25, + "network":"193.36.32.0\/25", + "version":17413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.32.128", + "prefixLen":25, + "network":"193.36.32.128\/25", + "version":17412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.33.0", + "prefixLen":25, + "network":"193.36.33.0\/25", + "version":17411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.33.128", + "prefixLen":25, + "network":"193.36.33.128\/25", + "version":17410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.34.0", + "prefixLen":25, + "network":"193.36.34.0\/25", + "version":17409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.34.128", + "prefixLen":25, + "network":"193.36.34.128\/25", + "version":17408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.35.0", + "prefixLen":25, + "network":"193.36.35.0\/25", + "version":17407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.35.128", + "prefixLen":25, + "network":"193.36.35.128\/25", + "version":17406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.48.0", + "prefixLen":25, + "network":"193.36.48.0\/25", + "version":17405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.48.128", + "prefixLen":25, + "network":"193.36.48.128\/25", + "version":17404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.49.0", + "prefixLen":25, + "network":"193.36.49.0\/25", + "version":17403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.49.128", + "prefixLen":25, + "network":"193.36.49.128\/25", + "version":17402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.50.0", + "prefixLen":25, + "network":"193.36.50.0\/25", + "version":17401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.50.128", + "prefixLen":25, + "network":"193.36.50.128\/25", + "version":17400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.51.0", + "prefixLen":25, + "network":"193.36.51.0\/25", + "version":17399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.51.128", + "prefixLen":25, + "network":"193.36.51.128\/25", + "version":17398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.64.0", + "prefixLen":25, + "network":"193.36.64.0\/25", + "version":17397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.64.128", + "prefixLen":25, + "network":"193.36.64.128\/25", + "version":17396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.65.0", + "prefixLen":25, + "network":"193.36.65.0\/25", + "version":17395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.65.128", + "prefixLen":25, + "network":"193.36.65.128\/25", + "version":17394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.66.0", + "prefixLen":25, + "network":"193.36.66.0\/25", + "version":17393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.66.128", + "prefixLen":25, + "network":"193.36.66.128\/25", + "version":17392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.67.0", + "prefixLen":25, + "network":"193.36.67.0\/25", + "version":17391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.67.128", + "prefixLen":25, + "network":"193.36.67.128\/25", + "version":17390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.80.0", + "prefixLen":25, + "network":"193.36.80.0\/25", + "version":17389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.80.128", + "prefixLen":25, + "network":"193.36.80.128\/25", + "version":17388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.81.0", + "prefixLen":25, + "network":"193.36.81.0\/25", + "version":17387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.81.128", + "prefixLen":25, + "network":"193.36.81.128\/25", + "version":17386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.82.0", + "prefixLen":25, + "network":"193.36.82.0\/25", + "version":17385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.82.128", + "prefixLen":25, + "network":"193.36.82.128\/25", + "version":17384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.83.0", + "prefixLen":25, + "network":"193.36.83.0\/25", + "version":17383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.83.128", + "prefixLen":25, + "network":"193.36.83.128\/25", + "version":17382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.96.0", + "prefixLen":25, + "network":"193.36.96.0\/25", + "version":17381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.96.128", + "prefixLen":25, + "network":"193.36.96.128\/25", + "version":17380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.97.0", + "prefixLen":25, + "network":"193.36.97.0\/25", + "version":17379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.97.128", + "prefixLen":25, + "network":"193.36.97.128\/25", + "version":17378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.98.0", + "prefixLen":25, + "network":"193.36.98.0\/25", + "version":17377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.98.128", + "prefixLen":25, + "network":"193.36.98.128\/25", + "version":17376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.99.0", + "prefixLen":25, + "network":"193.36.99.0\/25", + "version":17375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.99.128", + "prefixLen":25, + "network":"193.36.99.128\/25", + "version":17374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.112.0", + "prefixLen":25, + "network":"193.36.112.0\/25", + "version":17373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.112.128", + "prefixLen":25, + "network":"193.36.112.128\/25", + "version":17372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.113.0", + "prefixLen":25, + "network":"193.36.113.0\/25", + "version":17371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.113.128", + "prefixLen":25, + "network":"193.36.113.128\/25", + "version":17370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.114.0", + "prefixLen":25, + "network":"193.36.114.0\/25", + "version":17369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.114.128", + "prefixLen":25, + "network":"193.36.114.128\/25", + "version":17368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.115.0", + "prefixLen":25, + "network":"193.36.115.0\/25", + "version":17367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.115.128", + "prefixLen":25, + "network":"193.36.115.128\/25", + "version":17366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.128.0", + "prefixLen":25, + "network":"193.36.128.0\/25", + "version":17365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.128.128", + "prefixLen":25, + "network":"193.36.128.128\/25", + "version":17364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.129.0", + "prefixLen":25, + "network":"193.36.129.0\/25", + "version":17363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.129.128", + "prefixLen":25, + "network":"193.36.129.128\/25", + "version":17362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.130.0", + "prefixLen":25, + "network":"193.36.130.0\/25", + "version":17361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.130.128", + "prefixLen":25, + "network":"193.36.130.128\/25", + "version":17360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.131.0", + "prefixLen":25, + "network":"193.36.131.0\/25", + "version":17359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.131.128", + "prefixLen":25, + "network":"193.36.131.128\/25", + "version":17358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.144.0", + "prefixLen":25, + "network":"193.36.144.0\/25", + "version":17357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.144.128", + "prefixLen":25, + "network":"193.36.144.128\/25", + "version":17356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.145.0", + "prefixLen":25, + "network":"193.36.145.0\/25", + "version":17355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.145.128", + "prefixLen":25, + "network":"193.36.145.128\/25", + "version":17354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.146.0", + "prefixLen":25, + "network":"193.36.146.0\/25", + "version":17353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.146.128", + "prefixLen":25, + "network":"193.36.146.128\/25", + "version":17352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.147.0", + "prefixLen":25, + "network":"193.36.147.0\/25", + "version":17351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.147.128", + "prefixLen":25, + "network":"193.36.147.128\/25", + "version":17350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.160.0", + "prefixLen":25, + "network":"193.36.160.0\/25", + "version":17349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.160.128", + "prefixLen":25, + "network":"193.36.160.128\/25", + "version":17348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.161.0", + "prefixLen":25, + "network":"193.36.161.0\/25", + "version":17347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.161.128", + "prefixLen":25, + "network":"193.36.161.128\/25", + "version":17346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.162.0", + "prefixLen":25, + "network":"193.36.162.0\/25", + "version":17345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.162.128", + "prefixLen":25, + "network":"193.36.162.128\/25", + "version":17344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.163.0", + "prefixLen":25, + "network":"193.36.163.0\/25", + "version":17343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.163.128", + "prefixLen":25, + "network":"193.36.163.128\/25", + "version":17342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.176.0", + "prefixLen":25, + "network":"193.36.176.0\/25", + "version":17341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.176.128", + "prefixLen":25, + "network":"193.36.176.128\/25", + "version":17340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.177.0", + "prefixLen":25, + "network":"193.36.177.0\/25", + "version":17339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.177.128", + "prefixLen":25, + "network":"193.36.177.128\/25", + "version":17338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.178.0", + "prefixLen":25, + "network":"193.36.178.0\/25", + "version":17337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.178.128", + "prefixLen":25, + "network":"193.36.178.128\/25", + "version":17336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.179.0", + "prefixLen":25, + "network":"193.36.179.0\/25", + "version":17335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.179.128", + "prefixLen":25, + "network":"193.36.179.128\/25", + "version":17334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.192.0", + "prefixLen":25, + "network":"193.36.192.0\/25", + "version":17333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.192.128", + "prefixLen":25, + "network":"193.36.192.128\/25", + "version":17332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.193.0", + "prefixLen":25, + "network":"193.36.193.0\/25", + "version":17331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.193.128", + "prefixLen":25, + "network":"193.36.193.128\/25", + "version":17330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.194.0", + "prefixLen":25, + "network":"193.36.194.0\/25", + "version":17329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.194.128", + "prefixLen":25, + "network":"193.36.194.128\/25", + "version":17328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.195.0", + "prefixLen":25, + "network":"193.36.195.0\/25", + "version":17327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.195.128", + "prefixLen":25, + "network":"193.36.195.128\/25", + "version":17326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.208.0", + "prefixLen":25, + "network":"193.36.208.0\/25", + "version":17325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.208.128", + "prefixLen":25, + "network":"193.36.208.128\/25", + "version":17324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.209.0", + "prefixLen":25, + "network":"193.36.209.0\/25", + "version":17323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.209.128", + "prefixLen":25, + "network":"193.36.209.128\/25", + "version":17322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.210.0", + "prefixLen":25, + "network":"193.36.210.0\/25", + "version":17321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.210.128", + "prefixLen":25, + "network":"193.36.210.128\/25", + "version":17320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.211.0", + "prefixLen":25, + "network":"193.36.211.0\/25", + "version":17319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.211.128", + "prefixLen":25, + "network":"193.36.211.128\/25", + "version":17318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.224.0", + "prefixLen":25, + "network":"193.36.224.0\/25", + "version":17317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.224.128", + "prefixLen":25, + "network":"193.36.224.128\/25", + "version":17316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.225.0", + "prefixLen":25, + "network":"193.36.225.0\/25", + "version":17315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.225.128", + "prefixLen":25, + "network":"193.36.225.128\/25", + "version":17314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.226.0", + "prefixLen":25, + "network":"193.36.226.0\/25", + "version":17313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.226.128", + "prefixLen":25, + "network":"193.36.226.128\/25", + "version":17312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.227.0", + "prefixLen":25, + "network":"193.36.227.0\/25", + "version":17311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.227.128", + "prefixLen":25, + "network":"193.36.227.128\/25", + "version":17310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.240.0", + "prefixLen":25, + "network":"193.36.240.0\/25", + "version":17309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.240.128", + "prefixLen":25, + "network":"193.36.240.128\/25", + "version":17308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.241.0", + "prefixLen":25, + "network":"193.36.241.0\/25", + "version":17307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.241.128", + "prefixLen":25, + "network":"193.36.241.128\/25", + "version":17306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.242.0", + "prefixLen":25, + "network":"193.36.242.0\/25", + "version":17305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.242.128", + "prefixLen":25, + "network":"193.36.242.128\/25", + "version":17304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.243.0", + "prefixLen":25, + "network":"193.36.243.0\/25", + "version":17303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.36.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.36.243.128", + "prefixLen":25, + "network":"193.36.243.128\/25", + "version":17302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64724 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.0.0", + "prefixLen":25, + "network":"193.37.0.0\/25", + "version":17429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.0.128", + "prefixLen":25, + "network":"193.37.0.128\/25", + "version":17556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.1.0", + "prefixLen":25, + "network":"193.37.1.0\/25", + "version":17555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.1.128", + "prefixLen":25, + "network":"193.37.1.128\/25", + "version":17554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.2.0", + "prefixLen":25, + "network":"193.37.2.0\/25", + "version":17553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.2.128", + "prefixLen":25, + "network":"193.37.2.128\/25", + "version":17552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.3.0", + "prefixLen":25, + "network":"193.37.3.0\/25", + "version":17551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.3.128", + "prefixLen":25, + "network":"193.37.3.128\/25", + "version":17550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.16.0", + "prefixLen":25, + "network":"193.37.16.0\/25", + "version":17549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.16.128", + "prefixLen":25, + "network":"193.37.16.128\/25", + "version":17548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.17.0", + "prefixLen":25, + "network":"193.37.17.0\/25", + "version":17547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.17.128", + "prefixLen":25, + "network":"193.37.17.128\/25", + "version":17546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.18.0", + "prefixLen":25, + "network":"193.37.18.0\/25", + "version":17545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.18.128", + "prefixLen":25, + "network":"193.37.18.128\/25", + "version":17544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.19.0", + "prefixLen":25, + "network":"193.37.19.0\/25", + "version":17543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.19.128", + "prefixLen":25, + "network":"193.37.19.128\/25", + "version":17542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.32.0", + "prefixLen":25, + "network":"193.37.32.0\/25", + "version":17541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.32.128", + "prefixLen":25, + "network":"193.37.32.128\/25", + "version":17540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.33.0", + "prefixLen":25, + "network":"193.37.33.0\/25", + "version":17539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.33.128", + "prefixLen":25, + "network":"193.37.33.128\/25", + "version":17538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.34.0", + "prefixLen":25, + "network":"193.37.34.0\/25", + "version":17537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.34.128", + "prefixLen":25, + "network":"193.37.34.128\/25", + "version":17536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.35.0", + "prefixLen":25, + "network":"193.37.35.0\/25", + "version":17535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.35.128", + "prefixLen":25, + "network":"193.37.35.128\/25", + "version":17534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.48.0", + "prefixLen":25, + "network":"193.37.48.0\/25", + "version":17533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.48.128", + "prefixLen":25, + "network":"193.37.48.128\/25", + "version":17532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.49.0", + "prefixLen":25, + "network":"193.37.49.0\/25", + "version":17531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.49.128", + "prefixLen":25, + "network":"193.37.49.128\/25", + "version":17530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.50.0", + "prefixLen":25, + "network":"193.37.50.0\/25", + "version":17529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.50.128", + "prefixLen":25, + "network":"193.37.50.128\/25", + "version":17528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.51.0", + "prefixLen":25, + "network":"193.37.51.0\/25", + "version":17527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.51.128", + "prefixLen":25, + "network":"193.37.51.128\/25", + "version":17526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.64.0", + "prefixLen":25, + "network":"193.37.64.0\/25", + "version":17525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.64.128", + "prefixLen":25, + "network":"193.37.64.128\/25", + "version":17524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.65.0", + "prefixLen":25, + "network":"193.37.65.0\/25", + "version":17523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.65.128", + "prefixLen":25, + "network":"193.37.65.128\/25", + "version":17522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.66.0", + "prefixLen":25, + "network":"193.37.66.0\/25", + "version":17521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.66.128", + "prefixLen":25, + "network":"193.37.66.128\/25", + "version":17520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.67.0", + "prefixLen":25, + "network":"193.37.67.0\/25", + "version":17519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.67.128", + "prefixLen":25, + "network":"193.37.67.128\/25", + "version":17518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.80.0", + "prefixLen":25, + "network":"193.37.80.0\/25", + "version":17517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.80.128", + "prefixLen":25, + "network":"193.37.80.128\/25", + "version":17516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.81.0", + "prefixLen":25, + "network":"193.37.81.0\/25", + "version":17515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.81.128", + "prefixLen":25, + "network":"193.37.81.128\/25", + "version":17514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.82.0", + "prefixLen":25, + "network":"193.37.82.0\/25", + "version":17513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.82.128", + "prefixLen":25, + "network":"193.37.82.128\/25", + "version":17512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.83.0", + "prefixLen":25, + "network":"193.37.83.0\/25", + "version":17511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.83.128", + "prefixLen":25, + "network":"193.37.83.128\/25", + "version":17510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.96.0", + "prefixLen":25, + "network":"193.37.96.0\/25", + "version":17509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.96.128", + "prefixLen":25, + "network":"193.37.96.128\/25", + "version":17508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.97.0", + "prefixLen":25, + "network":"193.37.97.0\/25", + "version":17507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.97.128", + "prefixLen":25, + "network":"193.37.97.128\/25", + "version":17506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.98.0", + "prefixLen":25, + "network":"193.37.98.0\/25", + "version":17505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.98.128", + "prefixLen":25, + "network":"193.37.98.128\/25", + "version":17504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.99.0", + "prefixLen":25, + "network":"193.37.99.0\/25", + "version":17503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.99.128", + "prefixLen":25, + "network":"193.37.99.128\/25", + "version":17502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.112.0", + "prefixLen":25, + "network":"193.37.112.0\/25", + "version":17501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.112.128", + "prefixLen":25, + "network":"193.37.112.128\/25", + "version":17500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.113.0", + "prefixLen":25, + "network":"193.37.113.0\/25", + "version":17499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.113.128", + "prefixLen":25, + "network":"193.37.113.128\/25", + "version":17498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.114.0", + "prefixLen":25, + "network":"193.37.114.0\/25", + "version":17497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.114.128", + "prefixLen":25, + "network":"193.37.114.128\/25", + "version":17496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.115.0", + "prefixLen":25, + "network":"193.37.115.0\/25", + "version":17495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.115.128", + "prefixLen":25, + "network":"193.37.115.128\/25", + "version":17494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.128.0", + "prefixLen":25, + "network":"193.37.128.0\/25", + "version":17493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.128.128", + "prefixLen":25, + "network":"193.37.128.128\/25", + "version":17492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.129.0", + "prefixLen":25, + "network":"193.37.129.0\/25", + "version":17491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.129.128", + "prefixLen":25, + "network":"193.37.129.128\/25", + "version":17490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.130.0", + "prefixLen":25, + "network":"193.37.130.0\/25", + "version":17489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.130.128", + "prefixLen":25, + "network":"193.37.130.128\/25", + "version":17488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.131.0", + "prefixLen":25, + "network":"193.37.131.0\/25", + "version":17487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.131.128", + "prefixLen":25, + "network":"193.37.131.128\/25", + "version":17486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.144.0", + "prefixLen":25, + "network":"193.37.144.0\/25", + "version":17485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.144.128", + "prefixLen":25, + "network":"193.37.144.128\/25", + "version":17484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.145.0", + "prefixLen":25, + "network":"193.37.145.0\/25", + "version":17483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.145.128", + "prefixLen":25, + "network":"193.37.145.128\/25", + "version":17482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.146.0", + "prefixLen":25, + "network":"193.37.146.0\/25", + "version":17481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.146.128", + "prefixLen":25, + "network":"193.37.146.128\/25", + "version":17480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.147.0", + "prefixLen":25, + "network":"193.37.147.0\/25", + "version":17479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.147.128", + "prefixLen":25, + "network":"193.37.147.128\/25", + "version":17478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.160.0", + "prefixLen":25, + "network":"193.37.160.0\/25", + "version":17477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.160.128", + "prefixLen":25, + "network":"193.37.160.128\/25", + "version":17476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.161.0", + "prefixLen":25, + "network":"193.37.161.0\/25", + "version":17475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.161.128", + "prefixLen":25, + "network":"193.37.161.128\/25", + "version":17474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.162.0", + "prefixLen":25, + "network":"193.37.162.0\/25", + "version":17473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.162.128", + "prefixLen":25, + "network":"193.37.162.128\/25", + "version":17472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.163.0", + "prefixLen":25, + "network":"193.37.163.0\/25", + "version":17471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.163.128", + "prefixLen":25, + "network":"193.37.163.128\/25", + "version":17470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.176.0", + "prefixLen":25, + "network":"193.37.176.0\/25", + "version":17469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.176.128", + "prefixLen":25, + "network":"193.37.176.128\/25", + "version":17468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.177.0", + "prefixLen":25, + "network":"193.37.177.0\/25", + "version":17467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.177.128", + "prefixLen":25, + "network":"193.37.177.128\/25", + "version":17466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.178.0", + "prefixLen":25, + "network":"193.37.178.0\/25", + "version":17465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.178.128", + "prefixLen":25, + "network":"193.37.178.128\/25", + "version":17464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.179.0", + "prefixLen":25, + "network":"193.37.179.0\/25", + "version":17463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.179.128", + "prefixLen":25, + "network":"193.37.179.128\/25", + "version":17462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.192.0", + "prefixLen":25, + "network":"193.37.192.0\/25", + "version":17461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.192.128", + "prefixLen":25, + "network":"193.37.192.128\/25", + "version":17460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.193.0", + "prefixLen":25, + "network":"193.37.193.0\/25", + "version":17459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.193.128", + "prefixLen":25, + "network":"193.37.193.128\/25", + "version":17458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.194.0", + "prefixLen":25, + "network":"193.37.194.0\/25", + "version":17457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.194.128", + "prefixLen":25, + "network":"193.37.194.128\/25", + "version":17456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.195.0", + "prefixLen":25, + "network":"193.37.195.0\/25", + "version":17455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.195.128", + "prefixLen":25, + "network":"193.37.195.128\/25", + "version":17454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.208.0", + "prefixLen":25, + "network":"193.37.208.0\/25", + "version":17453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.208.128", + "prefixLen":25, + "network":"193.37.208.128\/25", + "version":17452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.209.0", + "prefixLen":25, + "network":"193.37.209.0\/25", + "version":17451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.209.128", + "prefixLen":25, + "network":"193.37.209.128\/25", + "version":17450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.210.0", + "prefixLen":25, + "network":"193.37.210.0\/25", + "version":17449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.210.128", + "prefixLen":25, + "network":"193.37.210.128\/25", + "version":17448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.211.0", + "prefixLen":25, + "network":"193.37.211.0\/25", + "version":17447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.211.128", + "prefixLen":25, + "network":"193.37.211.128\/25", + "version":17446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.224.0", + "prefixLen":25, + "network":"193.37.224.0\/25", + "version":17445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.224.128", + "prefixLen":25, + "network":"193.37.224.128\/25", + "version":17444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.225.0", + "prefixLen":25, + "network":"193.37.225.0\/25", + "version":17443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.225.128", + "prefixLen":25, + "network":"193.37.225.128\/25", + "version":17442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.226.0", + "prefixLen":25, + "network":"193.37.226.0\/25", + "version":17441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.226.128", + "prefixLen":25, + "network":"193.37.226.128\/25", + "version":17440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.227.0", + "prefixLen":25, + "network":"193.37.227.0\/25", + "version":17439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.227.128", + "prefixLen":25, + "network":"193.37.227.128\/25", + "version":17438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.240.0", + "prefixLen":25, + "network":"193.37.240.0\/25", + "version":17437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.240.128", + "prefixLen":25, + "network":"193.37.240.128\/25", + "version":17436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.241.0", + "prefixLen":25, + "network":"193.37.241.0\/25", + "version":17435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.241.128", + "prefixLen":25, + "network":"193.37.241.128\/25", + "version":17434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.242.0", + "prefixLen":25, + "network":"193.37.242.0\/25", + "version":17433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.242.128", + "prefixLen":25, + "network":"193.37.242.128\/25", + "version":17432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.243.0", + "prefixLen":25, + "network":"193.37.243.0\/25", + "version":17431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.37.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.37.243.128", + "prefixLen":25, + "network":"193.37.243.128\/25", + "version":17430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64725 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.0.0", + "prefixLen":25, + "network":"193.38.0.0\/25", + "version":18837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.0.128", + "prefixLen":25, + "network":"193.38.0.128\/25", + "version":18964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.1.0", + "prefixLen":25, + "network":"193.38.1.0\/25", + "version":18963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.1.128", + "prefixLen":25, + "network":"193.38.1.128\/25", + "version":18962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.2.0", + "prefixLen":25, + "network":"193.38.2.0\/25", + "version":18961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.2.128", + "prefixLen":25, + "network":"193.38.2.128\/25", + "version":18960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.3.0", + "prefixLen":25, + "network":"193.38.3.0\/25", + "version":18959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.3.128", + "prefixLen":25, + "network":"193.38.3.128\/25", + "version":18958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.16.0", + "prefixLen":25, + "network":"193.38.16.0\/25", + "version":18957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.16.128", + "prefixLen":25, + "network":"193.38.16.128\/25", + "version":18956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.17.0", + "prefixLen":25, + "network":"193.38.17.0\/25", + "version":18955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.17.128", + "prefixLen":25, + "network":"193.38.17.128\/25", + "version":18954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.18.0", + "prefixLen":25, + "network":"193.38.18.0\/25", + "version":18953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.18.128", + "prefixLen":25, + "network":"193.38.18.128\/25", + "version":18952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.19.0", + "prefixLen":25, + "network":"193.38.19.0\/25", + "version":18951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.19.128", + "prefixLen":25, + "network":"193.38.19.128\/25", + "version":18950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.32.0", + "prefixLen":25, + "network":"193.38.32.0\/25", + "version":18949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.32.128", + "prefixLen":25, + "network":"193.38.32.128\/25", + "version":18948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.33.0", + "prefixLen":25, + "network":"193.38.33.0\/25", + "version":18947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.33.128", + "prefixLen":25, + "network":"193.38.33.128\/25", + "version":18946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.34.0", + "prefixLen":25, + "network":"193.38.34.0\/25", + "version":18945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.34.128", + "prefixLen":25, + "network":"193.38.34.128\/25", + "version":18944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.35.0", + "prefixLen":25, + "network":"193.38.35.0\/25", + "version":18943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.35.128", + "prefixLen":25, + "network":"193.38.35.128\/25", + "version":18942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.48.0", + "prefixLen":25, + "network":"193.38.48.0\/25", + "version":18941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.48.128", + "prefixLen":25, + "network":"193.38.48.128\/25", + "version":18940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.49.0", + "prefixLen":25, + "network":"193.38.49.0\/25", + "version":18939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.49.128", + "prefixLen":25, + "network":"193.38.49.128\/25", + "version":18938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.50.0", + "prefixLen":25, + "network":"193.38.50.0\/25", + "version":18937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.50.128", + "prefixLen":25, + "network":"193.38.50.128\/25", + "version":18936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.51.0", + "prefixLen":25, + "network":"193.38.51.0\/25", + "version":18935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.51.128", + "prefixLen":25, + "network":"193.38.51.128\/25", + "version":18934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.64.0", + "prefixLen":25, + "network":"193.38.64.0\/25", + "version":18933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.64.128", + "prefixLen":25, + "network":"193.38.64.128\/25", + "version":18932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.65.0", + "prefixLen":25, + "network":"193.38.65.0\/25", + "version":18931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.65.128", + "prefixLen":25, + "network":"193.38.65.128\/25", + "version":18930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.66.0", + "prefixLen":25, + "network":"193.38.66.0\/25", + "version":18929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.66.128", + "prefixLen":25, + "network":"193.38.66.128\/25", + "version":18928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.67.0", + "prefixLen":25, + "network":"193.38.67.0\/25", + "version":18927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.67.128", + "prefixLen":25, + "network":"193.38.67.128\/25", + "version":18926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.80.0", + "prefixLen":25, + "network":"193.38.80.0\/25", + "version":18925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.80.128", + "prefixLen":25, + "network":"193.38.80.128\/25", + "version":18924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.81.0", + "prefixLen":25, + "network":"193.38.81.0\/25", + "version":18923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.81.128", + "prefixLen":25, + "network":"193.38.81.128\/25", + "version":18922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.82.0", + "prefixLen":25, + "network":"193.38.82.0\/25", + "version":18921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.82.128", + "prefixLen":25, + "network":"193.38.82.128\/25", + "version":18920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.83.0", + "prefixLen":25, + "network":"193.38.83.0\/25", + "version":18919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.83.128", + "prefixLen":25, + "network":"193.38.83.128\/25", + "version":18918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.96.0", + "prefixLen":25, + "network":"193.38.96.0\/25", + "version":18917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.96.128", + "prefixLen":25, + "network":"193.38.96.128\/25", + "version":18916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.97.0", + "prefixLen":25, + "network":"193.38.97.0\/25", + "version":18915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.97.128", + "prefixLen":25, + "network":"193.38.97.128\/25", + "version":18914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.98.0", + "prefixLen":25, + "network":"193.38.98.0\/25", + "version":18913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.98.128", + "prefixLen":25, + "network":"193.38.98.128\/25", + "version":18912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.99.0", + "prefixLen":25, + "network":"193.38.99.0\/25", + "version":18911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.99.128", + "prefixLen":25, + "network":"193.38.99.128\/25", + "version":18910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.112.0", + "prefixLen":25, + "network":"193.38.112.0\/25", + "version":18909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.112.128", + "prefixLen":25, + "network":"193.38.112.128\/25", + "version":18908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.113.0", + "prefixLen":25, + "network":"193.38.113.0\/25", + "version":18907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.113.128", + "prefixLen":25, + "network":"193.38.113.128\/25", + "version":18906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.114.0", + "prefixLen":25, + "network":"193.38.114.0\/25", + "version":18905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.114.128", + "prefixLen":25, + "network":"193.38.114.128\/25", + "version":18904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.115.0", + "prefixLen":25, + "network":"193.38.115.0\/25", + "version":18903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.115.128", + "prefixLen":25, + "network":"193.38.115.128\/25", + "version":18902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.128.0", + "prefixLen":25, + "network":"193.38.128.0\/25", + "version":18901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.128.128", + "prefixLen":25, + "network":"193.38.128.128\/25", + "version":18900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.129.0", + "prefixLen":25, + "network":"193.38.129.0\/25", + "version":18899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.129.128", + "prefixLen":25, + "network":"193.38.129.128\/25", + "version":18898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.130.0", + "prefixLen":25, + "network":"193.38.130.0\/25", + "version":18897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.130.128", + "prefixLen":25, + "network":"193.38.130.128\/25", + "version":18896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.131.0", + "prefixLen":25, + "network":"193.38.131.0\/25", + "version":18895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.131.128", + "prefixLen":25, + "network":"193.38.131.128\/25", + "version":18894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.144.0", + "prefixLen":25, + "network":"193.38.144.0\/25", + "version":18893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.144.128", + "prefixLen":25, + "network":"193.38.144.128\/25", + "version":18892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.145.0", + "prefixLen":25, + "network":"193.38.145.0\/25", + "version":18891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.145.128", + "prefixLen":25, + "network":"193.38.145.128\/25", + "version":18890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.146.0", + "prefixLen":25, + "network":"193.38.146.0\/25", + "version":18889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.146.128", + "prefixLen":25, + "network":"193.38.146.128\/25", + "version":18888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.147.0", + "prefixLen":25, + "network":"193.38.147.0\/25", + "version":18887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.147.128", + "prefixLen":25, + "network":"193.38.147.128\/25", + "version":18886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.160.0", + "prefixLen":25, + "network":"193.38.160.0\/25", + "version":18885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.160.128", + "prefixLen":25, + "network":"193.38.160.128\/25", + "version":18884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.161.0", + "prefixLen":25, + "network":"193.38.161.0\/25", + "version":18883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.161.128", + "prefixLen":25, + "network":"193.38.161.128\/25", + "version":18882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.162.0", + "prefixLen":25, + "network":"193.38.162.0\/25", + "version":18881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.162.128", + "prefixLen":25, + "network":"193.38.162.128\/25", + "version":18880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.163.0", + "prefixLen":25, + "network":"193.38.163.0\/25", + "version":18879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.163.128", + "prefixLen":25, + "network":"193.38.163.128\/25", + "version":18878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.176.0", + "prefixLen":25, + "network":"193.38.176.0\/25", + "version":18877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.176.128", + "prefixLen":25, + "network":"193.38.176.128\/25", + "version":18876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.177.0", + "prefixLen":25, + "network":"193.38.177.0\/25", + "version":18875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.177.128", + "prefixLen":25, + "network":"193.38.177.128\/25", + "version":18874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.178.0", + "prefixLen":25, + "network":"193.38.178.0\/25", + "version":18873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.178.128", + "prefixLen":25, + "network":"193.38.178.128\/25", + "version":18872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.179.0", + "prefixLen":25, + "network":"193.38.179.0\/25", + "version":18871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.179.128", + "prefixLen":25, + "network":"193.38.179.128\/25", + "version":18870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.192.0", + "prefixLen":25, + "network":"193.38.192.0\/25", + "version":18869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.192.128", + "prefixLen":25, + "network":"193.38.192.128\/25", + "version":18868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.193.0", + "prefixLen":25, + "network":"193.38.193.0\/25", + "version":18867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.193.128", + "prefixLen":25, + "network":"193.38.193.128\/25", + "version":18866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.194.0", + "prefixLen":25, + "network":"193.38.194.0\/25", + "version":18865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.194.128", + "prefixLen":25, + "network":"193.38.194.128\/25", + "version":18864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.195.0", + "prefixLen":25, + "network":"193.38.195.0\/25", + "version":18863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.195.128", + "prefixLen":25, + "network":"193.38.195.128\/25", + "version":18862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.208.0", + "prefixLen":25, + "network":"193.38.208.0\/25", + "version":18861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.208.128", + "prefixLen":25, + "network":"193.38.208.128\/25", + "version":18860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.209.0", + "prefixLen":25, + "network":"193.38.209.0\/25", + "version":18859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.209.128", + "prefixLen":25, + "network":"193.38.209.128\/25", + "version":18858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.210.0", + "prefixLen":25, + "network":"193.38.210.0\/25", + "version":18857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.210.128", + "prefixLen":25, + "network":"193.38.210.128\/25", + "version":18856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.211.0", + "prefixLen":25, + "network":"193.38.211.0\/25", + "version":18855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.211.128", + "prefixLen":25, + "network":"193.38.211.128\/25", + "version":18854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.224.0", + "prefixLen":25, + "network":"193.38.224.0\/25", + "version":18853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.224.128", + "prefixLen":25, + "network":"193.38.224.128\/25", + "version":18852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.225.0", + "prefixLen":25, + "network":"193.38.225.0\/25", + "version":18851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.225.128", + "prefixLen":25, + "network":"193.38.225.128\/25", + "version":18850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.226.0", + "prefixLen":25, + "network":"193.38.226.0\/25", + "version":18849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.226.128", + "prefixLen":25, + "network":"193.38.226.128\/25", + "version":18848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.227.0", + "prefixLen":25, + "network":"193.38.227.0\/25", + "version":18847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.227.128", + "prefixLen":25, + "network":"193.38.227.128\/25", + "version":18846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.240.0", + "prefixLen":25, + "network":"193.38.240.0\/25", + "version":18845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.240.128", + "prefixLen":25, + "network":"193.38.240.128\/25", + "version":18844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.241.0", + "prefixLen":25, + "network":"193.38.241.0\/25", + "version":18843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.241.128", + "prefixLen":25, + "network":"193.38.241.128\/25", + "version":18842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.242.0", + "prefixLen":25, + "network":"193.38.242.0\/25", + "version":18841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.242.128", + "prefixLen":25, + "network":"193.38.242.128\/25", + "version":18840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.243.0", + "prefixLen":25, + "network":"193.38.243.0\/25", + "version":18839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.38.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.38.243.128", + "prefixLen":25, + "network":"193.38.243.128\/25", + "version":18838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64726 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.0.0", + "prefixLen":25, + "network":"193.39.0.0\/25", + "version":18965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.0.128", + "prefixLen":25, + "network":"193.39.0.128\/25", + "version":19092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.1.0", + "prefixLen":25, + "network":"193.39.1.0\/25", + "version":19091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.1.128", + "prefixLen":25, + "network":"193.39.1.128\/25", + "version":19090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.2.0", + "prefixLen":25, + "network":"193.39.2.0\/25", + "version":19089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.2.128", + "prefixLen":25, + "network":"193.39.2.128\/25", + "version":19088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.3.0", + "prefixLen":25, + "network":"193.39.3.0\/25", + "version":19087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.3.128", + "prefixLen":25, + "network":"193.39.3.128\/25", + "version":19086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.16.0", + "prefixLen":25, + "network":"193.39.16.0\/25", + "version":19085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.16.128", + "prefixLen":25, + "network":"193.39.16.128\/25", + "version":19084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.17.0", + "prefixLen":25, + "network":"193.39.17.0\/25", + "version":19083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.17.128", + "prefixLen":25, + "network":"193.39.17.128\/25", + "version":19082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.18.0", + "prefixLen":25, + "network":"193.39.18.0\/25", + "version":19081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.18.128", + "prefixLen":25, + "network":"193.39.18.128\/25", + "version":19080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.19.0", + "prefixLen":25, + "network":"193.39.19.0\/25", + "version":19079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.19.128", + "prefixLen":25, + "network":"193.39.19.128\/25", + "version":19078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.32.0", + "prefixLen":25, + "network":"193.39.32.0\/25", + "version":19077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.32.128", + "prefixLen":25, + "network":"193.39.32.128\/25", + "version":19076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.33.0", + "prefixLen":25, + "network":"193.39.33.0\/25", + "version":19075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.33.128", + "prefixLen":25, + "network":"193.39.33.128\/25", + "version":19074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.34.0", + "prefixLen":25, + "network":"193.39.34.0\/25", + "version":19073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.34.128", + "prefixLen":25, + "network":"193.39.34.128\/25", + "version":19072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.35.0", + "prefixLen":25, + "network":"193.39.35.0\/25", + "version":19071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.35.128", + "prefixLen":25, + "network":"193.39.35.128\/25", + "version":19070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.48.0", + "prefixLen":25, + "network":"193.39.48.0\/25", + "version":19069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.48.128", + "prefixLen":25, + "network":"193.39.48.128\/25", + "version":19068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.49.0", + "prefixLen":25, + "network":"193.39.49.0\/25", + "version":19067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.49.128", + "prefixLen":25, + "network":"193.39.49.128\/25", + "version":19066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.50.0", + "prefixLen":25, + "network":"193.39.50.0\/25", + "version":19065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.50.128", + "prefixLen":25, + "network":"193.39.50.128\/25", + "version":19064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.51.0", + "prefixLen":25, + "network":"193.39.51.0\/25", + "version":19063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.51.128", + "prefixLen":25, + "network":"193.39.51.128\/25", + "version":19062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.64.0", + "prefixLen":25, + "network":"193.39.64.0\/25", + "version":19061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.64.128", + "prefixLen":25, + "network":"193.39.64.128\/25", + "version":19060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.65.0", + "prefixLen":25, + "network":"193.39.65.0\/25", + "version":19059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.65.128", + "prefixLen":25, + "network":"193.39.65.128\/25", + "version":19058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.66.0", + "prefixLen":25, + "network":"193.39.66.0\/25", + "version":19057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.66.128", + "prefixLen":25, + "network":"193.39.66.128\/25", + "version":19056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.67.0", + "prefixLen":25, + "network":"193.39.67.0\/25", + "version":19055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.67.128", + "prefixLen":25, + "network":"193.39.67.128\/25", + "version":19054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.80.0", + "prefixLen":25, + "network":"193.39.80.0\/25", + "version":19053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.80.128", + "prefixLen":25, + "network":"193.39.80.128\/25", + "version":19052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.81.0", + "prefixLen":25, + "network":"193.39.81.0\/25", + "version":19051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.81.128", + "prefixLen":25, + "network":"193.39.81.128\/25", + "version":19050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.82.0", + "prefixLen":25, + "network":"193.39.82.0\/25", + "version":19049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.82.128", + "prefixLen":25, + "network":"193.39.82.128\/25", + "version":19048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.83.0", + "prefixLen":25, + "network":"193.39.83.0\/25", + "version":19047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.83.128", + "prefixLen":25, + "network":"193.39.83.128\/25", + "version":19046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.96.0", + "prefixLen":25, + "network":"193.39.96.0\/25", + "version":19045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.96.128", + "prefixLen":25, + "network":"193.39.96.128\/25", + "version":19044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.97.0", + "prefixLen":25, + "network":"193.39.97.0\/25", + "version":19043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.97.128", + "prefixLen":25, + "network":"193.39.97.128\/25", + "version":19042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.98.0", + "prefixLen":25, + "network":"193.39.98.0\/25", + "version":19041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.98.128", + "prefixLen":25, + "network":"193.39.98.128\/25", + "version":19040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.99.0", + "prefixLen":25, + "network":"193.39.99.0\/25", + "version":19039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.99.128", + "prefixLen":25, + "network":"193.39.99.128\/25", + "version":19038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.112.0", + "prefixLen":25, + "network":"193.39.112.0\/25", + "version":19037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.112.128", + "prefixLen":25, + "network":"193.39.112.128\/25", + "version":19036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.113.0", + "prefixLen":25, + "network":"193.39.113.0\/25", + "version":19035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.113.128", + "prefixLen":25, + "network":"193.39.113.128\/25", + "version":19034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.114.0", + "prefixLen":25, + "network":"193.39.114.0\/25", + "version":19033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.114.128", + "prefixLen":25, + "network":"193.39.114.128\/25", + "version":19032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.115.0", + "prefixLen":25, + "network":"193.39.115.0\/25", + "version":19031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.115.128", + "prefixLen":25, + "network":"193.39.115.128\/25", + "version":19030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.128.0", + "prefixLen":25, + "network":"193.39.128.0\/25", + "version":19029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.128.128", + "prefixLen":25, + "network":"193.39.128.128\/25", + "version":19028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.129.0", + "prefixLen":25, + "network":"193.39.129.0\/25", + "version":19027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.129.128", + "prefixLen":25, + "network":"193.39.129.128\/25", + "version":19026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.130.0", + "prefixLen":25, + "network":"193.39.130.0\/25", + "version":19025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.130.128", + "prefixLen":25, + "network":"193.39.130.128\/25", + "version":19024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.131.0", + "prefixLen":25, + "network":"193.39.131.0\/25", + "version":19023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.131.128", + "prefixLen":25, + "network":"193.39.131.128\/25", + "version":19022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.144.0", + "prefixLen":25, + "network":"193.39.144.0\/25", + "version":19021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.144.128", + "prefixLen":25, + "network":"193.39.144.128\/25", + "version":19020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.145.0", + "prefixLen":25, + "network":"193.39.145.0\/25", + "version":19019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.145.128", + "prefixLen":25, + "network":"193.39.145.128\/25", + "version":19018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.146.0", + "prefixLen":25, + "network":"193.39.146.0\/25", + "version":19017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.146.128", + "prefixLen":25, + "network":"193.39.146.128\/25", + "version":19016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.147.0", + "prefixLen":25, + "network":"193.39.147.0\/25", + "version":19015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.147.128", + "prefixLen":25, + "network":"193.39.147.128\/25", + "version":19014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.160.0", + "prefixLen":25, + "network":"193.39.160.0\/25", + "version":19013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.160.128", + "prefixLen":25, + "network":"193.39.160.128\/25", + "version":19012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.161.0", + "prefixLen":25, + "network":"193.39.161.0\/25", + "version":19011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.161.128", + "prefixLen":25, + "network":"193.39.161.128\/25", + "version":19010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.162.0", + "prefixLen":25, + "network":"193.39.162.0\/25", + "version":19009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.162.128", + "prefixLen":25, + "network":"193.39.162.128\/25", + "version":19008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.163.0", + "prefixLen":25, + "network":"193.39.163.0\/25", + "version":19007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.163.128", + "prefixLen":25, + "network":"193.39.163.128\/25", + "version":19006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.176.0", + "prefixLen":25, + "network":"193.39.176.0\/25", + "version":19005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.176.128", + "prefixLen":25, + "network":"193.39.176.128\/25", + "version":19004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.177.0", + "prefixLen":25, + "network":"193.39.177.0\/25", + "version":19003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.177.128", + "prefixLen":25, + "network":"193.39.177.128\/25", + "version":19002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.178.0", + "prefixLen":25, + "network":"193.39.178.0\/25", + "version":19001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.178.128", + "prefixLen":25, + "network":"193.39.178.128\/25", + "version":19000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.179.0", + "prefixLen":25, + "network":"193.39.179.0\/25", + "version":18999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.179.128", + "prefixLen":25, + "network":"193.39.179.128\/25", + "version":18998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.192.0", + "prefixLen":25, + "network":"193.39.192.0\/25", + "version":18997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.192.128", + "prefixLen":25, + "network":"193.39.192.128\/25", + "version":18996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.193.0", + "prefixLen":25, + "network":"193.39.193.0\/25", + "version":18995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.193.128", + "prefixLen":25, + "network":"193.39.193.128\/25", + "version":18994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.194.0", + "prefixLen":25, + "network":"193.39.194.0\/25", + "version":18993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.194.128", + "prefixLen":25, + "network":"193.39.194.128\/25", + "version":18992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.195.0", + "prefixLen":25, + "network":"193.39.195.0\/25", + "version":18991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.195.128", + "prefixLen":25, + "network":"193.39.195.128\/25", + "version":18990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.208.0", + "prefixLen":25, + "network":"193.39.208.0\/25", + "version":18989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.208.128", + "prefixLen":25, + "network":"193.39.208.128\/25", + "version":18988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.209.0", + "prefixLen":25, + "network":"193.39.209.0\/25", + "version":18987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.209.128", + "prefixLen":25, + "network":"193.39.209.128\/25", + "version":18986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.210.0", + "prefixLen":25, + "network":"193.39.210.0\/25", + "version":18985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.210.128", + "prefixLen":25, + "network":"193.39.210.128\/25", + "version":18984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.211.0", + "prefixLen":25, + "network":"193.39.211.0\/25", + "version":18983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.211.128", + "prefixLen":25, + "network":"193.39.211.128\/25", + "version":18982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.224.0", + "prefixLen":25, + "network":"193.39.224.0\/25", + "version":18981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.224.128", + "prefixLen":25, + "network":"193.39.224.128\/25", + "version":18980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.225.0", + "prefixLen":25, + "network":"193.39.225.0\/25", + "version":18979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.225.128", + "prefixLen":25, + "network":"193.39.225.128\/25", + "version":18978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.226.0", + "prefixLen":25, + "network":"193.39.226.0\/25", + "version":18977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.226.128", + "prefixLen":25, + "network":"193.39.226.128\/25", + "version":18976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.227.0", + "prefixLen":25, + "network":"193.39.227.0\/25", + "version":18975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.227.128", + "prefixLen":25, + "network":"193.39.227.128\/25", + "version":18974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.240.0", + "prefixLen":25, + "network":"193.39.240.0\/25", + "version":18973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.240.128", + "prefixLen":25, + "network":"193.39.240.128\/25", + "version":18972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.241.0", + "prefixLen":25, + "network":"193.39.241.0\/25", + "version":18971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.241.128", + "prefixLen":25, + "network":"193.39.241.128\/25", + "version":18970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.242.0", + "prefixLen":25, + "network":"193.39.242.0\/25", + "version":18969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.242.128", + "prefixLen":25, + "network":"193.39.242.128\/25", + "version":18968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.243.0", + "prefixLen":25, + "network":"193.39.243.0\/25", + "version":18967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.39.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.39.243.128", + "prefixLen":25, + "network":"193.39.243.128\/25", + "version":18966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64727 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.0.0", + "prefixLen":25, + "network":"193.40.0.0\/25", + "version":19093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.0.128", + "prefixLen":25, + "network":"193.40.0.128\/25", + "version":19220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.1.0", + "prefixLen":25, + "network":"193.40.1.0\/25", + "version":19219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.1.128", + "prefixLen":25, + "network":"193.40.1.128\/25", + "version":19218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.2.0", + "prefixLen":25, + "network":"193.40.2.0\/25", + "version":19217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.2.128", + "prefixLen":25, + "network":"193.40.2.128\/25", + "version":19216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.3.0", + "prefixLen":25, + "network":"193.40.3.0\/25", + "version":19215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.3.128", + "prefixLen":25, + "network":"193.40.3.128\/25", + "version":19214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.16.0", + "prefixLen":25, + "network":"193.40.16.0\/25", + "version":19213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.16.128", + "prefixLen":25, + "network":"193.40.16.128\/25", + "version":19212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.17.0", + "prefixLen":25, + "network":"193.40.17.0\/25", + "version":19211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.17.128", + "prefixLen":25, + "network":"193.40.17.128\/25", + "version":19210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.18.0", + "prefixLen":25, + "network":"193.40.18.0\/25", + "version":19209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.18.128", + "prefixLen":25, + "network":"193.40.18.128\/25", + "version":19208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.19.0", + "prefixLen":25, + "network":"193.40.19.0\/25", + "version":19207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.19.128", + "prefixLen":25, + "network":"193.40.19.128\/25", + "version":19206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.32.0", + "prefixLen":25, + "network":"193.40.32.0\/25", + "version":19205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.32.128", + "prefixLen":25, + "network":"193.40.32.128\/25", + "version":19204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.33.0", + "prefixLen":25, + "network":"193.40.33.0\/25", + "version":19203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.33.128", + "prefixLen":25, + "network":"193.40.33.128\/25", + "version":19202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.34.0", + "prefixLen":25, + "network":"193.40.34.0\/25", + "version":19201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.34.128", + "prefixLen":25, + "network":"193.40.34.128\/25", + "version":19200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.35.0", + "prefixLen":25, + "network":"193.40.35.0\/25", + "version":19199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.35.128", + "prefixLen":25, + "network":"193.40.35.128\/25", + "version":19198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.48.0", + "prefixLen":25, + "network":"193.40.48.0\/25", + "version":19197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.48.128", + "prefixLen":25, + "network":"193.40.48.128\/25", + "version":19196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.49.0", + "prefixLen":25, + "network":"193.40.49.0\/25", + "version":19195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.49.128", + "prefixLen":25, + "network":"193.40.49.128\/25", + "version":19194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.50.0", + "prefixLen":25, + "network":"193.40.50.0\/25", + "version":19193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.50.128", + "prefixLen":25, + "network":"193.40.50.128\/25", + "version":19192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.51.0", + "prefixLen":25, + "network":"193.40.51.0\/25", + "version":19191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.51.128", + "prefixLen":25, + "network":"193.40.51.128\/25", + "version":19190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.64.0", + "prefixLen":25, + "network":"193.40.64.0\/25", + "version":19189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.64.128", + "prefixLen":25, + "network":"193.40.64.128\/25", + "version":19188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.65.0", + "prefixLen":25, + "network":"193.40.65.0\/25", + "version":19187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.65.128", + "prefixLen":25, + "network":"193.40.65.128\/25", + "version":19186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.66.0", + "prefixLen":25, + "network":"193.40.66.0\/25", + "version":19185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.66.128", + "prefixLen":25, + "network":"193.40.66.128\/25", + "version":19184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.67.0", + "prefixLen":25, + "network":"193.40.67.0\/25", + "version":19183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.67.128", + "prefixLen":25, + "network":"193.40.67.128\/25", + "version":19182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.80.0", + "prefixLen":25, + "network":"193.40.80.0\/25", + "version":19181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.80.128", + "prefixLen":25, + "network":"193.40.80.128\/25", + "version":19180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.81.0", + "prefixLen":25, + "network":"193.40.81.0\/25", + "version":19179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.81.128", + "prefixLen":25, + "network":"193.40.81.128\/25", + "version":19178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.82.0", + "prefixLen":25, + "network":"193.40.82.0\/25", + "version":19177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.82.128", + "prefixLen":25, + "network":"193.40.82.128\/25", + "version":19176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.83.0", + "prefixLen":25, + "network":"193.40.83.0\/25", + "version":19175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.83.128", + "prefixLen":25, + "network":"193.40.83.128\/25", + "version":19174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.96.0", + "prefixLen":25, + "network":"193.40.96.0\/25", + "version":19173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.96.128", + "prefixLen":25, + "network":"193.40.96.128\/25", + "version":19172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.97.0", + "prefixLen":25, + "network":"193.40.97.0\/25", + "version":19171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.97.128", + "prefixLen":25, + "network":"193.40.97.128\/25", + "version":19170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.98.0", + "prefixLen":25, + "network":"193.40.98.0\/25", + "version":19169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.98.128", + "prefixLen":25, + "network":"193.40.98.128\/25", + "version":19168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.99.0", + "prefixLen":25, + "network":"193.40.99.0\/25", + "version":19167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.99.128", + "prefixLen":25, + "network":"193.40.99.128\/25", + "version":19166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.112.0", + "prefixLen":25, + "network":"193.40.112.0\/25", + "version":19165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.112.128", + "prefixLen":25, + "network":"193.40.112.128\/25", + "version":19164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.113.0", + "prefixLen":25, + "network":"193.40.113.0\/25", + "version":19163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.113.128", + "prefixLen":25, + "network":"193.40.113.128\/25", + "version":19162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.114.0", + "prefixLen":25, + "network":"193.40.114.0\/25", + "version":19161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.114.128", + "prefixLen":25, + "network":"193.40.114.128\/25", + "version":19160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.115.0", + "prefixLen":25, + "network":"193.40.115.0\/25", + "version":19159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.115.128", + "prefixLen":25, + "network":"193.40.115.128\/25", + "version":19158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.128.0", + "prefixLen":25, + "network":"193.40.128.0\/25", + "version":19157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.128.128", + "prefixLen":25, + "network":"193.40.128.128\/25", + "version":19156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.129.0", + "prefixLen":25, + "network":"193.40.129.0\/25", + "version":19155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.129.128", + "prefixLen":25, + "network":"193.40.129.128\/25", + "version":19154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.130.0", + "prefixLen":25, + "network":"193.40.130.0\/25", + "version":19153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.130.128", + "prefixLen":25, + "network":"193.40.130.128\/25", + "version":19152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.131.0", + "prefixLen":25, + "network":"193.40.131.0\/25", + "version":19151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.131.128", + "prefixLen":25, + "network":"193.40.131.128\/25", + "version":19150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.144.0", + "prefixLen":25, + "network":"193.40.144.0\/25", + "version":19149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.144.128", + "prefixLen":25, + "network":"193.40.144.128\/25", + "version":19148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.145.0", + "prefixLen":25, + "network":"193.40.145.0\/25", + "version":19147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.145.128", + "prefixLen":25, + "network":"193.40.145.128\/25", + "version":19146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.146.0", + "prefixLen":25, + "network":"193.40.146.0\/25", + "version":19145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.146.128", + "prefixLen":25, + "network":"193.40.146.128\/25", + "version":19144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.147.0", + "prefixLen":25, + "network":"193.40.147.0\/25", + "version":19143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.147.128", + "prefixLen":25, + "network":"193.40.147.128\/25", + "version":19142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.160.0", + "prefixLen":25, + "network":"193.40.160.0\/25", + "version":19141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.160.128", + "prefixLen":25, + "network":"193.40.160.128\/25", + "version":19140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.161.0", + "prefixLen":25, + "network":"193.40.161.0\/25", + "version":19139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.161.128", + "prefixLen":25, + "network":"193.40.161.128\/25", + "version":19138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.162.0", + "prefixLen":25, + "network":"193.40.162.0\/25", + "version":19137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.162.128", + "prefixLen":25, + "network":"193.40.162.128\/25", + "version":19136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.163.0", + "prefixLen":25, + "network":"193.40.163.0\/25", + "version":19135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.163.128", + "prefixLen":25, + "network":"193.40.163.128\/25", + "version":19134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.176.0", + "prefixLen":25, + "network":"193.40.176.0\/25", + "version":19133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.176.128", + "prefixLen":25, + "network":"193.40.176.128\/25", + "version":19132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.177.0", + "prefixLen":25, + "network":"193.40.177.0\/25", + "version":19131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.177.128", + "prefixLen":25, + "network":"193.40.177.128\/25", + "version":19130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.178.0", + "prefixLen":25, + "network":"193.40.178.0\/25", + "version":19129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.178.128", + "prefixLen":25, + "network":"193.40.178.128\/25", + "version":19128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.179.0", + "prefixLen":25, + "network":"193.40.179.0\/25", + "version":19127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.179.128", + "prefixLen":25, + "network":"193.40.179.128\/25", + "version":19126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.192.0", + "prefixLen":25, + "network":"193.40.192.0\/25", + "version":19125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.192.128", + "prefixLen":25, + "network":"193.40.192.128\/25", + "version":19124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.193.0", + "prefixLen":25, + "network":"193.40.193.0\/25", + "version":19123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.193.128", + "prefixLen":25, + "network":"193.40.193.128\/25", + "version":19122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.194.0", + "prefixLen":25, + "network":"193.40.194.0\/25", + "version":19121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.194.128", + "prefixLen":25, + "network":"193.40.194.128\/25", + "version":19120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.195.0", + "prefixLen":25, + "network":"193.40.195.0\/25", + "version":19119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.195.128", + "prefixLen":25, + "network":"193.40.195.128\/25", + "version":19118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.208.0", + "prefixLen":25, + "network":"193.40.208.0\/25", + "version":19117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.208.128", + "prefixLen":25, + "network":"193.40.208.128\/25", + "version":19116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.209.0", + "prefixLen":25, + "network":"193.40.209.0\/25", + "version":19115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.209.128", + "prefixLen":25, + "network":"193.40.209.128\/25", + "version":19114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.210.0", + "prefixLen":25, + "network":"193.40.210.0\/25", + "version":19113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.210.128", + "prefixLen":25, + "network":"193.40.210.128\/25", + "version":19112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.211.0", + "prefixLen":25, + "network":"193.40.211.0\/25", + "version":19111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.211.128", + "prefixLen":25, + "network":"193.40.211.128\/25", + "version":19110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.224.0", + "prefixLen":25, + "network":"193.40.224.0\/25", + "version":19109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.224.128", + "prefixLen":25, + "network":"193.40.224.128\/25", + "version":19108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.225.0", + "prefixLen":25, + "network":"193.40.225.0\/25", + "version":19107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.225.128", + "prefixLen":25, + "network":"193.40.225.128\/25", + "version":19106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.226.0", + "prefixLen":25, + "network":"193.40.226.0\/25", + "version":19105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.226.128", + "prefixLen":25, + "network":"193.40.226.128\/25", + "version":19104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.227.0", + "prefixLen":25, + "network":"193.40.227.0\/25", + "version":19103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.227.128", + "prefixLen":25, + "network":"193.40.227.128\/25", + "version":19102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.240.0", + "prefixLen":25, + "network":"193.40.240.0\/25", + "version":19101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.240.128", + "prefixLen":25, + "network":"193.40.240.128\/25", + "version":19100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.241.0", + "prefixLen":25, + "network":"193.40.241.0\/25", + "version":19099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.241.128", + "prefixLen":25, + "network":"193.40.241.128\/25", + "version":19098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.242.0", + "prefixLen":25, + "network":"193.40.242.0\/25", + "version":19097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.242.128", + "prefixLen":25, + "network":"193.40.242.128\/25", + "version":19096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.243.0", + "prefixLen":25, + "network":"193.40.243.0\/25", + "version":19095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.40.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.40.243.128", + "prefixLen":25, + "network":"193.40.243.128\/25", + "version":19094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64728 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.0.0", + "prefixLen":25, + "network":"193.41.0.0\/25", + "version":19221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.0.128", + "prefixLen":25, + "network":"193.41.0.128\/25", + "version":19348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.1.0", + "prefixLen":25, + "network":"193.41.1.0\/25", + "version":19347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.1.128", + "prefixLen":25, + "network":"193.41.1.128\/25", + "version":19346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.2.0", + "prefixLen":25, + "network":"193.41.2.0\/25", + "version":19345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.2.128", + "prefixLen":25, + "network":"193.41.2.128\/25", + "version":19344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.3.0", + "prefixLen":25, + "network":"193.41.3.0\/25", + "version":19343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.3.128", + "prefixLen":25, + "network":"193.41.3.128\/25", + "version":19342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.16.0", + "prefixLen":25, + "network":"193.41.16.0\/25", + "version":19341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.16.128", + "prefixLen":25, + "network":"193.41.16.128\/25", + "version":19340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.17.0", + "prefixLen":25, + "network":"193.41.17.0\/25", + "version":19339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.17.128", + "prefixLen":25, + "network":"193.41.17.128\/25", + "version":19338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.18.0", + "prefixLen":25, + "network":"193.41.18.0\/25", + "version":19337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.18.128", + "prefixLen":25, + "network":"193.41.18.128\/25", + "version":19336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.19.0", + "prefixLen":25, + "network":"193.41.19.0\/25", + "version":19335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.19.128", + "prefixLen":25, + "network":"193.41.19.128\/25", + "version":19334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.32.0", + "prefixLen":25, + "network":"193.41.32.0\/25", + "version":19333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.32.128", + "prefixLen":25, + "network":"193.41.32.128\/25", + "version":19332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.33.0", + "prefixLen":25, + "network":"193.41.33.0\/25", + "version":19331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.33.128", + "prefixLen":25, + "network":"193.41.33.128\/25", + "version":19330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.34.0", + "prefixLen":25, + "network":"193.41.34.0\/25", + "version":19329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.34.128", + "prefixLen":25, + "network":"193.41.34.128\/25", + "version":19328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.35.0", + "prefixLen":25, + "network":"193.41.35.0\/25", + "version":19327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.35.128", + "prefixLen":25, + "network":"193.41.35.128\/25", + "version":19326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.48.0", + "prefixLen":25, + "network":"193.41.48.0\/25", + "version":19325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.48.128", + "prefixLen":25, + "network":"193.41.48.128\/25", + "version":19324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.49.0", + "prefixLen":25, + "network":"193.41.49.0\/25", + "version":19323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.49.128", + "prefixLen":25, + "network":"193.41.49.128\/25", + "version":19322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.50.0", + "prefixLen":25, + "network":"193.41.50.0\/25", + "version":19321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.50.128", + "prefixLen":25, + "network":"193.41.50.128\/25", + "version":19320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.51.0", + "prefixLen":25, + "network":"193.41.51.0\/25", + "version":19319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.51.128", + "prefixLen":25, + "network":"193.41.51.128\/25", + "version":19318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.64.0", + "prefixLen":25, + "network":"193.41.64.0\/25", + "version":19317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.64.128", + "prefixLen":25, + "network":"193.41.64.128\/25", + "version":19316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.65.0", + "prefixLen":25, + "network":"193.41.65.0\/25", + "version":19315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.65.128", + "prefixLen":25, + "network":"193.41.65.128\/25", + "version":19314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.66.0", + "prefixLen":25, + "network":"193.41.66.0\/25", + "version":19313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.66.128", + "prefixLen":25, + "network":"193.41.66.128\/25", + "version":19312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.67.0", + "prefixLen":25, + "network":"193.41.67.0\/25", + "version":19311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.67.128", + "prefixLen":25, + "network":"193.41.67.128\/25", + "version":19310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.80.0", + "prefixLen":25, + "network":"193.41.80.0\/25", + "version":19309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.80.128", + "prefixLen":25, + "network":"193.41.80.128\/25", + "version":19308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.81.0", + "prefixLen":25, + "network":"193.41.81.0\/25", + "version":19307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.81.128", + "prefixLen":25, + "network":"193.41.81.128\/25", + "version":19306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.82.0", + "prefixLen":25, + "network":"193.41.82.0\/25", + "version":19305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.82.128", + "prefixLen":25, + "network":"193.41.82.128\/25", + "version":19304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.83.0", + "prefixLen":25, + "network":"193.41.83.0\/25", + "version":19303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.83.128", + "prefixLen":25, + "network":"193.41.83.128\/25", + "version":19302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.96.0", + "prefixLen":25, + "network":"193.41.96.0\/25", + "version":19301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.96.128", + "prefixLen":25, + "network":"193.41.96.128\/25", + "version":19300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.97.0", + "prefixLen":25, + "network":"193.41.97.0\/25", + "version":19299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.97.128", + "prefixLen":25, + "network":"193.41.97.128\/25", + "version":19298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.98.0", + "prefixLen":25, + "network":"193.41.98.0\/25", + "version":19297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.98.128", + "prefixLen":25, + "network":"193.41.98.128\/25", + "version":19296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.99.0", + "prefixLen":25, + "network":"193.41.99.0\/25", + "version":19295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.99.128", + "prefixLen":25, + "network":"193.41.99.128\/25", + "version":19294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.112.0", + "prefixLen":25, + "network":"193.41.112.0\/25", + "version":19293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.112.128", + "prefixLen":25, + "network":"193.41.112.128\/25", + "version":19292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.113.0", + "prefixLen":25, + "network":"193.41.113.0\/25", + "version":19291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.113.128", + "prefixLen":25, + "network":"193.41.113.128\/25", + "version":19290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.114.0", + "prefixLen":25, + "network":"193.41.114.0\/25", + "version":19289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.114.128", + "prefixLen":25, + "network":"193.41.114.128\/25", + "version":19288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.115.0", + "prefixLen":25, + "network":"193.41.115.0\/25", + "version":19287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.115.128", + "prefixLen":25, + "network":"193.41.115.128\/25", + "version":19286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.128.0", + "prefixLen":25, + "network":"193.41.128.0\/25", + "version":19285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.128.128", + "prefixLen":25, + "network":"193.41.128.128\/25", + "version":19284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.129.0", + "prefixLen":25, + "network":"193.41.129.0\/25", + "version":19283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.129.128", + "prefixLen":25, + "network":"193.41.129.128\/25", + "version":19282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.130.0", + "prefixLen":25, + "network":"193.41.130.0\/25", + "version":19281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.130.128", + "prefixLen":25, + "network":"193.41.130.128\/25", + "version":19280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.131.0", + "prefixLen":25, + "network":"193.41.131.0\/25", + "version":19279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.131.128", + "prefixLen":25, + "network":"193.41.131.128\/25", + "version":19278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.144.0", + "prefixLen":25, + "network":"193.41.144.0\/25", + "version":19277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.144.128", + "prefixLen":25, + "network":"193.41.144.128\/25", + "version":19276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.145.0", + "prefixLen":25, + "network":"193.41.145.0\/25", + "version":19275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.145.128", + "prefixLen":25, + "network":"193.41.145.128\/25", + "version":19274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.146.0", + "prefixLen":25, + "network":"193.41.146.0\/25", + "version":19273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.146.128", + "prefixLen":25, + "network":"193.41.146.128\/25", + "version":19272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.147.0", + "prefixLen":25, + "network":"193.41.147.0\/25", + "version":19271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.147.128", + "prefixLen":25, + "network":"193.41.147.128\/25", + "version":19270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.160.0", + "prefixLen":25, + "network":"193.41.160.0\/25", + "version":19269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.160.128", + "prefixLen":25, + "network":"193.41.160.128\/25", + "version":19268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.161.0", + "prefixLen":25, + "network":"193.41.161.0\/25", + "version":19267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.161.128", + "prefixLen":25, + "network":"193.41.161.128\/25", + "version":19266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.162.0", + "prefixLen":25, + "network":"193.41.162.0\/25", + "version":19265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.162.128", + "prefixLen":25, + "network":"193.41.162.128\/25", + "version":19264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.163.0", + "prefixLen":25, + "network":"193.41.163.0\/25", + "version":19263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.163.128", + "prefixLen":25, + "network":"193.41.163.128\/25", + "version":19262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.176.0", + "prefixLen":25, + "network":"193.41.176.0\/25", + "version":19261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.176.128", + "prefixLen":25, + "network":"193.41.176.128\/25", + "version":19260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.177.0", + "prefixLen":25, + "network":"193.41.177.0\/25", + "version":19259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.177.128", + "prefixLen":25, + "network":"193.41.177.128\/25", + "version":19258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.178.0", + "prefixLen":25, + "network":"193.41.178.0\/25", + "version":19257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.178.128", + "prefixLen":25, + "network":"193.41.178.128\/25", + "version":19256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.179.0", + "prefixLen":25, + "network":"193.41.179.0\/25", + "version":19255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.179.128", + "prefixLen":25, + "network":"193.41.179.128\/25", + "version":19254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.192.0", + "prefixLen":25, + "network":"193.41.192.0\/25", + "version":19253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.192.128", + "prefixLen":25, + "network":"193.41.192.128\/25", + "version":19252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.193.0", + "prefixLen":25, + "network":"193.41.193.0\/25", + "version":19251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.193.128", + "prefixLen":25, + "network":"193.41.193.128\/25", + "version":19250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.194.0", + "prefixLen":25, + "network":"193.41.194.0\/25", + "version":19249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.194.128", + "prefixLen":25, + "network":"193.41.194.128\/25", + "version":19248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.195.0", + "prefixLen":25, + "network":"193.41.195.0\/25", + "version":19247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.195.128", + "prefixLen":25, + "network":"193.41.195.128\/25", + "version":19246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.208.0", + "prefixLen":25, + "network":"193.41.208.0\/25", + "version":19245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.208.128", + "prefixLen":25, + "network":"193.41.208.128\/25", + "version":19244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.209.0", + "prefixLen":25, + "network":"193.41.209.0\/25", + "version":19243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.209.128", + "prefixLen":25, + "network":"193.41.209.128\/25", + "version":19242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.210.0", + "prefixLen":25, + "network":"193.41.210.0\/25", + "version":19241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.210.128", + "prefixLen":25, + "network":"193.41.210.128\/25", + "version":19240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.211.0", + "prefixLen":25, + "network":"193.41.211.0\/25", + "version":19239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.211.128", + "prefixLen":25, + "network":"193.41.211.128\/25", + "version":19238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.224.0", + "prefixLen":25, + "network":"193.41.224.0\/25", + "version":19237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.224.128", + "prefixLen":25, + "network":"193.41.224.128\/25", + "version":19236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.225.0", + "prefixLen":25, + "network":"193.41.225.0\/25", + "version":19235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.225.128", + "prefixLen":25, + "network":"193.41.225.128\/25", + "version":19234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.226.0", + "prefixLen":25, + "network":"193.41.226.0\/25", + "version":19233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.226.128", + "prefixLen":25, + "network":"193.41.226.128\/25", + "version":19232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.227.0", + "prefixLen":25, + "network":"193.41.227.0\/25", + "version":19231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.227.128", + "prefixLen":25, + "network":"193.41.227.128\/25", + "version":19230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.240.0", + "prefixLen":25, + "network":"193.41.240.0\/25", + "version":19229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.240.128", + "prefixLen":25, + "network":"193.41.240.128\/25", + "version":19228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.241.0", + "prefixLen":25, + "network":"193.41.241.0\/25", + "version":19227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.241.128", + "prefixLen":25, + "network":"193.41.241.128\/25", + "version":19226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.242.0", + "prefixLen":25, + "network":"193.41.242.0\/25", + "version":19225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.242.128", + "prefixLen":25, + "network":"193.41.242.128\/25", + "version":19224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.243.0", + "prefixLen":25, + "network":"193.41.243.0\/25", + "version":19223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.41.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.41.243.128", + "prefixLen":25, + "network":"193.41.243.128\/25", + "version":19222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64729 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.0.0", + "prefixLen":25, + "network":"193.42.0.0\/25", + "version":19349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.0.128", + "prefixLen":25, + "network":"193.42.0.128\/25", + "version":19476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.1.0", + "prefixLen":25, + "network":"193.42.1.0\/25", + "version":19475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.1.128", + "prefixLen":25, + "network":"193.42.1.128\/25", + "version":19474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.2.0", + "prefixLen":25, + "network":"193.42.2.0\/25", + "version":19473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.2.128", + "prefixLen":25, + "network":"193.42.2.128\/25", + "version":19472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.3.0", + "prefixLen":25, + "network":"193.42.3.0\/25", + "version":19471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.3.128", + "prefixLen":25, + "network":"193.42.3.128\/25", + "version":19470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.16.0", + "prefixLen":25, + "network":"193.42.16.0\/25", + "version":19469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.16.128", + "prefixLen":25, + "network":"193.42.16.128\/25", + "version":19468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.17.0", + "prefixLen":25, + "network":"193.42.17.0\/25", + "version":19467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.17.128", + "prefixLen":25, + "network":"193.42.17.128\/25", + "version":19466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.18.0", + "prefixLen":25, + "network":"193.42.18.0\/25", + "version":19465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.18.128", + "prefixLen":25, + "network":"193.42.18.128\/25", + "version":19464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.19.0", + "prefixLen":25, + "network":"193.42.19.0\/25", + "version":19463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.19.128", + "prefixLen":25, + "network":"193.42.19.128\/25", + "version":19462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.32.0", + "prefixLen":25, + "network":"193.42.32.0\/25", + "version":19461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.32.128", + "prefixLen":25, + "network":"193.42.32.128\/25", + "version":19460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.33.0", + "prefixLen":25, + "network":"193.42.33.0\/25", + "version":19459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.33.128", + "prefixLen":25, + "network":"193.42.33.128\/25", + "version":19458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.34.0", + "prefixLen":25, + "network":"193.42.34.0\/25", + "version":19457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.34.128", + "prefixLen":25, + "network":"193.42.34.128\/25", + "version":19456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.35.0", + "prefixLen":25, + "network":"193.42.35.0\/25", + "version":19455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.35.128", + "prefixLen":25, + "network":"193.42.35.128\/25", + "version":19454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.48.0", + "prefixLen":25, + "network":"193.42.48.0\/25", + "version":19453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.48.128", + "prefixLen":25, + "network":"193.42.48.128\/25", + "version":19452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.49.0", + "prefixLen":25, + "network":"193.42.49.0\/25", + "version":19451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.49.128", + "prefixLen":25, + "network":"193.42.49.128\/25", + "version":19450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.50.0", + "prefixLen":25, + "network":"193.42.50.0\/25", + "version":19449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.50.128", + "prefixLen":25, + "network":"193.42.50.128\/25", + "version":19448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.51.0", + "prefixLen":25, + "network":"193.42.51.0\/25", + "version":19447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.51.128", + "prefixLen":25, + "network":"193.42.51.128\/25", + "version":19446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.64.0", + "prefixLen":25, + "network":"193.42.64.0\/25", + "version":19445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.64.128", + "prefixLen":25, + "network":"193.42.64.128\/25", + "version":19444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.65.0", + "prefixLen":25, + "network":"193.42.65.0\/25", + "version":19443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.65.128", + "prefixLen":25, + "network":"193.42.65.128\/25", + "version":19442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.66.0", + "prefixLen":25, + "network":"193.42.66.0\/25", + "version":19441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.66.128", + "prefixLen":25, + "network":"193.42.66.128\/25", + "version":19440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.67.0", + "prefixLen":25, + "network":"193.42.67.0\/25", + "version":19439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.67.128", + "prefixLen":25, + "network":"193.42.67.128\/25", + "version":19438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.80.0", + "prefixLen":25, + "network":"193.42.80.0\/25", + "version":19437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.80.128", + "prefixLen":25, + "network":"193.42.80.128\/25", + "version":19436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.81.0", + "prefixLen":25, + "network":"193.42.81.0\/25", + "version":19435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.81.128", + "prefixLen":25, + "network":"193.42.81.128\/25", + "version":19434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.82.0", + "prefixLen":25, + "network":"193.42.82.0\/25", + "version":19433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.82.128", + "prefixLen":25, + "network":"193.42.82.128\/25", + "version":19432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.83.0", + "prefixLen":25, + "network":"193.42.83.0\/25", + "version":19431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.83.128", + "prefixLen":25, + "network":"193.42.83.128\/25", + "version":19430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.96.0", + "prefixLen":25, + "network":"193.42.96.0\/25", + "version":19429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.96.128", + "prefixLen":25, + "network":"193.42.96.128\/25", + "version":19428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.97.0", + "prefixLen":25, + "network":"193.42.97.0\/25", + "version":19427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.97.128", + "prefixLen":25, + "network":"193.42.97.128\/25", + "version":19426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.98.0", + "prefixLen":25, + "network":"193.42.98.0\/25", + "version":19425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.98.128", + "prefixLen":25, + "network":"193.42.98.128\/25", + "version":19424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.99.0", + "prefixLen":25, + "network":"193.42.99.0\/25", + "version":19423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.99.128", + "prefixLen":25, + "network":"193.42.99.128\/25", + "version":19422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.112.0", + "prefixLen":25, + "network":"193.42.112.0\/25", + "version":19421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.112.128", + "prefixLen":25, + "network":"193.42.112.128\/25", + "version":19420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.113.0", + "prefixLen":25, + "network":"193.42.113.0\/25", + "version":19419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.113.128", + "prefixLen":25, + "network":"193.42.113.128\/25", + "version":19418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.114.0", + "prefixLen":25, + "network":"193.42.114.0\/25", + "version":19417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.114.128", + "prefixLen":25, + "network":"193.42.114.128\/25", + "version":19416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.115.0", + "prefixLen":25, + "network":"193.42.115.0\/25", + "version":19415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.115.128", + "prefixLen":25, + "network":"193.42.115.128\/25", + "version":19414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.128.0", + "prefixLen":25, + "network":"193.42.128.0\/25", + "version":19413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.128.128", + "prefixLen":25, + "network":"193.42.128.128\/25", + "version":19412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.129.0", + "prefixLen":25, + "network":"193.42.129.0\/25", + "version":19411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.129.128", + "prefixLen":25, + "network":"193.42.129.128\/25", + "version":19410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.130.0", + "prefixLen":25, + "network":"193.42.130.0\/25", + "version":19409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.130.128", + "prefixLen":25, + "network":"193.42.130.128\/25", + "version":19408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.131.0", + "prefixLen":25, + "network":"193.42.131.0\/25", + "version":19407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.131.128", + "prefixLen":25, + "network":"193.42.131.128\/25", + "version":19406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.144.0", + "prefixLen":25, + "network":"193.42.144.0\/25", + "version":19405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.144.128", + "prefixLen":25, + "network":"193.42.144.128\/25", + "version":19404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.145.0", + "prefixLen":25, + "network":"193.42.145.0\/25", + "version":19403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.145.128", + "prefixLen":25, + "network":"193.42.145.128\/25", + "version":19402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.146.0", + "prefixLen":25, + "network":"193.42.146.0\/25", + "version":19401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.146.128", + "prefixLen":25, + "network":"193.42.146.128\/25", + "version":19400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.147.0", + "prefixLen":25, + "network":"193.42.147.0\/25", + "version":19399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.147.128", + "prefixLen":25, + "network":"193.42.147.128\/25", + "version":19398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.160.0", + "prefixLen":25, + "network":"193.42.160.0\/25", + "version":19397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.160.128", + "prefixLen":25, + "network":"193.42.160.128\/25", + "version":19396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.161.0", + "prefixLen":25, + "network":"193.42.161.0\/25", + "version":19395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.161.128", + "prefixLen":25, + "network":"193.42.161.128\/25", + "version":19394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.162.0", + "prefixLen":25, + "network":"193.42.162.0\/25", + "version":19393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.162.128", + "prefixLen":25, + "network":"193.42.162.128\/25", + "version":19392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.163.0", + "prefixLen":25, + "network":"193.42.163.0\/25", + "version":19391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.163.128", + "prefixLen":25, + "network":"193.42.163.128\/25", + "version":19390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.176.0", + "prefixLen":25, + "network":"193.42.176.0\/25", + "version":19389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.176.128", + "prefixLen":25, + "network":"193.42.176.128\/25", + "version":19388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.177.0", + "prefixLen":25, + "network":"193.42.177.0\/25", + "version":19387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.177.128", + "prefixLen":25, + "network":"193.42.177.128\/25", + "version":19386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.178.0", + "prefixLen":25, + "network":"193.42.178.0\/25", + "version":19385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.178.128", + "prefixLen":25, + "network":"193.42.178.128\/25", + "version":19384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.179.0", + "prefixLen":25, + "network":"193.42.179.0\/25", + "version":19383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.179.128", + "prefixLen":25, + "network":"193.42.179.128\/25", + "version":19382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.192.0", + "prefixLen":25, + "network":"193.42.192.0\/25", + "version":19381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.192.128", + "prefixLen":25, + "network":"193.42.192.128\/25", + "version":19380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.193.0", + "prefixLen":25, + "network":"193.42.193.0\/25", + "version":19379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.193.128", + "prefixLen":25, + "network":"193.42.193.128\/25", + "version":19378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.194.0", + "prefixLen":25, + "network":"193.42.194.0\/25", + "version":19377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.194.128", + "prefixLen":25, + "network":"193.42.194.128\/25", + "version":19376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.195.0", + "prefixLen":25, + "network":"193.42.195.0\/25", + "version":19375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.195.128", + "prefixLen":25, + "network":"193.42.195.128\/25", + "version":19374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.208.0", + "prefixLen":25, + "network":"193.42.208.0\/25", + "version":19373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.208.128", + "prefixLen":25, + "network":"193.42.208.128\/25", + "version":19372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.209.0", + "prefixLen":25, + "network":"193.42.209.0\/25", + "version":19371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.209.128", + "prefixLen":25, + "network":"193.42.209.128\/25", + "version":19370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.210.0", + "prefixLen":25, + "network":"193.42.210.0\/25", + "version":19369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.210.128", + "prefixLen":25, + "network":"193.42.210.128\/25", + "version":19368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.211.0", + "prefixLen":25, + "network":"193.42.211.0\/25", + "version":19367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.211.128", + "prefixLen":25, + "network":"193.42.211.128\/25", + "version":19366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.224.0", + "prefixLen":25, + "network":"193.42.224.0\/25", + "version":19365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.224.128", + "prefixLen":25, + "network":"193.42.224.128\/25", + "version":19364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.225.0", + "prefixLen":25, + "network":"193.42.225.0\/25", + "version":19363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.225.128", + "prefixLen":25, + "network":"193.42.225.128\/25", + "version":19362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.226.0", + "prefixLen":25, + "network":"193.42.226.0\/25", + "version":19361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.226.128", + "prefixLen":25, + "network":"193.42.226.128\/25", + "version":19360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.227.0", + "prefixLen":25, + "network":"193.42.227.0\/25", + "version":19359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.227.128", + "prefixLen":25, + "network":"193.42.227.128\/25", + "version":19358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.240.0", + "prefixLen":25, + "network":"193.42.240.0\/25", + "version":19357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.240.128", + "prefixLen":25, + "network":"193.42.240.128\/25", + "version":19356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.241.0", + "prefixLen":25, + "network":"193.42.241.0\/25", + "version":19355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.241.128", + "prefixLen":25, + "network":"193.42.241.128\/25", + "version":19354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.242.0", + "prefixLen":25, + "network":"193.42.242.0\/25", + "version":19353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.242.128", + "prefixLen":25, + "network":"193.42.242.128\/25", + "version":19352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.243.0", + "prefixLen":25, + "network":"193.42.243.0\/25", + "version":19351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.42.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.42.243.128", + "prefixLen":25, + "network":"193.42.243.128\/25", + "version":19350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64730 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.0.0", + "prefixLen":25, + "network":"193.43.0.0\/25", + "version":19477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.0.128", + "prefixLen":25, + "network":"193.43.0.128\/25", + "version":19604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.1.0", + "prefixLen":25, + "network":"193.43.1.0\/25", + "version":19603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.1.128", + "prefixLen":25, + "network":"193.43.1.128\/25", + "version":19602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.2.0", + "prefixLen":25, + "network":"193.43.2.0\/25", + "version":19601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.2.128", + "prefixLen":25, + "network":"193.43.2.128\/25", + "version":19600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.3.0", + "prefixLen":25, + "network":"193.43.3.0\/25", + "version":19599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.3.128", + "prefixLen":25, + "network":"193.43.3.128\/25", + "version":19598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.16.0", + "prefixLen":25, + "network":"193.43.16.0\/25", + "version":19597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.16.128", + "prefixLen":25, + "network":"193.43.16.128\/25", + "version":19596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.17.0", + "prefixLen":25, + "network":"193.43.17.0\/25", + "version":19595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.17.128", + "prefixLen":25, + "network":"193.43.17.128\/25", + "version":19594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.18.0", + "prefixLen":25, + "network":"193.43.18.0\/25", + "version":19593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.18.128", + "prefixLen":25, + "network":"193.43.18.128\/25", + "version":19592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.19.0", + "prefixLen":25, + "network":"193.43.19.0\/25", + "version":19591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.19.128", + "prefixLen":25, + "network":"193.43.19.128\/25", + "version":19590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.32.0", + "prefixLen":25, + "network":"193.43.32.0\/25", + "version":19589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.32.128", + "prefixLen":25, + "network":"193.43.32.128\/25", + "version":19588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.33.0", + "prefixLen":25, + "network":"193.43.33.0\/25", + "version":19587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.33.128", + "prefixLen":25, + "network":"193.43.33.128\/25", + "version":19586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.34.0", + "prefixLen":25, + "network":"193.43.34.0\/25", + "version":19585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.34.128", + "prefixLen":25, + "network":"193.43.34.128\/25", + "version":19584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.35.0", + "prefixLen":25, + "network":"193.43.35.0\/25", + "version":19583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.35.128", + "prefixLen":25, + "network":"193.43.35.128\/25", + "version":19582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.48.0", + "prefixLen":25, + "network":"193.43.48.0\/25", + "version":19581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.48.128", + "prefixLen":25, + "network":"193.43.48.128\/25", + "version":19580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.49.0", + "prefixLen":25, + "network":"193.43.49.0\/25", + "version":19579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.49.128", + "prefixLen":25, + "network":"193.43.49.128\/25", + "version":19578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.50.0", + "prefixLen":25, + "network":"193.43.50.0\/25", + "version":19577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.50.128", + "prefixLen":25, + "network":"193.43.50.128\/25", + "version":19576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.51.0", + "prefixLen":25, + "network":"193.43.51.0\/25", + "version":19575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.51.128", + "prefixLen":25, + "network":"193.43.51.128\/25", + "version":19574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.64.0", + "prefixLen":25, + "network":"193.43.64.0\/25", + "version":19573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.64.128", + "prefixLen":25, + "network":"193.43.64.128\/25", + "version":19572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.65.0", + "prefixLen":25, + "network":"193.43.65.0\/25", + "version":19571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.65.128", + "prefixLen":25, + "network":"193.43.65.128\/25", + "version":19570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.66.0", + "prefixLen":25, + "network":"193.43.66.0\/25", + "version":19569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.66.128", + "prefixLen":25, + "network":"193.43.66.128\/25", + "version":19568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.67.0", + "prefixLen":25, + "network":"193.43.67.0\/25", + "version":19567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.67.128", + "prefixLen":25, + "network":"193.43.67.128\/25", + "version":19566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.80.0", + "prefixLen":25, + "network":"193.43.80.0\/25", + "version":19565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.80.128", + "prefixLen":25, + "network":"193.43.80.128\/25", + "version":19564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.81.0", + "prefixLen":25, + "network":"193.43.81.0\/25", + "version":19563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.81.128", + "prefixLen":25, + "network":"193.43.81.128\/25", + "version":19562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.82.0", + "prefixLen":25, + "network":"193.43.82.0\/25", + "version":19561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.82.128", + "prefixLen":25, + "network":"193.43.82.128\/25", + "version":19560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.83.0", + "prefixLen":25, + "network":"193.43.83.0\/25", + "version":19559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.83.128", + "prefixLen":25, + "network":"193.43.83.128\/25", + "version":19558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.96.0", + "prefixLen":25, + "network":"193.43.96.0\/25", + "version":19557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.96.128", + "prefixLen":25, + "network":"193.43.96.128\/25", + "version":19556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.97.0", + "prefixLen":25, + "network":"193.43.97.0\/25", + "version":19555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.97.128", + "prefixLen":25, + "network":"193.43.97.128\/25", + "version":19554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.98.0", + "prefixLen":25, + "network":"193.43.98.0\/25", + "version":19553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.98.128", + "prefixLen":25, + "network":"193.43.98.128\/25", + "version":19552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.99.0", + "prefixLen":25, + "network":"193.43.99.0\/25", + "version":19551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.99.128", + "prefixLen":25, + "network":"193.43.99.128\/25", + "version":19550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.112.0", + "prefixLen":25, + "network":"193.43.112.0\/25", + "version":19549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.112.128", + "prefixLen":25, + "network":"193.43.112.128\/25", + "version":19548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.113.0", + "prefixLen":25, + "network":"193.43.113.0\/25", + "version":19547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.113.128", + "prefixLen":25, + "network":"193.43.113.128\/25", + "version":19546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.114.0", + "prefixLen":25, + "network":"193.43.114.0\/25", + "version":19545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.114.128", + "prefixLen":25, + "network":"193.43.114.128\/25", + "version":19544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.115.0", + "prefixLen":25, + "network":"193.43.115.0\/25", + "version":19543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.115.128", + "prefixLen":25, + "network":"193.43.115.128\/25", + "version":19542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.128.0", + "prefixLen":25, + "network":"193.43.128.0\/25", + "version":19541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.128.128", + "prefixLen":25, + "network":"193.43.128.128\/25", + "version":19540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.129.0", + "prefixLen":25, + "network":"193.43.129.0\/25", + "version":19539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.129.128", + "prefixLen":25, + "network":"193.43.129.128\/25", + "version":19538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.130.0", + "prefixLen":25, + "network":"193.43.130.0\/25", + "version":19537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.130.128", + "prefixLen":25, + "network":"193.43.130.128\/25", + "version":19536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.131.0", + "prefixLen":25, + "network":"193.43.131.0\/25", + "version":19535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.131.128", + "prefixLen":25, + "network":"193.43.131.128\/25", + "version":19534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.144.0", + "prefixLen":25, + "network":"193.43.144.0\/25", + "version":19533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.144.128", + "prefixLen":25, + "network":"193.43.144.128\/25", + "version":19532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.145.0", + "prefixLen":25, + "network":"193.43.145.0\/25", + "version":19531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.145.128", + "prefixLen":25, + "network":"193.43.145.128\/25", + "version":19530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.146.0", + "prefixLen":25, + "network":"193.43.146.0\/25", + "version":19529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.146.128", + "prefixLen":25, + "network":"193.43.146.128\/25", + "version":19528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.147.0", + "prefixLen":25, + "network":"193.43.147.0\/25", + "version":19527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.147.128", + "prefixLen":25, + "network":"193.43.147.128\/25", + "version":19526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.160.0", + "prefixLen":25, + "network":"193.43.160.0\/25", + "version":19525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.160.128", + "prefixLen":25, + "network":"193.43.160.128\/25", + "version":19524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.161.0", + "prefixLen":25, + "network":"193.43.161.0\/25", + "version":19523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.161.128", + "prefixLen":25, + "network":"193.43.161.128\/25", + "version":19522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.162.0", + "prefixLen":25, + "network":"193.43.162.0\/25", + "version":19521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.162.128", + "prefixLen":25, + "network":"193.43.162.128\/25", + "version":19520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.163.0", + "prefixLen":25, + "network":"193.43.163.0\/25", + "version":19519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.163.128", + "prefixLen":25, + "network":"193.43.163.128\/25", + "version":19518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.176.0", + "prefixLen":25, + "network":"193.43.176.0\/25", + "version":19517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.176.128", + "prefixLen":25, + "network":"193.43.176.128\/25", + "version":19516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.177.0", + "prefixLen":25, + "network":"193.43.177.0\/25", + "version":19515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.177.128", + "prefixLen":25, + "network":"193.43.177.128\/25", + "version":19514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.178.0", + "prefixLen":25, + "network":"193.43.178.0\/25", + "version":19513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.178.128", + "prefixLen":25, + "network":"193.43.178.128\/25", + "version":19512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.179.0", + "prefixLen":25, + "network":"193.43.179.0\/25", + "version":19511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.179.128", + "prefixLen":25, + "network":"193.43.179.128\/25", + "version":19510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.192.0", + "prefixLen":25, + "network":"193.43.192.0\/25", + "version":19509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.192.128", + "prefixLen":25, + "network":"193.43.192.128\/25", + "version":19508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.193.0", + "prefixLen":25, + "network":"193.43.193.0\/25", + "version":19507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.193.128", + "prefixLen":25, + "network":"193.43.193.128\/25", + "version":19506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.194.0", + "prefixLen":25, + "network":"193.43.194.0\/25", + "version":19505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.194.128", + "prefixLen":25, + "network":"193.43.194.128\/25", + "version":19504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.195.0", + "prefixLen":25, + "network":"193.43.195.0\/25", + "version":19503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.195.128", + "prefixLen":25, + "network":"193.43.195.128\/25", + "version":19502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.208.0", + "prefixLen":25, + "network":"193.43.208.0\/25", + "version":19501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.208.128", + "prefixLen":25, + "network":"193.43.208.128\/25", + "version":19500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.209.0", + "prefixLen":25, + "network":"193.43.209.0\/25", + "version":19499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.209.128", + "prefixLen":25, + "network":"193.43.209.128\/25", + "version":19498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.210.0", + "prefixLen":25, + "network":"193.43.210.0\/25", + "version":19497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.210.128", + "prefixLen":25, + "network":"193.43.210.128\/25", + "version":19496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.211.0", + "prefixLen":25, + "network":"193.43.211.0\/25", + "version":19495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.211.128", + "prefixLen":25, + "network":"193.43.211.128\/25", + "version":19494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.224.0", + "prefixLen":25, + "network":"193.43.224.0\/25", + "version":19493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.224.128", + "prefixLen":25, + "network":"193.43.224.128\/25", + "version":19492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.225.0", + "prefixLen":25, + "network":"193.43.225.0\/25", + "version":19491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.225.128", + "prefixLen":25, + "network":"193.43.225.128\/25", + "version":19490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.226.0", + "prefixLen":25, + "network":"193.43.226.0\/25", + "version":19489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.226.128", + "prefixLen":25, + "network":"193.43.226.128\/25", + "version":19488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.227.0", + "prefixLen":25, + "network":"193.43.227.0\/25", + "version":19487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.227.128", + "prefixLen":25, + "network":"193.43.227.128\/25", + "version":19486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.240.0", + "prefixLen":25, + "network":"193.43.240.0\/25", + "version":19485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.240.128", + "prefixLen":25, + "network":"193.43.240.128\/25", + "version":19484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.241.0", + "prefixLen":25, + "network":"193.43.241.0\/25", + "version":19483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.241.128", + "prefixLen":25, + "network":"193.43.241.128\/25", + "version":19482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.242.0", + "prefixLen":25, + "network":"193.43.242.0\/25", + "version":19481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.242.128", + "prefixLen":25, + "network":"193.43.242.128\/25", + "version":19480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.243.0", + "prefixLen":25, + "network":"193.43.243.0\/25", + "version":19479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.43.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.43.243.128", + "prefixLen":25, + "network":"193.43.243.128\/25", + "version":19478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64731 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.0.0", + "prefixLen":25, + "network":"193.44.0.0\/25", + "version":19605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.0.128", + "prefixLen":25, + "network":"193.44.0.128\/25", + "version":19732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.1.0", + "prefixLen":25, + "network":"193.44.1.0\/25", + "version":19731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.1.128", + "prefixLen":25, + "network":"193.44.1.128\/25", + "version":19730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.2.0", + "prefixLen":25, + "network":"193.44.2.0\/25", + "version":19729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.2.128", + "prefixLen":25, + "network":"193.44.2.128\/25", + "version":19728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.3.0", + "prefixLen":25, + "network":"193.44.3.0\/25", + "version":19727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.3.128", + "prefixLen":25, + "network":"193.44.3.128\/25", + "version":19726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.16.0", + "prefixLen":25, + "network":"193.44.16.0\/25", + "version":19725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.16.128", + "prefixLen":25, + "network":"193.44.16.128\/25", + "version":19724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.17.0", + "prefixLen":25, + "network":"193.44.17.0\/25", + "version":19723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.17.128", + "prefixLen":25, + "network":"193.44.17.128\/25", + "version":19722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.18.0", + "prefixLen":25, + "network":"193.44.18.0\/25", + "version":19721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.18.128", + "prefixLen":25, + "network":"193.44.18.128\/25", + "version":19720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.19.0", + "prefixLen":25, + "network":"193.44.19.0\/25", + "version":19719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.19.128", + "prefixLen":25, + "network":"193.44.19.128\/25", + "version":19718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.32.0", + "prefixLen":25, + "network":"193.44.32.0\/25", + "version":19717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.32.128", + "prefixLen":25, + "network":"193.44.32.128\/25", + "version":19716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.33.0", + "prefixLen":25, + "network":"193.44.33.0\/25", + "version":19715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.33.128", + "prefixLen":25, + "network":"193.44.33.128\/25", + "version":19714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.34.0", + "prefixLen":25, + "network":"193.44.34.0\/25", + "version":19713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.34.128", + "prefixLen":25, + "network":"193.44.34.128\/25", + "version":19712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.35.0", + "prefixLen":25, + "network":"193.44.35.0\/25", + "version":19711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.35.128", + "prefixLen":25, + "network":"193.44.35.128\/25", + "version":19710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.48.0", + "prefixLen":25, + "network":"193.44.48.0\/25", + "version":19709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.48.128", + "prefixLen":25, + "network":"193.44.48.128\/25", + "version":19708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.49.0", + "prefixLen":25, + "network":"193.44.49.0\/25", + "version":19707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.49.128", + "prefixLen":25, + "network":"193.44.49.128\/25", + "version":19706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.50.0", + "prefixLen":25, + "network":"193.44.50.0\/25", + "version":19705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.50.128", + "prefixLen":25, + "network":"193.44.50.128\/25", + "version":19704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.51.0", + "prefixLen":25, + "network":"193.44.51.0\/25", + "version":19703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.51.128", + "prefixLen":25, + "network":"193.44.51.128\/25", + "version":19702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.64.0", + "prefixLen":25, + "network":"193.44.64.0\/25", + "version":19701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.64.128", + "prefixLen":25, + "network":"193.44.64.128\/25", + "version":19700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.65.0", + "prefixLen":25, + "network":"193.44.65.0\/25", + "version":19699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.65.128", + "prefixLen":25, + "network":"193.44.65.128\/25", + "version":19698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.66.0", + "prefixLen":25, + "network":"193.44.66.0\/25", + "version":19697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.66.128", + "prefixLen":25, + "network":"193.44.66.128\/25", + "version":19696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.67.0", + "prefixLen":25, + "network":"193.44.67.0\/25", + "version":19695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.67.128", + "prefixLen":25, + "network":"193.44.67.128\/25", + "version":19694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.80.0", + "prefixLen":25, + "network":"193.44.80.0\/25", + "version":19693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.80.128", + "prefixLen":25, + "network":"193.44.80.128\/25", + "version":19692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.81.0", + "prefixLen":25, + "network":"193.44.81.0\/25", + "version":19691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.81.128", + "prefixLen":25, + "network":"193.44.81.128\/25", + "version":19690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.82.0", + "prefixLen":25, + "network":"193.44.82.0\/25", + "version":19689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.82.128", + "prefixLen":25, + "network":"193.44.82.128\/25", + "version":19688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.83.0", + "prefixLen":25, + "network":"193.44.83.0\/25", + "version":19687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.83.128", + "prefixLen":25, + "network":"193.44.83.128\/25", + "version":19686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.96.0", + "prefixLen":25, + "network":"193.44.96.0\/25", + "version":19685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.96.128", + "prefixLen":25, + "network":"193.44.96.128\/25", + "version":19684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.97.0", + "prefixLen":25, + "network":"193.44.97.0\/25", + "version":19683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.97.128", + "prefixLen":25, + "network":"193.44.97.128\/25", + "version":19682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.98.0", + "prefixLen":25, + "network":"193.44.98.0\/25", + "version":19681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.98.128", + "prefixLen":25, + "network":"193.44.98.128\/25", + "version":19680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.99.0", + "prefixLen":25, + "network":"193.44.99.0\/25", + "version":19679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.99.128", + "prefixLen":25, + "network":"193.44.99.128\/25", + "version":19678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.112.0", + "prefixLen":25, + "network":"193.44.112.0\/25", + "version":19677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.112.128", + "prefixLen":25, + "network":"193.44.112.128\/25", + "version":19676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.113.0", + "prefixLen":25, + "network":"193.44.113.0\/25", + "version":19675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.113.128", + "prefixLen":25, + "network":"193.44.113.128\/25", + "version":19674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.114.0", + "prefixLen":25, + "network":"193.44.114.0\/25", + "version":19673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.114.128", + "prefixLen":25, + "network":"193.44.114.128\/25", + "version":19672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.115.0", + "prefixLen":25, + "network":"193.44.115.0\/25", + "version":19671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.115.128", + "prefixLen":25, + "network":"193.44.115.128\/25", + "version":19670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.128.0", + "prefixLen":25, + "network":"193.44.128.0\/25", + "version":19669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.128.128", + "prefixLen":25, + "network":"193.44.128.128\/25", + "version":19668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.129.0", + "prefixLen":25, + "network":"193.44.129.0\/25", + "version":19667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.129.128", + "prefixLen":25, + "network":"193.44.129.128\/25", + "version":19666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.130.0", + "prefixLen":25, + "network":"193.44.130.0\/25", + "version":19665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.130.128", + "prefixLen":25, + "network":"193.44.130.128\/25", + "version":19664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.131.0", + "prefixLen":25, + "network":"193.44.131.0\/25", + "version":19663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.131.128", + "prefixLen":25, + "network":"193.44.131.128\/25", + "version":19662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.144.0", + "prefixLen":25, + "network":"193.44.144.0\/25", + "version":19661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.144.128", + "prefixLen":25, + "network":"193.44.144.128\/25", + "version":19660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.145.0", + "prefixLen":25, + "network":"193.44.145.0\/25", + "version":19659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.145.128", + "prefixLen":25, + "network":"193.44.145.128\/25", + "version":19658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.146.0", + "prefixLen":25, + "network":"193.44.146.0\/25", + "version":19657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.146.128", + "prefixLen":25, + "network":"193.44.146.128\/25", + "version":19656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.147.0", + "prefixLen":25, + "network":"193.44.147.0\/25", + "version":19655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.147.128", + "prefixLen":25, + "network":"193.44.147.128\/25", + "version":19654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.160.0", + "prefixLen":25, + "network":"193.44.160.0\/25", + "version":19653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.160.128", + "prefixLen":25, + "network":"193.44.160.128\/25", + "version":19652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.161.0", + "prefixLen":25, + "network":"193.44.161.0\/25", + "version":19651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.161.128", + "prefixLen":25, + "network":"193.44.161.128\/25", + "version":19650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.162.0", + "prefixLen":25, + "network":"193.44.162.0\/25", + "version":19649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.162.128", + "prefixLen":25, + "network":"193.44.162.128\/25", + "version":19648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.163.0", + "prefixLen":25, + "network":"193.44.163.0\/25", + "version":19647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.163.128", + "prefixLen":25, + "network":"193.44.163.128\/25", + "version":19646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.176.0", + "prefixLen":25, + "network":"193.44.176.0\/25", + "version":19645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.176.128", + "prefixLen":25, + "network":"193.44.176.128\/25", + "version":19644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.177.0", + "prefixLen":25, + "network":"193.44.177.0\/25", + "version":19643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.177.128", + "prefixLen":25, + "network":"193.44.177.128\/25", + "version":19642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.178.0", + "prefixLen":25, + "network":"193.44.178.0\/25", + "version":19641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.178.128", + "prefixLen":25, + "network":"193.44.178.128\/25", + "version":19640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.179.0", + "prefixLen":25, + "network":"193.44.179.0\/25", + "version":19639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.179.128", + "prefixLen":25, + "network":"193.44.179.128\/25", + "version":19638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.192.0", + "prefixLen":25, + "network":"193.44.192.0\/25", + "version":19637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.192.128", + "prefixLen":25, + "network":"193.44.192.128\/25", + "version":19636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.193.0", + "prefixLen":25, + "network":"193.44.193.0\/25", + "version":19635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.193.128", + "prefixLen":25, + "network":"193.44.193.128\/25", + "version":19634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.194.0", + "prefixLen":25, + "network":"193.44.194.0\/25", + "version":19633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.194.128", + "prefixLen":25, + "network":"193.44.194.128\/25", + "version":19632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.195.0", + "prefixLen":25, + "network":"193.44.195.0\/25", + "version":19631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.195.128", + "prefixLen":25, + "network":"193.44.195.128\/25", + "version":19630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.208.0", + "prefixLen":25, + "network":"193.44.208.0\/25", + "version":19629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.208.128", + "prefixLen":25, + "network":"193.44.208.128\/25", + "version":19628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.209.0", + "prefixLen":25, + "network":"193.44.209.0\/25", + "version":19627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.209.128", + "prefixLen":25, + "network":"193.44.209.128\/25", + "version":19626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.210.0", + "prefixLen":25, + "network":"193.44.210.0\/25", + "version":19625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.210.128", + "prefixLen":25, + "network":"193.44.210.128\/25", + "version":19624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.211.0", + "prefixLen":25, + "network":"193.44.211.0\/25", + "version":19623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.211.128", + "prefixLen":25, + "network":"193.44.211.128\/25", + "version":19622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.224.0", + "prefixLen":25, + "network":"193.44.224.0\/25", + "version":19621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.224.128", + "prefixLen":25, + "network":"193.44.224.128\/25", + "version":19620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.225.0", + "prefixLen":25, + "network":"193.44.225.0\/25", + "version":19619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.225.128", + "prefixLen":25, + "network":"193.44.225.128\/25", + "version":19618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.226.0", + "prefixLen":25, + "network":"193.44.226.0\/25", + "version":19617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.226.128", + "prefixLen":25, + "network":"193.44.226.128\/25", + "version":19616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.227.0", + "prefixLen":25, + "network":"193.44.227.0\/25", + "version":19615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.227.128", + "prefixLen":25, + "network":"193.44.227.128\/25", + "version":19614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.240.0", + "prefixLen":25, + "network":"193.44.240.0\/25", + "version":19613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.240.128", + "prefixLen":25, + "network":"193.44.240.128\/25", + "version":19612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.241.0", + "prefixLen":25, + "network":"193.44.241.0\/25", + "version":19611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.241.128", + "prefixLen":25, + "network":"193.44.241.128\/25", + "version":19610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.242.0", + "prefixLen":25, + "network":"193.44.242.0\/25", + "version":19609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.242.128", + "prefixLen":25, + "network":"193.44.242.128\/25", + "version":19608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.243.0", + "prefixLen":25, + "network":"193.44.243.0\/25", + "version":19607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.44.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.44.243.128", + "prefixLen":25, + "network":"193.44.243.128\/25", + "version":19606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64732 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.0.0", + "prefixLen":25, + "network":"193.45.0.0\/25", + "version":19733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.0.128", + "prefixLen":25, + "network":"193.45.0.128\/25", + "version":19860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.1.0", + "prefixLen":25, + "network":"193.45.1.0\/25", + "version":19859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.1.128", + "prefixLen":25, + "network":"193.45.1.128\/25", + "version":19858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.2.0", + "prefixLen":25, + "network":"193.45.2.0\/25", + "version":19857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.2.128", + "prefixLen":25, + "network":"193.45.2.128\/25", + "version":19856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.3.0", + "prefixLen":25, + "network":"193.45.3.0\/25", + "version":19855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.3.128", + "prefixLen":25, + "network":"193.45.3.128\/25", + "version":19854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.16.0", + "prefixLen":25, + "network":"193.45.16.0\/25", + "version":19853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.16.128", + "prefixLen":25, + "network":"193.45.16.128\/25", + "version":19852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.17.0", + "prefixLen":25, + "network":"193.45.17.0\/25", + "version":19851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.17.128", + "prefixLen":25, + "network":"193.45.17.128\/25", + "version":19850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.18.0", + "prefixLen":25, + "network":"193.45.18.0\/25", + "version":19849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.18.128", + "prefixLen":25, + "network":"193.45.18.128\/25", + "version":19848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.19.0", + "prefixLen":25, + "network":"193.45.19.0\/25", + "version":19847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.19.128", + "prefixLen":25, + "network":"193.45.19.128\/25", + "version":19846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.32.0", + "prefixLen":25, + "network":"193.45.32.0\/25", + "version":19845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.32.128", + "prefixLen":25, + "network":"193.45.32.128\/25", + "version":19844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.33.0", + "prefixLen":25, + "network":"193.45.33.0\/25", + "version":19843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.33.128", + "prefixLen":25, + "network":"193.45.33.128\/25", + "version":19842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.34.0", + "prefixLen":25, + "network":"193.45.34.0\/25", + "version":19841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.34.128", + "prefixLen":25, + "network":"193.45.34.128\/25", + "version":19840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.35.0", + "prefixLen":25, + "network":"193.45.35.0\/25", + "version":19839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.35.128", + "prefixLen":25, + "network":"193.45.35.128\/25", + "version":19838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.48.0", + "prefixLen":25, + "network":"193.45.48.0\/25", + "version":19837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.48.128", + "prefixLen":25, + "network":"193.45.48.128\/25", + "version":19836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.49.0", + "prefixLen":25, + "network":"193.45.49.0\/25", + "version":19835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.49.128", + "prefixLen":25, + "network":"193.45.49.128\/25", + "version":19834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.50.0", + "prefixLen":25, + "network":"193.45.50.0\/25", + "version":19833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.50.128", + "prefixLen":25, + "network":"193.45.50.128\/25", + "version":19832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.51.0", + "prefixLen":25, + "network":"193.45.51.0\/25", + "version":19831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.51.128", + "prefixLen":25, + "network":"193.45.51.128\/25", + "version":19830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.64.0", + "prefixLen":25, + "network":"193.45.64.0\/25", + "version":19829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.64.128", + "prefixLen":25, + "network":"193.45.64.128\/25", + "version":19828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.65.0", + "prefixLen":25, + "network":"193.45.65.0\/25", + "version":19827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.65.128", + "prefixLen":25, + "network":"193.45.65.128\/25", + "version":19826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.66.0", + "prefixLen":25, + "network":"193.45.66.0\/25", + "version":19825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.66.128", + "prefixLen":25, + "network":"193.45.66.128\/25", + "version":19824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.67.0", + "prefixLen":25, + "network":"193.45.67.0\/25", + "version":19823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.67.128", + "prefixLen":25, + "network":"193.45.67.128\/25", + "version":19822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.80.0", + "prefixLen":25, + "network":"193.45.80.0\/25", + "version":19821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.80.128", + "prefixLen":25, + "network":"193.45.80.128\/25", + "version":19820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.81.0", + "prefixLen":25, + "network":"193.45.81.0\/25", + "version":19819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.81.128", + "prefixLen":25, + "network":"193.45.81.128\/25", + "version":19818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.82.0", + "prefixLen":25, + "network":"193.45.82.0\/25", + "version":19817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.82.128", + "prefixLen":25, + "network":"193.45.82.128\/25", + "version":19816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.83.0", + "prefixLen":25, + "network":"193.45.83.0\/25", + "version":19815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.83.128", + "prefixLen":25, + "network":"193.45.83.128\/25", + "version":19814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.96.0", + "prefixLen":25, + "network":"193.45.96.0\/25", + "version":19813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.96.128", + "prefixLen":25, + "network":"193.45.96.128\/25", + "version":19812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.97.0", + "prefixLen":25, + "network":"193.45.97.0\/25", + "version":19811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.97.128", + "prefixLen":25, + "network":"193.45.97.128\/25", + "version":19810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.98.0", + "prefixLen":25, + "network":"193.45.98.0\/25", + "version":19809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.98.128", + "prefixLen":25, + "network":"193.45.98.128\/25", + "version":19808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.99.0", + "prefixLen":25, + "network":"193.45.99.0\/25", + "version":19807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.99.128", + "prefixLen":25, + "network":"193.45.99.128\/25", + "version":19806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.112.0", + "prefixLen":25, + "network":"193.45.112.0\/25", + "version":19805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.112.128", + "prefixLen":25, + "network":"193.45.112.128\/25", + "version":19804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.113.0", + "prefixLen":25, + "network":"193.45.113.0\/25", + "version":19803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.113.128", + "prefixLen":25, + "network":"193.45.113.128\/25", + "version":19802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.114.0", + "prefixLen":25, + "network":"193.45.114.0\/25", + "version":19801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.114.128", + "prefixLen":25, + "network":"193.45.114.128\/25", + "version":19800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.115.0", + "prefixLen":25, + "network":"193.45.115.0\/25", + "version":19799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.115.128", + "prefixLen":25, + "network":"193.45.115.128\/25", + "version":19798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.128.0", + "prefixLen":25, + "network":"193.45.128.0\/25", + "version":19797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.128.128", + "prefixLen":25, + "network":"193.45.128.128\/25", + "version":19796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.129.0", + "prefixLen":25, + "network":"193.45.129.0\/25", + "version":19795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.129.128", + "prefixLen":25, + "network":"193.45.129.128\/25", + "version":19794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.130.0", + "prefixLen":25, + "network":"193.45.130.0\/25", + "version":19793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.130.128", + "prefixLen":25, + "network":"193.45.130.128\/25", + "version":19792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.131.0", + "prefixLen":25, + "network":"193.45.131.0\/25", + "version":19791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.131.128", + "prefixLen":25, + "network":"193.45.131.128\/25", + "version":19790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.144.0", + "prefixLen":25, + "network":"193.45.144.0\/25", + "version":19789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.144.128", + "prefixLen":25, + "network":"193.45.144.128\/25", + "version":19788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.145.0", + "prefixLen":25, + "network":"193.45.145.0\/25", + "version":19787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.145.128", + "prefixLen":25, + "network":"193.45.145.128\/25", + "version":19786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.146.0", + "prefixLen":25, + "network":"193.45.146.0\/25", + "version":19785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.146.128", + "prefixLen":25, + "network":"193.45.146.128\/25", + "version":19784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.147.0", + "prefixLen":25, + "network":"193.45.147.0\/25", + "version":19783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.147.128", + "prefixLen":25, + "network":"193.45.147.128\/25", + "version":19782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.160.0", + "prefixLen":25, + "network":"193.45.160.0\/25", + "version":19781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.160.128", + "prefixLen":25, + "network":"193.45.160.128\/25", + "version":19780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.161.0", + "prefixLen":25, + "network":"193.45.161.0\/25", + "version":19779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.161.128", + "prefixLen":25, + "network":"193.45.161.128\/25", + "version":19778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.162.0", + "prefixLen":25, + "network":"193.45.162.0\/25", + "version":19777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.162.128", + "prefixLen":25, + "network":"193.45.162.128\/25", + "version":19776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.163.0", + "prefixLen":25, + "network":"193.45.163.0\/25", + "version":19775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.163.128", + "prefixLen":25, + "network":"193.45.163.128\/25", + "version":19774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.176.0", + "prefixLen":25, + "network":"193.45.176.0\/25", + "version":19773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.176.128", + "prefixLen":25, + "network":"193.45.176.128\/25", + "version":19772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.177.0", + "prefixLen":25, + "network":"193.45.177.0\/25", + "version":19771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.177.128", + "prefixLen":25, + "network":"193.45.177.128\/25", + "version":19770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.178.0", + "prefixLen":25, + "network":"193.45.178.0\/25", + "version":19769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.178.128", + "prefixLen":25, + "network":"193.45.178.128\/25", + "version":19768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.179.0", + "prefixLen":25, + "network":"193.45.179.0\/25", + "version":19767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.179.128", + "prefixLen":25, + "network":"193.45.179.128\/25", + "version":19766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.192.0", + "prefixLen":25, + "network":"193.45.192.0\/25", + "version":19765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.192.128", + "prefixLen":25, + "network":"193.45.192.128\/25", + "version":19764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.193.0", + "prefixLen":25, + "network":"193.45.193.0\/25", + "version":19763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.193.128", + "prefixLen":25, + "network":"193.45.193.128\/25", + "version":19762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.194.0", + "prefixLen":25, + "network":"193.45.194.0\/25", + "version":19761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.194.128", + "prefixLen":25, + "network":"193.45.194.128\/25", + "version":19760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.195.0", + "prefixLen":25, + "network":"193.45.195.0\/25", + "version":19759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.195.128", + "prefixLen":25, + "network":"193.45.195.128\/25", + "version":19758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.208.0", + "prefixLen":25, + "network":"193.45.208.0\/25", + "version":19757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.208.128", + "prefixLen":25, + "network":"193.45.208.128\/25", + "version":19756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.209.0", + "prefixLen":25, + "network":"193.45.209.0\/25", + "version":19755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.209.128", + "prefixLen":25, + "network":"193.45.209.128\/25", + "version":19754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.210.0", + "prefixLen":25, + "network":"193.45.210.0\/25", + "version":19753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.210.128", + "prefixLen":25, + "network":"193.45.210.128\/25", + "version":19752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.211.0", + "prefixLen":25, + "network":"193.45.211.0\/25", + "version":19751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.211.128", + "prefixLen":25, + "network":"193.45.211.128\/25", + "version":19750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.224.0", + "prefixLen":25, + "network":"193.45.224.0\/25", + "version":19749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.224.128", + "prefixLen":25, + "network":"193.45.224.128\/25", + "version":19748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.225.0", + "prefixLen":25, + "network":"193.45.225.0\/25", + "version":19747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.225.128", + "prefixLen":25, + "network":"193.45.225.128\/25", + "version":19746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.226.0", + "prefixLen":25, + "network":"193.45.226.0\/25", + "version":19745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.226.128", + "prefixLen":25, + "network":"193.45.226.128\/25", + "version":19744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.227.0", + "prefixLen":25, + "network":"193.45.227.0\/25", + "version":19743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.227.128", + "prefixLen":25, + "network":"193.45.227.128\/25", + "version":19742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.240.0", + "prefixLen":25, + "network":"193.45.240.0\/25", + "version":19741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.240.128", + "prefixLen":25, + "network":"193.45.240.128\/25", + "version":19740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.241.0", + "prefixLen":25, + "network":"193.45.241.0\/25", + "version":19739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.241.128", + "prefixLen":25, + "network":"193.45.241.128\/25", + "version":19738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.242.0", + "prefixLen":25, + "network":"193.45.242.0\/25", + "version":19737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.242.128", + "prefixLen":25, + "network":"193.45.242.128\/25", + "version":19736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.243.0", + "prefixLen":25, + "network":"193.45.243.0\/25", + "version":19735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.45.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.45.243.128", + "prefixLen":25, + "network":"193.45.243.128\/25", + "version":19734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64733 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.0.0", + "prefixLen":25, + "network":"193.46.0.0\/25", + "version":13205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.0.128", + "prefixLen":25, + "network":"193.46.0.128\/25", + "version":13332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.1.0", + "prefixLen":25, + "network":"193.46.1.0\/25", + "version":13331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.1.128", + "prefixLen":25, + "network":"193.46.1.128\/25", + "version":13330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.2.0", + "prefixLen":25, + "network":"193.46.2.0\/25", + "version":13329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.2.128", + "prefixLen":25, + "network":"193.46.2.128\/25", + "version":13328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.3.0", + "prefixLen":25, + "network":"193.46.3.0\/25", + "version":13327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.3.128", + "prefixLen":25, + "network":"193.46.3.128\/25", + "version":13326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.16.0", + "prefixLen":25, + "network":"193.46.16.0\/25", + "version":13325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.16.128", + "prefixLen":25, + "network":"193.46.16.128\/25", + "version":13324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.17.0", + "prefixLen":25, + "network":"193.46.17.0\/25", + "version":13323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.17.128", + "prefixLen":25, + "network":"193.46.17.128\/25", + "version":13322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.18.0", + "prefixLen":25, + "network":"193.46.18.0\/25", + "version":13321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.18.128", + "prefixLen":25, + "network":"193.46.18.128\/25", + "version":13320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.19.0", + "prefixLen":25, + "network":"193.46.19.0\/25", + "version":13319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.19.128", + "prefixLen":25, + "network":"193.46.19.128\/25", + "version":13318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.32.0", + "prefixLen":25, + "network":"193.46.32.0\/25", + "version":13317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.32.128", + "prefixLen":25, + "network":"193.46.32.128\/25", + "version":13316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.33.0", + "prefixLen":25, + "network":"193.46.33.0\/25", + "version":13315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.33.128", + "prefixLen":25, + "network":"193.46.33.128\/25", + "version":13314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.34.0", + "prefixLen":25, + "network":"193.46.34.0\/25", + "version":13313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.34.128", + "prefixLen":25, + "network":"193.46.34.128\/25", + "version":13312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.35.0", + "prefixLen":25, + "network":"193.46.35.0\/25", + "version":13311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.35.128", + "prefixLen":25, + "network":"193.46.35.128\/25", + "version":13310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.48.0", + "prefixLen":25, + "network":"193.46.48.0\/25", + "version":13309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.48.128", + "prefixLen":25, + "network":"193.46.48.128\/25", + "version":13308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.49.0", + "prefixLen":25, + "network":"193.46.49.0\/25", + "version":13307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.49.128", + "prefixLen":25, + "network":"193.46.49.128\/25", + "version":13306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.50.0", + "prefixLen":25, + "network":"193.46.50.0\/25", + "version":13305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.50.128", + "prefixLen":25, + "network":"193.46.50.128\/25", + "version":13304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.51.0", + "prefixLen":25, + "network":"193.46.51.0\/25", + "version":13303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.51.128", + "prefixLen":25, + "network":"193.46.51.128\/25", + "version":13302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.64.0", + "prefixLen":25, + "network":"193.46.64.0\/25", + "version":13301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.64.128", + "prefixLen":25, + "network":"193.46.64.128\/25", + "version":13300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.65.0", + "prefixLen":25, + "network":"193.46.65.0\/25", + "version":13299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.65.128", + "prefixLen":25, + "network":"193.46.65.128\/25", + "version":13298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.66.0", + "prefixLen":25, + "network":"193.46.66.0\/25", + "version":13297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.66.128", + "prefixLen":25, + "network":"193.46.66.128\/25", + "version":13296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.67.0", + "prefixLen":25, + "network":"193.46.67.0\/25", + "version":13295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.67.128", + "prefixLen":25, + "network":"193.46.67.128\/25", + "version":13294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.80.0", + "prefixLen":25, + "network":"193.46.80.0\/25", + "version":13293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.80.128", + "prefixLen":25, + "network":"193.46.80.128\/25", + "version":13292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.81.0", + "prefixLen":25, + "network":"193.46.81.0\/25", + "version":13291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.81.128", + "prefixLen":25, + "network":"193.46.81.128\/25", + "version":13290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.82.0", + "prefixLen":25, + "network":"193.46.82.0\/25", + "version":13289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.82.128", + "prefixLen":25, + "network":"193.46.82.128\/25", + "version":13288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.83.0", + "prefixLen":25, + "network":"193.46.83.0\/25", + "version":13287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.83.128", + "prefixLen":25, + "network":"193.46.83.128\/25", + "version":13286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.96.0", + "prefixLen":25, + "network":"193.46.96.0\/25", + "version":13285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.96.128", + "prefixLen":25, + "network":"193.46.96.128\/25", + "version":13284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.97.0", + "prefixLen":25, + "network":"193.46.97.0\/25", + "version":13283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.97.128", + "prefixLen":25, + "network":"193.46.97.128\/25", + "version":13282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.98.0", + "prefixLen":25, + "network":"193.46.98.0\/25", + "version":13281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.98.128", + "prefixLen":25, + "network":"193.46.98.128\/25", + "version":13280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.99.0", + "prefixLen":25, + "network":"193.46.99.0\/25", + "version":13279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.99.128", + "prefixLen":25, + "network":"193.46.99.128\/25", + "version":13278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.112.0", + "prefixLen":25, + "network":"193.46.112.0\/25", + "version":13277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.112.128", + "prefixLen":25, + "network":"193.46.112.128\/25", + "version":13276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.113.0", + "prefixLen":25, + "network":"193.46.113.0\/25", + "version":13275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.113.128", + "prefixLen":25, + "network":"193.46.113.128\/25", + "version":13274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.114.0", + "prefixLen":25, + "network":"193.46.114.0\/25", + "version":13273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.114.128", + "prefixLen":25, + "network":"193.46.114.128\/25", + "version":13272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.115.0", + "prefixLen":25, + "network":"193.46.115.0\/25", + "version":13271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.115.128", + "prefixLen":25, + "network":"193.46.115.128\/25", + "version":13270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.128.0", + "prefixLen":25, + "network":"193.46.128.0\/25", + "version":13269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.128.128", + "prefixLen":25, + "network":"193.46.128.128\/25", + "version":13268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.129.0", + "prefixLen":25, + "network":"193.46.129.0\/25", + "version":13267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.129.128", + "prefixLen":25, + "network":"193.46.129.128\/25", + "version":13266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.130.0", + "prefixLen":25, + "network":"193.46.130.0\/25", + "version":13265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.130.128", + "prefixLen":25, + "network":"193.46.130.128\/25", + "version":13264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.131.0", + "prefixLen":25, + "network":"193.46.131.0\/25", + "version":13263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.131.128", + "prefixLen":25, + "network":"193.46.131.128\/25", + "version":13262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.144.0", + "prefixLen":25, + "network":"193.46.144.0\/25", + "version":13261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.144.128", + "prefixLen":25, + "network":"193.46.144.128\/25", + "version":13260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.145.0", + "prefixLen":25, + "network":"193.46.145.0\/25", + "version":13259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.145.128", + "prefixLen":25, + "network":"193.46.145.128\/25", + "version":13258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.146.0", + "prefixLen":25, + "network":"193.46.146.0\/25", + "version":13257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.146.128", + "prefixLen":25, + "network":"193.46.146.128\/25", + "version":13256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.147.0", + "prefixLen":25, + "network":"193.46.147.0\/25", + "version":13255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.147.128", + "prefixLen":25, + "network":"193.46.147.128\/25", + "version":13254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.160.0", + "prefixLen":25, + "network":"193.46.160.0\/25", + "version":13253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.160.128", + "prefixLen":25, + "network":"193.46.160.128\/25", + "version":13252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.161.0", + "prefixLen":25, + "network":"193.46.161.0\/25", + "version":13251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.161.128", + "prefixLen":25, + "network":"193.46.161.128\/25", + "version":13250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.162.0", + "prefixLen":25, + "network":"193.46.162.0\/25", + "version":13249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.162.128", + "prefixLen":25, + "network":"193.46.162.128\/25", + "version":13248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.163.0", + "prefixLen":25, + "network":"193.46.163.0\/25", + "version":13247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.163.128", + "prefixLen":25, + "network":"193.46.163.128\/25", + "version":13246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.176.0", + "prefixLen":25, + "network":"193.46.176.0\/25", + "version":13245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.176.128", + "prefixLen":25, + "network":"193.46.176.128\/25", + "version":13244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.177.0", + "prefixLen":25, + "network":"193.46.177.0\/25", + "version":13243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.177.128", + "prefixLen":25, + "network":"193.46.177.128\/25", + "version":13242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.178.0", + "prefixLen":25, + "network":"193.46.178.0\/25", + "version":13241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.178.128", + "prefixLen":25, + "network":"193.46.178.128\/25", + "version":13240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.179.0", + "prefixLen":25, + "network":"193.46.179.0\/25", + "version":13239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.179.128", + "prefixLen":25, + "network":"193.46.179.128\/25", + "version":13238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.192.0", + "prefixLen":25, + "network":"193.46.192.0\/25", + "version":13237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.192.128", + "prefixLen":25, + "network":"193.46.192.128\/25", + "version":13236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.193.0", + "prefixLen":25, + "network":"193.46.193.0\/25", + "version":13235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.193.128", + "prefixLen":25, + "network":"193.46.193.128\/25", + "version":13234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.194.0", + "prefixLen":25, + "network":"193.46.194.0\/25", + "version":13233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.194.128", + "prefixLen":25, + "network":"193.46.194.128\/25", + "version":13232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.195.0", + "prefixLen":25, + "network":"193.46.195.0\/25", + "version":13231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.195.128", + "prefixLen":25, + "network":"193.46.195.128\/25", + "version":13230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.208.0", + "prefixLen":25, + "network":"193.46.208.0\/25", + "version":13229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.208.128", + "prefixLen":25, + "network":"193.46.208.128\/25", + "version":13228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.209.0", + "prefixLen":25, + "network":"193.46.209.0\/25", + "version":13227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.209.128", + "prefixLen":25, + "network":"193.46.209.128\/25", + "version":13226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.210.0", + "prefixLen":25, + "network":"193.46.210.0\/25", + "version":13225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.210.128", + "prefixLen":25, + "network":"193.46.210.128\/25", + "version":13224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.211.0", + "prefixLen":25, + "network":"193.46.211.0\/25", + "version":13223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.211.128", + "prefixLen":25, + "network":"193.46.211.128\/25", + "version":13222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.224.0", + "prefixLen":25, + "network":"193.46.224.0\/25", + "version":13221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.224.128", + "prefixLen":25, + "network":"193.46.224.128\/25", + "version":13220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.225.0", + "prefixLen":25, + "network":"193.46.225.0\/25", + "version":13219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.225.128", + "prefixLen":25, + "network":"193.46.225.128\/25", + "version":13218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.226.0", + "prefixLen":25, + "network":"193.46.226.0\/25", + "version":13217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.226.128", + "prefixLen":25, + "network":"193.46.226.128\/25", + "version":13216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.227.0", + "prefixLen":25, + "network":"193.46.227.0\/25", + "version":13215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.227.128", + "prefixLen":25, + "network":"193.46.227.128\/25", + "version":13214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.240.0", + "prefixLen":25, + "network":"193.46.240.0\/25", + "version":13213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.240.128", + "prefixLen":25, + "network":"193.46.240.128\/25", + "version":13212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.241.0", + "prefixLen":25, + "network":"193.46.241.0\/25", + "version":13211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.241.128", + "prefixLen":25, + "network":"193.46.241.128\/25", + "version":13210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.242.0", + "prefixLen":25, + "network":"193.46.242.0\/25", + "version":13209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.242.128", + "prefixLen":25, + "network":"193.46.242.128\/25", + "version":13208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.243.0", + "prefixLen":25, + "network":"193.46.243.0\/25", + "version":13207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.46.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.46.243.128", + "prefixLen":25, + "network":"193.46.243.128\/25", + "version":13206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64734 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.0.0", + "prefixLen":25, + "network":"193.47.0.0\/25", + "version":13333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.0.128", + "prefixLen":25, + "network":"193.47.0.128\/25", + "version":13460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.1.0", + "prefixLen":25, + "network":"193.47.1.0\/25", + "version":13459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.1.128", + "prefixLen":25, + "network":"193.47.1.128\/25", + "version":13458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.2.0", + "prefixLen":25, + "network":"193.47.2.0\/25", + "version":13457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.2.128", + "prefixLen":25, + "network":"193.47.2.128\/25", + "version":13456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.3.0", + "prefixLen":25, + "network":"193.47.3.0\/25", + "version":13455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.3.128", + "prefixLen":25, + "network":"193.47.3.128\/25", + "version":13454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.16.0", + "prefixLen":25, + "network":"193.47.16.0\/25", + "version":13453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.16.128", + "prefixLen":25, + "network":"193.47.16.128\/25", + "version":13452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.17.0", + "prefixLen":25, + "network":"193.47.17.0\/25", + "version":13451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.17.128", + "prefixLen":25, + "network":"193.47.17.128\/25", + "version":13450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.18.0", + "prefixLen":25, + "network":"193.47.18.0\/25", + "version":13449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.18.128", + "prefixLen":25, + "network":"193.47.18.128\/25", + "version":13448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.19.0", + "prefixLen":25, + "network":"193.47.19.0\/25", + "version":13447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.19.128", + "prefixLen":25, + "network":"193.47.19.128\/25", + "version":13446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.32.0", + "prefixLen":25, + "network":"193.47.32.0\/25", + "version":13445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.32.128", + "prefixLen":25, + "network":"193.47.32.128\/25", + "version":13444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.33.0", + "prefixLen":25, + "network":"193.47.33.0\/25", + "version":13443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.33.128", + "prefixLen":25, + "network":"193.47.33.128\/25", + "version":13442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.34.0", + "prefixLen":25, + "network":"193.47.34.0\/25", + "version":13441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.34.128", + "prefixLen":25, + "network":"193.47.34.128\/25", + "version":13440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.35.0", + "prefixLen":25, + "network":"193.47.35.0\/25", + "version":13439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.35.128", + "prefixLen":25, + "network":"193.47.35.128\/25", + "version":13438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.48.0", + "prefixLen":25, + "network":"193.47.48.0\/25", + "version":13437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.48.128", + "prefixLen":25, + "network":"193.47.48.128\/25", + "version":13436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.49.0", + "prefixLen":25, + "network":"193.47.49.0\/25", + "version":13435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.49.128", + "prefixLen":25, + "network":"193.47.49.128\/25", + "version":13434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.50.0", + "prefixLen":25, + "network":"193.47.50.0\/25", + "version":13433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.50.128", + "prefixLen":25, + "network":"193.47.50.128\/25", + "version":13432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.51.0", + "prefixLen":25, + "network":"193.47.51.0\/25", + "version":13431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.51.128", + "prefixLen":25, + "network":"193.47.51.128\/25", + "version":13430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.64.0", + "prefixLen":25, + "network":"193.47.64.0\/25", + "version":13429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.64.128", + "prefixLen":25, + "network":"193.47.64.128\/25", + "version":13428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.65.0", + "prefixLen":25, + "network":"193.47.65.0\/25", + "version":13427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.65.128", + "prefixLen":25, + "network":"193.47.65.128\/25", + "version":13426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.66.0", + "prefixLen":25, + "network":"193.47.66.0\/25", + "version":13425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.66.128", + "prefixLen":25, + "network":"193.47.66.128\/25", + "version":13424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.67.0", + "prefixLen":25, + "network":"193.47.67.0\/25", + "version":13423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.67.128", + "prefixLen":25, + "network":"193.47.67.128\/25", + "version":13422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.80.0", + "prefixLen":25, + "network":"193.47.80.0\/25", + "version":13421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.80.128", + "prefixLen":25, + "network":"193.47.80.128\/25", + "version":13420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.81.0", + "prefixLen":25, + "network":"193.47.81.0\/25", + "version":13419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.81.128", + "prefixLen":25, + "network":"193.47.81.128\/25", + "version":13418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.82.0", + "prefixLen":25, + "network":"193.47.82.0\/25", + "version":13417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.82.128", + "prefixLen":25, + "network":"193.47.82.128\/25", + "version":13416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.83.0", + "prefixLen":25, + "network":"193.47.83.0\/25", + "version":13415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.83.128", + "prefixLen":25, + "network":"193.47.83.128\/25", + "version":13414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.96.0", + "prefixLen":25, + "network":"193.47.96.0\/25", + "version":13413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.96.128", + "prefixLen":25, + "network":"193.47.96.128\/25", + "version":13412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.97.0", + "prefixLen":25, + "network":"193.47.97.0\/25", + "version":13411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.97.128", + "prefixLen":25, + "network":"193.47.97.128\/25", + "version":13410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.98.0", + "prefixLen":25, + "network":"193.47.98.0\/25", + "version":13409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.98.128", + "prefixLen":25, + "network":"193.47.98.128\/25", + "version":13408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.99.0", + "prefixLen":25, + "network":"193.47.99.0\/25", + "version":13407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.99.128", + "prefixLen":25, + "network":"193.47.99.128\/25", + "version":13406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.112.0", + "prefixLen":25, + "network":"193.47.112.0\/25", + "version":13405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.112.128", + "prefixLen":25, + "network":"193.47.112.128\/25", + "version":13404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.113.0", + "prefixLen":25, + "network":"193.47.113.0\/25", + "version":13403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.113.128", + "prefixLen":25, + "network":"193.47.113.128\/25", + "version":13402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.114.0", + "prefixLen":25, + "network":"193.47.114.0\/25", + "version":13401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.114.128", + "prefixLen":25, + "network":"193.47.114.128\/25", + "version":13400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.115.0", + "prefixLen":25, + "network":"193.47.115.0\/25", + "version":13399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.115.128", + "prefixLen":25, + "network":"193.47.115.128\/25", + "version":13398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.128.0", + "prefixLen":25, + "network":"193.47.128.0\/25", + "version":13397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.128.128", + "prefixLen":25, + "network":"193.47.128.128\/25", + "version":13396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.129.0", + "prefixLen":25, + "network":"193.47.129.0\/25", + "version":13395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.129.128", + "prefixLen":25, + "network":"193.47.129.128\/25", + "version":13394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.130.0", + "prefixLen":25, + "network":"193.47.130.0\/25", + "version":13393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.130.128", + "prefixLen":25, + "network":"193.47.130.128\/25", + "version":13392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.131.0", + "prefixLen":25, + "network":"193.47.131.0\/25", + "version":13391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.131.128", + "prefixLen":25, + "network":"193.47.131.128\/25", + "version":13390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.144.0", + "prefixLen":25, + "network":"193.47.144.0\/25", + "version":13389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.144.128", + "prefixLen":25, + "network":"193.47.144.128\/25", + "version":13388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.145.0", + "prefixLen":25, + "network":"193.47.145.0\/25", + "version":13387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.145.128", + "prefixLen":25, + "network":"193.47.145.128\/25", + "version":13386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.146.0", + "prefixLen":25, + "network":"193.47.146.0\/25", + "version":13385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.146.128", + "prefixLen":25, + "network":"193.47.146.128\/25", + "version":13384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.147.0", + "prefixLen":25, + "network":"193.47.147.0\/25", + "version":13383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.147.128", + "prefixLen":25, + "network":"193.47.147.128\/25", + "version":13382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.160.0", + "prefixLen":25, + "network":"193.47.160.0\/25", + "version":13381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.160.128", + "prefixLen":25, + "network":"193.47.160.128\/25", + "version":13380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.161.0", + "prefixLen":25, + "network":"193.47.161.0\/25", + "version":13379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.161.128", + "prefixLen":25, + "network":"193.47.161.128\/25", + "version":13378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.162.0", + "prefixLen":25, + "network":"193.47.162.0\/25", + "version":13377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.162.128", + "prefixLen":25, + "network":"193.47.162.128\/25", + "version":13376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.163.0", + "prefixLen":25, + "network":"193.47.163.0\/25", + "version":13375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.163.128", + "prefixLen":25, + "network":"193.47.163.128\/25", + "version":13374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.176.0", + "prefixLen":25, + "network":"193.47.176.0\/25", + "version":13373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.176.128", + "prefixLen":25, + "network":"193.47.176.128\/25", + "version":13372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.177.0", + "prefixLen":25, + "network":"193.47.177.0\/25", + "version":13371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.177.128", + "prefixLen":25, + "network":"193.47.177.128\/25", + "version":13370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.178.0", + "prefixLen":25, + "network":"193.47.178.0\/25", + "version":13369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.178.128", + "prefixLen":25, + "network":"193.47.178.128\/25", + "version":13368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.179.0", + "prefixLen":25, + "network":"193.47.179.0\/25", + "version":13367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.179.128", + "prefixLen":25, + "network":"193.47.179.128\/25", + "version":13366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.192.0", + "prefixLen":25, + "network":"193.47.192.0\/25", + "version":13365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.192.128", + "prefixLen":25, + "network":"193.47.192.128\/25", + "version":13364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.193.0", + "prefixLen":25, + "network":"193.47.193.0\/25", + "version":13363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.193.128", + "prefixLen":25, + "network":"193.47.193.128\/25", + "version":13362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.194.0", + "prefixLen":25, + "network":"193.47.194.0\/25", + "version":13361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.194.128", + "prefixLen":25, + "network":"193.47.194.128\/25", + "version":13360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.195.0", + "prefixLen":25, + "network":"193.47.195.0\/25", + "version":13359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.195.128", + "prefixLen":25, + "network":"193.47.195.128\/25", + "version":13358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.208.0", + "prefixLen":25, + "network":"193.47.208.0\/25", + "version":13357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.208.128", + "prefixLen":25, + "network":"193.47.208.128\/25", + "version":13356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.209.0", + "prefixLen":25, + "network":"193.47.209.0\/25", + "version":13355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.209.128", + "prefixLen":25, + "network":"193.47.209.128\/25", + "version":13354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.210.0", + "prefixLen":25, + "network":"193.47.210.0\/25", + "version":13353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.210.128", + "prefixLen":25, + "network":"193.47.210.128\/25", + "version":13352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.211.0", + "prefixLen":25, + "network":"193.47.211.0\/25", + "version":13351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.211.128", + "prefixLen":25, + "network":"193.47.211.128\/25", + "version":13350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.224.0", + "prefixLen":25, + "network":"193.47.224.0\/25", + "version":13349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.224.128", + "prefixLen":25, + "network":"193.47.224.128\/25", + "version":13348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.225.0", + "prefixLen":25, + "network":"193.47.225.0\/25", + "version":13347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.225.128", + "prefixLen":25, + "network":"193.47.225.128\/25", + "version":13346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.226.0", + "prefixLen":25, + "network":"193.47.226.0\/25", + "version":13345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.226.128", + "prefixLen":25, + "network":"193.47.226.128\/25", + "version":13344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.227.0", + "prefixLen":25, + "network":"193.47.227.0\/25", + "version":13343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.227.128", + "prefixLen":25, + "network":"193.47.227.128\/25", + "version":13342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.240.0", + "prefixLen":25, + "network":"193.47.240.0\/25", + "version":13341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.240.128", + "prefixLen":25, + "network":"193.47.240.128\/25", + "version":13340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.241.0", + "prefixLen":25, + "network":"193.47.241.0\/25", + "version":13339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.241.128", + "prefixLen":25, + "network":"193.47.241.128\/25", + "version":13338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.242.0", + "prefixLen":25, + "network":"193.47.242.0\/25", + "version":13337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.242.128", + "prefixLen":25, + "network":"193.47.242.128\/25", + "version":13336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.243.0", + "prefixLen":25, + "network":"193.47.243.0\/25", + "version":13335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.47.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.47.243.128", + "prefixLen":25, + "network":"193.47.243.128\/25", + "version":13334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64735 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.0.0", + "prefixLen":25, + "network":"193.48.0.0\/25", + "version":13461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.0.128", + "prefixLen":25, + "network":"193.48.0.128\/25", + "version":13588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.1.0", + "prefixLen":25, + "network":"193.48.1.0\/25", + "version":13587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.1.128", + "prefixLen":25, + "network":"193.48.1.128\/25", + "version":13586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.2.0", + "prefixLen":25, + "network":"193.48.2.0\/25", + "version":13585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.2.128", + "prefixLen":25, + "network":"193.48.2.128\/25", + "version":13584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.3.0", + "prefixLen":25, + "network":"193.48.3.0\/25", + "version":13583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.3.128", + "prefixLen":25, + "network":"193.48.3.128\/25", + "version":13582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.16.0", + "prefixLen":25, + "network":"193.48.16.0\/25", + "version":13581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.16.128", + "prefixLen":25, + "network":"193.48.16.128\/25", + "version":13580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.17.0", + "prefixLen":25, + "network":"193.48.17.0\/25", + "version":13579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.17.128", + "prefixLen":25, + "network":"193.48.17.128\/25", + "version":13578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.18.0", + "prefixLen":25, + "network":"193.48.18.0\/25", + "version":13577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.18.128", + "prefixLen":25, + "network":"193.48.18.128\/25", + "version":13576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.19.0", + "prefixLen":25, + "network":"193.48.19.0\/25", + "version":13575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.19.128", + "prefixLen":25, + "network":"193.48.19.128\/25", + "version":13574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.32.0", + "prefixLen":25, + "network":"193.48.32.0\/25", + "version":13573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.32.128", + "prefixLen":25, + "network":"193.48.32.128\/25", + "version":13572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.33.0", + "prefixLen":25, + "network":"193.48.33.0\/25", + "version":13571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.33.128", + "prefixLen":25, + "network":"193.48.33.128\/25", + "version":13570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.34.0", + "prefixLen":25, + "network":"193.48.34.0\/25", + "version":13569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.34.128", + "prefixLen":25, + "network":"193.48.34.128\/25", + "version":13568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.35.0", + "prefixLen":25, + "network":"193.48.35.0\/25", + "version":13567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.35.128", + "prefixLen":25, + "network":"193.48.35.128\/25", + "version":13566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.48.0", + "prefixLen":25, + "network":"193.48.48.0\/25", + "version":13565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.48.128", + "prefixLen":25, + "network":"193.48.48.128\/25", + "version":13564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.49.0", + "prefixLen":25, + "network":"193.48.49.0\/25", + "version":13563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.49.128", + "prefixLen":25, + "network":"193.48.49.128\/25", + "version":13562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.50.0", + "prefixLen":25, + "network":"193.48.50.0\/25", + "version":13561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.50.128", + "prefixLen":25, + "network":"193.48.50.128\/25", + "version":13560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.51.0", + "prefixLen":25, + "network":"193.48.51.0\/25", + "version":13559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.51.128", + "prefixLen":25, + "network":"193.48.51.128\/25", + "version":13558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.64.0", + "prefixLen":25, + "network":"193.48.64.0\/25", + "version":13557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.64.128", + "prefixLen":25, + "network":"193.48.64.128\/25", + "version":13556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.65.0", + "prefixLen":25, + "network":"193.48.65.0\/25", + "version":13555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.65.128", + "prefixLen":25, + "network":"193.48.65.128\/25", + "version":13554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.66.0", + "prefixLen":25, + "network":"193.48.66.0\/25", + "version":13553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.66.128", + "prefixLen":25, + "network":"193.48.66.128\/25", + "version":13552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.67.0", + "prefixLen":25, + "network":"193.48.67.0\/25", + "version":13551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.67.128", + "prefixLen":25, + "network":"193.48.67.128\/25", + "version":13550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.80.0", + "prefixLen":25, + "network":"193.48.80.0\/25", + "version":13549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.80.128", + "prefixLen":25, + "network":"193.48.80.128\/25", + "version":13548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.81.0", + "prefixLen":25, + "network":"193.48.81.0\/25", + "version":13547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.81.128", + "prefixLen":25, + "network":"193.48.81.128\/25", + "version":13546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.82.0", + "prefixLen":25, + "network":"193.48.82.0\/25", + "version":13545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.82.128", + "prefixLen":25, + "network":"193.48.82.128\/25", + "version":13544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.83.0", + "prefixLen":25, + "network":"193.48.83.0\/25", + "version":13543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.83.128", + "prefixLen":25, + "network":"193.48.83.128\/25", + "version":13542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.96.0", + "prefixLen":25, + "network":"193.48.96.0\/25", + "version":13541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.96.128", + "prefixLen":25, + "network":"193.48.96.128\/25", + "version":13540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.97.0", + "prefixLen":25, + "network":"193.48.97.0\/25", + "version":13539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.97.128", + "prefixLen":25, + "network":"193.48.97.128\/25", + "version":13538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.98.0", + "prefixLen":25, + "network":"193.48.98.0\/25", + "version":13537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.98.128", + "prefixLen":25, + "network":"193.48.98.128\/25", + "version":13536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.99.0", + "prefixLen":25, + "network":"193.48.99.0\/25", + "version":13535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.99.128", + "prefixLen":25, + "network":"193.48.99.128\/25", + "version":13534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.112.0", + "prefixLen":25, + "network":"193.48.112.0\/25", + "version":13533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.112.128", + "prefixLen":25, + "network":"193.48.112.128\/25", + "version":13532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.113.0", + "prefixLen":25, + "network":"193.48.113.0\/25", + "version":13531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.113.128", + "prefixLen":25, + "network":"193.48.113.128\/25", + "version":13530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.114.0", + "prefixLen":25, + "network":"193.48.114.0\/25", + "version":13529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.114.128", + "prefixLen":25, + "network":"193.48.114.128\/25", + "version":13528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.115.0", + "prefixLen":25, + "network":"193.48.115.0\/25", + "version":13527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.115.128", + "prefixLen":25, + "network":"193.48.115.128\/25", + "version":13526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.128.0", + "prefixLen":25, + "network":"193.48.128.0\/25", + "version":13525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.128.128", + "prefixLen":25, + "network":"193.48.128.128\/25", + "version":13524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.129.0", + "prefixLen":25, + "network":"193.48.129.0\/25", + "version":13523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.129.128", + "prefixLen":25, + "network":"193.48.129.128\/25", + "version":13522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.130.0", + "prefixLen":25, + "network":"193.48.130.0\/25", + "version":13521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.130.128", + "prefixLen":25, + "network":"193.48.130.128\/25", + "version":13520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.131.0", + "prefixLen":25, + "network":"193.48.131.0\/25", + "version":13519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.131.128", + "prefixLen":25, + "network":"193.48.131.128\/25", + "version":13518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.144.0", + "prefixLen":25, + "network":"193.48.144.0\/25", + "version":13517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.144.128", + "prefixLen":25, + "network":"193.48.144.128\/25", + "version":13516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.145.0", + "prefixLen":25, + "network":"193.48.145.0\/25", + "version":13515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.145.128", + "prefixLen":25, + "network":"193.48.145.128\/25", + "version":13514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.146.0", + "prefixLen":25, + "network":"193.48.146.0\/25", + "version":13513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.146.128", + "prefixLen":25, + "network":"193.48.146.128\/25", + "version":13512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.147.0", + "prefixLen":25, + "network":"193.48.147.0\/25", + "version":13511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.147.128", + "prefixLen":25, + "network":"193.48.147.128\/25", + "version":13510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.160.0", + "prefixLen":25, + "network":"193.48.160.0\/25", + "version":13509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.160.128", + "prefixLen":25, + "network":"193.48.160.128\/25", + "version":13508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.161.0", + "prefixLen":25, + "network":"193.48.161.0\/25", + "version":13507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.161.128", + "prefixLen":25, + "network":"193.48.161.128\/25", + "version":13506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.162.0", + "prefixLen":25, + "network":"193.48.162.0\/25", + "version":13505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.162.128", + "prefixLen":25, + "network":"193.48.162.128\/25", + "version":13504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.163.0", + "prefixLen":25, + "network":"193.48.163.0\/25", + "version":13503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.163.128", + "prefixLen":25, + "network":"193.48.163.128\/25", + "version":13502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.176.0", + "prefixLen":25, + "network":"193.48.176.0\/25", + "version":13501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.176.128", + "prefixLen":25, + "network":"193.48.176.128\/25", + "version":13500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.177.0", + "prefixLen":25, + "network":"193.48.177.0\/25", + "version":13499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.177.128", + "prefixLen":25, + "network":"193.48.177.128\/25", + "version":13498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.178.0", + "prefixLen":25, + "network":"193.48.178.0\/25", + "version":13497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.178.128", + "prefixLen":25, + "network":"193.48.178.128\/25", + "version":13496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.179.0", + "prefixLen":25, + "network":"193.48.179.0\/25", + "version":13495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.179.128", + "prefixLen":25, + "network":"193.48.179.128\/25", + "version":13494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.192.0", + "prefixLen":25, + "network":"193.48.192.0\/25", + "version":13493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.192.128", + "prefixLen":25, + "network":"193.48.192.128\/25", + "version":13492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.193.0", + "prefixLen":25, + "network":"193.48.193.0\/25", + "version":13491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.193.128", + "prefixLen":25, + "network":"193.48.193.128\/25", + "version":13490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.194.0", + "prefixLen":25, + "network":"193.48.194.0\/25", + "version":13489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.194.128", + "prefixLen":25, + "network":"193.48.194.128\/25", + "version":13488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.195.0", + "prefixLen":25, + "network":"193.48.195.0\/25", + "version":13487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.195.128", + "prefixLen":25, + "network":"193.48.195.128\/25", + "version":13486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.208.0", + "prefixLen":25, + "network":"193.48.208.0\/25", + "version":13485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.208.128", + "prefixLen":25, + "network":"193.48.208.128\/25", + "version":13484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.209.0", + "prefixLen":25, + "network":"193.48.209.0\/25", + "version":13483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.209.128", + "prefixLen":25, + "network":"193.48.209.128\/25", + "version":13482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.210.0", + "prefixLen":25, + "network":"193.48.210.0\/25", + "version":13481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.210.128", + "prefixLen":25, + "network":"193.48.210.128\/25", + "version":13480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.211.0", + "prefixLen":25, + "network":"193.48.211.0\/25", + "version":13479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.211.128", + "prefixLen":25, + "network":"193.48.211.128\/25", + "version":13478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.224.0", + "prefixLen":25, + "network":"193.48.224.0\/25", + "version":13477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.224.128", + "prefixLen":25, + "network":"193.48.224.128\/25", + "version":13476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.225.0", + "prefixLen":25, + "network":"193.48.225.0\/25", + "version":13475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.225.128", + "prefixLen":25, + "network":"193.48.225.128\/25", + "version":13474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.226.0", + "prefixLen":25, + "network":"193.48.226.0\/25", + "version":13473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.226.128", + "prefixLen":25, + "network":"193.48.226.128\/25", + "version":13472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.227.0", + "prefixLen":25, + "network":"193.48.227.0\/25", + "version":13471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.227.128", + "prefixLen":25, + "network":"193.48.227.128\/25", + "version":13470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.240.0", + "prefixLen":25, + "network":"193.48.240.0\/25", + "version":13469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.240.128", + "prefixLen":25, + "network":"193.48.240.128\/25", + "version":13468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.241.0", + "prefixLen":25, + "network":"193.48.241.0\/25", + "version":13467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.241.128", + "prefixLen":25, + "network":"193.48.241.128\/25", + "version":13466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.242.0", + "prefixLen":25, + "network":"193.48.242.0\/25", + "version":13465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.242.128", + "prefixLen":25, + "network":"193.48.242.128\/25", + "version":13464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.243.0", + "prefixLen":25, + "network":"193.48.243.0\/25", + "version":13463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.48.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.48.243.128", + "prefixLen":25, + "network":"193.48.243.128\/25", + "version":13462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64736 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.0.0", + "prefixLen":25, + "network":"193.49.0.0\/25", + "version":13589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.0.128", + "prefixLen":25, + "network":"193.49.0.128\/25", + "version":13716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.1.0", + "prefixLen":25, + "network":"193.49.1.0\/25", + "version":13715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.1.128", + "prefixLen":25, + "network":"193.49.1.128\/25", + "version":13714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.2.0", + "prefixLen":25, + "network":"193.49.2.0\/25", + "version":13713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.2.128", + "prefixLen":25, + "network":"193.49.2.128\/25", + "version":13712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.3.0", + "prefixLen":25, + "network":"193.49.3.0\/25", + "version":13711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.3.128", + "prefixLen":25, + "network":"193.49.3.128\/25", + "version":13710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.16.0", + "prefixLen":25, + "network":"193.49.16.0\/25", + "version":13709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.16.128", + "prefixLen":25, + "network":"193.49.16.128\/25", + "version":13708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.17.0", + "prefixLen":25, + "network":"193.49.17.0\/25", + "version":13707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.17.128", + "prefixLen":25, + "network":"193.49.17.128\/25", + "version":13706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.18.0", + "prefixLen":25, + "network":"193.49.18.0\/25", + "version":13705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.18.128", + "prefixLen":25, + "network":"193.49.18.128\/25", + "version":13704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.19.0", + "prefixLen":25, + "network":"193.49.19.0\/25", + "version":13703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.19.128", + "prefixLen":25, + "network":"193.49.19.128\/25", + "version":13702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.32.0", + "prefixLen":25, + "network":"193.49.32.0\/25", + "version":13701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.32.128", + "prefixLen":25, + "network":"193.49.32.128\/25", + "version":13700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.33.0", + "prefixLen":25, + "network":"193.49.33.0\/25", + "version":13699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.33.128", + "prefixLen":25, + "network":"193.49.33.128\/25", + "version":13698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.34.0", + "prefixLen":25, + "network":"193.49.34.0\/25", + "version":13697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.34.128", + "prefixLen":25, + "network":"193.49.34.128\/25", + "version":13696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.35.0", + "prefixLen":25, + "network":"193.49.35.0\/25", + "version":13695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.35.128", + "prefixLen":25, + "network":"193.49.35.128\/25", + "version":13694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.48.0", + "prefixLen":25, + "network":"193.49.48.0\/25", + "version":13693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.48.128", + "prefixLen":25, + "network":"193.49.48.128\/25", + "version":13692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.49.0", + "prefixLen":25, + "network":"193.49.49.0\/25", + "version":13691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.49.128", + "prefixLen":25, + "network":"193.49.49.128\/25", + "version":13690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.50.0", + "prefixLen":25, + "network":"193.49.50.0\/25", + "version":13689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.50.128", + "prefixLen":25, + "network":"193.49.50.128\/25", + "version":13688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.51.0", + "prefixLen":25, + "network":"193.49.51.0\/25", + "version":13687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.51.128", + "prefixLen":25, + "network":"193.49.51.128\/25", + "version":13686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.64.0", + "prefixLen":25, + "network":"193.49.64.0\/25", + "version":13685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.64.128", + "prefixLen":25, + "network":"193.49.64.128\/25", + "version":13684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.65.0", + "prefixLen":25, + "network":"193.49.65.0\/25", + "version":13683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.65.128", + "prefixLen":25, + "network":"193.49.65.128\/25", + "version":13682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.66.0", + "prefixLen":25, + "network":"193.49.66.0\/25", + "version":13681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.66.128", + "prefixLen":25, + "network":"193.49.66.128\/25", + "version":13680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.67.0", + "prefixLen":25, + "network":"193.49.67.0\/25", + "version":13679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.67.128", + "prefixLen":25, + "network":"193.49.67.128\/25", + "version":13678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.80.0", + "prefixLen":25, + "network":"193.49.80.0\/25", + "version":13677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.80.128", + "prefixLen":25, + "network":"193.49.80.128\/25", + "version":13676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.81.0", + "prefixLen":25, + "network":"193.49.81.0\/25", + "version":13675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.81.128", + "prefixLen":25, + "network":"193.49.81.128\/25", + "version":13674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.82.0", + "prefixLen":25, + "network":"193.49.82.0\/25", + "version":13673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.82.128", + "prefixLen":25, + "network":"193.49.82.128\/25", + "version":13672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.83.0", + "prefixLen":25, + "network":"193.49.83.0\/25", + "version":13671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.83.128", + "prefixLen":25, + "network":"193.49.83.128\/25", + "version":13670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.96.0", + "prefixLen":25, + "network":"193.49.96.0\/25", + "version":13669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.96.128", + "prefixLen":25, + "network":"193.49.96.128\/25", + "version":13668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.97.0", + "prefixLen":25, + "network":"193.49.97.0\/25", + "version":13667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.97.128", + "prefixLen":25, + "network":"193.49.97.128\/25", + "version":13666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.98.0", + "prefixLen":25, + "network":"193.49.98.0\/25", + "version":13665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.98.128", + "prefixLen":25, + "network":"193.49.98.128\/25", + "version":13664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.99.0", + "prefixLen":25, + "network":"193.49.99.0\/25", + "version":13663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.99.128", + "prefixLen":25, + "network":"193.49.99.128\/25", + "version":13662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.112.0", + "prefixLen":25, + "network":"193.49.112.0\/25", + "version":13661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.112.128", + "prefixLen":25, + "network":"193.49.112.128\/25", + "version":13660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.113.0", + "prefixLen":25, + "network":"193.49.113.0\/25", + "version":13659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.113.128", + "prefixLen":25, + "network":"193.49.113.128\/25", + "version":13658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.114.0", + "prefixLen":25, + "network":"193.49.114.0\/25", + "version":13657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.114.128", + "prefixLen":25, + "network":"193.49.114.128\/25", + "version":13656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.115.0", + "prefixLen":25, + "network":"193.49.115.0\/25", + "version":13655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.115.128", + "prefixLen":25, + "network":"193.49.115.128\/25", + "version":13654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.128.0", + "prefixLen":25, + "network":"193.49.128.0\/25", + "version":13653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.128.128", + "prefixLen":25, + "network":"193.49.128.128\/25", + "version":13652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.129.0", + "prefixLen":25, + "network":"193.49.129.0\/25", + "version":13651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.129.128", + "prefixLen":25, + "network":"193.49.129.128\/25", + "version":13650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.130.0", + "prefixLen":25, + "network":"193.49.130.0\/25", + "version":13649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.130.128", + "prefixLen":25, + "network":"193.49.130.128\/25", + "version":13648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.131.0", + "prefixLen":25, + "network":"193.49.131.0\/25", + "version":13647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.131.128", + "prefixLen":25, + "network":"193.49.131.128\/25", + "version":13646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.144.0", + "prefixLen":25, + "network":"193.49.144.0\/25", + "version":13645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.144.128", + "prefixLen":25, + "network":"193.49.144.128\/25", + "version":13644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.145.0", + "prefixLen":25, + "network":"193.49.145.0\/25", + "version":13643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.145.128", + "prefixLen":25, + "network":"193.49.145.128\/25", + "version":13642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.146.0", + "prefixLen":25, + "network":"193.49.146.0\/25", + "version":13641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.146.128", + "prefixLen":25, + "network":"193.49.146.128\/25", + "version":13640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.147.0", + "prefixLen":25, + "network":"193.49.147.0\/25", + "version":13639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.147.128", + "prefixLen":25, + "network":"193.49.147.128\/25", + "version":13638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.160.0", + "prefixLen":25, + "network":"193.49.160.0\/25", + "version":13637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.160.128", + "prefixLen":25, + "network":"193.49.160.128\/25", + "version":13636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.161.0", + "prefixLen":25, + "network":"193.49.161.0\/25", + "version":13635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.161.128", + "prefixLen":25, + "network":"193.49.161.128\/25", + "version":13634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.162.0", + "prefixLen":25, + "network":"193.49.162.0\/25", + "version":13633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.162.128", + "prefixLen":25, + "network":"193.49.162.128\/25", + "version":13632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.163.0", + "prefixLen":25, + "network":"193.49.163.0\/25", + "version":13631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.163.128", + "prefixLen":25, + "network":"193.49.163.128\/25", + "version":13630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.176.0", + "prefixLen":25, + "network":"193.49.176.0\/25", + "version":13629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.176.128", + "prefixLen":25, + "network":"193.49.176.128\/25", + "version":13628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.177.0", + "prefixLen":25, + "network":"193.49.177.0\/25", + "version":13627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.177.128", + "prefixLen":25, + "network":"193.49.177.128\/25", + "version":13626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.178.0", + "prefixLen":25, + "network":"193.49.178.0\/25", + "version":13625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.178.128", + "prefixLen":25, + "network":"193.49.178.128\/25", + "version":13624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.179.0", + "prefixLen":25, + "network":"193.49.179.0\/25", + "version":13623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.179.128", + "prefixLen":25, + "network":"193.49.179.128\/25", + "version":13622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.192.0", + "prefixLen":25, + "network":"193.49.192.0\/25", + "version":13621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.192.128", + "prefixLen":25, + "network":"193.49.192.128\/25", + "version":13620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.193.0", + "prefixLen":25, + "network":"193.49.193.0\/25", + "version":13619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.193.128", + "prefixLen":25, + "network":"193.49.193.128\/25", + "version":13618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.194.0", + "prefixLen":25, + "network":"193.49.194.0\/25", + "version":13617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.194.128", + "prefixLen":25, + "network":"193.49.194.128\/25", + "version":13616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.195.0", + "prefixLen":25, + "network":"193.49.195.0\/25", + "version":13615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.195.128", + "prefixLen":25, + "network":"193.49.195.128\/25", + "version":13614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.208.0", + "prefixLen":25, + "network":"193.49.208.0\/25", + "version":13613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.208.128", + "prefixLen":25, + "network":"193.49.208.128\/25", + "version":13612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.209.0", + "prefixLen":25, + "network":"193.49.209.0\/25", + "version":13611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.209.128", + "prefixLen":25, + "network":"193.49.209.128\/25", + "version":13610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.210.0", + "prefixLen":25, + "network":"193.49.210.0\/25", + "version":13609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.210.128", + "prefixLen":25, + "network":"193.49.210.128\/25", + "version":13608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.211.0", + "prefixLen":25, + "network":"193.49.211.0\/25", + "version":13607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.211.128", + "prefixLen":25, + "network":"193.49.211.128\/25", + "version":13606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.224.0", + "prefixLen":25, + "network":"193.49.224.0\/25", + "version":13605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.224.128", + "prefixLen":25, + "network":"193.49.224.128\/25", + "version":13604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.225.0", + "prefixLen":25, + "network":"193.49.225.0\/25", + "version":13603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.225.128", + "prefixLen":25, + "network":"193.49.225.128\/25", + "version":13602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.226.0", + "prefixLen":25, + "network":"193.49.226.0\/25", + "version":13601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.226.128", + "prefixLen":25, + "network":"193.49.226.128\/25", + "version":13600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.227.0", + "prefixLen":25, + "network":"193.49.227.0\/25", + "version":13599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.227.128", + "prefixLen":25, + "network":"193.49.227.128\/25", + "version":13598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.240.0", + "prefixLen":25, + "network":"193.49.240.0\/25", + "version":13597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.240.128", + "prefixLen":25, + "network":"193.49.240.128\/25", + "version":13596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.241.0", + "prefixLen":25, + "network":"193.49.241.0\/25", + "version":13595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.241.128", + "prefixLen":25, + "network":"193.49.241.128\/25", + "version":13594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.242.0", + "prefixLen":25, + "network":"193.49.242.0\/25", + "version":13593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.242.128", + "prefixLen":25, + "network":"193.49.242.128\/25", + "version":13592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.243.0", + "prefixLen":25, + "network":"193.49.243.0\/25", + "version":13591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.49.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.49.243.128", + "prefixLen":25, + "network":"193.49.243.128\/25", + "version":13590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64737 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.0.0", + "prefixLen":25, + "network":"193.50.0.0\/25", + "version":14997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.0.128", + "prefixLen":25, + "network":"193.50.0.128\/25", + "version":15124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.1.0", + "prefixLen":25, + "network":"193.50.1.0\/25", + "version":15123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.1.128", + "prefixLen":25, + "network":"193.50.1.128\/25", + "version":15122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.2.0", + "prefixLen":25, + "network":"193.50.2.0\/25", + "version":15121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.2.128", + "prefixLen":25, + "network":"193.50.2.128\/25", + "version":15120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.3.0", + "prefixLen":25, + "network":"193.50.3.0\/25", + "version":15119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.3.128", + "prefixLen":25, + "network":"193.50.3.128\/25", + "version":15118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.16.0", + "prefixLen":25, + "network":"193.50.16.0\/25", + "version":15117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.16.128", + "prefixLen":25, + "network":"193.50.16.128\/25", + "version":15116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.17.0", + "prefixLen":25, + "network":"193.50.17.0\/25", + "version":15115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.17.128", + "prefixLen":25, + "network":"193.50.17.128\/25", + "version":15114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.18.0", + "prefixLen":25, + "network":"193.50.18.0\/25", + "version":15113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.18.128", + "prefixLen":25, + "network":"193.50.18.128\/25", + "version":15112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.19.0", + "prefixLen":25, + "network":"193.50.19.0\/25", + "version":15111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.19.128", + "prefixLen":25, + "network":"193.50.19.128\/25", + "version":15110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.32.0", + "prefixLen":25, + "network":"193.50.32.0\/25", + "version":15109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.32.128", + "prefixLen":25, + "network":"193.50.32.128\/25", + "version":15108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.33.0", + "prefixLen":25, + "network":"193.50.33.0\/25", + "version":15107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.33.128", + "prefixLen":25, + "network":"193.50.33.128\/25", + "version":15106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.34.0", + "prefixLen":25, + "network":"193.50.34.0\/25", + "version":15105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.34.128", + "prefixLen":25, + "network":"193.50.34.128\/25", + "version":15104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.35.0", + "prefixLen":25, + "network":"193.50.35.0\/25", + "version":15103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.35.128", + "prefixLen":25, + "network":"193.50.35.128\/25", + "version":15102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.48.0", + "prefixLen":25, + "network":"193.50.48.0\/25", + "version":15101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.48.128", + "prefixLen":25, + "network":"193.50.48.128\/25", + "version":15100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.49.0", + "prefixLen":25, + "network":"193.50.49.0\/25", + "version":15099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.49.128", + "prefixLen":25, + "network":"193.50.49.128\/25", + "version":15098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.50.0", + "prefixLen":25, + "network":"193.50.50.0\/25", + "version":15097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.50.128", + "prefixLen":25, + "network":"193.50.50.128\/25", + "version":15096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.51.0", + "prefixLen":25, + "network":"193.50.51.0\/25", + "version":15095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.51.128", + "prefixLen":25, + "network":"193.50.51.128\/25", + "version":15094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.64.0", + "prefixLen":25, + "network":"193.50.64.0\/25", + "version":15093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.64.128", + "prefixLen":25, + "network":"193.50.64.128\/25", + "version":15092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.65.0", + "prefixLen":25, + "network":"193.50.65.0\/25", + "version":15091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.65.128", + "prefixLen":25, + "network":"193.50.65.128\/25", + "version":15090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.66.0", + "prefixLen":25, + "network":"193.50.66.0\/25", + "version":15089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.66.128", + "prefixLen":25, + "network":"193.50.66.128\/25", + "version":15088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.67.0", + "prefixLen":25, + "network":"193.50.67.0\/25", + "version":15087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.67.128", + "prefixLen":25, + "network":"193.50.67.128\/25", + "version":15086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.80.0", + "prefixLen":25, + "network":"193.50.80.0\/25", + "version":15085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.80.128", + "prefixLen":25, + "network":"193.50.80.128\/25", + "version":15084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.81.0", + "prefixLen":25, + "network":"193.50.81.0\/25", + "version":15083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.81.128", + "prefixLen":25, + "network":"193.50.81.128\/25", + "version":15082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.82.0", + "prefixLen":25, + "network":"193.50.82.0\/25", + "version":15081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.82.128", + "prefixLen":25, + "network":"193.50.82.128\/25", + "version":15080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.83.0", + "prefixLen":25, + "network":"193.50.83.0\/25", + "version":15079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.83.128", + "prefixLen":25, + "network":"193.50.83.128\/25", + "version":15078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.96.0", + "prefixLen":25, + "network":"193.50.96.0\/25", + "version":15077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.96.128", + "prefixLen":25, + "network":"193.50.96.128\/25", + "version":15076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.97.0", + "prefixLen":25, + "network":"193.50.97.0\/25", + "version":15075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.97.128", + "prefixLen":25, + "network":"193.50.97.128\/25", + "version":15074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.98.0", + "prefixLen":25, + "network":"193.50.98.0\/25", + "version":15073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.98.128", + "prefixLen":25, + "network":"193.50.98.128\/25", + "version":15072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.99.0", + "prefixLen":25, + "network":"193.50.99.0\/25", + "version":15071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.99.128", + "prefixLen":25, + "network":"193.50.99.128\/25", + "version":15070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.112.0", + "prefixLen":25, + "network":"193.50.112.0\/25", + "version":15069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.112.128", + "prefixLen":25, + "network":"193.50.112.128\/25", + "version":15068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.113.0", + "prefixLen":25, + "network":"193.50.113.0\/25", + "version":15067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.113.128", + "prefixLen":25, + "network":"193.50.113.128\/25", + "version":15066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.114.0", + "prefixLen":25, + "network":"193.50.114.0\/25", + "version":15065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.114.128", + "prefixLen":25, + "network":"193.50.114.128\/25", + "version":15064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.115.0", + "prefixLen":25, + "network":"193.50.115.0\/25", + "version":15063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.115.128", + "prefixLen":25, + "network":"193.50.115.128\/25", + "version":15062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.128.0", + "prefixLen":25, + "network":"193.50.128.0\/25", + "version":15061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.128.128", + "prefixLen":25, + "network":"193.50.128.128\/25", + "version":15060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.129.0", + "prefixLen":25, + "network":"193.50.129.0\/25", + "version":15059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.129.128", + "prefixLen":25, + "network":"193.50.129.128\/25", + "version":15058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.130.0", + "prefixLen":25, + "network":"193.50.130.0\/25", + "version":15057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.130.128", + "prefixLen":25, + "network":"193.50.130.128\/25", + "version":15056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.131.0", + "prefixLen":25, + "network":"193.50.131.0\/25", + "version":15055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.131.128", + "prefixLen":25, + "network":"193.50.131.128\/25", + "version":15054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.144.0", + "prefixLen":25, + "network":"193.50.144.0\/25", + "version":15053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.144.128", + "prefixLen":25, + "network":"193.50.144.128\/25", + "version":15052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.145.0", + "prefixLen":25, + "network":"193.50.145.0\/25", + "version":15051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.145.128", + "prefixLen":25, + "network":"193.50.145.128\/25", + "version":15050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.146.0", + "prefixLen":25, + "network":"193.50.146.0\/25", + "version":15049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.146.128", + "prefixLen":25, + "network":"193.50.146.128\/25", + "version":15048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.147.0", + "prefixLen":25, + "network":"193.50.147.0\/25", + "version":15047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.147.128", + "prefixLen":25, + "network":"193.50.147.128\/25", + "version":15046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.160.0", + "prefixLen":25, + "network":"193.50.160.0\/25", + "version":15045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.160.128", + "prefixLen":25, + "network":"193.50.160.128\/25", + "version":15044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.161.0", + "prefixLen":25, + "network":"193.50.161.0\/25", + "version":15043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.161.128", + "prefixLen":25, + "network":"193.50.161.128\/25", + "version":15042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.162.0", + "prefixLen":25, + "network":"193.50.162.0\/25", + "version":15041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.162.128", + "prefixLen":25, + "network":"193.50.162.128\/25", + "version":15040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.163.0", + "prefixLen":25, + "network":"193.50.163.0\/25", + "version":15039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.163.128", + "prefixLen":25, + "network":"193.50.163.128\/25", + "version":15038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.176.0", + "prefixLen":25, + "network":"193.50.176.0\/25", + "version":15037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.176.128", + "prefixLen":25, + "network":"193.50.176.128\/25", + "version":15036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.177.0", + "prefixLen":25, + "network":"193.50.177.0\/25", + "version":15035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.177.128", + "prefixLen":25, + "network":"193.50.177.128\/25", + "version":15034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.178.0", + "prefixLen":25, + "network":"193.50.178.0\/25", + "version":15033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.178.128", + "prefixLen":25, + "network":"193.50.178.128\/25", + "version":15032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.179.0", + "prefixLen":25, + "network":"193.50.179.0\/25", + "version":15031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.179.128", + "prefixLen":25, + "network":"193.50.179.128\/25", + "version":15030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.192.0", + "prefixLen":25, + "network":"193.50.192.0\/25", + "version":15029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.192.128", + "prefixLen":25, + "network":"193.50.192.128\/25", + "version":15028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.193.0", + "prefixLen":25, + "network":"193.50.193.0\/25", + "version":15027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.193.128", + "prefixLen":25, + "network":"193.50.193.128\/25", + "version":15026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.194.0", + "prefixLen":25, + "network":"193.50.194.0\/25", + "version":15025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.194.128", + "prefixLen":25, + "network":"193.50.194.128\/25", + "version":15024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.195.0", + "prefixLen":25, + "network":"193.50.195.0\/25", + "version":15023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.195.128", + "prefixLen":25, + "network":"193.50.195.128\/25", + "version":15022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.208.0", + "prefixLen":25, + "network":"193.50.208.0\/25", + "version":15021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.208.128", + "prefixLen":25, + "network":"193.50.208.128\/25", + "version":15020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.209.0", + "prefixLen":25, + "network":"193.50.209.0\/25", + "version":15019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.209.128", + "prefixLen":25, + "network":"193.50.209.128\/25", + "version":15018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.210.0", + "prefixLen":25, + "network":"193.50.210.0\/25", + "version":15017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.210.128", + "prefixLen":25, + "network":"193.50.210.128\/25", + "version":15016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.211.0", + "prefixLen":25, + "network":"193.50.211.0\/25", + "version":15015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.211.128", + "prefixLen":25, + "network":"193.50.211.128\/25", + "version":15014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.224.0", + "prefixLen":25, + "network":"193.50.224.0\/25", + "version":15013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.224.128", + "prefixLen":25, + "network":"193.50.224.128\/25", + "version":15012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.225.0", + "prefixLen":25, + "network":"193.50.225.0\/25", + "version":15011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.225.128", + "prefixLen":25, + "network":"193.50.225.128\/25", + "version":15010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.226.0", + "prefixLen":25, + "network":"193.50.226.0\/25", + "version":15009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.226.128", + "prefixLen":25, + "network":"193.50.226.128\/25", + "version":15008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.227.0", + "prefixLen":25, + "network":"193.50.227.0\/25", + "version":15007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.227.128", + "prefixLen":25, + "network":"193.50.227.128\/25", + "version":15006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.240.0", + "prefixLen":25, + "network":"193.50.240.0\/25", + "version":15005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.240.128", + "prefixLen":25, + "network":"193.50.240.128\/25", + "version":15004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.241.0", + "prefixLen":25, + "network":"193.50.241.0\/25", + "version":15003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.241.128", + "prefixLen":25, + "network":"193.50.241.128\/25", + "version":15002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.242.0", + "prefixLen":25, + "network":"193.50.242.0\/25", + "version":15001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.242.128", + "prefixLen":25, + "network":"193.50.242.128\/25", + "version":15000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.243.0", + "prefixLen":25, + "network":"193.50.243.0\/25", + "version":14999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.50.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.50.243.128", + "prefixLen":25, + "network":"193.50.243.128\/25", + "version":14998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64738 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.0.0", + "prefixLen":25, + "network":"193.51.0.0\/25", + "version":15125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.0.128", + "prefixLen":25, + "network":"193.51.0.128\/25", + "version":15252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.1.0", + "prefixLen":25, + "network":"193.51.1.0\/25", + "version":15251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.1.128", + "prefixLen":25, + "network":"193.51.1.128\/25", + "version":15250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.2.0", + "prefixLen":25, + "network":"193.51.2.0\/25", + "version":15249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.2.128", + "prefixLen":25, + "network":"193.51.2.128\/25", + "version":15248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.3.0", + "prefixLen":25, + "network":"193.51.3.0\/25", + "version":15247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.3.128", + "prefixLen":25, + "network":"193.51.3.128\/25", + "version":15246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.16.0", + "prefixLen":25, + "network":"193.51.16.0\/25", + "version":15245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.16.128", + "prefixLen":25, + "network":"193.51.16.128\/25", + "version":15244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.17.0", + "prefixLen":25, + "network":"193.51.17.0\/25", + "version":15243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.17.128", + "prefixLen":25, + "network":"193.51.17.128\/25", + "version":15242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.18.0", + "prefixLen":25, + "network":"193.51.18.0\/25", + "version":15241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.18.128", + "prefixLen":25, + "network":"193.51.18.128\/25", + "version":15240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.19.0", + "prefixLen":25, + "network":"193.51.19.0\/25", + "version":15239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.19.128", + "prefixLen":25, + "network":"193.51.19.128\/25", + "version":15238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.32.0", + "prefixLen":25, + "network":"193.51.32.0\/25", + "version":15237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.32.128", + "prefixLen":25, + "network":"193.51.32.128\/25", + "version":15236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.33.0", + "prefixLen":25, + "network":"193.51.33.0\/25", + "version":15235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.33.128", + "prefixLen":25, + "network":"193.51.33.128\/25", + "version":15234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.34.0", + "prefixLen":25, + "network":"193.51.34.0\/25", + "version":15233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.34.128", + "prefixLen":25, + "network":"193.51.34.128\/25", + "version":15232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.35.0", + "prefixLen":25, + "network":"193.51.35.0\/25", + "version":15231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.35.128", + "prefixLen":25, + "network":"193.51.35.128\/25", + "version":15230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.48.0", + "prefixLen":25, + "network":"193.51.48.0\/25", + "version":15229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.48.128", + "prefixLen":25, + "network":"193.51.48.128\/25", + "version":15228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.49.0", + "prefixLen":25, + "network":"193.51.49.0\/25", + "version":15227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.49.128", + "prefixLen":25, + "network":"193.51.49.128\/25", + "version":15226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.50.0", + "prefixLen":25, + "network":"193.51.50.0\/25", + "version":15225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.50.128", + "prefixLen":25, + "network":"193.51.50.128\/25", + "version":15224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.51.0", + "prefixLen":25, + "network":"193.51.51.0\/25", + "version":15223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.51.128", + "prefixLen":25, + "network":"193.51.51.128\/25", + "version":15222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.64.0", + "prefixLen":25, + "network":"193.51.64.0\/25", + "version":15221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.64.128", + "prefixLen":25, + "network":"193.51.64.128\/25", + "version":15220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.65.0", + "prefixLen":25, + "network":"193.51.65.0\/25", + "version":15219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.65.128", + "prefixLen":25, + "network":"193.51.65.128\/25", + "version":15218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.66.0", + "prefixLen":25, + "network":"193.51.66.0\/25", + "version":15217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.66.128", + "prefixLen":25, + "network":"193.51.66.128\/25", + "version":15216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.67.0", + "prefixLen":25, + "network":"193.51.67.0\/25", + "version":15215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.67.128", + "prefixLen":25, + "network":"193.51.67.128\/25", + "version":15214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.80.0", + "prefixLen":25, + "network":"193.51.80.0\/25", + "version":15213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.80.128", + "prefixLen":25, + "network":"193.51.80.128\/25", + "version":15212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.81.0", + "prefixLen":25, + "network":"193.51.81.0\/25", + "version":15211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.81.128", + "prefixLen":25, + "network":"193.51.81.128\/25", + "version":15210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.82.0", + "prefixLen":25, + "network":"193.51.82.0\/25", + "version":15209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.82.128", + "prefixLen":25, + "network":"193.51.82.128\/25", + "version":15208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.83.0", + "prefixLen":25, + "network":"193.51.83.0\/25", + "version":15207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.83.128", + "prefixLen":25, + "network":"193.51.83.128\/25", + "version":15206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.96.0", + "prefixLen":25, + "network":"193.51.96.0\/25", + "version":15205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.96.128", + "prefixLen":25, + "network":"193.51.96.128\/25", + "version":15204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.97.0", + "prefixLen":25, + "network":"193.51.97.0\/25", + "version":15203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.97.128", + "prefixLen":25, + "network":"193.51.97.128\/25", + "version":15202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.98.0", + "prefixLen":25, + "network":"193.51.98.0\/25", + "version":15201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.98.128", + "prefixLen":25, + "network":"193.51.98.128\/25", + "version":15200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.99.0", + "prefixLen":25, + "network":"193.51.99.0\/25", + "version":15199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.99.128", + "prefixLen":25, + "network":"193.51.99.128\/25", + "version":15198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.112.0", + "prefixLen":25, + "network":"193.51.112.0\/25", + "version":15197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.112.128", + "prefixLen":25, + "network":"193.51.112.128\/25", + "version":15196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.113.0", + "prefixLen":25, + "network":"193.51.113.0\/25", + "version":15195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.113.128", + "prefixLen":25, + "network":"193.51.113.128\/25", + "version":15194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.114.0", + "prefixLen":25, + "network":"193.51.114.0\/25", + "version":15193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.114.128", + "prefixLen":25, + "network":"193.51.114.128\/25", + "version":15192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.115.0", + "prefixLen":25, + "network":"193.51.115.0\/25", + "version":15191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.115.128", + "prefixLen":25, + "network":"193.51.115.128\/25", + "version":15190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.128.0", + "prefixLen":25, + "network":"193.51.128.0\/25", + "version":15189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.128.128", + "prefixLen":25, + "network":"193.51.128.128\/25", + "version":15188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.129.0", + "prefixLen":25, + "network":"193.51.129.0\/25", + "version":15187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.129.128", + "prefixLen":25, + "network":"193.51.129.128\/25", + "version":15186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.130.0", + "prefixLen":25, + "network":"193.51.130.0\/25", + "version":15185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.130.128", + "prefixLen":25, + "network":"193.51.130.128\/25", + "version":15184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.131.0", + "prefixLen":25, + "network":"193.51.131.0\/25", + "version":15183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.131.128", + "prefixLen":25, + "network":"193.51.131.128\/25", + "version":15182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.144.0", + "prefixLen":25, + "network":"193.51.144.0\/25", + "version":15181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.144.128", + "prefixLen":25, + "network":"193.51.144.128\/25", + "version":15180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.145.0", + "prefixLen":25, + "network":"193.51.145.0\/25", + "version":15179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.145.128", + "prefixLen":25, + "network":"193.51.145.128\/25", + "version":15178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.146.0", + "prefixLen":25, + "network":"193.51.146.0\/25", + "version":15177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.146.128", + "prefixLen":25, + "network":"193.51.146.128\/25", + "version":15176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.147.0", + "prefixLen":25, + "network":"193.51.147.0\/25", + "version":15175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.147.128", + "prefixLen":25, + "network":"193.51.147.128\/25", + "version":15174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.160.0", + "prefixLen":25, + "network":"193.51.160.0\/25", + "version":15173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.160.128", + "prefixLen":25, + "network":"193.51.160.128\/25", + "version":15172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.161.0", + "prefixLen":25, + "network":"193.51.161.0\/25", + "version":15171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.161.128", + "prefixLen":25, + "network":"193.51.161.128\/25", + "version":15170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.162.0", + "prefixLen":25, + "network":"193.51.162.0\/25", + "version":15169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.162.128", + "prefixLen":25, + "network":"193.51.162.128\/25", + "version":15168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.163.0", + "prefixLen":25, + "network":"193.51.163.0\/25", + "version":15167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.163.128", + "prefixLen":25, + "network":"193.51.163.128\/25", + "version":15166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.176.0", + "prefixLen":25, + "network":"193.51.176.0\/25", + "version":15165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.176.128", + "prefixLen":25, + "network":"193.51.176.128\/25", + "version":15164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.177.0", + "prefixLen":25, + "network":"193.51.177.0\/25", + "version":15163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.177.128", + "prefixLen":25, + "network":"193.51.177.128\/25", + "version":15162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.178.0", + "prefixLen":25, + "network":"193.51.178.0\/25", + "version":15161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.178.128", + "prefixLen":25, + "network":"193.51.178.128\/25", + "version":15160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.179.0", + "prefixLen":25, + "network":"193.51.179.0\/25", + "version":15159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.179.128", + "prefixLen":25, + "network":"193.51.179.128\/25", + "version":15158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.192.0", + "prefixLen":25, + "network":"193.51.192.0\/25", + "version":15157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.192.128", + "prefixLen":25, + "network":"193.51.192.128\/25", + "version":15156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.193.0", + "prefixLen":25, + "network":"193.51.193.0\/25", + "version":15155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.193.128", + "prefixLen":25, + "network":"193.51.193.128\/25", + "version":15154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.194.0", + "prefixLen":25, + "network":"193.51.194.0\/25", + "version":15153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.194.128", + "prefixLen":25, + "network":"193.51.194.128\/25", + "version":15152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.195.0", + "prefixLen":25, + "network":"193.51.195.0\/25", + "version":15151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.195.128", + "prefixLen":25, + "network":"193.51.195.128\/25", + "version":15150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.208.0", + "prefixLen":25, + "network":"193.51.208.0\/25", + "version":15149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.208.128", + "prefixLen":25, + "network":"193.51.208.128\/25", + "version":15148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.209.0", + "prefixLen":25, + "network":"193.51.209.0\/25", + "version":15147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.209.128", + "prefixLen":25, + "network":"193.51.209.128\/25", + "version":15146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.210.0", + "prefixLen":25, + "network":"193.51.210.0\/25", + "version":15145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.210.128", + "prefixLen":25, + "network":"193.51.210.128\/25", + "version":15144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.211.0", + "prefixLen":25, + "network":"193.51.211.0\/25", + "version":15143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.211.128", + "prefixLen":25, + "network":"193.51.211.128\/25", + "version":15142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.224.0", + "prefixLen":25, + "network":"193.51.224.0\/25", + "version":15141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.224.128", + "prefixLen":25, + "network":"193.51.224.128\/25", + "version":15140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.225.0", + "prefixLen":25, + "network":"193.51.225.0\/25", + "version":15139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.225.128", + "prefixLen":25, + "network":"193.51.225.128\/25", + "version":15138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.226.0", + "prefixLen":25, + "network":"193.51.226.0\/25", + "version":15137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.226.128", + "prefixLen":25, + "network":"193.51.226.128\/25", + "version":15136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.227.0", + "prefixLen":25, + "network":"193.51.227.0\/25", + "version":15135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.227.128", + "prefixLen":25, + "network":"193.51.227.128\/25", + "version":15134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.240.0", + "prefixLen":25, + "network":"193.51.240.0\/25", + "version":15133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.240.128", + "prefixLen":25, + "network":"193.51.240.128\/25", + "version":15132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.241.0", + "prefixLen":25, + "network":"193.51.241.0\/25", + "version":15131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.241.128", + "prefixLen":25, + "network":"193.51.241.128\/25", + "version":15130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.242.0", + "prefixLen":25, + "network":"193.51.242.0\/25", + "version":15129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.242.128", + "prefixLen":25, + "network":"193.51.242.128\/25", + "version":15128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.243.0", + "prefixLen":25, + "network":"193.51.243.0\/25", + "version":15127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.51.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.51.243.128", + "prefixLen":25, + "network":"193.51.243.128\/25", + "version":15126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64739 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.0.0", + "prefixLen":25, + "network":"193.52.0.0\/25", + "version":15253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.0.128", + "prefixLen":25, + "network":"193.52.0.128\/25", + "version":15380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.1.0", + "prefixLen":25, + "network":"193.52.1.0\/25", + "version":15379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.1.128", + "prefixLen":25, + "network":"193.52.1.128\/25", + "version":15378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.2.0", + "prefixLen":25, + "network":"193.52.2.0\/25", + "version":15377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.2.128", + "prefixLen":25, + "network":"193.52.2.128\/25", + "version":15376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.3.0", + "prefixLen":25, + "network":"193.52.3.0\/25", + "version":15375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.3.128", + "prefixLen":25, + "network":"193.52.3.128\/25", + "version":15374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.16.0", + "prefixLen":25, + "network":"193.52.16.0\/25", + "version":15373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.16.128", + "prefixLen":25, + "network":"193.52.16.128\/25", + "version":15372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.17.0", + "prefixLen":25, + "network":"193.52.17.0\/25", + "version":15371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.17.128", + "prefixLen":25, + "network":"193.52.17.128\/25", + "version":15370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.18.0", + "prefixLen":25, + "network":"193.52.18.0\/25", + "version":15369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.18.128", + "prefixLen":25, + "network":"193.52.18.128\/25", + "version":15368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.19.0", + "prefixLen":25, + "network":"193.52.19.0\/25", + "version":15367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.19.128", + "prefixLen":25, + "network":"193.52.19.128\/25", + "version":15366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.32.0", + "prefixLen":25, + "network":"193.52.32.0\/25", + "version":15365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.32.128", + "prefixLen":25, + "network":"193.52.32.128\/25", + "version":15364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.33.0", + "prefixLen":25, + "network":"193.52.33.0\/25", + "version":15363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.33.128", + "prefixLen":25, + "network":"193.52.33.128\/25", + "version":15362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.34.0", + "prefixLen":25, + "network":"193.52.34.0\/25", + "version":15361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.34.128", + "prefixLen":25, + "network":"193.52.34.128\/25", + "version":15360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.35.0", + "prefixLen":25, + "network":"193.52.35.0\/25", + "version":15359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.35.128", + "prefixLen":25, + "network":"193.52.35.128\/25", + "version":15358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.48.0", + "prefixLen":25, + "network":"193.52.48.0\/25", + "version":15357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.48.128", + "prefixLen":25, + "network":"193.52.48.128\/25", + "version":15356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.49.0", + "prefixLen":25, + "network":"193.52.49.0\/25", + "version":15355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.49.128", + "prefixLen":25, + "network":"193.52.49.128\/25", + "version":15354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.50.0", + "prefixLen":25, + "network":"193.52.50.0\/25", + "version":15353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.50.128", + "prefixLen":25, + "network":"193.52.50.128\/25", + "version":15352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.51.0", + "prefixLen":25, + "network":"193.52.51.0\/25", + "version":15351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.51.128", + "prefixLen":25, + "network":"193.52.51.128\/25", + "version":15350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.64.0", + "prefixLen":25, + "network":"193.52.64.0\/25", + "version":15349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.64.128", + "prefixLen":25, + "network":"193.52.64.128\/25", + "version":15348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.65.0", + "prefixLen":25, + "network":"193.52.65.0\/25", + "version":15347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.65.128", + "prefixLen":25, + "network":"193.52.65.128\/25", + "version":15346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.66.0", + "prefixLen":25, + "network":"193.52.66.0\/25", + "version":15345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.66.128", + "prefixLen":25, + "network":"193.52.66.128\/25", + "version":15344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.67.0", + "prefixLen":25, + "network":"193.52.67.0\/25", + "version":15343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.67.128", + "prefixLen":25, + "network":"193.52.67.128\/25", + "version":15342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.80.0", + "prefixLen":25, + "network":"193.52.80.0\/25", + "version":15341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.80.128", + "prefixLen":25, + "network":"193.52.80.128\/25", + "version":15340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.81.0", + "prefixLen":25, + "network":"193.52.81.0\/25", + "version":15339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.81.128", + "prefixLen":25, + "network":"193.52.81.128\/25", + "version":15338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.82.0", + "prefixLen":25, + "network":"193.52.82.0\/25", + "version":15337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.82.128", + "prefixLen":25, + "network":"193.52.82.128\/25", + "version":15336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.83.0", + "prefixLen":25, + "network":"193.52.83.0\/25", + "version":15335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.83.128", + "prefixLen":25, + "network":"193.52.83.128\/25", + "version":15334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.96.0", + "prefixLen":25, + "network":"193.52.96.0\/25", + "version":15333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.96.128", + "prefixLen":25, + "network":"193.52.96.128\/25", + "version":15332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.97.0", + "prefixLen":25, + "network":"193.52.97.0\/25", + "version":15331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.97.128", + "prefixLen":25, + "network":"193.52.97.128\/25", + "version":15330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.98.0", + "prefixLen":25, + "network":"193.52.98.0\/25", + "version":15329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.98.128", + "prefixLen":25, + "network":"193.52.98.128\/25", + "version":15328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.99.0", + "prefixLen":25, + "network":"193.52.99.0\/25", + "version":15327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.99.128", + "prefixLen":25, + "network":"193.52.99.128\/25", + "version":15326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.112.0", + "prefixLen":25, + "network":"193.52.112.0\/25", + "version":15325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.112.128", + "prefixLen":25, + "network":"193.52.112.128\/25", + "version":15324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.113.0", + "prefixLen":25, + "network":"193.52.113.0\/25", + "version":15323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.113.128", + "prefixLen":25, + "network":"193.52.113.128\/25", + "version":15322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.114.0", + "prefixLen":25, + "network":"193.52.114.0\/25", + "version":15321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.114.128", + "prefixLen":25, + "network":"193.52.114.128\/25", + "version":15320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.115.0", + "prefixLen":25, + "network":"193.52.115.0\/25", + "version":15319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.115.128", + "prefixLen":25, + "network":"193.52.115.128\/25", + "version":15318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.128.0", + "prefixLen":25, + "network":"193.52.128.0\/25", + "version":15317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.128.128", + "prefixLen":25, + "network":"193.52.128.128\/25", + "version":15316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.129.0", + "prefixLen":25, + "network":"193.52.129.0\/25", + "version":15315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.129.128", + "prefixLen":25, + "network":"193.52.129.128\/25", + "version":15314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.130.0", + "prefixLen":25, + "network":"193.52.130.0\/25", + "version":15313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.130.128", + "prefixLen":25, + "network":"193.52.130.128\/25", + "version":15312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.131.0", + "prefixLen":25, + "network":"193.52.131.0\/25", + "version":15311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.131.128", + "prefixLen":25, + "network":"193.52.131.128\/25", + "version":15310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.144.0", + "prefixLen":25, + "network":"193.52.144.0\/25", + "version":15309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.144.128", + "prefixLen":25, + "network":"193.52.144.128\/25", + "version":15308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.145.0", + "prefixLen":25, + "network":"193.52.145.0\/25", + "version":15307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.145.128", + "prefixLen":25, + "network":"193.52.145.128\/25", + "version":15306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.146.0", + "prefixLen":25, + "network":"193.52.146.0\/25", + "version":15305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.146.128", + "prefixLen":25, + "network":"193.52.146.128\/25", + "version":15304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.147.0", + "prefixLen":25, + "network":"193.52.147.0\/25", + "version":15303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.147.128", + "prefixLen":25, + "network":"193.52.147.128\/25", + "version":15302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.160.0", + "prefixLen":25, + "network":"193.52.160.0\/25", + "version":15301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.160.128", + "prefixLen":25, + "network":"193.52.160.128\/25", + "version":15300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.161.0", + "prefixLen":25, + "network":"193.52.161.0\/25", + "version":15299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.161.128", + "prefixLen":25, + "network":"193.52.161.128\/25", + "version":15298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.162.0", + "prefixLen":25, + "network":"193.52.162.0\/25", + "version":15297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.162.128", + "prefixLen":25, + "network":"193.52.162.128\/25", + "version":15296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.163.0", + "prefixLen":25, + "network":"193.52.163.0\/25", + "version":15295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.163.128", + "prefixLen":25, + "network":"193.52.163.128\/25", + "version":15294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.176.0", + "prefixLen":25, + "network":"193.52.176.0\/25", + "version":15293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.176.128", + "prefixLen":25, + "network":"193.52.176.128\/25", + "version":15292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.177.0", + "prefixLen":25, + "network":"193.52.177.0\/25", + "version":15291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.177.128", + "prefixLen":25, + "network":"193.52.177.128\/25", + "version":15290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.178.0", + "prefixLen":25, + "network":"193.52.178.0\/25", + "version":15289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.178.128", + "prefixLen":25, + "network":"193.52.178.128\/25", + "version":15288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.179.0", + "prefixLen":25, + "network":"193.52.179.0\/25", + "version":15287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.179.128", + "prefixLen":25, + "network":"193.52.179.128\/25", + "version":15286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.192.0", + "prefixLen":25, + "network":"193.52.192.0\/25", + "version":15285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.192.128", + "prefixLen":25, + "network":"193.52.192.128\/25", + "version":15284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.193.0", + "prefixLen":25, + "network":"193.52.193.0\/25", + "version":15283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.193.128", + "prefixLen":25, + "network":"193.52.193.128\/25", + "version":15282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.194.0", + "prefixLen":25, + "network":"193.52.194.0\/25", + "version":15281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.194.128", + "prefixLen":25, + "network":"193.52.194.128\/25", + "version":15280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.195.0", + "prefixLen":25, + "network":"193.52.195.0\/25", + "version":15279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.195.128", + "prefixLen":25, + "network":"193.52.195.128\/25", + "version":15278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.208.0", + "prefixLen":25, + "network":"193.52.208.0\/25", + "version":15277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.208.128", + "prefixLen":25, + "network":"193.52.208.128\/25", + "version":15276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.209.0", + "prefixLen":25, + "network":"193.52.209.0\/25", + "version":15275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.209.128", + "prefixLen":25, + "network":"193.52.209.128\/25", + "version":15274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.210.0", + "prefixLen":25, + "network":"193.52.210.0\/25", + "version":15273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.210.128", + "prefixLen":25, + "network":"193.52.210.128\/25", + "version":15272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.211.0", + "prefixLen":25, + "network":"193.52.211.0\/25", + "version":15271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.211.128", + "prefixLen":25, + "network":"193.52.211.128\/25", + "version":15270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.224.0", + "prefixLen":25, + "network":"193.52.224.0\/25", + "version":15269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.224.128", + "prefixLen":25, + "network":"193.52.224.128\/25", + "version":15268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.225.0", + "prefixLen":25, + "network":"193.52.225.0\/25", + "version":15267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.225.128", + "prefixLen":25, + "network":"193.52.225.128\/25", + "version":15266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.226.0", + "prefixLen":25, + "network":"193.52.226.0\/25", + "version":15265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.226.128", + "prefixLen":25, + "network":"193.52.226.128\/25", + "version":15264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.227.0", + "prefixLen":25, + "network":"193.52.227.0\/25", + "version":15263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.227.128", + "prefixLen":25, + "network":"193.52.227.128\/25", + "version":15262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.240.0", + "prefixLen":25, + "network":"193.52.240.0\/25", + "version":15261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.240.128", + "prefixLen":25, + "network":"193.52.240.128\/25", + "version":15260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.241.0", + "prefixLen":25, + "network":"193.52.241.0\/25", + "version":15259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.241.128", + "prefixLen":25, + "network":"193.52.241.128\/25", + "version":15258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.242.0", + "prefixLen":25, + "network":"193.52.242.0\/25", + "version":15257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.242.128", + "prefixLen":25, + "network":"193.52.242.128\/25", + "version":15256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.243.0", + "prefixLen":25, + "network":"193.52.243.0\/25", + "version":15255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.52.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.52.243.128", + "prefixLen":25, + "network":"193.52.243.128\/25", + "version":15254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64740 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.0.0", + "prefixLen":25, + "network":"193.53.0.0\/25", + "version":15381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.0.128", + "prefixLen":25, + "network":"193.53.0.128\/25", + "version":15508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.1.0", + "prefixLen":25, + "network":"193.53.1.0\/25", + "version":15507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.1.128", + "prefixLen":25, + "network":"193.53.1.128\/25", + "version":15506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.2.0", + "prefixLen":25, + "network":"193.53.2.0\/25", + "version":15505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.2.128", + "prefixLen":25, + "network":"193.53.2.128\/25", + "version":15504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.3.0", + "prefixLen":25, + "network":"193.53.3.0\/25", + "version":15503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.3.128", + "prefixLen":25, + "network":"193.53.3.128\/25", + "version":15502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.16.0", + "prefixLen":25, + "network":"193.53.16.0\/25", + "version":15501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.16.128", + "prefixLen":25, + "network":"193.53.16.128\/25", + "version":15500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.17.0", + "prefixLen":25, + "network":"193.53.17.0\/25", + "version":15499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.17.128", + "prefixLen":25, + "network":"193.53.17.128\/25", + "version":15498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.18.0", + "prefixLen":25, + "network":"193.53.18.0\/25", + "version":15497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.18.128", + "prefixLen":25, + "network":"193.53.18.128\/25", + "version":15496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.19.0", + "prefixLen":25, + "network":"193.53.19.0\/25", + "version":15495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.19.128", + "prefixLen":25, + "network":"193.53.19.128\/25", + "version":15494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.32.0", + "prefixLen":25, + "network":"193.53.32.0\/25", + "version":15493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.32.128", + "prefixLen":25, + "network":"193.53.32.128\/25", + "version":15492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.33.0", + "prefixLen":25, + "network":"193.53.33.0\/25", + "version":15491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.33.128", + "prefixLen":25, + "network":"193.53.33.128\/25", + "version":15490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.34.0", + "prefixLen":25, + "network":"193.53.34.0\/25", + "version":15489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.34.128", + "prefixLen":25, + "network":"193.53.34.128\/25", + "version":15488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.35.0", + "prefixLen":25, + "network":"193.53.35.0\/25", + "version":15487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.35.128", + "prefixLen":25, + "network":"193.53.35.128\/25", + "version":15486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.48.0", + "prefixLen":25, + "network":"193.53.48.0\/25", + "version":15485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.48.128", + "prefixLen":25, + "network":"193.53.48.128\/25", + "version":15484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.49.0", + "prefixLen":25, + "network":"193.53.49.0\/25", + "version":15483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.49.128", + "prefixLen":25, + "network":"193.53.49.128\/25", + "version":15482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.50.0", + "prefixLen":25, + "network":"193.53.50.0\/25", + "version":15481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.50.128", + "prefixLen":25, + "network":"193.53.50.128\/25", + "version":15480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.51.0", + "prefixLen":25, + "network":"193.53.51.0\/25", + "version":15479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.51.128", + "prefixLen":25, + "network":"193.53.51.128\/25", + "version":15478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.64.0", + "prefixLen":25, + "network":"193.53.64.0\/25", + "version":15477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.64.128", + "prefixLen":25, + "network":"193.53.64.128\/25", + "version":15476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.65.0", + "prefixLen":25, + "network":"193.53.65.0\/25", + "version":15475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.65.128", + "prefixLen":25, + "network":"193.53.65.128\/25", + "version":15474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.66.0", + "prefixLen":25, + "network":"193.53.66.0\/25", + "version":15473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.66.128", + "prefixLen":25, + "network":"193.53.66.128\/25", + "version":15472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.67.0", + "prefixLen":25, + "network":"193.53.67.0\/25", + "version":15471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.67.128", + "prefixLen":25, + "network":"193.53.67.128\/25", + "version":15470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.80.0", + "prefixLen":25, + "network":"193.53.80.0\/25", + "version":15469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.80.128", + "prefixLen":25, + "network":"193.53.80.128\/25", + "version":15468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.81.0", + "prefixLen":25, + "network":"193.53.81.0\/25", + "version":15467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.81.128", + "prefixLen":25, + "network":"193.53.81.128\/25", + "version":15466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.82.0", + "prefixLen":25, + "network":"193.53.82.0\/25", + "version":15465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.82.128", + "prefixLen":25, + "network":"193.53.82.128\/25", + "version":15464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.83.0", + "prefixLen":25, + "network":"193.53.83.0\/25", + "version":15463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.83.128", + "prefixLen":25, + "network":"193.53.83.128\/25", + "version":15462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.96.0", + "prefixLen":25, + "network":"193.53.96.0\/25", + "version":15461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.96.128", + "prefixLen":25, + "network":"193.53.96.128\/25", + "version":15460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.97.0", + "prefixLen":25, + "network":"193.53.97.0\/25", + "version":15459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.97.128", + "prefixLen":25, + "network":"193.53.97.128\/25", + "version":15458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.98.0", + "prefixLen":25, + "network":"193.53.98.0\/25", + "version":15457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.98.128", + "prefixLen":25, + "network":"193.53.98.128\/25", + "version":15456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.99.0", + "prefixLen":25, + "network":"193.53.99.0\/25", + "version":15455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.99.128", + "prefixLen":25, + "network":"193.53.99.128\/25", + "version":15454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.112.0", + "prefixLen":25, + "network":"193.53.112.0\/25", + "version":15453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.112.128", + "prefixLen":25, + "network":"193.53.112.128\/25", + "version":15452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.113.0", + "prefixLen":25, + "network":"193.53.113.0\/25", + "version":15451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.113.128", + "prefixLen":25, + "network":"193.53.113.128\/25", + "version":15450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.114.0", + "prefixLen":25, + "network":"193.53.114.0\/25", + "version":15449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.114.128", + "prefixLen":25, + "network":"193.53.114.128\/25", + "version":15448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.115.0", + "prefixLen":25, + "network":"193.53.115.0\/25", + "version":15447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.115.128", + "prefixLen":25, + "network":"193.53.115.128\/25", + "version":15446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.128.0", + "prefixLen":25, + "network":"193.53.128.0\/25", + "version":15445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.128.128", + "prefixLen":25, + "network":"193.53.128.128\/25", + "version":15444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.129.0", + "prefixLen":25, + "network":"193.53.129.0\/25", + "version":15443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.129.128", + "prefixLen":25, + "network":"193.53.129.128\/25", + "version":15442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.130.0", + "prefixLen":25, + "network":"193.53.130.0\/25", + "version":15441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.130.128", + "prefixLen":25, + "network":"193.53.130.128\/25", + "version":15440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.131.0", + "prefixLen":25, + "network":"193.53.131.0\/25", + "version":15439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.131.128", + "prefixLen":25, + "network":"193.53.131.128\/25", + "version":15438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.144.0", + "prefixLen":25, + "network":"193.53.144.0\/25", + "version":15437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.144.128", + "prefixLen":25, + "network":"193.53.144.128\/25", + "version":15436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.145.0", + "prefixLen":25, + "network":"193.53.145.0\/25", + "version":15435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.145.128", + "prefixLen":25, + "network":"193.53.145.128\/25", + "version":15434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.146.0", + "prefixLen":25, + "network":"193.53.146.0\/25", + "version":15433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.146.128", + "prefixLen":25, + "network":"193.53.146.128\/25", + "version":15432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.147.0", + "prefixLen":25, + "network":"193.53.147.0\/25", + "version":15431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.147.128", + "prefixLen":25, + "network":"193.53.147.128\/25", + "version":15430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.160.0", + "prefixLen":25, + "network":"193.53.160.0\/25", + "version":15429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.160.128", + "prefixLen":25, + "network":"193.53.160.128\/25", + "version":15428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.161.0", + "prefixLen":25, + "network":"193.53.161.0\/25", + "version":15427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.161.128", + "prefixLen":25, + "network":"193.53.161.128\/25", + "version":15426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.162.0", + "prefixLen":25, + "network":"193.53.162.0\/25", + "version":15425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.162.128", + "prefixLen":25, + "network":"193.53.162.128\/25", + "version":15424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.163.0", + "prefixLen":25, + "network":"193.53.163.0\/25", + "version":15423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.163.128", + "prefixLen":25, + "network":"193.53.163.128\/25", + "version":15422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.176.0", + "prefixLen":25, + "network":"193.53.176.0\/25", + "version":15421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.176.128", + "prefixLen":25, + "network":"193.53.176.128\/25", + "version":15420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.177.0", + "prefixLen":25, + "network":"193.53.177.0\/25", + "version":15419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.177.128", + "prefixLen":25, + "network":"193.53.177.128\/25", + "version":15418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.178.0", + "prefixLen":25, + "network":"193.53.178.0\/25", + "version":15417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.178.128", + "prefixLen":25, + "network":"193.53.178.128\/25", + "version":15416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.179.0", + "prefixLen":25, + "network":"193.53.179.0\/25", + "version":15415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.179.128", + "prefixLen":25, + "network":"193.53.179.128\/25", + "version":15414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.192.0", + "prefixLen":25, + "network":"193.53.192.0\/25", + "version":15413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.192.128", + "prefixLen":25, + "network":"193.53.192.128\/25", + "version":15412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.193.0", + "prefixLen":25, + "network":"193.53.193.0\/25", + "version":15411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.193.128", + "prefixLen":25, + "network":"193.53.193.128\/25", + "version":15410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.194.0", + "prefixLen":25, + "network":"193.53.194.0\/25", + "version":15409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.194.128", + "prefixLen":25, + "network":"193.53.194.128\/25", + "version":15408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.195.0", + "prefixLen":25, + "network":"193.53.195.0\/25", + "version":15407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.195.128", + "prefixLen":25, + "network":"193.53.195.128\/25", + "version":15406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.208.0", + "prefixLen":25, + "network":"193.53.208.0\/25", + "version":15405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.208.128", + "prefixLen":25, + "network":"193.53.208.128\/25", + "version":15404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.209.0", + "prefixLen":25, + "network":"193.53.209.0\/25", + "version":15403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.209.128", + "prefixLen":25, + "network":"193.53.209.128\/25", + "version":15402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.210.0", + "prefixLen":25, + "network":"193.53.210.0\/25", + "version":15401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.210.128", + "prefixLen":25, + "network":"193.53.210.128\/25", + "version":15400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.211.0", + "prefixLen":25, + "network":"193.53.211.0\/25", + "version":15399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.211.128", + "prefixLen":25, + "network":"193.53.211.128\/25", + "version":15398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.224.0", + "prefixLen":25, + "network":"193.53.224.0\/25", + "version":15397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.224.128", + "prefixLen":25, + "network":"193.53.224.128\/25", + "version":15396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.225.0", + "prefixLen":25, + "network":"193.53.225.0\/25", + "version":15395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.225.128", + "prefixLen":25, + "network":"193.53.225.128\/25", + "version":15394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.226.0", + "prefixLen":25, + "network":"193.53.226.0\/25", + "version":15393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.226.128", + "prefixLen":25, + "network":"193.53.226.128\/25", + "version":15392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.227.0", + "prefixLen":25, + "network":"193.53.227.0\/25", + "version":15391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.227.128", + "prefixLen":25, + "network":"193.53.227.128\/25", + "version":15390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.240.0", + "prefixLen":25, + "network":"193.53.240.0\/25", + "version":15389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.240.128", + "prefixLen":25, + "network":"193.53.240.128\/25", + "version":15388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.241.0", + "prefixLen":25, + "network":"193.53.241.0\/25", + "version":15387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.241.128", + "prefixLen":25, + "network":"193.53.241.128\/25", + "version":15386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.242.0", + "prefixLen":25, + "network":"193.53.242.0\/25", + "version":15385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.242.128", + "prefixLen":25, + "network":"193.53.242.128\/25", + "version":15384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.243.0", + "prefixLen":25, + "network":"193.53.243.0\/25", + "version":15383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.53.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.53.243.128", + "prefixLen":25, + "network":"193.53.243.128\/25", + "version":15382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64741 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.0.0", + "prefixLen":25, + "network":"193.54.0.0\/25", + "version":15509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.0.128", + "prefixLen":25, + "network":"193.54.0.128\/25", + "version":15636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.1.0", + "prefixLen":25, + "network":"193.54.1.0\/25", + "version":15635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.1.128", + "prefixLen":25, + "network":"193.54.1.128\/25", + "version":15634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.2.0", + "prefixLen":25, + "network":"193.54.2.0\/25", + "version":15633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.2.128", + "prefixLen":25, + "network":"193.54.2.128\/25", + "version":15632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.3.0", + "prefixLen":25, + "network":"193.54.3.0\/25", + "version":15631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.3.128", + "prefixLen":25, + "network":"193.54.3.128\/25", + "version":15630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.16.0", + "prefixLen":25, + "network":"193.54.16.0\/25", + "version":15629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.16.128", + "prefixLen":25, + "network":"193.54.16.128\/25", + "version":15628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.17.0", + "prefixLen":25, + "network":"193.54.17.0\/25", + "version":15627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.17.128", + "prefixLen":25, + "network":"193.54.17.128\/25", + "version":15626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.18.0", + "prefixLen":25, + "network":"193.54.18.0\/25", + "version":15625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.18.128", + "prefixLen":25, + "network":"193.54.18.128\/25", + "version":15624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.19.0", + "prefixLen":25, + "network":"193.54.19.0\/25", + "version":15623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.19.128", + "prefixLen":25, + "network":"193.54.19.128\/25", + "version":15622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.32.0", + "prefixLen":25, + "network":"193.54.32.0\/25", + "version":15621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.32.128", + "prefixLen":25, + "network":"193.54.32.128\/25", + "version":15620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.33.0", + "prefixLen":25, + "network":"193.54.33.0\/25", + "version":15619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.33.128", + "prefixLen":25, + "network":"193.54.33.128\/25", + "version":15618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.34.0", + "prefixLen":25, + "network":"193.54.34.0\/25", + "version":15617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.34.128", + "prefixLen":25, + "network":"193.54.34.128\/25", + "version":15616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.35.0", + "prefixLen":25, + "network":"193.54.35.0\/25", + "version":15615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.35.128", + "prefixLen":25, + "network":"193.54.35.128\/25", + "version":15614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.48.0", + "prefixLen":25, + "network":"193.54.48.0\/25", + "version":15613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.48.128", + "prefixLen":25, + "network":"193.54.48.128\/25", + "version":15612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.49.0", + "prefixLen":25, + "network":"193.54.49.0\/25", + "version":15611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.49.128", + "prefixLen":25, + "network":"193.54.49.128\/25", + "version":15610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.50.0", + "prefixLen":25, + "network":"193.54.50.0\/25", + "version":15609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.50.128", + "prefixLen":25, + "network":"193.54.50.128\/25", + "version":15608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.51.0", + "prefixLen":25, + "network":"193.54.51.0\/25", + "version":15607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.51.128", + "prefixLen":25, + "network":"193.54.51.128\/25", + "version":15606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.64.0", + "prefixLen":25, + "network":"193.54.64.0\/25", + "version":15605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.64.128", + "prefixLen":25, + "network":"193.54.64.128\/25", + "version":15604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.65.0", + "prefixLen":25, + "network":"193.54.65.0\/25", + "version":15603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.65.128", + "prefixLen":25, + "network":"193.54.65.128\/25", + "version":15602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.66.0", + "prefixLen":25, + "network":"193.54.66.0\/25", + "version":15601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.66.128", + "prefixLen":25, + "network":"193.54.66.128\/25", + "version":15600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.67.0", + "prefixLen":25, + "network":"193.54.67.0\/25", + "version":15599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.67.128", + "prefixLen":25, + "network":"193.54.67.128\/25", + "version":15598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.80.0", + "prefixLen":25, + "network":"193.54.80.0\/25", + "version":15597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.80.128", + "prefixLen":25, + "network":"193.54.80.128\/25", + "version":15596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.81.0", + "prefixLen":25, + "network":"193.54.81.0\/25", + "version":15595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.81.128", + "prefixLen":25, + "network":"193.54.81.128\/25", + "version":15594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.82.0", + "prefixLen":25, + "network":"193.54.82.0\/25", + "version":15593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.82.128", + "prefixLen":25, + "network":"193.54.82.128\/25", + "version":15592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.83.0", + "prefixLen":25, + "network":"193.54.83.0\/25", + "version":15591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.83.128", + "prefixLen":25, + "network":"193.54.83.128\/25", + "version":15590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.96.0", + "prefixLen":25, + "network":"193.54.96.0\/25", + "version":15589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.96.128", + "prefixLen":25, + "network":"193.54.96.128\/25", + "version":15588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.97.0", + "prefixLen":25, + "network":"193.54.97.0\/25", + "version":15587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.97.128", + "prefixLen":25, + "network":"193.54.97.128\/25", + "version":15586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.98.0", + "prefixLen":25, + "network":"193.54.98.0\/25", + "version":15585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.98.128", + "prefixLen":25, + "network":"193.54.98.128\/25", + "version":15584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.99.0", + "prefixLen":25, + "network":"193.54.99.0\/25", + "version":15583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.99.128", + "prefixLen":25, + "network":"193.54.99.128\/25", + "version":15582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.112.0", + "prefixLen":25, + "network":"193.54.112.0\/25", + "version":15581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.112.128", + "prefixLen":25, + "network":"193.54.112.128\/25", + "version":15580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.113.0", + "prefixLen":25, + "network":"193.54.113.0\/25", + "version":15579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.113.128", + "prefixLen":25, + "network":"193.54.113.128\/25", + "version":15578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.114.0", + "prefixLen":25, + "network":"193.54.114.0\/25", + "version":15577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.114.128", + "prefixLen":25, + "network":"193.54.114.128\/25", + "version":15576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.115.0", + "prefixLen":25, + "network":"193.54.115.0\/25", + "version":15575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.115.128", + "prefixLen":25, + "network":"193.54.115.128\/25", + "version":15574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.128.0", + "prefixLen":25, + "network":"193.54.128.0\/25", + "version":15573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.128.128", + "prefixLen":25, + "network":"193.54.128.128\/25", + "version":15572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.129.0", + "prefixLen":25, + "network":"193.54.129.0\/25", + "version":15571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.129.128", + "prefixLen":25, + "network":"193.54.129.128\/25", + "version":15570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.130.0", + "prefixLen":25, + "network":"193.54.130.0\/25", + "version":15569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.130.128", + "prefixLen":25, + "network":"193.54.130.128\/25", + "version":15568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.131.0", + "prefixLen":25, + "network":"193.54.131.0\/25", + "version":15567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.131.128", + "prefixLen":25, + "network":"193.54.131.128\/25", + "version":15566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.144.0", + "prefixLen":25, + "network":"193.54.144.0\/25", + "version":15565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.144.128", + "prefixLen":25, + "network":"193.54.144.128\/25", + "version":15564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.145.0", + "prefixLen":25, + "network":"193.54.145.0\/25", + "version":15563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.145.128", + "prefixLen":25, + "network":"193.54.145.128\/25", + "version":15562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.146.0", + "prefixLen":25, + "network":"193.54.146.0\/25", + "version":15561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.146.128", + "prefixLen":25, + "network":"193.54.146.128\/25", + "version":15560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.147.0", + "prefixLen":25, + "network":"193.54.147.0\/25", + "version":15559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.147.128", + "prefixLen":25, + "network":"193.54.147.128\/25", + "version":15558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.160.0", + "prefixLen":25, + "network":"193.54.160.0\/25", + "version":15557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.160.128", + "prefixLen":25, + "network":"193.54.160.128\/25", + "version":15556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.161.0", + "prefixLen":25, + "network":"193.54.161.0\/25", + "version":15555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.161.128", + "prefixLen":25, + "network":"193.54.161.128\/25", + "version":15554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.162.0", + "prefixLen":25, + "network":"193.54.162.0\/25", + "version":15553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.162.128", + "prefixLen":25, + "network":"193.54.162.128\/25", + "version":15552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.163.0", + "prefixLen":25, + "network":"193.54.163.0\/25", + "version":15551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.163.128", + "prefixLen":25, + "network":"193.54.163.128\/25", + "version":15550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.176.0", + "prefixLen":25, + "network":"193.54.176.0\/25", + "version":15549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.176.128", + "prefixLen":25, + "network":"193.54.176.128\/25", + "version":15548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.177.0", + "prefixLen":25, + "network":"193.54.177.0\/25", + "version":15547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.177.128", + "prefixLen":25, + "network":"193.54.177.128\/25", + "version":15546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.178.0", + "prefixLen":25, + "network":"193.54.178.0\/25", + "version":15545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.178.128", + "prefixLen":25, + "network":"193.54.178.128\/25", + "version":15544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.179.0", + "prefixLen":25, + "network":"193.54.179.0\/25", + "version":15543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.179.128", + "prefixLen":25, + "network":"193.54.179.128\/25", + "version":15542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.192.0", + "prefixLen":25, + "network":"193.54.192.0\/25", + "version":15541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.192.128", + "prefixLen":25, + "network":"193.54.192.128\/25", + "version":15540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.193.0", + "prefixLen":25, + "network":"193.54.193.0\/25", + "version":15539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.193.128", + "prefixLen":25, + "network":"193.54.193.128\/25", + "version":15538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.194.0", + "prefixLen":25, + "network":"193.54.194.0\/25", + "version":15537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.194.128", + "prefixLen":25, + "network":"193.54.194.128\/25", + "version":15536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.195.0", + "prefixLen":25, + "network":"193.54.195.0\/25", + "version":15535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.195.128", + "prefixLen":25, + "network":"193.54.195.128\/25", + "version":15534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.208.0", + "prefixLen":25, + "network":"193.54.208.0\/25", + "version":15533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.208.128", + "prefixLen":25, + "network":"193.54.208.128\/25", + "version":15532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.209.0", + "prefixLen":25, + "network":"193.54.209.0\/25", + "version":15531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.209.128", + "prefixLen":25, + "network":"193.54.209.128\/25", + "version":15530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.210.0", + "prefixLen":25, + "network":"193.54.210.0\/25", + "version":15529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.210.128", + "prefixLen":25, + "network":"193.54.210.128\/25", + "version":15528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.211.0", + "prefixLen":25, + "network":"193.54.211.0\/25", + "version":15527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.211.128", + "prefixLen":25, + "network":"193.54.211.128\/25", + "version":15526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.224.0", + "prefixLen":25, + "network":"193.54.224.0\/25", + "version":15525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.224.128", + "prefixLen":25, + "network":"193.54.224.128\/25", + "version":15524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.225.0", + "prefixLen":25, + "network":"193.54.225.0\/25", + "version":15523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.225.128", + "prefixLen":25, + "network":"193.54.225.128\/25", + "version":15522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.226.0", + "prefixLen":25, + "network":"193.54.226.0\/25", + "version":15521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.226.128", + "prefixLen":25, + "network":"193.54.226.128\/25", + "version":15520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.227.0", + "prefixLen":25, + "network":"193.54.227.0\/25", + "version":15519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.227.128", + "prefixLen":25, + "network":"193.54.227.128\/25", + "version":15518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.240.0", + "prefixLen":25, + "network":"193.54.240.0\/25", + "version":15517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.240.128", + "prefixLen":25, + "network":"193.54.240.128\/25", + "version":15516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.241.0", + "prefixLen":25, + "network":"193.54.241.0\/25", + "version":15515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.241.128", + "prefixLen":25, + "network":"193.54.241.128\/25", + "version":15514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.242.0", + "prefixLen":25, + "network":"193.54.242.0\/25", + "version":15513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.242.128", + "prefixLen":25, + "network":"193.54.242.128\/25", + "version":15512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.243.0", + "prefixLen":25, + "network":"193.54.243.0\/25", + "version":15511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.54.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.54.243.128", + "prefixLen":25, + "network":"193.54.243.128\/25", + "version":15510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64742 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.0.0", + "prefixLen":25, + "network":"193.55.0.0\/25", + "version":15637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.0.128", + "prefixLen":25, + "network":"193.55.0.128\/25", + "version":15764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.1.0", + "prefixLen":25, + "network":"193.55.1.0\/25", + "version":15763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.1.128", + "prefixLen":25, + "network":"193.55.1.128\/25", + "version":15762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.2.0", + "prefixLen":25, + "network":"193.55.2.0\/25", + "version":15761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.2.128", + "prefixLen":25, + "network":"193.55.2.128\/25", + "version":15760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.3.0", + "prefixLen":25, + "network":"193.55.3.0\/25", + "version":15759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.3.128", + "prefixLen":25, + "network":"193.55.3.128\/25", + "version":15758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.16.0", + "prefixLen":25, + "network":"193.55.16.0\/25", + "version":15757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.16.128", + "prefixLen":25, + "network":"193.55.16.128\/25", + "version":15756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.17.0", + "prefixLen":25, + "network":"193.55.17.0\/25", + "version":15755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.17.128", + "prefixLen":25, + "network":"193.55.17.128\/25", + "version":15754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.18.0", + "prefixLen":25, + "network":"193.55.18.0\/25", + "version":15753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.18.128", + "prefixLen":25, + "network":"193.55.18.128\/25", + "version":15752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.19.0", + "prefixLen":25, + "network":"193.55.19.0\/25", + "version":15751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.19.128", + "prefixLen":25, + "network":"193.55.19.128\/25", + "version":15750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.32.0", + "prefixLen":25, + "network":"193.55.32.0\/25", + "version":15749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.32.128", + "prefixLen":25, + "network":"193.55.32.128\/25", + "version":15748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.33.0", + "prefixLen":25, + "network":"193.55.33.0\/25", + "version":15747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.33.128", + "prefixLen":25, + "network":"193.55.33.128\/25", + "version":15746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.34.0", + "prefixLen":25, + "network":"193.55.34.0\/25", + "version":15745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.34.128", + "prefixLen":25, + "network":"193.55.34.128\/25", + "version":15744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.35.0", + "prefixLen":25, + "network":"193.55.35.0\/25", + "version":15743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.35.128", + "prefixLen":25, + "network":"193.55.35.128\/25", + "version":15742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.48.0", + "prefixLen":25, + "network":"193.55.48.0\/25", + "version":15741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.48.128", + "prefixLen":25, + "network":"193.55.48.128\/25", + "version":15740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.49.0", + "prefixLen":25, + "network":"193.55.49.0\/25", + "version":15739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.49.128", + "prefixLen":25, + "network":"193.55.49.128\/25", + "version":15738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.50.0", + "prefixLen":25, + "network":"193.55.50.0\/25", + "version":15737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.50.128", + "prefixLen":25, + "network":"193.55.50.128\/25", + "version":15736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.51.0", + "prefixLen":25, + "network":"193.55.51.0\/25", + "version":15735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.51.128", + "prefixLen":25, + "network":"193.55.51.128\/25", + "version":15734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.64.0", + "prefixLen":25, + "network":"193.55.64.0\/25", + "version":15733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.64.128", + "prefixLen":25, + "network":"193.55.64.128\/25", + "version":15732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.65.0", + "prefixLen":25, + "network":"193.55.65.0\/25", + "version":15731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.65.128", + "prefixLen":25, + "network":"193.55.65.128\/25", + "version":15730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.66.0", + "prefixLen":25, + "network":"193.55.66.0\/25", + "version":15729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.66.128", + "prefixLen":25, + "network":"193.55.66.128\/25", + "version":15728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.67.0", + "prefixLen":25, + "network":"193.55.67.0\/25", + "version":15727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.67.128", + "prefixLen":25, + "network":"193.55.67.128\/25", + "version":15726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.80.0", + "prefixLen":25, + "network":"193.55.80.0\/25", + "version":15725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.80.128", + "prefixLen":25, + "network":"193.55.80.128\/25", + "version":15724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.81.0", + "prefixLen":25, + "network":"193.55.81.0\/25", + "version":15723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.81.128", + "prefixLen":25, + "network":"193.55.81.128\/25", + "version":15722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.82.0", + "prefixLen":25, + "network":"193.55.82.0\/25", + "version":15721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.82.128", + "prefixLen":25, + "network":"193.55.82.128\/25", + "version":15720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.83.0", + "prefixLen":25, + "network":"193.55.83.0\/25", + "version":15719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.83.128", + "prefixLen":25, + "network":"193.55.83.128\/25", + "version":15718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.96.0", + "prefixLen":25, + "network":"193.55.96.0\/25", + "version":15717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.96.128", + "prefixLen":25, + "network":"193.55.96.128\/25", + "version":15716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.97.0", + "prefixLen":25, + "network":"193.55.97.0\/25", + "version":15715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.97.128", + "prefixLen":25, + "network":"193.55.97.128\/25", + "version":15714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.98.0", + "prefixLen":25, + "network":"193.55.98.0\/25", + "version":15713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.98.128", + "prefixLen":25, + "network":"193.55.98.128\/25", + "version":15712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.99.0", + "prefixLen":25, + "network":"193.55.99.0\/25", + "version":15711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.99.128", + "prefixLen":25, + "network":"193.55.99.128\/25", + "version":15710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.112.0", + "prefixLen":25, + "network":"193.55.112.0\/25", + "version":15709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.112.128", + "prefixLen":25, + "network":"193.55.112.128\/25", + "version":15708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.113.0", + "prefixLen":25, + "network":"193.55.113.0\/25", + "version":15707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.113.128", + "prefixLen":25, + "network":"193.55.113.128\/25", + "version":15706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.114.0", + "prefixLen":25, + "network":"193.55.114.0\/25", + "version":15705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.114.128", + "prefixLen":25, + "network":"193.55.114.128\/25", + "version":15704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.115.0", + "prefixLen":25, + "network":"193.55.115.0\/25", + "version":15703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.115.128", + "prefixLen":25, + "network":"193.55.115.128\/25", + "version":15702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.128.0", + "prefixLen":25, + "network":"193.55.128.0\/25", + "version":15701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.128.128", + "prefixLen":25, + "network":"193.55.128.128\/25", + "version":15700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.129.0", + "prefixLen":25, + "network":"193.55.129.0\/25", + "version":15699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.129.128", + "prefixLen":25, + "network":"193.55.129.128\/25", + "version":15698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.130.0", + "prefixLen":25, + "network":"193.55.130.0\/25", + "version":15697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.130.128", + "prefixLen":25, + "network":"193.55.130.128\/25", + "version":15696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.131.0", + "prefixLen":25, + "network":"193.55.131.0\/25", + "version":15695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.131.128", + "prefixLen":25, + "network":"193.55.131.128\/25", + "version":15694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.144.0", + "prefixLen":25, + "network":"193.55.144.0\/25", + "version":15693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.144.128", + "prefixLen":25, + "network":"193.55.144.128\/25", + "version":15692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.145.0", + "prefixLen":25, + "network":"193.55.145.0\/25", + "version":15691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.145.128", + "prefixLen":25, + "network":"193.55.145.128\/25", + "version":15690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.146.0", + "prefixLen":25, + "network":"193.55.146.0\/25", + "version":15689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.146.128", + "prefixLen":25, + "network":"193.55.146.128\/25", + "version":15688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.147.0", + "prefixLen":25, + "network":"193.55.147.0\/25", + "version":15687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.147.128", + "prefixLen":25, + "network":"193.55.147.128\/25", + "version":15686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.160.0", + "prefixLen":25, + "network":"193.55.160.0\/25", + "version":15685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.160.128", + "prefixLen":25, + "network":"193.55.160.128\/25", + "version":15684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.161.0", + "prefixLen":25, + "network":"193.55.161.0\/25", + "version":15683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.161.128", + "prefixLen":25, + "network":"193.55.161.128\/25", + "version":15682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.162.0", + "prefixLen":25, + "network":"193.55.162.0\/25", + "version":15681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.162.128", + "prefixLen":25, + "network":"193.55.162.128\/25", + "version":15680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.163.0", + "prefixLen":25, + "network":"193.55.163.0\/25", + "version":15679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.163.128", + "prefixLen":25, + "network":"193.55.163.128\/25", + "version":15678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.176.0", + "prefixLen":25, + "network":"193.55.176.0\/25", + "version":15677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.176.128", + "prefixLen":25, + "network":"193.55.176.128\/25", + "version":15676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.177.0", + "prefixLen":25, + "network":"193.55.177.0\/25", + "version":15675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.177.128", + "prefixLen":25, + "network":"193.55.177.128\/25", + "version":15674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.178.0", + "prefixLen":25, + "network":"193.55.178.0\/25", + "version":15673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.178.128", + "prefixLen":25, + "network":"193.55.178.128\/25", + "version":15672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.179.0", + "prefixLen":25, + "network":"193.55.179.0\/25", + "version":15671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.179.128", + "prefixLen":25, + "network":"193.55.179.128\/25", + "version":15670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.192.0", + "prefixLen":25, + "network":"193.55.192.0\/25", + "version":15669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.192.128", + "prefixLen":25, + "network":"193.55.192.128\/25", + "version":15668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.193.0", + "prefixLen":25, + "network":"193.55.193.0\/25", + "version":15667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.193.128", + "prefixLen":25, + "network":"193.55.193.128\/25", + "version":15666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.194.0", + "prefixLen":25, + "network":"193.55.194.0\/25", + "version":15665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.194.128", + "prefixLen":25, + "network":"193.55.194.128\/25", + "version":15664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.195.0", + "prefixLen":25, + "network":"193.55.195.0\/25", + "version":15663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.195.128", + "prefixLen":25, + "network":"193.55.195.128\/25", + "version":15662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.208.0", + "prefixLen":25, + "network":"193.55.208.0\/25", + "version":15661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.208.128", + "prefixLen":25, + "network":"193.55.208.128\/25", + "version":15660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.209.0", + "prefixLen":25, + "network":"193.55.209.0\/25", + "version":15659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.209.128", + "prefixLen":25, + "network":"193.55.209.128\/25", + "version":15658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.210.0", + "prefixLen":25, + "network":"193.55.210.0\/25", + "version":15657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.210.128", + "prefixLen":25, + "network":"193.55.210.128\/25", + "version":15656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.211.0", + "prefixLen":25, + "network":"193.55.211.0\/25", + "version":15655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.211.128", + "prefixLen":25, + "network":"193.55.211.128\/25", + "version":15654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.224.0", + "prefixLen":25, + "network":"193.55.224.0\/25", + "version":15653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.224.128", + "prefixLen":25, + "network":"193.55.224.128\/25", + "version":15652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.225.0", + "prefixLen":25, + "network":"193.55.225.0\/25", + "version":15651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.225.128", + "prefixLen":25, + "network":"193.55.225.128\/25", + "version":15650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.226.0", + "prefixLen":25, + "network":"193.55.226.0\/25", + "version":15649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.226.128", + "prefixLen":25, + "network":"193.55.226.128\/25", + "version":15648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.227.0", + "prefixLen":25, + "network":"193.55.227.0\/25", + "version":15647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.227.128", + "prefixLen":25, + "network":"193.55.227.128\/25", + "version":15646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.240.0", + "prefixLen":25, + "network":"193.55.240.0\/25", + "version":15645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.240.128", + "prefixLen":25, + "network":"193.55.240.128\/25", + "version":15644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.241.0", + "prefixLen":25, + "network":"193.55.241.0\/25", + "version":15643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.241.128", + "prefixLen":25, + "network":"193.55.241.128\/25", + "version":15642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.242.0", + "prefixLen":25, + "network":"193.55.242.0\/25", + "version":15641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.242.128", + "prefixLen":25, + "network":"193.55.242.128\/25", + "version":15640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.243.0", + "prefixLen":25, + "network":"193.55.243.0\/25", + "version":15639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.55.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.55.243.128", + "prefixLen":25, + "network":"193.55.243.128\/25", + "version":15638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64743 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.0.0", + "prefixLen":25, + "network":"193.56.0.0\/25", + "version":15765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.0.128", + "prefixLen":25, + "network":"193.56.0.128\/25", + "version":15892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.1.0", + "prefixLen":25, + "network":"193.56.1.0\/25", + "version":15891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.1.128", + "prefixLen":25, + "network":"193.56.1.128\/25", + "version":15890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.2.0", + "prefixLen":25, + "network":"193.56.2.0\/25", + "version":15889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.2.128", + "prefixLen":25, + "network":"193.56.2.128\/25", + "version":15888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.3.0", + "prefixLen":25, + "network":"193.56.3.0\/25", + "version":15887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.3.128", + "prefixLen":25, + "network":"193.56.3.128\/25", + "version":15886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.16.0", + "prefixLen":25, + "network":"193.56.16.0\/25", + "version":15885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.16.128", + "prefixLen":25, + "network":"193.56.16.128\/25", + "version":15884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.17.0", + "prefixLen":25, + "network":"193.56.17.0\/25", + "version":15883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.17.128", + "prefixLen":25, + "network":"193.56.17.128\/25", + "version":15882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.18.0", + "prefixLen":25, + "network":"193.56.18.0\/25", + "version":15881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.18.128", + "prefixLen":25, + "network":"193.56.18.128\/25", + "version":15880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.19.0", + "prefixLen":25, + "network":"193.56.19.0\/25", + "version":15879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.19.128", + "prefixLen":25, + "network":"193.56.19.128\/25", + "version":15878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.32.0", + "prefixLen":25, + "network":"193.56.32.0\/25", + "version":15877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.32.128", + "prefixLen":25, + "network":"193.56.32.128\/25", + "version":15876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.33.0", + "prefixLen":25, + "network":"193.56.33.0\/25", + "version":15875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.33.128", + "prefixLen":25, + "network":"193.56.33.128\/25", + "version":15874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.34.0", + "prefixLen":25, + "network":"193.56.34.0\/25", + "version":15873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.34.128", + "prefixLen":25, + "network":"193.56.34.128\/25", + "version":15872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.35.0", + "prefixLen":25, + "network":"193.56.35.0\/25", + "version":15871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.35.128", + "prefixLen":25, + "network":"193.56.35.128\/25", + "version":15870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.48.0", + "prefixLen":25, + "network":"193.56.48.0\/25", + "version":15869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.48.128", + "prefixLen":25, + "network":"193.56.48.128\/25", + "version":15868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.49.0", + "prefixLen":25, + "network":"193.56.49.0\/25", + "version":15867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.49.128", + "prefixLen":25, + "network":"193.56.49.128\/25", + "version":15866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.50.0", + "prefixLen":25, + "network":"193.56.50.0\/25", + "version":15865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.50.128", + "prefixLen":25, + "network":"193.56.50.128\/25", + "version":15864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.51.0", + "prefixLen":25, + "network":"193.56.51.0\/25", + "version":15863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.51.128", + "prefixLen":25, + "network":"193.56.51.128\/25", + "version":15862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.64.0", + "prefixLen":25, + "network":"193.56.64.0\/25", + "version":15861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.64.128", + "prefixLen":25, + "network":"193.56.64.128\/25", + "version":15860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.65.0", + "prefixLen":25, + "network":"193.56.65.0\/25", + "version":15859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.65.128", + "prefixLen":25, + "network":"193.56.65.128\/25", + "version":15858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.66.0", + "prefixLen":25, + "network":"193.56.66.0\/25", + "version":15857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.66.128", + "prefixLen":25, + "network":"193.56.66.128\/25", + "version":15856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.67.0", + "prefixLen":25, + "network":"193.56.67.0\/25", + "version":15855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.67.128", + "prefixLen":25, + "network":"193.56.67.128\/25", + "version":15854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.80.0", + "prefixLen":25, + "network":"193.56.80.0\/25", + "version":15853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.80.128", + "prefixLen":25, + "network":"193.56.80.128\/25", + "version":15852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.81.0", + "prefixLen":25, + "network":"193.56.81.0\/25", + "version":15851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.81.128", + "prefixLen":25, + "network":"193.56.81.128\/25", + "version":15850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.82.0", + "prefixLen":25, + "network":"193.56.82.0\/25", + "version":15849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.82.128", + "prefixLen":25, + "network":"193.56.82.128\/25", + "version":15848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.83.0", + "prefixLen":25, + "network":"193.56.83.0\/25", + "version":15847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.83.128", + "prefixLen":25, + "network":"193.56.83.128\/25", + "version":15846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.96.0", + "prefixLen":25, + "network":"193.56.96.0\/25", + "version":15845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.96.128", + "prefixLen":25, + "network":"193.56.96.128\/25", + "version":15844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.97.0", + "prefixLen":25, + "network":"193.56.97.0\/25", + "version":15843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.97.128", + "prefixLen":25, + "network":"193.56.97.128\/25", + "version":15842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.98.0", + "prefixLen":25, + "network":"193.56.98.0\/25", + "version":15841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.98.128", + "prefixLen":25, + "network":"193.56.98.128\/25", + "version":15840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.99.0", + "prefixLen":25, + "network":"193.56.99.0\/25", + "version":15839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.99.128", + "prefixLen":25, + "network":"193.56.99.128\/25", + "version":15838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.112.0", + "prefixLen":25, + "network":"193.56.112.0\/25", + "version":15837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.112.128", + "prefixLen":25, + "network":"193.56.112.128\/25", + "version":15836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.113.0", + "prefixLen":25, + "network":"193.56.113.0\/25", + "version":15835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.113.128", + "prefixLen":25, + "network":"193.56.113.128\/25", + "version":15834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.114.0", + "prefixLen":25, + "network":"193.56.114.0\/25", + "version":15833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.114.128", + "prefixLen":25, + "network":"193.56.114.128\/25", + "version":15832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.115.0", + "prefixLen":25, + "network":"193.56.115.0\/25", + "version":15831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.115.128", + "prefixLen":25, + "network":"193.56.115.128\/25", + "version":15830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.128.0", + "prefixLen":25, + "network":"193.56.128.0\/25", + "version":15829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.128.128", + "prefixLen":25, + "network":"193.56.128.128\/25", + "version":15828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.129.0", + "prefixLen":25, + "network":"193.56.129.0\/25", + "version":15827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.129.128", + "prefixLen":25, + "network":"193.56.129.128\/25", + "version":15826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.130.0", + "prefixLen":25, + "network":"193.56.130.0\/25", + "version":15825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.130.128", + "prefixLen":25, + "network":"193.56.130.128\/25", + "version":15824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.131.0", + "prefixLen":25, + "network":"193.56.131.0\/25", + "version":15823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.131.128", + "prefixLen":25, + "network":"193.56.131.128\/25", + "version":15822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.144.0", + "prefixLen":25, + "network":"193.56.144.0\/25", + "version":15821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.144.128", + "prefixLen":25, + "network":"193.56.144.128\/25", + "version":15820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.145.0", + "prefixLen":25, + "network":"193.56.145.0\/25", + "version":15819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.145.128", + "prefixLen":25, + "network":"193.56.145.128\/25", + "version":15818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.146.0", + "prefixLen":25, + "network":"193.56.146.0\/25", + "version":15817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.146.128", + "prefixLen":25, + "network":"193.56.146.128\/25", + "version":15816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.147.0", + "prefixLen":25, + "network":"193.56.147.0\/25", + "version":15815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.147.128", + "prefixLen":25, + "network":"193.56.147.128\/25", + "version":15814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.160.0", + "prefixLen":25, + "network":"193.56.160.0\/25", + "version":15813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.160.128", + "prefixLen":25, + "network":"193.56.160.128\/25", + "version":15812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.161.0", + "prefixLen":25, + "network":"193.56.161.0\/25", + "version":15811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.161.128", + "prefixLen":25, + "network":"193.56.161.128\/25", + "version":15810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.162.0", + "prefixLen":25, + "network":"193.56.162.0\/25", + "version":15809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.162.128", + "prefixLen":25, + "network":"193.56.162.128\/25", + "version":15808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.163.0", + "prefixLen":25, + "network":"193.56.163.0\/25", + "version":15807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.163.128", + "prefixLen":25, + "network":"193.56.163.128\/25", + "version":15806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.176.0", + "prefixLen":25, + "network":"193.56.176.0\/25", + "version":15805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.176.128", + "prefixLen":25, + "network":"193.56.176.128\/25", + "version":15804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.177.0", + "prefixLen":25, + "network":"193.56.177.0\/25", + "version":15803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.177.128", + "prefixLen":25, + "network":"193.56.177.128\/25", + "version":15802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.178.0", + "prefixLen":25, + "network":"193.56.178.0\/25", + "version":15801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.178.128", + "prefixLen":25, + "network":"193.56.178.128\/25", + "version":15800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.179.0", + "prefixLen":25, + "network":"193.56.179.0\/25", + "version":15799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.179.128", + "prefixLen":25, + "network":"193.56.179.128\/25", + "version":15798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.192.0", + "prefixLen":25, + "network":"193.56.192.0\/25", + "version":15797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.192.128", + "prefixLen":25, + "network":"193.56.192.128\/25", + "version":15796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.193.0", + "prefixLen":25, + "network":"193.56.193.0\/25", + "version":15795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.193.128", + "prefixLen":25, + "network":"193.56.193.128\/25", + "version":15794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.194.0", + "prefixLen":25, + "network":"193.56.194.0\/25", + "version":15793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.194.128", + "prefixLen":25, + "network":"193.56.194.128\/25", + "version":15792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.195.0", + "prefixLen":25, + "network":"193.56.195.0\/25", + "version":15791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.195.128", + "prefixLen":25, + "network":"193.56.195.128\/25", + "version":15790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.208.0", + "prefixLen":25, + "network":"193.56.208.0\/25", + "version":15789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.208.128", + "prefixLen":25, + "network":"193.56.208.128\/25", + "version":15788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.209.0", + "prefixLen":25, + "network":"193.56.209.0\/25", + "version":15787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.209.128", + "prefixLen":25, + "network":"193.56.209.128\/25", + "version":15786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.210.0", + "prefixLen":25, + "network":"193.56.210.0\/25", + "version":15785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.210.128", + "prefixLen":25, + "network":"193.56.210.128\/25", + "version":15784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.211.0", + "prefixLen":25, + "network":"193.56.211.0\/25", + "version":15783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.211.128", + "prefixLen":25, + "network":"193.56.211.128\/25", + "version":15782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.224.0", + "prefixLen":25, + "network":"193.56.224.0\/25", + "version":15781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.224.128", + "prefixLen":25, + "network":"193.56.224.128\/25", + "version":15780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.225.0", + "prefixLen":25, + "network":"193.56.225.0\/25", + "version":15779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.225.128", + "prefixLen":25, + "network":"193.56.225.128\/25", + "version":15778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.226.0", + "prefixLen":25, + "network":"193.56.226.0\/25", + "version":15777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.226.128", + "prefixLen":25, + "network":"193.56.226.128\/25", + "version":15776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.227.0", + "prefixLen":25, + "network":"193.56.227.0\/25", + "version":15775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.227.128", + "prefixLen":25, + "network":"193.56.227.128\/25", + "version":15774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.240.0", + "prefixLen":25, + "network":"193.56.240.0\/25", + "version":15773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.240.128", + "prefixLen":25, + "network":"193.56.240.128\/25", + "version":15772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.241.0", + "prefixLen":25, + "network":"193.56.241.0\/25", + "version":15771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.241.128", + "prefixLen":25, + "network":"193.56.241.128\/25", + "version":15770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.242.0", + "prefixLen":25, + "network":"193.56.242.0\/25", + "version":15769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.242.128", + "prefixLen":25, + "network":"193.56.242.128\/25", + "version":15768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.243.0", + "prefixLen":25, + "network":"193.56.243.0\/25", + "version":15767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.56.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.56.243.128", + "prefixLen":25, + "network":"193.56.243.128\/25", + "version":15766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64744 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.0.0", + "prefixLen":25, + "network":"193.57.0.0\/25", + "version":15893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.0.128", + "prefixLen":25, + "network":"193.57.0.128\/25", + "version":16020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.1.0", + "prefixLen":25, + "network":"193.57.1.0\/25", + "version":16019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.1.128", + "prefixLen":25, + "network":"193.57.1.128\/25", + "version":16018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.2.0", + "prefixLen":25, + "network":"193.57.2.0\/25", + "version":16017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.2.128", + "prefixLen":25, + "network":"193.57.2.128\/25", + "version":16016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.3.0", + "prefixLen":25, + "network":"193.57.3.0\/25", + "version":16015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.3.128", + "prefixLen":25, + "network":"193.57.3.128\/25", + "version":16014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.16.0", + "prefixLen":25, + "network":"193.57.16.0\/25", + "version":16013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.16.128", + "prefixLen":25, + "network":"193.57.16.128\/25", + "version":16012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.17.0", + "prefixLen":25, + "network":"193.57.17.0\/25", + "version":16011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.17.128", + "prefixLen":25, + "network":"193.57.17.128\/25", + "version":16010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.18.0", + "prefixLen":25, + "network":"193.57.18.0\/25", + "version":16009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.18.128", + "prefixLen":25, + "network":"193.57.18.128\/25", + "version":16008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.19.0", + "prefixLen":25, + "network":"193.57.19.0\/25", + "version":16007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.19.128", + "prefixLen":25, + "network":"193.57.19.128\/25", + "version":16006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.32.0", + "prefixLen":25, + "network":"193.57.32.0\/25", + "version":16005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.32.128", + "prefixLen":25, + "network":"193.57.32.128\/25", + "version":16004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.33.0", + "prefixLen":25, + "network":"193.57.33.0\/25", + "version":16003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.33.128", + "prefixLen":25, + "network":"193.57.33.128\/25", + "version":16002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.34.0", + "prefixLen":25, + "network":"193.57.34.0\/25", + "version":16001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.34.128", + "prefixLen":25, + "network":"193.57.34.128\/25", + "version":16000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.35.0", + "prefixLen":25, + "network":"193.57.35.0\/25", + "version":15999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.35.128", + "prefixLen":25, + "network":"193.57.35.128\/25", + "version":15998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.48.0", + "prefixLen":25, + "network":"193.57.48.0\/25", + "version":15997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.48.128", + "prefixLen":25, + "network":"193.57.48.128\/25", + "version":15996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.49.0", + "prefixLen":25, + "network":"193.57.49.0\/25", + "version":15995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.49.128", + "prefixLen":25, + "network":"193.57.49.128\/25", + "version":15994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.50.0", + "prefixLen":25, + "network":"193.57.50.0\/25", + "version":15993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.50.128", + "prefixLen":25, + "network":"193.57.50.128\/25", + "version":15992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.51.0", + "prefixLen":25, + "network":"193.57.51.0\/25", + "version":15991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.51.128", + "prefixLen":25, + "network":"193.57.51.128\/25", + "version":15990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.64.0", + "prefixLen":25, + "network":"193.57.64.0\/25", + "version":15989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.64.128", + "prefixLen":25, + "network":"193.57.64.128\/25", + "version":15988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.65.0", + "prefixLen":25, + "network":"193.57.65.0\/25", + "version":15987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.65.128", + "prefixLen":25, + "network":"193.57.65.128\/25", + "version":15986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.66.0", + "prefixLen":25, + "network":"193.57.66.0\/25", + "version":15985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.66.128", + "prefixLen":25, + "network":"193.57.66.128\/25", + "version":15984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.67.0", + "prefixLen":25, + "network":"193.57.67.0\/25", + "version":15983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.67.128", + "prefixLen":25, + "network":"193.57.67.128\/25", + "version":15982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.80.0", + "prefixLen":25, + "network":"193.57.80.0\/25", + "version":15981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.80.128", + "prefixLen":25, + "network":"193.57.80.128\/25", + "version":15980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.81.0", + "prefixLen":25, + "network":"193.57.81.0\/25", + "version":15979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.81.128", + "prefixLen":25, + "network":"193.57.81.128\/25", + "version":15978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.82.0", + "prefixLen":25, + "network":"193.57.82.0\/25", + "version":15977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.82.128", + "prefixLen":25, + "network":"193.57.82.128\/25", + "version":15976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.83.0", + "prefixLen":25, + "network":"193.57.83.0\/25", + "version":15975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.83.128", + "prefixLen":25, + "network":"193.57.83.128\/25", + "version":15974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.96.0", + "prefixLen":25, + "network":"193.57.96.0\/25", + "version":15973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.96.128", + "prefixLen":25, + "network":"193.57.96.128\/25", + "version":15972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.97.0", + "prefixLen":25, + "network":"193.57.97.0\/25", + "version":15971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.97.128", + "prefixLen":25, + "network":"193.57.97.128\/25", + "version":15970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.98.0", + "prefixLen":25, + "network":"193.57.98.0\/25", + "version":15969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.98.128", + "prefixLen":25, + "network":"193.57.98.128\/25", + "version":15968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.99.0", + "prefixLen":25, + "network":"193.57.99.0\/25", + "version":15967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.99.128", + "prefixLen":25, + "network":"193.57.99.128\/25", + "version":15966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.112.0", + "prefixLen":25, + "network":"193.57.112.0\/25", + "version":15965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.112.128", + "prefixLen":25, + "network":"193.57.112.128\/25", + "version":15964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.113.0", + "prefixLen":25, + "network":"193.57.113.0\/25", + "version":15963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.113.128", + "prefixLen":25, + "network":"193.57.113.128\/25", + "version":15962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.114.0", + "prefixLen":25, + "network":"193.57.114.0\/25", + "version":15961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.114.128", + "prefixLen":25, + "network":"193.57.114.128\/25", + "version":15960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.115.0", + "prefixLen":25, + "network":"193.57.115.0\/25", + "version":15959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.115.128", + "prefixLen":25, + "network":"193.57.115.128\/25", + "version":15958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.128.0", + "prefixLen":25, + "network":"193.57.128.0\/25", + "version":15957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.128.128", + "prefixLen":25, + "network":"193.57.128.128\/25", + "version":15956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.129.0", + "prefixLen":25, + "network":"193.57.129.0\/25", + "version":15955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.129.128", + "prefixLen":25, + "network":"193.57.129.128\/25", + "version":15954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.130.0", + "prefixLen":25, + "network":"193.57.130.0\/25", + "version":15953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.130.128", + "prefixLen":25, + "network":"193.57.130.128\/25", + "version":15952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.131.0", + "prefixLen":25, + "network":"193.57.131.0\/25", + "version":15951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.131.128", + "prefixLen":25, + "network":"193.57.131.128\/25", + "version":15950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.144.0", + "prefixLen":25, + "network":"193.57.144.0\/25", + "version":15949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.144.128", + "prefixLen":25, + "network":"193.57.144.128\/25", + "version":15948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.145.0", + "prefixLen":25, + "network":"193.57.145.0\/25", + "version":15947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.145.128", + "prefixLen":25, + "network":"193.57.145.128\/25", + "version":15946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.146.0", + "prefixLen":25, + "network":"193.57.146.0\/25", + "version":15945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.146.128", + "prefixLen":25, + "network":"193.57.146.128\/25", + "version":15944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.147.0", + "prefixLen":25, + "network":"193.57.147.0\/25", + "version":15943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.147.128", + "prefixLen":25, + "network":"193.57.147.128\/25", + "version":15942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.160.0", + "prefixLen":25, + "network":"193.57.160.0\/25", + "version":15941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.160.128", + "prefixLen":25, + "network":"193.57.160.128\/25", + "version":15940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.161.0", + "prefixLen":25, + "network":"193.57.161.0\/25", + "version":15939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.161.128", + "prefixLen":25, + "network":"193.57.161.128\/25", + "version":15938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.162.0", + "prefixLen":25, + "network":"193.57.162.0\/25", + "version":15937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.162.128", + "prefixLen":25, + "network":"193.57.162.128\/25", + "version":15936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.163.0", + "prefixLen":25, + "network":"193.57.163.0\/25", + "version":15935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.163.128", + "prefixLen":25, + "network":"193.57.163.128\/25", + "version":15934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.176.0", + "prefixLen":25, + "network":"193.57.176.0\/25", + "version":15933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.176.128", + "prefixLen":25, + "network":"193.57.176.128\/25", + "version":15932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.177.0", + "prefixLen":25, + "network":"193.57.177.0\/25", + "version":15931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.177.128", + "prefixLen":25, + "network":"193.57.177.128\/25", + "version":15930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.178.0", + "prefixLen":25, + "network":"193.57.178.0\/25", + "version":15929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.178.128", + "prefixLen":25, + "network":"193.57.178.128\/25", + "version":15928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.179.0", + "prefixLen":25, + "network":"193.57.179.0\/25", + "version":15927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.179.128", + "prefixLen":25, + "network":"193.57.179.128\/25", + "version":15926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.192.0", + "prefixLen":25, + "network":"193.57.192.0\/25", + "version":15925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.192.128", + "prefixLen":25, + "network":"193.57.192.128\/25", + "version":15924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.193.0", + "prefixLen":25, + "network":"193.57.193.0\/25", + "version":15923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.193.128", + "prefixLen":25, + "network":"193.57.193.128\/25", + "version":15922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.194.0", + "prefixLen":25, + "network":"193.57.194.0\/25", + "version":15921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.194.128", + "prefixLen":25, + "network":"193.57.194.128\/25", + "version":15920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.195.0", + "prefixLen":25, + "network":"193.57.195.0\/25", + "version":15919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.195.128", + "prefixLen":25, + "network":"193.57.195.128\/25", + "version":15918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.208.0", + "prefixLen":25, + "network":"193.57.208.0\/25", + "version":15917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.208.128", + "prefixLen":25, + "network":"193.57.208.128\/25", + "version":15916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.209.0", + "prefixLen":25, + "network":"193.57.209.0\/25", + "version":15915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.209.128", + "prefixLen":25, + "network":"193.57.209.128\/25", + "version":15914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.210.0", + "prefixLen":25, + "network":"193.57.210.0\/25", + "version":15913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.210.128", + "prefixLen":25, + "network":"193.57.210.128\/25", + "version":15912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.211.0", + "prefixLen":25, + "network":"193.57.211.0\/25", + "version":15911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.211.128", + "prefixLen":25, + "network":"193.57.211.128\/25", + "version":15910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.224.0", + "prefixLen":25, + "network":"193.57.224.0\/25", + "version":15909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.224.128", + "prefixLen":25, + "network":"193.57.224.128\/25", + "version":15908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.225.0", + "prefixLen":25, + "network":"193.57.225.0\/25", + "version":15907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.225.128", + "prefixLen":25, + "network":"193.57.225.128\/25", + "version":15906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.226.0", + "prefixLen":25, + "network":"193.57.226.0\/25", + "version":15905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.226.128", + "prefixLen":25, + "network":"193.57.226.128\/25", + "version":15904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.227.0", + "prefixLen":25, + "network":"193.57.227.0\/25", + "version":15903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.227.128", + "prefixLen":25, + "network":"193.57.227.128\/25", + "version":15902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.240.0", + "prefixLen":25, + "network":"193.57.240.0\/25", + "version":15901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.240.128", + "prefixLen":25, + "network":"193.57.240.128\/25", + "version":15900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.241.0", + "prefixLen":25, + "network":"193.57.241.0\/25", + "version":15899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.241.128", + "prefixLen":25, + "network":"193.57.241.128\/25", + "version":15898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.242.0", + "prefixLen":25, + "network":"193.57.242.0\/25", + "version":15897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.242.128", + "prefixLen":25, + "network":"193.57.242.128\/25", + "version":15896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.243.0", + "prefixLen":25, + "network":"193.57.243.0\/25", + "version":15895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.57.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.57.243.128", + "prefixLen":25, + "network":"193.57.243.128\/25", + "version":15894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64745 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.0.0", + "prefixLen":25, + "network":"193.58.0.0\/25", + "version":16021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.0.128", + "prefixLen":25, + "network":"193.58.0.128\/25", + "version":16148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.1.0", + "prefixLen":25, + "network":"193.58.1.0\/25", + "version":16147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.1.128", + "prefixLen":25, + "network":"193.58.1.128\/25", + "version":16146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.2.0", + "prefixLen":25, + "network":"193.58.2.0\/25", + "version":16145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.2.128", + "prefixLen":25, + "network":"193.58.2.128\/25", + "version":16144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.3.0", + "prefixLen":25, + "network":"193.58.3.0\/25", + "version":16143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.3.128", + "prefixLen":25, + "network":"193.58.3.128\/25", + "version":16142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.16.0", + "prefixLen":25, + "network":"193.58.16.0\/25", + "version":16141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.16.128", + "prefixLen":25, + "network":"193.58.16.128\/25", + "version":16140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.17.0", + "prefixLen":25, + "network":"193.58.17.0\/25", + "version":16139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.17.128", + "prefixLen":25, + "network":"193.58.17.128\/25", + "version":16138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.18.0", + "prefixLen":25, + "network":"193.58.18.0\/25", + "version":16137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.18.128", + "prefixLen":25, + "network":"193.58.18.128\/25", + "version":16136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.19.0", + "prefixLen":25, + "network":"193.58.19.0\/25", + "version":16135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.19.128", + "prefixLen":25, + "network":"193.58.19.128\/25", + "version":16134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.32.0", + "prefixLen":25, + "network":"193.58.32.0\/25", + "version":16133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.32.128", + "prefixLen":25, + "network":"193.58.32.128\/25", + "version":16132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.33.0", + "prefixLen":25, + "network":"193.58.33.0\/25", + "version":16131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.33.128", + "prefixLen":25, + "network":"193.58.33.128\/25", + "version":16130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.34.0", + "prefixLen":25, + "network":"193.58.34.0\/25", + "version":16129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.34.128", + "prefixLen":25, + "network":"193.58.34.128\/25", + "version":16128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.35.0", + "prefixLen":25, + "network":"193.58.35.0\/25", + "version":16127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.35.128", + "prefixLen":25, + "network":"193.58.35.128\/25", + "version":16126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.48.0", + "prefixLen":25, + "network":"193.58.48.0\/25", + "version":16125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.48.128", + "prefixLen":25, + "network":"193.58.48.128\/25", + "version":16124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.49.0", + "prefixLen":25, + "network":"193.58.49.0\/25", + "version":16123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.49.128", + "prefixLen":25, + "network":"193.58.49.128\/25", + "version":16122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.50.0", + "prefixLen":25, + "network":"193.58.50.0\/25", + "version":16121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.50.128", + "prefixLen":25, + "network":"193.58.50.128\/25", + "version":16120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.51.0", + "prefixLen":25, + "network":"193.58.51.0\/25", + "version":16119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.51.128", + "prefixLen":25, + "network":"193.58.51.128\/25", + "version":16118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.64.0", + "prefixLen":25, + "network":"193.58.64.0\/25", + "version":16117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.64.128", + "prefixLen":25, + "network":"193.58.64.128\/25", + "version":16116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.65.0", + "prefixLen":25, + "network":"193.58.65.0\/25", + "version":16115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.65.128", + "prefixLen":25, + "network":"193.58.65.128\/25", + "version":16114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.66.0", + "prefixLen":25, + "network":"193.58.66.0\/25", + "version":16113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.66.128", + "prefixLen":25, + "network":"193.58.66.128\/25", + "version":16112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.67.0", + "prefixLen":25, + "network":"193.58.67.0\/25", + "version":16111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.67.128", + "prefixLen":25, + "network":"193.58.67.128\/25", + "version":16110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.80.0", + "prefixLen":25, + "network":"193.58.80.0\/25", + "version":16109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.80.128", + "prefixLen":25, + "network":"193.58.80.128\/25", + "version":16108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.81.0", + "prefixLen":25, + "network":"193.58.81.0\/25", + "version":16107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.81.128", + "prefixLen":25, + "network":"193.58.81.128\/25", + "version":16106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.82.0", + "prefixLen":25, + "network":"193.58.82.0\/25", + "version":16105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.82.128", + "prefixLen":25, + "network":"193.58.82.128\/25", + "version":16104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.83.0", + "prefixLen":25, + "network":"193.58.83.0\/25", + "version":16103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.83.128", + "prefixLen":25, + "network":"193.58.83.128\/25", + "version":16102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.96.0", + "prefixLen":25, + "network":"193.58.96.0\/25", + "version":16101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.96.128", + "prefixLen":25, + "network":"193.58.96.128\/25", + "version":16100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.97.0", + "prefixLen":25, + "network":"193.58.97.0\/25", + "version":16099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.97.128", + "prefixLen":25, + "network":"193.58.97.128\/25", + "version":16098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.98.0", + "prefixLen":25, + "network":"193.58.98.0\/25", + "version":16097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.98.128", + "prefixLen":25, + "network":"193.58.98.128\/25", + "version":16096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.99.0", + "prefixLen":25, + "network":"193.58.99.0\/25", + "version":16095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.99.128", + "prefixLen":25, + "network":"193.58.99.128\/25", + "version":16094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.112.0", + "prefixLen":25, + "network":"193.58.112.0\/25", + "version":16093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.112.128", + "prefixLen":25, + "network":"193.58.112.128\/25", + "version":16092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.113.0", + "prefixLen":25, + "network":"193.58.113.0\/25", + "version":16091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.113.128", + "prefixLen":25, + "network":"193.58.113.128\/25", + "version":16090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.114.0", + "prefixLen":25, + "network":"193.58.114.0\/25", + "version":16089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.114.128", + "prefixLen":25, + "network":"193.58.114.128\/25", + "version":16088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.115.0", + "prefixLen":25, + "network":"193.58.115.0\/25", + "version":16087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.115.128", + "prefixLen":25, + "network":"193.58.115.128\/25", + "version":16086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.128.0", + "prefixLen":25, + "network":"193.58.128.0\/25", + "version":16085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.128.128", + "prefixLen":25, + "network":"193.58.128.128\/25", + "version":16084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.129.0", + "prefixLen":25, + "network":"193.58.129.0\/25", + "version":16083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.129.128", + "prefixLen":25, + "network":"193.58.129.128\/25", + "version":16082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.130.0", + "prefixLen":25, + "network":"193.58.130.0\/25", + "version":16081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.130.128", + "prefixLen":25, + "network":"193.58.130.128\/25", + "version":16080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.131.0", + "prefixLen":25, + "network":"193.58.131.0\/25", + "version":16079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.131.128", + "prefixLen":25, + "network":"193.58.131.128\/25", + "version":16078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.144.0", + "prefixLen":25, + "network":"193.58.144.0\/25", + "version":16077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.144.128", + "prefixLen":25, + "network":"193.58.144.128\/25", + "version":16076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.145.0", + "prefixLen":25, + "network":"193.58.145.0\/25", + "version":16075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.145.128", + "prefixLen":25, + "network":"193.58.145.128\/25", + "version":16074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.146.0", + "prefixLen":25, + "network":"193.58.146.0\/25", + "version":16073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.146.128", + "prefixLen":25, + "network":"193.58.146.128\/25", + "version":16072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.147.0", + "prefixLen":25, + "network":"193.58.147.0\/25", + "version":16071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.147.128", + "prefixLen":25, + "network":"193.58.147.128\/25", + "version":16070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.160.0", + "prefixLen":25, + "network":"193.58.160.0\/25", + "version":16069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.160.128", + "prefixLen":25, + "network":"193.58.160.128\/25", + "version":16068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.161.0", + "prefixLen":25, + "network":"193.58.161.0\/25", + "version":16067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.161.128", + "prefixLen":25, + "network":"193.58.161.128\/25", + "version":16066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.162.0", + "prefixLen":25, + "network":"193.58.162.0\/25", + "version":16065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.162.128", + "prefixLen":25, + "network":"193.58.162.128\/25", + "version":16064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.163.0", + "prefixLen":25, + "network":"193.58.163.0\/25", + "version":16063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.163.128", + "prefixLen":25, + "network":"193.58.163.128\/25", + "version":16062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.176.0", + "prefixLen":25, + "network":"193.58.176.0\/25", + "version":16061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.176.128", + "prefixLen":25, + "network":"193.58.176.128\/25", + "version":16060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.177.0", + "prefixLen":25, + "network":"193.58.177.0\/25", + "version":16059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.177.128", + "prefixLen":25, + "network":"193.58.177.128\/25", + "version":16058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.178.0", + "prefixLen":25, + "network":"193.58.178.0\/25", + "version":16057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.178.128", + "prefixLen":25, + "network":"193.58.178.128\/25", + "version":16056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.179.0", + "prefixLen":25, + "network":"193.58.179.0\/25", + "version":16055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.179.128", + "prefixLen":25, + "network":"193.58.179.128\/25", + "version":16054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.192.0", + "prefixLen":25, + "network":"193.58.192.0\/25", + "version":16053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.192.128", + "prefixLen":25, + "network":"193.58.192.128\/25", + "version":16052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.193.0", + "prefixLen":25, + "network":"193.58.193.0\/25", + "version":16051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.193.128", + "prefixLen":25, + "network":"193.58.193.128\/25", + "version":16050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.194.0", + "prefixLen":25, + "network":"193.58.194.0\/25", + "version":16049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.194.128", + "prefixLen":25, + "network":"193.58.194.128\/25", + "version":16048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.195.0", + "prefixLen":25, + "network":"193.58.195.0\/25", + "version":16047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.195.128", + "prefixLen":25, + "network":"193.58.195.128\/25", + "version":16046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.208.0", + "prefixLen":25, + "network":"193.58.208.0\/25", + "version":16045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.208.128", + "prefixLen":25, + "network":"193.58.208.128\/25", + "version":16044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.209.0", + "prefixLen":25, + "network":"193.58.209.0\/25", + "version":16043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.209.128", + "prefixLen":25, + "network":"193.58.209.128\/25", + "version":16042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.210.0", + "prefixLen":25, + "network":"193.58.210.0\/25", + "version":16041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.210.128", + "prefixLen":25, + "network":"193.58.210.128\/25", + "version":16040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.211.0", + "prefixLen":25, + "network":"193.58.211.0\/25", + "version":16039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.211.128", + "prefixLen":25, + "network":"193.58.211.128\/25", + "version":16038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.224.0", + "prefixLen":25, + "network":"193.58.224.0\/25", + "version":16037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.224.128", + "prefixLen":25, + "network":"193.58.224.128\/25", + "version":16036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.225.0", + "prefixLen":25, + "network":"193.58.225.0\/25", + "version":16035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.225.128", + "prefixLen":25, + "network":"193.58.225.128\/25", + "version":16034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.226.0", + "prefixLen":25, + "network":"193.58.226.0\/25", + "version":16033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.226.128", + "prefixLen":25, + "network":"193.58.226.128\/25", + "version":16032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.227.0", + "prefixLen":25, + "network":"193.58.227.0\/25", + "version":16031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.227.128", + "prefixLen":25, + "network":"193.58.227.128\/25", + "version":16030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.240.0", + "prefixLen":25, + "network":"193.58.240.0\/25", + "version":16029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.240.128", + "prefixLen":25, + "network":"193.58.240.128\/25", + "version":16028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.241.0", + "prefixLen":25, + "network":"193.58.241.0\/25", + "version":16027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.241.128", + "prefixLen":25, + "network":"193.58.241.128\/25", + "version":16026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.242.0", + "prefixLen":25, + "network":"193.58.242.0\/25", + "version":16025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.242.128", + "prefixLen":25, + "network":"193.58.242.128\/25", + "version":16024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.243.0", + "prefixLen":25, + "network":"193.58.243.0\/25", + "version":16023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.58.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.58.243.128", + "prefixLen":25, + "network":"193.58.243.128\/25", + "version":16022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64746 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.0.0", + "prefixLen":25, + "network":"193.59.0.0\/25", + "version":16149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.0.128", + "prefixLen":25, + "network":"193.59.0.128\/25", + "version":16276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.1.0", + "prefixLen":25, + "network":"193.59.1.0\/25", + "version":16275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.1.128", + "prefixLen":25, + "network":"193.59.1.128\/25", + "version":16274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.2.0", + "prefixLen":25, + "network":"193.59.2.0\/25", + "version":16273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.2.128", + "prefixLen":25, + "network":"193.59.2.128\/25", + "version":16272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.3.0", + "prefixLen":25, + "network":"193.59.3.0\/25", + "version":16271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.3.128", + "prefixLen":25, + "network":"193.59.3.128\/25", + "version":16270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.16.0", + "prefixLen":25, + "network":"193.59.16.0\/25", + "version":16269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.16.128", + "prefixLen":25, + "network":"193.59.16.128\/25", + "version":16268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.17.0", + "prefixLen":25, + "network":"193.59.17.0\/25", + "version":16267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.17.128", + "prefixLen":25, + "network":"193.59.17.128\/25", + "version":16266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.18.0", + "prefixLen":25, + "network":"193.59.18.0\/25", + "version":16265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.18.128", + "prefixLen":25, + "network":"193.59.18.128\/25", + "version":16264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.19.0", + "prefixLen":25, + "network":"193.59.19.0\/25", + "version":16263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.19.128", + "prefixLen":25, + "network":"193.59.19.128\/25", + "version":16262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.32.0", + "prefixLen":25, + "network":"193.59.32.0\/25", + "version":16261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.32.128", + "prefixLen":25, + "network":"193.59.32.128\/25", + "version":16260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.33.0", + "prefixLen":25, + "network":"193.59.33.0\/25", + "version":16259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.33.128", + "prefixLen":25, + "network":"193.59.33.128\/25", + "version":16258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.34.0", + "prefixLen":25, + "network":"193.59.34.0\/25", + "version":16257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.34.128", + "prefixLen":25, + "network":"193.59.34.128\/25", + "version":16256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.35.0", + "prefixLen":25, + "network":"193.59.35.0\/25", + "version":16255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.35.128", + "prefixLen":25, + "network":"193.59.35.128\/25", + "version":16254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.48.0", + "prefixLen":25, + "network":"193.59.48.0\/25", + "version":16253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.48.128", + "prefixLen":25, + "network":"193.59.48.128\/25", + "version":16252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.49.0", + "prefixLen":25, + "network":"193.59.49.0\/25", + "version":16251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.49.128", + "prefixLen":25, + "network":"193.59.49.128\/25", + "version":16250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.50.0", + "prefixLen":25, + "network":"193.59.50.0\/25", + "version":16249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.50.128", + "prefixLen":25, + "network":"193.59.50.128\/25", + "version":16248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.51.0", + "prefixLen":25, + "network":"193.59.51.0\/25", + "version":16247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.51.128", + "prefixLen":25, + "network":"193.59.51.128\/25", + "version":16246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.64.0", + "prefixLen":25, + "network":"193.59.64.0\/25", + "version":16245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.64.128", + "prefixLen":25, + "network":"193.59.64.128\/25", + "version":16244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.65.0", + "prefixLen":25, + "network":"193.59.65.0\/25", + "version":16243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.65.128", + "prefixLen":25, + "network":"193.59.65.128\/25", + "version":16242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.66.0", + "prefixLen":25, + "network":"193.59.66.0\/25", + "version":16241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.66.128", + "prefixLen":25, + "network":"193.59.66.128\/25", + "version":16240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.67.0", + "prefixLen":25, + "network":"193.59.67.0\/25", + "version":16239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.67.128", + "prefixLen":25, + "network":"193.59.67.128\/25", + "version":16238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.80.0", + "prefixLen":25, + "network":"193.59.80.0\/25", + "version":16237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.80.128", + "prefixLen":25, + "network":"193.59.80.128\/25", + "version":16236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.81.0", + "prefixLen":25, + "network":"193.59.81.0\/25", + "version":16235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.81.128", + "prefixLen":25, + "network":"193.59.81.128\/25", + "version":16234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.82.0", + "prefixLen":25, + "network":"193.59.82.0\/25", + "version":16233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.82.128", + "prefixLen":25, + "network":"193.59.82.128\/25", + "version":16232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.83.0", + "prefixLen":25, + "network":"193.59.83.0\/25", + "version":16231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.83.128", + "prefixLen":25, + "network":"193.59.83.128\/25", + "version":16230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.96.0", + "prefixLen":25, + "network":"193.59.96.0\/25", + "version":16229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.96.128", + "prefixLen":25, + "network":"193.59.96.128\/25", + "version":16228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.97.0", + "prefixLen":25, + "network":"193.59.97.0\/25", + "version":16227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.97.128", + "prefixLen":25, + "network":"193.59.97.128\/25", + "version":16226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.98.0", + "prefixLen":25, + "network":"193.59.98.0\/25", + "version":16225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.98.128", + "prefixLen":25, + "network":"193.59.98.128\/25", + "version":16224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.99.0", + "prefixLen":25, + "network":"193.59.99.0\/25", + "version":16223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.99.128", + "prefixLen":25, + "network":"193.59.99.128\/25", + "version":16222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.112.0", + "prefixLen":25, + "network":"193.59.112.0\/25", + "version":16221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.112.128", + "prefixLen":25, + "network":"193.59.112.128\/25", + "version":16220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.113.0", + "prefixLen":25, + "network":"193.59.113.0\/25", + "version":16219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.113.128", + "prefixLen":25, + "network":"193.59.113.128\/25", + "version":16218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.114.0", + "prefixLen":25, + "network":"193.59.114.0\/25", + "version":16217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.114.128", + "prefixLen":25, + "network":"193.59.114.128\/25", + "version":16216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.115.0", + "prefixLen":25, + "network":"193.59.115.0\/25", + "version":16215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.115.128", + "prefixLen":25, + "network":"193.59.115.128\/25", + "version":16214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.128.0", + "prefixLen":25, + "network":"193.59.128.0\/25", + "version":16213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.128.128", + "prefixLen":25, + "network":"193.59.128.128\/25", + "version":16212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.129.0", + "prefixLen":25, + "network":"193.59.129.0\/25", + "version":16211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.129.128", + "prefixLen":25, + "network":"193.59.129.128\/25", + "version":16210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.130.0", + "prefixLen":25, + "network":"193.59.130.0\/25", + "version":16209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.130.128", + "prefixLen":25, + "network":"193.59.130.128\/25", + "version":16208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.131.0", + "prefixLen":25, + "network":"193.59.131.0\/25", + "version":16207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.131.128", + "prefixLen":25, + "network":"193.59.131.128\/25", + "version":16206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.144.0", + "prefixLen":25, + "network":"193.59.144.0\/25", + "version":16205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.144.128", + "prefixLen":25, + "network":"193.59.144.128\/25", + "version":16204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.145.0", + "prefixLen":25, + "network":"193.59.145.0\/25", + "version":16203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.145.128", + "prefixLen":25, + "network":"193.59.145.128\/25", + "version":16202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.146.0", + "prefixLen":25, + "network":"193.59.146.0\/25", + "version":16201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.146.128", + "prefixLen":25, + "network":"193.59.146.128\/25", + "version":16200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.147.0", + "prefixLen":25, + "network":"193.59.147.0\/25", + "version":16199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.147.128", + "prefixLen":25, + "network":"193.59.147.128\/25", + "version":16198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.160.0", + "prefixLen":25, + "network":"193.59.160.0\/25", + "version":16197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.160.128", + "prefixLen":25, + "network":"193.59.160.128\/25", + "version":16196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.161.0", + "prefixLen":25, + "network":"193.59.161.0\/25", + "version":16195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.161.128", + "prefixLen":25, + "network":"193.59.161.128\/25", + "version":16194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.162.0", + "prefixLen":25, + "network":"193.59.162.0\/25", + "version":16193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.162.128", + "prefixLen":25, + "network":"193.59.162.128\/25", + "version":16192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.163.0", + "prefixLen":25, + "network":"193.59.163.0\/25", + "version":16191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.163.128", + "prefixLen":25, + "network":"193.59.163.128\/25", + "version":16190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.176.0", + "prefixLen":25, + "network":"193.59.176.0\/25", + "version":16189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.176.128", + "prefixLen":25, + "network":"193.59.176.128\/25", + "version":16188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.177.0", + "prefixLen":25, + "network":"193.59.177.0\/25", + "version":16187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.177.128", + "prefixLen":25, + "network":"193.59.177.128\/25", + "version":16186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.178.0", + "prefixLen":25, + "network":"193.59.178.0\/25", + "version":16185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.178.128", + "prefixLen":25, + "network":"193.59.178.128\/25", + "version":16184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.179.0", + "prefixLen":25, + "network":"193.59.179.0\/25", + "version":16183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.179.128", + "prefixLen":25, + "network":"193.59.179.128\/25", + "version":16182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.192.0", + "prefixLen":25, + "network":"193.59.192.0\/25", + "version":16181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.192.128", + "prefixLen":25, + "network":"193.59.192.128\/25", + "version":16180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.193.0", + "prefixLen":25, + "network":"193.59.193.0\/25", + "version":16179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.193.128", + "prefixLen":25, + "network":"193.59.193.128\/25", + "version":16178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.194.0", + "prefixLen":25, + "network":"193.59.194.0\/25", + "version":16177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.194.128", + "prefixLen":25, + "network":"193.59.194.128\/25", + "version":16176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.195.0", + "prefixLen":25, + "network":"193.59.195.0\/25", + "version":16175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.195.128", + "prefixLen":25, + "network":"193.59.195.128\/25", + "version":16174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.208.0", + "prefixLen":25, + "network":"193.59.208.0\/25", + "version":16173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.208.128", + "prefixLen":25, + "network":"193.59.208.128\/25", + "version":16172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.209.0", + "prefixLen":25, + "network":"193.59.209.0\/25", + "version":16171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.209.128", + "prefixLen":25, + "network":"193.59.209.128\/25", + "version":16170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.210.0", + "prefixLen":25, + "network":"193.59.210.0\/25", + "version":16169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.210.128", + "prefixLen":25, + "network":"193.59.210.128\/25", + "version":16168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.211.0", + "prefixLen":25, + "network":"193.59.211.0\/25", + "version":16167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.211.128", + "prefixLen":25, + "network":"193.59.211.128\/25", + "version":16166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.224.0", + "prefixLen":25, + "network":"193.59.224.0\/25", + "version":16165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.224.128", + "prefixLen":25, + "network":"193.59.224.128\/25", + "version":16164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.225.0", + "prefixLen":25, + "network":"193.59.225.0\/25", + "version":16163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.225.128", + "prefixLen":25, + "network":"193.59.225.128\/25", + "version":16162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.226.0", + "prefixLen":25, + "network":"193.59.226.0\/25", + "version":16161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.226.128", + "prefixLen":25, + "network":"193.59.226.128\/25", + "version":16160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.227.0", + "prefixLen":25, + "network":"193.59.227.0\/25", + "version":16159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.227.128", + "prefixLen":25, + "network":"193.59.227.128\/25", + "version":16158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.240.0", + "prefixLen":25, + "network":"193.59.240.0\/25", + "version":16157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.240.128", + "prefixLen":25, + "network":"193.59.240.128\/25", + "version":16156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.241.0", + "prefixLen":25, + "network":"193.59.241.0\/25", + "version":16155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.241.128", + "prefixLen":25, + "network":"193.59.241.128\/25", + "version":16154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.242.0", + "prefixLen":25, + "network":"193.59.242.0\/25", + "version":16153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.242.128", + "prefixLen":25, + "network":"193.59.242.128\/25", + "version":16152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.243.0", + "prefixLen":25, + "network":"193.59.243.0\/25", + "version":16151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.59.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.59.243.128", + "prefixLen":25, + "network":"193.59.243.128\/25", + "version":16150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64747 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.0.0", + "prefixLen":25, + "network":"193.60.0.0\/25", + "version":17557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.0.128", + "prefixLen":25, + "network":"193.60.0.128\/25", + "version":17684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.1.0", + "prefixLen":25, + "network":"193.60.1.0\/25", + "version":17683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.1.128", + "prefixLen":25, + "network":"193.60.1.128\/25", + "version":17682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.2.0", + "prefixLen":25, + "network":"193.60.2.0\/25", + "version":17681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.2.128", + "prefixLen":25, + "network":"193.60.2.128\/25", + "version":17680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.3.0", + "prefixLen":25, + "network":"193.60.3.0\/25", + "version":17679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.3.128", + "prefixLen":25, + "network":"193.60.3.128\/25", + "version":17678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.16.0", + "prefixLen":25, + "network":"193.60.16.0\/25", + "version":17677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.16.128", + "prefixLen":25, + "network":"193.60.16.128\/25", + "version":17676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.17.0", + "prefixLen":25, + "network":"193.60.17.0\/25", + "version":17675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.17.128", + "prefixLen":25, + "network":"193.60.17.128\/25", + "version":17674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.18.0", + "prefixLen":25, + "network":"193.60.18.0\/25", + "version":17673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.18.128", + "prefixLen":25, + "network":"193.60.18.128\/25", + "version":17672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.19.0", + "prefixLen":25, + "network":"193.60.19.0\/25", + "version":17671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.19.128", + "prefixLen":25, + "network":"193.60.19.128\/25", + "version":17670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.32.0", + "prefixLen":25, + "network":"193.60.32.0\/25", + "version":17669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.32.128", + "prefixLen":25, + "network":"193.60.32.128\/25", + "version":17668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.33.0", + "prefixLen":25, + "network":"193.60.33.0\/25", + "version":17667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.33.128", + "prefixLen":25, + "network":"193.60.33.128\/25", + "version":17666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.34.0", + "prefixLen":25, + "network":"193.60.34.0\/25", + "version":17665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.34.128", + "prefixLen":25, + "network":"193.60.34.128\/25", + "version":17664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.35.0", + "prefixLen":25, + "network":"193.60.35.0\/25", + "version":17663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.35.128", + "prefixLen":25, + "network":"193.60.35.128\/25", + "version":17662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.48.0", + "prefixLen":25, + "network":"193.60.48.0\/25", + "version":17661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.48.128", + "prefixLen":25, + "network":"193.60.48.128\/25", + "version":17660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.49.0", + "prefixLen":25, + "network":"193.60.49.0\/25", + "version":17659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.49.128", + "prefixLen":25, + "network":"193.60.49.128\/25", + "version":17658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.50.0", + "prefixLen":25, + "network":"193.60.50.0\/25", + "version":17657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.50.128", + "prefixLen":25, + "network":"193.60.50.128\/25", + "version":17656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.51.0", + "prefixLen":25, + "network":"193.60.51.0\/25", + "version":17655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.51.128", + "prefixLen":25, + "network":"193.60.51.128\/25", + "version":17654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.64.0", + "prefixLen":25, + "network":"193.60.64.0\/25", + "version":17653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.64.128", + "prefixLen":25, + "network":"193.60.64.128\/25", + "version":17652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.65.0", + "prefixLen":25, + "network":"193.60.65.0\/25", + "version":17651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.65.128", + "prefixLen":25, + "network":"193.60.65.128\/25", + "version":17650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.66.0", + "prefixLen":25, + "network":"193.60.66.0\/25", + "version":17649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.66.128", + "prefixLen":25, + "network":"193.60.66.128\/25", + "version":17648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.67.0", + "prefixLen":25, + "network":"193.60.67.0\/25", + "version":17647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.67.128", + "prefixLen":25, + "network":"193.60.67.128\/25", + "version":17646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.80.0", + "prefixLen":25, + "network":"193.60.80.0\/25", + "version":17645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.80.128", + "prefixLen":25, + "network":"193.60.80.128\/25", + "version":17644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.81.0", + "prefixLen":25, + "network":"193.60.81.0\/25", + "version":17643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.81.128", + "prefixLen":25, + "network":"193.60.81.128\/25", + "version":17642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.82.0", + "prefixLen":25, + "network":"193.60.82.0\/25", + "version":17641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.82.128", + "prefixLen":25, + "network":"193.60.82.128\/25", + "version":17640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.83.0", + "prefixLen":25, + "network":"193.60.83.0\/25", + "version":17639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.83.128", + "prefixLen":25, + "network":"193.60.83.128\/25", + "version":17638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.96.0", + "prefixLen":25, + "network":"193.60.96.0\/25", + "version":17637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.96.128", + "prefixLen":25, + "network":"193.60.96.128\/25", + "version":17636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.97.0", + "prefixLen":25, + "network":"193.60.97.0\/25", + "version":17635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.97.128", + "prefixLen":25, + "network":"193.60.97.128\/25", + "version":17634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.98.0", + "prefixLen":25, + "network":"193.60.98.0\/25", + "version":17633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.98.128", + "prefixLen":25, + "network":"193.60.98.128\/25", + "version":17632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.99.0", + "prefixLen":25, + "network":"193.60.99.0\/25", + "version":17631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.99.128", + "prefixLen":25, + "network":"193.60.99.128\/25", + "version":17630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.112.0", + "prefixLen":25, + "network":"193.60.112.0\/25", + "version":17629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.112.128", + "prefixLen":25, + "network":"193.60.112.128\/25", + "version":17628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.113.0", + "prefixLen":25, + "network":"193.60.113.0\/25", + "version":17627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.113.128", + "prefixLen":25, + "network":"193.60.113.128\/25", + "version":17626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.114.0", + "prefixLen":25, + "network":"193.60.114.0\/25", + "version":17625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.114.128", + "prefixLen":25, + "network":"193.60.114.128\/25", + "version":17624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.115.0", + "prefixLen":25, + "network":"193.60.115.0\/25", + "version":17623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.115.128", + "prefixLen":25, + "network":"193.60.115.128\/25", + "version":17622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.128.0", + "prefixLen":25, + "network":"193.60.128.0\/25", + "version":17621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.128.128", + "prefixLen":25, + "network":"193.60.128.128\/25", + "version":17620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.129.0", + "prefixLen":25, + "network":"193.60.129.0\/25", + "version":17619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.129.128", + "prefixLen":25, + "network":"193.60.129.128\/25", + "version":17618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.130.0", + "prefixLen":25, + "network":"193.60.130.0\/25", + "version":17617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.130.128", + "prefixLen":25, + "network":"193.60.130.128\/25", + "version":17616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.131.0", + "prefixLen":25, + "network":"193.60.131.0\/25", + "version":17615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.131.128", + "prefixLen":25, + "network":"193.60.131.128\/25", + "version":17614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.144.0", + "prefixLen":25, + "network":"193.60.144.0\/25", + "version":17613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.144.128", + "prefixLen":25, + "network":"193.60.144.128\/25", + "version":17612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.145.0", + "prefixLen":25, + "network":"193.60.145.0\/25", + "version":17611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.145.128", + "prefixLen":25, + "network":"193.60.145.128\/25", + "version":17610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.146.0", + "prefixLen":25, + "network":"193.60.146.0\/25", + "version":17609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.146.128", + "prefixLen":25, + "network":"193.60.146.128\/25", + "version":17608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.147.0", + "prefixLen":25, + "network":"193.60.147.0\/25", + "version":17607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.147.128", + "prefixLen":25, + "network":"193.60.147.128\/25", + "version":17606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.160.0", + "prefixLen":25, + "network":"193.60.160.0\/25", + "version":17605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.160.128", + "prefixLen":25, + "network":"193.60.160.128\/25", + "version":17604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.161.0", + "prefixLen":25, + "network":"193.60.161.0\/25", + "version":17603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.161.128", + "prefixLen":25, + "network":"193.60.161.128\/25", + "version":17602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.162.0", + "prefixLen":25, + "network":"193.60.162.0\/25", + "version":17601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.162.128", + "prefixLen":25, + "network":"193.60.162.128\/25", + "version":17600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.163.0", + "prefixLen":25, + "network":"193.60.163.0\/25", + "version":17599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.163.128", + "prefixLen":25, + "network":"193.60.163.128\/25", + "version":17598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.176.0", + "prefixLen":25, + "network":"193.60.176.0\/25", + "version":17597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.176.128", + "prefixLen":25, + "network":"193.60.176.128\/25", + "version":17596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.177.0", + "prefixLen":25, + "network":"193.60.177.0\/25", + "version":17595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.177.128", + "prefixLen":25, + "network":"193.60.177.128\/25", + "version":17594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.178.0", + "prefixLen":25, + "network":"193.60.178.0\/25", + "version":17593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.178.128", + "prefixLen":25, + "network":"193.60.178.128\/25", + "version":17592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.179.0", + "prefixLen":25, + "network":"193.60.179.0\/25", + "version":17591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.179.128", + "prefixLen":25, + "network":"193.60.179.128\/25", + "version":17590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.192.0", + "prefixLen":25, + "network":"193.60.192.0\/25", + "version":17589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.192.128", + "prefixLen":25, + "network":"193.60.192.128\/25", + "version":17588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.193.0", + "prefixLen":25, + "network":"193.60.193.0\/25", + "version":17587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.193.128", + "prefixLen":25, + "network":"193.60.193.128\/25", + "version":17586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.194.0", + "prefixLen":25, + "network":"193.60.194.0\/25", + "version":17585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.194.128", + "prefixLen":25, + "network":"193.60.194.128\/25", + "version":17584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.195.0", + "prefixLen":25, + "network":"193.60.195.0\/25", + "version":17583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.195.128", + "prefixLen":25, + "network":"193.60.195.128\/25", + "version":17582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.208.0", + "prefixLen":25, + "network":"193.60.208.0\/25", + "version":17581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.208.128", + "prefixLen":25, + "network":"193.60.208.128\/25", + "version":17580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.209.0", + "prefixLen":25, + "network":"193.60.209.0\/25", + "version":17579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.209.128", + "prefixLen":25, + "network":"193.60.209.128\/25", + "version":17578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.210.0", + "prefixLen":25, + "network":"193.60.210.0\/25", + "version":17577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.210.128", + "prefixLen":25, + "network":"193.60.210.128\/25", + "version":17576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.211.0", + "prefixLen":25, + "network":"193.60.211.0\/25", + "version":17575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.211.128", + "prefixLen":25, + "network":"193.60.211.128\/25", + "version":17574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.224.0", + "prefixLen":25, + "network":"193.60.224.0\/25", + "version":17573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.224.128", + "prefixLen":25, + "network":"193.60.224.128\/25", + "version":17572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.225.0", + "prefixLen":25, + "network":"193.60.225.0\/25", + "version":17571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.225.128", + "prefixLen":25, + "network":"193.60.225.128\/25", + "version":17570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.226.0", + "prefixLen":25, + "network":"193.60.226.0\/25", + "version":17569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.226.128", + "prefixLen":25, + "network":"193.60.226.128\/25", + "version":17568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.227.0", + "prefixLen":25, + "network":"193.60.227.0\/25", + "version":17567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.227.128", + "prefixLen":25, + "network":"193.60.227.128\/25", + "version":17566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.240.0", + "prefixLen":25, + "network":"193.60.240.0\/25", + "version":17565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.240.128", + "prefixLen":25, + "network":"193.60.240.128\/25", + "version":17564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.241.0", + "prefixLen":25, + "network":"193.60.241.0\/25", + "version":17563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.241.128", + "prefixLen":25, + "network":"193.60.241.128\/25", + "version":17562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.242.0", + "prefixLen":25, + "network":"193.60.242.0\/25", + "version":17561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.242.128", + "prefixLen":25, + "network":"193.60.242.128\/25", + "version":17560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.243.0", + "prefixLen":25, + "network":"193.60.243.0\/25", + "version":17559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.60.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.60.243.128", + "prefixLen":25, + "network":"193.60.243.128\/25", + "version":17558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64748 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.0.0", + "prefixLen":25, + "network":"193.61.0.0\/25", + "version":17685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.0.128", + "prefixLen":25, + "network":"193.61.0.128\/25", + "version":17812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.1.0", + "prefixLen":25, + "network":"193.61.1.0\/25", + "version":17811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.1.128", + "prefixLen":25, + "network":"193.61.1.128\/25", + "version":17810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.2.0", + "prefixLen":25, + "network":"193.61.2.0\/25", + "version":17809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.2.128", + "prefixLen":25, + "network":"193.61.2.128\/25", + "version":17808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.3.0", + "prefixLen":25, + "network":"193.61.3.0\/25", + "version":17807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.3.128", + "prefixLen":25, + "network":"193.61.3.128\/25", + "version":17806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.16.0", + "prefixLen":25, + "network":"193.61.16.0\/25", + "version":17805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.16.128", + "prefixLen":25, + "network":"193.61.16.128\/25", + "version":17804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.17.0", + "prefixLen":25, + "network":"193.61.17.0\/25", + "version":17803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.17.128", + "prefixLen":25, + "network":"193.61.17.128\/25", + "version":17802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.18.0", + "prefixLen":25, + "network":"193.61.18.0\/25", + "version":17801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.18.128", + "prefixLen":25, + "network":"193.61.18.128\/25", + "version":17800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.19.0", + "prefixLen":25, + "network":"193.61.19.0\/25", + "version":17799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.19.128", + "prefixLen":25, + "network":"193.61.19.128\/25", + "version":17798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.32.0", + "prefixLen":25, + "network":"193.61.32.0\/25", + "version":17797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.32.128", + "prefixLen":25, + "network":"193.61.32.128\/25", + "version":17796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.33.0", + "prefixLen":25, + "network":"193.61.33.0\/25", + "version":17795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.33.128", + "prefixLen":25, + "network":"193.61.33.128\/25", + "version":17794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.34.0", + "prefixLen":25, + "network":"193.61.34.0\/25", + "version":17793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.34.128", + "prefixLen":25, + "network":"193.61.34.128\/25", + "version":17792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.35.0", + "prefixLen":25, + "network":"193.61.35.0\/25", + "version":17791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.35.128", + "prefixLen":25, + "network":"193.61.35.128\/25", + "version":17790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.48.0", + "prefixLen":25, + "network":"193.61.48.0\/25", + "version":17789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.48.128", + "prefixLen":25, + "network":"193.61.48.128\/25", + "version":17788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.49.0", + "prefixLen":25, + "network":"193.61.49.0\/25", + "version":17787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.49.128", + "prefixLen":25, + "network":"193.61.49.128\/25", + "version":17786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.50.0", + "prefixLen":25, + "network":"193.61.50.0\/25", + "version":17785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.50.128", + "prefixLen":25, + "network":"193.61.50.128\/25", + "version":17784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.51.0", + "prefixLen":25, + "network":"193.61.51.0\/25", + "version":17783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.51.128", + "prefixLen":25, + "network":"193.61.51.128\/25", + "version":17782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.64.0", + "prefixLen":25, + "network":"193.61.64.0\/25", + "version":17781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.64.128", + "prefixLen":25, + "network":"193.61.64.128\/25", + "version":17780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.65.0", + "prefixLen":25, + "network":"193.61.65.0\/25", + "version":17779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.65.128", + "prefixLen":25, + "network":"193.61.65.128\/25", + "version":17778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.66.0", + "prefixLen":25, + "network":"193.61.66.0\/25", + "version":17777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.66.128", + "prefixLen":25, + "network":"193.61.66.128\/25", + "version":17776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.67.0", + "prefixLen":25, + "network":"193.61.67.0\/25", + "version":17775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.67.128", + "prefixLen":25, + "network":"193.61.67.128\/25", + "version":17774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.80.0", + "prefixLen":25, + "network":"193.61.80.0\/25", + "version":17773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.80.128", + "prefixLen":25, + "network":"193.61.80.128\/25", + "version":17772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.81.0", + "prefixLen":25, + "network":"193.61.81.0\/25", + "version":17771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.81.128", + "prefixLen":25, + "network":"193.61.81.128\/25", + "version":17770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.82.0", + "prefixLen":25, + "network":"193.61.82.0\/25", + "version":17769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.82.128", + "prefixLen":25, + "network":"193.61.82.128\/25", + "version":17768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.83.0", + "prefixLen":25, + "network":"193.61.83.0\/25", + "version":17767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.83.128", + "prefixLen":25, + "network":"193.61.83.128\/25", + "version":17766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.96.0", + "prefixLen":25, + "network":"193.61.96.0\/25", + "version":17765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.96.128", + "prefixLen":25, + "network":"193.61.96.128\/25", + "version":17764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.97.0", + "prefixLen":25, + "network":"193.61.97.0\/25", + "version":17763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.97.128", + "prefixLen":25, + "network":"193.61.97.128\/25", + "version":17762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.98.0", + "prefixLen":25, + "network":"193.61.98.0\/25", + "version":17761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.98.128", + "prefixLen":25, + "network":"193.61.98.128\/25", + "version":17760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.99.0", + "prefixLen":25, + "network":"193.61.99.0\/25", + "version":17759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.99.128", + "prefixLen":25, + "network":"193.61.99.128\/25", + "version":17758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.112.0", + "prefixLen":25, + "network":"193.61.112.0\/25", + "version":17757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.112.128", + "prefixLen":25, + "network":"193.61.112.128\/25", + "version":17756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.113.0", + "prefixLen":25, + "network":"193.61.113.0\/25", + "version":17755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.113.128", + "prefixLen":25, + "network":"193.61.113.128\/25", + "version":17754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.114.0", + "prefixLen":25, + "network":"193.61.114.0\/25", + "version":17753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.114.128", + "prefixLen":25, + "network":"193.61.114.128\/25", + "version":17752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.115.0", + "prefixLen":25, + "network":"193.61.115.0\/25", + "version":17751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.115.128", + "prefixLen":25, + "network":"193.61.115.128\/25", + "version":17750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.128.0", + "prefixLen":25, + "network":"193.61.128.0\/25", + "version":17749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.128.128", + "prefixLen":25, + "network":"193.61.128.128\/25", + "version":17748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.129.0", + "prefixLen":25, + "network":"193.61.129.0\/25", + "version":17747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.129.128", + "prefixLen":25, + "network":"193.61.129.128\/25", + "version":17746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.130.0", + "prefixLen":25, + "network":"193.61.130.0\/25", + "version":17745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.130.128", + "prefixLen":25, + "network":"193.61.130.128\/25", + "version":17744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.131.0", + "prefixLen":25, + "network":"193.61.131.0\/25", + "version":17743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.131.128", + "prefixLen":25, + "network":"193.61.131.128\/25", + "version":17742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.144.0", + "prefixLen":25, + "network":"193.61.144.0\/25", + "version":17741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.144.128", + "prefixLen":25, + "network":"193.61.144.128\/25", + "version":17740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.145.0", + "prefixLen":25, + "network":"193.61.145.0\/25", + "version":17739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.145.128", + "prefixLen":25, + "network":"193.61.145.128\/25", + "version":17738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.146.0", + "prefixLen":25, + "network":"193.61.146.0\/25", + "version":17737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.146.128", + "prefixLen":25, + "network":"193.61.146.128\/25", + "version":17736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.147.0", + "prefixLen":25, + "network":"193.61.147.0\/25", + "version":17735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.147.128", + "prefixLen":25, + "network":"193.61.147.128\/25", + "version":17734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.160.0", + "prefixLen":25, + "network":"193.61.160.0\/25", + "version":17733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.160.128", + "prefixLen":25, + "network":"193.61.160.128\/25", + "version":17732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.161.0", + "prefixLen":25, + "network":"193.61.161.0\/25", + "version":17731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.161.128", + "prefixLen":25, + "network":"193.61.161.128\/25", + "version":17730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.162.0", + "prefixLen":25, + "network":"193.61.162.0\/25", + "version":17729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.162.128", + "prefixLen":25, + "network":"193.61.162.128\/25", + "version":17728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.163.0", + "prefixLen":25, + "network":"193.61.163.0\/25", + "version":17727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.163.128", + "prefixLen":25, + "network":"193.61.163.128\/25", + "version":17726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.176.0", + "prefixLen":25, + "network":"193.61.176.0\/25", + "version":17725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.176.128", + "prefixLen":25, + "network":"193.61.176.128\/25", + "version":17724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.177.0", + "prefixLen":25, + "network":"193.61.177.0\/25", + "version":17723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.177.128", + "prefixLen":25, + "network":"193.61.177.128\/25", + "version":17722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.178.0", + "prefixLen":25, + "network":"193.61.178.0\/25", + "version":17721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.178.128", + "prefixLen":25, + "network":"193.61.178.128\/25", + "version":17720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.179.0", + "prefixLen":25, + "network":"193.61.179.0\/25", + "version":17719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.179.128", + "prefixLen":25, + "network":"193.61.179.128\/25", + "version":17718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.192.0", + "prefixLen":25, + "network":"193.61.192.0\/25", + "version":17717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.192.128", + "prefixLen":25, + "network":"193.61.192.128\/25", + "version":17716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.193.0", + "prefixLen":25, + "network":"193.61.193.0\/25", + "version":17715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.193.128", + "prefixLen":25, + "network":"193.61.193.128\/25", + "version":17714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.194.0", + "prefixLen":25, + "network":"193.61.194.0\/25", + "version":17713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.194.128", + "prefixLen":25, + "network":"193.61.194.128\/25", + "version":17712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.195.0", + "prefixLen":25, + "network":"193.61.195.0\/25", + "version":17711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.195.128", + "prefixLen":25, + "network":"193.61.195.128\/25", + "version":17710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.208.0", + "prefixLen":25, + "network":"193.61.208.0\/25", + "version":17709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.208.128", + "prefixLen":25, + "network":"193.61.208.128\/25", + "version":17708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.209.0", + "prefixLen":25, + "network":"193.61.209.0\/25", + "version":17707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.209.128", + "prefixLen":25, + "network":"193.61.209.128\/25", + "version":17706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.210.0", + "prefixLen":25, + "network":"193.61.210.0\/25", + "version":17705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.210.128", + "prefixLen":25, + "network":"193.61.210.128\/25", + "version":17704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.211.0", + "prefixLen":25, + "network":"193.61.211.0\/25", + "version":17703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.211.128", + "prefixLen":25, + "network":"193.61.211.128\/25", + "version":17702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.224.0", + "prefixLen":25, + "network":"193.61.224.0\/25", + "version":17701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.224.128", + "prefixLen":25, + "network":"193.61.224.128\/25", + "version":17700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.225.0", + "prefixLen":25, + "network":"193.61.225.0\/25", + "version":17699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.225.128", + "prefixLen":25, + "network":"193.61.225.128\/25", + "version":17698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.226.0", + "prefixLen":25, + "network":"193.61.226.0\/25", + "version":17697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.226.128", + "prefixLen":25, + "network":"193.61.226.128\/25", + "version":17696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.227.0", + "prefixLen":25, + "network":"193.61.227.0\/25", + "version":17695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.227.128", + "prefixLen":25, + "network":"193.61.227.128\/25", + "version":17694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.240.0", + "prefixLen":25, + "network":"193.61.240.0\/25", + "version":17693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.240.128", + "prefixLen":25, + "network":"193.61.240.128\/25", + "version":17692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.241.0", + "prefixLen":25, + "network":"193.61.241.0\/25", + "version":17691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.241.128", + "prefixLen":25, + "network":"193.61.241.128\/25", + "version":17690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.242.0", + "prefixLen":25, + "network":"193.61.242.0\/25", + "version":17689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.242.128", + "prefixLen":25, + "network":"193.61.242.128\/25", + "version":17688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.243.0", + "prefixLen":25, + "network":"193.61.243.0\/25", + "version":17687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.61.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.61.243.128", + "prefixLen":25, + "network":"193.61.243.128\/25", + "version":17686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64749 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.0.0", + "prefixLen":25, + "network":"193.62.0.0\/25", + "version":17813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.0.128", + "prefixLen":25, + "network":"193.62.0.128\/25", + "version":17940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.1.0", + "prefixLen":25, + "network":"193.62.1.0\/25", + "version":17939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.1.128", + "prefixLen":25, + "network":"193.62.1.128\/25", + "version":17938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.2.0", + "prefixLen":25, + "network":"193.62.2.0\/25", + "version":17937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.2.128", + "prefixLen":25, + "network":"193.62.2.128\/25", + "version":17936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.3.0", + "prefixLen":25, + "network":"193.62.3.0\/25", + "version":17935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.3.128", + "prefixLen":25, + "network":"193.62.3.128\/25", + "version":17934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.16.0", + "prefixLen":25, + "network":"193.62.16.0\/25", + "version":17933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.16.128", + "prefixLen":25, + "network":"193.62.16.128\/25", + "version":17932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.17.0", + "prefixLen":25, + "network":"193.62.17.0\/25", + "version":17931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.17.128", + "prefixLen":25, + "network":"193.62.17.128\/25", + "version":17930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.18.0", + "prefixLen":25, + "network":"193.62.18.0\/25", + "version":17929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.18.128", + "prefixLen":25, + "network":"193.62.18.128\/25", + "version":17928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.19.0", + "prefixLen":25, + "network":"193.62.19.0\/25", + "version":17927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.19.128", + "prefixLen":25, + "network":"193.62.19.128\/25", + "version":17926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.32.0", + "prefixLen":25, + "network":"193.62.32.0\/25", + "version":17925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.32.128", + "prefixLen":25, + "network":"193.62.32.128\/25", + "version":17924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.33.0", + "prefixLen":25, + "network":"193.62.33.0\/25", + "version":17923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.33.128", + "prefixLen":25, + "network":"193.62.33.128\/25", + "version":17922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.34.0", + "prefixLen":25, + "network":"193.62.34.0\/25", + "version":17921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.34.128", + "prefixLen":25, + "network":"193.62.34.128\/25", + "version":17920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.35.0", + "prefixLen":25, + "network":"193.62.35.0\/25", + "version":17919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.35.128", + "prefixLen":25, + "network":"193.62.35.128\/25", + "version":17918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.48.0", + "prefixLen":25, + "network":"193.62.48.0\/25", + "version":17917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.48.128", + "prefixLen":25, + "network":"193.62.48.128\/25", + "version":17916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.49.0", + "prefixLen":25, + "network":"193.62.49.0\/25", + "version":17915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.49.128", + "prefixLen":25, + "network":"193.62.49.128\/25", + "version":17914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.50.0", + "prefixLen":25, + "network":"193.62.50.0\/25", + "version":17913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.50.128", + "prefixLen":25, + "network":"193.62.50.128\/25", + "version":17912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.51.0", + "prefixLen":25, + "network":"193.62.51.0\/25", + "version":17911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.51.128", + "prefixLen":25, + "network":"193.62.51.128\/25", + "version":17910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.64.0", + "prefixLen":25, + "network":"193.62.64.0\/25", + "version":17909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.64.128", + "prefixLen":25, + "network":"193.62.64.128\/25", + "version":17908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.65.0", + "prefixLen":25, + "network":"193.62.65.0\/25", + "version":17907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.65.128", + "prefixLen":25, + "network":"193.62.65.128\/25", + "version":17906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.66.0", + "prefixLen":25, + "network":"193.62.66.0\/25", + "version":17905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.66.128", + "prefixLen":25, + "network":"193.62.66.128\/25", + "version":17904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.67.0", + "prefixLen":25, + "network":"193.62.67.0\/25", + "version":17903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.67.128", + "prefixLen":25, + "network":"193.62.67.128\/25", + "version":17902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.80.0", + "prefixLen":25, + "network":"193.62.80.0\/25", + "version":17901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.80.128", + "prefixLen":25, + "network":"193.62.80.128\/25", + "version":17900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.81.0", + "prefixLen":25, + "network":"193.62.81.0\/25", + "version":17899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.81.128", + "prefixLen":25, + "network":"193.62.81.128\/25", + "version":17898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.82.0", + "prefixLen":25, + "network":"193.62.82.0\/25", + "version":17897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.82.128", + "prefixLen":25, + "network":"193.62.82.128\/25", + "version":17896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.83.0", + "prefixLen":25, + "network":"193.62.83.0\/25", + "version":17895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.83.128", + "prefixLen":25, + "network":"193.62.83.128\/25", + "version":17894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.96.0", + "prefixLen":25, + "network":"193.62.96.0\/25", + "version":17893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.96.128", + "prefixLen":25, + "network":"193.62.96.128\/25", + "version":17892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.97.0", + "prefixLen":25, + "network":"193.62.97.0\/25", + "version":17891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.97.128", + "prefixLen":25, + "network":"193.62.97.128\/25", + "version":17890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.98.0", + "prefixLen":25, + "network":"193.62.98.0\/25", + "version":17889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.98.128", + "prefixLen":25, + "network":"193.62.98.128\/25", + "version":17888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.99.0", + "prefixLen":25, + "network":"193.62.99.0\/25", + "version":17887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.99.128", + "prefixLen":25, + "network":"193.62.99.128\/25", + "version":17886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.112.0", + "prefixLen":25, + "network":"193.62.112.0\/25", + "version":17885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.112.128", + "prefixLen":25, + "network":"193.62.112.128\/25", + "version":17884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.113.0", + "prefixLen":25, + "network":"193.62.113.0\/25", + "version":17883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.113.128", + "prefixLen":25, + "network":"193.62.113.128\/25", + "version":17882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.114.0", + "prefixLen":25, + "network":"193.62.114.0\/25", + "version":17881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.114.128", + "prefixLen":25, + "network":"193.62.114.128\/25", + "version":17880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.115.0", + "prefixLen":25, + "network":"193.62.115.0\/25", + "version":17879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.115.128", + "prefixLen":25, + "network":"193.62.115.128\/25", + "version":17878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.128.0", + "prefixLen":25, + "network":"193.62.128.0\/25", + "version":17877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.128.128", + "prefixLen":25, + "network":"193.62.128.128\/25", + "version":17876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.129.0", + "prefixLen":25, + "network":"193.62.129.0\/25", + "version":17875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.129.128", + "prefixLen":25, + "network":"193.62.129.128\/25", + "version":17874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.130.0", + "prefixLen":25, + "network":"193.62.130.0\/25", + "version":17873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.130.128", + "prefixLen":25, + "network":"193.62.130.128\/25", + "version":17872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.131.0", + "prefixLen":25, + "network":"193.62.131.0\/25", + "version":17871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.131.128", + "prefixLen":25, + "network":"193.62.131.128\/25", + "version":17870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.144.0", + "prefixLen":25, + "network":"193.62.144.0\/25", + "version":17869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.144.128", + "prefixLen":25, + "network":"193.62.144.128\/25", + "version":17868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.145.0", + "prefixLen":25, + "network":"193.62.145.0\/25", + "version":17867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.145.128", + "prefixLen":25, + "network":"193.62.145.128\/25", + "version":17866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.146.0", + "prefixLen":25, + "network":"193.62.146.0\/25", + "version":17865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.146.128", + "prefixLen":25, + "network":"193.62.146.128\/25", + "version":17864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.147.0", + "prefixLen":25, + "network":"193.62.147.0\/25", + "version":17863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.147.128", + "prefixLen":25, + "network":"193.62.147.128\/25", + "version":17862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.160.0", + "prefixLen":25, + "network":"193.62.160.0\/25", + "version":17861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.160.128", + "prefixLen":25, + "network":"193.62.160.128\/25", + "version":17860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.161.0", + "prefixLen":25, + "network":"193.62.161.0\/25", + "version":17859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.161.128", + "prefixLen":25, + "network":"193.62.161.128\/25", + "version":17858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.162.0", + "prefixLen":25, + "network":"193.62.162.0\/25", + "version":17857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.162.128", + "prefixLen":25, + "network":"193.62.162.128\/25", + "version":17856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.163.0", + "prefixLen":25, + "network":"193.62.163.0\/25", + "version":17855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.163.128", + "prefixLen":25, + "network":"193.62.163.128\/25", + "version":17854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.176.0", + "prefixLen":25, + "network":"193.62.176.0\/25", + "version":17853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.176.128", + "prefixLen":25, + "network":"193.62.176.128\/25", + "version":17852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.177.0", + "prefixLen":25, + "network":"193.62.177.0\/25", + "version":17851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.177.128", + "prefixLen":25, + "network":"193.62.177.128\/25", + "version":17850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.178.0", + "prefixLen":25, + "network":"193.62.178.0\/25", + "version":17849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.178.128", + "prefixLen":25, + "network":"193.62.178.128\/25", + "version":17848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.179.0", + "prefixLen":25, + "network":"193.62.179.0\/25", + "version":17847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.179.128", + "prefixLen":25, + "network":"193.62.179.128\/25", + "version":17846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.192.0", + "prefixLen":25, + "network":"193.62.192.0\/25", + "version":17845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.192.128", + "prefixLen":25, + "network":"193.62.192.128\/25", + "version":17844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.193.0", + "prefixLen":25, + "network":"193.62.193.0\/25", + "version":17843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.193.128", + "prefixLen":25, + "network":"193.62.193.128\/25", + "version":17842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.194.0", + "prefixLen":25, + "network":"193.62.194.0\/25", + "version":17841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.194.128", + "prefixLen":25, + "network":"193.62.194.128\/25", + "version":17840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.195.0", + "prefixLen":25, + "network":"193.62.195.0\/25", + "version":17839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.195.128", + "prefixLen":25, + "network":"193.62.195.128\/25", + "version":17838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.208.0", + "prefixLen":25, + "network":"193.62.208.0\/25", + "version":17837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.208.128", + "prefixLen":25, + "network":"193.62.208.128\/25", + "version":17836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.209.0", + "prefixLen":25, + "network":"193.62.209.0\/25", + "version":17835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.209.128", + "prefixLen":25, + "network":"193.62.209.128\/25", + "version":17834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.210.0", + "prefixLen":25, + "network":"193.62.210.0\/25", + "version":17833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.210.128", + "prefixLen":25, + "network":"193.62.210.128\/25", + "version":17832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.211.0", + "prefixLen":25, + "network":"193.62.211.0\/25", + "version":17831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.211.128", + "prefixLen":25, + "network":"193.62.211.128\/25", + "version":17830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.224.0", + "prefixLen":25, + "network":"193.62.224.0\/25", + "version":17829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.224.128", + "prefixLen":25, + "network":"193.62.224.128\/25", + "version":17828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.225.0", + "prefixLen":25, + "network":"193.62.225.0\/25", + "version":17827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.225.128", + "prefixLen":25, + "network":"193.62.225.128\/25", + "version":17826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.226.0", + "prefixLen":25, + "network":"193.62.226.0\/25", + "version":17825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.226.128", + "prefixLen":25, + "network":"193.62.226.128\/25", + "version":17824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.227.0", + "prefixLen":25, + "network":"193.62.227.0\/25", + "version":17823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.227.128", + "prefixLen":25, + "network":"193.62.227.128\/25", + "version":17822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.240.0", + "prefixLen":25, + "network":"193.62.240.0\/25", + "version":17821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.240.128", + "prefixLen":25, + "network":"193.62.240.128\/25", + "version":17820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.241.0", + "prefixLen":25, + "network":"193.62.241.0\/25", + "version":17819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.241.128", + "prefixLen":25, + "network":"193.62.241.128\/25", + "version":17818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.242.0", + "prefixLen":25, + "network":"193.62.242.0\/25", + "version":17817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.242.128", + "prefixLen":25, + "network":"193.62.242.128\/25", + "version":17816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.243.0", + "prefixLen":25, + "network":"193.62.243.0\/25", + "version":17815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.62.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.62.243.128", + "prefixLen":25, + "network":"193.62.243.128\/25", + "version":17814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64750 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.0.0", + "prefixLen":25, + "network":"193.63.0.0\/25", + "version":17941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.0.128", + "prefixLen":25, + "network":"193.63.0.128\/25", + "version":18068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.1.0", + "prefixLen":25, + "network":"193.63.1.0\/25", + "version":18067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.1.128", + "prefixLen":25, + "network":"193.63.1.128\/25", + "version":18066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.2.0", + "prefixLen":25, + "network":"193.63.2.0\/25", + "version":18065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.2.128", + "prefixLen":25, + "network":"193.63.2.128\/25", + "version":18064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.3.0", + "prefixLen":25, + "network":"193.63.3.0\/25", + "version":18063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.3.128", + "prefixLen":25, + "network":"193.63.3.128\/25", + "version":18062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.16.0", + "prefixLen":25, + "network":"193.63.16.0\/25", + "version":18061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.16.128", + "prefixLen":25, + "network":"193.63.16.128\/25", + "version":18060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.17.0", + "prefixLen":25, + "network":"193.63.17.0\/25", + "version":18059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.17.128", + "prefixLen":25, + "network":"193.63.17.128\/25", + "version":18058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.18.0", + "prefixLen":25, + "network":"193.63.18.0\/25", + "version":18057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.18.128", + "prefixLen":25, + "network":"193.63.18.128\/25", + "version":18056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.19.0", + "prefixLen":25, + "network":"193.63.19.0\/25", + "version":18055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.19.128", + "prefixLen":25, + "network":"193.63.19.128\/25", + "version":18054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.32.0", + "prefixLen":25, + "network":"193.63.32.0\/25", + "version":18053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.32.128", + "prefixLen":25, + "network":"193.63.32.128\/25", + "version":18052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.33.0", + "prefixLen":25, + "network":"193.63.33.0\/25", + "version":18051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.33.128", + "prefixLen":25, + "network":"193.63.33.128\/25", + "version":18050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.34.0", + "prefixLen":25, + "network":"193.63.34.0\/25", + "version":18049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.34.128", + "prefixLen":25, + "network":"193.63.34.128\/25", + "version":18048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.35.0", + "prefixLen":25, + "network":"193.63.35.0\/25", + "version":18047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.35.128", + "prefixLen":25, + "network":"193.63.35.128\/25", + "version":18046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.48.0", + "prefixLen":25, + "network":"193.63.48.0\/25", + "version":18045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.48.128", + "prefixLen":25, + "network":"193.63.48.128\/25", + "version":18044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.49.0", + "prefixLen":25, + "network":"193.63.49.0\/25", + "version":18043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.49.128", + "prefixLen":25, + "network":"193.63.49.128\/25", + "version":18042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.50.0", + "prefixLen":25, + "network":"193.63.50.0\/25", + "version":18041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.50.128", + "prefixLen":25, + "network":"193.63.50.128\/25", + "version":18040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.51.0", + "prefixLen":25, + "network":"193.63.51.0\/25", + "version":18039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.51.128", + "prefixLen":25, + "network":"193.63.51.128\/25", + "version":18038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.64.0", + "prefixLen":25, + "network":"193.63.64.0\/25", + "version":18037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.64.128", + "prefixLen":25, + "network":"193.63.64.128\/25", + "version":18036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.65.0", + "prefixLen":25, + "network":"193.63.65.0\/25", + "version":18035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.65.128", + "prefixLen":25, + "network":"193.63.65.128\/25", + "version":18034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.66.0", + "prefixLen":25, + "network":"193.63.66.0\/25", + "version":18033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.66.128", + "prefixLen":25, + "network":"193.63.66.128\/25", + "version":18032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.67.0", + "prefixLen":25, + "network":"193.63.67.0\/25", + "version":18031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.67.128", + "prefixLen":25, + "network":"193.63.67.128\/25", + "version":18030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.80.0", + "prefixLen":25, + "network":"193.63.80.0\/25", + "version":18029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.80.128", + "prefixLen":25, + "network":"193.63.80.128\/25", + "version":18028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.81.0", + "prefixLen":25, + "network":"193.63.81.0\/25", + "version":18027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.81.128", + "prefixLen":25, + "network":"193.63.81.128\/25", + "version":18026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.82.0", + "prefixLen":25, + "network":"193.63.82.0\/25", + "version":18025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.82.128", + "prefixLen":25, + "network":"193.63.82.128\/25", + "version":18024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.83.0", + "prefixLen":25, + "network":"193.63.83.0\/25", + "version":18023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.83.128", + "prefixLen":25, + "network":"193.63.83.128\/25", + "version":18022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.96.0", + "prefixLen":25, + "network":"193.63.96.0\/25", + "version":18021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.96.128", + "prefixLen":25, + "network":"193.63.96.128\/25", + "version":18020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.97.0", + "prefixLen":25, + "network":"193.63.97.0\/25", + "version":18019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.97.128", + "prefixLen":25, + "network":"193.63.97.128\/25", + "version":18018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.98.0", + "prefixLen":25, + "network":"193.63.98.0\/25", + "version":18017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.98.128", + "prefixLen":25, + "network":"193.63.98.128\/25", + "version":18016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.99.0", + "prefixLen":25, + "network":"193.63.99.0\/25", + "version":18015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.99.128", + "prefixLen":25, + "network":"193.63.99.128\/25", + "version":18014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.112.0", + "prefixLen":25, + "network":"193.63.112.0\/25", + "version":18013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.112.128", + "prefixLen":25, + "network":"193.63.112.128\/25", + "version":18012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.113.0", + "prefixLen":25, + "network":"193.63.113.0\/25", + "version":18011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.113.128", + "prefixLen":25, + "network":"193.63.113.128\/25", + "version":18010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.114.0", + "prefixLen":25, + "network":"193.63.114.0\/25", + "version":18009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.114.128", + "prefixLen":25, + "network":"193.63.114.128\/25", + "version":18008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.115.0", + "prefixLen":25, + "network":"193.63.115.0\/25", + "version":18007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.115.128", + "prefixLen":25, + "network":"193.63.115.128\/25", + "version":18006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.128.0", + "prefixLen":25, + "network":"193.63.128.0\/25", + "version":18005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.128.128", + "prefixLen":25, + "network":"193.63.128.128\/25", + "version":18004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.129.0", + "prefixLen":25, + "network":"193.63.129.0\/25", + "version":18003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.129.128", + "prefixLen":25, + "network":"193.63.129.128\/25", + "version":18002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.130.0", + "prefixLen":25, + "network":"193.63.130.0\/25", + "version":18001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.130.128", + "prefixLen":25, + "network":"193.63.130.128\/25", + "version":18000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.131.0", + "prefixLen":25, + "network":"193.63.131.0\/25", + "version":17999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.131.128", + "prefixLen":25, + "network":"193.63.131.128\/25", + "version":17998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.144.0", + "prefixLen":25, + "network":"193.63.144.0\/25", + "version":17997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.144.128", + "prefixLen":25, + "network":"193.63.144.128\/25", + "version":17996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.145.0", + "prefixLen":25, + "network":"193.63.145.0\/25", + "version":17995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.145.128", + "prefixLen":25, + "network":"193.63.145.128\/25", + "version":17994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.146.0", + "prefixLen":25, + "network":"193.63.146.0\/25", + "version":17993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.146.128", + "prefixLen":25, + "network":"193.63.146.128\/25", + "version":17992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.147.0", + "prefixLen":25, + "network":"193.63.147.0\/25", + "version":17991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.147.128", + "prefixLen":25, + "network":"193.63.147.128\/25", + "version":17990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.160.0", + "prefixLen":25, + "network":"193.63.160.0\/25", + "version":17989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.160.128", + "prefixLen":25, + "network":"193.63.160.128\/25", + "version":17988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.161.0", + "prefixLen":25, + "network":"193.63.161.0\/25", + "version":17987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.161.128", + "prefixLen":25, + "network":"193.63.161.128\/25", + "version":17986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.162.0", + "prefixLen":25, + "network":"193.63.162.0\/25", + "version":17985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.162.128", + "prefixLen":25, + "network":"193.63.162.128\/25", + "version":17984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.163.0", + "prefixLen":25, + "network":"193.63.163.0\/25", + "version":17983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.163.128", + "prefixLen":25, + "network":"193.63.163.128\/25", + "version":17982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.176.0", + "prefixLen":25, + "network":"193.63.176.0\/25", + "version":17981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.176.128", + "prefixLen":25, + "network":"193.63.176.128\/25", + "version":17980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.177.0", + "prefixLen":25, + "network":"193.63.177.0\/25", + "version":17979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.177.128", + "prefixLen":25, + "network":"193.63.177.128\/25", + "version":17978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.178.0", + "prefixLen":25, + "network":"193.63.178.0\/25", + "version":17977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.178.128", + "prefixLen":25, + "network":"193.63.178.128\/25", + "version":17976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.179.0", + "prefixLen":25, + "network":"193.63.179.0\/25", + "version":17975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.179.128", + "prefixLen":25, + "network":"193.63.179.128\/25", + "version":17974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.192.0", + "prefixLen":25, + "network":"193.63.192.0\/25", + "version":17973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.192.128", + "prefixLen":25, + "network":"193.63.192.128\/25", + "version":17972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.193.0", + "prefixLen":25, + "network":"193.63.193.0\/25", + "version":17971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.193.128", + "prefixLen":25, + "network":"193.63.193.128\/25", + "version":17970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.194.0", + "prefixLen":25, + "network":"193.63.194.0\/25", + "version":17969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.194.128", + "prefixLen":25, + "network":"193.63.194.128\/25", + "version":17968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.195.0", + "prefixLen":25, + "network":"193.63.195.0\/25", + "version":17967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.195.128", + "prefixLen":25, + "network":"193.63.195.128\/25", + "version":17966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.208.0", + "prefixLen":25, + "network":"193.63.208.0\/25", + "version":17965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.208.128", + "prefixLen":25, + "network":"193.63.208.128\/25", + "version":17964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.209.0", + "prefixLen":25, + "network":"193.63.209.0\/25", + "version":17963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.209.128", + "prefixLen":25, + "network":"193.63.209.128\/25", + "version":17962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.210.0", + "prefixLen":25, + "network":"193.63.210.0\/25", + "version":17961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.210.128", + "prefixLen":25, + "network":"193.63.210.128\/25", + "version":17960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.211.0", + "prefixLen":25, + "network":"193.63.211.0\/25", + "version":17959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.211.128", + "prefixLen":25, + "network":"193.63.211.128\/25", + "version":17958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.224.0", + "prefixLen":25, + "network":"193.63.224.0\/25", + "version":17957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.224.128", + "prefixLen":25, + "network":"193.63.224.128\/25", + "version":17956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.225.0", + "prefixLen":25, + "network":"193.63.225.0\/25", + "version":17955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.225.128", + "prefixLen":25, + "network":"193.63.225.128\/25", + "version":17954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.226.0", + "prefixLen":25, + "network":"193.63.226.0\/25", + "version":17953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.226.128", + "prefixLen":25, + "network":"193.63.226.128\/25", + "version":17952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.227.0", + "prefixLen":25, + "network":"193.63.227.0\/25", + "version":17951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.227.128", + "prefixLen":25, + "network":"193.63.227.128\/25", + "version":17950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.240.0", + "prefixLen":25, + "network":"193.63.240.0\/25", + "version":17949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.240.128", + "prefixLen":25, + "network":"193.63.240.128\/25", + "version":17948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.241.0", + "prefixLen":25, + "network":"193.63.241.0\/25", + "version":17947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.241.128", + "prefixLen":25, + "network":"193.63.241.128\/25", + "version":17946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.242.0", + "prefixLen":25, + "network":"193.63.242.0\/25", + "version":17945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.242.128", + "prefixLen":25, + "network":"193.63.242.128\/25", + "version":17944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.243.0", + "prefixLen":25, + "network":"193.63.243.0\/25", + "version":17943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.63.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.63.243.128", + "prefixLen":25, + "network":"193.63.243.128\/25", + "version":17942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64751 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.0.0", + "prefixLen":25, + "network":"193.64.0.0\/25", + "version":18069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.0.128", + "prefixLen":25, + "network":"193.64.0.128\/25", + "version":18196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.1.0", + "prefixLen":25, + "network":"193.64.1.0\/25", + "version":18195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.1.128", + "prefixLen":25, + "network":"193.64.1.128\/25", + "version":18194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.2.0", + "prefixLen":25, + "network":"193.64.2.0\/25", + "version":18193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.2.128", + "prefixLen":25, + "network":"193.64.2.128\/25", + "version":18192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.3.0", + "prefixLen":25, + "network":"193.64.3.0\/25", + "version":18191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.3.128", + "prefixLen":25, + "network":"193.64.3.128\/25", + "version":18190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.16.0", + "prefixLen":25, + "network":"193.64.16.0\/25", + "version":18189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.16.128", + "prefixLen":25, + "network":"193.64.16.128\/25", + "version":18188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.17.0", + "prefixLen":25, + "network":"193.64.17.0\/25", + "version":18187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.17.128", + "prefixLen":25, + "network":"193.64.17.128\/25", + "version":18186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.18.0", + "prefixLen":25, + "network":"193.64.18.0\/25", + "version":18185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.18.128", + "prefixLen":25, + "network":"193.64.18.128\/25", + "version":18184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.19.0", + "prefixLen":25, + "network":"193.64.19.0\/25", + "version":18183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.19.128", + "prefixLen":25, + "network":"193.64.19.128\/25", + "version":18182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.32.0", + "prefixLen":25, + "network":"193.64.32.0\/25", + "version":18181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.32.128", + "prefixLen":25, + "network":"193.64.32.128\/25", + "version":18180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.33.0", + "prefixLen":25, + "network":"193.64.33.0\/25", + "version":18179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.33.128", + "prefixLen":25, + "network":"193.64.33.128\/25", + "version":18178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.34.0", + "prefixLen":25, + "network":"193.64.34.0\/25", + "version":18177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.34.128", + "prefixLen":25, + "network":"193.64.34.128\/25", + "version":18176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.35.0", + "prefixLen":25, + "network":"193.64.35.0\/25", + "version":18175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.35.128", + "prefixLen":25, + "network":"193.64.35.128\/25", + "version":18174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.48.0", + "prefixLen":25, + "network":"193.64.48.0\/25", + "version":18173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.48.128", + "prefixLen":25, + "network":"193.64.48.128\/25", + "version":18172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.49.0", + "prefixLen":25, + "network":"193.64.49.0\/25", + "version":18171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.49.128", + "prefixLen":25, + "network":"193.64.49.128\/25", + "version":18170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.50.0", + "prefixLen":25, + "network":"193.64.50.0\/25", + "version":18169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.50.128", + "prefixLen":25, + "network":"193.64.50.128\/25", + "version":18168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.51.0", + "prefixLen":25, + "network":"193.64.51.0\/25", + "version":18167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.51.128", + "prefixLen":25, + "network":"193.64.51.128\/25", + "version":18166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.64.0", + "prefixLen":25, + "network":"193.64.64.0\/25", + "version":18165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.64.128", + "prefixLen":25, + "network":"193.64.64.128\/25", + "version":18164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.65.0", + "prefixLen":25, + "network":"193.64.65.0\/25", + "version":18163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.65.128", + "prefixLen":25, + "network":"193.64.65.128\/25", + "version":18162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.66.0", + "prefixLen":25, + "network":"193.64.66.0\/25", + "version":18161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.66.128", + "prefixLen":25, + "network":"193.64.66.128\/25", + "version":18160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.67.0", + "prefixLen":25, + "network":"193.64.67.0\/25", + "version":18159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.67.128", + "prefixLen":25, + "network":"193.64.67.128\/25", + "version":18158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.80.0", + "prefixLen":25, + "network":"193.64.80.0\/25", + "version":18157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.80.128", + "prefixLen":25, + "network":"193.64.80.128\/25", + "version":18156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.81.0", + "prefixLen":25, + "network":"193.64.81.0\/25", + "version":18155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.81.128", + "prefixLen":25, + "network":"193.64.81.128\/25", + "version":18154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.82.0", + "prefixLen":25, + "network":"193.64.82.0\/25", + "version":18153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.82.128", + "prefixLen":25, + "network":"193.64.82.128\/25", + "version":18152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.83.0", + "prefixLen":25, + "network":"193.64.83.0\/25", + "version":18151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.83.128", + "prefixLen":25, + "network":"193.64.83.128\/25", + "version":18150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.96.0", + "prefixLen":25, + "network":"193.64.96.0\/25", + "version":18149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.96.128", + "prefixLen":25, + "network":"193.64.96.128\/25", + "version":18148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.97.0", + "prefixLen":25, + "network":"193.64.97.0\/25", + "version":18147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.97.128", + "prefixLen":25, + "network":"193.64.97.128\/25", + "version":18146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.98.0", + "prefixLen":25, + "network":"193.64.98.0\/25", + "version":18145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.98.128", + "prefixLen":25, + "network":"193.64.98.128\/25", + "version":18144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.99.0", + "prefixLen":25, + "network":"193.64.99.0\/25", + "version":18143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.99.128", + "prefixLen":25, + "network":"193.64.99.128\/25", + "version":18142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.112.0", + "prefixLen":25, + "network":"193.64.112.0\/25", + "version":18141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.112.128", + "prefixLen":25, + "network":"193.64.112.128\/25", + "version":18140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.113.0", + "prefixLen":25, + "network":"193.64.113.0\/25", + "version":18139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.113.128", + "prefixLen":25, + "network":"193.64.113.128\/25", + "version":18138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.114.0", + "prefixLen":25, + "network":"193.64.114.0\/25", + "version":18137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.114.128", + "prefixLen":25, + "network":"193.64.114.128\/25", + "version":18136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.115.0", + "prefixLen":25, + "network":"193.64.115.0\/25", + "version":18135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.115.128", + "prefixLen":25, + "network":"193.64.115.128\/25", + "version":18134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.128.0", + "prefixLen":25, + "network":"193.64.128.0\/25", + "version":18133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.128.128", + "prefixLen":25, + "network":"193.64.128.128\/25", + "version":18132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.129.0", + "prefixLen":25, + "network":"193.64.129.0\/25", + "version":18131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.129.128", + "prefixLen":25, + "network":"193.64.129.128\/25", + "version":18130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.130.0", + "prefixLen":25, + "network":"193.64.130.0\/25", + "version":18129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.130.128", + "prefixLen":25, + "network":"193.64.130.128\/25", + "version":18128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.131.0", + "prefixLen":25, + "network":"193.64.131.0\/25", + "version":18127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.131.128", + "prefixLen":25, + "network":"193.64.131.128\/25", + "version":18126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.144.0", + "prefixLen":25, + "network":"193.64.144.0\/25", + "version":18125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.144.128", + "prefixLen":25, + "network":"193.64.144.128\/25", + "version":18124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.145.0", + "prefixLen":25, + "network":"193.64.145.0\/25", + "version":18123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.145.128", + "prefixLen":25, + "network":"193.64.145.128\/25", + "version":18122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.146.0", + "prefixLen":25, + "network":"193.64.146.0\/25", + "version":18121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.146.128", + "prefixLen":25, + "network":"193.64.146.128\/25", + "version":18120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.147.0", + "prefixLen":25, + "network":"193.64.147.0\/25", + "version":18119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.147.128", + "prefixLen":25, + "network":"193.64.147.128\/25", + "version":18118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.160.0", + "prefixLen":25, + "network":"193.64.160.0\/25", + "version":18117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.160.128", + "prefixLen":25, + "network":"193.64.160.128\/25", + "version":18116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.161.0", + "prefixLen":25, + "network":"193.64.161.0\/25", + "version":18115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.161.128", + "prefixLen":25, + "network":"193.64.161.128\/25", + "version":18114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.162.0", + "prefixLen":25, + "network":"193.64.162.0\/25", + "version":18113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.162.128", + "prefixLen":25, + "network":"193.64.162.128\/25", + "version":18112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.163.0", + "prefixLen":25, + "network":"193.64.163.0\/25", + "version":18111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.163.128", + "prefixLen":25, + "network":"193.64.163.128\/25", + "version":18110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.176.0", + "prefixLen":25, + "network":"193.64.176.0\/25", + "version":18109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.176.128", + "prefixLen":25, + "network":"193.64.176.128\/25", + "version":18108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.177.0", + "prefixLen":25, + "network":"193.64.177.0\/25", + "version":18107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.177.128", + "prefixLen":25, + "network":"193.64.177.128\/25", + "version":18106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.178.0", + "prefixLen":25, + "network":"193.64.178.0\/25", + "version":18105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.178.128", + "prefixLen":25, + "network":"193.64.178.128\/25", + "version":18104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.179.0", + "prefixLen":25, + "network":"193.64.179.0\/25", + "version":18103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.179.128", + "prefixLen":25, + "network":"193.64.179.128\/25", + "version":18102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.192.0", + "prefixLen":25, + "network":"193.64.192.0\/25", + "version":18101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.192.128", + "prefixLen":25, + "network":"193.64.192.128\/25", + "version":18100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.193.0", + "prefixLen":25, + "network":"193.64.193.0\/25", + "version":18099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.193.128", + "prefixLen":25, + "network":"193.64.193.128\/25", + "version":18098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.194.0", + "prefixLen":25, + "network":"193.64.194.0\/25", + "version":18097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.194.128", + "prefixLen":25, + "network":"193.64.194.128\/25", + "version":18096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.195.0", + "prefixLen":25, + "network":"193.64.195.0\/25", + "version":18095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.195.128", + "prefixLen":25, + "network":"193.64.195.128\/25", + "version":18094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.208.0", + "prefixLen":25, + "network":"193.64.208.0\/25", + "version":18093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.208.128", + "prefixLen":25, + "network":"193.64.208.128\/25", + "version":18092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.209.0", + "prefixLen":25, + "network":"193.64.209.0\/25", + "version":18091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.209.128", + "prefixLen":25, + "network":"193.64.209.128\/25", + "version":18090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.210.0", + "prefixLen":25, + "network":"193.64.210.0\/25", + "version":18089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.210.128", + "prefixLen":25, + "network":"193.64.210.128\/25", + "version":18088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.211.0", + "prefixLen":25, + "network":"193.64.211.0\/25", + "version":18087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.211.128", + "prefixLen":25, + "network":"193.64.211.128\/25", + "version":18086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.224.0", + "prefixLen":25, + "network":"193.64.224.0\/25", + "version":18085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.224.128", + "prefixLen":25, + "network":"193.64.224.128\/25", + "version":18084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.225.0", + "prefixLen":25, + "network":"193.64.225.0\/25", + "version":18083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.225.128", + "prefixLen":25, + "network":"193.64.225.128\/25", + "version":18082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.226.0", + "prefixLen":25, + "network":"193.64.226.0\/25", + "version":18081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.226.128", + "prefixLen":25, + "network":"193.64.226.128\/25", + "version":18080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.227.0", + "prefixLen":25, + "network":"193.64.227.0\/25", + "version":18079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.227.128", + "prefixLen":25, + "network":"193.64.227.128\/25", + "version":18078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.240.0", + "prefixLen":25, + "network":"193.64.240.0\/25", + "version":18077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.240.128", + "prefixLen":25, + "network":"193.64.240.128\/25", + "version":18076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.241.0", + "prefixLen":25, + "network":"193.64.241.0\/25", + "version":18075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.241.128", + "prefixLen":25, + "network":"193.64.241.128\/25", + "version":18074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.242.0", + "prefixLen":25, + "network":"193.64.242.0\/25", + "version":18073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.242.128", + "prefixLen":25, + "network":"193.64.242.128\/25", + "version":18072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.243.0", + "prefixLen":25, + "network":"193.64.243.0\/25", + "version":18071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.64.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.64.243.128", + "prefixLen":25, + "network":"193.64.243.128\/25", + "version":18070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64752 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.0.0", + "prefixLen":25, + "network":"193.65.0.0\/25", + "version":18197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.0.128", + "prefixLen":25, + "network":"193.65.0.128\/25", + "version":18324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.1.0", + "prefixLen":25, + "network":"193.65.1.0\/25", + "version":18323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.1.128", + "prefixLen":25, + "network":"193.65.1.128\/25", + "version":18322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.2.0", + "prefixLen":25, + "network":"193.65.2.0\/25", + "version":18321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.2.128", + "prefixLen":25, + "network":"193.65.2.128\/25", + "version":18320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.3.0", + "prefixLen":25, + "network":"193.65.3.0\/25", + "version":18319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.3.128", + "prefixLen":25, + "network":"193.65.3.128\/25", + "version":18318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.16.0", + "prefixLen":25, + "network":"193.65.16.0\/25", + "version":18317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.16.128", + "prefixLen":25, + "network":"193.65.16.128\/25", + "version":18316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.17.0", + "prefixLen":25, + "network":"193.65.17.0\/25", + "version":18315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.17.128", + "prefixLen":25, + "network":"193.65.17.128\/25", + "version":18314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.18.0", + "prefixLen":25, + "network":"193.65.18.0\/25", + "version":18313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.18.128", + "prefixLen":25, + "network":"193.65.18.128\/25", + "version":18312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.19.0", + "prefixLen":25, + "network":"193.65.19.0\/25", + "version":18311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.19.128", + "prefixLen":25, + "network":"193.65.19.128\/25", + "version":18310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.32.0", + "prefixLen":25, + "network":"193.65.32.0\/25", + "version":18309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.32.128", + "prefixLen":25, + "network":"193.65.32.128\/25", + "version":18308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.33.0", + "prefixLen":25, + "network":"193.65.33.0\/25", + "version":18307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.33.128", + "prefixLen":25, + "network":"193.65.33.128\/25", + "version":18306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.34.0", + "prefixLen":25, + "network":"193.65.34.0\/25", + "version":18305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.34.128", + "prefixLen":25, + "network":"193.65.34.128\/25", + "version":18304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.35.0", + "prefixLen":25, + "network":"193.65.35.0\/25", + "version":18303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.35.128", + "prefixLen":25, + "network":"193.65.35.128\/25", + "version":18302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.48.0", + "prefixLen":25, + "network":"193.65.48.0\/25", + "version":18301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.48.128", + "prefixLen":25, + "network":"193.65.48.128\/25", + "version":18300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.49.0", + "prefixLen":25, + "network":"193.65.49.0\/25", + "version":18299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.49.128", + "prefixLen":25, + "network":"193.65.49.128\/25", + "version":18298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.50.0", + "prefixLen":25, + "network":"193.65.50.0\/25", + "version":18297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.50.128", + "prefixLen":25, + "network":"193.65.50.128\/25", + "version":18296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.51.0", + "prefixLen":25, + "network":"193.65.51.0\/25", + "version":18295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.51.128", + "prefixLen":25, + "network":"193.65.51.128\/25", + "version":18294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.64.0", + "prefixLen":25, + "network":"193.65.64.0\/25", + "version":18293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.64.128", + "prefixLen":25, + "network":"193.65.64.128\/25", + "version":18292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.65.0", + "prefixLen":25, + "network":"193.65.65.0\/25", + "version":18291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.65.128", + "prefixLen":25, + "network":"193.65.65.128\/25", + "version":18290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.66.0", + "prefixLen":25, + "network":"193.65.66.0\/25", + "version":18289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.66.128", + "prefixLen":25, + "network":"193.65.66.128\/25", + "version":18288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.67.0", + "prefixLen":25, + "network":"193.65.67.0\/25", + "version":18287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.67.128", + "prefixLen":25, + "network":"193.65.67.128\/25", + "version":18286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.80.0", + "prefixLen":25, + "network":"193.65.80.0\/25", + "version":18285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.80.128", + "prefixLen":25, + "network":"193.65.80.128\/25", + "version":18284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.81.0", + "prefixLen":25, + "network":"193.65.81.0\/25", + "version":18283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.81.128", + "prefixLen":25, + "network":"193.65.81.128\/25", + "version":18282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.82.0", + "prefixLen":25, + "network":"193.65.82.0\/25", + "version":18281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.82.128", + "prefixLen":25, + "network":"193.65.82.128\/25", + "version":18280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.83.0", + "prefixLen":25, + "network":"193.65.83.0\/25", + "version":18279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.83.128", + "prefixLen":25, + "network":"193.65.83.128\/25", + "version":18278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.96.0", + "prefixLen":25, + "network":"193.65.96.0\/25", + "version":18277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.96.128", + "prefixLen":25, + "network":"193.65.96.128\/25", + "version":18276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.97.0", + "prefixLen":25, + "network":"193.65.97.0\/25", + "version":18275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.97.128", + "prefixLen":25, + "network":"193.65.97.128\/25", + "version":18274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.98.0", + "prefixLen":25, + "network":"193.65.98.0\/25", + "version":18273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.98.128", + "prefixLen":25, + "network":"193.65.98.128\/25", + "version":18272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.99.0", + "prefixLen":25, + "network":"193.65.99.0\/25", + "version":18271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.99.128", + "prefixLen":25, + "network":"193.65.99.128\/25", + "version":18270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.112.0", + "prefixLen":25, + "network":"193.65.112.0\/25", + "version":18269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.112.128", + "prefixLen":25, + "network":"193.65.112.128\/25", + "version":18268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.113.0", + "prefixLen":25, + "network":"193.65.113.0\/25", + "version":18267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.113.128", + "prefixLen":25, + "network":"193.65.113.128\/25", + "version":18266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.114.0", + "prefixLen":25, + "network":"193.65.114.0\/25", + "version":18265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.114.128", + "prefixLen":25, + "network":"193.65.114.128\/25", + "version":18264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.115.0", + "prefixLen":25, + "network":"193.65.115.0\/25", + "version":18263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.115.128", + "prefixLen":25, + "network":"193.65.115.128\/25", + "version":18262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.128.0", + "prefixLen":25, + "network":"193.65.128.0\/25", + "version":18261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.128.128", + "prefixLen":25, + "network":"193.65.128.128\/25", + "version":18260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.129.0", + "prefixLen":25, + "network":"193.65.129.0\/25", + "version":18259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.129.128", + "prefixLen":25, + "network":"193.65.129.128\/25", + "version":18258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.130.0", + "prefixLen":25, + "network":"193.65.130.0\/25", + "version":18257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.130.128", + "prefixLen":25, + "network":"193.65.130.128\/25", + "version":18256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.131.0", + "prefixLen":25, + "network":"193.65.131.0\/25", + "version":18255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.131.128", + "prefixLen":25, + "network":"193.65.131.128\/25", + "version":18254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.144.0", + "prefixLen":25, + "network":"193.65.144.0\/25", + "version":18253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.144.128", + "prefixLen":25, + "network":"193.65.144.128\/25", + "version":18252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.145.0", + "prefixLen":25, + "network":"193.65.145.0\/25", + "version":18251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.145.128", + "prefixLen":25, + "network":"193.65.145.128\/25", + "version":18250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.146.0", + "prefixLen":25, + "network":"193.65.146.0\/25", + "version":18249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.146.128", + "prefixLen":25, + "network":"193.65.146.128\/25", + "version":18248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.147.0", + "prefixLen":25, + "network":"193.65.147.0\/25", + "version":18247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.147.128", + "prefixLen":25, + "network":"193.65.147.128\/25", + "version":18246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.160.0", + "prefixLen":25, + "network":"193.65.160.0\/25", + "version":18245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.160.128", + "prefixLen":25, + "network":"193.65.160.128\/25", + "version":18244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.161.0", + "prefixLen":25, + "network":"193.65.161.0\/25", + "version":18243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.161.128", + "prefixLen":25, + "network":"193.65.161.128\/25", + "version":18242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.162.0", + "prefixLen":25, + "network":"193.65.162.0\/25", + "version":18241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.162.128", + "prefixLen":25, + "network":"193.65.162.128\/25", + "version":18240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.163.0", + "prefixLen":25, + "network":"193.65.163.0\/25", + "version":18239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.163.128", + "prefixLen":25, + "network":"193.65.163.128\/25", + "version":18238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.176.0", + "prefixLen":25, + "network":"193.65.176.0\/25", + "version":18237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.176.128", + "prefixLen":25, + "network":"193.65.176.128\/25", + "version":18236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.177.0", + "prefixLen":25, + "network":"193.65.177.0\/25", + "version":18235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.177.128", + "prefixLen":25, + "network":"193.65.177.128\/25", + "version":18234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.178.0", + "prefixLen":25, + "network":"193.65.178.0\/25", + "version":18233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.178.128", + "prefixLen":25, + "network":"193.65.178.128\/25", + "version":18232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.179.0", + "prefixLen":25, + "network":"193.65.179.0\/25", + "version":18231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.179.128", + "prefixLen":25, + "network":"193.65.179.128\/25", + "version":18230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.192.0", + "prefixLen":25, + "network":"193.65.192.0\/25", + "version":18229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.192.128", + "prefixLen":25, + "network":"193.65.192.128\/25", + "version":18228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.193.0", + "prefixLen":25, + "network":"193.65.193.0\/25", + "version":18227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.193.128", + "prefixLen":25, + "network":"193.65.193.128\/25", + "version":18226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.194.0", + "prefixLen":25, + "network":"193.65.194.0\/25", + "version":18225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.194.128", + "prefixLen":25, + "network":"193.65.194.128\/25", + "version":18224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.195.0", + "prefixLen":25, + "network":"193.65.195.0\/25", + "version":18223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.195.128", + "prefixLen":25, + "network":"193.65.195.128\/25", + "version":18222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.208.0", + "prefixLen":25, + "network":"193.65.208.0\/25", + "version":18221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.208.128", + "prefixLen":25, + "network":"193.65.208.128\/25", + "version":18220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.209.0", + "prefixLen":25, + "network":"193.65.209.0\/25", + "version":18219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.209.128", + "prefixLen":25, + "network":"193.65.209.128\/25", + "version":18218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.210.0", + "prefixLen":25, + "network":"193.65.210.0\/25", + "version":18217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.210.128", + "prefixLen":25, + "network":"193.65.210.128\/25", + "version":18216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.211.0", + "prefixLen":25, + "network":"193.65.211.0\/25", + "version":18215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.211.128", + "prefixLen":25, + "network":"193.65.211.128\/25", + "version":18214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.224.0", + "prefixLen":25, + "network":"193.65.224.0\/25", + "version":18213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.224.128", + "prefixLen":25, + "network":"193.65.224.128\/25", + "version":18212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.225.0", + "prefixLen":25, + "network":"193.65.225.0\/25", + "version":18211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.225.128", + "prefixLen":25, + "network":"193.65.225.128\/25", + "version":18210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.226.0", + "prefixLen":25, + "network":"193.65.226.0\/25", + "version":18209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.226.128", + "prefixLen":25, + "network":"193.65.226.128\/25", + "version":18208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.227.0", + "prefixLen":25, + "network":"193.65.227.0\/25", + "version":18207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.227.128", + "prefixLen":25, + "network":"193.65.227.128\/25", + "version":18206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.240.0", + "prefixLen":25, + "network":"193.65.240.0\/25", + "version":18205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.240.128", + "prefixLen":25, + "network":"193.65.240.128\/25", + "version":18204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.241.0", + "prefixLen":25, + "network":"193.65.241.0\/25", + "version":18203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.241.128", + "prefixLen":25, + "network":"193.65.241.128\/25", + "version":18202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.242.0", + "prefixLen":25, + "network":"193.65.242.0\/25", + "version":18201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.242.128", + "prefixLen":25, + "network":"193.65.242.128\/25", + "version":18200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.243.0", + "prefixLen":25, + "network":"193.65.243.0\/25", + "version":18199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.65.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.65.243.128", + "prefixLen":25, + "network":"193.65.243.128\/25", + "version":18198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64753 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.0.0", + "prefixLen":25, + "network":"193.66.0.0\/25", + "version":18325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.0.128", + "prefixLen":25, + "network":"193.66.0.128\/25", + "version":18452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.1.0", + "prefixLen":25, + "network":"193.66.1.0\/25", + "version":18451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.1.128", + "prefixLen":25, + "network":"193.66.1.128\/25", + "version":18450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.2.0", + "prefixLen":25, + "network":"193.66.2.0\/25", + "version":18449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.2.128", + "prefixLen":25, + "network":"193.66.2.128\/25", + "version":18448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.3.0", + "prefixLen":25, + "network":"193.66.3.0\/25", + "version":18447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.3.128", + "prefixLen":25, + "network":"193.66.3.128\/25", + "version":18446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.16.0", + "prefixLen":25, + "network":"193.66.16.0\/25", + "version":18445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.16.128", + "prefixLen":25, + "network":"193.66.16.128\/25", + "version":18444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.17.0", + "prefixLen":25, + "network":"193.66.17.0\/25", + "version":18443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.17.128", + "prefixLen":25, + "network":"193.66.17.128\/25", + "version":18442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.18.0", + "prefixLen":25, + "network":"193.66.18.0\/25", + "version":18441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.18.128", + "prefixLen":25, + "network":"193.66.18.128\/25", + "version":18440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.19.0", + "prefixLen":25, + "network":"193.66.19.0\/25", + "version":18439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.19.128", + "prefixLen":25, + "network":"193.66.19.128\/25", + "version":18438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.32.0", + "prefixLen":25, + "network":"193.66.32.0\/25", + "version":18437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.32.128", + "prefixLen":25, + "network":"193.66.32.128\/25", + "version":18436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.33.0", + "prefixLen":25, + "network":"193.66.33.0\/25", + "version":18435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.33.128", + "prefixLen":25, + "network":"193.66.33.128\/25", + "version":18434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.34.0", + "prefixLen":25, + "network":"193.66.34.0\/25", + "version":18433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.34.128", + "prefixLen":25, + "network":"193.66.34.128\/25", + "version":18432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.35.0", + "prefixLen":25, + "network":"193.66.35.0\/25", + "version":18431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.35.128", + "prefixLen":25, + "network":"193.66.35.128\/25", + "version":18430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.48.0", + "prefixLen":25, + "network":"193.66.48.0\/25", + "version":18429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.48.128", + "prefixLen":25, + "network":"193.66.48.128\/25", + "version":18428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.49.0", + "prefixLen":25, + "network":"193.66.49.0\/25", + "version":18427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.49.128", + "prefixLen":25, + "network":"193.66.49.128\/25", + "version":18426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.50.0", + "prefixLen":25, + "network":"193.66.50.0\/25", + "version":18425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.50.128", + "prefixLen":25, + "network":"193.66.50.128\/25", + "version":18424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.51.0", + "prefixLen":25, + "network":"193.66.51.0\/25", + "version":18423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.51.128", + "prefixLen":25, + "network":"193.66.51.128\/25", + "version":18422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.64.0", + "prefixLen":25, + "network":"193.66.64.0\/25", + "version":18421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.64.128", + "prefixLen":25, + "network":"193.66.64.128\/25", + "version":18420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.65.0", + "prefixLen":25, + "network":"193.66.65.0\/25", + "version":18419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.65.128", + "prefixLen":25, + "network":"193.66.65.128\/25", + "version":18418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.66.0", + "prefixLen":25, + "network":"193.66.66.0\/25", + "version":18417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.66.128", + "prefixLen":25, + "network":"193.66.66.128\/25", + "version":18416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.67.0", + "prefixLen":25, + "network":"193.66.67.0\/25", + "version":18415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.67.128", + "prefixLen":25, + "network":"193.66.67.128\/25", + "version":18414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.80.0", + "prefixLen":25, + "network":"193.66.80.0\/25", + "version":18413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.80.128", + "prefixLen":25, + "network":"193.66.80.128\/25", + "version":18412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.81.0", + "prefixLen":25, + "network":"193.66.81.0\/25", + "version":18411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.81.128", + "prefixLen":25, + "network":"193.66.81.128\/25", + "version":18410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.82.0", + "prefixLen":25, + "network":"193.66.82.0\/25", + "version":18409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.82.128", + "prefixLen":25, + "network":"193.66.82.128\/25", + "version":18408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.83.0", + "prefixLen":25, + "network":"193.66.83.0\/25", + "version":18407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.83.128", + "prefixLen":25, + "network":"193.66.83.128\/25", + "version":18406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.96.0", + "prefixLen":25, + "network":"193.66.96.0\/25", + "version":18405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.96.128", + "prefixLen":25, + "network":"193.66.96.128\/25", + "version":18404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.97.0", + "prefixLen":25, + "network":"193.66.97.0\/25", + "version":18403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.97.128", + "prefixLen":25, + "network":"193.66.97.128\/25", + "version":18402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.98.0", + "prefixLen":25, + "network":"193.66.98.0\/25", + "version":18401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.98.128", + "prefixLen":25, + "network":"193.66.98.128\/25", + "version":18400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.99.0", + "prefixLen":25, + "network":"193.66.99.0\/25", + "version":18399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.99.128", + "prefixLen":25, + "network":"193.66.99.128\/25", + "version":18398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.112.0", + "prefixLen":25, + "network":"193.66.112.0\/25", + "version":18397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.112.128", + "prefixLen":25, + "network":"193.66.112.128\/25", + "version":18396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.113.0", + "prefixLen":25, + "network":"193.66.113.0\/25", + "version":18395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.113.128", + "prefixLen":25, + "network":"193.66.113.128\/25", + "version":18394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.114.0", + "prefixLen":25, + "network":"193.66.114.0\/25", + "version":18393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.114.128", + "prefixLen":25, + "network":"193.66.114.128\/25", + "version":18392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.115.0", + "prefixLen":25, + "network":"193.66.115.0\/25", + "version":18391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.115.128", + "prefixLen":25, + "network":"193.66.115.128\/25", + "version":18390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.128.0", + "prefixLen":25, + "network":"193.66.128.0\/25", + "version":18389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.128.128", + "prefixLen":25, + "network":"193.66.128.128\/25", + "version":18388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.129.0", + "prefixLen":25, + "network":"193.66.129.0\/25", + "version":18387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.129.128", + "prefixLen":25, + "network":"193.66.129.128\/25", + "version":18386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.130.0", + "prefixLen":25, + "network":"193.66.130.0\/25", + "version":18385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.130.128", + "prefixLen":25, + "network":"193.66.130.128\/25", + "version":18384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.131.0", + "prefixLen":25, + "network":"193.66.131.0\/25", + "version":18383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.131.128", + "prefixLen":25, + "network":"193.66.131.128\/25", + "version":18382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.144.0", + "prefixLen":25, + "network":"193.66.144.0\/25", + "version":18381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.144.128", + "prefixLen":25, + "network":"193.66.144.128\/25", + "version":18380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.145.0", + "prefixLen":25, + "network":"193.66.145.0\/25", + "version":18379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.145.128", + "prefixLen":25, + "network":"193.66.145.128\/25", + "version":18378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.146.0", + "prefixLen":25, + "network":"193.66.146.0\/25", + "version":18377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.146.128", + "prefixLen":25, + "network":"193.66.146.128\/25", + "version":18376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.147.0", + "prefixLen":25, + "network":"193.66.147.0\/25", + "version":18375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.147.128", + "prefixLen":25, + "network":"193.66.147.128\/25", + "version":18374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.160.0", + "prefixLen":25, + "network":"193.66.160.0\/25", + "version":18373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.160.128", + "prefixLen":25, + "network":"193.66.160.128\/25", + "version":18372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.161.0", + "prefixLen":25, + "network":"193.66.161.0\/25", + "version":18371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.161.128", + "prefixLen":25, + "network":"193.66.161.128\/25", + "version":18370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.162.0", + "prefixLen":25, + "network":"193.66.162.0\/25", + "version":18369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.162.128", + "prefixLen":25, + "network":"193.66.162.128\/25", + "version":18368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.163.0", + "prefixLen":25, + "network":"193.66.163.0\/25", + "version":18367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.163.128", + "prefixLen":25, + "network":"193.66.163.128\/25", + "version":18366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.176.0", + "prefixLen":25, + "network":"193.66.176.0\/25", + "version":18365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.176.128", + "prefixLen":25, + "network":"193.66.176.128\/25", + "version":18364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.177.0", + "prefixLen":25, + "network":"193.66.177.0\/25", + "version":18363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.177.128", + "prefixLen":25, + "network":"193.66.177.128\/25", + "version":18362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.178.0", + "prefixLen":25, + "network":"193.66.178.0\/25", + "version":18361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.178.128", + "prefixLen":25, + "network":"193.66.178.128\/25", + "version":18360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.179.0", + "prefixLen":25, + "network":"193.66.179.0\/25", + "version":18359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.179.128", + "prefixLen":25, + "network":"193.66.179.128\/25", + "version":18358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.192.0", + "prefixLen":25, + "network":"193.66.192.0\/25", + "version":18357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.192.128", + "prefixLen":25, + "network":"193.66.192.128\/25", + "version":18356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.193.0", + "prefixLen":25, + "network":"193.66.193.0\/25", + "version":18355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.193.128", + "prefixLen":25, + "network":"193.66.193.128\/25", + "version":18354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.194.0", + "prefixLen":25, + "network":"193.66.194.0\/25", + "version":18353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.194.128", + "prefixLen":25, + "network":"193.66.194.128\/25", + "version":18352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.195.0", + "prefixLen":25, + "network":"193.66.195.0\/25", + "version":18351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.195.128", + "prefixLen":25, + "network":"193.66.195.128\/25", + "version":18350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.208.0", + "prefixLen":25, + "network":"193.66.208.0\/25", + "version":18349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.208.128", + "prefixLen":25, + "network":"193.66.208.128\/25", + "version":18348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.209.0", + "prefixLen":25, + "network":"193.66.209.0\/25", + "version":18347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.209.128", + "prefixLen":25, + "network":"193.66.209.128\/25", + "version":18346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.210.0", + "prefixLen":25, + "network":"193.66.210.0\/25", + "version":18345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.210.128", + "prefixLen":25, + "network":"193.66.210.128\/25", + "version":18344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.211.0", + "prefixLen":25, + "network":"193.66.211.0\/25", + "version":18343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.211.128", + "prefixLen":25, + "network":"193.66.211.128\/25", + "version":18342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.224.0", + "prefixLen":25, + "network":"193.66.224.0\/25", + "version":18341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.224.128", + "prefixLen":25, + "network":"193.66.224.128\/25", + "version":18340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.225.0", + "prefixLen":25, + "network":"193.66.225.0\/25", + "version":18339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.225.128", + "prefixLen":25, + "network":"193.66.225.128\/25", + "version":18338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.226.0", + "prefixLen":25, + "network":"193.66.226.0\/25", + "version":18337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.226.128", + "prefixLen":25, + "network":"193.66.226.128\/25", + "version":18336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.227.0", + "prefixLen":25, + "network":"193.66.227.0\/25", + "version":18335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.227.128", + "prefixLen":25, + "network":"193.66.227.128\/25", + "version":18334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.240.0", + "prefixLen":25, + "network":"193.66.240.0\/25", + "version":18333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.240.128", + "prefixLen":25, + "network":"193.66.240.128\/25", + "version":18332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.241.0", + "prefixLen":25, + "network":"193.66.241.0\/25", + "version":18331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.241.128", + "prefixLen":25, + "network":"193.66.241.128\/25", + "version":18330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.242.0", + "prefixLen":25, + "network":"193.66.242.0\/25", + "version":18329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.242.128", + "prefixLen":25, + "network":"193.66.242.128\/25", + "version":18328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.243.0", + "prefixLen":25, + "network":"193.66.243.0\/25", + "version":18327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.66.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.66.243.128", + "prefixLen":25, + "network":"193.66.243.128\/25", + "version":18326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64754 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.0.0", + "prefixLen":25, + "network":"193.67.0.0\/25", + "version":18453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.0.128", + "prefixLen":25, + "network":"193.67.0.128\/25", + "version":18580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.1.0", + "prefixLen":25, + "network":"193.67.1.0\/25", + "version":18579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.1.128", + "prefixLen":25, + "network":"193.67.1.128\/25", + "version":18578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.2.0", + "prefixLen":25, + "network":"193.67.2.0\/25", + "version":18577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.2.128", + "prefixLen":25, + "network":"193.67.2.128\/25", + "version":18576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.3.0", + "prefixLen":25, + "network":"193.67.3.0\/25", + "version":18575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.3.128", + "prefixLen":25, + "network":"193.67.3.128\/25", + "version":18574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.16.0", + "prefixLen":25, + "network":"193.67.16.0\/25", + "version":18573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.16.128", + "prefixLen":25, + "network":"193.67.16.128\/25", + "version":18572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.17.0", + "prefixLen":25, + "network":"193.67.17.0\/25", + "version":18571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.17.128", + "prefixLen":25, + "network":"193.67.17.128\/25", + "version":18570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.18.0", + "prefixLen":25, + "network":"193.67.18.0\/25", + "version":18569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.18.128", + "prefixLen":25, + "network":"193.67.18.128\/25", + "version":18568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.19.0", + "prefixLen":25, + "network":"193.67.19.0\/25", + "version":18567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.19.128", + "prefixLen":25, + "network":"193.67.19.128\/25", + "version":18566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.32.0", + "prefixLen":25, + "network":"193.67.32.0\/25", + "version":18565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.32.128", + "prefixLen":25, + "network":"193.67.32.128\/25", + "version":18564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.33.0", + "prefixLen":25, + "network":"193.67.33.0\/25", + "version":18563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.33.128", + "prefixLen":25, + "network":"193.67.33.128\/25", + "version":18562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.34.0", + "prefixLen":25, + "network":"193.67.34.0\/25", + "version":18561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.34.128", + "prefixLen":25, + "network":"193.67.34.128\/25", + "version":18560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.35.0", + "prefixLen":25, + "network":"193.67.35.0\/25", + "version":18559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.35.128", + "prefixLen":25, + "network":"193.67.35.128\/25", + "version":18558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.48.0", + "prefixLen":25, + "network":"193.67.48.0\/25", + "version":18557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.48.128", + "prefixLen":25, + "network":"193.67.48.128\/25", + "version":18556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.49.0", + "prefixLen":25, + "network":"193.67.49.0\/25", + "version":18555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.49.128", + "prefixLen":25, + "network":"193.67.49.128\/25", + "version":18554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.50.0", + "prefixLen":25, + "network":"193.67.50.0\/25", + "version":18553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.50.128", + "prefixLen":25, + "network":"193.67.50.128\/25", + "version":18552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.51.0", + "prefixLen":25, + "network":"193.67.51.0\/25", + "version":18551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.51.128", + "prefixLen":25, + "network":"193.67.51.128\/25", + "version":18550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.64.0", + "prefixLen":25, + "network":"193.67.64.0\/25", + "version":18549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.64.128", + "prefixLen":25, + "network":"193.67.64.128\/25", + "version":18548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.65.0", + "prefixLen":25, + "network":"193.67.65.0\/25", + "version":18547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.65.128", + "prefixLen":25, + "network":"193.67.65.128\/25", + "version":18546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.66.0", + "prefixLen":25, + "network":"193.67.66.0\/25", + "version":18545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.66.128", + "prefixLen":25, + "network":"193.67.66.128\/25", + "version":18544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.67.0", + "prefixLen":25, + "network":"193.67.67.0\/25", + "version":18543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.67.128", + "prefixLen":25, + "network":"193.67.67.128\/25", + "version":18542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.80.0", + "prefixLen":25, + "network":"193.67.80.0\/25", + "version":18541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.80.128", + "prefixLen":25, + "network":"193.67.80.128\/25", + "version":18540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.81.0", + "prefixLen":25, + "network":"193.67.81.0\/25", + "version":18539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.81.128", + "prefixLen":25, + "network":"193.67.81.128\/25", + "version":18538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.82.0", + "prefixLen":25, + "network":"193.67.82.0\/25", + "version":18537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.82.128", + "prefixLen":25, + "network":"193.67.82.128\/25", + "version":18536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.83.0", + "prefixLen":25, + "network":"193.67.83.0\/25", + "version":18535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.83.128", + "prefixLen":25, + "network":"193.67.83.128\/25", + "version":18534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.96.0", + "prefixLen":25, + "network":"193.67.96.0\/25", + "version":18533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.96.128", + "prefixLen":25, + "network":"193.67.96.128\/25", + "version":18532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.97.0", + "prefixLen":25, + "network":"193.67.97.0\/25", + "version":18531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.97.128", + "prefixLen":25, + "network":"193.67.97.128\/25", + "version":18530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.98.0", + "prefixLen":25, + "network":"193.67.98.0\/25", + "version":18529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.98.128", + "prefixLen":25, + "network":"193.67.98.128\/25", + "version":18528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.99.0", + "prefixLen":25, + "network":"193.67.99.0\/25", + "version":18527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.99.128", + "prefixLen":25, + "network":"193.67.99.128\/25", + "version":18526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.112.0", + "prefixLen":25, + "network":"193.67.112.0\/25", + "version":18525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.112.128", + "prefixLen":25, + "network":"193.67.112.128\/25", + "version":18524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.113.0", + "prefixLen":25, + "network":"193.67.113.0\/25", + "version":18523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.113.128", + "prefixLen":25, + "network":"193.67.113.128\/25", + "version":18522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.114.0", + "prefixLen":25, + "network":"193.67.114.0\/25", + "version":18521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.114.128", + "prefixLen":25, + "network":"193.67.114.128\/25", + "version":18520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.115.0", + "prefixLen":25, + "network":"193.67.115.0\/25", + "version":18519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.115.128", + "prefixLen":25, + "network":"193.67.115.128\/25", + "version":18518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.128.0", + "prefixLen":25, + "network":"193.67.128.0\/25", + "version":18517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.128.128", + "prefixLen":25, + "network":"193.67.128.128\/25", + "version":18516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.129.0", + "prefixLen":25, + "network":"193.67.129.0\/25", + "version":18515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.129.128", + "prefixLen":25, + "network":"193.67.129.128\/25", + "version":18514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.130.0", + "prefixLen":25, + "network":"193.67.130.0\/25", + "version":18513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.130.128", + "prefixLen":25, + "network":"193.67.130.128\/25", + "version":18512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.131.0", + "prefixLen":25, + "network":"193.67.131.0\/25", + "version":18511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.131.128", + "prefixLen":25, + "network":"193.67.131.128\/25", + "version":18510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.144.0", + "prefixLen":25, + "network":"193.67.144.0\/25", + "version":18509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.144.128", + "prefixLen":25, + "network":"193.67.144.128\/25", + "version":18508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.145.0", + "prefixLen":25, + "network":"193.67.145.0\/25", + "version":18507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.145.128", + "prefixLen":25, + "network":"193.67.145.128\/25", + "version":18506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.146.0", + "prefixLen":25, + "network":"193.67.146.0\/25", + "version":18505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.146.128", + "prefixLen":25, + "network":"193.67.146.128\/25", + "version":18504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.147.0", + "prefixLen":25, + "network":"193.67.147.0\/25", + "version":18503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.147.128", + "prefixLen":25, + "network":"193.67.147.128\/25", + "version":18502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.160.0", + "prefixLen":25, + "network":"193.67.160.0\/25", + "version":18501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.160.128", + "prefixLen":25, + "network":"193.67.160.128\/25", + "version":18500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.161.0", + "prefixLen":25, + "network":"193.67.161.0\/25", + "version":18499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.161.128", + "prefixLen":25, + "network":"193.67.161.128\/25", + "version":18498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.162.0", + "prefixLen":25, + "network":"193.67.162.0\/25", + "version":18497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.162.128", + "prefixLen":25, + "network":"193.67.162.128\/25", + "version":18496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.163.0", + "prefixLen":25, + "network":"193.67.163.0\/25", + "version":18495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.163.128", + "prefixLen":25, + "network":"193.67.163.128\/25", + "version":18494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.176.0", + "prefixLen":25, + "network":"193.67.176.0\/25", + "version":18493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.176.128", + "prefixLen":25, + "network":"193.67.176.128\/25", + "version":18492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.177.0", + "prefixLen":25, + "network":"193.67.177.0\/25", + "version":18491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.177.128", + "prefixLen":25, + "network":"193.67.177.128\/25", + "version":18490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.178.0", + "prefixLen":25, + "network":"193.67.178.0\/25", + "version":18489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.178.128", + "prefixLen":25, + "network":"193.67.178.128\/25", + "version":18488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.179.0", + "prefixLen":25, + "network":"193.67.179.0\/25", + "version":18487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.179.128", + "prefixLen":25, + "network":"193.67.179.128\/25", + "version":18486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.192.0", + "prefixLen":25, + "network":"193.67.192.0\/25", + "version":18485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.192.128", + "prefixLen":25, + "network":"193.67.192.128\/25", + "version":18484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.193.0", + "prefixLen":25, + "network":"193.67.193.0\/25", + "version":18483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.193.128", + "prefixLen":25, + "network":"193.67.193.128\/25", + "version":18482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.194.0", + "prefixLen":25, + "network":"193.67.194.0\/25", + "version":18481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.194.128", + "prefixLen":25, + "network":"193.67.194.128\/25", + "version":18480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.195.0", + "prefixLen":25, + "network":"193.67.195.0\/25", + "version":18479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.195.128", + "prefixLen":25, + "network":"193.67.195.128\/25", + "version":18478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.208.0", + "prefixLen":25, + "network":"193.67.208.0\/25", + "version":18477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.208.128", + "prefixLen":25, + "network":"193.67.208.128\/25", + "version":18476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.209.0", + "prefixLen":25, + "network":"193.67.209.0\/25", + "version":18475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.209.128", + "prefixLen":25, + "network":"193.67.209.128\/25", + "version":18474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.210.0", + "prefixLen":25, + "network":"193.67.210.0\/25", + "version":18473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.210.128", + "prefixLen":25, + "network":"193.67.210.128\/25", + "version":18472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.211.0", + "prefixLen":25, + "network":"193.67.211.0\/25", + "version":18471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.211.128", + "prefixLen":25, + "network":"193.67.211.128\/25", + "version":18470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.224.0", + "prefixLen":25, + "network":"193.67.224.0\/25", + "version":18469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.224.128", + "prefixLen":25, + "network":"193.67.224.128\/25", + "version":18468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.225.0", + "prefixLen":25, + "network":"193.67.225.0\/25", + "version":18467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.225.128", + "prefixLen":25, + "network":"193.67.225.128\/25", + "version":18466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.226.0", + "prefixLen":25, + "network":"193.67.226.0\/25", + "version":18465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.226.128", + "prefixLen":25, + "network":"193.67.226.128\/25", + "version":18464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.227.0", + "prefixLen":25, + "network":"193.67.227.0\/25", + "version":18463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.227.128", + "prefixLen":25, + "network":"193.67.227.128\/25", + "version":18462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.240.0", + "prefixLen":25, + "network":"193.67.240.0\/25", + "version":18461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.240.128", + "prefixLen":25, + "network":"193.67.240.128\/25", + "version":18460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.241.0", + "prefixLen":25, + "network":"193.67.241.0\/25", + "version":18459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.241.128", + "prefixLen":25, + "network":"193.67.241.128\/25", + "version":18458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.242.0", + "prefixLen":25, + "network":"193.67.242.0\/25", + "version":18457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.242.128", + "prefixLen":25, + "network":"193.67.242.128\/25", + "version":18456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.243.0", + "prefixLen":25, + "network":"193.67.243.0\/25", + "version":18455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.67.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.67.243.128", + "prefixLen":25, + "network":"193.67.243.128\/25", + "version":18454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64755 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.0.0", + "prefixLen":25, + "network":"193.68.0.0\/25", + "version":18581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.0.128", + "prefixLen":25, + "network":"193.68.0.128\/25", + "version":18708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.1.0", + "prefixLen":25, + "network":"193.68.1.0\/25", + "version":18707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.1.128", + "prefixLen":25, + "network":"193.68.1.128\/25", + "version":18706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.2.0", + "prefixLen":25, + "network":"193.68.2.0\/25", + "version":18705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.2.128", + "prefixLen":25, + "network":"193.68.2.128\/25", + "version":18704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.3.0", + "prefixLen":25, + "network":"193.68.3.0\/25", + "version":18703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.3.128", + "prefixLen":25, + "network":"193.68.3.128\/25", + "version":18702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.16.0", + "prefixLen":25, + "network":"193.68.16.0\/25", + "version":18701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.16.128", + "prefixLen":25, + "network":"193.68.16.128\/25", + "version":18700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.17.0", + "prefixLen":25, + "network":"193.68.17.0\/25", + "version":18699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.17.128", + "prefixLen":25, + "network":"193.68.17.128\/25", + "version":18698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.18.0", + "prefixLen":25, + "network":"193.68.18.0\/25", + "version":18697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.18.128", + "prefixLen":25, + "network":"193.68.18.128\/25", + "version":18696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.19.0", + "prefixLen":25, + "network":"193.68.19.0\/25", + "version":18695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.19.128", + "prefixLen":25, + "network":"193.68.19.128\/25", + "version":18694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.32.0", + "prefixLen":25, + "network":"193.68.32.0\/25", + "version":18693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.32.128", + "prefixLen":25, + "network":"193.68.32.128\/25", + "version":18692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.33.0", + "prefixLen":25, + "network":"193.68.33.0\/25", + "version":18691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.33.128", + "prefixLen":25, + "network":"193.68.33.128\/25", + "version":18690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.34.0", + "prefixLen":25, + "network":"193.68.34.0\/25", + "version":18689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.34.128", + "prefixLen":25, + "network":"193.68.34.128\/25", + "version":18688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.35.0", + "prefixLen":25, + "network":"193.68.35.0\/25", + "version":18687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.35.128", + "prefixLen":25, + "network":"193.68.35.128\/25", + "version":18686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.48.0", + "prefixLen":25, + "network":"193.68.48.0\/25", + "version":18685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.48.128", + "prefixLen":25, + "network":"193.68.48.128\/25", + "version":18684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.49.0", + "prefixLen":25, + "network":"193.68.49.0\/25", + "version":18683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.49.128", + "prefixLen":25, + "network":"193.68.49.128\/25", + "version":18682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.50.0", + "prefixLen":25, + "network":"193.68.50.0\/25", + "version":18681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.50.128", + "prefixLen":25, + "network":"193.68.50.128\/25", + "version":18680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.51.0", + "prefixLen":25, + "network":"193.68.51.0\/25", + "version":18679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.51.128", + "prefixLen":25, + "network":"193.68.51.128\/25", + "version":18678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.64.0", + "prefixLen":25, + "network":"193.68.64.0\/25", + "version":18677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.64.128", + "prefixLen":25, + "network":"193.68.64.128\/25", + "version":18676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.65.0", + "prefixLen":25, + "network":"193.68.65.0\/25", + "version":18675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.65.128", + "prefixLen":25, + "network":"193.68.65.128\/25", + "version":18674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.66.0", + "prefixLen":25, + "network":"193.68.66.0\/25", + "version":18673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.66.128", + "prefixLen":25, + "network":"193.68.66.128\/25", + "version":18672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.67.0", + "prefixLen":25, + "network":"193.68.67.0\/25", + "version":18671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.67.128", + "prefixLen":25, + "network":"193.68.67.128\/25", + "version":18670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.80.0", + "prefixLen":25, + "network":"193.68.80.0\/25", + "version":18669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.80.128", + "prefixLen":25, + "network":"193.68.80.128\/25", + "version":18668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.81.0", + "prefixLen":25, + "network":"193.68.81.0\/25", + "version":18667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.81.128", + "prefixLen":25, + "network":"193.68.81.128\/25", + "version":18666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.82.0", + "prefixLen":25, + "network":"193.68.82.0\/25", + "version":18665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.82.128", + "prefixLen":25, + "network":"193.68.82.128\/25", + "version":18664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.83.0", + "prefixLen":25, + "network":"193.68.83.0\/25", + "version":18663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.83.128", + "prefixLen":25, + "network":"193.68.83.128\/25", + "version":18662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.96.0", + "prefixLen":25, + "network":"193.68.96.0\/25", + "version":18661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.96.128", + "prefixLen":25, + "network":"193.68.96.128\/25", + "version":18660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.97.0", + "prefixLen":25, + "network":"193.68.97.0\/25", + "version":18659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.97.128", + "prefixLen":25, + "network":"193.68.97.128\/25", + "version":18658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.98.0", + "prefixLen":25, + "network":"193.68.98.0\/25", + "version":18657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.98.128", + "prefixLen":25, + "network":"193.68.98.128\/25", + "version":18656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.99.0", + "prefixLen":25, + "network":"193.68.99.0\/25", + "version":18655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.99.128", + "prefixLen":25, + "network":"193.68.99.128\/25", + "version":18654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.112.0", + "prefixLen":25, + "network":"193.68.112.0\/25", + "version":18653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.112.128", + "prefixLen":25, + "network":"193.68.112.128\/25", + "version":18652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.113.0", + "prefixLen":25, + "network":"193.68.113.0\/25", + "version":18651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.113.128", + "prefixLen":25, + "network":"193.68.113.128\/25", + "version":18650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.114.0", + "prefixLen":25, + "network":"193.68.114.0\/25", + "version":18649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.114.128", + "prefixLen":25, + "network":"193.68.114.128\/25", + "version":18648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.115.0", + "prefixLen":25, + "network":"193.68.115.0\/25", + "version":18647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.115.128", + "prefixLen":25, + "network":"193.68.115.128\/25", + "version":18646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.128.0", + "prefixLen":25, + "network":"193.68.128.0\/25", + "version":18645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.128.128", + "prefixLen":25, + "network":"193.68.128.128\/25", + "version":18644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.129.0", + "prefixLen":25, + "network":"193.68.129.0\/25", + "version":18643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.129.128", + "prefixLen":25, + "network":"193.68.129.128\/25", + "version":18642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.130.0", + "prefixLen":25, + "network":"193.68.130.0\/25", + "version":18641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.130.128", + "prefixLen":25, + "network":"193.68.130.128\/25", + "version":18640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.131.0", + "prefixLen":25, + "network":"193.68.131.0\/25", + "version":18639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.131.128", + "prefixLen":25, + "network":"193.68.131.128\/25", + "version":18638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.144.0", + "prefixLen":25, + "network":"193.68.144.0\/25", + "version":18637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.144.128", + "prefixLen":25, + "network":"193.68.144.128\/25", + "version":18636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.145.0", + "prefixLen":25, + "network":"193.68.145.0\/25", + "version":18635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.145.128", + "prefixLen":25, + "network":"193.68.145.128\/25", + "version":18634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.146.0", + "prefixLen":25, + "network":"193.68.146.0\/25", + "version":18633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.146.128", + "prefixLen":25, + "network":"193.68.146.128\/25", + "version":18632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.147.0", + "prefixLen":25, + "network":"193.68.147.0\/25", + "version":18631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.147.128", + "prefixLen":25, + "network":"193.68.147.128\/25", + "version":18630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.160.0", + "prefixLen":25, + "network":"193.68.160.0\/25", + "version":18629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.160.128", + "prefixLen":25, + "network":"193.68.160.128\/25", + "version":18628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.161.0", + "prefixLen":25, + "network":"193.68.161.0\/25", + "version":18627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.161.128", + "prefixLen":25, + "network":"193.68.161.128\/25", + "version":18626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.162.0", + "prefixLen":25, + "network":"193.68.162.0\/25", + "version":18625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.162.128", + "prefixLen":25, + "network":"193.68.162.128\/25", + "version":18624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.163.0", + "prefixLen":25, + "network":"193.68.163.0\/25", + "version":18623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.163.128", + "prefixLen":25, + "network":"193.68.163.128\/25", + "version":18622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.176.0", + "prefixLen":25, + "network":"193.68.176.0\/25", + "version":18621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.176.128", + "prefixLen":25, + "network":"193.68.176.128\/25", + "version":18620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.177.0", + "prefixLen":25, + "network":"193.68.177.0\/25", + "version":18619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.177.128", + "prefixLen":25, + "network":"193.68.177.128\/25", + "version":18618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.178.0", + "prefixLen":25, + "network":"193.68.178.0\/25", + "version":18617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.178.128", + "prefixLen":25, + "network":"193.68.178.128\/25", + "version":18616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.179.0", + "prefixLen":25, + "network":"193.68.179.0\/25", + "version":18615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.179.128", + "prefixLen":25, + "network":"193.68.179.128\/25", + "version":18614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.192.0", + "prefixLen":25, + "network":"193.68.192.0\/25", + "version":18613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.192.128", + "prefixLen":25, + "network":"193.68.192.128\/25", + "version":18612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.193.0", + "prefixLen":25, + "network":"193.68.193.0\/25", + "version":18611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.193.128", + "prefixLen":25, + "network":"193.68.193.128\/25", + "version":18610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.194.0", + "prefixLen":25, + "network":"193.68.194.0\/25", + "version":18609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.194.128", + "prefixLen":25, + "network":"193.68.194.128\/25", + "version":18608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.195.0", + "prefixLen":25, + "network":"193.68.195.0\/25", + "version":18607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.195.128", + "prefixLen":25, + "network":"193.68.195.128\/25", + "version":18606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.208.0", + "prefixLen":25, + "network":"193.68.208.0\/25", + "version":18605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.208.128", + "prefixLen":25, + "network":"193.68.208.128\/25", + "version":18604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.209.0", + "prefixLen":25, + "network":"193.68.209.0\/25", + "version":18603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.209.128", + "prefixLen":25, + "network":"193.68.209.128\/25", + "version":18602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.210.0", + "prefixLen":25, + "network":"193.68.210.0\/25", + "version":18601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.210.128", + "prefixLen":25, + "network":"193.68.210.128\/25", + "version":18600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.211.0", + "prefixLen":25, + "network":"193.68.211.0\/25", + "version":18599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.211.128", + "prefixLen":25, + "network":"193.68.211.128\/25", + "version":18598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.224.0", + "prefixLen":25, + "network":"193.68.224.0\/25", + "version":18597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.224.128", + "prefixLen":25, + "network":"193.68.224.128\/25", + "version":18596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.225.0", + "prefixLen":25, + "network":"193.68.225.0\/25", + "version":18595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.225.128", + "prefixLen":25, + "network":"193.68.225.128\/25", + "version":18594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.226.0", + "prefixLen":25, + "network":"193.68.226.0\/25", + "version":18593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.226.128", + "prefixLen":25, + "network":"193.68.226.128\/25", + "version":18592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.227.0", + "prefixLen":25, + "network":"193.68.227.0\/25", + "version":18591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.227.128", + "prefixLen":25, + "network":"193.68.227.128\/25", + "version":18590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.240.0", + "prefixLen":25, + "network":"193.68.240.0\/25", + "version":18589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.240.128", + "prefixLen":25, + "network":"193.68.240.128\/25", + "version":18588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.241.0", + "prefixLen":25, + "network":"193.68.241.0\/25", + "version":18587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.241.128", + "prefixLen":25, + "network":"193.68.241.128\/25", + "version":18586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.242.0", + "prefixLen":25, + "network":"193.68.242.0\/25", + "version":18585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.242.128", + "prefixLen":25, + "network":"193.68.242.128\/25", + "version":18584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.243.0", + "prefixLen":25, + "network":"193.68.243.0\/25", + "version":18583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.68.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.68.243.128", + "prefixLen":25, + "network":"193.68.243.128\/25", + "version":18582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64756 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.0.0", + "prefixLen":25, + "network":"193.69.0.0\/25", + "version":18709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.0.128", + "prefixLen":25, + "network":"193.69.0.128\/25", + "version":18836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.1.0", + "prefixLen":25, + "network":"193.69.1.0\/25", + "version":18835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.1.128", + "prefixLen":25, + "network":"193.69.1.128\/25", + "version":18834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.2.0", + "prefixLen":25, + "network":"193.69.2.0\/25", + "version":18833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.2.128", + "prefixLen":25, + "network":"193.69.2.128\/25", + "version":18832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.3.0", + "prefixLen":25, + "network":"193.69.3.0\/25", + "version":18831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.3.128", + "prefixLen":25, + "network":"193.69.3.128\/25", + "version":18830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.16.0", + "prefixLen":25, + "network":"193.69.16.0\/25", + "version":18829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.16.128", + "prefixLen":25, + "network":"193.69.16.128\/25", + "version":18828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.17.0", + "prefixLen":25, + "network":"193.69.17.0\/25", + "version":18827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.17.128", + "prefixLen":25, + "network":"193.69.17.128\/25", + "version":18826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.18.0", + "prefixLen":25, + "network":"193.69.18.0\/25", + "version":18825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.18.128", + "prefixLen":25, + "network":"193.69.18.128\/25", + "version":18824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.19.0", + "prefixLen":25, + "network":"193.69.19.0\/25", + "version":18823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.19.128", + "prefixLen":25, + "network":"193.69.19.128\/25", + "version":18822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.32.0", + "prefixLen":25, + "network":"193.69.32.0\/25", + "version":18821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.32.128", + "prefixLen":25, + "network":"193.69.32.128\/25", + "version":18820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.33.0", + "prefixLen":25, + "network":"193.69.33.0\/25", + "version":18819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.33.128", + "prefixLen":25, + "network":"193.69.33.128\/25", + "version":18818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.34.0", + "prefixLen":25, + "network":"193.69.34.0\/25", + "version":18817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.34.128", + "prefixLen":25, + "network":"193.69.34.128\/25", + "version":18816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.35.0", + "prefixLen":25, + "network":"193.69.35.0\/25", + "version":18815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.35.128", + "prefixLen":25, + "network":"193.69.35.128\/25", + "version":18814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.48.0", + "prefixLen":25, + "network":"193.69.48.0\/25", + "version":18813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.48.128", + "prefixLen":25, + "network":"193.69.48.128\/25", + "version":18812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.49.0", + "prefixLen":25, + "network":"193.69.49.0\/25", + "version":18811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.49.128", + "prefixLen":25, + "network":"193.69.49.128\/25", + "version":18810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.50.0", + "prefixLen":25, + "network":"193.69.50.0\/25", + "version":18809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.50.128", + "prefixLen":25, + "network":"193.69.50.128\/25", + "version":18808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.51.0", + "prefixLen":25, + "network":"193.69.51.0\/25", + "version":18807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.51.128", + "prefixLen":25, + "network":"193.69.51.128\/25", + "version":18806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.64.0", + "prefixLen":25, + "network":"193.69.64.0\/25", + "version":18805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.64.128", + "prefixLen":25, + "network":"193.69.64.128\/25", + "version":18804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.65.0", + "prefixLen":25, + "network":"193.69.65.0\/25", + "version":18803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.65.128", + "prefixLen":25, + "network":"193.69.65.128\/25", + "version":18802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.66.0", + "prefixLen":25, + "network":"193.69.66.0\/25", + "version":18801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.66.128", + "prefixLen":25, + "network":"193.69.66.128\/25", + "version":18800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.67.0", + "prefixLen":25, + "network":"193.69.67.0\/25", + "version":18799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.67.128", + "prefixLen":25, + "network":"193.69.67.128\/25", + "version":18798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.80.0", + "prefixLen":25, + "network":"193.69.80.0\/25", + "version":18797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.80.128", + "prefixLen":25, + "network":"193.69.80.128\/25", + "version":18796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.81.0", + "prefixLen":25, + "network":"193.69.81.0\/25", + "version":18795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.81.128", + "prefixLen":25, + "network":"193.69.81.128\/25", + "version":18794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.82.0", + "prefixLen":25, + "network":"193.69.82.0\/25", + "version":18793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.82.128", + "prefixLen":25, + "network":"193.69.82.128\/25", + "version":18792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.83.0", + "prefixLen":25, + "network":"193.69.83.0\/25", + "version":18791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.83.128", + "prefixLen":25, + "network":"193.69.83.128\/25", + "version":18790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.96.0", + "prefixLen":25, + "network":"193.69.96.0\/25", + "version":18789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.96.128", + "prefixLen":25, + "network":"193.69.96.128\/25", + "version":18788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.97.0", + "prefixLen":25, + "network":"193.69.97.0\/25", + "version":18787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.97.128", + "prefixLen":25, + "network":"193.69.97.128\/25", + "version":18786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.98.0", + "prefixLen":25, + "network":"193.69.98.0\/25", + "version":18785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.98.128", + "prefixLen":25, + "network":"193.69.98.128\/25", + "version":18784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.99.0", + "prefixLen":25, + "network":"193.69.99.0\/25", + "version":18783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.99.128", + "prefixLen":25, + "network":"193.69.99.128\/25", + "version":18782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.112.0", + "prefixLen":25, + "network":"193.69.112.0\/25", + "version":18781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.112.128", + "prefixLen":25, + "network":"193.69.112.128\/25", + "version":18780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.113.0", + "prefixLen":25, + "network":"193.69.113.0\/25", + "version":18779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.113.128", + "prefixLen":25, + "network":"193.69.113.128\/25", + "version":18778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.114.0", + "prefixLen":25, + "network":"193.69.114.0\/25", + "version":18777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.114.128", + "prefixLen":25, + "network":"193.69.114.128\/25", + "version":18776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.115.0", + "prefixLen":25, + "network":"193.69.115.0\/25", + "version":18775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.115.128", + "prefixLen":25, + "network":"193.69.115.128\/25", + "version":18774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.128.0", + "prefixLen":25, + "network":"193.69.128.0\/25", + "version":18773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.128.128", + "prefixLen":25, + "network":"193.69.128.128\/25", + "version":18772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.129.0", + "prefixLen":25, + "network":"193.69.129.0\/25", + "version":18771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.129.128", + "prefixLen":25, + "network":"193.69.129.128\/25", + "version":18770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.130.0", + "prefixLen":25, + "network":"193.69.130.0\/25", + "version":18769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.130.128", + "prefixLen":25, + "network":"193.69.130.128\/25", + "version":18768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.131.0", + "prefixLen":25, + "network":"193.69.131.0\/25", + "version":18767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.131.128", + "prefixLen":25, + "network":"193.69.131.128\/25", + "version":18766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.144.0", + "prefixLen":25, + "network":"193.69.144.0\/25", + "version":18765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.144.128", + "prefixLen":25, + "network":"193.69.144.128\/25", + "version":18764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.145.0", + "prefixLen":25, + "network":"193.69.145.0\/25", + "version":18763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.145.128", + "prefixLen":25, + "network":"193.69.145.128\/25", + "version":18762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.146.0", + "prefixLen":25, + "network":"193.69.146.0\/25", + "version":18761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.146.128", + "prefixLen":25, + "network":"193.69.146.128\/25", + "version":18760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.147.0", + "prefixLen":25, + "network":"193.69.147.0\/25", + "version":18759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.147.128", + "prefixLen":25, + "network":"193.69.147.128\/25", + "version":18758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.160.0", + "prefixLen":25, + "network":"193.69.160.0\/25", + "version":18757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.160.128", + "prefixLen":25, + "network":"193.69.160.128\/25", + "version":18756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.161.0", + "prefixLen":25, + "network":"193.69.161.0\/25", + "version":18755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.161.128", + "prefixLen":25, + "network":"193.69.161.128\/25", + "version":18754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.162.0", + "prefixLen":25, + "network":"193.69.162.0\/25", + "version":18753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.162.128", + "prefixLen":25, + "network":"193.69.162.128\/25", + "version":18752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.163.0", + "prefixLen":25, + "network":"193.69.163.0\/25", + "version":18751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.163.128", + "prefixLen":25, + "network":"193.69.163.128\/25", + "version":18750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.176.0", + "prefixLen":25, + "network":"193.69.176.0\/25", + "version":18749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.176.128", + "prefixLen":25, + "network":"193.69.176.128\/25", + "version":18748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.177.0", + "prefixLen":25, + "network":"193.69.177.0\/25", + "version":18747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.177.128", + "prefixLen":25, + "network":"193.69.177.128\/25", + "version":18746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.178.0", + "prefixLen":25, + "network":"193.69.178.0\/25", + "version":18745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.178.128", + "prefixLen":25, + "network":"193.69.178.128\/25", + "version":18744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.179.0", + "prefixLen":25, + "network":"193.69.179.0\/25", + "version":18743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.179.128", + "prefixLen":25, + "network":"193.69.179.128\/25", + "version":18742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.192.0", + "prefixLen":25, + "network":"193.69.192.0\/25", + "version":18741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.192.128", + "prefixLen":25, + "network":"193.69.192.128\/25", + "version":18740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.193.0", + "prefixLen":25, + "network":"193.69.193.0\/25", + "version":18739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.193.128", + "prefixLen":25, + "network":"193.69.193.128\/25", + "version":18738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.194.0", + "prefixLen":25, + "network":"193.69.194.0\/25", + "version":18737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.194.128", + "prefixLen":25, + "network":"193.69.194.128\/25", + "version":18736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.195.0", + "prefixLen":25, + "network":"193.69.195.0\/25", + "version":18735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.195.128", + "prefixLen":25, + "network":"193.69.195.128\/25", + "version":18734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.208.0", + "prefixLen":25, + "network":"193.69.208.0\/25", + "version":18733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.208.128", + "prefixLen":25, + "network":"193.69.208.128\/25", + "version":18732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.209.0", + "prefixLen":25, + "network":"193.69.209.0\/25", + "version":18731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.209.128", + "prefixLen":25, + "network":"193.69.209.128\/25", + "version":18730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.210.0", + "prefixLen":25, + "network":"193.69.210.0\/25", + "version":18729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.210.128", + "prefixLen":25, + "network":"193.69.210.128\/25", + "version":18728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.211.0", + "prefixLen":25, + "network":"193.69.211.0\/25", + "version":18727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.211.128", + "prefixLen":25, + "network":"193.69.211.128\/25", + "version":18726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.224.0", + "prefixLen":25, + "network":"193.69.224.0\/25", + "version":18725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.224.128", + "prefixLen":25, + "network":"193.69.224.128\/25", + "version":18724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.225.0", + "prefixLen":25, + "network":"193.69.225.0\/25", + "version":18723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.225.128", + "prefixLen":25, + "network":"193.69.225.128\/25", + "version":18722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.226.0", + "prefixLen":25, + "network":"193.69.226.0\/25", + "version":18721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.226.128", + "prefixLen":25, + "network":"193.69.226.128\/25", + "version":18720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.227.0", + "prefixLen":25, + "network":"193.69.227.0\/25", + "version":18719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.227.128", + "prefixLen":25, + "network":"193.69.227.128\/25", + "version":18718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.240.0", + "prefixLen":25, + "network":"193.69.240.0\/25", + "version":18717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.240.128", + "prefixLen":25, + "network":"193.69.240.128\/25", + "version":18716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.241.0", + "prefixLen":25, + "network":"193.69.241.0\/25", + "version":18715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.241.128", + "prefixLen":25, + "network":"193.69.241.128\/25", + "version":18714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.242.0", + "prefixLen":25, + "network":"193.69.242.0\/25", + "version":18713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.242.128", + "prefixLen":25, + "network":"193.69.242.128\/25", + "version":18712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.243.0", + "prefixLen":25, + "network":"193.69.243.0\/25", + "version":18711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.69.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.69.243.128", + "prefixLen":25, + "network":"193.69.243.128\/25", + "version":18710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64757 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.0.0", + "prefixLen":25, + "network":"193.70.0.0\/25", + "version":20117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.0.128", + "prefixLen":25, + "network":"193.70.0.128\/25", + "version":20244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.1.0", + "prefixLen":25, + "network":"193.70.1.0\/25", + "version":20243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.1.128", + "prefixLen":25, + "network":"193.70.1.128\/25", + "version":20242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.2.0", + "prefixLen":25, + "network":"193.70.2.0\/25", + "version":20241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.2.128", + "prefixLen":25, + "network":"193.70.2.128\/25", + "version":20240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.3.0", + "prefixLen":25, + "network":"193.70.3.0\/25", + "version":20239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.3.128", + "prefixLen":25, + "network":"193.70.3.128\/25", + "version":20238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.16.0", + "prefixLen":25, + "network":"193.70.16.0\/25", + "version":20237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.16.128", + "prefixLen":25, + "network":"193.70.16.128\/25", + "version":20236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.17.0", + "prefixLen":25, + "network":"193.70.17.0\/25", + "version":20235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.17.128", + "prefixLen":25, + "network":"193.70.17.128\/25", + "version":20234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.18.0", + "prefixLen":25, + "network":"193.70.18.0\/25", + "version":20233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.18.128", + "prefixLen":25, + "network":"193.70.18.128\/25", + "version":20232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.19.0", + "prefixLen":25, + "network":"193.70.19.0\/25", + "version":20231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.19.128", + "prefixLen":25, + "network":"193.70.19.128\/25", + "version":20230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.32.0", + "prefixLen":25, + "network":"193.70.32.0\/25", + "version":20229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.32.128", + "prefixLen":25, + "network":"193.70.32.128\/25", + "version":20228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.33.0", + "prefixLen":25, + "network":"193.70.33.0\/25", + "version":20227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.33.128", + "prefixLen":25, + "network":"193.70.33.128\/25", + "version":20226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.34.0", + "prefixLen":25, + "network":"193.70.34.0\/25", + "version":20225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.34.128", + "prefixLen":25, + "network":"193.70.34.128\/25", + "version":20224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.35.0", + "prefixLen":25, + "network":"193.70.35.0\/25", + "version":20223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.35.128", + "prefixLen":25, + "network":"193.70.35.128\/25", + "version":20222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.48.0", + "prefixLen":25, + "network":"193.70.48.0\/25", + "version":20221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.48.128", + "prefixLen":25, + "network":"193.70.48.128\/25", + "version":20220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.49.0", + "prefixLen":25, + "network":"193.70.49.0\/25", + "version":20219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.49.128", + "prefixLen":25, + "network":"193.70.49.128\/25", + "version":20218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.50.0", + "prefixLen":25, + "network":"193.70.50.0\/25", + "version":20217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.50.128", + "prefixLen":25, + "network":"193.70.50.128\/25", + "version":20216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.51.0", + "prefixLen":25, + "network":"193.70.51.0\/25", + "version":20215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.51.128", + "prefixLen":25, + "network":"193.70.51.128\/25", + "version":20214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.64.0", + "prefixLen":25, + "network":"193.70.64.0\/25", + "version":20213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.64.128", + "prefixLen":25, + "network":"193.70.64.128\/25", + "version":20212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.65.0", + "prefixLen":25, + "network":"193.70.65.0\/25", + "version":20211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.65.128", + "prefixLen":25, + "network":"193.70.65.128\/25", + "version":20210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.66.0", + "prefixLen":25, + "network":"193.70.66.0\/25", + "version":20209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.66.128", + "prefixLen":25, + "network":"193.70.66.128\/25", + "version":20208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.67.0", + "prefixLen":25, + "network":"193.70.67.0\/25", + "version":20207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.67.128", + "prefixLen":25, + "network":"193.70.67.128\/25", + "version":20206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.80.0", + "prefixLen":25, + "network":"193.70.80.0\/25", + "version":20205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.80.128", + "prefixLen":25, + "network":"193.70.80.128\/25", + "version":20204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.81.0", + "prefixLen":25, + "network":"193.70.81.0\/25", + "version":20203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.81.128", + "prefixLen":25, + "network":"193.70.81.128\/25", + "version":20202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.82.0", + "prefixLen":25, + "network":"193.70.82.0\/25", + "version":20201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.82.128", + "prefixLen":25, + "network":"193.70.82.128\/25", + "version":20200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.83.0", + "prefixLen":25, + "network":"193.70.83.0\/25", + "version":20199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.83.128", + "prefixLen":25, + "network":"193.70.83.128\/25", + "version":20198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.96.0", + "prefixLen":25, + "network":"193.70.96.0\/25", + "version":20197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.96.128", + "prefixLen":25, + "network":"193.70.96.128\/25", + "version":20196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.97.0", + "prefixLen":25, + "network":"193.70.97.0\/25", + "version":20195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.97.128", + "prefixLen":25, + "network":"193.70.97.128\/25", + "version":20194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.98.0", + "prefixLen":25, + "network":"193.70.98.0\/25", + "version":20193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.98.128", + "prefixLen":25, + "network":"193.70.98.128\/25", + "version":20192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.99.0", + "prefixLen":25, + "network":"193.70.99.0\/25", + "version":20191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.99.128", + "prefixLen":25, + "network":"193.70.99.128\/25", + "version":20190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.112.0", + "prefixLen":25, + "network":"193.70.112.0\/25", + "version":20189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.112.128", + "prefixLen":25, + "network":"193.70.112.128\/25", + "version":20188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.113.0", + "prefixLen":25, + "network":"193.70.113.0\/25", + "version":20187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.113.128", + "prefixLen":25, + "network":"193.70.113.128\/25", + "version":20186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.114.0", + "prefixLen":25, + "network":"193.70.114.0\/25", + "version":20185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.114.128", + "prefixLen":25, + "network":"193.70.114.128\/25", + "version":20184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.115.0", + "prefixLen":25, + "network":"193.70.115.0\/25", + "version":20183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.115.128", + "prefixLen":25, + "network":"193.70.115.128\/25", + "version":20182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.128.0", + "prefixLen":25, + "network":"193.70.128.0\/25", + "version":20181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.128.128", + "prefixLen":25, + "network":"193.70.128.128\/25", + "version":20180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.129.0", + "prefixLen":25, + "network":"193.70.129.0\/25", + "version":20179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.129.128", + "prefixLen":25, + "network":"193.70.129.128\/25", + "version":20178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.130.0", + "prefixLen":25, + "network":"193.70.130.0\/25", + "version":20177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.130.128", + "prefixLen":25, + "network":"193.70.130.128\/25", + "version":20176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.131.0", + "prefixLen":25, + "network":"193.70.131.0\/25", + "version":20175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.131.128", + "prefixLen":25, + "network":"193.70.131.128\/25", + "version":20174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.144.0", + "prefixLen":25, + "network":"193.70.144.0\/25", + "version":20173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.144.128", + "prefixLen":25, + "network":"193.70.144.128\/25", + "version":20172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.145.0", + "prefixLen":25, + "network":"193.70.145.0\/25", + "version":20171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.145.128", + "prefixLen":25, + "network":"193.70.145.128\/25", + "version":20170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.146.0", + "prefixLen":25, + "network":"193.70.146.0\/25", + "version":20169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.146.128", + "prefixLen":25, + "network":"193.70.146.128\/25", + "version":20168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.147.0", + "prefixLen":25, + "network":"193.70.147.0\/25", + "version":20167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.147.128", + "prefixLen":25, + "network":"193.70.147.128\/25", + "version":20166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.160.0", + "prefixLen":25, + "network":"193.70.160.0\/25", + "version":20165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.160.128", + "prefixLen":25, + "network":"193.70.160.128\/25", + "version":20164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.161.0", + "prefixLen":25, + "network":"193.70.161.0\/25", + "version":20163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.161.128", + "prefixLen":25, + "network":"193.70.161.128\/25", + "version":20162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.162.0", + "prefixLen":25, + "network":"193.70.162.0\/25", + "version":20161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.162.128", + "prefixLen":25, + "network":"193.70.162.128\/25", + "version":20160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.163.0", + "prefixLen":25, + "network":"193.70.163.0\/25", + "version":20159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.163.128", + "prefixLen":25, + "network":"193.70.163.128\/25", + "version":20158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.176.0", + "prefixLen":25, + "network":"193.70.176.0\/25", + "version":20157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.176.128", + "prefixLen":25, + "network":"193.70.176.128\/25", + "version":20156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.177.0", + "prefixLen":25, + "network":"193.70.177.0\/25", + "version":20155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.177.128", + "prefixLen":25, + "network":"193.70.177.128\/25", + "version":20154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.178.0", + "prefixLen":25, + "network":"193.70.178.0\/25", + "version":20153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.178.128", + "prefixLen":25, + "network":"193.70.178.128\/25", + "version":20152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.179.0", + "prefixLen":25, + "network":"193.70.179.0\/25", + "version":20151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.179.128", + "prefixLen":25, + "network":"193.70.179.128\/25", + "version":20150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.192.0", + "prefixLen":25, + "network":"193.70.192.0\/25", + "version":20149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.192.128", + "prefixLen":25, + "network":"193.70.192.128\/25", + "version":20148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.193.0", + "prefixLen":25, + "network":"193.70.193.0\/25", + "version":20147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.193.128", + "prefixLen":25, + "network":"193.70.193.128\/25", + "version":20146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.194.0", + "prefixLen":25, + "network":"193.70.194.0\/25", + "version":20145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.194.128", + "prefixLen":25, + "network":"193.70.194.128\/25", + "version":20144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.195.0", + "prefixLen":25, + "network":"193.70.195.0\/25", + "version":20143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.195.128", + "prefixLen":25, + "network":"193.70.195.128\/25", + "version":20142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.208.0", + "prefixLen":25, + "network":"193.70.208.0\/25", + "version":20141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.208.128", + "prefixLen":25, + "network":"193.70.208.128\/25", + "version":20140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.209.0", + "prefixLen":25, + "network":"193.70.209.0\/25", + "version":20139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.209.128", + "prefixLen":25, + "network":"193.70.209.128\/25", + "version":20138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.210.0", + "prefixLen":25, + "network":"193.70.210.0\/25", + "version":20137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.210.128", + "prefixLen":25, + "network":"193.70.210.128\/25", + "version":20136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.211.0", + "prefixLen":25, + "network":"193.70.211.0\/25", + "version":20135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.211.128", + "prefixLen":25, + "network":"193.70.211.128\/25", + "version":20134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.224.0", + "prefixLen":25, + "network":"193.70.224.0\/25", + "version":20133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.224.128", + "prefixLen":25, + "network":"193.70.224.128\/25", + "version":20132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.225.0", + "prefixLen":25, + "network":"193.70.225.0\/25", + "version":20131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.225.128", + "prefixLen":25, + "network":"193.70.225.128\/25", + "version":20130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.226.0", + "prefixLen":25, + "network":"193.70.226.0\/25", + "version":20129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.226.128", + "prefixLen":25, + "network":"193.70.226.128\/25", + "version":20128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.227.0", + "prefixLen":25, + "network":"193.70.227.0\/25", + "version":20127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.227.128", + "prefixLen":25, + "network":"193.70.227.128\/25", + "version":20126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.240.0", + "prefixLen":25, + "network":"193.70.240.0\/25", + "version":20125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.240.128", + "prefixLen":25, + "network":"193.70.240.128\/25", + "version":20124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.241.0", + "prefixLen":25, + "network":"193.70.241.0\/25", + "version":20123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.241.128", + "prefixLen":25, + "network":"193.70.241.128\/25", + "version":20122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.242.0", + "prefixLen":25, + "network":"193.70.242.0\/25", + "version":20121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.242.128", + "prefixLen":25, + "network":"193.70.242.128\/25", + "version":20120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.243.0", + "prefixLen":25, + "network":"193.70.243.0\/25", + "version":20119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.70.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.70.243.128", + "prefixLen":25, + "network":"193.70.243.128\/25", + "version":20118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64758 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.0.0", + "prefixLen":25, + "network":"193.71.0.0\/25", + "version":20245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.0.128", + "prefixLen":25, + "network":"193.71.0.128\/25", + "version":20372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.1.0", + "prefixLen":25, + "network":"193.71.1.0\/25", + "version":20371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.1.128", + "prefixLen":25, + "network":"193.71.1.128\/25", + "version":20370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.2.0", + "prefixLen":25, + "network":"193.71.2.0\/25", + "version":20369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.2.128", + "prefixLen":25, + "network":"193.71.2.128\/25", + "version":20368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.3.0", + "prefixLen":25, + "network":"193.71.3.0\/25", + "version":20367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.3.128", + "prefixLen":25, + "network":"193.71.3.128\/25", + "version":20366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.16.0", + "prefixLen":25, + "network":"193.71.16.0\/25", + "version":20365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.16.128", + "prefixLen":25, + "network":"193.71.16.128\/25", + "version":20364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.17.0", + "prefixLen":25, + "network":"193.71.17.0\/25", + "version":20363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.17.128", + "prefixLen":25, + "network":"193.71.17.128\/25", + "version":20362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.18.0", + "prefixLen":25, + "network":"193.71.18.0\/25", + "version":20361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.18.128", + "prefixLen":25, + "network":"193.71.18.128\/25", + "version":20360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.19.0", + "prefixLen":25, + "network":"193.71.19.0\/25", + "version":20359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.19.128", + "prefixLen":25, + "network":"193.71.19.128\/25", + "version":20358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.32.0", + "prefixLen":25, + "network":"193.71.32.0\/25", + "version":20357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.32.128", + "prefixLen":25, + "network":"193.71.32.128\/25", + "version":20356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.33.0", + "prefixLen":25, + "network":"193.71.33.0\/25", + "version":20355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.33.128", + "prefixLen":25, + "network":"193.71.33.128\/25", + "version":20354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.34.0", + "prefixLen":25, + "network":"193.71.34.0\/25", + "version":20353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.34.128", + "prefixLen":25, + "network":"193.71.34.128\/25", + "version":20352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.35.0", + "prefixLen":25, + "network":"193.71.35.0\/25", + "version":20351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.35.128", + "prefixLen":25, + "network":"193.71.35.128\/25", + "version":20350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.48.0", + "prefixLen":25, + "network":"193.71.48.0\/25", + "version":20349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.48.128", + "prefixLen":25, + "network":"193.71.48.128\/25", + "version":20348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.49.0", + "prefixLen":25, + "network":"193.71.49.0\/25", + "version":20347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.49.128", + "prefixLen":25, + "network":"193.71.49.128\/25", + "version":20346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.50.0", + "prefixLen":25, + "network":"193.71.50.0\/25", + "version":20345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.50.128", + "prefixLen":25, + "network":"193.71.50.128\/25", + "version":20344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.51.0", + "prefixLen":25, + "network":"193.71.51.0\/25", + "version":20343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.51.128", + "prefixLen":25, + "network":"193.71.51.128\/25", + "version":20342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.64.0", + "prefixLen":25, + "network":"193.71.64.0\/25", + "version":20341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.64.128", + "prefixLen":25, + "network":"193.71.64.128\/25", + "version":20340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.65.0", + "prefixLen":25, + "network":"193.71.65.0\/25", + "version":20339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.65.128", + "prefixLen":25, + "network":"193.71.65.128\/25", + "version":20338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.66.0", + "prefixLen":25, + "network":"193.71.66.0\/25", + "version":20337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.66.128", + "prefixLen":25, + "network":"193.71.66.128\/25", + "version":20336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.67.0", + "prefixLen":25, + "network":"193.71.67.0\/25", + "version":20335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.67.128", + "prefixLen":25, + "network":"193.71.67.128\/25", + "version":20334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.80.0", + "prefixLen":25, + "network":"193.71.80.0\/25", + "version":20333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.80.128", + "prefixLen":25, + "network":"193.71.80.128\/25", + "version":20332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.81.0", + "prefixLen":25, + "network":"193.71.81.0\/25", + "version":20331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.81.128", + "prefixLen":25, + "network":"193.71.81.128\/25", + "version":20330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.82.0", + "prefixLen":25, + "network":"193.71.82.0\/25", + "version":20329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.82.128", + "prefixLen":25, + "network":"193.71.82.128\/25", + "version":20328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.83.0", + "prefixLen":25, + "network":"193.71.83.0\/25", + "version":20327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.83.128", + "prefixLen":25, + "network":"193.71.83.128\/25", + "version":20326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.96.0", + "prefixLen":25, + "network":"193.71.96.0\/25", + "version":20325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.96.128", + "prefixLen":25, + "network":"193.71.96.128\/25", + "version":20324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.97.0", + "prefixLen":25, + "network":"193.71.97.0\/25", + "version":20323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.97.128", + "prefixLen":25, + "network":"193.71.97.128\/25", + "version":20322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.98.0", + "prefixLen":25, + "network":"193.71.98.0\/25", + "version":20321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.98.128", + "prefixLen":25, + "network":"193.71.98.128\/25", + "version":20320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.99.0", + "prefixLen":25, + "network":"193.71.99.0\/25", + "version":20319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.99.128", + "prefixLen":25, + "network":"193.71.99.128\/25", + "version":20318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.112.0", + "prefixLen":25, + "network":"193.71.112.0\/25", + "version":20317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.112.128", + "prefixLen":25, + "network":"193.71.112.128\/25", + "version":20316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.113.0", + "prefixLen":25, + "network":"193.71.113.0\/25", + "version":20315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.113.128", + "prefixLen":25, + "network":"193.71.113.128\/25", + "version":20314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.114.0", + "prefixLen":25, + "network":"193.71.114.0\/25", + "version":20313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.114.128", + "prefixLen":25, + "network":"193.71.114.128\/25", + "version":20312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.115.0", + "prefixLen":25, + "network":"193.71.115.0\/25", + "version":20311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.115.128", + "prefixLen":25, + "network":"193.71.115.128\/25", + "version":20310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.128.0", + "prefixLen":25, + "network":"193.71.128.0\/25", + "version":20309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.128.128", + "prefixLen":25, + "network":"193.71.128.128\/25", + "version":20308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.129.0", + "prefixLen":25, + "network":"193.71.129.0\/25", + "version":20307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.129.128", + "prefixLen":25, + "network":"193.71.129.128\/25", + "version":20306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.130.0", + "prefixLen":25, + "network":"193.71.130.0\/25", + "version":20305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.130.128", + "prefixLen":25, + "network":"193.71.130.128\/25", + "version":20304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.131.0", + "prefixLen":25, + "network":"193.71.131.0\/25", + "version":20303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.131.128", + "prefixLen":25, + "network":"193.71.131.128\/25", + "version":20302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.144.0", + "prefixLen":25, + "network":"193.71.144.0\/25", + "version":20301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.144.128", + "prefixLen":25, + "network":"193.71.144.128\/25", + "version":20300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.145.0", + "prefixLen":25, + "network":"193.71.145.0\/25", + "version":20299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.145.128", + "prefixLen":25, + "network":"193.71.145.128\/25", + "version":20298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.146.0", + "prefixLen":25, + "network":"193.71.146.0\/25", + "version":20297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.146.128", + "prefixLen":25, + "network":"193.71.146.128\/25", + "version":20296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.147.0", + "prefixLen":25, + "network":"193.71.147.0\/25", + "version":20295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.147.128", + "prefixLen":25, + "network":"193.71.147.128\/25", + "version":20294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.160.0", + "prefixLen":25, + "network":"193.71.160.0\/25", + "version":20293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.160.128", + "prefixLen":25, + "network":"193.71.160.128\/25", + "version":20292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.161.0", + "prefixLen":25, + "network":"193.71.161.0\/25", + "version":20291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.161.128", + "prefixLen":25, + "network":"193.71.161.128\/25", + "version":20290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.162.0", + "prefixLen":25, + "network":"193.71.162.0\/25", + "version":20289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.162.128", + "prefixLen":25, + "network":"193.71.162.128\/25", + "version":20288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.163.0", + "prefixLen":25, + "network":"193.71.163.0\/25", + "version":20287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.163.128", + "prefixLen":25, + "network":"193.71.163.128\/25", + "version":20286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.176.0", + "prefixLen":25, + "network":"193.71.176.0\/25", + "version":20285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.176.128", + "prefixLen":25, + "network":"193.71.176.128\/25", + "version":20284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.177.0", + "prefixLen":25, + "network":"193.71.177.0\/25", + "version":20283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.177.128", + "prefixLen":25, + "network":"193.71.177.128\/25", + "version":20282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.178.0", + "prefixLen":25, + "network":"193.71.178.0\/25", + "version":20281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.178.128", + "prefixLen":25, + "network":"193.71.178.128\/25", + "version":20280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.179.0", + "prefixLen":25, + "network":"193.71.179.0\/25", + "version":20279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.179.128", + "prefixLen":25, + "network":"193.71.179.128\/25", + "version":20278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.192.0", + "prefixLen":25, + "network":"193.71.192.0\/25", + "version":20277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.192.128", + "prefixLen":25, + "network":"193.71.192.128\/25", + "version":20276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.193.0", + "prefixLen":25, + "network":"193.71.193.0\/25", + "version":20275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.193.128", + "prefixLen":25, + "network":"193.71.193.128\/25", + "version":20274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.194.0", + "prefixLen":25, + "network":"193.71.194.0\/25", + "version":20273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.194.128", + "prefixLen":25, + "network":"193.71.194.128\/25", + "version":20272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.195.0", + "prefixLen":25, + "network":"193.71.195.0\/25", + "version":20271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.195.128", + "prefixLen":25, + "network":"193.71.195.128\/25", + "version":20270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.208.0", + "prefixLen":25, + "network":"193.71.208.0\/25", + "version":20269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.208.128", + "prefixLen":25, + "network":"193.71.208.128\/25", + "version":20268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.209.0", + "prefixLen":25, + "network":"193.71.209.0\/25", + "version":20267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.209.128", + "prefixLen":25, + "network":"193.71.209.128\/25", + "version":20266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.210.0", + "prefixLen":25, + "network":"193.71.210.0\/25", + "version":20265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.210.128", + "prefixLen":25, + "network":"193.71.210.128\/25", + "version":20264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.211.0", + "prefixLen":25, + "network":"193.71.211.0\/25", + "version":20263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.211.128", + "prefixLen":25, + "network":"193.71.211.128\/25", + "version":20262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.224.0", + "prefixLen":25, + "network":"193.71.224.0\/25", + "version":20261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.224.128", + "prefixLen":25, + "network":"193.71.224.128\/25", + "version":20260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.225.0", + "prefixLen":25, + "network":"193.71.225.0\/25", + "version":20259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.225.128", + "prefixLen":25, + "network":"193.71.225.128\/25", + "version":20258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.226.0", + "prefixLen":25, + "network":"193.71.226.0\/25", + "version":20257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.226.128", + "prefixLen":25, + "network":"193.71.226.128\/25", + "version":20256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.227.0", + "prefixLen":25, + "network":"193.71.227.0\/25", + "version":20255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.227.128", + "prefixLen":25, + "network":"193.71.227.128\/25", + "version":20254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.240.0", + "prefixLen":25, + "network":"193.71.240.0\/25", + "version":20253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.240.128", + "prefixLen":25, + "network":"193.71.240.128\/25", + "version":20252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.241.0", + "prefixLen":25, + "network":"193.71.241.0\/25", + "version":20251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.241.128", + "prefixLen":25, + "network":"193.71.241.128\/25", + "version":20250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.242.0", + "prefixLen":25, + "network":"193.71.242.0\/25", + "version":20249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.242.128", + "prefixLen":25, + "network":"193.71.242.128\/25", + "version":20248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.243.0", + "prefixLen":25, + "network":"193.71.243.0\/25", + "version":20247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.71.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.71.243.128", + "prefixLen":25, + "network":"193.71.243.128\/25", + "version":20246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64759 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.0.0", + "prefixLen":25, + "network":"193.72.0.0\/25", + "version":20373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.0.128", + "prefixLen":25, + "network":"193.72.0.128\/25", + "version":20500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.1.0", + "prefixLen":25, + "network":"193.72.1.0\/25", + "version":20499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.1.128", + "prefixLen":25, + "network":"193.72.1.128\/25", + "version":20498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.2.0", + "prefixLen":25, + "network":"193.72.2.0\/25", + "version":20497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.2.128", + "prefixLen":25, + "network":"193.72.2.128\/25", + "version":20496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.3.0", + "prefixLen":25, + "network":"193.72.3.0\/25", + "version":20495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.3.128", + "prefixLen":25, + "network":"193.72.3.128\/25", + "version":20494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.16.0", + "prefixLen":25, + "network":"193.72.16.0\/25", + "version":20493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.16.128", + "prefixLen":25, + "network":"193.72.16.128\/25", + "version":20492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.17.0", + "prefixLen":25, + "network":"193.72.17.0\/25", + "version":20491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.17.128", + "prefixLen":25, + "network":"193.72.17.128\/25", + "version":20490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.18.0", + "prefixLen":25, + "network":"193.72.18.0\/25", + "version":20489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.18.128", + "prefixLen":25, + "network":"193.72.18.128\/25", + "version":20488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.19.0", + "prefixLen":25, + "network":"193.72.19.0\/25", + "version":20487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.19.128", + "prefixLen":25, + "network":"193.72.19.128\/25", + "version":20486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.32.0", + "prefixLen":25, + "network":"193.72.32.0\/25", + "version":20485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.32.128", + "prefixLen":25, + "network":"193.72.32.128\/25", + "version":20484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.33.0", + "prefixLen":25, + "network":"193.72.33.0\/25", + "version":20483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.33.128", + "prefixLen":25, + "network":"193.72.33.128\/25", + "version":20482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.34.0", + "prefixLen":25, + "network":"193.72.34.0\/25", + "version":20481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.34.128", + "prefixLen":25, + "network":"193.72.34.128\/25", + "version":20480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.35.0", + "prefixLen":25, + "network":"193.72.35.0\/25", + "version":20479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.35.128", + "prefixLen":25, + "network":"193.72.35.128\/25", + "version":20478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.48.0", + "prefixLen":25, + "network":"193.72.48.0\/25", + "version":20477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.48.128", + "prefixLen":25, + "network":"193.72.48.128\/25", + "version":20476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.49.0", + "prefixLen":25, + "network":"193.72.49.0\/25", + "version":20475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.49.128", + "prefixLen":25, + "network":"193.72.49.128\/25", + "version":20474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.50.0", + "prefixLen":25, + "network":"193.72.50.0\/25", + "version":20473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.50.128", + "prefixLen":25, + "network":"193.72.50.128\/25", + "version":20472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.51.0", + "prefixLen":25, + "network":"193.72.51.0\/25", + "version":20471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.51.128", + "prefixLen":25, + "network":"193.72.51.128\/25", + "version":20470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.64.0", + "prefixLen":25, + "network":"193.72.64.0\/25", + "version":20469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.64.128", + "prefixLen":25, + "network":"193.72.64.128\/25", + "version":20468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.65.0", + "prefixLen":25, + "network":"193.72.65.0\/25", + "version":20467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.65.128", + "prefixLen":25, + "network":"193.72.65.128\/25", + "version":20466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.66.0", + "prefixLen":25, + "network":"193.72.66.0\/25", + "version":20465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.66.128", + "prefixLen":25, + "network":"193.72.66.128\/25", + "version":20464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.67.0", + "prefixLen":25, + "network":"193.72.67.0\/25", + "version":20463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.67.128", + "prefixLen":25, + "network":"193.72.67.128\/25", + "version":20462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.80.0", + "prefixLen":25, + "network":"193.72.80.0\/25", + "version":20461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.80.128", + "prefixLen":25, + "network":"193.72.80.128\/25", + "version":20460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.81.0", + "prefixLen":25, + "network":"193.72.81.0\/25", + "version":20459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.81.128", + "prefixLen":25, + "network":"193.72.81.128\/25", + "version":20458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.82.0", + "prefixLen":25, + "network":"193.72.82.0\/25", + "version":20457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.82.128", + "prefixLen":25, + "network":"193.72.82.128\/25", + "version":20456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.83.0", + "prefixLen":25, + "network":"193.72.83.0\/25", + "version":20455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.83.128", + "prefixLen":25, + "network":"193.72.83.128\/25", + "version":20454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.96.0", + "prefixLen":25, + "network":"193.72.96.0\/25", + "version":20453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.96.128", + "prefixLen":25, + "network":"193.72.96.128\/25", + "version":20452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.97.0", + "prefixLen":25, + "network":"193.72.97.0\/25", + "version":20451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.97.128", + "prefixLen":25, + "network":"193.72.97.128\/25", + "version":20450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.98.0", + "prefixLen":25, + "network":"193.72.98.0\/25", + "version":20449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.98.128", + "prefixLen":25, + "network":"193.72.98.128\/25", + "version":20448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.99.0", + "prefixLen":25, + "network":"193.72.99.0\/25", + "version":20447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.99.128", + "prefixLen":25, + "network":"193.72.99.128\/25", + "version":20446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.112.0", + "prefixLen":25, + "network":"193.72.112.0\/25", + "version":20445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.112.128", + "prefixLen":25, + "network":"193.72.112.128\/25", + "version":20444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.113.0", + "prefixLen":25, + "network":"193.72.113.0\/25", + "version":20443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.113.128", + "prefixLen":25, + "network":"193.72.113.128\/25", + "version":20442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.114.0", + "prefixLen":25, + "network":"193.72.114.0\/25", + "version":20441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.114.128", + "prefixLen":25, + "network":"193.72.114.128\/25", + "version":20440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.115.0", + "prefixLen":25, + "network":"193.72.115.0\/25", + "version":20439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.115.128", + "prefixLen":25, + "network":"193.72.115.128\/25", + "version":20438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.128.0", + "prefixLen":25, + "network":"193.72.128.0\/25", + "version":20437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.128.128", + "prefixLen":25, + "network":"193.72.128.128\/25", + "version":20436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.129.0", + "prefixLen":25, + "network":"193.72.129.0\/25", + "version":20435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.129.128", + "prefixLen":25, + "network":"193.72.129.128\/25", + "version":20434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.130.0", + "prefixLen":25, + "network":"193.72.130.0\/25", + "version":20433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.130.128", + "prefixLen":25, + "network":"193.72.130.128\/25", + "version":20432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.131.0", + "prefixLen":25, + "network":"193.72.131.0\/25", + "version":20431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.131.128", + "prefixLen":25, + "network":"193.72.131.128\/25", + "version":20430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.144.0", + "prefixLen":25, + "network":"193.72.144.0\/25", + "version":20429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.144.128", + "prefixLen":25, + "network":"193.72.144.128\/25", + "version":20428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.145.0", + "prefixLen":25, + "network":"193.72.145.0\/25", + "version":20427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.145.128", + "prefixLen":25, + "network":"193.72.145.128\/25", + "version":20426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.146.0", + "prefixLen":25, + "network":"193.72.146.0\/25", + "version":20425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.146.128", + "prefixLen":25, + "network":"193.72.146.128\/25", + "version":20424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.147.0", + "prefixLen":25, + "network":"193.72.147.0\/25", + "version":20423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.147.128", + "prefixLen":25, + "network":"193.72.147.128\/25", + "version":20422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.160.0", + "prefixLen":25, + "network":"193.72.160.0\/25", + "version":20421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.160.128", + "prefixLen":25, + "network":"193.72.160.128\/25", + "version":20420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.161.0", + "prefixLen":25, + "network":"193.72.161.0\/25", + "version":20419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.161.128", + "prefixLen":25, + "network":"193.72.161.128\/25", + "version":20418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.162.0", + "prefixLen":25, + "network":"193.72.162.0\/25", + "version":20417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.162.128", + "prefixLen":25, + "network":"193.72.162.128\/25", + "version":20416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.163.0", + "prefixLen":25, + "network":"193.72.163.0\/25", + "version":20415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.163.128", + "prefixLen":25, + "network":"193.72.163.128\/25", + "version":20414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.176.0", + "prefixLen":25, + "network":"193.72.176.0\/25", + "version":20413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.176.128", + "prefixLen":25, + "network":"193.72.176.128\/25", + "version":20412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.177.0", + "prefixLen":25, + "network":"193.72.177.0\/25", + "version":20411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.177.128", + "prefixLen":25, + "network":"193.72.177.128\/25", + "version":20410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.178.0", + "prefixLen":25, + "network":"193.72.178.0\/25", + "version":20409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.178.128", + "prefixLen":25, + "network":"193.72.178.128\/25", + "version":20408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.179.0", + "prefixLen":25, + "network":"193.72.179.0\/25", + "version":20407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.179.128", + "prefixLen":25, + "network":"193.72.179.128\/25", + "version":20406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.192.0", + "prefixLen":25, + "network":"193.72.192.0\/25", + "version":20405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.192.128", + "prefixLen":25, + "network":"193.72.192.128\/25", + "version":20404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.193.0", + "prefixLen":25, + "network":"193.72.193.0\/25", + "version":20403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.193.128", + "prefixLen":25, + "network":"193.72.193.128\/25", + "version":20402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.194.0", + "prefixLen":25, + "network":"193.72.194.0\/25", + "version":20401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.194.128", + "prefixLen":25, + "network":"193.72.194.128\/25", + "version":20400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.195.0", + "prefixLen":25, + "network":"193.72.195.0\/25", + "version":20399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.195.128", + "prefixLen":25, + "network":"193.72.195.128\/25", + "version":20398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.208.0", + "prefixLen":25, + "network":"193.72.208.0\/25", + "version":20397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.208.128", + "prefixLen":25, + "network":"193.72.208.128\/25", + "version":20396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.209.0", + "prefixLen":25, + "network":"193.72.209.0\/25", + "version":20395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.209.128", + "prefixLen":25, + "network":"193.72.209.128\/25", + "version":20394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.210.0", + "prefixLen":25, + "network":"193.72.210.0\/25", + "version":20393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.210.128", + "prefixLen":25, + "network":"193.72.210.128\/25", + "version":20392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.211.0", + "prefixLen":25, + "network":"193.72.211.0\/25", + "version":20391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.211.128", + "prefixLen":25, + "network":"193.72.211.128\/25", + "version":20390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.224.0", + "prefixLen":25, + "network":"193.72.224.0\/25", + "version":20389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.224.128", + "prefixLen":25, + "network":"193.72.224.128\/25", + "version":20388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.225.0", + "prefixLen":25, + "network":"193.72.225.0\/25", + "version":20387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.225.128", + "prefixLen":25, + "network":"193.72.225.128\/25", + "version":20386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.226.0", + "prefixLen":25, + "network":"193.72.226.0\/25", + "version":20385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.226.128", + "prefixLen":25, + "network":"193.72.226.128\/25", + "version":20384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.227.0", + "prefixLen":25, + "network":"193.72.227.0\/25", + "version":20383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.227.128", + "prefixLen":25, + "network":"193.72.227.128\/25", + "version":20382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.240.0", + "prefixLen":25, + "network":"193.72.240.0\/25", + "version":20381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.240.128", + "prefixLen":25, + "network":"193.72.240.128\/25", + "version":20380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.241.0", + "prefixLen":25, + "network":"193.72.241.0\/25", + "version":20379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.241.128", + "prefixLen":25, + "network":"193.72.241.128\/25", + "version":20378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.242.0", + "prefixLen":25, + "network":"193.72.242.0\/25", + "version":20377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.242.128", + "prefixLen":25, + "network":"193.72.242.128\/25", + "version":20376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.243.0", + "prefixLen":25, + "network":"193.72.243.0\/25", + "version":20375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.72.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.72.243.128", + "prefixLen":25, + "network":"193.72.243.128\/25", + "version":20374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64760 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.0.0", + "prefixLen":25, + "network":"193.73.0.0\/25", + "version":20501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.0.128", + "prefixLen":25, + "network":"193.73.0.128\/25", + "version":20628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.1.0", + "prefixLen":25, + "network":"193.73.1.0\/25", + "version":20627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.1.128", + "prefixLen":25, + "network":"193.73.1.128\/25", + "version":20626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.2.0", + "prefixLen":25, + "network":"193.73.2.0\/25", + "version":20625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.2.128", + "prefixLen":25, + "network":"193.73.2.128\/25", + "version":20624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.3.0", + "prefixLen":25, + "network":"193.73.3.0\/25", + "version":20623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.3.128", + "prefixLen":25, + "network":"193.73.3.128\/25", + "version":20622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.16.0", + "prefixLen":25, + "network":"193.73.16.0\/25", + "version":20621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.16.128", + "prefixLen":25, + "network":"193.73.16.128\/25", + "version":20620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.17.0", + "prefixLen":25, + "network":"193.73.17.0\/25", + "version":20619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.17.128", + "prefixLen":25, + "network":"193.73.17.128\/25", + "version":20618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.18.0", + "prefixLen":25, + "network":"193.73.18.0\/25", + "version":20617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.18.128", + "prefixLen":25, + "network":"193.73.18.128\/25", + "version":20616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.19.0", + "prefixLen":25, + "network":"193.73.19.0\/25", + "version":20615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.19.128", + "prefixLen":25, + "network":"193.73.19.128\/25", + "version":20614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.32.0", + "prefixLen":25, + "network":"193.73.32.0\/25", + "version":20613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.32.128", + "prefixLen":25, + "network":"193.73.32.128\/25", + "version":20612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.33.0", + "prefixLen":25, + "network":"193.73.33.0\/25", + "version":20611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.33.128", + "prefixLen":25, + "network":"193.73.33.128\/25", + "version":20610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.34.0", + "prefixLen":25, + "network":"193.73.34.0\/25", + "version":20609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.34.128", + "prefixLen":25, + "network":"193.73.34.128\/25", + "version":20608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.35.0", + "prefixLen":25, + "network":"193.73.35.0\/25", + "version":20607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.35.128", + "prefixLen":25, + "network":"193.73.35.128\/25", + "version":20606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.48.0", + "prefixLen":25, + "network":"193.73.48.0\/25", + "version":20605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.48.128", + "prefixLen":25, + "network":"193.73.48.128\/25", + "version":20604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.49.0", + "prefixLen":25, + "network":"193.73.49.0\/25", + "version":20603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.49.128", + "prefixLen":25, + "network":"193.73.49.128\/25", + "version":20602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.50.0", + "prefixLen":25, + "network":"193.73.50.0\/25", + "version":20601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.50.128", + "prefixLen":25, + "network":"193.73.50.128\/25", + "version":20600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.51.0", + "prefixLen":25, + "network":"193.73.51.0\/25", + "version":20599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.51.128", + "prefixLen":25, + "network":"193.73.51.128\/25", + "version":20598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.64.0", + "prefixLen":25, + "network":"193.73.64.0\/25", + "version":20597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.64.128", + "prefixLen":25, + "network":"193.73.64.128\/25", + "version":20596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.65.0", + "prefixLen":25, + "network":"193.73.65.0\/25", + "version":20595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.65.128", + "prefixLen":25, + "network":"193.73.65.128\/25", + "version":20594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.66.0", + "prefixLen":25, + "network":"193.73.66.0\/25", + "version":20593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.66.128", + "prefixLen":25, + "network":"193.73.66.128\/25", + "version":20592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.67.0", + "prefixLen":25, + "network":"193.73.67.0\/25", + "version":20591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.67.128", + "prefixLen":25, + "network":"193.73.67.128\/25", + "version":20590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.80.0", + "prefixLen":25, + "network":"193.73.80.0\/25", + "version":20589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.80.128", + "prefixLen":25, + "network":"193.73.80.128\/25", + "version":20588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.81.0", + "prefixLen":25, + "network":"193.73.81.0\/25", + "version":20587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.81.128", + "prefixLen":25, + "network":"193.73.81.128\/25", + "version":20586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.82.0", + "prefixLen":25, + "network":"193.73.82.0\/25", + "version":20585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.82.128", + "prefixLen":25, + "network":"193.73.82.128\/25", + "version":20584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.83.0", + "prefixLen":25, + "network":"193.73.83.0\/25", + "version":20583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.83.128", + "prefixLen":25, + "network":"193.73.83.128\/25", + "version":20582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.96.0", + "prefixLen":25, + "network":"193.73.96.0\/25", + "version":20581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.96.128", + "prefixLen":25, + "network":"193.73.96.128\/25", + "version":20580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.97.0", + "prefixLen":25, + "network":"193.73.97.0\/25", + "version":20579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.97.128", + "prefixLen":25, + "network":"193.73.97.128\/25", + "version":20578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.98.0", + "prefixLen":25, + "network":"193.73.98.0\/25", + "version":20577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.98.128", + "prefixLen":25, + "network":"193.73.98.128\/25", + "version":20576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.99.0", + "prefixLen":25, + "network":"193.73.99.0\/25", + "version":20575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.99.128", + "prefixLen":25, + "network":"193.73.99.128\/25", + "version":20574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.112.0", + "prefixLen":25, + "network":"193.73.112.0\/25", + "version":20573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.112.128", + "prefixLen":25, + "network":"193.73.112.128\/25", + "version":20572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.113.0", + "prefixLen":25, + "network":"193.73.113.0\/25", + "version":20571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.113.128", + "prefixLen":25, + "network":"193.73.113.128\/25", + "version":20570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.114.0", + "prefixLen":25, + "network":"193.73.114.0\/25", + "version":20569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.114.128", + "prefixLen":25, + "network":"193.73.114.128\/25", + "version":20568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.115.0", + "prefixLen":25, + "network":"193.73.115.0\/25", + "version":20567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.115.128", + "prefixLen":25, + "network":"193.73.115.128\/25", + "version":20566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.128.0", + "prefixLen":25, + "network":"193.73.128.0\/25", + "version":20565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.128.128", + "prefixLen":25, + "network":"193.73.128.128\/25", + "version":20564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.129.0", + "prefixLen":25, + "network":"193.73.129.0\/25", + "version":20563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.129.128", + "prefixLen":25, + "network":"193.73.129.128\/25", + "version":20562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.130.0", + "prefixLen":25, + "network":"193.73.130.0\/25", + "version":20561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.130.128", + "prefixLen":25, + "network":"193.73.130.128\/25", + "version":20560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.131.0", + "prefixLen":25, + "network":"193.73.131.0\/25", + "version":20559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.131.128", + "prefixLen":25, + "network":"193.73.131.128\/25", + "version":20558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.144.0", + "prefixLen":25, + "network":"193.73.144.0\/25", + "version":20557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.144.128", + "prefixLen":25, + "network":"193.73.144.128\/25", + "version":20556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.145.0", + "prefixLen":25, + "network":"193.73.145.0\/25", + "version":20555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.145.128", + "prefixLen":25, + "network":"193.73.145.128\/25", + "version":20554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.146.0", + "prefixLen":25, + "network":"193.73.146.0\/25", + "version":20553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.146.128", + "prefixLen":25, + "network":"193.73.146.128\/25", + "version":20552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.147.0", + "prefixLen":25, + "network":"193.73.147.0\/25", + "version":20551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.147.128", + "prefixLen":25, + "network":"193.73.147.128\/25", + "version":20550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.160.0", + "prefixLen":25, + "network":"193.73.160.0\/25", + "version":20549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.160.128", + "prefixLen":25, + "network":"193.73.160.128\/25", + "version":20548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.161.0", + "prefixLen":25, + "network":"193.73.161.0\/25", + "version":20547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.161.128", + "prefixLen":25, + "network":"193.73.161.128\/25", + "version":20546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.162.0", + "prefixLen":25, + "network":"193.73.162.0\/25", + "version":20545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.162.128", + "prefixLen":25, + "network":"193.73.162.128\/25", + "version":20544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.163.0", + "prefixLen":25, + "network":"193.73.163.0\/25", + "version":20543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.163.128", + "prefixLen":25, + "network":"193.73.163.128\/25", + "version":20542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.176.0", + "prefixLen":25, + "network":"193.73.176.0\/25", + "version":20541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.176.128", + "prefixLen":25, + "network":"193.73.176.128\/25", + "version":20540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.177.0", + "prefixLen":25, + "network":"193.73.177.0\/25", + "version":20539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.177.128", + "prefixLen":25, + "network":"193.73.177.128\/25", + "version":20538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.178.0", + "prefixLen":25, + "network":"193.73.178.0\/25", + "version":20537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.178.128", + "prefixLen":25, + "network":"193.73.178.128\/25", + "version":20536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.179.0", + "prefixLen":25, + "network":"193.73.179.0\/25", + "version":20535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.179.128", + "prefixLen":25, + "network":"193.73.179.128\/25", + "version":20534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.192.0", + "prefixLen":25, + "network":"193.73.192.0\/25", + "version":20533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.192.128", + "prefixLen":25, + "network":"193.73.192.128\/25", + "version":20532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.193.0", + "prefixLen":25, + "network":"193.73.193.0\/25", + "version":20531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.193.128", + "prefixLen":25, + "network":"193.73.193.128\/25", + "version":20530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.194.0", + "prefixLen":25, + "network":"193.73.194.0\/25", + "version":20529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.194.128", + "prefixLen":25, + "network":"193.73.194.128\/25", + "version":20528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.195.0", + "prefixLen":25, + "network":"193.73.195.0\/25", + "version":20527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.195.128", + "prefixLen":25, + "network":"193.73.195.128\/25", + "version":20526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.208.0", + "prefixLen":25, + "network":"193.73.208.0\/25", + "version":20525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.208.128", + "prefixLen":25, + "network":"193.73.208.128\/25", + "version":20524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.209.0", + "prefixLen":25, + "network":"193.73.209.0\/25", + "version":20523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.209.128", + "prefixLen":25, + "network":"193.73.209.128\/25", + "version":20522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.210.0", + "prefixLen":25, + "network":"193.73.210.0\/25", + "version":20521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.210.128", + "prefixLen":25, + "network":"193.73.210.128\/25", + "version":20520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.211.0", + "prefixLen":25, + "network":"193.73.211.0\/25", + "version":20519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.211.128", + "prefixLen":25, + "network":"193.73.211.128\/25", + "version":20518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.224.0", + "prefixLen":25, + "network":"193.73.224.0\/25", + "version":20517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.224.128", + "prefixLen":25, + "network":"193.73.224.128\/25", + "version":20516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.225.0", + "prefixLen":25, + "network":"193.73.225.0\/25", + "version":20515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.225.128", + "prefixLen":25, + "network":"193.73.225.128\/25", + "version":20514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.226.0", + "prefixLen":25, + "network":"193.73.226.0\/25", + "version":20513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.226.128", + "prefixLen":25, + "network":"193.73.226.128\/25", + "version":20512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.227.0", + "prefixLen":25, + "network":"193.73.227.0\/25", + "version":20511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.227.128", + "prefixLen":25, + "network":"193.73.227.128\/25", + "version":20510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.240.0", + "prefixLen":25, + "network":"193.73.240.0\/25", + "version":20509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.240.128", + "prefixLen":25, + "network":"193.73.240.128\/25", + "version":20508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.241.0", + "prefixLen":25, + "network":"193.73.241.0\/25", + "version":20507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.241.128", + "prefixLen":25, + "network":"193.73.241.128\/25", + "version":20506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.242.0", + "prefixLen":25, + "network":"193.73.242.0\/25", + "version":20505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.242.128", + "prefixLen":25, + "network":"193.73.242.128\/25", + "version":20504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.243.0", + "prefixLen":25, + "network":"193.73.243.0\/25", + "version":20503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.73.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.73.243.128", + "prefixLen":25, + "network":"193.73.243.128\/25", + "version":20502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64761 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.0.0", + "prefixLen":25, + "network":"193.74.0.0\/25", + "version":20629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.0.128", + "prefixLen":25, + "network":"193.74.0.128\/25", + "version":20756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.1.0", + "prefixLen":25, + "network":"193.74.1.0\/25", + "version":20755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.1.128", + "prefixLen":25, + "network":"193.74.1.128\/25", + "version":20754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.2.0", + "prefixLen":25, + "network":"193.74.2.0\/25", + "version":20753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.2.128", + "prefixLen":25, + "network":"193.74.2.128\/25", + "version":20752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.3.0", + "prefixLen":25, + "network":"193.74.3.0\/25", + "version":20751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.3.128", + "prefixLen":25, + "network":"193.74.3.128\/25", + "version":20750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.16.0", + "prefixLen":25, + "network":"193.74.16.0\/25", + "version":20749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.16.128", + "prefixLen":25, + "network":"193.74.16.128\/25", + "version":20748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.17.0", + "prefixLen":25, + "network":"193.74.17.0\/25", + "version":20747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.17.128", + "prefixLen":25, + "network":"193.74.17.128\/25", + "version":20746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.18.0", + "prefixLen":25, + "network":"193.74.18.0\/25", + "version":20745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.18.128", + "prefixLen":25, + "network":"193.74.18.128\/25", + "version":20744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.19.0", + "prefixLen":25, + "network":"193.74.19.0\/25", + "version":20743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.19.128", + "prefixLen":25, + "network":"193.74.19.128\/25", + "version":20742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.32.0", + "prefixLen":25, + "network":"193.74.32.0\/25", + "version":20741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.32.128", + "prefixLen":25, + "network":"193.74.32.128\/25", + "version":20740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.33.0", + "prefixLen":25, + "network":"193.74.33.0\/25", + "version":20739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.33.128", + "prefixLen":25, + "network":"193.74.33.128\/25", + "version":20738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.34.0", + "prefixLen":25, + "network":"193.74.34.0\/25", + "version":20737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.34.128", + "prefixLen":25, + "network":"193.74.34.128\/25", + "version":20736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.35.0", + "prefixLen":25, + "network":"193.74.35.0\/25", + "version":20735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.35.128", + "prefixLen":25, + "network":"193.74.35.128\/25", + "version":20734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.48.0", + "prefixLen":25, + "network":"193.74.48.0\/25", + "version":20733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.48.128", + "prefixLen":25, + "network":"193.74.48.128\/25", + "version":20732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.49.0", + "prefixLen":25, + "network":"193.74.49.0\/25", + "version":20731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.49.128", + "prefixLen":25, + "network":"193.74.49.128\/25", + "version":20730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.50.0", + "prefixLen":25, + "network":"193.74.50.0\/25", + "version":20729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.50.128", + "prefixLen":25, + "network":"193.74.50.128\/25", + "version":20728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.51.0", + "prefixLen":25, + "network":"193.74.51.0\/25", + "version":20727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.51.128", + "prefixLen":25, + "network":"193.74.51.128\/25", + "version":20726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.64.0", + "prefixLen":25, + "network":"193.74.64.0\/25", + "version":20725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.64.128", + "prefixLen":25, + "network":"193.74.64.128\/25", + "version":20724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.65.0", + "prefixLen":25, + "network":"193.74.65.0\/25", + "version":20723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.65.128", + "prefixLen":25, + "network":"193.74.65.128\/25", + "version":20722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.66.0", + "prefixLen":25, + "network":"193.74.66.0\/25", + "version":20721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.66.128", + "prefixLen":25, + "network":"193.74.66.128\/25", + "version":20720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.67.0", + "prefixLen":25, + "network":"193.74.67.0\/25", + "version":20719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.67.128", + "prefixLen":25, + "network":"193.74.67.128\/25", + "version":20718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.80.0", + "prefixLen":25, + "network":"193.74.80.0\/25", + "version":20717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.80.128", + "prefixLen":25, + "network":"193.74.80.128\/25", + "version":20716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.81.0", + "prefixLen":25, + "network":"193.74.81.0\/25", + "version":20715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.81.128", + "prefixLen":25, + "network":"193.74.81.128\/25", + "version":20714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.82.0", + "prefixLen":25, + "network":"193.74.82.0\/25", + "version":20713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.82.128", + "prefixLen":25, + "network":"193.74.82.128\/25", + "version":20712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.83.0", + "prefixLen":25, + "network":"193.74.83.0\/25", + "version":20711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.83.128", + "prefixLen":25, + "network":"193.74.83.128\/25", + "version":20710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.96.0", + "prefixLen":25, + "network":"193.74.96.0\/25", + "version":20709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.96.128", + "prefixLen":25, + "network":"193.74.96.128\/25", + "version":20708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.97.0", + "prefixLen":25, + "network":"193.74.97.0\/25", + "version":20707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.97.128", + "prefixLen":25, + "network":"193.74.97.128\/25", + "version":20706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.98.0", + "prefixLen":25, + "network":"193.74.98.0\/25", + "version":20705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.98.128", + "prefixLen":25, + "network":"193.74.98.128\/25", + "version":20704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.99.0", + "prefixLen":25, + "network":"193.74.99.0\/25", + "version":20703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.99.128", + "prefixLen":25, + "network":"193.74.99.128\/25", + "version":20702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.112.0", + "prefixLen":25, + "network":"193.74.112.0\/25", + "version":20701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.112.128", + "prefixLen":25, + "network":"193.74.112.128\/25", + "version":20700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.113.0", + "prefixLen":25, + "network":"193.74.113.0\/25", + "version":20699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.113.128", + "prefixLen":25, + "network":"193.74.113.128\/25", + "version":20698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.114.0", + "prefixLen":25, + "network":"193.74.114.0\/25", + "version":20697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.114.128", + "prefixLen":25, + "network":"193.74.114.128\/25", + "version":20696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.115.0", + "prefixLen":25, + "network":"193.74.115.0\/25", + "version":20695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.115.128", + "prefixLen":25, + "network":"193.74.115.128\/25", + "version":20694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.128.0", + "prefixLen":25, + "network":"193.74.128.0\/25", + "version":20693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.128.128", + "prefixLen":25, + "network":"193.74.128.128\/25", + "version":20692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.129.0", + "prefixLen":25, + "network":"193.74.129.0\/25", + "version":20691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.129.128", + "prefixLen":25, + "network":"193.74.129.128\/25", + "version":20690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.130.0", + "prefixLen":25, + "network":"193.74.130.0\/25", + "version":20689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.130.128", + "prefixLen":25, + "network":"193.74.130.128\/25", + "version":20688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.131.0", + "prefixLen":25, + "network":"193.74.131.0\/25", + "version":20687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.131.128", + "prefixLen":25, + "network":"193.74.131.128\/25", + "version":20686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.144.0", + "prefixLen":25, + "network":"193.74.144.0\/25", + "version":20685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.144.128", + "prefixLen":25, + "network":"193.74.144.128\/25", + "version":20684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.145.0", + "prefixLen":25, + "network":"193.74.145.0\/25", + "version":20683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.145.128", + "prefixLen":25, + "network":"193.74.145.128\/25", + "version":20682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.146.0", + "prefixLen":25, + "network":"193.74.146.0\/25", + "version":20681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.146.128", + "prefixLen":25, + "network":"193.74.146.128\/25", + "version":20680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.147.0", + "prefixLen":25, + "network":"193.74.147.0\/25", + "version":20679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.147.128", + "prefixLen":25, + "network":"193.74.147.128\/25", + "version":20678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.160.0", + "prefixLen":25, + "network":"193.74.160.0\/25", + "version":20677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.160.128", + "prefixLen":25, + "network":"193.74.160.128\/25", + "version":20676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.161.0", + "prefixLen":25, + "network":"193.74.161.0\/25", + "version":20675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.161.128", + "prefixLen":25, + "network":"193.74.161.128\/25", + "version":20674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.162.0", + "prefixLen":25, + "network":"193.74.162.0\/25", + "version":20673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.162.128", + "prefixLen":25, + "network":"193.74.162.128\/25", + "version":20672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.163.0", + "prefixLen":25, + "network":"193.74.163.0\/25", + "version":20671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.163.128", + "prefixLen":25, + "network":"193.74.163.128\/25", + "version":20670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.176.0", + "prefixLen":25, + "network":"193.74.176.0\/25", + "version":20669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.176.128", + "prefixLen":25, + "network":"193.74.176.128\/25", + "version":20668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.177.0", + "prefixLen":25, + "network":"193.74.177.0\/25", + "version":20667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.177.128", + "prefixLen":25, + "network":"193.74.177.128\/25", + "version":20666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.178.0", + "prefixLen":25, + "network":"193.74.178.0\/25", + "version":20665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.178.128", + "prefixLen":25, + "network":"193.74.178.128\/25", + "version":20664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.179.0", + "prefixLen":25, + "network":"193.74.179.0\/25", + "version":20663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.179.128", + "prefixLen":25, + "network":"193.74.179.128\/25", + "version":20662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.192.0", + "prefixLen":25, + "network":"193.74.192.0\/25", + "version":20661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.192.128", + "prefixLen":25, + "network":"193.74.192.128\/25", + "version":20660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.193.0", + "prefixLen":25, + "network":"193.74.193.0\/25", + "version":20659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.193.128", + "prefixLen":25, + "network":"193.74.193.128\/25", + "version":20658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.194.0", + "prefixLen":25, + "network":"193.74.194.0\/25", + "version":20657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.194.128", + "prefixLen":25, + "network":"193.74.194.128\/25", + "version":20656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.195.0", + "prefixLen":25, + "network":"193.74.195.0\/25", + "version":20655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.195.128", + "prefixLen":25, + "network":"193.74.195.128\/25", + "version":20654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.208.0", + "prefixLen":25, + "network":"193.74.208.0\/25", + "version":20653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.208.128", + "prefixLen":25, + "network":"193.74.208.128\/25", + "version":20652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.209.0", + "prefixLen":25, + "network":"193.74.209.0\/25", + "version":20651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.209.128", + "prefixLen":25, + "network":"193.74.209.128\/25", + "version":20650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.210.0", + "prefixLen":25, + "network":"193.74.210.0\/25", + "version":20649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.210.128", + "prefixLen":25, + "network":"193.74.210.128\/25", + "version":20648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.211.0", + "prefixLen":25, + "network":"193.74.211.0\/25", + "version":20647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.211.128", + "prefixLen":25, + "network":"193.74.211.128\/25", + "version":20646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.224.0", + "prefixLen":25, + "network":"193.74.224.0\/25", + "version":20645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.224.128", + "prefixLen":25, + "network":"193.74.224.128\/25", + "version":20644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.225.0", + "prefixLen":25, + "network":"193.74.225.0\/25", + "version":20643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.225.128", + "prefixLen":25, + "network":"193.74.225.128\/25", + "version":20642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.226.0", + "prefixLen":25, + "network":"193.74.226.0\/25", + "version":20641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.226.128", + "prefixLen":25, + "network":"193.74.226.128\/25", + "version":20640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.227.0", + "prefixLen":25, + "network":"193.74.227.0\/25", + "version":20639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.227.128", + "prefixLen":25, + "network":"193.74.227.128\/25", + "version":20638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.240.0", + "prefixLen":25, + "network":"193.74.240.0\/25", + "version":20637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.240.128", + "prefixLen":25, + "network":"193.74.240.128\/25", + "version":20636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.241.0", + "prefixLen":25, + "network":"193.74.241.0\/25", + "version":20635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.241.128", + "prefixLen":25, + "network":"193.74.241.128\/25", + "version":20634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.242.0", + "prefixLen":25, + "network":"193.74.242.0\/25", + "version":20633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.242.128", + "prefixLen":25, + "network":"193.74.242.128\/25", + "version":20632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.243.0", + "prefixLen":25, + "network":"193.74.243.0\/25", + "version":20631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.74.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.74.243.128", + "prefixLen":25, + "network":"193.74.243.128\/25", + "version":20630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64762 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.0.0", + "prefixLen":25, + "network":"193.75.0.0\/25", + "version":20757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.0.128", + "prefixLen":25, + "network":"193.75.0.128\/25", + "version":20884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.1.0", + "prefixLen":25, + "network":"193.75.1.0\/25", + "version":20883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.1.128", + "prefixLen":25, + "network":"193.75.1.128\/25", + "version":20882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.2.0", + "prefixLen":25, + "network":"193.75.2.0\/25", + "version":20881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.2.128", + "prefixLen":25, + "network":"193.75.2.128\/25", + "version":20880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.3.0", + "prefixLen":25, + "network":"193.75.3.0\/25", + "version":20879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.3.128", + "prefixLen":25, + "network":"193.75.3.128\/25", + "version":20878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.16.0", + "prefixLen":25, + "network":"193.75.16.0\/25", + "version":20877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.16.128", + "prefixLen":25, + "network":"193.75.16.128\/25", + "version":20876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.17.0", + "prefixLen":25, + "network":"193.75.17.0\/25", + "version":20875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.17.128", + "prefixLen":25, + "network":"193.75.17.128\/25", + "version":20874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.18.0", + "prefixLen":25, + "network":"193.75.18.0\/25", + "version":20873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.18.128", + "prefixLen":25, + "network":"193.75.18.128\/25", + "version":20872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.19.0", + "prefixLen":25, + "network":"193.75.19.0\/25", + "version":20871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.19.128", + "prefixLen":25, + "network":"193.75.19.128\/25", + "version":20870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.32.0", + "prefixLen":25, + "network":"193.75.32.0\/25", + "version":20869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.32.128", + "prefixLen":25, + "network":"193.75.32.128\/25", + "version":20868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.33.0", + "prefixLen":25, + "network":"193.75.33.0\/25", + "version":20867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.33.128", + "prefixLen":25, + "network":"193.75.33.128\/25", + "version":20866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.34.0", + "prefixLen":25, + "network":"193.75.34.0\/25", + "version":20865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.34.128", + "prefixLen":25, + "network":"193.75.34.128\/25", + "version":20864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.35.0", + "prefixLen":25, + "network":"193.75.35.0\/25", + "version":20863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.35.128", + "prefixLen":25, + "network":"193.75.35.128\/25", + "version":20862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.48.0", + "prefixLen":25, + "network":"193.75.48.0\/25", + "version":20861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.48.128", + "prefixLen":25, + "network":"193.75.48.128\/25", + "version":20860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.49.0", + "prefixLen":25, + "network":"193.75.49.0\/25", + "version":20859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.49.128", + "prefixLen":25, + "network":"193.75.49.128\/25", + "version":20858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.50.0", + "prefixLen":25, + "network":"193.75.50.0\/25", + "version":20857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.50.128", + "prefixLen":25, + "network":"193.75.50.128\/25", + "version":20856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.51.0", + "prefixLen":25, + "network":"193.75.51.0\/25", + "version":20855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.51.128", + "prefixLen":25, + "network":"193.75.51.128\/25", + "version":20854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.64.0", + "prefixLen":25, + "network":"193.75.64.0\/25", + "version":20853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.64.128", + "prefixLen":25, + "network":"193.75.64.128\/25", + "version":20852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.65.0", + "prefixLen":25, + "network":"193.75.65.0\/25", + "version":20851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.65.128", + "prefixLen":25, + "network":"193.75.65.128\/25", + "version":20850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.66.0", + "prefixLen":25, + "network":"193.75.66.0\/25", + "version":20849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.66.128", + "prefixLen":25, + "network":"193.75.66.128\/25", + "version":20848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.67.0", + "prefixLen":25, + "network":"193.75.67.0\/25", + "version":20847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.67.128", + "prefixLen":25, + "network":"193.75.67.128\/25", + "version":20846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.80.0", + "prefixLen":25, + "network":"193.75.80.0\/25", + "version":20845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.80.128", + "prefixLen":25, + "network":"193.75.80.128\/25", + "version":20844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.81.0", + "prefixLen":25, + "network":"193.75.81.0\/25", + "version":20843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.81.128", + "prefixLen":25, + "network":"193.75.81.128\/25", + "version":20842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.82.0", + "prefixLen":25, + "network":"193.75.82.0\/25", + "version":20841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.82.128", + "prefixLen":25, + "network":"193.75.82.128\/25", + "version":20840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.83.0", + "prefixLen":25, + "network":"193.75.83.0\/25", + "version":20839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.83.128", + "prefixLen":25, + "network":"193.75.83.128\/25", + "version":20838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.96.0", + "prefixLen":25, + "network":"193.75.96.0\/25", + "version":20837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.96.128", + "prefixLen":25, + "network":"193.75.96.128\/25", + "version":20836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.97.0", + "prefixLen":25, + "network":"193.75.97.0\/25", + "version":20835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.97.128", + "prefixLen":25, + "network":"193.75.97.128\/25", + "version":20834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.98.0", + "prefixLen":25, + "network":"193.75.98.0\/25", + "version":20833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.98.128", + "prefixLen":25, + "network":"193.75.98.128\/25", + "version":20832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.99.0", + "prefixLen":25, + "network":"193.75.99.0\/25", + "version":20831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.99.128", + "prefixLen":25, + "network":"193.75.99.128\/25", + "version":20830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.112.0", + "prefixLen":25, + "network":"193.75.112.0\/25", + "version":20829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.112.128", + "prefixLen":25, + "network":"193.75.112.128\/25", + "version":20828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.113.0", + "prefixLen":25, + "network":"193.75.113.0\/25", + "version":20827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.113.128", + "prefixLen":25, + "network":"193.75.113.128\/25", + "version":20826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.114.0", + "prefixLen":25, + "network":"193.75.114.0\/25", + "version":20825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.114.128", + "prefixLen":25, + "network":"193.75.114.128\/25", + "version":20824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.115.0", + "prefixLen":25, + "network":"193.75.115.0\/25", + "version":20823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.115.128", + "prefixLen":25, + "network":"193.75.115.128\/25", + "version":20822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.128.0", + "prefixLen":25, + "network":"193.75.128.0\/25", + "version":20821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.128.128", + "prefixLen":25, + "network":"193.75.128.128\/25", + "version":20820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.129.0", + "prefixLen":25, + "network":"193.75.129.0\/25", + "version":20819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.129.128", + "prefixLen":25, + "network":"193.75.129.128\/25", + "version":20818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.130.0", + "prefixLen":25, + "network":"193.75.130.0\/25", + "version":20817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.130.128", + "prefixLen":25, + "network":"193.75.130.128\/25", + "version":20816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.131.0", + "prefixLen":25, + "network":"193.75.131.0\/25", + "version":20815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.131.128", + "prefixLen":25, + "network":"193.75.131.128\/25", + "version":20814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.144.0", + "prefixLen":25, + "network":"193.75.144.0\/25", + "version":20813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.144.128", + "prefixLen":25, + "network":"193.75.144.128\/25", + "version":20812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.145.0", + "prefixLen":25, + "network":"193.75.145.0\/25", + "version":20811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.145.128", + "prefixLen":25, + "network":"193.75.145.128\/25", + "version":20810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.146.0", + "prefixLen":25, + "network":"193.75.146.0\/25", + "version":20809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.146.128", + "prefixLen":25, + "network":"193.75.146.128\/25", + "version":20808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.147.0", + "prefixLen":25, + "network":"193.75.147.0\/25", + "version":20807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.147.128", + "prefixLen":25, + "network":"193.75.147.128\/25", + "version":20806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.160.0", + "prefixLen":25, + "network":"193.75.160.0\/25", + "version":20805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.160.128", + "prefixLen":25, + "network":"193.75.160.128\/25", + "version":20804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.161.0", + "prefixLen":25, + "network":"193.75.161.0\/25", + "version":20803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.161.128", + "prefixLen":25, + "network":"193.75.161.128\/25", + "version":20802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.162.0", + "prefixLen":25, + "network":"193.75.162.0\/25", + "version":20801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.162.128", + "prefixLen":25, + "network":"193.75.162.128\/25", + "version":20800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.163.0", + "prefixLen":25, + "network":"193.75.163.0\/25", + "version":20799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.163.128", + "prefixLen":25, + "network":"193.75.163.128\/25", + "version":20798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.176.0", + "prefixLen":25, + "network":"193.75.176.0\/25", + "version":20797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.176.128", + "prefixLen":25, + "network":"193.75.176.128\/25", + "version":20796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.177.0", + "prefixLen":25, + "network":"193.75.177.0\/25", + "version":20795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.177.128", + "prefixLen":25, + "network":"193.75.177.128\/25", + "version":20794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.178.0", + "prefixLen":25, + "network":"193.75.178.0\/25", + "version":20793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.178.128", + "prefixLen":25, + "network":"193.75.178.128\/25", + "version":20792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.179.0", + "prefixLen":25, + "network":"193.75.179.0\/25", + "version":20791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.179.128", + "prefixLen":25, + "network":"193.75.179.128\/25", + "version":20790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.192.0", + "prefixLen":25, + "network":"193.75.192.0\/25", + "version":20789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.192.128", + "prefixLen":25, + "network":"193.75.192.128\/25", + "version":20788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.193.0", + "prefixLen":25, + "network":"193.75.193.0\/25", + "version":20787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.193.128", + "prefixLen":25, + "network":"193.75.193.128\/25", + "version":20786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.194.0", + "prefixLen":25, + "network":"193.75.194.0\/25", + "version":20785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.194.128", + "prefixLen":25, + "network":"193.75.194.128\/25", + "version":20784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.195.0", + "prefixLen":25, + "network":"193.75.195.0\/25", + "version":20783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.195.128", + "prefixLen":25, + "network":"193.75.195.128\/25", + "version":20782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.208.0", + "prefixLen":25, + "network":"193.75.208.0\/25", + "version":20781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.208.128", + "prefixLen":25, + "network":"193.75.208.128\/25", + "version":20780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.209.0", + "prefixLen":25, + "network":"193.75.209.0\/25", + "version":20779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.209.128", + "prefixLen":25, + "network":"193.75.209.128\/25", + "version":20778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.210.0", + "prefixLen":25, + "network":"193.75.210.0\/25", + "version":20777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.210.128", + "prefixLen":25, + "network":"193.75.210.128\/25", + "version":20776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.211.0", + "prefixLen":25, + "network":"193.75.211.0\/25", + "version":20775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.211.128", + "prefixLen":25, + "network":"193.75.211.128\/25", + "version":20774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.224.0", + "prefixLen":25, + "network":"193.75.224.0\/25", + "version":20773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.224.128", + "prefixLen":25, + "network":"193.75.224.128\/25", + "version":20772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.225.0", + "prefixLen":25, + "network":"193.75.225.0\/25", + "version":20771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.225.128", + "prefixLen":25, + "network":"193.75.225.128\/25", + "version":20770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.226.0", + "prefixLen":25, + "network":"193.75.226.0\/25", + "version":20769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.226.128", + "prefixLen":25, + "network":"193.75.226.128\/25", + "version":20768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.227.0", + "prefixLen":25, + "network":"193.75.227.0\/25", + "version":20767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.227.128", + "prefixLen":25, + "network":"193.75.227.128\/25", + "version":20766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.240.0", + "prefixLen":25, + "network":"193.75.240.0\/25", + "version":20765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.240.128", + "prefixLen":25, + "network":"193.75.240.128\/25", + "version":20764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.241.0", + "prefixLen":25, + "network":"193.75.241.0\/25", + "version":20763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.241.128", + "prefixLen":25, + "network":"193.75.241.128\/25", + "version":20762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.242.0", + "prefixLen":25, + "network":"193.75.242.0\/25", + "version":20761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.242.128", + "prefixLen":25, + "network":"193.75.242.128\/25", + "version":20760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.243.0", + "prefixLen":25, + "network":"193.75.243.0\/25", + "version":20759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.75.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.75.243.128", + "prefixLen":25, + "network":"193.75.243.128\/25", + "version":20758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64763 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.0.0", + "prefixLen":25, + "network":"193.76.0.0\/25", + "version":20885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.0.128", + "prefixLen":25, + "network":"193.76.0.128\/25", + "version":21012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.1.0", + "prefixLen":25, + "network":"193.76.1.0\/25", + "version":21011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.1.128", + "prefixLen":25, + "network":"193.76.1.128\/25", + "version":21010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.2.0", + "prefixLen":25, + "network":"193.76.2.0\/25", + "version":21009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.2.128", + "prefixLen":25, + "network":"193.76.2.128\/25", + "version":21008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.3.0", + "prefixLen":25, + "network":"193.76.3.0\/25", + "version":21007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.3.128", + "prefixLen":25, + "network":"193.76.3.128\/25", + "version":21006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.16.0", + "prefixLen":25, + "network":"193.76.16.0\/25", + "version":21005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.16.128", + "prefixLen":25, + "network":"193.76.16.128\/25", + "version":21004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.17.0", + "prefixLen":25, + "network":"193.76.17.0\/25", + "version":21003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.17.128", + "prefixLen":25, + "network":"193.76.17.128\/25", + "version":21002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.18.0", + "prefixLen":25, + "network":"193.76.18.0\/25", + "version":21001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.18.128", + "prefixLen":25, + "network":"193.76.18.128\/25", + "version":21000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.19.0", + "prefixLen":25, + "network":"193.76.19.0\/25", + "version":20999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.19.128", + "prefixLen":25, + "network":"193.76.19.128\/25", + "version":20998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.32.0", + "prefixLen":25, + "network":"193.76.32.0\/25", + "version":20997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.32.128", + "prefixLen":25, + "network":"193.76.32.128\/25", + "version":20996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.33.0", + "prefixLen":25, + "network":"193.76.33.0\/25", + "version":20995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.33.128", + "prefixLen":25, + "network":"193.76.33.128\/25", + "version":20994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.34.0", + "prefixLen":25, + "network":"193.76.34.0\/25", + "version":20993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.34.128", + "prefixLen":25, + "network":"193.76.34.128\/25", + "version":20992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.35.0", + "prefixLen":25, + "network":"193.76.35.0\/25", + "version":20991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.35.128", + "prefixLen":25, + "network":"193.76.35.128\/25", + "version":20990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.48.0", + "prefixLen":25, + "network":"193.76.48.0\/25", + "version":20989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.48.128", + "prefixLen":25, + "network":"193.76.48.128\/25", + "version":20988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.49.0", + "prefixLen":25, + "network":"193.76.49.0\/25", + "version":20987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.49.128", + "prefixLen":25, + "network":"193.76.49.128\/25", + "version":20986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.50.0", + "prefixLen":25, + "network":"193.76.50.0\/25", + "version":20985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.50.128", + "prefixLen":25, + "network":"193.76.50.128\/25", + "version":20984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.51.0", + "prefixLen":25, + "network":"193.76.51.0\/25", + "version":20983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.51.128", + "prefixLen":25, + "network":"193.76.51.128\/25", + "version":20982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.64.0", + "prefixLen":25, + "network":"193.76.64.0\/25", + "version":20981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.64.128", + "prefixLen":25, + "network":"193.76.64.128\/25", + "version":20980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.65.0", + "prefixLen":25, + "network":"193.76.65.0\/25", + "version":20979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.65.128", + "prefixLen":25, + "network":"193.76.65.128\/25", + "version":20978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.66.0", + "prefixLen":25, + "network":"193.76.66.0\/25", + "version":20977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.66.128", + "prefixLen":25, + "network":"193.76.66.128\/25", + "version":20976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.67.0", + "prefixLen":25, + "network":"193.76.67.0\/25", + "version":20975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.67.128", + "prefixLen":25, + "network":"193.76.67.128\/25", + "version":20974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.80.0", + "prefixLen":25, + "network":"193.76.80.0\/25", + "version":20973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.80.128", + "prefixLen":25, + "network":"193.76.80.128\/25", + "version":20972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.81.0", + "prefixLen":25, + "network":"193.76.81.0\/25", + "version":20971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.81.128", + "prefixLen":25, + "network":"193.76.81.128\/25", + "version":20970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.82.0", + "prefixLen":25, + "network":"193.76.82.0\/25", + "version":20969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.82.128", + "prefixLen":25, + "network":"193.76.82.128\/25", + "version":20968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.83.0", + "prefixLen":25, + "network":"193.76.83.0\/25", + "version":20967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.83.128", + "prefixLen":25, + "network":"193.76.83.128\/25", + "version":20966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.96.0", + "prefixLen":25, + "network":"193.76.96.0\/25", + "version":20965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.96.128", + "prefixLen":25, + "network":"193.76.96.128\/25", + "version":20964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.97.0", + "prefixLen":25, + "network":"193.76.97.0\/25", + "version":20963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.97.128", + "prefixLen":25, + "network":"193.76.97.128\/25", + "version":20962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.98.0", + "prefixLen":25, + "network":"193.76.98.0\/25", + "version":20961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.98.128", + "prefixLen":25, + "network":"193.76.98.128\/25", + "version":20960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.99.0", + "prefixLen":25, + "network":"193.76.99.0\/25", + "version":20959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.99.128", + "prefixLen":25, + "network":"193.76.99.128\/25", + "version":20958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.112.0", + "prefixLen":25, + "network":"193.76.112.0\/25", + "version":20957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.112.128", + "prefixLen":25, + "network":"193.76.112.128\/25", + "version":20956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.113.0", + "prefixLen":25, + "network":"193.76.113.0\/25", + "version":20955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.113.128", + "prefixLen":25, + "network":"193.76.113.128\/25", + "version":20954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.114.0", + "prefixLen":25, + "network":"193.76.114.0\/25", + "version":20953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.114.128", + "prefixLen":25, + "network":"193.76.114.128\/25", + "version":20952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.115.0", + "prefixLen":25, + "network":"193.76.115.0\/25", + "version":20951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.115.128", + "prefixLen":25, + "network":"193.76.115.128\/25", + "version":20950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.128.0", + "prefixLen":25, + "network":"193.76.128.0\/25", + "version":20949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.128.128", + "prefixLen":25, + "network":"193.76.128.128\/25", + "version":20948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.129.0", + "prefixLen":25, + "network":"193.76.129.0\/25", + "version":20947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.129.128", + "prefixLen":25, + "network":"193.76.129.128\/25", + "version":20946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.130.0", + "prefixLen":25, + "network":"193.76.130.0\/25", + "version":20945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.130.128", + "prefixLen":25, + "network":"193.76.130.128\/25", + "version":20944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.131.0", + "prefixLen":25, + "network":"193.76.131.0\/25", + "version":20943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.131.128", + "prefixLen":25, + "network":"193.76.131.128\/25", + "version":20942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.144.0", + "prefixLen":25, + "network":"193.76.144.0\/25", + "version":20941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.144.128", + "prefixLen":25, + "network":"193.76.144.128\/25", + "version":20940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.145.0", + "prefixLen":25, + "network":"193.76.145.0\/25", + "version":20939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.145.128", + "prefixLen":25, + "network":"193.76.145.128\/25", + "version":20938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.146.0", + "prefixLen":25, + "network":"193.76.146.0\/25", + "version":20937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.146.128", + "prefixLen":25, + "network":"193.76.146.128\/25", + "version":20936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.147.0", + "prefixLen":25, + "network":"193.76.147.0\/25", + "version":20935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.147.128", + "prefixLen":25, + "network":"193.76.147.128\/25", + "version":20934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.160.0", + "prefixLen":25, + "network":"193.76.160.0\/25", + "version":20933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.160.128", + "prefixLen":25, + "network":"193.76.160.128\/25", + "version":20932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.161.0", + "prefixLen":25, + "network":"193.76.161.0\/25", + "version":20931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.161.128", + "prefixLen":25, + "network":"193.76.161.128\/25", + "version":20930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.162.0", + "prefixLen":25, + "network":"193.76.162.0\/25", + "version":20929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.162.128", + "prefixLen":25, + "network":"193.76.162.128\/25", + "version":20928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.163.0", + "prefixLen":25, + "network":"193.76.163.0\/25", + "version":20927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.163.128", + "prefixLen":25, + "network":"193.76.163.128\/25", + "version":20926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.176.0", + "prefixLen":25, + "network":"193.76.176.0\/25", + "version":20925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.176.128", + "prefixLen":25, + "network":"193.76.176.128\/25", + "version":20924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.177.0", + "prefixLen":25, + "network":"193.76.177.0\/25", + "version":20923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.177.128", + "prefixLen":25, + "network":"193.76.177.128\/25", + "version":20922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.178.0", + "prefixLen":25, + "network":"193.76.178.0\/25", + "version":20921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.178.128", + "prefixLen":25, + "network":"193.76.178.128\/25", + "version":20920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.179.0", + "prefixLen":25, + "network":"193.76.179.0\/25", + "version":20919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.179.128", + "prefixLen":25, + "network":"193.76.179.128\/25", + "version":20918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.192.0", + "prefixLen":25, + "network":"193.76.192.0\/25", + "version":20917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.192.128", + "prefixLen":25, + "network":"193.76.192.128\/25", + "version":20916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.193.0", + "prefixLen":25, + "network":"193.76.193.0\/25", + "version":20915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.193.128", + "prefixLen":25, + "network":"193.76.193.128\/25", + "version":20914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.194.0", + "prefixLen":25, + "network":"193.76.194.0\/25", + "version":20913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.194.128", + "prefixLen":25, + "network":"193.76.194.128\/25", + "version":20912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.195.0", + "prefixLen":25, + "network":"193.76.195.0\/25", + "version":20911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.195.128", + "prefixLen":25, + "network":"193.76.195.128\/25", + "version":20910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.208.0", + "prefixLen":25, + "network":"193.76.208.0\/25", + "version":20909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.208.128", + "prefixLen":25, + "network":"193.76.208.128\/25", + "version":20908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.209.0", + "prefixLen":25, + "network":"193.76.209.0\/25", + "version":20907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.209.128", + "prefixLen":25, + "network":"193.76.209.128\/25", + "version":20906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.210.0", + "prefixLen":25, + "network":"193.76.210.0\/25", + "version":20905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.210.128", + "prefixLen":25, + "network":"193.76.210.128\/25", + "version":20904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.211.0", + "prefixLen":25, + "network":"193.76.211.0\/25", + "version":20903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.211.128", + "prefixLen":25, + "network":"193.76.211.128\/25", + "version":20902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.224.0", + "prefixLen":25, + "network":"193.76.224.0\/25", + "version":20901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.224.128", + "prefixLen":25, + "network":"193.76.224.128\/25", + "version":20900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.225.0", + "prefixLen":25, + "network":"193.76.225.0\/25", + "version":20899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.225.128", + "prefixLen":25, + "network":"193.76.225.128\/25", + "version":20898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.226.0", + "prefixLen":25, + "network":"193.76.226.0\/25", + "version":20897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.226.128", + "prefixLen":25, + "network":"193.76.226.128\/25", + "version":20896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.227.0", + "prefixLen":25, + "network":"193.76.227.0\/25", + "version":20895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.227.128", + "prefixLen":25, + "network":"193.76.227.128\/25", + "version":20894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.240.0", + "prefixLen":25, + "network":"193.76.240.0\/25", + "version":20893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.240.128", + "prefixLen":25, + "network":"193.76.240.128\/25", + "version":20892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.241.0", + "prefixLen":25, + "network":"193.76.241.0\/25", + "version":20891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.241.128", + "prefixLen":25, + "network":"193.76.241.128\/25", + "version":20890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.242.0", + "prefixLen":25, + "network":"193.76.242.0\/25", + "version":20889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.242.128", + "prefixLen":25, + "network":"193.76.242.128\/25", + "version":20888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.243.0", + "prefixLen":25, + "network":"193.76.243.0\/25", + "version":20887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.76.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.76.243.128", + "prefixLen":25, + "network":"193.76.243.128\/25", + "version":20886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64764 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.0.0", + "prefixLen":25, + "network":"193.77.0.0\/25", + "version":21013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.0.128", + "prefixLen":25, + "network":"193.77.0.128\/25", + "version":21140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.1.0", + "prefixLen":25, + "network":"193.77.1.0\/25", + "version":21139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.1.128", + "prefixLen":25, + "network":"193.77.1.128\/25", + "version":21138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.2.0", + "prefixLen":25, + "network":"193.77.2.0\/25", + "version":21137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.2.128", + "prefixLen":25, + "network":"193.77.2.128\/25", + "version":21136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.3.0", + "prefixLen":25, + "network":"193.77.3.0\/25", + "version":21135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.3.128", + "prefixLen":25, + "network":"193.77.3.128\/25", + "version":21134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.16.0", + "prefixLen":25, + "network":"193.77.16.0\/25", + "version":21133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.16.128", + "prefixLen":25, + "network":"193.77.16.128\/25", + "version":21132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.17.0", + "prefixLen":25, + "network":"193.77.17.0\/25", + "version":21131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.17.128", + "prefixLen":25, + "network":"193.77.17.128\/25", + "version":21130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.18.0", + "prefixLen":25, + "network":"193.77.18.0\/25", + "version":21129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.18.128", + "prefixLen":25, + "network":"193.77.18.128\/25", + "version":21128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.19.0", + "prefixLen":25, + "network":"193.77.19.0\/25", + "version":21127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.19.128", + "prefixLen":25, + "network":"193.77.19.128\/25", + "version":21126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.32.0", + "prefixLen":25, + "network":"193.77.32.0\/25", + "version":21125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.32.128", + "prefixLen":25, + "network":"193.77.32.128\/25", + "version":21124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.33.0", + "prefixLen":25, + "network":"193.77.33.0\/25", + "version":21123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.33.128", + "prefixLen":25, + "network":"193.77.33.128\/25", + "version":21122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.34.0", + "prefixLen":25, + "network":"193.77.34.0\/25", + "version":21121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.34.128", + "prefixLen":25, + "network":"193.77.34.128\/25", + "version":21120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.35.0", + "prefixLen":25, + "network":"193.77.35.0\/25", + "version":21119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.35.128", + "prefixLen":25, + "network":"193.77.35.128\/25", + "version":21118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.48.0", + "prefixLen":25, + "network":"193.77.48.0\/25", + "version":21117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.48.128", + "prefixLen":25, + "network":"193.77.48.128\/25", + "version":21116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.49.0", + "prefixLen":25, + "network":"193.77.49.0\/25", + "version":21115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.49.128", + "prefixLen":25, + "network":"193.77.49.128\/25", + "version":21114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.50.0", + "prefixLen":25, + "network":"193.77.50.0\/25", + "version":21113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.50.128", + "prefixLen":25, + "network":"193.77.50.128\/25", + "version":21112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.51.0", + "prefixLen":25, + "network":"193.77.51.0\/25", + "version":21111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.51.128", + "prefixLen":25, + "network":"193.77.51.128\/25", + "version":21110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.64.0", + "prefixLen":25, + "network":"193.77.64.0\/25", + "version":21109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.64.128", + "prefixLen":25, + "network":"193.77.64.128\/25", + "version":21108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.65.0", + "prefixLen":25, + "network":"193.77.65.0\/25", + "version":21107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.65.128", + "prefixLen":25, + "network":"193.77.65.128\/25", + "version":21106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.66.0", + "prefixLen":25, + "network":"193.77.66.0\/25", + "version":21105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.66.128", + "prefixLen":25, + "network":"193.77.66.128\/25", + "version":21104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.67.0", + "prefixLen":25, + "network":"193.77.67.0\/25", + "version":21103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.67.128", + "prefixLen":25, + "network":"193.77.67.128\/25", + "version":21102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.80.0", + "prefixLen":25, + "network":"193.77.80.0\/25", + "version":21101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.80.128", + "prefixLen":25, + "network":"193.77.80.128\/25", + "version":21100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.81.0", + "prefixLen":25, + "network":"193.77.81.0\/25", + "version":21099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.81.128", + "prefixLen":25, + "network":"193.77.81.128\/25", + "version":21098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.82.0", + "prefixLen":25, + "network":"193.77.82.0\/25", + "version":21097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.82.128", + "prefixLen":25, + "network":"193.77.82.128\/25", + "version":21096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.83.0", + "prefixLen":25, + "network":"193.77.83.0\/25", + "version":21095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.83.128", + "prefixLen":25, + "network":"193.77.83.128\/25", + "version":21094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.96.0", + "prefixLen":25, + "network":"193.77.96.0\/25", + "version":21093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.96.128", + "prefixLen":25, + "network":"193.77.96.128\/25", + "version":21092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.97.0", + "prefixLen":25, + "network":"193.77.97.0\/25", + "version":21091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.97.128", + "prefixLen":25, + "network":"193.77.97.128\/25", + "version":21090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.98.0", + "prefixLen":25, + "network":"193.77.98.0\/25", + "version":21089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.98.128", + "prefixLen":25, + "network":"193.77.98.128\/25", + "version":21088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.99.0", + "prefixLen":25, + "network":"193.77.99.0\/25", + "version":21087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.99.128", + "prefixLen":25, + "network":"193.77.99.128\/25", + "version":21086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.112.0", + "prefixLen":25, + "network":"193.77.112.0\/25", + "version":21085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.112.128", + "prefixLen":25, + "network":"193.77.112.128\/25", + "version":21084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.113.0", + "prefixLen":25, + "network":"193.77.113.0\/25", + "version":21083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.113.128", + "prefixLen":25, + "network":"193.77.113.128\/25", + "version":21082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.114.0", + "prefixLen":25, + "network":"193.77.114.0\/25", + "version":21081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.114.128", + "prefixLen":25, + "network":"193.77.114.128\/25", + "version":21080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.115.0", + "prefixLen":25, + "network":"193.77.115.0\/25", + "version":21079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.115.128", + "prefixLen":25, + "network":"193.77.115.128\/25", + "version":21078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.128.0", + "prefixLen":25, + "network":"193.77.128.0\/25", + "version":21077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.128.128", + "prefixLen":25, + "network":"193.77.128.128\/25", + "version":21076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.129.0", + "prefixLen":25, + "network":"193.77.129.0\/25", + "version":21075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.129.128", + "prefixLen":25, + "network":"193.77.129.128\/25", + "version":21074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.130.0", + "prefixLen":25, + "network":"193.77.130.0\/25", + "version":21073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.130.128", + "prefixLen":25, + "network":"193.77.130.128\/25", + "version":21072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.131.0", + "prefixLen":25, + "network":"193.77.131.0\/25", + "version":21071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.131.128", + "prefixLen":25, + "network":"193.77.131.128\/25", + "version":21070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.144.0", + "prefixLen":25, + "network":"193.77.144.0\/25", + "version":21069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.144.128", + "prefixLen":25, + "network":"193.77.144.128\/25", + "version":21068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.145.0", + "prefixLen":25, + "network":"193.77.145.0\/25", + "version":21067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.145.128", + "prefixLen":25, + "network":"193.77.145.128\/25", + "version":21066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.146.0", + "prefixLen":25, + "network":"193.77.146.0\/25", + "version":21065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.146.128", + "prefixLen":25, + "network":"193.77.146.128\/25", + "version":21064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.147.0", + "prefixLen":25, + "network":"193.77.147.0\/25", + "version":21063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.147.128", + "prefixLen":25, + "network":"193.77.147.128\/25", + "version":21062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.160.0", + "prefixLen":25, + "network":"193.77.160.0\/25", + "version":21061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.160.128", + "prefixLen":25, + "network":"193.77.160.128\/25", + "version":21060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.161.0", + "prefixLen":25, + "network":"193.77.161.0\/25", + "version":21059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.161.128", + "prefixLen":25, + "network":"193.77.161.128\/25", + "version":21058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.162.0", + "prefixLen":25, + "network":"193.77.162.0\/25", + "version":21057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.162.128", + "prefixLen":25, + "network":"193.77.162.128\/25", + "version":21056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.163.0", + "prefixLen":25, + "network":"193.77.163.0\/25", + "version":21055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.163.128", + "prefixLen":25, + "network":"193.77.163.128\/25", + "version":21054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.176.0", + "prefixLen":25, + "network":"193.77.176.0\/25", + "version":21053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.176.128", + "prefixLen":25, + "network":"193.77.176.128\/25", + "version":21052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.177.0", + "prefixLen":25, + "network":"193.77.177.0\/25", + "version":21051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.177.128", + "prefixLen":25, + "network":"193.77.177.128\/25", + "version":21050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.178.0", + "prefixLen":25, + "network":"193.77.178.0\/25", + "version":21049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.178.128", + "prefixLen":25, + "network":"193.77.178.128\/25", + "version":21048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.179.0", + "prefixLen":25, + "network":"193.77.179.0\/25", + "version":21047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.179.128", + "prefixLen":25, + "network":"193.77.179.128\/25", + "version":21046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.192.0", + "prefixLen":25, + "network":"193.77.192.0\/25", + "version":21045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.192.128", + "prefixLen":25, + "network":"193.77.192.128\/25", + "version":21044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.193.0", + "prefixLen":25, + "network":"193.77.193.0\/25", + "version":21043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.193.128", + "prefixLen":25, + "network":"193.77.193.128\/25", + "version":21042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.194.0", + "prefixLen":25, + "network":"193.77.194.0\/25", + "version":21041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.194.128", + "prefixLen":25, + "network":"193.77.194.128\/25", + "version":21040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.195.0", + "prefixLen":25, + "network":"193.77.195.0\/25", + "version":21039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.195.128", + "prefixLen":25, + "network":"193.77.195.128\/25", + "version":21038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.208.0", + "prefixLen":25, + "network":"193.77.208.0\/25", + "version":21037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.208.128", + "prefixLen":25, + "network":"193.77.208.128\/25", + "version":21036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.209.0", + "prefixLen":25, + "network":"193.77.209.0\/25", + "version":21035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.209.128", + "prefixLen":25, + "network":"193.77.209.128\/25", + "version":21034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.210.0", + "prefixLen":25, + "network":"193.77.210.0\/25", + "version":21033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.210.128", + "prefixLen":25, + "network":"193.77.210.128\/25", + "version":21032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.211.0", + "prefixLen":25, + "network":"193.77.211.0\/25", + "version":21031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.211.128", + "prefixLen":25, + "network":"193.77.211.128\/25", + "version":21030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.224.0", + "prefixLen":25, + "network":"193.77.224.0\/25", + "version":21029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.224.128", + "prefixLen":25, + "network":"193.77.224.128\/25", + "version":21028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.225.0", + "prefixLen":25, + "network":"193.77.225.0\/25", + "version":21027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.225.128", + "prefixLen":25, + "network":"193.77.225.128\/25", + "version":21026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.226.0", + "prefixLen":25, + "network":"193.77.226.0\/25", + "version":21025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.226.128", + "prefixLen":25, + "network":"193.77.226.128\/25", + "version":21024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.227.0", + "prefixLen":25, + "network":"193.77.227.0\/25", + "version":21023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.227.128", + "prefixLen":25, + "network":"193.77.227.128\/25", + "version":21022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.240.0", + "prefixLen":25, + "network":"193.77.240.0\/25", + "version":21021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.240.128", + "prefixLen":25, + "network":"193.77.240.128\/25", + "version":21020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.241.0", + "prefixLen":25, + "network":"193.77.241.0\/25", + "version":21019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.241.128", + "prefixLen":25, + "network":"193.77.241.128\/25", + "version":21018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.242.0", + "prefixLen":25, + "network":"193.77.242.0\/25", + "version":21017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.242.128", + "prefixLen":25, + "network":"193.77.242.128\/25", + "version":21016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.243.0", + "prefixLen":25, + "network":"193.77.243.0\/25", + "version":21015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.77.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.77.243.128", + "prefixLen":25, + "network":"193.77.243.128\/25", + "version":21014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64765 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.0.0", + "prefixLen":25, + "network":"193.78.0.0\/25", + "version":21141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.0.128", + "prefixLen":25, + "network":"193.78.0.128\/25", + "version":21268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.1.0", + "prefixLen":25, + "network":"193.78.1.0\/25", + "version":21267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.1.128", + "prefixLen":25, + "network":"193.78.1.128\/25", + "version":21266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.2.0", + "prefixLen":25, + "network":"193.78.2.0\/25", + "version":21265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.2.128", + "prefixLen":25, + "network":"193.78.2.128\/25", + "version":21264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.3.0", + "prefixLen":25, + "network":"193.78.3.0\/25", + "version":21263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.3.128", + "prefixLen":25, + "network":"193.78.3.128\/25", + "version":21262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.16.0", + "prefixLen":25, + "network":"193.78.16.0\/25", + "version":21261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.16.128", + "prefixLen":25, + "network":"193.78.16.128\/25", + "version":21260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.17.0", + "prefixLen":25, + "network":"193.78.17.0\/25", + "version":21259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.17.128", + "prefixLen":25, + "network":"193.78.17.128\/25", + "version":21258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.18.0", + "prefixLen":25, + "network":"193.78.18.0\/25", + "version":21257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.18.128", + "prefixLen":25, + "network":"193.78.18.128\/25", + "version":21256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.19.0", + "prefixLen":25, + "network":"193.78.19.0\/25", + "version":21255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.19.128", + "prefixLen":25, + "network":"193.78.19.128\/25", + "version":21254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.32.0", + "prefixLen":25, + "network":"193.78.32.0\/25", + "version":21253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.32.128", + "prefixLen":25, + "network":"193.78.32.128\/25", + "version":21252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.33.0", + "prefixLen":25, + "network":"193.78.33.0\/25", + "version":21251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.33.128", + "prefixLen":25, + "network":"193.78.33.128\/25", + "version":21250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.34.0", + "prefixLen":25, + "network":"193.78.34.0\/25", + "version":21249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.34.128", + "prefixLen":25, + "network":"193.78.34.128\/25", + "version":21248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.35.0", + "prefixLen":25, + "network":"193.78.35.0\/25", + "version":21247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.35.128", + "prefixLen":25, + "network":"193.78.35.128\/25", + "version":21246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.48.0", + "prefixLen":25, + "network":"193.78.48.0\/25", + "version":21245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.48.128", + "prefixLen":25, + "network":"193.78.48.128\/25", + "version":21244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.49.0", + "prefixLen":25, + "network":"193.78.49.0\/25", + "version":21243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.49.128", + "prefixLen":25, + "network":"193.78.49.128\/25", + "version":21242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.50.0", + "prefixLen":25, + "network":"193.78.50.0\/25", + "version":21241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.50.128", + "prefixLen":25, + "network":"193.78.50.128\/25", + "version":21240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.51.0", + "prefixLen":25, + "network":"193.78.51.0\/25", + "version":21239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.51.128", + "prefixLen":25, + "network":"193.78.51.128\/25", + "version":21238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.64.0", + "prefixLen":25, + "network":"193.78.64.0\/25", + "version":21237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.64.128", + "prefixLen":25, + "network":"193.78.64.128\/25", + "version":21236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.65.0", + "prefixLen":25, + "network":"193.78.65.0\/25", + "version":21235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.65.128", + "prefixLen":25, + "network":"193.78.65.128\/25", + "version":21234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.66.0", + "prefixLen":25, + "network":"193.78.66.0\/25", + "version":21233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.66.128", + "prefixLen":25, + "network":"193.78.66.128\/25", + "version":21232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.67.0", + "prefixLen":25, + "network":"193.78.67.0\/25", + "version":21231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.67.128", + "prefixLen":25, + "network":"193.78.67.128\/25", + "version":21230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.80.0", + "prefixLen":25, + "network":"193.78.80.0\/25", + "version":21229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.80.128", + "prefixLen":25, + "network":"193.78.80.128\/25", + "version":21228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.81.0", + "prefixLen":25, + "network":"193.78.81.0\/25", + "version":21227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.81.128", + "prefixLen":25, + "network":"193.78.81.128\/25", + "version":21226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.82.0", + "prefixLen":25, + "network":"193.78.82.0\/25", + "version":21225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.82.128", + "prefixLen":25, + "network":"193.78.82.128\/25", + "version":21224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.83.0", + "prefixLen":25, + "network":"193.78.83.0\/25", + "version":21223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.83.128", + "prefixLen":25, + "network":"193.78.83.128\/25", + "version":21222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.96.0", + "prefixLen":25, + "network":"193.78.96.0\/25", + "version":21221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.96.128", + "prefixLen":25, + "network":"193.78.96.128\/25", + "version":21220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.97.0", + "prefixLen":25, + "network":"193.78.97.0\/25", + "version":21219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.97.128", + "prefixLen":25, + "network":"193.78.97.128\/25", + "version":21218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.98.0", + "prefixLen":25, + "network":"193.78.98.0\/25", + "version":21217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.98.128", + "prefixLen":25, + "network":"193.78.98.128\/25", + "version":21216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.99.0", + "prefixLen":25, + "network":"193.78.99.0\/25", + "version":21215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.99.128", + "prefixLen":25, + "network":"193.78.99.128\/25", + "version":21214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.112.0", + "prefixLen":25, + "network":"193.78.112.0\/25", + "version":21213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.112.128", + "prefixLen":25, + "network":"193.78.112.128\/25", + "version":21212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.113.0", + "prefixLen":25, + "network":"193.78.113.0\/25", + "version":21211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.113.128", + "prefixLen":25, + "network":"193.78.113.128\/25", + "version":21210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.114.0", + "prefixLen":25, + "network":"193.78.114.0\/25", + "version":21209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.114.128", + "prefixLen":25, + "network":"193.78.114.128\/25", + "version":21208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.115.0", + "prefixLen":25, + "network":"193.78.115.0\/25", + "version":21207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.115.128", + "prefixLen":25, + "network":"193.78.115.128\/25", + "version":21206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.128.0", + "prefixLen":25, + "network":"193.78.128.0\/25", + "version":21205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.128.128", + "prefixLen":25, + "network":"193.78.128.128\/25", + "version":21204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.129.0", + "prefixLen":25, + "network":"193.78.129.0\/25", + "version":21203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.129.128", + "prefixLen":25, + "network":"193.78.129.128\/25", + "version":21202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.130.0", + "prefixLen":25, + "network":"193.78.130.0\/25", + "version":21201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.130.128", + "prefixLen":25, + "network":"193.78.130.128\/25", + "version":21200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.131.0", + "prefixLen":25, + "network":"193.78.131.0\/25", + "version":21199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.131.128", + "prefixLen":25, + "network":"193.78.131.128\/25", + "version":21198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.144.0", + "prefixLen":25, + "network":"193.78.144.0\/25", + "version":21197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.144.128", + "prefixLen":25, + "network":"193.78.144.128\/25", + "version":21196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.145.0", + "prefixLen":25, + "network":"193.78.145.0\/25", + "version":21195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.145.128", + "prefixLen":25, + "network":"193.78.145.128\/25", + "version":21194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.146.0", + "prefixLen":25, + "network":"193.78.146.0\/25", + "version":21193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.146.128", + "prefixLen":25, + "network":"193.78.146.128\/25", + "version":21192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.147.0", + "prefixLen":25, + "network":"193.78.147.0\/25", + "version":21191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.147.128", + "prefixLen":25, + "network":"193.78.147.128\/25", + "version":21190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.160.0", + "prefixLen":25, + "network":"193.78.160.0\/25", + "version":21189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.160.128", + "prefixLen":25, + "network":"193.78.160.128\/25", + "version":21188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.161.0", + "prefixLen":25, + "network":"193.78.161.0\/25", + "version":21187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.161.128", + "prefixLen":25, + "network":"193.78.161.128\/25", + "version":21186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.162.0", + "prefixLen":25, + "network":"193.78.162.0\/25", + "version":21185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.162.128", + "prefixLen":25, + "network":"193.78.162.128\/25", + "version":21184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.163.0", + "prefixLen":25, + "network":"193.78.163.0\/25", + "version":21183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.163.128", + "prefixLen":25, + "network":"193.78.163.128\/25", + "version":21182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.176.0", + "prefixLen":25, + "network":"193.78.176.0\/25", + "version":21181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.176.128", + "prefixLen":25, + "network":"193.78.176.128\/25", + "version":21180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.177.0", + "prefixLen":25, + "network":"193.78.177.0\/25", + "version":21179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.177.128", + "prefixLen":25, + "network":"193.78.177.128\/25", + "version":21178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.178.0", + "prefixLen":25, + "network":"193.78.178.0\/25", + "version":21177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.178.128", + "prefixLen":25, + "network":"193.78.178.128\/25", + "version":21176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.179.0", + "prefixLen":25, + "network":"193.78.179.0\/25", + "version":21175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.179.128", + "prefixLen":25, + "network":"193.78.179.128\/25", + "version":21174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.192.0", + "prefixLen":25, + "network":"193.78.192.0\/25", + "version":21173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.192.128", + "prefixLen":25, + "network":"193.78.192.128\/25", + "version":21172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.193.0", + "prefixLen":25, + "network":"193.78.193.0\/25", + "version":21171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.193.128", + "prefixLen":25, + "network":"193.78.193.128\/25", + "version":21170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.194.0", + "prefixLen":25, + "network":"193.78.194.0\/25", + "version":21169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.194.128", + "prefixLen":25, + "network":"193.78.194.128\/25", + "version":21168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.195.0", + "prefixLen":25, + "network":"193.78.195.0\/25", + "version":21167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.195.128", + "prefixLen":25, + "network":"193.78.195.128\/25", + "version":21166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.208.0", + "prefixLen":25, + "network":"193.78.208.0\/25", + "version":21165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.208.128", + "prefixLen":25, + "network":"193.78.208.128\/25", + "version":21164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.209.0", + "prefixLen":25, + "network":"193.78.209.0\/25", + "version":21163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.209.128", + "prefixLen":25, + "network":"193.78.209.128\/25", + "version":21162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.210.0", + "prefixLen":25, + "network":"193.78.210.0\/25", + "version":21161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.210.128", + "prefixLen":25, + "network":"193.78.210.128\/25", + "version":21160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.211.0", + "prefixLen":25, + "network":"193.78.211.0\/25", + "version":21159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.211.128", + "prefixLen":25, + "network":"193.78.211.128\/25", + "version":21158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.224.0", + "prefixLen":25, + "network":"193.78.224.0\/25", + "version":21157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.224.128", + "prefixLen":25, + "network":"193.78.224.128\/25", + "version":21156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.225.0", + "prefixLen":25, + "network":"193.78.225.0\/25", + "version":21155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.225.128", + "prefixLen":25, + "network":"193.78.225.128\/25", + "version":21154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.226.0", + "prefixLen":25, + "network":"193.78.226.0\/25", + "version":21153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.226.128", + "prefixLen":25, + "network":"193.78.226.128\/25", + "version":21152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.227.0", + "prefixLen":25, + "network":"193.78.227.0\/25", + "version":21151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.227.128", + "prefixLen":25, + "network":"193.78.227.128\/25", + "version":21150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.240.0", + "prefixLen":25, + "network":"193.78.240.0\/25", + "version":21149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.240.128", + "prefixLen":25, + "network":"193.78.240.128\/25", + "version":21148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.241.0", + "prefixLen":25, + "network":"193.78.241.0\/25", + "version":21147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.241.128", + "prefixLen":25, + "network":"193.78.241.128\/25", + "version":21146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.242.0", + "prefixLen":25, + "network":"193.78.242.0\/25", + "version":21145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.242.128", + "prefixLen":25, + "network":"193.78.242.128\/25", + "version":21144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.243.0", + "prefixLen":25, + "network":"193.78.243.0\/25", + "version":21143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.78.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.78.243.128", + "prefixLen":25, + "network":"193.78.243.128\/25", + "version":21142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64766 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.0.0", + "prefixLen":25, + "network":"193.79.0.0\/25", + "version":22549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.0.128", + "prefixLen":25, + "network":"193.79.0.128\/25", + "version":22676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.1.0", + "prefixLen":25, + "network":"193.79.1.0\/25", + "version":22675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.1.128", + "prefixLen":25, + "network":"193.79.1.128\/25", + "version":22674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.2.0", + "prefixLen":25, + "network":"193.79.2.0\/25", + "version":22673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.2.128", + "prefixLen":25, + "network":"193.79.2.128\/25", + "version":22672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.3.0", + "prefixLen":25, + "network":"193.79.3.0\/25", + "version":22671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.3.128", + "prefixLen":25, + "network":"193.79.3.128\/25", + "version":22670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.16.0", + "prefixLen":25, + "network":"193.79.16.0\/25", + "version":22669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.16.128", + "prefixLen":25, + "network":"193.79.16.128\/25", + "version":22668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.17.0", + "prefixLen":25, + "network":"193.79.17.0\/25", + "version":22667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.17.128", + "prefixLen":25, + "network":"193.79.17.128\/25", + "version":22666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.18.0", + "prefixLen":25, + "network":"193.79.18.0\/25", + "version":22665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.18.128", + "prefixLen":25, + "network":"193.79.18.128\/25", + "version":22664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.19.0", + "prefixLen":25, + "network":"193.79.19.0\/25", + "version":22663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.19.128", + "prefixLen":25, + "network":"193.79.19.128\/25", + "version":22662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.32.0", + "prefixLen":25, + "network":"193.79.32.0\/25", + "version":22661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.32.128", + "prefixLen":25, + "network":"193.79.32.128\/25", + "version":22660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.33.0", + "prefixLen":25, + "network":"193.79.33.0\/25", + "version":22659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.33.128", + "prefixLen":25, + "network":"193.79.33.128\/25", + "version":22658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.34.0", + "prefixLen":25, + "network":"193.79.34.0\/25", + "version":22657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.34.128", + "prefixLen":25, + "network":"193.79.34.128\/25", + "version":22656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.35.0", + "prefixLen":25, + "network":"193.79.35.0\/25", + "version":22655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.35.128", + "prefixLen":25, + "network":"193.79.35.128\/25", + "version":22654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.48.0", + "prefixLen":25, + "network":"193.79.48.0\/25", + "version":22653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.48.128", + "prefixLen":25, + "network":"193.79.48.128\/25", + "version":22652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.49.0", + "prefixLen":25, + "network":"193.79.49.0\/25", + "version":22651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.49.128", + "prefixLen":25, + "network":"193.79.49.128\/25", + "version":22650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.50.0", + "prefixLen":25, + "network":"193.79.50.0\/25", + "version":22649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.50.128", + "prefixLen":25, + "network":"193.79.50.128\/25", + "version":22648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.51.0", + "prefixLen":25, + "network":"193.79.51.0\/25", + "version":22647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.51.128", + "prefixLen":25, + "network":"193.79.51.128\/25", + "version":22646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.64.0", + "prefixLen":25, + "network":"193.79.64.0\/25", + "version":22645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.64.128", + "prefixLen":25, + "network":"193.79.64.128\/25", + "version":22644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.65.0", + "prefixLen":25, + "network":"193.79.65.0\/25", + "version":22643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.65.128", + "prefixLen":25, + "network":"193.79.65.128\/25", + "version":22642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.66.0", + "prefixLen":25, + "network":"193.79.66.0\/25", + "version":22641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.66.128", + "prefixLen":25, + "network":"193.79.66.128\/25", + "version":22640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.67.0", + "prefixLen":25, + "network":"193.79.67.0\/25", + "version":22639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.67.128", + "prefixLen":25, + "network":"193.79.67.128\/25", + "version":22638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.80.0", + "prefixLen":25, + "network":"193.79.80.0\/25", + "version":22637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.80.128", + "prefixLen":25, + "network":"193.79.80.128\/25", + "version":22636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.81.0", + "prefixLen":25, + "network":"193.79.81.0\/25", + "version":22635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.81.128", + "prefixLen":25, + "network":"193.79.81.128\/25", + "version":22634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.82.0", + "prefixLen":25, + "network":"193.79.82.0\/25", + "version":22633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.82.128", + "prefixLen":25, + "network":"193.79.82.128\/25", + "version":22632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.83.0", + "prefixLen":25, + "network":"193.79.83.0\/25", + "version":22631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.83.128", + "prefixLen":25, + "network":"193.79.83.128\/25", + "version":22630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.96.0", + "prefixLen":25, + "network":"193.79.96.0\/25", + "version":22629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.96.128", + "prefixLen":25, + "network":"193.79.96.128\/25", + "version":22628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.97.0", + "prefixLen":25, + "network":"193.79.97.0\/25", + "version":22627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.97.128", + "prefixLen":25, + "network":"193.79.97.128\/25", + "version":22626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.98.0", + "prefixLen":25, + "network":"193.79.98.0\/25", + "version":22625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.98.128", + "prefixLen":25, + "network":"193.79.98.128\/25", + "version":22624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.99.0", + "prefixLen":25, + "network":"193.79.99.0\/25", + "version":22623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.99.128", + "prefixLen":25, + "network":"193.79.99.128\/25", + "version":22622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.112.0", + "prefixLen":25, + "network":"193.79.112.0\/25", + "version":22621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.112.128", + "prefixLen":25, + "network":"193.79.112.128\/25", + "version":22620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.113.0", + "prefixLen":25, + "network":"193.79.113.0\/25", + "version":22619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.113.128", + "prefixLen":25, + "network":"193.79.113.128\/25", + "version":22618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.114.0", + "prefixLen":25, + "network":"193.79.114.0\/25", + "version":22617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.114.128", + "prefixLen":25, + "network":"193.79.114.128\/25", + "version":22616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.115.0", + "prefixLen":25, + "network":"193.79.115.0\/25", + "version":22615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.115.128", + "prefixLen":25, + "network":"193.79.115.128\/25", + "version":22614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.128.0", + "prefixLen":25, + "network":"193.79.128.0\/25", + "version":22613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.128.128", + "prefixLen":25, + "network":"193.79.128.128\/25", + "version":22612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.129.0", + "prefixLen":25, + "network":"193.79.129.0\/25", + "version":22611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.129.128", + "prefixLen":25, + "network":"193.79.129.128\/25", + "version":22610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.130.0", + "prefixLen":25, + "network":"193.79.130.0\/25", + "version":22609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.130.128", + "prefixLen":25, + "network":"193.79.130.128\/25", + "version":22608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.131.0", + "prefixLen":25, + "network":"193.79.131.0\/25", + "version":22607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.131.128", + "prefixLen":25, + "network":"193.79.131.128\/25", + "version":22606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.144.0", + "prefixLen":25, + "network":"193.79.144.0\/25", + "version":22605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.144.128", + "prefixLen":25, + "network":"193.79.144.128\/25", + "version":22604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.145.0", + "prefixLen":25, + "network":"193.79.145.0\/25", + "version":22603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.145.128", + "prefixLen":25, + "network":"193.79.145.128\/25", + "version":22602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.146.0", + "prefixLen":25, + "network":"193.79.146.0\/25", + "version":22601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.146.128", + "prefixLen":25, + "network":"193.79.146.128\/25", + "version":22600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.147.0", + "prefixLen":25, + "network":"193.79.147.0\/25", + "version":22599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.147.128", + "prefixLen":25, + "network":"193.79.147.128\/25", + "version":22598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.160.0", + "prefixLen":25, + "network":"193.79.160.0\/25", + "version":22597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.160.128", + "prefixLen":25, + "network":"193.79.160.128\/25", + "version":22596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.161.0", + "prefixLen":25, + "network":"193.79.161.0\/25", + "version":22595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.161.128", + "prefixLen":25, + "network":"193.79.161.128\/25", + "version":22594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.162.0", + "prefixLen":25, + "network":"193.79.162.0\/25", + "version":22593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.162.128", + "prefixLen":25, + "network":"193.79.162.128\/25", + "version":22592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.163.0", + "prefixLen":25, + "network":"193.79.163.0\/25", + "version":22591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.163.128", + "prefixLen":25, + "network":"193.79.163.128\/25", + "version":22590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.176.0", + "prefixLen":25, + "network":"193.79.176.0\/25", + "version":22589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.176.128", + "prefixLen":25, + "network":"193.79.176.128\/25", + "version":22588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.177.0", + "prefixLen":25, + "network":"193.79.177.0\/25", + "version":22587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.177.128", + "prefixLen":25, + "network":"193.79.177.128\/25", + "version":22586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.178.0", + "prefixLen":25, + "network":"193.79.178.0\/25", + "version":22585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.178.128", + "prefixLen":25, + "network":"193.79.178.128\/25", + "version":22584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.179.0", + "prefixLen":25, + "network":"193.79.179.0\/25", + "version":22583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.179.128", + "prefixLen":25, + "network":"193.79.179.128\/25", + "version":22582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.192.0", + "prefixLen":25, + "network":"193.79.192.0\/25", + "version":22581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.192.128", + "prefixLen":25, + "network":"193.79.192.128\/25", + "version":22580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.193.0", + "prefixLen":25, + "network":"193.79.193.0\/25", + "version":22579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.193.128", + "prefixLen":25, + "network":"193.79.193.128\/25", + "version":22578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.194.0", + "prefixLen":25, + "network":"193.79.194.0\/25", + "version":22577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.194.128", + "prefixLen":25, + "network":"193.79.194.128\/25", + "version":22576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.195.0", + "prefixLen":25, + "network":"193.79.195.0\/25", + "version":22575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.195.128", + "prefixLen":25, + "network":"193.79.195.128\/25", + "version":22574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.208.0", + "prefixLen":25, + "network":"193.79.208.0\/25", + "version":22573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.208.128", + "prefixLen":25, + "network":"193.79.208.128\/25", + "version":22572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.209.0", + "prefixLen":25, + "network":"193.79.209.0\/25", + "version":22571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.209.128", + "prefixLen":25, + "network":"193.79.209.128\/25", + "version":22570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.210.0", + "prefixLen":25, + "network":"193.79.210.0\/25", + "version":22569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.210.128", + "prefixLen":25, + "network":"193.79.210.128\/25", + "version":22568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.211.0", + "prefixLen":25, + "network":"193.79.211.0\/25", + "version":22567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.211.128", + "prefixLen":25, + "network":"193.79.211.128\/25", + "version":22566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.224.0", + "prefixLen":25, + "network":"193.79.224.0\/25", + "version":22565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.224.128", + "prefixLen":25, + "network":"193.79.224.128\/25", + "version":22564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.225.0", + "prefixLen":25, + "network":"193.79.225.0\/25", + "version":22563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.225.128", + "prefixLen":25, + "network":"193.79.225.128\/25", + "version":22562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.226.0", + "prefixLen":25, + "network":"193.79.226.0\/25", + "version":22561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.226.128", + "prefixLen":25, + "network":"193.79.226.128\/25", + "version":22560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.227.0", + "prefixLen":25, + "network":"193.79.227.0\/25", + "version":22559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.227.128", + "prefixLen":25, + "network":"193.79.227.128\/25", + "version":22558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.240.0", + "prefixLen":25, + "network":"193.79.240.0\/25", + "version":22557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.240.128", + "prefixLen":25, + "network":"193.79.240.128\/25", + "version":22556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.241.0", + "prefixLen":25, + "network":"193.79.241.0\/25", + "version":22555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.241.128", + "prefixLen":25, + "network":"193.79.241.128\/25", + "version":22554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.242.0", + "prefixLen":25, + "network":"193.79.242.0\/25", + "version":22553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.242.128", + "prefixLen":25, + "network":"193.79.242.128\/25", + "version":22552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.243.0", + "prefixLen":25, + "network":"193.79.243.0\/25", + "version":22551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.79.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.79.243.128", + "prefixLen":25, + "network":"193.79.243.128\/25", + "version":22550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64767 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.0.0", + "prefixLen":25, + "network":"193.80.0.0\/25", + "version":22677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.0.128", + "prefixLen":25, + "network":"193.80.0.128\/25", + "version":22804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.1.0", + "prefixLen":25, + "network":"193.80.1.0\/25", + "version":22803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.1.128", + "prefixLen":25, + "network":"193.80.1.128\/25", + "version":22802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.2.0", + "prefixLen":25, + "network":"193.80.2.0\/25", + "version":22801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.2.128", + "prefixLen":25, + "network":"193.80.2.128\/25", + "version":22800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.3.0", + "prefixLen":25, + "network":"193.80.3.0\/25", + "version":22799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.3.128", + "prefixLen":25, + "network":"193.80.3.128\/25", + "version":22798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.16.0", + "prefixLen":25, + "network":"193.80.16.0\/25", + "version":22797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.16.128", + "prefixLen":25, + "network":"193.80.16.128\/25", + "version":22796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.17.0", + "prefixLen":25, + "network":"193.80.17.0\/25", + "version":22795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.17.128", + "prefixLen":25, + "network":"193.80.17.128\/25", + "version":22794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.18.0", + "prefixLen":25, + "network":"193.80.18.0\/25", + "version":22793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.18.128", + "prefixLen":25, + "network":"193.80.18.128\/25", + "version":22792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.19.0", + "prefixLen":25, + "network":"193.80.19.0\/25", + "version":22791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.19.128", + "prefixLen":25, + "network":"193.80.19.128\/25", + "version":22790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.32.0", + "prefixLen":25, + "network":"193.80.32.0\/25", + "version":22789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.32.128", + "prefixLen":25, + "network":"193.80.32.128\/25", + "version":22788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.33.0", + "prefixLen":25, + "network":"193.80.33.0\/25", + "version":22787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.33.128", + "prefixLen":25, + "network":"193.80.33.128\/25", + "version":22786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.34.0", + "prefixLen":25, + "network":"193.80.34.0\/25", + "version":22785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.34.128", + "prefixLen":25, + "network":"193.80.34.128\/25", + "version":22784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.35.0", + "prefixLen":25, + "network":"193.80.35.0\/25", + "version":22783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.35.128", + "prefixLen":25, + "network":"193.80.35.128\/25", + "version":22782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.48.0", + "prefixLen":25, + "network":"193.80.48.0\/25", + "version":22781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.48.128", + "prefixLen":25, + "network":"193.80.48.128\/25", + "version":22780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.49.0", + "prefixLen":25, + "network":"193.80.49.0\/25", + "version":22779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.49.128", + "prefixLen":25, + "network":"193.80.49.128\/25", + "version":22778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.50.0", + "prefixLen":25, + "network":"193.80.50.0\/25", + "version":22777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.50.128", + "prefixLen":25, + "network":"193.80.50.128\/25", + "version":22776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.51.0", + "prefixLen":25, + "network":"193.80.51.0\/25", + "version":22775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.51.128", + "prefixLen":25, + "network":"193.80.51.128\/25", + "version":22774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.64.0", + "prefixLen":25, + "network":"193.80.64.0\/25", + "version":22773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.64.128", + "prefixLen":25, + "network":"193.80.64.128\/25", + "version":22772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.65.0", + "prefixLen":25, + "network":"193.80.65.0\/25", + "version":22771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.65.128", + "prefixLen":25, + "network":"193.80.65.128\/25", + "version":22770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.66.0", + "prefixLen":25, + "network":"193.80.66.0\/25", + "version":22769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.66.128", + "prefixLen":25, + "network":"193.80.66.128\/25", + "version":22768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.67.0", + "prefixLen":25, + "network":"193.80.67.0\/25", + "version":22767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.67.128", + "prefixLen":25, + "network":"193.80.67.128\/25", + "version":22766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.80.0", + "prefixLen":25, + "network":"193.80.80.0\/25", + "version":22765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.80.128", + "prefixLen":25, + "network":"193.80.80.128\/25", + "version":22764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.81.0", + "prefixLen":25, + "network":"193.80.81.0\/25", + "version":22763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.81.128", + "prefixLen":25, + "network":"193.80.81.128\/25", + "version":22762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.82.0", + "prefixLen":25, + "network":"193.80.82.0\/25", + "version":22761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.82.128", + "prefixLen":25, + "network":"193.80.82.128\/25", + "version":22760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.83.0", + "prefixLen":25, + "network":"193.80.83.0\/25", + "version":22759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.83.128", + "prefixLen":25, + "network":"193.80.83.128\/25", + "version":22758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.96.0", + "prefixLen":25, + "network":"193.80.96.0\/25", + "version":22757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.96.128", + "prefixLen":25, + "network":"193.80.96.128\/25", + "version":22756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.97.0", + "prefixLen":25, + "network":"193.80.97.0\/25", + "version":22755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.97.128", + "prefixLen":25, + "network":"193.80.97.128\/25", + "version":22754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.98.0", + "prefixLen":25, + "network":"193.80.98.0\/25", + "version":22753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.98.128", + "prefixLen":25, + "network":"193.80.98.128\/25", + "version":22752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.99.0", + "prefixLen":25, + "network":"193.80.99.0\/25", + "version":22751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.99.128", + "prefixLen":25, + "network":"193.80.99.128\/25", + "version":22750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.112.0", + "prefixLen":25, + "network":"193.80.112.0\/25", + "version":22749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.112.128", + "prefixLen":25, + "network":"193.80.112.128\/25", + "version":22748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.113.0", + "prefixLen":25, + "network":"193.80.113.0\/25", + "version":22747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.113.128", + "prefixLen":25, + "network":"193.80.113.128\/25", + "version":22746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.114.0", + "prefixLen":25, + "network":"193.80.114.0\/25", + "version":22745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.114.128", + "prefixLen":25, + "network":"193.80.114.128\/25", + "version":22744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.115.0", + "prefixLen":25, + "network":"193.80.115.0\/25", + "version":22743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.115.128", + "prefixLen":25, + "network":"193.80.115.128\/25", + "version":22742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.128.0", + "prefixLen":25, + "network":"193.80.128.0\/25", + "version":22741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.128.128", + "prefixLen":25, + "network":"193.80.128.128\/25", + "version":22740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.129.0", + "prefixLen":25, + "network":"193.80.129.0\/25", + "version":22739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.129.128", + "prefixLen":25, + "network":"193.80.129.128\/25", + "version":22738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.130.0", + "prefixLen":25, + "network":"193.80.130.0\/25", + "version":22737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.130.128", + "prefixLen":25, + "network":"193.80.130.128\/25", + "version":22736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.131.0", + "prefixLen":25, + "network":"193.80.131.0\/25", + "version":22735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.131.128", + "prefixLen":25, + "network":"193.80.131.128\/25", + "version":22734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.144.0", + "prefixLen":25, + "network":"193.80.144.0\/25", + "version":22733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.144.128", + "prefixLen":25, + "network":"193.80.144.128\/25", + "version":22732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.145.0", + "prefixLen":25, + "network":"193.80.145.0\/25", + "version":22731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.145.128", + "prefixLen":25, + "network":"193.80.145.128\/25", + "version":22730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.146.0", + "prefixLen":25, + "network":"193.80.146.0\/25", + "version":22729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.146.128", + "prefixLen":25, + "network":"193.80.146.128\/25", + "version":22728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.147.0", + "prefixLen":25, + "network":"193.80.147.0\/25", + "version":22727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.147.128", + "prefixLen":25, + "network":"193.80.147.128\/25", + "version":22726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.160.0", + "prefixLen":25, + "network":"193.80.160.0\/25", + "version":22725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.160.128", + "prefixLen":25, + "network":"193.80.160.128\/25", + "version":22724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.161.0", + "prefixLen":25, + "network":"193.80.161.0\/25", + "version":22723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.161.128", + "prefixLen":25, + "network":"193.80.161.128\/25", + "version":22722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.162.0", + "prefixLen":25, + "network":"193.80.162.0\/25", + "version":22721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.162.128", + "prefixLen":25, + "network":"193.80.162.128\/25", + "version":22720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.163.0", + "prefixLen":25, + "network":"193.80.163.0\/25", + "version":22719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.163.128", + "prefixLen":25, + "network":"193.80.163.128\/25", + "version":22718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.176.0", + "prefixLen":25, + "network":"193.80.176.0\/25", + "version":22717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.176.128", + "prefixLen":25, + "network":"193.80.176.128\/25", + "version":22716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.177.0", + "prefixLen":25, + "network":"193.80.177.0\/25", + "version":22715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.177.128", + "prefixLen":25, + "network":"193.80.177.128\/25", + "version":22714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.178.0", + "prefixLen":25, + "network":"193.80.178.0\/25", + "version":22713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.178.128", + "prefixLen":25, + "network":"193.80.178.128\/25", + "version":22712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.179.0", + "prefixLen":25, + "network":"193.80.179.0\/25", + "version":22711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.179.128", + "prefixLen":25, + "network":"193.80.179.128\/25", + "version":22710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.192.0", + "prefixLen":25, + "network":"193.80.192.0\/25", + "version":22709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.192.128", + "prefixLen":25, + "network":"193.80.192.128\/25", + "version":22708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.193.0", + "prefixLen":25, + "network":"193.80.193.0\/25", + "version":22707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.193.128", + "prefixLen":25, + "network":"193.80.193.128\/25", + "version":22706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.194.0", + "prefixLen":25, + "network":"193.80.194.0\/25", + "version":22705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.194.128", + "prefixLen":25, + "network":"193.80.194.128\/25", + "version":22704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.195.0", + "prefixLen":25, + "network":"193.80.195.0\/25", + "version":22703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.195.128", + "prefixLen":25, + "network":"193.80.195.128\/25", + "version":22702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.208.0", + "prefixLen":25, + "network":"193.80.208.0\/25", + "version":22701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.208.128", + "prefixLen":25, + "network":"193.80.208.128\/25", + "version":22700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.209.0", + "prefixLen":25, + "network":"193.80.209.0\/25", + "version":22699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.209.128", + "prefixLen":25, + "network":"193.80.209.128\/25", + "version":22698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.210.0", + "prefixLen":25, + "network":"193.80.210.0\/25", + "version":22697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.210.128", + "prefixLen":25, + "network":"193.80.210.128\/25", + "version":22696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.211.0", + "prefixLen":25, + "network":"193.80.211.0\/25", + "version":22695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.211.128", + "prefixLen":25, + "network":"193.80.211.128\/25", + "version":22694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.224.0", + "prefixLen":25, + "network":"193.80.224.0\/25", + "version":22693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.224.128", + "prefixLen":25, + "network":"193.80.224.128\/25", + "version":22692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.225.0", + "prefixLen":25, + "network":"193.80.225.0\/25", + "version":22691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.225.128", + "prefixLen":25, + "network":"193.80.225.128\/25", + "version":22690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.226.0", + "prefixLen":25, + "network":"193.80.226.0\/25", + "version":22689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.226.128", + "prefixLen":25, + "network":"193.80.226.128\/25", + "version":22688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.227.0", + "prefixLen":25, + "network":"193.80.227.0\/25", + "version":22687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.227.128", + "prefixLen":25, + "network":"193.80.227.128\/25", + "version":22686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.240.0", + "prefixLen":25, + "network":"193.80.240.0\/25", + "version":22685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.240.128", + "prefixLen":25, + "network":"193.80.240.128\/25", + "version":22684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.241.0", + "prefixLen":25, + "network":"193.80.241.0\/25", + "version":22683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.241.128", + "prefixLen":25, + "network":"193.80.241.128\/25", + "version":22682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.242.0", + "prefixLen":25, + "network":"193.80.242.0\/25", + "version":22681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.242.128", + "prefixLen":25, + "network":"193.80.242.128\/25", + "version":22680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.243.0", + "prefixLen":25, + "network":"193.80.243.0\/25", + "version":22679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.80.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.80.243.128", + "prefixLen":25, + "network":"193.80.243.128\/25", + "version":22678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64768 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.0.0", + "prefixLen":25, + "network":"193.81.0.0\/25", + "version":22805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.0.128", + "prefixLen":25, + "network":"193.81.0.128\/25", + "version":22932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.1.0", + "prefixLen":25, + "network":"193.81.1.0\/25", + "version":22931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.1.128", + "prefixLen":25, + "network":"193.81.1.128\/25", + "version":22930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.2.0", + "prefixLen":25, + "network":"193.81.2.0\/25", + "version":22929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.2.128", + "prefixLen":25, + "network":"193.81.2.128\/25", + "version":22928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.3.0", + "prefixLen":25, + "network":"193.81.3.0\/25", + "version":22927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.3.128", + "prefixLen":25, + "network":"193.81.3.128\/25", + "version":22926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.16.0", + "prefixLen":25, + "network":"193.81.16.0\/25", + "version":22925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.16.128", + "prefixLen":25, + "network":"193.81.16.128\/25", + "version":22924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.17.0", + "prefixLen":25, + "network":"193.81.17.0\/25", + "version":22923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.17.128", + "prefixLen":25, + "network":"193.81.17.128\/25", + "version":22922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.18.0", + "prefixLen":25, + "network":"193.81.18.0\/25", + "version":22921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.18.128", + "prefixLen":25, + "network":"193.81.18.128\/25", + "version":22920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.19.0", + "prefixLen":25, + "network":"193.81.19.0\/25", + "version":22919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.19.128", + "prefixLen":25, + "network":"193.81.19.128\/25", + "version":22918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.32.0", + "prefixLen":25, + "network":"193.81.32.0\/25", + "version":22917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.32.128", + "prefixLen":25, + "network":"193.81.32.128\/25", + "version":22916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.33.0", + "prefixLen":25, + "network":"193.81.33.0\/25", + "version":22915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.33.128", + "prefixLen":25, + "network":"193.81.33.128\/25", + "version":22914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.34.0", + "prefixLen":25, + "network":"193.81.34.0\/25", + "version":22913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.34.128", + "prefixLen":25, + "network":"193.81.34.128\/25", + "version":22912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.35.0", + "prefixLen":25, + "network":"193.81.35.0\/25", + "version":22911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.35.128", + "prefixLen":25, + "network":"193.81.35.128\/25", + "version":22910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.48.0", + "prefixLen":25, + "network":"193.81.48.0\/25", + "version":22909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.48.128", + "prefixLen":25, + "network":"193.81.48.128\/25", + "version":22908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.49.0", + "prefixLen":25, + "network":"193.81.49.0\/25", + "version":22907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.49.128", + "prefixLen":25, + "network":"193.81.49.128\/25", + "version":22906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.50.0", + "prefixLen":25, + "network":"193.81.50.0\/25", + "version":22905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.50.128", + "prefixLen":25, + "network":"193.81.50.128\/25", + "version":22904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.51.0", + "prefixLen":25, + "network":"193.81.51.0\/25", + "version":22903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.51.128", + "prefixLen":25, + "network":"193.81.51.128\/25", + "version":22902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.64.0", + "prefixLen":25, + "network":"193.81.64.0\/25", + "version":22901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.64.128", + "prefixLen":25, + "network":"193.81.64.128\/25", + "version":22900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.65.0", + "prefixLen":25, + "network":"193.81.65.0\/25", + "version":22899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.65.128", + "prefixLen":25, + "network":"193.81.65.128\/25", + "version":22898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.66.0", + "prefixLen":25, + "network":"193.81.66.0\/25", + "version":22897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.66.128", + "prefixLen":25, + "network":"193.81.66.128\/25", + "version":22896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.67.0", + "prefixLen":25, + "network":"193.81.67.0\/25", + "version":22895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.67.128", + "prefixLen":25, + "network":"193.81.67.128\/25", + "version":22894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.80.0", + "prefixLen":25, + "network":"193.81.80.0\/25", + "version":22893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.80.128", + "prefixLen":25, + "network":"193.81.80.128\/25", + "version":22892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.81.0", + "prefixLen":25, + "network":"193.81.81.0\/25", + "version":22891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.81.128", + "prefixLen":25, + "network":"193.81.81.128\/25", + "version":22890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.82.0", + "prefixLen":25, + "network":"193.81.82.0\/25", + "version":22889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.82.128", + "prefixLen":25, + "network":"193.81.82.128\/25", + "version":22888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.83.0", + "prefixLen":25, + "network":"193.81.83.0\/25", + "version":22887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.83.128", + "prefixLen":25, + "network":"193.81.83.128\/25", + "version":22886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.96.0", + "prefixLen":25, + "network":"193.81.96.0\/25", + "version":22885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.96.128", + "prefixLen":25, + "network":"193.81.96.128\/25", + "version":22884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.97.0", + "prefixLen":25, + "network":"193.81.97.0\/25", + "version":22883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.97.128", + "prefixLen":25, + "network":"193.81.97.128\/25", + "version":22882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.98.0", + "prefixLen":25, + "network":"193.81.98.0\/25", + "version":22881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.98.128", + "prefixLen":25, + "network":"193.81.98.128\/25", + "version":22880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.99.0", + "prefixLen":25, + "network":"193.81.99.0\/25", + "version":22879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.99.128", + "prefixLen":25, + "network":"193.81.99.128\/25", + "version":22878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.112.0", + "prefixLen":25, + "network":"193.81.112.0\/25", + "version":22877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.112.128", + "prefixLen":25, + "network":"193.81.112.128\/25", + "version":22876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.113.0", + "prefixLen":25, + "network":"193.81.113.0\/25", + "version":22875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.113.128", + "prefixLen":25, + "network":"193.81.113.128\/25", + "version":22874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.114.0", + "prefixLen":25, + "network":"193.81.114.0\/25", + "version":22873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.114.128", + "prefixLen":25, + "network":"193.81.114.128\/25", + "version":22872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.115.0", + "prefixLen":25, + "network":"193.81.115.0\/25", + "version":22871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.115.128", + "prefixLen":25, + "network":"193.81.115.128\/25", + "version":22870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.128.0", + "prefixLen":25, + "network":"193.81.128.0\/25", + "version":22869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.128.128", + "prefixLen":25, + "network":"193.81.128.128\/25", + "version":22868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.129.0", + "prefixLen":25, + "network":"193.81.129.0\/25", + "version":22867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.129.128", + "prefixLen":25, + "network":"193.81.129.128\/25", + "version":22866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.130.0", + "prefixLen":25, + "network":"193.81.130.0\/25", + "version":22865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.130.128", + "prefixLen":25, + "network":"193.81.130.128\/25", + "version":22864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.131.0", + "prefixLen":25, + "network":"193.81.131.0\/25", + "version":22863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.131.128", + "prefixLen":25, + "network":"193.81.131.128\/25", + "version":22862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.144.0", + "prefixLen":25, + "network":"193.81.144.0\/25", + "version":22861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.144.128", + "prefixLen":25, + "network":"193.81.144.128\/25", + "version":22860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.145.0", + "prefixLen":25, + "network":"193.81.145.0\/25", + "version":22859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.145.128", + "prefixLen":25, + "network":"193.81.145.128\/25", + "version":22858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.146.0", + "prefixLen":25, + "network":"193.81.146.0\/25", + "version":22857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.146.128", + "prefixLen":25, + "network":"193.81.146.128\/25", + "version":22856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.147.0", + "prefixLen":25, + "network":"193.81.147.0\/25", + "version":22855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.147.128", + "prefixLen":25, + "network":"193.81.147.128\/25", + "version":22854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.160.0", + "prefixLen":25, + "network":"193.81.160.0\/25", + "version":22853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.160.128", + "prefixLen":25, + "network":"193.81.160.128\/25", + "version":22852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.161.0", + "prefixLen":25, + "network":"193.81.161.0\/25", + "version":22851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.161.128", + "prefixLen":25, + "network":"193.81.161.128\/25", + "version":22850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.162.0", + "prefixLen":25, + "network":"193.81.162.0\/25", + "version":22849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.162.128", + "prefixLen":25, + "network":"193.81.162.128\/25", + "version":22848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.163.0", + "prefixLen":25, + "network":"193.81.163.0\/25", + "version":22847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.163.128", + "prefixLen":25, + "network":"193.81.163.128\/25", + "version":22846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.176.0", + "prefixLen":25, + "network":"193.81.176.0\/25", + "version":22845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.176.128", + "prefixLen":25, + "network":"193.81.176.128\/25", + "version":22844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.177.0", + "prefixLen":25, + "network":"193.81.177.0\/25", + "version":22843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.177.128", + "prefixLen":25, + "network":"193.81.177.128\/25", + "version":22842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.178.0", + "prefixLen":25, + "network":"193.81.178.0\/25", + "version":22841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.178.128", + "prefixLen":25, + "network":"193.81.178.128\/25", + "version":22840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.179.0", + "prefixLen":25, + "network":"193.81.179.0\/25", + "version":22839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.179.128", + "prefixLen":25, + "network":"193.81.179.128\/25", + "version":22838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.192.0", + "prefixLen":25, + "network":"193.81.192.0\/25", + "version":22837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.192.128", + "prefixLen":25, + "network":"193.81.192.128\/25", + "version":22836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.193.0", + "prefixLen":25, + "network":"193.81.193.0\/25", + "version":22835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.193.128", + "prefixLen":25, + "network":"193.81.193.128\/25", + "version":22834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.194.0", + "prefixLen":25, + "network":"193.81.194.0\/25", + "version":22833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.194.128", + "prefixLen":25, + "network":"193.81.194.128\/25", + "version":22832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.195.0", + "prefixLen":25, + "network":"193.81.195.0\/25", + "version":22831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.195.128", + "prefixLen":25, + "network":"193.81.195.128\/25", + "version":22830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.208.0", + "prefixLen":25, + "network":"193.81.208.0\/25", + "version":22829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.208.128", + "prefixLen":25, + "network":"193.81.208.128\/25", + "version":22828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.209.0", + "prefixLen":25, + "network":"193.81.209.0\/25", + "version":22827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.209.128", + "prefixLen":25, + "network":"193.81.209.128\/25", + "version":22826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.210.0", + "prefixLen":25, + "network":"193.81.210.0\/25", + "version":22825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.210.128", + "prefixLen":25, + "network":"193.81.210.128\/25", + "version":22824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.211.0", + "prefixLen":25, + "network":"193.81.211.0\/25", + "version":22823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.211.128", + "prefixLen":25, + "network":"193.81.211.128\/25", + "version":22822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.224.0", + "prefixLen":25, + "network":"193.81.224.0\/25", + "version":22821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.224.128", + "prefixLen":25, + "network":"193.81.224.128\/25", + "version":22820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.225.0", + "prefixLen":25, + "network":"193.81.225.0\/25", + "version":22819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.225.128", + "prefixLen":25, + "network":"193.81.225.128\/25", + "version":22818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.226.0", + "prefixLen":25, + "network":"193.81.226.0\/25", + "version":22817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.226.128", + "prefixLen":25, + "network":"193.81.226.128\/25", + "version":22816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.227.0", + "prefixLen":25, + "network":"193.81.227.0\/25", + "version":22815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.227.128", + "prefixLen":25, + "network":"193.81.227.128\/25", + "version":22814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.240.0", + "prefixLen":25, + "network":"193.81.240.0\/25", + "version":22813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.240.128", + "prefixLen":25, + "network":"193.81.240.128\/25", + "version":22812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.241.0", + "prefixLen":25, + "network":"193.81.241.0\/25", + "version":22811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.241.128", + "prefixLen":25, + "network":"193.81.241.128\/25", + "version":22810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.242.0", + "prefixLen":25, + "network":"193.81.242.0\/25", + "version":22809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.242.128", + "prefixLen":25, + "network":"193.81.242.128\/25", + "version":22808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.243.0", + "prefixLen":25, + "network":"193.81.243.0\/25", + "version":22807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.81.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.81.243.128", + "prefixLen":25, + "network":"193.81.243.128\/25", + "version":22806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64769 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.0.0", + "prefixLen":25, + "network":"193.82.0.0\/25", + "version":22933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.0.128", + "prefixLen":25, + "network":"193.82.0.128\/25", + "version":23060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.1.0", + "prefixLen":25, + "network":"193.82.1.0\/25", + "version":23059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.1.128", + "prefixLen":25, + "network":"193.82.1.128\/25", + "version":23058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.2.0", + "prefixLen":25, + "network":"193.82.2.0\/25", + "version":23057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.2.128", + "prefixLen":25, + "network":"193.82.2.128\/25", + "version":23056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.3.0", + "prefixLen":25, + "network":"193.82.3.0\/25", + "version":23055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.3.128", + "prefixLen":25, + "network":"193.82.3.128\/25", + "version":23054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.16.0", + "prefixLen":25, + "network":"193.82.16.0\/25", + "version":23053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.16.128", + "prefixLen":25, + "network":"193.82.16.128\/25", + "version":23052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.17.0", + "prefixLen":25, + "network":"193.82.17.0\/25", + "version":23051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.17.128", + "prefixLen":25, + "network":"193.82.17.128\/25", + "version":23050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.18.0", + "prefixLen":25, + "network":"193.82.18.0\/25", + "version":23049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.18.128", + "prefixLen":25, + "network":"193.82.18.128\/25", + "version":23048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.19.0", + "prefixLen":25, + "network":"193.82.19.0\/25", + "version":23047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.19.128", + "prefixLen":25, + "network":"193.82.19.128\/25", + "version":23046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.32.0", + "prefixLen":25, + "network":"193.82.32.0\/25", + "version":23045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.32.128", + "prefixLen":25, + "network":"193.82.32.128\/25", + "version":23044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.33.0", + "prefixLen":25, + "network":"193.82.33.0\/25", + "version":23043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.33.128", + "prefixLen":25, + "network":"193.82.33.128\/25", + "version":23042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.34.0", + "prefixLen":25, + "network":"193.82.34.0\/25", + "version":23041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.34.128", + "prefixLen":25, + "network":"193.82.34.128\/25", + "version":23040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.35.0", + "prefixLen":25, + "network":"193.82.35.0\/25", + "version":23039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.35.128", + "prefixLen":25, + "network":"193.82.35.128\/25", + "version":23038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.48.0", + "prefixLen":25, + "network":"193.82.48.0\/25", + "version":23037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.48.128", + "prefixLen":25, + "network":"193.82.48.128\/25", + "version":23036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.49.0", + "prefixLen":25, + "network":"193.82.49.0\/25", + "version":23035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.49.128", + "prefixLen":25, + "network":"193.82.49.128\/25", + "version":23034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.50.0", + "prefixLen":25, + "network":"193.82.50.0\/25", + "version":23033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.50.128", + "prefixLen":25, + "network":"193.82.50.128\/25", + "version":23032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.51.0", + "prefixLen":25, + "network":"193.82.51.0\/25", + "version":23031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.51.128", + "prefixLen":25, + "network":"193.82.51.128\/25", + "version":23030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.64.0", + "prefixLen":25, + "network":"193.82.64.0\/25", + "version":23029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.64.128", + "prefixLen":25, + "network":"193.82.64.128\/25", + "version":23028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.65.0", + "prefixLen":25, + "network":"193.82.65.0\/25", + "version":23027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.65.128", + "prefixLen":25, + "network":"193.82.65.128\/25", + "version":23026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.66.0", + "prefixLen":25, + "network":"193.82.66.0\/25", + "version":23025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.66.128", + "prefixLen":25, + "network":"193.82.66.128\/25", + "version":23024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.67.0", + "prefixLen":25, + "network":"193.82.67.0\/25", + "version":23023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.67.128", + "prefixLen":25, + "network":"193.82.67.128\/25", + "version":23022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.80.0", + "prefixLen":25, + "network":"193.82.80.0\/25", + "version":23021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.80.128", + "prefixLen":25, + "network":"193.82.80.128\/25", + "version":23020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.81.0", + "prefixLen":25, + "network":"193.82.81.0\/25", + "version":23019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.81.128", + "prefixLen":25, + "network":"193.82.81.128\/25", + "version":23018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.82.0", + "prefixLen":25, + "network":"193.82.82.0\/25", + "version":23017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.82.128", + "prefixLen":25, + "network":"193.82.82.128\/25", + "version":23016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.83.0", + "prefixLen":25, + "network":"193.82.83.0\/25", + "version":23015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.83.128", + "prefixLen":25, + "network":"193.82.83.128\/25", + "version":23014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.96.0", + "prefixLen":25, + "network":"193.82.96.0\/25", + "version":23013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.96.128", + "prefixLen":25, + "network":"193.82.96.128\/25", + "version":23012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.97.0", + "prefixLen":25, + "network":"193.82.97.0\/25", + "version":23011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.97.128", + "prefixLen":25, + "network":"193.82.97.128\/25", + "version":23010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.98.0", + "prefixLen":25, + "network":"193.82.98.0\/25", + "version":23009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.98.128", + "prefixLen":25, + "network":"193.82.98.128\/25", + "version":23008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.99.0", + "prefixLen":25, + "network":"193.82.99.0\/25", + "version":23007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.99.128", + "prefixLen":25, + "network":"193.82.99.128\/25", + "version":23006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.112.0", + "prefixLen":25, + "network":"193.82.112.0\/25", + "version":23005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.112.128", + "prefixLen":25, + "network":"193.82.112.128\/25", + "version":23004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.113.0", + "prefixLen":25, + "network":"193.82.113.0\/25", + "version":23003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.113.128", + "prefixLen":25, + "network":"193.82.113.128\/25", + "version":23002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.114.0", + "prefixLen":25, + "network":"193.82.114.0\/25", + "version":23001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.114.128", + "prefixLen":25, + "network":"193.82.114.128\/25", + "version":23000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.115.0", + "prefixLen":25, + "network":"193.82.115.0\/25", + "version":22999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.115.128", + "prefixLen":25, + "network":"193.82.115.128\/25", + "version":22998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.128.0", + "prefixLen":25, + "network":"193.82.128.0\/25", + "version":22997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.128.128", + "prefixLen":25, + "network":"193.82.128.128\/25", + "version":22996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.129.0", + "prefixLen":25, + "network":"193.82.129.0\/25", + "version":22995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.129.128", + "prefixLen":25, + "network":"193.82.129.128\/25", + "version":22994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.130.0", + "prefixLen":25, + "network":"193.82.130.0\/25", + "version":22993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.130.128", + "prefixLen":25, + "network":"193.82.130.128\/25", + "version":22992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.131.0", + "prefixLen":25, + "network":"193.82.131.0\/25", + "version":22991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.131.128", + "prefixLen":25, + "network":"193.82.131.128\/25", + "version":22990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.144.0", + "prefixLen":25, + "network":"193.82.144.0\/25", + "version":22989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.144.128", + "prefixLen":25, + "network":"193.82.144.128\/25", + "version":22988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.145.0", + "prefixLen":25, + "network":"193.82.145.0\/25", + "version":22987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.145.128", + "prefixLen":25, + "network":"193.82.145.128\/25", + "version":22986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.146.0", + "prefixLen":25, + "network":"193.82.146.0\/25", + "version":22985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.146.128", + "prefixLen":25, + "network":"193.82.146.128\/25", + "version":22984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.147.0", + "prefixLen":25, + "network":"193.82.147.0\/25", + "version":22983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.147.128", + "prefixLen":25, + "network":"193.82.147.128\/25", + "version":22982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.160.0", + "prefixLen":25, + "network":"193.82.160.0\/25", + "version":22981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.160.128", + "prefixLen":25, + "network":"193.82.160.128\/25", + "version":22980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.161.0", + "prefixLen":25, + "network":"193.82.161.0\/25", + "version":22979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.161.128", + "prefixLen":25, + "network":"193.82.161.128\/25", + "version":22978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.162.0", + "prefixLen":25, + "network":"193.82.162.0\/25", + "version":22977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.162.128", + "prefixLen":25, + "network":"193.82.162.128\/25", + "version":22976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.163.0", + "prefixLen":25, + "network":"193.82.163.0\/25", + "version":22975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.163.128", + "prefixLen":25, + "network":"193.82.163.128\/25", + "version":22974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.176.0", + "prefixLen":25, + "network":"193.82.176.0\/25", + "version":22973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.176.128", + "prefixLen":25, + "network":"193.82.176.128\/25", + "version":22972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.177.0", + "prefixLen":25, + "network":"193.82.177.0\/25", + "version":22971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.177.128", + "prefixLen":25, + "network":"193.82.177.128\/25", + "version":22970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.178.0", + "prefixLen":25, + "network":"193.82.178.0\/25", + "version":22969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.178.128", + "prefixLen":25, + "network":"193.82.178.128\/25", + "version":22968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.179.0", + "prefixLen":25, + "network":"193.82.179.0\/25", + "version":22967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.179.128", + "prefixLen":25, + "network":"193.82.179.128\/25", + "version":22966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.192.0", + "prefixLen":25, + "network":"193.82.192.0\/25", + "version":22965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.192.128", + "prefixLen":25, + "network":"193.82.192.128\/25", + "version":22964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.193.0", + "prefixLen":25, + "network":"193.82.193.0\/25", + "version":22963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.193.128", + "prefixLen":25, + "network":"193.82.193.128\/25", + "version":22962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.194.0", + "prefixLen":25, + "network":"193.82.194.0\/25", + "version":22961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.194.128", + "prefixLen":25, + "network":"193.82.194.128\/25", + "version":22960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.195.0", + "prefixLen":25, + "network":"193.82.195.0\/25", + "version":22959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.195.128", + "prefixLen":25, + "network":"193.82.195.128\/25", + "version":22958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.208.0", + "prefixLen":25, + "network":"193.82.208.0\/25", + "version":22957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.208.128", + "prefixLen":25, + "network":"193.82.208.128\/25", + "version":22956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.209.0", + "prefixLen":25, + "network":"193.82.209.0\/25", + "version":22955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.209.128", + "prefixLen":25, + "network":"193.82.209.128\/25", + "version":22954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.210.0", + "prefixLen":25, + "network":"193.82.210.0\/25", + "version":22953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.210.128", + "prefixLen":25, + "network":"193.82.210.128\/25", + "version":22952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.211.0", + "prefixLen":25, + "network":"193.82.211.0\/25", + "version":22951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.211.128", + "prefixLen":25, + "network":"193.82.211.128\/25", + "version":22950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.224.0", + "prefixLen":25, + "network":"193.82.224.0\/25", + "version":22949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.224.128", + "prefixLen":25, + "network":"193.82.224.128\/25", + "version":22948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.225.0", + "prefixLen":25, + "network":"193.82.225.0\/25", + "version":22947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.225.128", + "prefixLen":25, + "network":"193.82.225.128\/25", + "version":22946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.226.0", + "prefixLen":25, + "network":"193.82.226.0\/25", + "version":22945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.226.128", + "prefixLen":25, + "network":"193.82.226.128\/25", + "version":22944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.227.0", + "prefixLen":25, + "network":"193.82.227.0\/25", + "version":22943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.227.128", + "prefixLen":25, + "network":"193.82.227.128\/25", + "version":22942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.240.0", + "prefixLen":25, + "network":"193.82.240.0\/25", + "version":22941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.240.128", + "prefixLen":25, + "network":"193.82.240.128\/25", + "version":22940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.241.0", + "prefixLen":25, + "network":"193.82.241.0\/25", + "version":22939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.241.128", + "prefixLen":25, + "network":"193.82.241.128\/25", + "version":22938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.242.0", + "prefixLen":25, + "network":"193.82.242.0\/25", + "version":22937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.242.128", + "prefixLen":25, + "network":"193.82.242.128\/25", + "version":22936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.243.0", + "prefixLen":25, + "network":"193.82.243.0\/25", + "version":22935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.82.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.82.243.128", + "prefixLen":25, + "network":"193.82.243.128\/25", + "version":22934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64770 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.0.0", + "prefixLen":25, + "network":"193.83.0.0\/25", + "version":23061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.0.128", + "prefixLen":25, + "network":"193.83.0.128\/25", + "version":23188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.1.0", + "prefixLen":25, + "network":"193.83.1.0\/25", + "version":23187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.1.128", + "prefixLen":25, + "network":"193.83.1.128\/25", + "version":23186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.2.0", + "prefixLen":25, + "network":"193.83.2.0\/25", + "version":23185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.2.128", + "prefixLen":25, + "network":"193.83.2.128\/25", + "version":23184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.3.0", + "prefixLen":25, + "network":"193.83.3.0\/25", + "version":23183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.3.128", + "prefixLen":25, + "network":"193.83.3.128\/25", + "version":23182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.16.0", + "prefixLen":25, + "network":"193.83.16.0\/25", + "version":23181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.16.128", + "prefixLen":25, + "network":"193.83.16.128\/25", + "version":23180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.17.0", + "prefixLen":25, + "network":"193.83.17.0\/25", + "version":23179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.17.128", + "prefixLen":25, + "network":"193.83.17.128\/25", + "version":23178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.18.0", + "prefixLen":25, + "network":"193.83.18.0\/25", + "version":23177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.18.128", + "prefixLen":25, + "network":"193.83.18.128\/25", + "version":23176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.19.0", + "prefixLen":25, + "network":"193.83.19.0\/25", + "version":23175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.19.128", + "prefixLen":25, + "network":"193.83.19.128\/25", + "version":23174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.32.0", + "prefixLen":25, + "network":"193.83.32.0\/25", + "version":23173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.32.128", + "prefixLen":25, + "network":"193.83.32.128\/25", + "version":23172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.33.0", + "prefixLen":25, + "network":"193.83.33.0\/25", + "version":23171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.33.128", + "prefixLen":25, + "network":"193.83.33.128\/25", + "version":23170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.34.0", + "prefixLen":25, + "network":"193.83.34.0\/25", + "version":23169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.34.128", + "prefixLen":25, + "network":"193.83.34.128\/25", + "version":23168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.35.0", + "prefixLen":25, + "network":"193.83.35.0\/25", + "version":23167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.35.128", + "prefixLen":25, + "network":"193.83.35.128\/25", + "version":23166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.48.0", + "prefixLen":25, + "network":"193.83.48.0\/25", + "version":23165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.48.128", + "prefixLen":25, + "network":"193.83.48.128\/25", + "version":23164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.49.0", + "prefixLen":25, + "network":"193.83.49.0\/25", + "version":23163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.49.128", + "prefixLen":25, + "network":"193.83.49.128\/25", + "version":23162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.50.0", + "prefixLen":25, + "network":"193.83.50.0\/25", + "version":23161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.50.128", + "prefixLen":25, + "network":"193.83.50.128\/25", + "version":23160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.51.0", + "prefixLen":25, + "network":"193.83.51.0\/25", + "version":23159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.51.128", + "prefixLen":25, + "network":"193.83.51.128\/25", + "version":23158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.64.0", + "prefixLen":25, + "network":"193.83.64.0\/25", + "version":23157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.64.128", + "prefixLen":25, + "network":"193.83.64.128\/25", + "version":23156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.65.0", + "prefixLen":25, + "network":"193.83.65.0\/25", + "version":23155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.65.128", + "prefixLen":25, + "network":"193.83.65.128\/25", + "version":23154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.66.0", + "prefixLen":25, + "network":"193.83.66.0\/25", + "version":23153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.66.128", + "prefixLen":25, + "network":"193.83.66.128\/25", + "version":23152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.67.0", + "prefixLen":25, + "network":"193.83.67.0\/25", + "version":23151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.67.128", + "prefixLen":25, + "network":"193.83.67.128\/25", + "version":23150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.80.0", + "prefixLen":25, + "network":"193.83.80.0\/25", + "version":23149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.80.128", + "prefixLen":25, + "network":"193.83.80.128\/25", + "version":23148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.81.0", + "prefixLen":25, + "network":"193.83.81.0\/25", + "version":23147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.81.128", + "prefixLen":25, + "network":"193.83.81.128\/25", + "version":23146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.82.0", + "prefixLen":25, + "network":"193.83.82.0\/25", + "version":23145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.82.128", + "prefixLen":25, + "network":"193.83.82.128\/25", + "version":23144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.83.0", + "prefixLen":25, + "network":"193.83.83.0\/25", + "version":23143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.83.128", + "prefixLen":25, + "network":"193.83.83.128\/25", + "version":23142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.96.0", + "prefixLen":25, + "network":"193.83.96.0\/25", + "version":23141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.96.128", + "prefixLen":25, + "network":"193.83.96.128\/25", + "version":23140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.97.0", + "prefixLen":25, + "network":"193.83.97.0\/25", + "version":23139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.97.128", + "prefixLen":25, + "network":"193.83.97.128\/25", + "version":23138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.98.0", + "prefixLen":25, + "network":"193.83.98.0\/25", + "version":23137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.98.128", + "prefixLen":25, + "network":"193.83.98.128\/25", + "version":23136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.99.0", + "prefixLen":25, + "network":"193.83.99.0\/25", + "version":23135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.99.128", + "prefixLen":25, + "network":"193.83.99.128\/25", + "version":23134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.112.0", + "prefixLen":25, + "network":"193.83.112.0\/25", + "version":23133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.112.128", + "prefixLen":25, + "network":"193.83.112.128\/25", + "version":23132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.113.0", + "prefixLen":25, + "network":"193.83.113.0\/25", + "version":23131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.113.128", + "prefixLen":25, + "network":"193.83.113.128\/25", + "version":23130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.114.0", + "prefixLen":25, + "network":"193.83.114.0\/25", + "version":23129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.114.128", + "prefixLen":25, + "network":"193.83.114.128\/25", + "version":23128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.115.0", + "prefixLen":25, + "network":"193.83.115.0\/25", + "version":23127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.115.128", + "prefixLen":25, + "network":"193.83.115.128\/25", + "version":23126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.128.0", + "prefixLen":25, + "network":"193.83.128.0\/25", + "version":23125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.128.128", + "prefixLen":25, + "network":"193.83.128.128\/25", + "version":23124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.129.0", + "prefixLen":25, + "network":"193.83.129.0\/25", + "version":23123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.129.128", + "prefixLen":25, + "network":"193.83.129.128\/25", + "version":23122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.130.0", + "prefixLen":25, + "network":"193.83.130.0\/25", + "version":23121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.130.128", + "prefixLen":25, + "network":"193.83.130.128\/25", + "version":23120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.131.0", + "prefixLen":25, + "network":"193.83.131.0\/25", + "version":23119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.131.128", + "prefixLen":25, + "network":"193.83.131.128\/25", + "version":23118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.144.0", + "prefixLen":25, + "network":"193.83.144.0\/25", + "version":23117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.144.128", + "prefixLen":25, + "network":"193.83.144.128\/25", + "version":23116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.145.0", + "prefixLen":25, + "network":"193.83.145.0\/25", + "version":23115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.145.128", + "prefixLen":25, + "network":"193.83.145.128\/25", + "version":23114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.146.0", + "prefixLen":25, + "network":"193.83.146.0\/25", + "version":23113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.146.128", + "prefixLen":25, + "network":"193.83.146.128\/25", + "version":23112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.147.0", + "prefixLen":25, + "network":"193.83.147.0\/25", + "version":23111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.147.128", + "prefixLen":25, + "network":"193.83.147.128\/25", + "version":23110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.160.0", + "prefixLen":25, + "network":"193.83.160.0\/25", + "version":23109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.160.128", + "prefixLen":25, + "network":"193.83.160.128\/25", + "version":23108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.161.0", + "prefixLen":25, + "network":"193.83.161.0\/25", + "version":23107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.161.128", + "prefixLen":25, + "network":"193.83.161.128\/25", + "version":23106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.162.0", + "prefixLen":25, + "network":"193.83.162.0\/25", + "version":23105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.162.128", + "prefixLen":25, + "network":"193.83.162.128\/25", + "version":23104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.163.0", + "prefixLen":25, + "network":"193.83.163.0\/25", + "version":23103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.163.128", + "prefixLen":25, + "network":"193.83.163.128\/25", + "version":23102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.176.0", + "prefixLen":25, + "network":"193.83.176.0\/25", + "version":23101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.176.128", + "prefixLen":25, + "network":"193.83.176.128\/25", + "version":23100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.177.0", + "prefixLen":25, + "network":"193.83.177.0\/25", + "version":23099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.177.128", + "prefixLen":25, + "network":"193.83.177.128\/25", + "version":23098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.178.0", + "prefixLen":25, + "network":"193.83.178.0\/25", + "version":23097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.178.128", + "prefixLen":25, + "network":"193.83.178.128\/25", + "version":23096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.179.0", + "prefixLen":25, + "network":"193.83.179.0\/25", + "version":23095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.179.128", + "prefixLen":25, + "network":"193.83.179.128\/25", + "version":23094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.192.0", + "prefixLen":25, + "network":"193.83.192.0\/25", + "version":23093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.192.128", + "prefixLen":25, + "network":"193.83.192.128\/25", + "version":23092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.193.0", + "prefixLen":25, + "network":"193.83.193.0\/25", + "version":23091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.193.128", + "prefixLen":25, + "network":"193.83.193.128\/25", + "version":23090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.194.0", + "prefixLen":25, + "network":"193.83.194.0\/25", + "version":23089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.194.128", + "prefixLen":25, + "network":"193.83.194.128\/25", + "version":23088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.195.0", + "prefixLen":25, + "network":"193.83.195.0\/25", + "version":23087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.195.128", + "prefixLen":25, + "network":"193.83.195.128\/25", + "version":23086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.208.0", + "prefixLen":25, + "network":"193.83.208.0\/25", + "version":23085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.208.128", + "prefixLen":25, + "network":"193.83.208.128\/25", + "version":23084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.209.0", + "prefixLen":25, + "network":"193.83.209.0\/25", + "version":23083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.209.128", + "prefixLen":25, + "network":"193.83.209.128\/25", + "version":23082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.210.0", + "prefixLen":25, + "network":"193.83.210.0\/25", + "version":23081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.210.128", + "prefixLen":25, + "network":"193.83.210.128\/25", + "version":23080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.211.0", + "prefixLen":25, + "network":"193.83.211.0\/25", + "version":23079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.211.128", + "prefixLen":25, + "network":"193.83.211.128\/25", + "version":23078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.224.0", + "prefixLen":25, + "network":"193.83.224.0\/25", + "version":23077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.224.128", + "prefixLen":25, + "network":"193.83.224.128\/25", + "version":23076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.225.0", + "prefixLen":25, + "network":"193.83.225.0\/25", + "version":23075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.225.128", + "prefixLen":25, + "network":"193.83.225.128\/25", + "version":23074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.226.0", + "prefixLen":25, + "network":"193.83.226.0\/25", + "version":23073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.226.128", + "prefixLen":25, + "network":"193.83.226.128\/25", + "version":23072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.227.0", + "prefixLen":25, + "network":"193.83.227.0\/25", + "version":23071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.227.128", + "prefixLen":25, + "network":"193.83.227.128\/25", + "version":23070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.240.0", + "prefixLen":25, + "network":"193.83.240.0\/25", + "version":23069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.240.128", + "prefixLen":25, + "network":"193.83.240.128\/25", + "version":23068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.241.0", + "prefixLen":25, + "network":"193.83.241.0\/25", + "version":23067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.241.128", + "prefixLen":25, + "network":"193.83.241.128\/25", + "version":23066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.242.0", + "prefixLen":25, + "network":"193.83.242.0\/25", + "version":23065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.242.128", + "prefixLen":25, + "network":"193.83.242.128\/25", + "version":23064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.243.0", + "prefixLen":25, + "network":"193.83.243.0\/25", + "version":23063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.83.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.83.243.128", + "prefixLen":25, + "network":"193.83.243.128\/25", + "version":23062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64771 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.0.0", + "prefixLen":25, + "network":"193.84.0.0\/25", + "version":23189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.0.128", + "prefixLen":25, + "network":"193.84.0.128\/25", + "version":23316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.1.0", + "prefixLen":25, + "network":"193.84.1.0\/25", + "version":23315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.1.128", + "prefixLen":25, + "network":"193.84.1.128\/25", + "version":23314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.2.0", + "prefixLen":25, + "network":"193.84.2.0\/25", + "version":23313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.2.128", + "prefixLen":25, + "network":"193.84.2.128\/25", + "version":23312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.3.0", + "prefixLen":25, + "network":"193.84.3.0\/25", + "version":23311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.3.128", + "prefixLen":25, + "network":"193.84.3.128\/25", + "version":23310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.16.0", + "prefixLen":25, + "network":"193.84.16.0\/25", + "version":23309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.16.128", + "prefixLen":25, + "network":"193.84.16.128\/25", + "version":23308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.17.0", + "prefixLen":25, + "network":"193.84.17.0\/25", + "version":23307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.17.128", + "prefixLen":25, + "network":"193.84.17.128\/25", + "version":23306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.18.0", + "prefixLen":25, + "network":"193.84.18.0\/25", + "version":23305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.18.128", + "prefixLen":25, + "network":"193.84.18.128\/25", + "version":23304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.19.0", + "prefixLen":25, + "network":"193.84.19.0\/25", + "version":23303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.19.128", + "prefixLen":25, + "network":"193.84.19.128\/25", + "version":23302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.32.0", + "prefixLen":25, + "network":"193.84.32.0\/25", + "version":23301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.32.128", + "prefixLen":25, + "network":"193.84.32.128\/25", + "version":23300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.33.0", + "prefixLen":25, + "network":"193.84.33.0\/25", + "version":23299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.33.128", + "prefixLen":25, + "network":"193.84.33.128\/25", + "version":23298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.34.0", + "prefixLen":25, + "network":"193.84.34.0\/25", + "version":23297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.34.128", + "prefixLen":25, + "network":"193.84.34.128\/25", + "version":23296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.35.0", + "prefixLen":25, + "network":"193.84.35.0\/25", + "version":23295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.35.128", + "prefixLen":25, + "network":"193.84.35.128\/25", + "version":23294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.48.0", + "prefixLen":25, + "network":"193.84.48.0\/25", + "version":23293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.48.128", + "prefixLen":25, + "network":"193.84.48.128\/25", + "version":23292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.49.0", + "prefixLen":25, + "network":"193.84.49.0\/25", + "version":23291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.49.128", + "prefixLen":25, + "network":"193.84.49.128\/25", + "version":23290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.50.0", + "prefixLen":25, + "network":"193.84.50.0\/25", + "version":23289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.50.128", + "prefixLen":25, + "network":"193.84.50.128\/25", + "version":23288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.51.0", + "prefixLen":25, + "network":"193.84.51.0\/25", + "version":23287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.51.128", + "prefixLen":25, + "network":"193.84.51.128\/25", + "version":23286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.64.0", + "prefixLen":25, + "network":"193.84.64.0\/25", + "version":23285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.64.128", + "prefixLen":25, + "network":"193.84.64.128\/25", + "version":23284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.65.0", + "prefixLen":25, + "network":"193.84.65.0\/25", + "version":23283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.65.128", + "prefixLen":25, + "network":"193.84.65.128\/25", + "version":23282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.66.0", + "prefixLen":25, + "network":"193.84.66.0\/25", + "version":23281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.66.128", + "prefixLen":25, + "network":"193.84.66.128\/25", + "version":23280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.67.0", + "prefixLen":25, + "network":"193.84.67.0\/25", + "version":23279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.67.128", + "prefixLen":25, + "network":"193.84.67.128\/25", + "version":23278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.80.0", + "prefixLen":25, + "network":"193.84.80.0\/25", + "version":23277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.80.128", + "prefixLen":25, + "network":"193.84.80.128\/25", + "version":23276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.81.0", + "prefixLen":25, + "network":"193.84.81.0\/25", + "version":23275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.81.128", + "prefixLen":25, + "network":"193.84.81.128\/25", + "version":23274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.82.0", + "prefixLen":25, + "network":"193.84.82.0\/25", + "version":23273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.82.128", + "prefixLen":25, + "network":"193.84.82.128\/25", + "version":23272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.83.0", + "prefixLen":25, + "network":"193.84.83.0\/25", + "version":23271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.83.128", + "prefixLen":25, + "network":"193.84.83.128\/25", + "version":23270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.96.0", + "prefixLen":25, + "network":"193.84.96.0\/25", + "version":23269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.96.128", + "prefixLen":25, + "network":"193.84.96.128\/25", + "version":23268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.97.0", + "prefixLen":25, + "network":"193.84.97.0\/25", + "version":23267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.97.128", + "prefixLen":25, + "network":"193.84.97.128\/25", + "version":23266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.98.0", + "prefixLen":25, + "network":"193.84.98.0\/25", + "version":23265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.98.128", + "prefixLen":25, + "network":"193.84.98.128\/25", + "version":23264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.99.0", + "prefixLen":25, + "network":"193.84.99.0\/25", + "version":23263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.99.128", + "prefixLen":25, + "network":"193.84.99.128\/25", + "version":23262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.112.0", + "prefixLen":25, + "network":"193.84.112.0\/25", + "version":23261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.112.128", + "prefixLen":25, + "network":"193.84.112.128\/25", + "version":23260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.113.0", + "prefixLen":25, + "network":"193.84.113.0\/25", + "version":23259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.113.128", + "prefixLen":25, + "network":"193.84.113.128\/25", + "version":23258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.114.0", + "prefixLen":25, + "network":"193.84.114.0\/25", + "version":23257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.114.128", + "prefixLen":25, + "network":"193.84.114.128\/25", + "version":23256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.115.0", + "prefixLen":25, + "network":"193.84.115.0\/25", + "version":23255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.115.128", + "prefixLen":25, + "network":"193.84.115.128\/25", + "version":23254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.128.0", + "prefixLen":25, + "network":"193.84.128.0\/25", + "version":23253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.128.128", + "prefixLen":25, + "network":"193.84.128.128\/25", + "version":23252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.129.0", + "prefixLen":25, + "network":"193.84.129.0\/25", + "version":23251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.129.128", + "prefixLen":25, + "network":"193.84.129.128\/25", + "version":23250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.130.0", + "prefixLen":25, + "network":"193.84.130.0\/25", + "version":23249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.130.128", + "prefixLen":25, + "network":"193.84.130.128\/25", + "version":23248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.131.0", + "prefixLen":25, + "network":"193.84.131.0\/25", + "version":23247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.131.128", + "prefixLen":25, + "network":"193.84.131.128\/25", + "version":23246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.144.0", + "prefixLen":25, + "network":"193.84.144.0\/25", + "version":23245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.144.128", + "prefixLen":25, + "network":"193.84.144.128\/25", + "version":23244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.145.0", + "prefixLen":25, + "network":"193.84.145.0\/25", + "version":23243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.145.128", + "prefixLen":25, + "network":"193.84.145.128\/25", + "version":23242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.146.0", + "prefixLen":25, + "network":"193.84.146.0\/25", + "version":23241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.146.128", + "prefixLen":25, + "network":"193.84.146.128\/25", + "version":23240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.147.0", + "prefixLen":25, + "network":"193.84.147.0\/25", + "version":23239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.147.128", + "prefixLen":25, + "network":"193.84.147.128\/25", + "version":23238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.160.0", + "prefixLen":25, + "network":"193.84.160.0\/25", + "version":23237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.160.128", + "prefixLen":25, + "network":"193.84.160.128\/25", + "version":23236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.161.0", + "prefixLen":25, + "network":"193.84.161.0\/25", + "version":23235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.161.128", + "prefixLen":25, + "network":"193.84.161.128\/25", + "version":23234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.162.0", + "prefixLen":25, + "network":"193.84.162.0\/25", + "version":23233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.162.128", + "prefixLen":25, + "network":"193.84.162.128\/25", + "version":23232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.163.0", + "prefixLen":25, + "network":"193.84.163.0\/25", + "version":23231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.163.128", + "prefixLen":25, + "network":"193.84.163.128\/25", + "version":23230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.176.0", + "prefixLen":25, + "network":"193.84.176.0\/25", + "version":23229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.176.128", + "prefixLen":25, + "network":"193.84.176.128\/25", + "version":23228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.177.0", + "prefixLen":25, + "network":"193.84.177.0\/25", + "version":23227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.177.128", + "prefixLen":25, + "network":"193.84.177.128\/25", + "version":23226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.178.0", + "prefixLen":25, + "network":"193.84.178.0\/25", + "version":23225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.178.128", + "prefixLen":25, + "network":"193.84.178.128\/25", + "version":23224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.179.0", + "prefixLen":25, + "network":"193.84.179.0\/25", + "version":23223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.179.128", + "prefixLen":25, + "network":"193.84.179.128\/25", + "version":23222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.192.0", + "prefixLen":25, + "network":"193.84.192.0\/25", + "version":23221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.192.128", + "prefixLen":25, + "network":"193.84.192.128\/25", + "version":23220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.193.0", + "prefixLen":25, + "network":"193.84.193.0\/25", + "version":23219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.193.128", + "prefixLen":25, + "network":"193.84.193.128\/25", + "version":23218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.194.0", + "prefixLen":25, + "network":"193.84.194.0\/25", + "version":23217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.194.128", + "prefixLen":25, + "network":"193.84.194.128\/25", + "version":23216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.195.0", + "prefixLen":25, + "network":"193.84.195.0\/25", + "version":23215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.195.128", + "prefixLen":25, + "network":"193.84.195.128\/25", + "version":23214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.208.0", + "prefixLen":25, + "network":"193.84.208.0\/25", + "version":23213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.208.128", + "prefixLen":25, + "network":"193.84.208.128\/25", + "version":23212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.209.0", + "prefixLen":25, + "network":"193.84.209.0\/25", + "version":23211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.209.128", + "prefixLen":25, + "network":"193.84.209.128\/25", + "version":23210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.210.0", + "prefixLen":25, + "network":"193.84.210.0\/25", + "version":23209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.210.128", + "prefixLen":25, + "network":"193.84.210.128\/25", + "version":23208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.211.0", + "prefixLen":25, + "network":"193.84.211.0\/25", + "version":23207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.211.128", + "prefixLen":25, + "network":"193.84.211.128\/25", + "version":23206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.224.0", + "prefixLen":25, + "network":"193.84.224.0\/25", + "version":23205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.224.128", + "prefixLen":25, + "network":"193.84.224.128\/25", + "version":23204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.225.0", + "prefixLen":25, + "network":"193.84.225.0\/25", + "version":23203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.225.128", + "prefixLen":25, + "network":"193.84.225.128\/25", + "version":23202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.226.0", + "prefixLen":25, + "network":"193.84.226.0\/25", + "version":23201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.226.128", + "prefixLen":25, + "network":"193.84.226.128\/25", + "version":23200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.227.0", + "prefixLen":25, + "network":"193.84.227.0\/25", + "version":23199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.227.128", + "prefixLen":25, + "network":"193.84.227.128\/25", + "version":23198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.240.0", + "prefixLen":25, + "network":"193.84.240.0\/25", + "version":23197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.240.128", + "prefixLen":25, + "network":"193.84.240.128\/25", + "version":23196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.241.0", + "prefixLen":25, + "network":"193.84.241.0\/25", + "version":23195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.241.128", + "prefixLen":25, + "network":"193.84.241.128\/25", + "version":23194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.242.0", + "prefixLen":25, + "network":"193.84.242.0\/25", + "version":23193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.242.128", + "prefixLen":25, + "network":"193.84.242.128\/25", + "version":23192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.243.0", + "prefixLen":25, + "network":"193.84.243.0\/25", + "version":23191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.84.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.84.243.128", + "prefixLen":25, + "network":"193.84.243.128\/25", + "version":23190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64772 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.0.0", + "prefixLen":25, + "network":"193.85.0.0\/25", + "version":23317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.0.128", + "prefixLen":25, + "network":"193.85.0.128\/25", + "version":23444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.1.0", + "prefixLen":25, + "network":"193.85.1.0\/25", + "version":23443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.1.128", + "prefixLen":25, + "network":"193.85.1.128\/25", + "version":23442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.2.0", + "prefixLen":25, + "network":"193.85.2.0\/25", + "version":23441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.2.128", + "prefixLen":25, + "network":"193.85.2.128\/25", + "version":23440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.3.0", + "prefixLen":25, + "network":"193.85.3.0\/25", + "version":23439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.3.128", + "prefixLen":25, + "network":"193.85.3.128\/25", + "version":23438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.16.0", + "prefixLen":25, + "network":"193.85.16.0\/25", + "version":23437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.16.128", + "prefixLen":25, + "network":"193.85.16.128\/25", + "version":23436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.17.0", + "prefixLen":25, + "network":"193.85.17.0\/25", + "version":23435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.17.128", + "prefixLen":25, + "network":"193.85.17.128\/25", + "version":23434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.18.0", + "prefixLen":25, + "network":"193.85.18.0\/25", + "version":23433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.18.128", + "prefixLen":25, + "network":"193.85.18.128\/25", + "version":23432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.19.0", + "prefixLen":25, + "network":"193.85.19.0\/25", + "version":23431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.19.128", + "prefixLen":25, + "network":"193.85.19.128\/25", + "version":23430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.32.0", + "prefixLen":25, + "network":"193.85.32.0\/25", + "version":23429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.32.128", + "prefixLen":25, + "network":"193.85.32.128\/25", + "version":23428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.33.0", + "prefixLen":25, + "network":"193.85.33.0\/25", + "version":23427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.33.128", + "prefixLen":25, + "network":"193.85.33.128\/25", + "version":23426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.34.0", + "prefixLen":25, + "network":"193.85.34.0\/25", + "version":23425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.34.128", + "prefixLen":25, + "network":"193.85.34.128\/25", + "version":23424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.35.0", + "prefixLen":25, + "network":"193.85.35.0\/25", + "version":23423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.35.128", + "prefixLen":25, + "network":"193.85.35.128\/25", + "version":23422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.48.0", + "prefixLen":25, + "network":"193.85.48.0\/25", + "version":23421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.48.128", + "prefixLen":25, + "network":"193.85.48.128\/25", + "version":23420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.49.0", + "prefixLen":25, + "network":"193.85.49.0\/25", + "version":23419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.49.128", + "prefixLen":25, + "network":"193.85.49.128\/25", + "version":23418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.50.0", + "prefixLen":25, + "network":"193.85.50.0\/25", + "version":23417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.50.128", + "prefixLen":25, + "network":"193.85.50.128\/25", + "version":23416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.51.0", + "prefixLen":25, + "network":"193.85.51.0\/25", + "version":23415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.51.128", + "prefixLen":25, + "network":"193.85.51.128\/25", + "version":23414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.64.0", + "prefixLen":25, + "network":"193.85.64.0\/25", + "version":23413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.64.128", + "prefixLen":25, + "network":"193.85.64.128\/25", + "version":23412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.65.0", + "prefixLen":25, + "network":"193.85.65.0\/25", + "version":23411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.65.128", + "prefixLen":25, + "network":"193.85.65.128\/25", + "version":23410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.66.0", + "prefixLen":25, + "network":"193.85.66.0\/25", + "version":23409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.66.128", + "prefixLen":25, + "network":"193.85.66.128\/25", + "version":23408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.67.0", + "prefixLen":25, + "network":"193.85.67.0\/25", + "version":23407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.67.128", + "prefixLen":25, + "network":"193.85.67.128\/25", + "version":23406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.80.0", + "prefixLen":25, + "network":"193.85.80.0\/25", + "version":23405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.80.128", + "prefixLen":25, + "network":"193.85.80.128\/25", + "version":23404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.81.0", + "prefixLen":25, + "network":"193.85.81.0\/25", + "version":23403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.81.128", + "prefixLen":25, + "network":"193.85.81.128\/25", + "version":23402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.82.0", + "prefixLen":25, + "network":"193.85.82.0\/25", + "version":23401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.82.128", + "prefixLen":25, + "network":"193.85.82.128\/25", + "version":23400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.83.0", + "prefixLen":25, + "network":"193.85.83.0\/25", + "version":23399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.83.128", + "prefixLen":25, + "network":"193.85.83.128\/25", + "version":23398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.96.0", + "prefixLen":25, + "network":"193.85.96.0\/25", + "version":23397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.96.128", + "prefixLen":25, + "network":"193.85.96.128\/25", + "version":23396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.97.0", + "prefixLen":25, + "network":"193.85.97.0\/25", + "version":23395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.97.128", + "prefixLen":25, + "network":"193.85.97.128\/25", + "version":23394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.98.0", + "prefixLen":25, + "network":"193.85.98.0\/25", + "version":23393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.98.128", + "prefixLen":25, + "network":"193.85.98.128\/25", + "version":23392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.99.0", + "prefixLen":25, + "network":"193.85.99.0\/25", + "version":23391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.99.128", + "prefixLen":25, + "network":"193.85.99.128\/25", + "version":23390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.112.0", + "prefixLen":25, + "network":"193.85.112.0\/25", + "version":23389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.112.128", + "prefixLen":25, + "network":"193.85.112.128\/25", + "version":23388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.113.0", + "prefixLen":25, + "network":"193.85.113.0\/25", + "version":23387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.113.128", + "prefixLen":25, + "network":"193.85.113.128\/25", + "version":23386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.114.0", + "prefixLen":25, + "network":"193.85.114.0\/25", + "version":23385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.114.128", + "prefixLen":25, + "network":"193.85.114.128\/25", + "version":23384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.115.0", + "prefixLen":25, + "network":"193.85.115.0\/25", + "version":23383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.115.128", + "prefixLen":25, + "network":"193.85.115.128\/25", + "version":23382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.128.0", + "prefixLen":25, + "network":"193.85.128.0\/25", + "version":23381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.128.128", + "prefixLen":25, + "network":"193.85.128.128\/25", + "version":23380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.129.0", + "prefixLen":25, + "network":"193.85.129.0\/25", + "version":23379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.129.128", + "prefixLen":25, + "network":"193.85.129.128\/25", + "version":23378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.130.0", + "prefixLen":25, + "network":"193.85.130.0\/25", + "version":23377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.130.128", + "prefixLen":25, + "network":"193.85.130.128\/25", + "version":23376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.131.0", + "prefixLen":25, + "network":"193.85.131.0\/25", + "version":23375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.131.128", + "prefixLen":25, + "network":"193.85.131.128\/25", + "version":23374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.144.0", + "prefixLen":25, + "network":"193.85.144.0\/25", + "version":23373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.144.128", + "prefixLen":25, + "network":"193.85.144.128\/25", + "version":23372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.145.0", + "prefixLen":25, + "network":"193.85.145.0\/25", + "version":23371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.145.128", + "prefixLen":25, + "network":"193.85.145.128\/25", + "version":23370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.146.0", + "prefixLen":25, + "network":"193.85.146.0\/25", + "version":23369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.146.128", + "prefixLen":25, + "network":"193.85.146.128\/25", + "version":23368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.147.0", + "prefixLen":25, + "network":"193.85.147.0\/25", + "version":23367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.147.128", + "prefixLen":25, + "network":"193.85.147.128\/25", + "version":23366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.160.0", + "prefixLen":25, + "network":"193.85.160.0\/25", + "version":23365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.160.128", + "prefixLen":25, + "network":"193.85.160.128\/25", + "version":23364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.161.0", + "prefixLen":25, + "network":"193.85.161.0\/25", + "version":23363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.161.128", + "prefixLen":25, + "network":"193.85.161.128\/25", + "version":23362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.162.0", + "prefixLen":25, + "network":"193.85.162.0\/25", + "version":23361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.162.128", + "prefixLen":25, + "network":"193.85.162.128\/25", + "version":23360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.163.0", + "prefixLen":25, + "network":"193.85.163.0\/25", + "version":23359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.163.128", + "prefixLen":25, + "network":"193.85.163.128\/25", + "version":23358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.176.0", + "prefixLen":25, + "network":"193.85.176.0\/25", + "version":23357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.176.128", + "prefixLen":25, + "network":"193.85.176.128\/25", + "version":23356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.177.0", + "prefixLen":25, + "network":"193.85.177.0\/25", + "version":23355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.177.128", + "prefixLen":25, + "network":"193.85.177.128\/25", + "version":23354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.178.0", + "prefixLen":25, + "network":"193.85.178.0\/25", + "version":23353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.178.128", + "prefixLen":25, + "network":"193.85.178.128\/25", + "version":23352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.179.0", + "prefixLen":25, + "network":"193.85.179.0\/25", + "version":23351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.179.128", + "prefixLen":25, + "network":"193.85.179.128\/25", + "version":23350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.192.0", + "prefixLen":25, + "network":"193.85.192.0\/25", + "version":23349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.192.128", + "prefixLen":25, + "network":"193.85.192.128\/25", + "version":23348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.193.0", + "prefixLen":25, + "network":"193.85.193.0\/25", + "version":23347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.193.128", + "prefixLen":25, + "network":"193.85.193.128\/25", + "version":23346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.194.0", + "prefixLen":25, + "network":"193.85.194.0\/25", + "version":23345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.194.128", + "prefixLen":25, + "network":"193.85.194.128\/25", + "version":23344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.195.0", + "prefixLen":25, + "network":"193.85.195.0\/25", + "version":23343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.195.128", + "prefixLen":25, + "network":"193.85.195.128\/25", + "version":23342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.208.0", + "prefixLen":25, + "network":"193.85.208.0\/25", + "version":23341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.208.128", + "prefixLen":25, + "network":"193.85.208.128\/25", + "version":23340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.209.0", + "prefixLen":25, + "network":"193.85.209.0\/25", + "version":23339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.209.128", + "prefixLen":25, + "network":"193.85.209.128\/25", + "version":23338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.210.0", + "prefixLen":25, + "network":"193.85.210.0\/25", + "version":23337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.210.128", + "prefixLen":25, + "network":"193.85.210.128\/25", + "version":23336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.211.0", + "prefixLen":25, + "network":"193.85.211.0\/25", + "version":23335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.211.128", + "prefixLen":25, + "network":"193.85.211.128\/25", + "version":23334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.224.0", + "prefixLen":25, + "network":"193.85.224.0\/25", + "version":23333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.224.128", + "prefixLen":25, + "network":"193.85.224.128\/25", + "version":23332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.225.0", + "prefixLen":25, + "network":"193.85.225.0\/25", + "version":23331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.225.128", + "prefixLen":25, + "network":"193.85.225.128\/25", + "version":23330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.226.0", + "prefixLen":25, + "network":"193.85.226.0\/25", + "version":23329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.226.128", + "prefixLen":25, + "network":"193.85.226.128\/25", + "version":23328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.227.0", + "prefixLen":25, + "network":"193.85.227.0\/25", + "version":23327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.227.128", + "prefixLen":25, + "network":"193.85.227.128\/25", + "version":23326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.240.0", + "prefixLen":25, + "network":"193.85.240.0\/25", + "version":23325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.240.128", + "prefixLen":25, + "network":"193.85.240.128\/25", + "version":23324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.241.0", + "prefixLen":25, + "network":"193.85.241.0\/25", + "version":23323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.241.128", + "prefixLen":25, + "network":"193.85.241.128\/25", + "version":23322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.242.0", + "prefixLen":25, + "network":"193.85.242.0\/25", + "version":23321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.242.128", + "prefixLen":25, + "network":"193.85.242.128\/25", + "version":23320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.243.0", + "prefixLen":25, + "network":"193.85.243.0\/25", + "version":23319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.85.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.85.243.128", + "prefixLen":25, + "network":"193.85.243.128\/25", + "version":23318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64773 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.0.0", + "prefixLen":25, + "network":"193.86.0.0\/25", + "version":23445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.0.128", + "prefixLen":25, + "network":"193.86.0.128\/25", + "version":23572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.1.0", + "prefixLen":25, + "network":"193.86.1.0\/25", + "version":23571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.1.128", + "prefixLen":25, + "network":"193.86.1.128\/25", + "version":23570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.2.0", + "prefixLen":25, + "network":"193.86.2.0\/25", + "version":23569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.2.128", + "prefixLen":25, + "network":"193.86.2.128\/25", + "version":23568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.3.0", + "prefixLen":25, + "network":"193.86.3.0\/25", + "version":23567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.3.128", + "prefixLen":25, + "network":"193.86.3.128\/25", + "version":23566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.16.0", + "prefixLen":25, + "network":"193.86.16.0\/25", + "version":23565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.16.128", + "prefixLen":25, + "network":"193.86.16.128\/25", + "version":23564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.17.0", + "prefixLen":25, + "network":"193.86.17.0\/25", + "version":23563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.17.128", + "prefixLen":25, + "network":"193.86.17.128\/25", + "version":23562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.18.0", + "prefixLen":25, + "network":"193.86.18.0\/25", + "version":23561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.18.128", + "prefixLen":25, + "network":"193.86.18.128\/25", + "version":23560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.19.0", + "prefixLen":25, + "network":"193.86.19.0\/25", + "version":23559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.19.128", + "prefixLen":25, + "network":"193.86.19.128\/25", + "version":23558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.32.0", + "prefixLen":25, + "network":"193.86.32.0\/25", + "version":23557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.32.128", + "prefixLen":25, + "network":"193.86.32.128\/25", + "version":23556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.33.0", + "prefixLen":25, + "network":"193.86.33.0\/25", + "version":23555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.33.128", + "prefixLen":25, + "network":"193.86.33.128\/25", + "version":23554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.34.0", + "prefixLen":25, + "network":"193.86.34.0\/25", + "version":23553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.34.128", + "prefixLen":25, + "network":"193.86.34.128\/25", + "version":23552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.35.0", + "prefixLen":25, + "network":"193.86.35.0\/25", + "version":23551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.35.128", + "prefixLen":25, + "network":"193.86.35.128\/25", + "version":23550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.48.0", + "prefixLen":25, + "network":"193.86.48.0\/25", + "version":23549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.48.128", + "prefixLen":25, + "network":"193.86.48.128\/25", + "version":23548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.49.0", + "prefixLen":25, + "network":"193.86.49.0\/25", + "version":23547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.49.128", + "prefixLen":25, + "network":"193.86.49.128\/25", + "version":23546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.50.0", + "prefixLen":25, + "network":"193.86.50.0\/25", + "version":23545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.50.128", + "prefixLen":25, + "network":"193.86.50.128\/25", + "version":23544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.51.0", + "prefixLen":25, + "network":"193.86.51.0\/25", + "version":23543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.51.128", + "prefixLen":25, + "network":"193.86.51.128\/25", + "version":23542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.64.0", + "prefixLen":25, + "network":"193.86.64.0\/25", + "version":23541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.64.128", + "prefixLen":25, + "network":"193.86.64.128\/25", + "version":23540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.65.0", + "prefixLen":25, + "network":"193.86.65.0\/25", + "version":23539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.65.128", + "prefixLen":25, + "network":"193.86.65.128\/25", + "version":23538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.66.0", + "prefixLen":25, + "network":"193.86.66.0\/25", + "version":23537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.66.128", + "prefixLen":25, + "network":"193.86.66.128\/25", + "version":23536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.67.0", + "prefixLen":25, + "network":"193.86.67.0\/25", + "version":23535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.67.128", + "prefixLen":25, + "network":"193.86.67.128\/25", + "version":23534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.80.0", + "prefixLen":25, + "network":"193.86.80.0\/25", + "version":23533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.80.128", + "prefixLen":25, + "network":"193.86.80.128\/25", + "version":23532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.81.0", + "prefixLen":25, + "network":"193.86.81.0\/25", + "version":23531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.81.128", + "prefixLen":25, + "network":"193.86.81.128\/25", + "version":23530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.82.0", + "prefixLen":25, + "network":"193.86.82.0\/25", + "version":23529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.82.128", + "prefixLen":25, + "network":"193.86.82.128\/25", + "version":23528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.83.0", + "prefixLen":25, + "network":"193.86.83.0\/25", + "version":23527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.83.128", + "prefixLen":25, + "network":"193.86.83.128\/25", + "version":23526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.96.0", + "prefixLen":25, + "network":"193.86.96.0\/25", + "version":23525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.96.128", + "prefixLen":25, + "network":"193.86.96.128\/25", + "version":23524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.97.0", + "prefixLen":25, + "network":"193.86.97.0\/25", + "version":23523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.97.128", + "prefixLen":25, + "network":"193.86.97.128\/25", + "version":23522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.98.0", + "prefixLen":25, + "network":"193.86.98.0\/25", + "version":23521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.98.128", + "prefixLen":25, + "network":"193.86.98.128\/25", + "version":23520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.99.0", + "prefixLen":25, + "network":"193.86.99.0\/25", + "version":23519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.99.128", + "prefixLen":25, + "network":"193.86.99.128\/25", + "version":23518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.112.0", + "prefixLen":25, + "network":"193.86.112.0\/25", + "version":23517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.112.128", + "prefixLen":25, + "network":"193.86.112.128\/25", + "version":23516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.113.0", + "prefixLen":25, + "network":"193.86.113.0\/25", + "version":23515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.113.128", + "prefixLen":25, + "network":"193.86.113.128\/25", + "version":23514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.114.0", + "prefixLen":25, + "network":"193.86.114.0\/25", + "version":23513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.114.128", + "prefixLen":25, + "network":"193.86.114.128\/25", + "version":23512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.115.0", + "prefixLen":25, + "network":"193.86.115.0\/25", + "version":23511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.115.128", + "prefixLen":25, + "network":"193.86.115.128\/25", + "version":23510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.128.0", + "prefixLen":25, + "network":"193.86.128.0\/25", + "version":23509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.128.128", + "prefixLen":25, + "network":"193.86.128.128\/25", + "version":23508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.129.0", + "prefixLen":25, + "network":"193.86.129.0\/25", + "version":23507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.129.128", + "prefixLen":25, + "network":"193.86.129.128\/25", + "version":23506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.130.0", + "prefixLen":25, + "network":"193.86.130.0\/25", + "version":23505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.130.128", + "prefixLen":25, + "network":"193.86.130.128\/25", + "version":23504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.131.0", + "prefixLen":25, + "network":"193.86.131.0\/25", + "version":23503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.131.128", + "prefixLen":25, + "network":"193.86.131.128\/25", + "version":23502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.144.0", + "prefixLen":25, + "network":"193.86.144.0\/25", + "version":23501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.144.128", + "prefixLen":25, + "network":"193.86.144.128\/25", + "version":23500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.145.0", + "prefixLen":25, + "network":"193.86.145.0\/25", + "version":23499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.145.128", + "prefixLen":25, + "network":"193.86.145.128\/25", + "version":23498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.146.0", + "prefixLen":25, + "network":"193.86.146.0\/25", + "version":23497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.146.128", + "prefixLen":25, + "network":"193.86.146.128\/25", + "version":23496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.147.0", + "prefixLen":25, + "network":"193.86.147.0\/25", + "version":23495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.147.128", + "prefixLen":25, + "network":"193.86.147.128\/25", + "version":23494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.160.0", + "prefixLen":25, + "network":"193.86.160.0\/25", + "version":23493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.160.128", + "prefixLen":25, + "network":"193.86.160.128\/25", + "version":23492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.161.0", + "prefixLen":25, + "network":"193.86.161.0\/25", + "version":23491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.161.128", + "prefixLen":25, + "network":"193.86.161.128\/25", + "version":23490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.162.0", + "prefixLen":25, + "network":"193.86.162.0\/25", + "version":23489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.162.128", + "prefixLen":25, + "network":"193.86.162.128\/25", + "version":23488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.163.0", + "prefixLen":25, + "network":"193.86.163.0\/25", + "version":23487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.163.128", + "prefixLen":25, + "network":"193.86.163.128\/25", + "version":23486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.176.0", + "prefixLen":25, + "network":"193.86.176.0\/25", + "version":23485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.176.128", + "prefixLen":25, + "network":"193.86.176.128\/25", + "version":23484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.177.0", + "prefixLen":25, + "network":"193.86.177.0\/25", + "version":23483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.177.128", + "prefixLen":25, + "network":"193.86.177.128\/25", + "version":23482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.178.0", + "prefixLen":25, + "network":"193.86.178.0\/25", + "version":23481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.178.128", + "prefixLen":25, + "network":"193.86.178.128\/25", + "version":23480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.179.0", + "prefixLen":25, + "network":"193.86.179.0\/25", + "version":23479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.179.128", + "prefixLen":25, + "network":"193.86.179.128\/25", + "version":23478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.192.0", + "prefixLen":25, + "network":"193.86.192.0\/25", + "version":23477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.192.128", + "prefixLen":25, + "network":"193.86.192.128\/25", + "version":23476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.193.0", + "prefixLen":25, + "network":"193.86.193.0\/25", + "version":23475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.193.128", + "prefixLen":25, + "network":"193.86.193.128\/25", + "version":23474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.194.0", + "prefixLen":25, + "network":"193.86.194.0\/25", + "version":23473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.194.128", + "prefixLen":25, + "network":"193.86.194.128\/25", + "version":23472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.195.0", + "prefixLen":25, + "network":"193.86.195.0\/25", + "version":23471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.195.128", + "prefixLen":25, + "network":"193.86.195.128\/25", + "version":23470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.208.0", + "prefixLen":25, + "network":"193.86.208.0\/25", + "version":23469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.208.128", + "prefixLen":25, + "network":"193.86.208.128\/25", + "version":23468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.209.0", + "prefixLen":25, + "network":"193.86.209.0\/25", + "version":23467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.209.128", + "prefixLen":25, + "network":"193.86.209.128\/25", + "version":23466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.210.0", + "prefixLen":25, + "network":"193.86.210.0\/25", + "version":23465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.210.128", + "prefixLen":25, + "network":"193.86.210.128\/25", + "version":23464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.211.0", + "prefixLen":25, + "network":"193.86.211.0\/25", + "version":23463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.211.128", + "prefixLen":25, + "network":"193.86.211.128\/25", + "version":23462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.224.0", + "prefixLen":25, + "network":"193.86.224.0\/25", + "version":23461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.224.128", + "prefixLen":25, + "network":"193.86.224.128\/25", + "version":23460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.225.0", + "prefixLen":25, + "network":"193.86.225.0\/25", + "version":23459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.225.128", + "prefixLen":25, + "network":"193.86.225.128\/25", + "version":23458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.226.0", + "prefixLen":25, + "network":"193.86.226.0\/25", + "version":23457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.226.128", + "prefixLen":25, + "network":"193.86.226.128\/25", + "version":23456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.227.0", + "prefixLen":25, + "network":"193.86.227.0\/25", + "version":23455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.227.128", + "prefixLen":25, + "network":"193.86.227.128\/25", + "version":23454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.240.0", + "prefixLen":25, + "network":"193.86.240.0\/25", + "version":23453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.240.128", + "prefixLen":25, + "network":"193.86.240.128\/25", + "version":23452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.241.0", + "prefixLen":25, + "network":"193.86.241.0\/25", + "version":23451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.241.128", + "prefixLen":25, + "network":"193.86.241.128\/25", + "version":23450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.242.0", + "prefixLen":25, + "network":"193.86.242.0\/25", + "version":23449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.242.128", + "prefixLen":25, + "network":"193.86.242.128\/25", + "version":23448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.243.0", + "prefixLen":25, + "network":"193.86.243.0\/25", + "version":23447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.86.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.86.243.128", + "prefixLen":25, + "network":"193.86.243.128\/25", + "version":23446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64774 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.0.0", + "prefixLen":25, + "network":"193.87.0.0\/25", + "version":23573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.0.128", + "prefixLen":25, + "network":"193.87.0.128\/25", + "version":23700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.1.0", + "prefixLen":25, + "network":"193.87.1.0\/25", + "version":23699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.1.128", + "prefixLen":25, + "network":"193.87.1.128\/25", + "version":23698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.2.0", + "prefixLen":25, + "network":"193.87.2.0\/25", + "version":23697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.2.128", + "prefixLen":25, + "network":"193.87.2.128\/25", + "version":23696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.3.0", + "prefixLen":25, + "network":"193.87.3.0\/25", + "version":23695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.3.128", + "prefixLen":25, + "network":"193.87.3.128\/25", + "version":23694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.16.0", + "prefixLen":25, + "network":"193.87.16.0\/25", + "version":23693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.16.128", + "prefixLen":25, + "network":"193.87.16.128\/25", + "version":23692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.17.0", + "prefixLen":25, + "network":"193.87.17.0\/25", + "version":23691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.17.128", + "prefixLen":25, + "network":"193.87.17.128\/25", + "version":23690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.18.0", + "prefixLen":25, + "network":"193.87.18.0\/25", + "version":23689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.18.128", + "prefixLen":25, + "network":"193.87.18.128\/25", + "version":23688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.19.0", + "prefixLen":25, + "network":"193.87.19.0\/25", + "version":23687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.19.128", + "prefixLen":25, + "network":"193.87.19.128\/25", + "version":23686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.32.0", + "prefixLen":25, + "network":"193.87.32.0\/25", + "version":23685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.32.128", + "prefixLen":25, + "network":"193.87.32.128\/25", + "version":23684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.33.0", + "prefixLen":25, + "network":"193.87.33.0\/25", + "version":23683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.33.128", + "prefixLen":25, + "network":"193.87.33.128\/25", + "version":23682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.34.0", + "prefixLen":25, + "network":"193.87.34.0\/25", + "version":23681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.34.128", + "prefixLen":25, + "network":"193.87.34.128\/25", + "version":23680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.35.0", + "prefixLen":25, + "network":"193.87.35.0\/25", + "version":23679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.35.128", + "prefixLen":25, + "network":"193.87.35.128\/25", + "version":23678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.48.0", + "prefixLen":25, + "network":"193.87.48.0\/25", + "version":23677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.48.128", + "prefixLen":25, + "network":"193.87.48.128\/25", + "version":23676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.49.0", + "prefixLen":25, + "network":"193.87.49.0\/25", + "version":23675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.49.128", + "prefixLen":25, + "network":"193.87.49.128\/25", + "version":23674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.50.0", + "prefixLen":25, + "network":"193.87.50.0\/25", + "version":23673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.50.128", + "prefixLen":25, + "network":"193.87.50.128\/25", + "version":23672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.51.0", + "prefixLen":25, + "network":"193.87.51.0\/25", + "version":23671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.51.128", + "prefixLen":25, + "network":"193.87.51.128\/25", + "version":23670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.64.0", + "prefixLen":25, + "network":"193.87.64.0\/25", + "version":23669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.64.128", + "prefixLen":25, + "network":"193.87.64.128\/25", + "version":23668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.65.0", + "prefixLen":25, + "network":"193.87.65.0\/25", + "version":23667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.65.128", + "prefixLen":25, + "network":"193.87.65.128\/25", + "version":23666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.66.0", + "prefixLen":25, + "network":"193.87.66.0\/25", + "version":23665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.66.128", + "prefixLen":25, + "network":"193.87.66.128\/25", + "version":23664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.67.0", + "prefixLen":25, + "network":"193.87.67.0\/25", + "version":23663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.67.128", + "prefixLen":25, + "network":"193.87.67.128\/25", + "version":23662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.80.0", + "prefixLen":25, + "network":"193.87.80.0\/25", + "version":23661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.80.128", + "prefixLen":25, + "network":"193.87.80.128\/25", + "version":23660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.81.0", + "prefixLen":25, + "network":"193.87.81.0\/25", + "version":23659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.81.128", + "prefixLen":25, + "network":"193.87.81.128\/25", + "version":23658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.82.0", + "prefixLen":25, + "network":"193.87.82.0\/25", + "version":23657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.82.128", + "prefixLen":25, + "network":"193.87.82.128\/25", + "version":23656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.83.0", + "prefixLen":25, + "network":"193.87.83.0\/25", + "version":23655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.83.128", + "prefixLen":25, + "network":"193.87.83.128\/25", + "version":23654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.96.0", + "prefixLen":25, + "network":"193.87.96.0\/25", + "version":23653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.96.128", + "prefixLen":25, + "network":"193.87.96.128\/25", + "version":23652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.97.0", + "prefixLen":25, + "network":"193.87.97.0\/25", + "version":23651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.97.128", + "prefixLen":25, + "network":"193.87.97.128\/25", + "version":23650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.98.0", + "prefixLen":25, + "network":"193.87.98.0\/25", + "version":23649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.98.128", + "prefixLen":25, + "network":"193.87.98.128\/25", + "version":23648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.99.0", + "prefixLen":25, + "network":"193.87.99.0\/25", + "version":23647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.99.128", + "prefixLen":25, + "network":"193.87.99.128\/25", + "version":23646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.112.0", + "prefixLen":25, + "network":"193.87.112.0\/25", + "version":23645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.112.128", + "prefixLen":25, + "network":"193.87.112.128\/25", + "version":23644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.113.0", + "prefixLen":25, + "network":"193.87.113.0\/25", + "version":23643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.113.128", + "prefixLen":25, + "network":"193.87.113.128\/25", + "version":23642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.114.0", + "prefixLen":25, + "network":"193.87.114.0\/25", + "version":23641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.114.128", + "prefixLen":25, + "network":"193.87.114.128\/25", + "version":23640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.115.0", + "prefixLen":25, + "network":"193.87.115.0\/25", + "version":23639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.115.128", + "prefixLen":25, + "network":"193.87.115.128\/25", + "version":23638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.128.0", + "prefixLen":25, + "network":"193.87.128.0\/25", + "version":23637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.128.128", + "prefixLen":25, + "network":"193.87.128.128\/25", + "version":23636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.129.0", + "prefixLen":25, + "network":"193.87.129.0\/25", + "version":23635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.129.128", + "prefixLen":25, + "network":"193.87.129.128\/25", + "version":23634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.130.0", + "prefixLen":25, + "network":"193.87.130.0\/25", + "version":23633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.130.128", + "prefixLen":25, + "network":"193.87.130.128\/25", + "version":23632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.131.0", + "prefixLen":25, + "network":"193.87.131.0\/25", + "version":23631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.131.128", + "prefixLen":25, + "network":"193.87.131.128\/25", + "version":23630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.144.0", + "prefixLen":25, + "network":"193.87.144.0\/25", + "version":23629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.144.128", + "prefixLen":25, + "network":"193.87.144.128\/25", + "version":23628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.145.0", + "prefixLen":25, + "network":"193.87.145.0\/25", + "version":23627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.145.128", + "prefixLen":25, + "network":"193.87.145.128\/25", + "version":23626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.146.0", + "prefixLen":25, + "network":"193.87.146.0\/25", + "version":23625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.146.128", + "prefixLen":25, + "network":"193.87.146.128\/25", + "version":23624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.147.0", + "prefixLen":25, + "network":"193.87.147.0\/25", + "version":23623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.147.128", + "prefixLen":25, + "network":"193.87.147.128\/25", + "version":23622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.160.0", + "prefixLen":25, + "network":"193.87.160.0\/25", + "version":23621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.160.128", + "prefixLen":25, + "network":"193.87.160.128\/25", + "version":23620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.161.0", + "prefixLen":25, + "network":"193.87.161.0\/25", + "version":23619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.161.128", + "prefixLen":25, + "network":"193.87.161.128\/25", + "version":23618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.162.0", + "prefixLen":25, + "network":"193.87.162.0\/25", + "version":23617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.162.128", + "prefixLen":25, + "network":"193.87.162.128\/25", + "version":23616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.163.0", + "prefixLen":25, + "network":"193.87.163.0\/25", + "version":23615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.163.128", + "prefixLen":25, + "network":"193.87.163.128\/25", + "version":23614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.176.0", + "prefixLen":25, + "network":"193.87.176.0\/25", + "version":23613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.176.128", + "prefixLen":25, + "network":"193.87.176.128\/25", + "version":23612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.177.0", + "prefixLen":25, + "network":"193.87.177.0\/25", + "version":23611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.177.128", + "prefixLen":25, + "network":"193.87.177.128\/25", + "version":23610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.178.0", + "prefixLen":25, + "network":"193.87.178.0\/25", + "version":23609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.178.128", + "prefixLen":25, + "network":"193.87.178.128\/25", + "version":23608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.179.0", + "prefixLen":25, + "network":"193.87.179.0\/25", + "version":23607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.179.128", + "prefixLen":25, + "network":"193.87.179.128\/25", + "version":23606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.192.0", + "prefixLen":25, + "network":"193.87.192.0\/25", + "version":23605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.192.128", + "prefixLen":25, + "network":"193.87.192.128\/25", + "version":23604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.193.0", + "prefixLen":25, + "network":"193.87.193.0\/25", + "version":23603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.193.128", + "prefixLen":25, + "network":"193.87.193.128\/25", + "version":23602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.194.0", + "prefixLen":25, + "network":"193.87.194.0\/25", + "version":23601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.194.128", + "prefixLen":25, + "network":"193.87.194.128\/25", + "version":23600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.195.0", + "prefixLen":25, + "network":"193.87.195.0\/25", + "version":23599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.195.128", + "prefixLen":25, + "network":"193.87.195.128\/25", + "version":23598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.208.0", + "prefixLen":25, + "network":"193.87.208.0\/25", + "version":23597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.208.128", + "prefixLen":25, + "network":"193.87.208.128\/25", + "version":23596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.209.0", + "prefixLen":25, + "network":"193.87.209.0\/25", + "version":23595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.209.128", + "prefixLen":25, + "network":"193.87.209.128\/25", + "version":23594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.210.0", + "prefixLen":25, + "network":"193.87.210.0\/25", + "version":23593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.210.128", + "prefixLen":25, + "network":"193.87.210.128\/25", + "version":23592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.211.0", + "prefixLen":25, + "network":"193.87.211.0\/25", + "version":23591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.211.128", + "prefixLen":25, + "network":"193.87.211.128\/25", + "version":23590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.224.0", + "prefixLen":25, + "network":"193.87.224.0\/25", + "version":23589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.224.128", + "prefixLen":25, + "network":"193.87.224.128\/25", + "version":23588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.225.0", + "prefixLen":25, + "network":"193.87.225.0\/25", + "version":23587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.225.128", + "prefixLen":25, + "network":"193.87.225.128\/25", + "version":23586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.226.0", + "prefixLen":25, + "network":"193.87.226.0\/25", + "version":23585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.226.128", + "prefixLen":25, + "network":"193.87.226.128\/25", + "version":23584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.227.0", + "prefixLen":25, + "network":"193.87.227.0\/25", + "version":23583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.227.128", + "prefixLen":25, + "network":"193.87.227.128\/25", + "version":23582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.240.0", + "prefixLen":25, + "network":"193.87.240.0\/25", + "version":23581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.240.128", + "prefixLen":25, + "network":"193.87.240.128\/25", + "version":23580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.241.0", + "prefixLen":25, + "network":"193.87.241.0\/25", + "version":23579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.241.128", + "prefixLen":25, + "network":"193.87.241.128\/25", + "version":23578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.242.0", + "prefixLen":25, + "network":"193.87.242.0\/25", + "version":23577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.242.128", + "prefixLen":25, + "network":"193.87.242.128\/25", + "version":23576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.243.0", + "prefixLen":25, + "network":"193.87.243.0\/25", + "version":23575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.87.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.87.243.128", + "prefixLen":25, + "network":"193.87.243.128\/25", + "version":23574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64775 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.0.0", + "prefixLen":25, + "network":"193.88.0.0\/25", + "version":23701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.0.128", + "prefixLen":25, + "network":"193.88.0.128\/25", + "version":23828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.1.0", + "prefixLen":25, + "network":"193.88.1.0\/25", + "version":23827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.1.128", + "prefixLen":25, + "network":"193.88.1.128\/25", + "version":23826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.2.0", + "prefixLen":25, + "network":"193.88.2.0\/25", + "version":23825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.2.128", + "prefixLen":25, + "network":"193.88.2.128\/25", + "version":23824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.3.0", + "prefixLen":25, + "network":"193.88.3.0\/25", + "version":23823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.3.128", + "prefixLen":25, + "network":"193.88.3.128\/25", + "version":23822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.16.0", + "prefixLen":25, + "network":"193.88.16.0\/25", + "version":23821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.16.128", + "prefixLen":25, + "network":"193.88.16.128\/25", + "version":23820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.17.0", + "prefixLen":25, + "network":"193.88.17.0\/25", + "version":23819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.17.128", + "prefixLen":25, + "network":"193.88.17.128\/25", + "version":23818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.18.0", + "prefixLen":25, + "network":"193.88.18.0\/25", + "version":23817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.18.128", + "prefixLen":25, + "network":"193.88.18.128\/25", + "version":23816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.19.0", + "prefixLen":25, + "network":"193.88.19.0\/25", + "version":23815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.19.128", + "prefixLen":25, + "network":"193.88.19.128\/25", + "version":23814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.32.0", + "prefixLen":25, + "network":"193.88.32.0\/25", + "version":23813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.32.128", + "prefixLen":25, + "network":"193.88.32.128\/25", + "version":23812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.33.0", + "prefixLen":25, + "network":"193.88.33.0\/25", + "version":23811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.33.128", + "prefixLen":25, + "network":"193.88.33.128\/25", + "version":23810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.34.0", + "prefixLen":25, + "network":"193.88.34.0\/25", + "version":23809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.34.128", + "prefixLen":25, + "network":"193.88.34.128\/25", + "version":23808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.35.0", + "prefixLen":25, + "network":"193.88.35.0\/25", + "version":23807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.35.128", + "prefixLen":25, + "network":"193.88.35.128\/25", + "version":23806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.48.0", + "prefixLen":25, + "network":"193.88.48.0\/25", + "version":23805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.48.128", + "prefixLen":25, + "network":"193.88.48.128\/25", + "version":23804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.49.0", + "prefixLen":25, + "network":"193.88.49.0\/25", + "version":23803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.49.128", + "prefixLen":25, + "network":"193.88.49.128\/25", + "version":23802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.50.0", + "prefixLen":25, + "network":"193.88.50.0\/25", + "version":23801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.50.128", + "prefixLen":25, + "network":"193.88.50.128\/25", + "version":23800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.51.0", + "prefixLen":25, + "network":"193.88.51.0\/25", + "version":23799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.51.128", + "prefixLen":25, + "network":"193.88.51.128\/25", + "version":23798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.64.0", + "prefixLen":25, + "network":"193.88.64.0\/25", + "version":23797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.64.128", + "prefixLen":25, + "network":"193.88.64.128\/25", + "version":23796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.65.0", + "prefixLen":25, + "network":"193.88.65.0\/25", + "version":23795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.65.128", + "prefixLen":25, + "network":"193.88.65.128\/25", + "version":23794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.66.0", + "prefixLen":25, + "network":"193.88.66.0\/25", + "version":23793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.66.128", + "prefixLen":25, + "network":"193.88.66.128\/25", + "version":23792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.67.0", + "prefixLen":25, + "network":"193.88.67.0\/25", + "version":23791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.67.128", + "prefixLen":25, + "network":"193.88.67.128\/25", + "version":23790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.80.0", + "prefixLen":25, + "network":"193.88.80.0\/25", + "version":23789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.80.128", + "prefixLen":25, + "network":"193.88.80.128\/25", + "version":23788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.81.0", + "prefixLen":25, + "network":"193.88.81.0\/25", + "version":23787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.81.128", + "prefixLen":25, + "network":"193.88.81.128\/25", + "version":23786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.82.0", + "prefixLen":25, + "network":"193.88.82.0\/25", + "version":23785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.82.128", + "prefixLen":25, + "network":"193.88.82.128\/25", + "version":23784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.83.0", + "prefixLen":25, + "network":"193.88.83.0\/25", + "version":23783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.83.128", + "prefixLen":25, + "network":"193.88.83.128\/25", + "version":23782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.96.0", + "prefixLen":25, + "network":"193.88.96.0\/25", + "version":23781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.96.128", + "prefixLen":25, + "network":"193.88.96.128\/25", + "version":23780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.97.0", + "prefixLen":25, + "network":"193.88.97.0\/25", + "version":23779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.97.128", + "prefixLen":25, + "network":"193.88.97.128\/25", + "version":23778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.98.0", + "prefixLen":25, + "network":"193.88.98.0\/25", + "version":23777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.98.128", + "prefixLen":25, + "network":"193.88.98.128\/25", + "version":23776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.99.0", + "prefixLen":25, + "network":"193.88.99.0\/25", + "version":23775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.99.128", + "prefixLen":25, + "network":"193.88.99.128\/25", + "version":23774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.112.0", + "prefixLen":25, + "network":"193.88.112.0\/25", + "version":23773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.112.128", + "prefixLen":25, + "network":"193.88.112.128\/25", + "version":23772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.113.0", + "prefixLen":25, + "network":"193.88.113.0\/25", + "version":23771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.113.128", + "prefixLen":25, + "network":"193.88.113.128\/25", + "version":23770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.114.0", + "prefixLen":25, + "network":"193.88.114.0\/25", + "version":23769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.114.128", + "prefixLen":25, + "network":"193.88.114.128\/25", + "version":23768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.115.0", + "prefixLen":25, + "network":"193.88.115.0\/25", + "version":23767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.115.128", + "prefixLen":25, + "network":"193.88.115.128\/25", + "version":23766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.128.0", + "prefixLen":25, + "network":"193.88.128.0\/25", + "version":23765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.128.128", + "prefixLen":25, + "network":"193.88.128.128\/25", + "version":23764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.129.0", + "prefixLen":25, + "network":"193.88.129.0\/25", + "version":23763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.129.128", + "prefixLen":25, + "network":"193.88.129.128\/25", + "version":23762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.130.0", + "prefixLen":25, + "network":"193.88.130.0\/25", + "version":23761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.130.128", + "prefixLen":25, + "network":"193.88.130.128\/25", + "version":23760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.131.0", + "prefixLen":25, + "network":"193.88.131.0\/25", + "version":23759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.131.128", + "prefixLen":25, + "network":"193.88.131.128\/25", + "version":23758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.144.0", + "prefixLen":25, + "network":"193.88.144.0\/25", + "version":23757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.144.128", + "prefixLen":25, + "network":"193.88.144.128\/25", + "version":23756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.145.0", + "prefixLen":25, + "network":"193.88.145.0\/25", + "version":23755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.145.128", + "prefixLen":25, + "network":"193.88.145.128\/25", + "version":23754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.146.0", + "prefixLen":25, + "network":"193.88.146.0\/25", + "version":23753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.146.128", + "prefixLen":25, + "network":"193.88.146.128\/25", + "version":23752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.147.0", + "prefixLen":25, + "network":"193.88.147.0\/25", + "version":23751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.147.128", + "prefixLen":25, + "network":"193.88.147.128\/25", + "version":23750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.160.0", + "prefixLen":25, + "network":"193.88.160.0\/25", + "version":23749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.160.128", + "prefixLen":25, + "network":"193.88.160.128\/25", + "version":23748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.161.0", + "prefixLen":25, + "network":"193.88.161.0\/25", + "version":23747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.161.128", + "prefixLen":25, + "network":"193.88.161.128\/25", + "version":23746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.162.0", + "prefixLen":25, + "network":"193.88.162.0\/25", + "version":23745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.162.128", + "prefixLen":25, + "network":"193.88.162.128\/25", + "version":23744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.163.0", + "prefixLen":25, + "network":"193.88.163.0\/25", + "version":23743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.163.128", + "prefixLen":25, + "network":"193.88.163.128\/25", + "version":23742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.176.0", + "prefixLen":25, + "network":"193.88.176.0\/25", + "version":23741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.176.128", + "prefixLen":25, + "network":"193.88.176.128\/25", + "version":23740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.177.0", + "prefixLen":25, + "network":"193.88.177.0\/25", + "version":23739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.177.128", + "prefixLen":25, + "network":"193.88.177.128\/25", + "version":23738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.178.0", + "prefixLen":25, + "network":"193.88.178.0\/25", + "version":23737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.178.128", + "prefixLen":25, + "network":"193.88.178.128\/25", + "version":23736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.179.0", + "prefixLen":25, + "network":"193.88.179.0\/25", + "version":23735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.179.128", + "prefixLen":25, + "network":"193.88.179.128\/25", + "version":23734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.192.0", + "prefixLen":25, + "network":"193.88.192.0\/25", + "version":23733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.192.128", + "prefixLen":25, + "network":"193.88.192.128\/25", + "version":23732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.193.0", + "prefixLen":25, + "network":"193.88.193.0\/25", + "version":23731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.193.128", + "prefixLen":25, + "network":"193.88.193.128\/25", + "version":23730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.194.0", + "prefixLen":25, + "network":"193.88.194.0\/25", + "version":23729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.194.128", + "prefixLen":25, + "network":"193.88.194.128\/25", + "version":23728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.195.0", + "prefixLen":25, + "network":"193.88.195.0\/25", + "version":23727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.195.128", + "prefixLen":25, + "network":"193.88.195.128\/25", + "version":23726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.208.0", + "prefixLen":25, + "network":"193.88.208.0\/25", + "version":23725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.208.128", + "prefixLen":25, + "network":"193.88.208.128\/25", + "version":23724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.209.0", + "prefixLen":25, + "network":"193.88.209.0\/25", + "version":23723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.209.128", + "prefixLen":25, + "network":"193.88.209.128\/25", + "version":23722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.210.0", + "prefixLen":25, + "network":"193.88.210.0\/25", + "version":23721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.210.128", + "prefixLen":25, + "network":"193.88.210.128\/25", + "version":23720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.211.0", + "prefixLen":25, + "network":"193.88.211.0\/25", + "version":23719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.211.128", + "prefixLen":25, + "network":"193.88.211.128\/25", + "version":23718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.224.0", + "prefixLen":25, + "network":"193.88.224.0\/25", + "version":23717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.224.128", + "prefixLen":25, + "network":"193.88.224.128\/25", + "version":23716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.225.0", + "prefixLen":25, + "network":"193.88.225.0\/25", + "version":23715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.225.128", + "prefixLen":25, + "network":"193.88.225.128\/25", + "version":23714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.226.0", + "prefixLen":25, + "network":"193.88.226.0\/25", + "version":23713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.226.128", + "prefixLen":25, + "network":"193.88.226.128\/25", + "version":23712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.227.0", + "prefixLen":25, + "network":"193.88.227.0\/25", + "version":23711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.227.128", + "prefixLen":25, + "network":"193.88.227.128\/25", + "version":23710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.240.0", + "prefixLen":25, + "network":"193.88.240.0\/25", + "version":23709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.240.128", + "prefixLen":25, + "network":"193.88.240.128\/25", + "version":23708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.241.0", + "prefixLen":25, + "network":"193.88.241.0\/25", + "version":23707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.241.128", + "prefixLen":25, + "network":"193.88.241.128\/25", + "version":23706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.242.0", + "prefixLen":25, + "network":"193.88.242.0\/25", + "version":23705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.242.128", + "prefixLen":25, + "network":"193.88.242.128\/25", + "version":23704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.243.0", + "prefixLen":25, + "network":"193.88.243.0\/25", + "version":23703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.88.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.88.243.128", + "prefixLen":25, + "network":"193.88.243.128\/25", + "version":23702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64776 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.0.0", + "prefixLen":25, + "network":"193.89.0.0\/25", + "version":25109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.0.128", + "prefixLen":25, + "network":"193.89.0.128\/25", + "version":25236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.1.0", + "prefixLen":25, + "network":"193.89.1.0\/25", + "version":25235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.1.128", + "prefixLen":25, + "network":"193.89.1.128\/25", + "version":25234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.2.0", + "prefixLen":25, + "network":"193.89.2.0\/25", + "version":25233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.2.128", + "prefixLen":25, + "network":"193.89.2.128\/25", + "version":25232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.3.0", + "prefixLen":25, + "network":"193.89.3.0\/25", + "version":25231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.3.128", + "prefixLen":25, + "network":"193.89.3.128\/25", + "version":25230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.16.0", + "prefixLen":25, + "network":"193.89.16.0\/25", + "version":25229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.16.128", + "prefixLen":25, + "network":"193.89.16.128\/25", + "version":25228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.17.0", + "prefixLen":25, + "network":"193.89.17.0\/25", + "version":25227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.17.128", + "prefixLen":25, + "network":"193.89.17.128\/25", + "version":25226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.18.0", + "prefixLen":25, + "network":"193.89.18.0\/25", + "version":25225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.18.128", + "prefixLen":25, + "network":"193.89.18.128\/25", + "version":25224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.19.0", + "prefixLen":25, + "network":"193.89.19.0\/25", + "version":25223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.19.128", + "prefixLen":25, + "network":"193.89.19.128\/25", + "version":25222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.32.0", + "prefixLen":25, + "network":"193.89.32.0\/25", + "version":25221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.32.128", + "prefixLen":25, + "network":"193.89.32.128\/25", + "version":25220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.33.0", + "prefixLen":25, + "network":"193.89.33.0\/25", + "version":25219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.33.128", + "prefixLen":25, + "network":"193.89.33.128\/25", + "version":25218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.34.0", + "prefixLen":25, + "network":"193.89.34.0\/25", + "version":25217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.34.128", + "prefixLen":25, + "network":"193.89.34.128\/25", + "version":25216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.35.0", + "prefixLen":25, + "network":"193.89.35.0\/25", + "version":25215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.35.128", + "prefixLen":25, + "network":"193.89.35.128\/25", + "version":25214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.48.0", + "prefixLen":25, + "network":"193.89.48.0\/25", + "version":25213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.48.128", + "prefixLen":25, + "network":"193.89.48.128\/25", + "version":25212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.49.0", + "prefixLen":25, + "network":"193.89.49.0\/25", + "version":25211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.49.128", + "prefixLen":25, + "network":"193.89.49.128\/25", + "version":25210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.50.0", + "prefixLen":25, + "network":"193.89.50.0\/25", + "version":25209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.50.128", + "prefixLen":25, + "network":"193.89.50.128\/25", + "version":25208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.51.0", + "prefixLen":25, + "network":"193.89.51.0\/25", + "version":25207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.51.128", + "prefixLen":25, + "network":"193.89.51.128\/25", + "version":25206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.64.0", + "prefixLen":25, + "network":"193.89.64.0\/25", + "version":25205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.64.128", + "prefixLen":25, + "network":"193.89.64.128\/25", + "version":25204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.65.0", + "prefixLen":25, + "network":"193.89.65.0\/25", + "version":25203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.65.128", + "prefixLen":25, + "network":"193.89.65.128\/25", + "version":25202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.66.0", + "prefixLen":25, + "network":"193.89.66.0\/25", + "version":25201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.66.128", + "prefixLen":25, + "network":"193.89.66.128\/25", + "version":25200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.67.0", + "prefixLen":25, + "network":"193.89.67.0\/25", + "version":25199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.67.128", + "prefixLen":25, + "network":"193.89.67.128\/25", + "version":25198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.80.0", + "prefixLen":25, + "network":"193.89.80.0\/25", + "version":25197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.80.128", + "prefixLen":25, + "network":"193.89.80.128\/25", + "version":25196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.81.0", + "prefixLen":25, + "network":"193.89.81.0\/25", + "version":25195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.81.128", + "prefixLen":25, + "network":"193.89.81.128\/25", + "version":25194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.82.0", + "prefixLen":25, + "network":"193.89.82.0\/25", + "version":25193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.82.128", + "prefixLen":25, + "network":"193.89.82.128\/25", + "version":25192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.83.0", + "prefixLen":25, + "network":"193.89.83.0\/25", + "version":25191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.83.128", + "prefixLen":25, + "network":"193.89.83.128\/25", + "version":25190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.96.0", + "prefixLen":25, + "network":"193.89.96.0\/25", + "version":25189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.96.128", + "prefixLen":25, + "network":"193.89.96.128\/25", + "version":25188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.97.0", + "prefixLen":25, + "network":"193.89.97.0\/25", + "version":25187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.97.128", + "prefixLen":25, + "network":"193.89.97.128\/25", + "version":25186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.98.0", + "prefixLen":25, + "network":"193.89.98.0\/25", + "version":25185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.98.128", + "prefixLen":25, + "network":"193.89.98.128\/25", + "version":25184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.99.0", + "prefixLen":25, + "network":"193.89.99.0\/25", + "version":25183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.99.128", + "prefixLen":25, + "network":"193.89.99.128\/25", + "version":25182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.112.0", + "prefixLen":25, + "network":"193.89.112.0\/25", + "version":25181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.112.128", + "prefixLen":25, + "network":"193.89.112.128\/25", + "version":25180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.113.0", + "prefixLen":25, + "network":"193.89.113.0\/25", + "version":25179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.113.128", + "prefixLen":25, + "network":"193.89.113.128\/25", + "version":25178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.114.0", + "prefixLen":25, + "network":"193.89.114.0\/25", + "version":25177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.114.128", + "prefixLen":25, + "network":"193.89.114.128\/25", + "version":25176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.115.0", + "prefixLen":25, + "network":"193.89.115.0\/25", + "version":25175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.115.128", + "prefixLen":25, + "network":"193.89.115.128\/25", + "version":25174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.128.0", + "prefixLen":25, + "network":"193.89.128.0\/25", + "version":25173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.128.128", + "prefixLen":25, + "network":"193.89.128.128\/25", + "version":25172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.129.0", + "prefixLen":25, + "network":"193.89.129.0\/25", + "version":25171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.129.128", + "prefixLen":25, + "network":"193.89.129.128\/25", + "version":25170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.130.0", + "prefixLen":25, + "network":"193.89.130.0\/25", + "version":25169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.130.128", + "prefixLen":25, + "network":"193.89.130.128\/25", + "version":25168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.131.0", + "prefixLen":25, + "network":"193.89.131.0\/25", + "version":25167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.131.128", + "prefixLen":25, + "network":"193.89.131.128\/25", + "version":25166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.144.0", + "prefixLen":25, + "network":"193.89.144.0\/25", + "version":25165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.144.128", + "prefixLen":25, + "network":"193.89.144.128\/25", + "version":25164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.145.0", + "prefixLen":25, + "network":"193.89.145.0\/25", + "version":25163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.145.128", + "prefixLen":25, + "network":"193.89.145.128\/25", + "version":25162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.146.0", + "prefixLen":25, + "network":"193.89.146.0\/25", + "version":25161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.146.128", + "prefixLen":25, + "network":"193.89.146.128\/25", + "version":25160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.147.0", + "prefixLen":25, + "network":"193.89.147.0\/25", + "version":25159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.147.128", + "prefixLen":25, + "network":"193.89.147.128\/25", + "version":25158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.160.0", + "prefixLen":25, + "network":"193.89.160.0\/25", + "version":25157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.160.128", + "prefixLen":25, + "network":"193.89.160.128\/25", + "version":25156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.161.0", + "prefixLen":25, + "network":"193.89.161.0\/25", + "version":25155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.161.128", + "prefixLen":25, + "network":"193.89.161.128\/25", + "version":25154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.162.0", + "prefixLen":25, + "network":"193.89.162.0\/25", + "version":25153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.162.128", + "prefixLen":25, + "network":"193.89.162.128\/25", + "version":25152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.163.0", + "prefixLen":25, + "network":"193.89.163.0\/25", + "version":25151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.163.128", + "prefixLen":25, + "network":"193.89.163.128\/25", + "version":25150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.176.0", + "prefixLen":25, + "network":"193.89.176.0\/25", + "version":25149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.176.128", + "prefixLen":25, + "network":"193.89.176.128\/25", + "version":25148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.177.0", + "prefixLen":25, + "network":"193.89.177.0\/25", + "version":25147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.177.128", + "prefixLen":25, + "network":"193.89.177.128\/25", + "version":25146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.178.0", + "prefixLen":25, + "network":"193.89.178.0\/25", + "version":25145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.178.128", + "prefixLen":25, + "network":"193.89.178.128\/25", + "version":25144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.179.0", + "prefixLen":25, + "network":"193.89.179.0\/25", + "version":25143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.179.128", + "prefixLen":25, + "network":"193.89.179.128\/25", + "version":25142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.192.0", + "prefixLen":25, + "network":"193.89.192.0\/25", + "version":25141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.192.128", + "prefixLen":25, + "network":"193.89.192.128\/25", + "version":25140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.193.0", + "prefixLen":25, + "network":"193.89.193.0\/25", + "version":25139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.193.128", + "prefixLen":25, + "network":"193.89.193.128\/25", + "version":25138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.194.0", + "prefixLen":25, + "network":"193.89.194.0\/25", + "version":25137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.194.128", + "prefixLen":25, + "network":"193.89.194.128\/25", + "version":25136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.195.0", + "prefixLen":25, + "network":"193.89.195.0\/25", + "version":25135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.195.128", + "prefixLen":25, + "network":"193.89.195.128\/25", + "version":25134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.208.0", + "prefixLen":25, + "network":"193.89.208.0\/25", + "version":25133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.208.128", + "prefixLen":25, + "network":"193.89.208.128\/25", + "version":25132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.209.0", + "prefixLen":25, + "network":"193.89.209.0\/25", + "version":25131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.209.128", + "prefixLen":25, + "network":"193.89.209.128\/25", + "version":25130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.210.0", + "prefixLen":25, + "network":"193.89.210.0\/25", + "version":25129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.210.128", + "prefixLen":25, + "network":"193.89.210.128\/25", + "version":25128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.211.0", + "prefixLen":25, + "network":"193.89.211.0\/25", + "version":25127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.211.128", + "prefixLen":25, + "network":"193.89.211.128\/25", + "version":25126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.224.0", + "prefixLen":25, + "network":"193.89.224.0\/25", + "version":25125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.224.128", + "prefixLen":25, + "network":"193.89.224.128\/25", + "version":25124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.225.0", + "prefixLen":25, + "network":"193.89.225.0\/25", + "version":25123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.225.128", + "prefixLen":25, + "network":"193.89.225.128\/25", + "version":25122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.226.0", + "prefixLen":25, + "network":"193.89.226.0\/25", + "version":25121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.226.128", + "prefixLen":25, + "network":"193.89.226.128\/25", + "version":25120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.227.0", + "prefixLen":25, + "network":"193.89.227.0\/25", + "version":25119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.227.128", + "prefixLen":25, + "network":"193.89.227.128\/25", + "version":25118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.240.0", + "prefixLen":25, + "network":"193.89.240.0\/25", + "version":25117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.240.128", + "prefixLen":25, + "network":"193.89.240.128\/25", + "version":25116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.241.0", + "prefixLen":25, + "network":"193.89.241.0\/25", + "version":25115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.241.128", + "prefixLen":25, + "network":"193.89.241.128\/25", + "version":25114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.242.0", + "prefixLen":25, + "network":"193.89.242.0\/25", + "version":25113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.242.128", + "prefixLen":25, + "network":"193.89.242.128\/25", + "version":25112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.243.0", + "prefixLen":25, + "network":"193.89.243.0\/25", + "version":25111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.89.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.89.243.128", + "prefixLen":25, + "network":"193.89.243.128\/25", + "version":25110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64777 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.0.0", + "prefixLen":25, + "network":"193.90.0.0\/25", + "version":25237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.0.128", + "prefixLen":25, + "network":"193.90.0.128\/25", + "version":25364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.1.0", + "prefixLen":25, + "network":"193.90.1.0\/25", + "version":25363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.1.128", + "prefixLen":25, + "network":"193.90.1.128\/25", + "version":25362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.2.0", + "prefixLen":25, + "network":"193.90.2.0\/25", + "version":25361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.2.128", + "prefixLen":25, + "network":"193.90.2.128\/25", + "version":25360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.3.0", + "prefixLen":25, + "network":"193.90.3.0\/25", + "version":25359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.3.128", + "prefixLen":25, + "network":"193.90.3.128\/25", + "version":25358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.16.0", + "prefixLen":25, + "network":"193.90.16.0\/25", + "version":25357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.16.128", + "prefixLen":25, + "network":"193.90.16.128\/25", + "version":25356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.17.0", + "prefixLen":25, + "network":"193.90.17.0\/25", + "version":25355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.17.128", + "prefixLen":25, + "network":"193.90.17.128\/25", + "version":25354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.18.0", + "prefixLen":25, + "network":"193.90.18.0\/25", + "version":25353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.18.128", + "prefixLen":25, + "network":"193.90.18.128\/25", + "version":25352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.19.0", + "prefixLen":25, + "network":"193.90.19.0\/25", + "version":25351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.19.128", + "prefixLen":25, + "network":"193.90.19.128\/25", + "version":25350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.32.0", + "prefixLen":25, + "network":"193.90.32.0\/25", + "version":25349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.32.128", + "prefixLen":25, + "network":"193.90.32.128\/25", + "version":25348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.33.0", + "prefixLen":25, + "network":"193.90.33.0\/25", + "version":25347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.33.128", + "prefixLen":25, + "network":"193.90.33.128\/25", + "version":25346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.34.0", + "prefixLen":25, + "network":"193.90.34.0\/25", + "version":25345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.34.128", + "prefixLen":25, + "network":"193.90.34.128\/25", + "version":25344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.35.0", + "prefixLen":25, + "network":"193.90.35.0\/25", + "version":25343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.35.128", + "prefixLen":25, + "network":"193.90.35.128\/25", + "version":25342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.48.0", + "prefixLen":25, + "network":"193.90.48.0\/25", + "version":25341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.48.128", + "prefixLen":25, + "network":"193.90.48.128\/25", + "version":25340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.49.0", + "prefixLen":25, + "network":"193.90.49.0\/25", + "version":25339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.49.128", + "prefixLen":25, + "network":"193.90.49.128\/25", + "version":25338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.50.0", + "prefixLen":25, + "network":"193.90.50.0\/25", + "version":25337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.50.128", + "prefixLen":25, + "network":"193.90.50.128\/25", + "version":25336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.51.0", + "prefixLen":25, + "network":"193.90.51.0\/25", + "version":25335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.51.128", + "prefixLen":25, + "network":"193.90.51.128\/25", + "version":25334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.64.0", + "prefixLen":25, + "network":"193.90.64.0\/25", + "version":25333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.64.128", + "prefixLen":25, + "network":"193.90.64.128\/25", + "version":25332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.65.0", + "prefixLen":25, + "network":"193.90.65.0\/25", + "version":25331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.65.128", + "prefixLen":25, + "network":"193.90.65.128\/25", + "version":25330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.66.0", + "prefixLen":25, + "network":"193.90.66.0\/25", + "version":25329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.66.128", + "prefixLen":25, + "network":"193.90.66.128\/25", + "version":25328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.67.0", + "prefixLen":25, + "network":"193.90.67.0\/25", + "version":25327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.67.128", + "prefixLen":25, + "network":"193.90.67.128\/25", + "version":25326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.80.0", + "prefixLen":25, + "network":"193.90.80.0\/25", + "version":25325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.80.128", + "prefixLen":25, + "network":"193.90.80.128\/25", + "version":25324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.81.0", + "prefixLen":25, + "network":"193.90.81.0\/25", + "version":25323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.81.128", + "prefixLen":25, + "network":"193.90.81.128\/25", + "version":25322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.82.0", + "prefixLen":25, + "network":"193.90.82.0\/25", + "version":25321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.82.128", + "prefixLen":25, + "network":"193.90.82.128\/25", + "version":25320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.83.0", + "prefixLen":25, + "network":"193.90.83.0\/25", + "version":25319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.83.128", + "prefixLen":25, + "network":"193.90.83.128\/25", + "version":25318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.96.0", + "prefixLen":25, + "network":"193.90.96.0\/25", + "version":25317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.96.128", + "prefixLen":25, + "network":"193.90.96.128\/25", + "version":25316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.97.0", + "prefixLen":25, + "network":"193.90.97.0\/25", + "version":25315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.97.128", + "prefixLen":25, + "network":"193.90.97.128\/25", + "version":25314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.98.0", + "prefixLen":25, + "network":"193.90.98.0\/25", + "version":25313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.98.128", + "prefixLen":25, + "network":"193.90.98.128\/25", + "version":25312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.99.0", + "prefixLen":25, + "network":"193.90.99.0\/25", + "version":25311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.99.128", + "prefixLen":25, + "network":"193.90.99.128\/25", + "version":25310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.112.0", + "prefixLen":25, + "network":"193.90.112.0\/25", + "version":25309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.112.128", + "prefixLen":25, + "network":"193.90.112.128\/25", + "version":25308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.113.0", + "prefixLen":25, + "network":"193.90.113.0\/25", + "version":25307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.113.128", + "prefixLen":25, + "network":"193.90.113.128\/25", + "version":25306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.114.0", + "prefixLen":25, + "network":"193.90.114.0\/25", + "version":25305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.114.128", + "prefixLen":25, + "network":"193.90.114.128\/25", + "version":25304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.115.0", + "prefixLen":25, + "network":"193.90.115.0\/25", + "version":25303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.115.128", + "prefixLen":25, + "network":"193.90.115.128\/25", + "version":25302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.128.0", + "prefixLen":25, + "network":"193.90.128.0\/25", + "version":25301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.128.128", + "prefixLen":25, + "network":"193.90.128.128\/25", + "version":25300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.129.0", + "prefixLen":25, + "network":"193.90.129.0\/25", + "version":25299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.129.128", + "prefixLen":25, + "network":"193.90.129.128\/25", + "version":25298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.130.0", + "prefixLen":25, + "network":"193.90.130.0\/25", + "version":25297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.130.128", + "prefixLen":25, + "network":"193.90.130.128\/25", + "version":25296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.131.0", + "prefixLen":25, + "network":"193.90.131.0\/25", + "version":25295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.131.128", + "prefixLen":25, + "network":"193.90.131.128\/25", + "version":25294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.144.0", + "prefixLen":25, + "network":"193.90.144.0\/25", + "version":25293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.144.128", + "prefixLen":25, + "network":"193.90.144.128\/25", + "version":25292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.145.0", + "prefixLen":25, + "network":"193.90.145.0\/25", + "version":25291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.145.128", + "prefixLen":25, + "network":"193.90.145.128\/25", + "version":25290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.146.0", + "prefixLen":25, + "network":"193.90.146.0\/25", + "version":25289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.146.128", + "prefixLen":25, + "network":"193.90.146.128\/25", + "version":25288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.147.0", + "prefixLen":25, + "network":"193.90.147.0\/25", + "version":25287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.147.128", + "prefixLen":25, + "network":"193.90.147.128\/25", + "version":25286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.160.0", + "prefixLen":25, + "network":"193.90.160.0\/25", + "version":25285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.160.128", + "prefixLen":25, + "network":"193.90.160.128\/25", + "version":25284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.161.0", + "prefixLen":25, + "network":"193.90.161.0\/25", + "version":25283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.161.128", + "prefixLen":25, + "network":"193.90.161.128\/25", + "version":25282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.162.0", + "prefixLen":25, + "network":"193.90.162.0\/25", + "version":25281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.162.128", + "prefixLen":25, + "network":"193.90.162.128\/25", + "version":25280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.163.0", + "prefixLen":25, + "network":"193.90.163.0\/25", + "version":25279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.163.128", + "prefixLen":25, + "network":"193.90.163.128\/25", + "version":25278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.176.0", + "prefixLen":25, + "network":"193.90.176.0\/25", + "version":25277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.176.128", + "prefixLen":25, + "network":"193.90.176.128\/25", + "version":25276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.177.0", + "prefixLen":25, + "network":"193.90.177.0\/25", + "version":25275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.177.128", + "prefixLen":25, + "network":"193.90.177.128\/25", + "version":25274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.178.0", + "prefixLen":25, + "network":"193.90.178.0\/25", + "version":25273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.178.128", + "prefixLen":25, + "network":"193.90.178.128\/25", + "version":25272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.179.0", + "prefixLen":25, + "network":"193.90.179.0\/25", + "version":25271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.179.128", + "prefixLen":25, + "network":"193.90.179.128\/25", + "version":25270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.192.0", + "prefixLen":25, + "network":"193.90.192.0\/25", + "version":25269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.192.128", + "prefixLen":25, + "network":"193.90.192.128\/25", + "version":25268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.193.0", + "prefixLen":25, + "network":"193.90.193.0\/25", + "version":25267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.193.128", + "prefixLen":25, + "network":"193.90.193.128\/25", + "version":25266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.194.0", + "prefixLen":25, + "network":"193.90.194.0\/25", + "version":25265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.194.128", + "prefixLen":25, + "network":"193.90.194.128\/25", + "version":25264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.195.0", + "prefixLen":25, + "network":"193.90.195.0\/25", + "version":25263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.195.128", + "prefixLen":25, + "network":"193.90.195.128\/25", + "version":25262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.208.0", + "prefixLen":25, + "network":"193.90.208.0\/25", + "version":25261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.208.128", + "prefixLen":25, + "network":"193.90.208.128\/25", + "version":25260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.209.0", + "prefixLen":25, + "network":"193.90.209.0\/25", + "version":25259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.209.128", + "prefixLen":25, + "network":"193.90.209.128\/25", + "version":25258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.210.0", + "prefixLen":25, + "network":"193.90.210.0\/25", + "version":25257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.210.128", + "prefixLen":25, + "network":"193.90.210.128\/25", + "version":25256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.211.0", + "prefixLen":25, + "network":"193.90.211.0\/25", + "version":25255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.211.128", + "prefixLen":25, + "network":"193.90.211.128\/25", + "version":25254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.224.0", + "prefixLen":25, + "network":"193.90.224.0\/25", + "version":25253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.224.128", + "prefixLen":25, + "network":"193.90.224.128\/25", + "version":25252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.225.0", + "prefixLen":25, + "network":"193.90.225.0\/25", + "version":25251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.225.128", + "prefixLen":25, + "network":"193.90.225.128\/25", + "version":25250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.226.0", + "prefixLen":25, + "network":"193.90.226.0\/25", + "version":25249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.226.128", + "prefixLen":25, + "network":"193.90.226.128\/25", + "version":25248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.227.0", + "prefixLen":25, + "network":"193.90.227.0\/25", + "version":25247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.227.128", + "prefixLen":25, + "network":"193.90.227.128\/25", + "version":25246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.240.0", + "prefixLen":25, + "network":"193.90.240.0\/25", + "version":25245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.240.128", + "prefixLen":25, + "network":"193.90.240.128\/25", + "version":25244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.241.0", + "prefixLen":25, + "network":"193.90.241.0\/25", + "version":25243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.241.128", + "prefixLen":25, + "network":"193.90.241.128\/25", + "version":25242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.242.0", + "prefixLen":25, + "network":"193.90.242.0\/25", + "version":25241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.242.128", + "prefixLen":25, + "network":"193.90.242.128\/25", + "version":25240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.243.0", + "prefixLen":25, + "network":"193.90.243.0\/25", + "version":25239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.90.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.90.243.128", + "prefixLen":25, + "network":"193.90.243.128\/25", + "version":25238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64778 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.0.0", + "prefixLen":25, + "network":"193.91.0.0\/25", + "version":25365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.0.128", + "prefixLen":25, + "network":"193.91.0.128\/25", + "version":25492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.1.0", + "prefixLen":25, + "network":"193.91.1.0\/25", + "version":25491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.1.128", + "prefixLen":25, + "network":"193.91.1.128\/25", + "version":25490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.2.0", + "prefixLen":25, + "network":"193.91.2.0\/25", + "version":25489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.2.128", + "prefixLen":25, + "network":"193.91.2.128\/25", + "version":25488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.3.0", + "prefixLen":25, + "network":"193.91.3.0\/25", + "version":25487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.3.128", + "prefixLen":25, + "network":"193.91.3.128\/25", + "version":25486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.16.0", + "prefixLen":25, + "network":"193.91.16.0\/25", + "version":25485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.16.128", + "prefixLen":25, + "network":"193.91.16.128\/25", + "version":25484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.17.0", + "prefixLen":25, + "network":"193.91.17.0\/25", + "version":25483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.17.128", + "prefixLen":25, + "network":"193.91.17.128\/25", + "version":25482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.18.0", + "prefixLen":25, + "network":"193.91.18.0\/25", + "version":25481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.18.128", + "prefixLen":25, + "network":"193.91.18.128\/25", + "version":25480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.19.0", + "prefixLen":25, + "network":"193.91.19.0\/25", + "version":25479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.19.128", + "prefixLen":25, + "network":"193.91.19.128\/25", + "version":25478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.32.0", + "prefixLen":25, + "network":"193.91.32.0\/25", + "version":25477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.32.128", + "prefixLen":25, + "network":"193.91.32.128\/25", + "version":25476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.33.0", + "prefixLen":25, + "network":"193.91.33.0\/25", + "version":25475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.33.128", + "prefixLen":25, + "network":"193.91.33.128\/25", + "version":25474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.34.0", + "prefixLen":25, + "network":"193.91.34.0\/25", + "version":25473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.34.128", + "prefixLen":25, + "network":"193.91.34.128\/25", + "version":25472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.35.0", + "prefixLen":25, + "network":"193.91.35.0\/25", + "version":25471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.35.128", + "prefixLen":25, + "network":"193.91.35.128\/25", + "version":25470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.48.0", + "prefixLen":25, + "network":"193.91.48.0\/25", + "version":25469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.48.128", + "prefixLen":25, + "network":"193.91.48.128\/25", + "version":25468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.49.0", + "prefixLen":25, + "network":"193.91.49.0\/25", + "version":25467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.49.128", + "prefixLen":25, + "network":"193.91.49.128\/25", + "version":25466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.50.0", + "prefixLen":25, + "network":"193.91.50.0\/25", + "version":25465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.50.128", + "prefixLen":25, + "network":"193.91.50.128\/25", + "version":25464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.51.0", + "prefixLen":25, + "network":"193.91.51.0\/25", + "version":25463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.51.128", + "prefixLen":25, + "network":"193.91.51.128\/25", + "version":25462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.64.0", + "prefixLen":25, + "network":"193.91.64.0\/25", + "version":25461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.64.128", + "prefixLen":25, + "network":"193.91.64.128\/25", + "version":25460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.65.0", + "prefixLen":25, + "network":"193.91.65.0\/25", + "version":25459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.65.128", + "prefixLen":25, + "network":"193.91.65.128\/25", + "version":25458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.66.0", + "prefixLen":25, + "network":"193.91.66.0\/25", + "version":25457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.66.128", + "prefixLen":25, + "network":"193.91.66.128\/25", + "version":25456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.67.0", + "prefixLen":25, + "network":"193.91.67.0\/25", + "version":25455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.67.128", + "prefixLen":25, + "network":"193.91.67.128\/25", + "version":25454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.80.0", + "prefixLen":25, + "network":"193.91.80.0\/25", + "version":25453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.80.128", + "prefixLen":25, + "network":"193.91.80.128\/25", + "version":25452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.81.0", + "prefixLen":25, + "network":"193.91.81.0\/25", + "version":25451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.81.128", + "prefixLen":25, + "network":"193.91.81.128\/25", + "version":25450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.82.0", + "prefixLen":25, + "network":"193.91.82.0\/25", + "version":25449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.82.128", + "prefixLen":25, + "network":"193.91.82.128\/25", + "version":25448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.83.0", + "prefixLen":25, + "network":"193.91.83.0\/25", + "version":25447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.83.128", + "prefixLen":25, + "network":"193.91.83.128\/25", + "version":25446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.96.0", + "prefixLen":25, + "network":"193.91.96.0\/25", + "version":25445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.96.128", + "prefixLen":25, + "network":"193.91.96.128\/25", + "version":25444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.97.0", + "prefixLen":25, + "network":"193.91.97.0\/25", + "version":25443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.97.128", + "prefixLen":25, + "network":"193.91.97.128\/25", + "version":25442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.98.0", + "prefixLen":25, + "network":"193.91.98.0\/25", + "version":25441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.98.128", + "prefixLen":25, + "network":"193.91.98.128\/25", + "version":25440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.99.0", + "prefixLen":25, + "network":"193.91.99.0\/25", + "version":25439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.99.128", + "prefixLen":25, + "network":"193.91.99.128\/25", + "version":25438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.112.0", + "prefixLen":25, + "network":"193.91.112.0\/25", + "version":25437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.112.128", + "prefixLen":25, + "network":"193.91.112.128\/25", + "version":25436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.113.0", + "prefixLen":25, + "network":"193.91.113.0\/25", + "version":25435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.113.128", + "prefixLen":25, + "network":"193.91.113.128\/25", + "version":25434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.114.0", + "prefixLen":25, + "network":"193.91.114.0\/25", + "version":25433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.114.128", + "prefixLen":25, + "network":"193.91.114.128\/25", + "version":25432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.115.0", + "prefixLen":25, + "network":"193.91.115.0\/25", + "version":25431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.115.128", + "prefixLen":25, + "network":"193.91.115.128\/25", + "version":25430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.128.0", + "prefixLen":25, + "network":"193.91.128.0\/25", + "version":25429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.128.128", + "prefixLen":25, + "network":"193.91.128.128\/25", + "version":25428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.129.0", + "prefixLen":25, + "network":"193.91.129.0\/25", + "version":25427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.129.128", + "prefixLen":25, + "network":"193.91.129.128\/25", + "version":25426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.130.0", + "prefixLen":25, + "network":"193.91.130.0\/25", + "version":25425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.130.128", + "prefixLen":25, + "network":"193.91.130.128\/25", + "version":25424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.131.0", + "prefixLen":25, + "network":"193.91.131.0\/25", + "version":25423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.131.128", + "prefixLen":25, + "network":"193.91.131.128\/25", + "version":25422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.144.0", + "prefixLen":25, + "network":"193.91.144.0\/25", + "version":25421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.144.128", + "prefixLen":25, + "network":"193.91.144.128\/25", + "version":25420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.145.0", + "prefixLen":25, + "network":"193.91.145.0\/25", + "version":25419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.145.128", + "prefixLen":25, + "network":"193.91.145.128\/25", + "version":25418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.146.0", + "prefixLen":25, + "network":"193.91.146.0\/25", + "version":25417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.146.128", + "prefixLen":25, + "network":"193.91.146.128\/25", + "version":25416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.147.0", + "prefixLen":25, + "network":"193.91.147.0\/25", + "version":25415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.147.128", + "prefixLen":25, + "network":"193.91.147.128\/25", + "version":25414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.160.0", + "prefixLen":25, + "network":"193.91.160.0\/25", + "version":25413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.160.128", + "prefixLen":25, + "network":"193.91.160.128\/25", + "version":25412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.161.0", + "prefixLen":25, + "network":"193.91.161.0\/25", + "version":25411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.161.128", + "prefixLen":25, + "network":"193.91.161.128\/25", + "version":25410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.162.0", + "prefixLen":25, + "network":"193.91.162.0\/25", + "version":25409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.162.128", + "prefixLen":25, + "network":"193.91.162.128\/25", + "version":25408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.163.0", + "prefixLen":25, + "network":"193.91.163.0\/25", + "version":25407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.163.128", + "prefixLen":25, + "network":"193.91.163.128\/25", + "version":25406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.176.0", + "prefixLen":25, + "network":"193.91.176.0\/25", + "version":25405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.176.128", + "prefixLen":25, + "network":"193.91.176.128\/25", + "version":25404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.177.0", + "prefixLen":25, + "network":"193.91.177.0\/25", + "version":25403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.177.128", + "prefixLen":25, + "network":"193.91.177.128\/25", + "version":25402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.178.0", + "prefixLen":25, + "network":"193.91.178.0\/25", + "version":25401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.178.128", + "prefixLen":25, + "network":"193.91.178.128\/25", + "version":25400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.179.0", + "prefixLen":25, + "network":"193.91.179.0\/25", + "version":25399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.179.128", + "prefixLen":25, + "network":"193.91.179.128\/25", + "version":25398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.192.0", + "prefixLen":25, + "network":"193.91.192.0\/25", + "version":25397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.192.128", + "prefixLen":25, + "network":"193.91.192.128\/25", + "version":25396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.193.0", + "prefixLen":25, + "network":"193.91.193.0\/25", + "version":25395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.193.128", + "prefixLen":25, + "network":"193.91.193.128\/25", + "version":25394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.194.0", + "prefixLen":25, + "network":"193.91.194.0\/25", + "version":25393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.194.128", + "prefixLen":25, + "network":"193.91.194.128\/25", + "version":25392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.195.0", + "prefixLen":25, + "network":"193.91.195.0\/25", + "version":25391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.195.128", + "prefixLen":25, + "network":"193.91.195.128\/25", + "version":25390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.208.0", + "prefixLen":25, + "network":"193.91.208.0\/25", + "version":25389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.208.128", + "prefixLen":25, + "network":"193.91.208.128\/25", + "version":25388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.209.0", + "prefixLen":25, + "network":"193.91.209.0\/25", + "version":25387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.209.128", + "prefixLen":25, + "network":"193.91.209.128\/25", + "version":25386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.210.0", + "prefixLen":25, + "network":"193.91.210.0\/25", + "version":25385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.210.128", + "prefixLen":25, + "network":"193.91.210.128\/25", + "version":25384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.211.0", + "prefixLen":25, + "network":"193.91.211.0\/25", + "version":25383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.211.128", + "prefixLen":25, + "network":"193.91.211.128\/25", + "version":25382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.224.0", + "prefixLen":25, + "network":"193.91.224.0\/25", + "version":25381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.224.128", + "prefixLen":25, + "network":"193.91.224.128\/25", + "version":25380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.225.0", + "prefixLen":25, + "network":"193.91.225.0\/25", + "version":25379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.225.128", + "prefixLen":25, + "network":"193.91.225.128\/25", + "version":25378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.226.0", + "prefixLen":25, + "network":"193.91.226.0\/25", + "version":25377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.226.128", + "prefixLen":25, + "network":"193.91.226.128\/25", + "version":25376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.227.0", + "prefixLen":25, + "network":"193.91.227.0\/25", + "version":25375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.227.128", + "prefixLen":25, + "network":"193.91.227.128\/25", + "version":25374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.240.0", + "prefixLen":25, + "network":"193.91.240.0\/25", + "version":25373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.240.128", + "prefixLen":25, + "network":"193.91.240.128\/25", + "version":25372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.241.0", + "prefixLen":25, + "network":"193.91.241.0\/25", + "version":25371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.241.128", + "prefixLen":25, + "network":"193.91.241.128\/25", + "version":25370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.242.0", + "prefixLen":25, + "network":"193.91.242.0\/25", + "version":25369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.242.128", + "prefixLen":25, + "network":"193.91.242.128\/25", + "version":25368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.243.0", + "prefixLen":25, + "network":"193.91.243.0\/25", + "version":25367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.91.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.91.243.128", + "prefixLen":25, + "network":"193.91.243.128\/25", + "version":25366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64779 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.0.0", + "prefixLen":25, + "network":"193.92.0.0\/25", + "version":25493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.0.128", + "prefixLen":25, + "network":"193.92.0.128\/25", + "version":25620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.1.0", + "prefixLen":25, + "network":"193.92.1.0\/25", + "version":25619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.1.128", + "prefixLen":25, + "network":"193.92.1.128\/25", + "version":25618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.2.0", + "prefixLen":25, + "network":"193.92.2.0\/25", + "version":25617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.2.128", + "prefixLen":25, + "network":"193.92.2.128\/25", + "version":25616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.3.0", + "prefixLen":25, + "network":"193.92.3.0\/25", + "version":25615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.3.128", + "prefixLen":25, + "network":"193.92.3.128\/25", + "version":25614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.16.0", + "prefixLen":25, + "network":"193.92.16.0\/25", + "version":25613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.16.128", + "prefixLen":25, + "network":"193.92.16.128\/25", + "version":25612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.17.0", + "prefixLen":25, + "network":"193.92.17.0\/25", + "version":25611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.17.128", + "prefixLen":25, + "network":"193.92.17.128\/25", + "version":25610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.18.0", + "prefixLen":25, + "network":"193.92.18.0\/25", + "version":25609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.18.128", + "prefixLen":25, + "network":"193.92.18.128\/25", + "version":25608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.19.0", + "prefixLen":25, + "network":"193.92.19.0\/25", + "version":25607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.19.128", + "prefixLen":25, + "network":"193.92.19.128\/25", + "version":25606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.32.0", + "prefixLen":25, + "network":"193.92.32.0\/25", + "version":25605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.32.128", + "prefixLen":25, + "network":"193.92.32.128\/25", + "version":25604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.33.0", + "prefixLen":25, + "network":"193.92.33.0\/25", + "version":25603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.33.128", + "prefixLen":25, + "network":"193.92.33.128\/25", + "version":25602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.34.0", + "prefixLen":25, + "network":"193.92.34.0\/25", + "version":25601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.34.128", + "prefixLen":25, + "network":"193.92.34.128\/25", + "version":25600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.35.0", + "prefixLen":25, + "network":"193.92.35.0\/25", + "version":25599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.35.128", + "prefixLen":25, + "network":"193.92.35.128\/25", + "version":25598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.48.0", + "prefixLen":25, + "network":"193.92.48.0\/25", + "version":25597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.48.128", + "prefixLen":25, + "network":"193.92.48.128\/25", + "version":25596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.49.0", + "prefixLen":25, + "network":"193.92.49.0\/25", + "version":25595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.49.128", + "prefixLen":25, + "network":"193.92.49.128\/25", + "version":25594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.50.0", + "prefixLen":25, + "network":"193.92.50.0\/25", + "version":25593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.50.128", + "prefixLen":25, + "network":"193.92.50.128\/25", + "version":25592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.51.0", + "prefixLen":25, + "network":"193.92.51.0\/25", + "version":25591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.51.128", + "prefixLen":25, + "network":"193.92.51.128\/25", + "version":25590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.64.0", + "prefixLen":25, + "network":"193.92.64.0\/25", + "version":25589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.64.128", + "prefixLen":25, + "network":"193.92.64.128\/25", + "version":25588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.65.0", + "prefixLen":25, + "network":"193.92.65.0\/25", + "version":25587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.65.128", + "prefixLen":25, + "network":"193.92.65.128\/25", + "version":25586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.66.0", + "prefixLen":25, + "network":"193.92.66.0\/25", + "version":25585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.66.128", + "prefixLen":25, + "network":"193.92.66.128\/25", + "version":25584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.67.0", + "prefixLen":25, + "network":"193.92.67.0\/25", + "version":25583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.67.128", + "prefixLen":25, + "network":"193.92.67.128\/25", + "version":25582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.80.0", + "prefixLen":25, + "network":"193.92.80.0\/25", + "version":25581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.80.128", + "prefixLen":25, + "network":"193.92.80.128\/25", + "version":25580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.81.0", + "prefixLen":25, + "network":"193.92.81.0\/25", + "version":25579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.81.128", + "prefixLen":25, + "network":"193.92.81.128\/25", + "version":25578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.82.0", + "prefixLen":25, + "network":"193.92.82.0\/25", + "version":25577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.82.128", + "prefixLen":25, + "network":"193.92.82.128\/25", + "version":25576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.83.0", + "prefixLen":25, + "network":"193.92.83.0\/25", + "version":25575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.83.128", + "prefixLen":25, + "network":"193.92.83.128\/25", + "version":25574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.96.0", + "prefixLen":25, + "network":"193.92.96.0\/25", + "version":25573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.96.128", + "prefixLen":25, + "network":"193.92.96.128\/25", + "version":25572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.97.0", + "prefixLen":25, + "network":"193.92.97.0\/25", + "version":25571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.97.128", + "prefixLen":25, + "network":"193.92.97.128\/25", + "version":25570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.98.0", + "prefixLen":25, + "network":"193.92.98.0\/25", + "version":25569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.98.128", + "prefixLen":25, + "network":"193.92.98.128\/25", + "version":25568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.99.0", + "prefixLen":25, + "network":"193.92.99.0\/25", + "version":25567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.99.128", + "prefixLen":25, + "network":"193.92.99.128\/25", + "version":25566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.112.0", + "prefixLen":25, + "network":"193.92.112.0\/25", + "version":25565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.112.128", + "prefixLen":25, + "network":"193.92.112.128\/25", + "version":25564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.113.0", + "prefixLen":25, + "network":"193.92.113.0\/25", + "version":25563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.113.128", + "prefixLen":25, + "network":"193.92.113.128\/25", + "version":25562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.114.0", + "prefixLen":25, + "network":"193.92.114.0\/25", + "version":25561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.114.128", + "prefixLen":25, + "network":"193.92.114.128\/25", + "version":25560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.115.0", + "prefixLen":25, + "network":"193.92.115.0\/25", + "version":25559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.115.128", + "prefixLen":25, + "network":"193.92.115.128\/25", + "version":25558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.128.0", + "prefixLen":25, + "network":"193.92.128.0\/25", + "version":25557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.128.128", + "prefixLen":25, + "network":"193.92.128.128\/25", + "version":25556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.129.0", + "prefixLen":25, + "network":"193.92.129.0\/25", + "version":25555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.129.128", + "prefixLen":25, + "network":"193.92.129.128\/25", + "version":25554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.130.0", + "prefixLen":25, + "network":"193.92.130.0\/25", + "version":25553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.130.128", + "prefixLen":25, + "network":"193.92.130.128\/25", + "version":25552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.131.0", + "prefixLen":25, + "network":"193.92.131.0\/25", + "version":25551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.131.128", + "prefixLen":25, + "network":"193.92.131.128\/25", + "version":25550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.144.0", + "prefixLen":25, + "network":"193.92.144.0\/25", + "version":25549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.144.128", + "prefixLen":25, + "network":"193.92.144.128\/25", + "version":25548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.145.0", + "prefixLen":25, + "network":"193.92.145.0\/25", + "version":25547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.145.128", + "prefixLen":25, + "network":"193.92.145.128\/25", + "version":25546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.146.0", + "prefixLen":25, + "network":"193.92.146.0\/25", + "version":25545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.146.128", + "prefixLen":25, + "network":"193.92.146.128\/25", + "version":25544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.147.0", + "prefixLen":25, + "network":"193.92.147.0\/25", + "version":25543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.147.128", + "prefixLen":25, + "network":"193.92.147.128\/25", + "version":25542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.160.0", + "prefixLen":25, + "network":"193.92.160.0\/25", + "version":25541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.160.128", + "prefixLen":25, + "network":"193.92.160.128\/25", + "version":25540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.161.0", + "prefixLen":25, + "network":"193.92.161.0\/25", + "version":25539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.161.128", + "prefixLen":25, + "network":"193.92.161.128\/25", + "version":25538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.162.0", + "prefixLen":25, + "network":"193.92.162.0\/25", + "version":25537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.162.128", + "prefixLen":25, + "network":"193.92.162.128\/25", + "version":25536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.163.0", + "prefixLen":25, + "network":"193.92.163.0\/25", + "version":25535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.163.128", + "prefixLen":25, + "network":"193.92.163.128\/25", + "version":25534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.176.0", + "prefixLen":25, + "network":"193.92.176.0\/25", + "version":25533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.176.128", + "prefixLen":25, + "network":"193.92.176.128\/25", + "version":25532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.177.0", + "prefixLen":25, + "network":"193.92.177.0\/25", + "version":25531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.177.128", + "prefixLen":25, + "network":"193.92.177.128\/25", + "version":25530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.178.0", + "prefixLen":25, + "network":"193.92.178.0\/25", + "version":25529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.178.128", + "prefixLen":25, + "network":"193.92.178.128\/25", + "version":25528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.179.0", + "prefixLen":25, + "network":"193.92.179.0\/25", + "version":25527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.179.128", + "prefixLen":25, + "network":"193.92.179.128\/25", + "version":25526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.192.0", + "prefixLen":25, + "network":"193.92.192.0\/25", + "version":25525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.192.128", + "prefixLen":25, + "network":"193.92.192.128\/25", + "version":25524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.193.0", + "prefixLen":25, + "network":"193.92.193.0\/25", + "version":25523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.193.128", + "prefixLen":25, + "network":"193.92.193.128\/25", + "version":25522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.194.0", + "prefixLen":25, + "network":"193.92.194.0\/25", + "version":25521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.194.128", + "prefixLen":25, + "network":"193.92.194.128\/25", + "version":25520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.195.0", + "prefixLen":25, + "network":"193.92.195.0\/25", + "version":25519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.195.128", + "prefixLen":25, + "network":"193.92.195.128\/25", + "version":25518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.208.0", + "prefixLen":25, + "network":"193.92.208.0\/25", + "version":25517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.208.128", + "prefixLen":25, + "network":"193.92.208.128\/25", + "version":25516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.209.0", + "prefixLen":25, + "network":"193.92.209.0\/25", + "version":25515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.209.128", + "prefixLen":25, + "network":"193.92.209.128\/25", + "version":25514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.210.0", + "prefixLen":25, + "network":"193.92.210.0\/25", + "version":25513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.210.128", + "prefixLen":25, + "network":"193.92.210.128\/25", + "version":25512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.211.0", + "prefixLen":25, + "network":"193.92.211.0\/25", + "version":25511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.211.128", + "prefixLen":25, + "network":"193.92.211.128\/25", + "version":25510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.224.0", + "prefixLen":25, + "network":"193.92.224.0\/25", + "version":25509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.224.128", + "prefixLen":25, + "network":"193.92.224.128\/25", + "version":25508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.225.0", + "prefixLen":25, + "network":"193.92.225.0\/25", + "version":25507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.225.128", + "prefixLen":25, + "network":"193.92.225.128\/25", + "version":25506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.226.0", + "prefixLen":25, + "network":"193.92.226.0\/25", + "version":25505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.226.128", + "prefixLen":25, + "network":"193.92.226.128\/25", + "version":25504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.227.0", + "prefixLen":25, + "network":"193.92.227.0\/25", + "version":25503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.227.128", + "prefixLen":25, + "network":"193.92.227.128\/25", + "version":25502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.240.0", + "prefixLen":25, + "network":"193.92.240.0\/25", + "version":25501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.240.128", + "prefixLen":25, + "network":"193.92.240.128\/25", + "version":25500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.241.0", + "prefixLen":25, + "network":"193.92.241.0\/25", + "version":25499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.241.128", + "prefixLen":25, + "network":"193.92.241.128\/25", + "version":25498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.242.0", + "prefixLen":25, + "network":"193.92.242.0\/25", + "version":25497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.242.128", + "prefixLen":25, + "network":"193.92.242.128\/25", + "version":25496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.243.0", + "prefixLen":25, + "network":"193.92.243.0\/25", + "version":25495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.92.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.92.243.128", + "prefixLen":25, + "network":"193.92.243.128\/25", + "version":25494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64780 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.0.0", + "prefixLen":25, + "network":"193.93.0.0\/25", + "version":25621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.0.128", + "prefixLen":25, + "network":"193.93.0.128\/25", + "version":25748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.1.0", + "prefixLen":25, + "network":"193.93.1.0\/25", + "version":25747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.1.128", + "prefixLen":25, + "network":"193.93.1.128\/25", + "version":25746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.2.0", + "prefixLen":25, + "network":"193.93.2.0\/25", + "version":25745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.2.128", + "prefixLen":25, + "network":"193.93.2.128\/25", + "version":25744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.3.0", + "prefixLen":25, + "network":"193.93.3.0\/25", + "version":25743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.3.128", + "prefixLen":25, + "network":"193.93.3.128\/25", + "version":25742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.16.0", + "prefixLen":25, + "network":"193.93.16.0\/25", + "version":25741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.16.128", + "prefixLen":25, + "network":"193.93.16.128\/25", + "version":25740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.17.0", + "prefixLen":25, + "network":"193.93.17.0\/25", + "version":25739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.17.128", + "prefixLen":25, + "network":"193.93.17.128\/25", + "version":25738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.18.0", + "prefixLen":25, + "network":"193.93.18.0\/25", + "version":25737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.18.128", + "prefixLen":25, + "network":"193.93.18.128\/25", + "version":25736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.19.0", + "prefixLen":25, + "network":"193.93.19.0\/25", + "version":25735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.19.128", + "prefixLen":25, + "network":"193.93.19.128\/25", + "version":25734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.32.0", + "prefixLen":25, + "network":"193.93.32.0\/25", + "version":25733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.32.128", + "prefixLen":25, + "network":"193.93.32.128\/25", + "version":25732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.33.0", + "prefixLen":25, + "network":"193.93.33.0\/25", + "version":25731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.33.128", + "prefixLen":25, + "network":"193.93.33.128\/25", + "version":25730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.34.0", + "prefixLen":25, + "network":"193.93.34.0\/25", + "version":25729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.34.128", + "prefixLen":25, + "network":"193.93.34.128\/25", + "version":25728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.35.0", + "prefixLen":25, + "network":"193.93.35.0\/25", + "version":25727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.35.128", + "prefixLen":25, + "network":"193.93.35.128\/25", + "version":25726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.48.0", + "prefixLen":25, + "network":"193.93.48.0\/25", + "version":25725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.48.128", + "prefixLen":25, + "network":"193.93.48.128\/25", + "version":25724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.49.0", + "prefixLen":25, + "network":"193.93.49.0\/25", + "version":25723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.49.128", + "prefixLen":25, + "network":"193.93.49.128\/25", + "version":25722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.50.0", + "prefixLen":25, + "network":"193.93.50.0\/25", + "version":25721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.50.128", + "prefixLen":25, + "network":"193.93.50.128\/25", + "version":25720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.51.0", + "prefixLen":25, + "network":"193.93.51.0\/25", + "version":25719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.51.128", + "prefixLen":25, + "network":"193.93.51.128\/25", + "version":25718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.64.0", + "prefixLen":25, + "network":"193.93.64.0\/25", + "version":25717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.64.128", + "prefixLen":25, + "network":"193.93.64.128\/25", + "version":25716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.65.0", + "prefixLen":25, + "network":"193.93.65.0\/25", + "version":25715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.65.128", + "prefixLen":25, + "network":"193.93.65.128\/25", + "version":25714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.66.0", + "prefixLen":25, + "network":"193.93.66.0\/25", + "version":25713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.66.128", + "prefixLen":25, + "network":"193.93.66.128\/25", + "version":25712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.67.0", + "prefixLen":25, + "network":"193.93.67.0\/25", + "version":25711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.67.128", + "prefixLen":25, + "network":"193.93.67.128\/25", + "version":25710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.80.0", + "prefixLen":25, + "network":"193.93.80.0\/25", + "version":25709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.80.128", + "prefixLen":25, + "network":"193.93.80.128\/25", + "version":25708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.81.0", + "prefixLen":25, + "network":"193.93.81.0\/25", + "version":25707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.81.128", + "prefixLen":25, + "network":"193.93.81.128\/25", + "version":25706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.82.0", + "prefixLen":25, + "network":"193.93.82.0\/25", + "version":25705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.82.128", + "prefixLen":25, + "network":"193.93.82.128\/25", + "version":25704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.83.0", + "prefixLen":25, + "network":"193.93.83.0\/25", + "version":25703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.83.128", + "prefixLen":25, + "network":"193.93.83.128\/25", + "version":25702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.96.0", + "prefixLen":25, + "network":"193.93.96.0\/25", + "version":25701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.96.128", + "prefixLen":25, + "network":"193.93.96.128\/25", + "version":25700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.97.0", + "prefixLen":25, + "network":"193.93.97.0\/25", + "version":25699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.97.128", + "prefixLen":25, + "network":"193.93.97.128\/25", + "version":25698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.98.0", + "prefixLen":25, + "network":"193.93.98.0\/25", + "version":25697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.98.128", + "prefixLen":25, + "network":"193.93.98.128\/25", + "version":25696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.99.0", + "prefixLen":25, + "network":"193.93.99.0\/25", + "version":25695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.99.128", + "prefixLen":25, + "network":"193.93.99.128\/25", + "version":25694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.112.0", + "prefixLen":25, + "network":"193.93.112.0\/25", + "version":25693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.112.128", + "prefixLen":25, + "network":"193.93.112.128\/25", + "version":25692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.113.0", + "prefixLen":25, + "network":"193.93.113.0\/25", + "version":25691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.113.128", + "prefixLen":25, + "network":"193.93.113.128\/25", + "version":25690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.114.0", + "prefixLen":25, + "network":"193.93.114.0\/25", + "version":25689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.114.128", + "prefixLen":25, + "network":"193.93.114.128\/25", + "version":25688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.115.0", + "prefixLen":25, + "network":"193.93.115.0\/25", + "version":25687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.115.128", + "prefixLen":25, + "network":"193.93.115.128\/25", + "version":25686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.128.0", + "prefixLen":25, + "network":"193.93.128.0\/25", + "version":25685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.128.128", + "prefixLen":25, + "network":"193.93.128.128\/25", + "version":25684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.129.0", + "prefixLen":25, + "network":"193.93.129.0\/25", + "version":25683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.129.128", + "prefixLen":25, + "network":"193.93.129.128\/25", + "version":25682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.130.0", + "prefixLen":25, + "network":"193.93.130.0\/25", + "version":25681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.130.128", + "prefixLen":25, + "network":"193.93.130.128\/25", + "version":25680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.131.0", + "prefixLen":25, + "network":"193.93.131.0\/25", + "version":25679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.131.128", + "prefixLen":25, + "network":"193.93.131.128\/25", + "version":25678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.144.0", + "prefixLen":25, + "network":"193.93.144.0\/25", + "version":25677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.144.128", + "prefixLen":25, + "network":"193.93.144.128\/25", + "version":25676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.145.0", + "prefixLen":25, + "network":"193.93.145.0\/25", + "version":25675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.145.128", + "prefixLen":25, + "network":"193.93.145.128\/25", + "version":25674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.146.0", + "prefixLen":25, + "network":"193.93.146.0\/25", + "version":25673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.146.128", + "prefixLen":25, + "network":"193.93.146.128\/25", + "version":25672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.147.0", + "prefixLen":25, + "network":"193.93.147.0\/25", + "version":25671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.147.128", + "prefixLen":25, + "network":"193.93.147.128\/25", + "version":25670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.160.0", + "prefixLen":25, + "network":"193.93.160.0\/25", + "version":25669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.160.128", + "prefixLen":25, + "network":"193.93.160.128\/25", + "version":25668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.161.0", + "prefixLen":25, + "network":"193.93.161.0\/25", + "version":25667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.161.128", + "prefixLen":25, + "network":"193.93.161.128\/25", + "version":25666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.162.0", + "prefixLen":25, + "network":"193.93.162.0\/25", + "version":25665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.162.128", + "prefixLen":25, + "network":"193.93.162.128\/25", + "version":25664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.163.0", + "prefixLen":25, + "network":"193.93.163.0\/25", + "version":25663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.163.128", + "prefixLen":25, + "network":"193.93.163.128\/25", + "version":25662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.176.0", + "prefixLen":25, + "network":"193.93.176.0\/25", + "version":25661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.176.128", + "prefixLen":25, + "network":"193.93.176.128\/25", + "version":25660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.177.0", + "prefixLen":25, + "network":"193.93.177.0\/25", + "version":25659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.177.128", + "prefixLen":25, + "network":"193.93.177.128\/25", + "version":25658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.178.0", + "prefixLen":25, + "network":"193.93.178.0\/25", + "version":25657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.178.128", + "prefixLen":25, + "network":"193.93.178.128\/25", + "version":25656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.179.0", + "prefixLen":25, + "network":"193.93.179.0\/25", + "version":25655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.179.128", + "prefixLen":25, + "network":"193.93.179.128\/25", + "version":25654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.192.0", + "prefixLen":25, + "network":"193.93.192.0\/25", + "version":25653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.192.128", + "prefixLen":25, + "network":"193.93.192.128\/25", + "version":25652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.193.0", + "prefixLen":25, + "network":"193.93.193.0\/25", + "version":25651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.193.128", + "prefixLen":25, + "network":"193.93.193.128\/25", + "version":25650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.194.0", + "prefixLen":25, + "network":"193.93.194.0\/25", + "version":25649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.194.128", + "prefixLen":25, + "network":"193.93.194.128\/25", + "version":25648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.195.0", + "prefixLen":25, + "network":"193.93.195.0\/25", + "version":25647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.195.128", + "prefixLen":25, + "network":"193.93.195.128\/25", + "version":25646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.208.0", + "prefixLen":25, + "network":"193.93.208.0\/25", + "version":25645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.208.128", + "prefixLen":25, + "network":"193.93.208.128\/25", + "version":25644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.209.0", + "prefixLen":25, + "network":"193.93.209.0\/25", + "version":25643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.209.128", + "prefixLen":25, + "network":"193.93.209.128\/25", + "version":25642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.210.0", + "prefixLen":25, + "network":"193.93.210.0\/25", + "version":25641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.210.128", + "prefixLen":25, + "network":"193.93.210.128\/25", + "version":25640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.211.0", + "prefixLen":25, + "network":"193.93.211.0\/25", + "version":25639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.211.128", + "prefixLen":25, + "network":"193.93.211.128\/25", + "version":25638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.224.0", + "prefixLen":25, + "network":"193.93.224.0\/25", + "version":25637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.224.128", + "prefixLen":25, + "network":"193.93.224.128\/25", + "version":25636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.225.0", + "prefixLen":25, + "network":"193.93.225.0\/25", + "version":25635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.225.128", + "prefixLen":25, + "network":"193.93.225.128\/25", + "version":25634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.226.0", + "prefixLen":25, + "network":"193.93.226.0\/25", + "version":25633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.226.128", + "prefixLen":25, + "network":"193.93.226.128\/25", + "version":25632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.227.0", + "prefixLen":25, + "network":"193.93.227.0\/25", + "version":25631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.227.128", + "prefixLen":25, + "network":"193.93.227.128\/25", + "version":25630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.240.0", + "prefixLen":25, + "network":"193.93.240.0\/25", + "version":25629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.240.128", + "prefixLen":25, + "network":"193.93.240.128\/25", + "version":25628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.241.0", + "prefixLen":25, + "network":"193.93.241.0\/25", + "version":25627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.241.128", + "prefixLen":25, + "network":"193.93.241.128\/25", + "version":25626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.242.0", + "prefixLen":25, + "network":"193.93.242.0\/25", + "version":25625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.242.128", + "prefixLen":25, + "network":"193.93.242.128\/25", + "version":25624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.243.0", + "prefixLen":25, + "network":"193.93.243.0\/25", + "version":25623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.93.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.93.243.128", + "prefixLen":25, + "network":"193.93.243.128\/25", + "version":25622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64781 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.0.0", + "prefixLen":25, + "network":"193.94.0.0\/25", + "version":25749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.0.128", + "prefixLen":25, + "network":"193.94.0.128\/25", + "version":25876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.1.0", + "prefixLen":25, + "network":"193.94.1.0\/25", + "version":25875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.1.128", + "prefixLen":25, + "network":"193.94.1.128\/25", + "version":25874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.2.0", + "prefixLen":25, + "network":"193.94.2.0\/25", + "version":25873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.2.128", + "prefixLen":25, + "network":"193.94.2.128\/25", + "version":25872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.3.0", + "prefixLen":25, + "network":"193.94.3.0\/25", + "version":25871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.3.128", + "prefixLen":25, + "network":"193.94.3.128\/25", + "version":25870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.16.0", + "prefixLen":25, + "network":"193.94.16.0\/25", + "version":25869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.16.128", + "prefixLen":25, + "network":"193.94.16.128\/25", + "version":25868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.17.0", + "prefixLen":25, + "network":"193.94.17.0\/25", + "version":25867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.17.128", + "prefixLen":25, + "network":"193.94.17.128\/25", + "version":25866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.18.0", + "prefixLen":25, + "network":"193.94.18.0\/25", + "version":25865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.18.128", + "prefixLen":25, + "network":"193.94.18.128\/25", + "version":25864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.19.0", + "prefixLen":25, + "network":"193.94.19.0\/25", + "version":25863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.19.128", + "prefixLen":25, + "network":"193.94.19.128\/25", + "version":25862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.32.0", + "prefixLen":25, + "network":"193.94.32.0\/25", + "version":25861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.32.128", + "prefixLen":25, + "network":"193.94.32.128\/25", + "version":25860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.33.0", + "prefixLen":25, + "network":"193.94.33.0\/25", + "version":25859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.33.128", + "prefixLen":25, + "network":"193.94.33.128\/25", + "version":25858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.34.0", + "prefixLen":25, + "network":"193.94.34.0\/25", + "version":25857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.34.128", + "prefixLen":25, + "network":"193.94.34.128\/25", + "version":25856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.35.0", + "prefixLen":25, + "network":"193.94.35.0\/25", + "version":25855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.35.128", + "prefixLen":25, + "network":"193.94.35.128\/25", + "version":25854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.48.0", + "prefixLen":25, + "network":"193.94.48.0\/25", + "version":25853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.48.128", + "prefixLen":25, + "network":"193.94.48.128\/25", + "version":25852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.49.0", + "prefixLen":25, + "network":"193.94.49.0\/25", + "version":25851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.49.128", + "prefixLen":25, + "network":"193.94.49.128\/25", + "version":25850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.50.0", + "prefixLen":25, + "network":"193.94.50.0\/25", + "version":25849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.50.128", + "prefixLen":25, + "network":"193.94.50.128\/25", + "version":25848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.51.0", + "prefixLen":25, + "network":"193.94.51.0\/25", + "version":25847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.51.128", + "prefixLen":25, + "network":"193.94.51.128\/25", + "version":25846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.64.0", + "prefixLen":25, + "network":"193.94.64.0\/25", + "version":25845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.64.128", + "prefixLen":25, + "network":"193.94.64.128\/25", + "version":25844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.65.0", + "prefixLen":25, + "network":"193.94.65.0\/25", + "version":25843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.65.128", + "prefixLen":25, + "network":"193.94.65.128\/25", + "version":25842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.66.0", + "prefixLen":25, + "network":"193.94.66.0\/25", + "version":25841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.66.128", + "prefixLen":25, + "network":"193.94.66.128\/25", + "version":25840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.67.0", + "prefixLen":25, + "network":"193.94.67.0\/25", + "version":25839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.67.128", + "prefixLen":25, + "network":"193.94.67.128\/25", + "version":25838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.80.0", + "prefixLen":25, + "network":"193.94.80.0\/25", + "version":25837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.80.128", + "prefixLen":25, + "network":"193.94.80.128\/25", + "version":25836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.81.0", + "prefixLen":25, + "network":"193.94.81.0\/25", + "version":25835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.81.128", + "prefixLen":25, + "network":"193.94.81.128\/25", + "version":25834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.82.0", + "prefixLen":25, + "network":"193.94.82.0\/25", + "version":25833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.82.128", + "prefixLen":25, + "network":"193.94.82.128\/25", + "version":25832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.83.0", + "prefixLen":25, + "network":"193.94.83.0\/25", + "version":25831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.83.128", + "prefixLen":25, + "network":"193.94.83.128\/25", + "version":25830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.96.0", + "prefixLen":25, + "network":"193.94.96.0\/25", + "version":25829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.96.128", + "prefixLen":25, + "network":"193.94.96.128\/25", + "version":25828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.97.0", + "prefixLen":25, + "network":"193.94.97.0\/25", + "version":25827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.97.128", + "prefixLen":25, + "network":"193.94.97.128\/25", + "version":25826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.98.0", + "prefixLen":25, + "network":"193.94.98.0\/25", + "version":25825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.98.128", + "prefixLen":25, + "network":"193.94.98.128\/25", + "version":25824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.99.0", + "prefixLen":25, + "network":"193.94.99.0\/25", + "version":25823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.99.128", + "prefixLen":25, + "network":"193.94.99.128\/25", + "version":25822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.112.0", + "prefixLen":25, + "network":"193.94.112.0\/25", + "version":25821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.112.128", + "prefixLen":25, + "network":"193.94.112.128\/25", + "version":25820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.113.0", + "prefixLen":25, + "network":"193.94.113.0\/25", + "version":25819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.113.128", + "prefixLen":25, + "network":"193.94.113.128\/25", + "version":25818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.114.0", + "prefixLen":25, + "network":"193.94.114.0\/25", + "version":25817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.114.128", + "prefixLen":25, + "network":"193.94.114.128\/25", + "version":25816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.115.0", + "prefixLen":25, + "network":"193.94.115.0\/25", + "version":25815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.115.128", + "prefixLen":25, + "network":"193.94.115.128\/25", + "version":25814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.128.0", + "prefixLen":25, + "network":"193.94.128.0\/25", + "version":25813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.128.128", + "prefixLen":25, + "network":"193.94.128.128\/25", + "version":25812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.129.0", + "prefixLen":25, + "network":"193.94.129.0\/25", + "version":25811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.129.128", + "prefixLen":25, + "network":"193.94.129.128\/25", + "version":25810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.130.0", + "prefixLen":25, + "network":"193.94.130.0\/25", + "version":25809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.130.128", + "prefixLen":25, + "network":"193.94.130.128\/25", + "version":25808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.131.0", + "prefixLen":25, + "network":"193.94.131.0\/25", + "version":25807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.131.128", + "prefixLen":25, + "network":"193.94.131.128\/25", + "version":25806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.144.0", + "prefixLen":25, + "network":"193.94.144.0\/25", + "version":25805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.144.128", + "prefixLen":25, + "network":"193.94.144.128\/25", + "version":25804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.145.0", + "prefixLen":25, + "network":"193.94.145.0\/25", + "version":25803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.145.128", + "prefixLen":25, + "network":"193.94.145.128\/25", + "version":25802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.146.0", + "prefixLen":25, + "network":"193.94.146.0\/25", + "version":25801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.146.128", + "prefixLen":25, + "network":"193.94.146.128\/25", + "version":25800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.147.0", + "prefixLen":25, + "network":"193.94.147.0\/25", + "version":25799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.147.128", + "prefixLen":25, + "network":"193.94.147.128\/25", + "version":25798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.160.0", + "prefixLen":25, + "network":"193.94.160.0\/25", + "version":25797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.160.128", + "prefixLen":25, + "network":"193.94.160.128\/25", + "version":25796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.161.0", + "prefixLen":25, + "network":"193.94.161.0\/25", + "version":25795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.161.128", + "prefixLen":25, + "network":"193.94.161.128\/25", + "version":25794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.162.0", + "prefixLen":25, + "network":"193.94.162.0\/25", + "version":25793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.162.128", + "prefixLen":25, + "network":"193.94.162.128\/25", + "version":25792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.163.0", + "prefixLen":25, + "network":"193.94.163.0\/25", + "version":25791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.163.128", + "prefixLen":25, + "network":"193.94.163.128\/25", + "version":25790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.176.0", + "prefixLen":25, + "network":"193.94.176.0\/25", + "version":25789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.176.128", + "prefixLen":25, + "network":"193.94.176.128\/25", + "version":25788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.177.0", + "prefixLen":25, + "network":"193.94.177.0\/25", + "version":25787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.177.128", + "prefixLen":25, + "network":"193.94.177.128\/25", + "version":25786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.178.0", + "prefixLen":25, + "network":"193.94.178.0\/25", + "version":25785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.178.128", + "prefixLen":25, + "network":"193.94.178.128\/25", + "version":25784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.179.0", + "prefixLen":25, + "network":"193.94.179.0\/25", + "version":25783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.179.128", + "prefixLen":25, + "network":"193.94.179.128\/25", + "version":25782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.192.0", + "prefixLen":25, + "network":"193.94.192.0\/25", + "version":25781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.192.128", + "prefixLen":25, + "network":"193.94.192.128\/25", + "version":25780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.193.0", + "prefixLen":25, + "network":"193.94.193.0\/25", + "version":25779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.193.128", + "prefixLen":25, + "network":"193.94.193.128\/25", + "version":25778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.194.0", + "prefixLen":25, + "network":"193.94.194.0\/25", + "version":25777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.194.128", + "prefixLen":25, + "network":"193.94.194.128\/25", + "version":25776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.195.0", + "prefixLen":25, + "network":"193.94.195.0\/25", + "version":25775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.195.128", + "prefixLen":25, + "network":"193.94.195.128\/25", + "version":25774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.208.0", + "prefixLen":25, + "network":"193.94.208.0\/25", + "version":25773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.208.128", + "prefixLen":25, + "network":"193.94.208.128\/25", + "version":25772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.209.0", + "prefixLen":25, + "network":"193.94.209.0\/25", + "version":25771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.209.128", + "prefixLen":25, + "network":"193.94.209.128\/25", + "version":25770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.210.0", + "prefixLen":25, + "network":"193.94.210.0\/25", + "version":25769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.210.128", + "prefixLen":25, + "network":"193.94.210.128\/25", + "version":25768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.211.0", + "prefixLen":25, + "network":"193.94.211.0\/25", + "version":25767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.211.128", + "prefixLen":25, + "network":"193.94.211.128\/25", + "version":25766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.224.0", + "prefixLen":25, + "network":"193.94.224.0\/25", + "version":25765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.224.128", + "prefixLen":25, + "network":"193.94.224.128\/25", + "version":25764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.225.0", + "prefixLen":25, + "network":"193.94.225.0\/25", + "version":25763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.225.128", + "prefixLen":25, + "network":"193.94.225.128\/25", + "version":25762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.226.0", + "prefixLen":25, + "network":"193.94.226.0\/25", + "version":25761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.226.128", + "prefixLen":25, + "network":"193.94.226.128\/25", + "version":25760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.227.0", + "prefixLen":25, + "network":"193.94.227.0\/25", + "version":25759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.227.128", + "prefixLen":25, + "network":"193.94.227.128\/25", + "version":25758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.240.0", + "prefixLen":25, + "network":"193.94.240.0\/25", + "version":25757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.240.128", + "prefixLen":25, + "network":"193.94.240.128\/25", + "version":25756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.241.0", + "prefixLen":25, + "network":"193.94.241.0\/25", + "version":25755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.241.128", + "prefixLen":25, + "network":"193.94.241.128\/25", + "version":25754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.242.0", + "prefixLen":25, + "network":"193.94.242.0\/25", + "version":25753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.242.128", + "prefixLen":25, + "network":"193.94.242.128\/25", + "version":25752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.243.0", + "prefixLen":25, + "network":"193.94.243.0\/25", + "version":25751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.94.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.94.243.128", + "prefixLen":25, + "network":"193.94.243.128\/25", + "version":25750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64782 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.0.0", + "prefixLen":25, + "network":"193.95.0.0\/25", + "version":25877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.0.128", + "prefixLen":25, + "network":"193.95.0.128\/25", + "version":26004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.1.0", + "prefixLen":25, + "network":"193.95.1.0\/25", + "version":26003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.1.128", + "prefixLen":25, + "network":"193.95.1.128\/25", + "version":26002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.2.0", + "prefixLen":25, + "network":"193.95.2.0\/25", + "version":26001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.2.128", + "prefixLen":25, + "network":"193.95.2.128\/25", + "version":26000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.3.0", + "prefixLen":25, + "network":"193.95.3.0\/25", + "version":25999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.3.128", + "prefixLen":25, + "network":"193.95.3.128\/25", + "version":25998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.16.0", + "prefixLen":25, + "network":"193.95.16.0\/25", + "version":25997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.16.128", + "prefixLen":25, + "network":"193.95.16.128\/25", + "version":25996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.17.0", + "prefixLen":25, + "network":"193.95.17.0\/25", + "version":25995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.17.128", + "prefixLen":25, + "network":"193.95.17.128\/25", + "version":25994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.18.0", + "prefixLen":25, + "network":"193.95.18.0\/25", + "version":25993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.18.128", + "prefixLen":25, + "network":"193.95.18.128\/25", + "version":25992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.19.0", + "prefixLen":25, + "network":"193.95.19.0\/25", + "version":25991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.19.128", + "prefixLen":25, + "network":"193.95.19.128\/25", + "version":25990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.32.0", + "prefixLen":25, + "network":"193.95.32.0\/25", + "version":25989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.32.128", + "prefixLen":25, + "network":"193.95.32.128\/25", + "version":25988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.33.0", + "prefixLen":25, + "network":"193.95.33.0\/25", + "version":25987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.33.128", + "prefixLen":25, + "network":"193.95.33.128\/25", + "version":25986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.34.0", + "prefixLen":25, + "network":"193.95.34.0\/25", + "version":25985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.34.128", + "prefixLen":25, + "network":"193.95.34.128\/25", + "version":25984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.35.0", + "prefixLen":25, + "network":"193.95.35.0\/25", + "version":25983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.35.128", + "prefixLen":25, + "network":"193.95.35.128\/25", + "version":25982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.48.0", + "prefixLen":25, + "network":"193.95.48.0\/25", + "version":25981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.48.128", + "prefixLen":25, + "network":"193.95.48.128\/25", + "version":25980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.49.0", + "prefixLen":25, + "network":"193.95.49.0\/25", + "version":25979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.49.128", + "prefixLen":25, + "network":"193.95.49.128\/25", + "version":25978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.50.0", + "prefixLen":25, + "network":"193.95.50.0\/25", + "version":25977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.50.128", + "prefixLen":25, + "network":"193.95.50.128\/25", + "version":25976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.51.0", + "prefixLen":25, + "network":"193.95.51.0\/25", + "version":25975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.51.128", + "prefixLen":25, + "network":"193.95.51.128\/25", + "version":25974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.64.0", + "prefixLen":25, + "network":"193.95.64.0\/25", + "version":25973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.64.128", + "prefixLen":25, + "network":"193.95.64.128\/25", + "version":25972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.65.0", + "prefixLen":25, + "network":"193.95.65.0\/25", + "version":25971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.65.128", + "prefixLen":25, + "network":"193.95.65.128\/25", + "version":25970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.66.0", + "prefixLen":25, + "network":"193.95.66.0\/25", + "version":25969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.66.128", + "prefixLen":25, + "network":"193.95.66.128\/25", + "version":25968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.67.0", + "prefixLen":25, + "network":"193.95.67.0\/25", + "version":25967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.67.128", + "prefixLen":25, + "network":"193.95.67.128\/25", + "version":25966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.80.0", + "prefixLen":25, + "network":"193.95.80.0\/25", + "version":25965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.80.128", + "prefixLen":25, + "network":"193.95.80.128\/25", + "version":25964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.81.0", + "prefixLen":25, + "network":"193.95.81.0\/25", + "version":25963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.81.128", + "prefixLen":25, + "network":"193.95.81.128\/25", + "version":25962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.82.0", + "prefixLen":25, + "network":"193.95.82.0\/25", + "version":25961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.82.128", + "prefixLen":25, + "network":"193.95.82.128\/25", + "version":25960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.83.0", + "prefixLen":25, + "network":"193.95.83.0\/25", + "version":25959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.83.128", + "prefixLen":25, + "network":"193.95.83.128\/25", + "version":25958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.96.0", + "prefixLen":25, + "network":"193.95.96.0\/25", + "version":25957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.96.128", + "prefixLen":25, + "network":"193.95.96.128\/25", + "version":25956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.97.0", + "prefixLen":25, + "network":"193.95.97.0\/25", + "version":25955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.97.128", + "prefixLen":25, + "network":"193.95.97.128\/25", + "version":25954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.98.0", + "prefixLen":25, + "network":"193.95.98.0\/25", + "version":25953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.98.128", + "prefixLen":25, + "network":"193.95.98.128\/25", + "version":25952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.99.0", + "prefixLen":25, + "network":"193.95.99.0\/25", + "version":25951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.99.128", + "prefixLen":25, + "network":"193.95.99.128\/25", + "version":25950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.112.0", + "prefixLen":25, + "network":"193.95.112.0\/25", + "version":25949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.112.128", + "prefixLen":25, + "network":"193.95.112.128\/25", + "version":25948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.113.0", + "prefixLen":25, + "network":"193.95.113.0\/25", + "version":25947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.113.128", + "prefixLen":25, + "network":"193.95.113.128\/25", + "version":25946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.114.0", + "prefixLen":25, + "network":"193.95.114.0\/25", + "version":25945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.114.128", + "prefixLen":25, + "network":"193.95.114.128\/25", + "version":25944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.115.0", + "prefixLen":25, + "network":"193.95.115.0\/25", + "version":25943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.115.128", + "prefixLen":25, + "network":"193.95.115.128\/25", + "version":25942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.128.0", + "prefixLen":25, + "network":"193.95.128.0\/25", + "version":25941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.128.128", + "prefixLen":25, + "network":"193.95.128.128\/25", + "version":25940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.129.0", + "prefixLen":25, + "network":"193.95.129.0\/25", + "version":25939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.129.128", + "prefixLen":25, + "network":"193.95.129.128\/25", + "version":25938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.130.0", + "prefixLen":25, + "network":"193.95.130.0\/25", + "version":25937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.130.128", + "prefixLen":25, + "network":"193.95.130.128\/25", + "version":25936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.131.0", + "prefixLen":25, + "network":"193.95.131.0\/25", + "version":25935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.131.128", + "prefixLen":25, + "network":"193.95.131.128\/25", + "version":25934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.144.0", + "prefixLen":25, + "network":"193.95.144.0\/25", + "version":25933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.144.128", + "prefixLen":25, + "network":"193.95.144.128\/25", + "version":25932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.145.0", + "prefixLen":25, + "network":"193.95.145.0\/25", + "version":25931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.145.128", + "prefixLen":25, + "network":"193.95.145.128\/25", + "version":25930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.146.0", + "prefixLen":25, + "network":"193.95.146.0\/25", + "version":25929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.146.128", + "prefixLen":25, + "network":"193.95.146.128\/25", + "version":25928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.147.0", + "prefixLen":25, + "network":"193.95.147.0\/25", + "version":25927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.147.128", + "prefixLen":25, + "network":"193.95.147.128\/25", + "version":25926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.160.0", + "prefixLen":25, + "network":"193.95.160.0\/25", + "version":25925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.160.128", + "prefixLen":25, + "network":"193.95.160.128\/25", + "version":25924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.161.0", + "prefixLen":25, + "network":"193.95.161.0\/25", + "version":25923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.161.128", + "prefixLen":25, + "network":"193.95.161.128\/25", + "version":25922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.162.0", + "prefixLen":25, + "network":"193.95.162.0\/25", + "version":25921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.162.128", + "prefixLen":25, + "network":"193.95.162.128\/25", + "version":25920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.163.0", + "prefixLen":25, + "network":"193.95.163.0\/25", + "version":25919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.163.128", + "prefixLen":25, + "network":"193.95.163.128\/25", + "version":25918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.176.0", + "prefixLen":25, + "network":"193.95.176.0\/25", + "version":25917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.176.128", + "prefixLen":25, + "network":"193.95.176.128\/25", + "version":25916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.177.0", + "prefixLen":25, + "network":"193.95.177.0\/25", + "version":25915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.177.128", + "prefixLen":25, + "network":"193.95.177.128\/25", + "version":25914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.178.0", + "prefixLen":25, + "network":"193.95.178.0\/25", + "version":25913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.178.128", + "prefixLen":25, + "network":"193.95.178.128\/25", + "version":25912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.179.0", + "prefixLen":25, + "network":"193.95.179.0\/25", + "version":25911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.179.128", + "prefixLen":25, + "network":"193.95.179.128\/25", + "version":25910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.192.0", + "prefixLen":25, + "network":"193.95.192.0\/25", + "version":25909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.192.128", + "prefixLen":25, + "network":"193.95.192.128\/25", + "version":25908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.193.0", + "prefixLen":25, + "network":"193.95.193.0\/25", + "version":25907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.193.128", + "prefixLen":25, + "network":"193.95.193.128\/25", + "version":25906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.194.0", + "prefixLen":25, + "network":"193.95.194.0\/25", + "version":25905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.194.128", + "prefixLen":25, + "network":"193.95.194.128\/25", + "version":25904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.195.0", + "prefixLen":25, + "network":"193.95.195.0\/25", + "version":25903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.195.128", + "prefixLen":25, + "network":"193.95.195.128\/25", + "version":25902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.208.0", + "prefixLen":25, + "network":"193.95.208.0\/25", + "version":25901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.208.128", + "prefixLen":25, + "network":"193.95.208.128\/25", + "version":25900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.209.0", + "prefixLen":25, + "network":"193.95.209.0\/25", + "version":25899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.209.128", + "prefixLen":25, + "network":"193.95.209.128\/25", + "version":25898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.210.0", + "prefixLen":25, + "network":"193.95.210.0\/25", + "version":25897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.210.128", + "prefixLen":25, + "network":"193.95.210.128\/25", + "version":25896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.211.0", + "prefixLen":25, + "network":"193.95.211.0\/25", + "version":25895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.211.128", + "prefixLen":25, + "network":"193.95.211.128\/25", + "version":25894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.224.0", + "prefixLen":25, + "network":"193.95.224.0\/25", + "version":25893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.224.128", + "prefixLen":25, + "network":"193.95.224.128\/25", + "version":25892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.225.0", + "prefixLen":25, + "network":"193.95.225.0\/25", + "version":25891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.225.128", + "prefixLen":25, + "network":"193.95.225.128\/25", + "version":25890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.226.0", + "prefixLen":25, + "network":"193.95.226.0\/25", + "version":25889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.226.128", + "prefixLen":25, + "network":"193.95.226.128\/25", + "version":25888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.227.0", + "prefixLen":25, + "network":"193.95.227.0\/25", + "version":25887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.227.128", + "prefixLen":25, + "network":"193.95.227.128\/25", + "version":25886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.240.0", + "prefixLen":25, + "network":"193.95.240.0\/25", + "version":25885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.240.128", + "prefixLen":25, + "network":"193.95.240.128\/25", + "version":25884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.241.0", + "prefixLen":25, + "network":"193.95.241.0\/25", + "version":25883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.241.128", + "prefixLen":25, + "network":"193.95.241.128\/25", + "version":25882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.242.0", + "prefixLen":25, + "network":"193.95.242.0\/25", + "version":25881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.242.128", + "prefixLen":25, + "network":"193.95.242.128\/25", + "version":25880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.243.0", + "prefixLen":25, + "network":"193.95.243.0\/25", + "version":25879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.95.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.95.243.128", + "prefixLen":25, + "network":"193.95.243.128\/25", + "version":25878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64783 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.0.0", + "prefixLen":25, + "network":"193.96.0.0\/25", + "version":26005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.0.128", + "prefixLen":25, + "network":"193.96.0.128\/25", + "version":26132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.1.0", + "prefixLen":25, + "network":"193.96.1.0\/25", + "version":26131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.1.128", + "prefixLen":25, + "network":"193.96.1.128\/25", + "version":26130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.2.0", + "prefixLen":25, + "network":"193.96.2.0\/25", + "version":26129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.2.128", + "prefixLen":25, + "network":"193.96.2.128\/25", + "version":26128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.3.0", + "prefixLen":25, + "network":"193.96.3.0\/25", + "version":26127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.3.128", + "prefixLen":25, + "network":"193.96.3.128\/25", + "version":26126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.16.0", + "prefixLen":25, + "network":"193.96.16.0\/25", + "version":26125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.16.128", + "prefixLen":25, + "network":"193.96.16.128\/25", + "version":26124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.17.0", + "prefixLen":25, + "network":"193.96.17.0\/25", + "version":26123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.17.128", + "prefixLen":25, + "network":"193.96.17.128\/25", + "version":26122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.18.0", + "prefixLen":25, + "network":"193.96.18.0\/25", + "version":26121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.18.128", + "prefixLen":25, + "network":"193.96.18.128\/25", + "version":26120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.19.0", + "prefixLen":25, + "network":"193.96.19.0\/25", + "version":26119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.19.128", + "prefixLen":25, + "network":"193.96.19.128\/25", + "version":26118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.32.0", + "prefixLen":25, + "network":"193.96.32.0\/25", + "version":26117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.32.128", + "prefixLen":25, + "network":"193.96.32.128\/25", + "version":26116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.33.0", + "prefixLen":25, + "network":"193.96.33.0\/25", + "version":26115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.33.128", + "prefixLen":25, + "network":"193.96.33.128\/25", + "version":26114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.34.0", + "prefixLen":25, + "network":"193.96.34.0\/25", + "version":26113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.34.128", + "prefixLen":25, + "network":"193.96.34.128\/25", + "version":26112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.35.0", + "prefixLen":25, + "network":"193.96.35.0\/25", + "version":26111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.35.128", + "prefixLen":25, + "network":"193.96.35.128\/25", + "version":26110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.48.0", + "prefixLen":25, + "network":"193.96.48.0\/25", + "version":26109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.48.128", + "prefixLen":25, + "network":"193.96.48.128\/25", + "version":26108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.49.0", + "prefixLen":25, + "network":"193.96.49.0\/25", + "version":26107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.49.128", + "prefixLen":25, + "network":"193.96.49.128\/25", + "version":26106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.50.0", + "prefixLen":25, + "network":"193.96.50.0\/25", + "version":26105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.50.128", + "prefixLen":25, + "network":"193.96.50.128\/25", + "version":26104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.51.0", + "prefixLen":25, + "network":"193.96.51.0\/25", + "version":26103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.51.128", + "prefixLen":25, + "network":"193.96.51.128\/25", + "version":26102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.64.0", + "prefixLen":25, + "network":"193.96.64.0\/25", + "version":26101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.64.128", + "prefixLen":25, + "network":"193.96.64.128\/25", + "version":26100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.65.0", + "prefixLen":25, + "network":"193.96.65.0\/25", + "version":26099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.65.128", + "prefixLen":25, + "network":"193.96.65.128\/25", + "version":26098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.66.0", + "prefixLen":25, + "network":"193.96.66.0\/25", + "version":26097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.66.128", + "prefixLen":25, + "network":"193.96.66.128\/25", + "version":26096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.67.0", + "prefixLen":25, + "network":"193.96.67.0\/25", + "version":26095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.67.128", + "prefixLen":25, + "network":"193.96.67.128\/25", + "version":26094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.80.0", + "prefixLen":25, + "network":"193.96.80.0\/25", + "version":26093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.80.128", + "prefixLen":25, + "network":"193.96.80.128\/25", + "version":26092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.81.0", + "prefixLen":25, + "network":"193.96.81.0\/25", + "version":26091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.81.128", + "prefixLen":25, + "network":"193.96.81.128\/25", + "version":26090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.82.0", + "prefixLen":25, + "network":"193.96.82.0\/25", + "version":26089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.82.128", + "prefixLen":25, + "network":"193.96.82.128\/25", + "version":26088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.83.0", + "prefixLen":25, + "network":"193.96.83.0\/25", + "version":26087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.83.128", + "prefixLen":25, + "network":"193.96.83.128\/25", + "version":26086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.96.0", + "prefixLen":25, + "network":"193.96.96.0\/25", + "version":26085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.96.128", + "prefixLen":25, + "network":"193.96.96.128\/25", + "version":26084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.97.0", + "prefixLen":25, + "network":"193.96.97.0\/25", + "version":26083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.97.128", + "prefixLen":25, + "network":"193.96.97.128\/25", + "version":26082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.98.0", + "prefixLen":25, + "network":"193.96.98.0\/25", + "version":26081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.98.128", + "prefixLen":25, + "network":"193.96.98.128\/25", + "version":26080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.99.0", + "prefixLen":25, + "network":"193.96.99.0\/25", + "version":26079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.99.128", + "prefixLen":25, + "network":"193.96.99.128\/25", + "version":26078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.112.0", + "prefixLen":25, + "network":"193.96.112.0\/25", + "version":26077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.112.128", + "prefixLen":25, + "network":"193.96.112.128\/25", + "version":26076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.113.0", + "prefixLen":25, + "network":"193.96.113.0\/25", + "version":26075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.113.128", + "prefixLen":25, + "network":"193.96.113.128\/25", + "version":26074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.114.0", + "prefixLen":25, + "network":"193.96.114.0\/25", + "version":26073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.114.128", + "prefixLen":25, + "network":"193.96.114.128\/25", + "version":26072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.115.0", + "prefixLen":25, + "network":"193.96.115.0\/25", + "version":26071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.115.128", + "prefixLen":25, + "network":"193.96.115.128\/25", + "version":26070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.128.0", + "prefixLen":25, + "network":"193.96.128.0\/25", + "version":26069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.128.128", + "prefixLen":25, + "network":"193.96.128.128\/25", + "version":26068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.129.0", + "prefixLen":25, + "network":"193.96.129.0\/25", + "version":26067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.129.128", + "prefixLen":25, + "network":"193.96.129.128\/25", + "version":26066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.130.0", + "prefixLen":25, + "network":"193.96.130.0\/25", + "version":26065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.130.128", + "prefixLen":25, + "network":"193.96.130.128\/25", + "version":26064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.131.0", + "prefixLen":25, + "network":"193.96.131.0\/25", + "version":26063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.131.128", + "prefixLen":25, + "network":"193.96.131.128\/25", + "version":26062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.144.0", + "prefixLen":25, + "network":"193.96.144.0\/25", + "version":26061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.144.128", + "prefixLen":25, + "network":"193.96.144.128\/25", + "version":26060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.145.0", + "prefixLen":25, + "network":"193.96.145.0\/25", + "version":26059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.145.128", + "prefixLen":25, + "network":"193.96.145.128\/25", + "version":26058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.146.0", + "prefixLen":25, + "network":"193.96.146.0\/25", + "version":26057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.146.128", + "prefixLen":25, + "network":"193.96.146.128\/25", + "version":26056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.147.0", + "prefixLen":25, + "network":"193.96.147.0\/25", + "version":26055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.147.128", + "prefixLen":25, + "network":"193.96.147.128\/25", + "version":26054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.160.0", + "prefixLen":25, + "network":"193.96.160.0\/25", + "version":26053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.160.128", + "prefixLen":25, + "network":"193.96.160.128\/25", + "version":26052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.161.0", + "prefixLen":25, + "network":"193.96.161.0\/25", + "version":26051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.161.128", + "prefixLen":25, + "network":"193.96.161.128\/25", + "version":26050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.162.0", + "prefixLen":25, + "network":"193.96.162.0\/25", + "version":26049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.162.128", + "prefixLen":25, + "network":"193.96.162.128\/25", + "version":26048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.163.0", + "prefixLen":25, + "network":"193.96.163.0\/25", + "version":26047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.163.128", + "prefixLen":25, + "network":"193.96.163.128\/25", + "version":26046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.176.0", + "prefixLen":25, + "network":"193.96.176.0\/25", + "version":26045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.176.128", + "prefixLen":25, + "network":"193.96.176.128\/25", + "version":26044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.177.0", + "prefixLen":25, + "network":"193.96.177.0\/25", + "version":26043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.177.128", + "prefixLen":25, + "network":"193.96.177.128\/25", + "version":26042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.178.0", + "prefixLen":25, + "network":"193.96.178.0\/25", + "version":26041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.178.128", + "prefixLen":25, + "network":"193.96.178.128\/25", + "version":26040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.179.0", + "prefixLen":25, + "network":"193.96.179.0\/25", + "version":26039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.179.128", + "prefixLen":25, + "network":"193.96.179.128\/25", + "version":26038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.192.0", + "prefixLen":25, + "network":"193.96.192.0\/25", + "version":26037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.192.128", + "prefixLen":25, + "network":"193.96.192.128\/25", + "version":26036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.193.0", + "prefixLen":25, + "network":"193.96.193.0\/25", + "version":26035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.193.128", + "prefixLen":25, + "network":"193.96.193.128\/25", + "version":26034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.194.0", + "prefixLen":25, + "network":"193.96.194.0\/25", + "version":26033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.194.128", + "prefixLen":25, + "network":"193.96.194.128\/25", + "version":26032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.195.0", + "prefixLen":25, + "network":"193.96.195.0\/25", + "version":26031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.195.128", + "prefixLen":25, + "network":"193.96.195.128\/25", + "version":26030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.208.0", + "prefixLen":25, + "network":"193.96.208.0\/25", + "version":26029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.208.128", + "prefixLen":25, + "network":"193.96.208.128\/25", + "version":26028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.209.0", + "prefixLen":25, + "network":"193.96.209.0\/25", + "version":26027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.209.128", + "prefixLen":25, + "network":"193.96.209.128\/25", + "version":26026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.210.0", + "prefixLen":25, + "network":"193.96.210.0\/25", + "version":26025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.210.128", + "prefixLen":25, + "network":"193.96.210.128\/25", + "version":26024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.211.0", + "prefixLen":25, + "network":"193.96.211.0\/25", + "version":26023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.211.128", + "prefixLen":25, + "network":"193.96.211.128\/25", + "version":26022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.224.0", + "prefixLen":25, + "network":"193.96.224.0\/25", + "version":26021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.224.128", + "prefixLen":25, + "network":"193.96.224.128\/25", + "version":26020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.225.0", + "prefixLen":25, + "network":"193.96.225.0\/25", + "version":26019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.225.128", + "prefixLen":25, + "network":"193.96.225.128\/25", + "version":26018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.226.0", + "prefixLen":25, + "network":"193.96.226.0\/25", + "version":26017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.226.128", + "prefixLen":25, + "network":"193.96.226.128\/25", + "version":26016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.227.0", + "prefixLen":25, + "network":"193.96.227.0\/25", + "version":26015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.227.128", + "prefixLen":25, + "network":"193.96.227.128\/25", + "version":26014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.240.0", + "prefixLen":25, + "network":"193.96.240.0\/25", + "version":26013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.240.128", + "prefixLen":25, + "network":"193.96.240.128\/25", + "version":26012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.241.0", + "prefixLen":25, + "network":"193.96.241.0\/25", + "version":26011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.241.128", + "prefixLen":25, + "network":"193.96.241.128\/25", + "version":26010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.242.0", + "prefixLen":25, + "network":"193.96.242.0\/25", + "version":26009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.242.128", + "prefixLen":25, + "network":"193.96.242.128\/25", + "version":26008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.243.0", + "prefixLen":25, + "network":"193.96.243.0\/25", + "version":26007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.96.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.96.243.128", + "prefixLen":25, + "network":"193.96.243.128\/25", + "version":26006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64784 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.0.0", + "prefixLen":25, + "network":"193.97.0.0\/25", + "version":26133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.0.128", + "prefixLen":25, + "network":"193.97.0.128\/25", + "version":26260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.1.0", + "prefixLen":25, + "network":"193.97.1.0\/25", + "version":26259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.1.128", + "prefixLen":25, + "network":"193.97.1.128\/25", + "version":26258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.2.0", + "prefixLen":25, + "network":"193.97.2.0\/25", + "version":26257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.2.128", + "prefixLen":25, + "network":"193.97.2.128\/25", + "version":26256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.3.0", + "prefixLen":25, + "network":"193.97.3.0\/25", + "version":26255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.3.128", + "prefixLen":25, + "network":"193.97.3.128\/25", + "version":26254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.16.0", + "prefixLen":25, + "network":"193.97.16.0\/25", + "version":26253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.16.128", + "prefixLen":25, + "network":"193.97.16.128\/25", + "version":26252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.17.0", + "prefixLen":25, + "network":"193.97.17.0\/25", + "version":26251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.17.128", + "prefixLen":25, + "network":"193.97.17.128\/25", + "version":26250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.18.0", + "prefixLen":25, + "network":"193.97.18.0\/25", + "version":26249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.18.128", + "prefixLen":25, + "network":"193.97.18.128\/25", + "version":26248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.19.0", + "prefixLen":25, + "network":"193.97.19.0\/25", + "version":26247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.19.128", + "prefixLen":25, + "network":"193.97.19.128\/25", + "version":26246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.32.0", + "prefixLen":25, + "network":"193.97.32.0\/25", + "version":26245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.32.128", + "prefixLen":25, + "network":"193.97.32.128\/25", + "version":26244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.33.0", + "prefixLen":25, + "network":"193.97.33.0\/25", + "version":26243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.33.128", + "prefixLen":25, + "network":"193.97.33.128\/25", + "version":26242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.34.0", + "prefixLen":25, + "network":"193.97.34.0\/25", + "version":26241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.34.128", + "prefixLen":25, + "network":"193.97.34.128\/25", + "version":26240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.35.0", + "prefixLen":25, + "network":"193.97.35.0\/25", + "version":26239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.35.128", + "prefixLen":25, + "network":"193.97.35.128\/25", + "version":26238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.48.0", + "prefixLen":25, + "network":"193.97.48.0\/25", + "version":26237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.48.128", + "prefixLen":25, + "network":"193.97.48.128\/25", + "version":26236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.49.0", + "prefixLen":25, + "network":"193.97.49.0\/25", + "version":26235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.49.128", + "prefixLen":25, + "network":"193.97.49.128\/25", + "version":26234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.50.0", + "prefixLen":25, + "network":"193.97.50.0\/25", + "version":26233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.50.128", + "prefixLen":25, + "network":"193.97.50.128\/25", + "version":26232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.51.0", + "prefixLen":25, + "network":"193.97.51.0\/25", + "version":26231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.51.128", + "prefixLen":25, + "network":"193.97.51.128\/25", + "version":26230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.64.0", + "prefixLen":25, + "network":"193.97.64.0\/25", + "version":26229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.64.128", + "prefixLen":25, + "network":"193.97.64.128\/25", + "version":26228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.65.0", + "prefixLen":25, + "network":"193.97.65.0\/25", + "version":26227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.65.128", + "prefixLen":25, + "network":"193.97.65.128\/25", + "version":26226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.66.0", + "prefixLen":25, + "network":"193.97.66.0\/25", + "version":26225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.66.128", + "prefixLen":25, + "network":"193.97.66.128\/25", + "version":26224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.67.0", + "prefixLen":25, + "network":"193.97.67.0\/25", + "version":26223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.67.128", + "prefixLen":25, + "network":"193.97.67.128\/25", + "version":26222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.80.0", + "prefixLen":25, + "network":"193.97.80.0\/25", + "version":26221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.80.128", + "prefixLen":25, + "network":"193.97.80.128\/25", + "version":26220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.81.0", + "prefixLen":25, + "network":"193.97.81.0\/25", + "version":26219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.81.128", + "prefixLen":25, + "network":"193.97.81.128\/25", + "version":26218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.82.0", + "prefixLen":25, + "network":"193.97.82.0\/25", + "version":26217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.82.128", + "prefixLen":25, + "network":"193.97.82.128\/25", + "version":26216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.83.0", + "prefixLen":25, + "network":"193.97.83.0\/25", + "version":26215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.83.128", + "prefixLen":25, + "network":"193.97.83.128\/25", + "version":26214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.96.0", + "prefixLen":25, + "network":"193.97.96.0\/25", + "version":26213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.96.128", + "prefixLen":25, + "network":"193.97.96.128\/25", + "version":26212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.97.0", + "prefixLen":25, + "network":"193.97.97.0\/25", + "version":26211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.97.128", + "prefixLen":25, + "network":"193.97.97.128\/25", + "version":26210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.98.0", + "prefixLen":25, + "network":"193.97.98.0\/25", + "version":26209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.98.128", + "prefixLen":25, + "network":"193.97.98.128\/25", + "version":26208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.99.0", + "prefixLen":25, + "network":"193.97.99.0\/25", + "version":26207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.99.128", + "prefixLen":25, + "network":"193.97.99.128\/25", + "version":26206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.112.0", + "prefixLen":25, + "network":"193.97.112.0\/25", + "version":26205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.112.128", + "prefixLen":25, + "network":"193.97.112.128\/25", + "version":26204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.113.0", + "prefixLen":25, + "network":"193.97.113.0\/25", + "version":26203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.113.128", + "prefixLen":25, + "network":"193.97.113.128\/25", + "version":26202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.114.0", + "prefixLen":25, + "network":"193.97.114.0\/25", + "version":26201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.114.128", + "prefixLen":25, + "network":"193.97.114.128\/25", + "version":26200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.115.0", + "prefixLen":25, + "network":"193.97.115.0\/25", + "version":26199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.115.128", + "prefixLen":25, + "network":"193.97.115.128\/25", + "version":26198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.128.0", + "prefixLen":25, + "network":"193.97.128.0\/25", + "version":26197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.128.128", + "prefixLen":25, + "network":"193.97.128.128\/25", + "version":26196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.129.0", + "prefixLen":25, + "network":"193.97.129.0\/25", + "version":26195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.129.128", + "prefixLen":25, + "network":"193.97.129.128\/25", + "version":26194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.130.0", + "prefixLen":25, + "network":"193.97.130.0\/25", + "version":26193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.130.128", + "prefixLen":25, + "network":"193.97.130.128\/25", + "version":26192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.131.0", + "prefixLen":25, + "network":"193.97.131.0\/25", + "version":26191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.131.128", + "prefixLen":25, + "network":"193.97.131.128\/25", + "version":26190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.144.0", + "prefixLen":25, + "network":"193.97.144.0\/25", + "version":26189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.144.128", + "prefixLen":25, + "network":"193.97.144.128\/25", + "version":26188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.145.0", + "prefixLen":25, + "network":"193.97.145.0\/25", + "version":26187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.145.128", + "prefixLen":25, + "network":"193.97.145.128\/25", + "version":26186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.146.0", + "prefixLen":25, + "network":"193.97.146.0\/25", + "version":26185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.146.128", + "prefixLen":25, + "network":"193.97.146.128\/25", + "version":26184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.147.0", + "prefixLen":25, + "network":"193.97.147.0\/25", + "version":26183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.147.128", + "prefixLen":25, + "network":"193.97.147.128\/25", + "version":26182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.160.0", + "prefixLen":25, + "network":"193.97.160.0\/25", + "version":26181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.160.128", + "prefixLen":25, + "network":"193.97.160.128\/25", + "version":26180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.161.0", + "prefixLen":25, + "network":"193.97.161.0\/25", + "version":26179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.161.128", + "prefixLen":25, + "network":"193.97.161.128\/25", + "version":26178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.162.0", + "prefixLen":25, + "network":"193.97.162.0\/25", + "version":26177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.162.128", + "prefixLen":25, + "network":"193.97.162.128\/25", + "version":26176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.163.0", + "prefixLen":25, + "network":"193.97.163.0\/25", + "version":26175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.163.128", + "prefixLen":25, + "network":"193.97.163.128\/25", + "version":26174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.176.0", + "prefixLen":25, + "network":"193.97.176.0\/25", + "version":26173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.176.128", + "prefixLen":25, + "network":"193.97.176.128\/25", + "version":26172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.177.0", + "prefixLen":25, + "network":"193.97.177.0\/25", + "version":26171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.177.128", + "prefixLen":25, + "network":"193.97.177.128\/25", + "version":26170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.178.0", + "prefixLen":25, + "network":"193.97.178.0\/25", + "version":26169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.178.128", + "prefixLen":25, + "network":"193.97.178.128\/25", + "version":26168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.179.0", + "prefixLen":25, + "network":"193.97.179.0\/25", + "version":26167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.179.128", + "prefixLen":25, + "network":"193.97.179.128\/25", + "version":26166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.192.0", + "prefixLen":25, + "network":"193.97.192.0\/25", + "version":26165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.192.128", + "prefixLen":25, + "network":"193.97.192.128\/25", + "version":26164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.193.0", + "prefixLen":25, + "network":"193.97.193.0\/25", + "version":26163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.193.128", + "prefixLen":25, + "network":"193.97.193.128\/25", + "version":26162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.194.0", + "prefixLen":25, + "network":"193.97.194.0\/25", + "version":26161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.194.128", + "prefixLen":25, + "network":"193.97.194.128\/25", + "version":26160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.195.0", + "prefixLen":25, + "network":"193.97.195.0\/25", + "version":26159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.195.128", + "prefixLen":25, + "network":"193.97.195.128\/25", + "version":26158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.208.0", + "prefixLen":25, + "network":"193.97.208.0\/25", + "version":26157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.208.128", + "prefixLen":25, + "network":"193.97.208.128\/25", + "version":26156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.209.0", + "prefixLen":25, + "network":"193.97.209.0\/25", + "version":26155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.209.128", + "prefixLen":25, + "network":"193.97.209.128\/25", + "version":26154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.210.0", + "prefixLen":25, + "network":"193.97.210.0\/25", + "version":26153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.210.128", + "prefixLen":25, + "network":"193.97.210.128\/25", + "version":26152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.211.0", + "prefixLen":25, + "network":"193.97.211.0\/25", + "version":26151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.211.128", + "prefixLen":25, + "network":"193.97.211.128\/25", + "version":26150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.224.0", + "prefixLen":25, + "network":"193.97.224.0\/25", + "version":26149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.224.128", + "prefixLen":25, + "network":"193.97.224.128\/25", + "version":26148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.225.0", + "prefixLen":25, + "network":"193.97.225.0\/25", + "version":26147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.225.128", + "prefixLen":25, + "network":"193.97.225.128\/25", + "version":26146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.226.0", + "prefixLen":25, + "network":"193.97.226.0\/25", + "version":26145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.226.128", + "prefixLen":25, + "network":"193.97.226.128\/25", + "version":26144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.227.0", + "prefixLen":25, + "network":"193.97.227.0\/25", + "version":26143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.227.128", + "prefixLen":25, + "network":"193.97.227.128\/25", + "version":26142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.240.0", + "prefixLen":25, + "network":"193.97.240.0\/25", + "version":26141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.240.128", + "prefixLen":25, + "network":"193.97.240.128\/25", + "version":26140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.241.0", + "prefixLen":25, + "network":"193.97.241.0\/25", + "version":26139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.241.128", + "prefixLen":25, + "network":"193.97.241.128\/25", + "version":26138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.242.0", + "prefixLen":25, + "network":"193.97.242.0\/25", + "version":26137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.242.128", + "prefixLen":25, + "network":"193.97.242.128\/25", + "version":26136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.243.0", + "prefixLen":25, + "network":"193.97.243.0\/25", + "version":26135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.97.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.97.243.128", + "prefixLen":25, + "network":"193.97.243.128\/25", + "version":26134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64785 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.0.0", + "prefixLen":25, + "network":"193.98.0.0\/25", + "version":26261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.0.128", + "prefixLen":25, + "network":"193.98.0.128\/25", + "version":26388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.1.0", + "prefixLen":25, + "network":"193.98.1.0\/25", + "version":26387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.1.128", + "prefixLen":25, + "network":"193.98.1.128\/25", + "version":26386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.2.0", + "prefixLen":25, + "network":"193.98.2.0\/25", + "version":26385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.2.128", + "prefixLen":25, + "network":"193.98.2.128\/25", + "version":26384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.3.0", + "prefixLen":25, + "network":"193.98.3.0\/25", + "version":26383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.3.128", + "prefixLen":25, + "network":"193.98.3.128\/25", + "version":26382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.16.0", + "prefixLen":25, + "network":"193.98.16.0\/25", + "version":26381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.16.128", + "prefixLen":25, + "network":"193.98.16.128\/25", + "version":26380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.17.0", + "prefixLen":25, + "network":"193.98.17.0\/25", + "version":26379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.17.128", + "prefixLen":25, + "network":"193.98.17.128\/25", + "version":26378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.18.0", + "prefixLen":25, + "network":"193.98.18.0\/25", + "version":26377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.18.128", + "prefixLen":25, + "network":"193.98.18.128\/25", + "version":26376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.19.0", + "prefixLen":25, + "network":"193.98.19.0\/25", + "version":26375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.19.128", + "prefixLen":25, + "network":"193.98.19.128\/25", + "version":26374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.32.0", + "prefixLen":25, + "network":"193.98.32.0\/25", + "version":26373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.32.128", + "prefixLen":25, + "network":"193.98.32.128\/25", + "version":26372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.33.0", + "prefixLen":25, + "network":"193.98.33.0\/25", + "version":26371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.33.128", + "prefixLen":25, + "network":"193.98.33.128\/25", + "version":26370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.34.0", + "prefixLen":25, + "network":"193.98.34.0\/25", + "version":26369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.34.128", + "prefixLen":25, + "network":"193.98.34.128\/25", + "version":26368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.35.0", + "prefixLen":25, + "network":"193.98.35.0\/25", + "version":26367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.35.128", + "prefixLen":25, + "network":"193.98.35.128\/25", + "version":26366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.48.0", + "prefixLen":25, + "network":"193.98.48.0\/25", + "version":26365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.48.128", + "prefixLen":25, + "network":"193.98.48.128\/25", + "version":26364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.49.0", + "prefixLen":25, + "network":"193.98.49.0\/25", + "version":26363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.49.128", + "prefixLen":25, + "network":"193.98.49.128\/25", + "version":26362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.50.0", + "prefixLen":25, + "network":"193.98.50.0\/25", + "version":26361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.50.128", + "prefixLen":25, + "network":"193.98.50.128\/25", + "version":26360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.51.0", + "prefixLen":25, + "network":"193.98.51.0\/25", + "version":26359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.51.128", + "prefixLen":25, + "network":"193.98.51.128\/25", + "version":26358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.64.0", + "prefixLen":25, + "network":"193.98.64.0\/25", + "version":26357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.64.128", + "prefixLen":25, + "network":"193.98.64.128\/25", + "version":26356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.65.0", + "prefixLen":25, + "network":"193.98.65.0\/25", + "version":26355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.65.128", + "prefixLen":25, + "network":"193.98.65.128\/25", + "version":26354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.66.0", + "prefixLen":25, + "network":"193.98.66.0\/25", + "version":26353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.66.128", + "prefixLen":25, + "network":"193.98.66.128\/25", + "version":26352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.67.0", + "prefixLen":25, + "network":"193.98.67.0\/25", + "version":26351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.67.128", + "prefixLen":25, + "network":"193.98.67.128\/25", + "version":26350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.80.0", + "prefixLen":25, + "network":"193.98.80.0\/25", + "version":26349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.80.128", + "prefixLen":25, + "network":"193.98.80.128\/25", + "version":26348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.81.0", + "prefixLen":25, + "network":"193.98.81.0\/25", + "version":26347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.81.128", + "prefixLen":25, + "network":"193.98.81.128\/25", + "version":26346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.82.0", + "prefixLen":25, + "network":"193.98.82.0\/25", + "version":26345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.82.128", + "prefixLen":25, + "network":"193.98.82.128\/25", + "version":26344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.83.0", + "prefixLen":25, + "network":"193.98.83.0\/25", + "version":26343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.83.128", + "prefixLen":25, + "network":"193.98.83.128\/25", + "version":26342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.96.0", + "prefixLen":25, + "network":"193.98.96.0\/25", + "version":26341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.96.128", + "prefixLen":25, + "network":"193.98.96.128\/25", + "version":26340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.97.0", + "prefixLen":25, + "network":"193.98.97.0\/25", + "version":26339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.97.128", + "prefixLen":25, + "network":"193.98.97.128\/25", + "version":26338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.98.0", + "prefixLen":25, + "network":"193.98.98.0\/25", + "version":26337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.98.128", + "prefixLen":25, + "network":"193.98.98.128\/25", + "version":26336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.99.0", + "prefixLen":25, + "network":"193.98.99.0\/25", + "version":26335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.99.128", + "prefixLen":25, + "network":"193.98.99.128\/25", + "version":26334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.112.0", + "prefixLen":25, + "network":"193.98.112.0\/25", + "version":26333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.112.128", + "prefixLen":25, + "network":"193.98.112.128\/25", + "version":26332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.113.0", + "prefixLen":25, + "network":"193.98.113.0\/25", + "version":26331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.113.128", + "prefixLen":25, + "network":"193.98.113.128\/25", + "version":26330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.114.0", + "prefixLen":25, + "network":"193.98.114.0\/25", + "version":26329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.114.128", + "prefixLen":25, + "network":"193.98.114.128\/25", + "version":26328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.115.0", + "prefixLen":25, + "network":"193.98.115.0\/25", + "version":26327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.115.128", + "prefixLen":25, + "network":"193.98.115.128\/25", + "version":26326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.128.0", + "prefixLen":25, + "network":"193.98.128.0\/25", + "version":26325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.128.128", + "prefixLen":25, + "network":"193.98.128.128\/25", + "version":26324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.129.0", + "prefixLen":25, + "network":"193.98.129.0\/25", + "version":26323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.129.128", + "prefixLen":25, + "network":"193.98.129.128\/25", + "version":26322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.130.0", + "prefixLen":25, + "network":"193.98.130.0\/25", + "version":26321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.130.128", + "prefixLen":25, + "network":"193.98.130.128\/25", + "version":26320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.131.0", + "prefixLen":25, + "network":"193.98.131.0\/25", + "version":26319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.131.128", + "prefixLen":25, + "network":"193.98.131.128\/25", + "version":26318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.144.0", + "prefixLen":25, + "network":"193.98.144.0\/25", + "version":26317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.144.128", + "prefixLen":25, + "network":"193.98.144.128\/25", + "version":26316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.145.0", + "prefixLen":25, + "network":"193.98.145.0\/25", + "version":26315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.145.128", + "prefixLen":25, + "network":"193.98.145.128\/25", + "version":26314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.146.0", + "prefixLen":25, + "network":"193.98.146.0\/25", + "version":26313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.146.128", + "prefixLen":25, + "network":"193.98.146.128\/25", + "version":26312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.147.0", + "prefixLen":25, + "network":"193.98.147.0\/25", + "version":26311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.147.128", + "prefixLen":25, + "network":"193.98.147.128\/25", + "version":26310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.160.0", + "prefixLen":25, + "network":"193.98.160.0\/25", + "version":26309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.160.128", + "prefixLen":25, + "network":"193.98.160.128\/25", + "version":26308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.161.0", + "prefixLen":25, + "network":"193.98.161.0\/25", + "version":26307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.161.128", + "prefixLen":25, + "network":"193.98.161.128\/25", + "version":26306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.162.0", + "prefixLen":25, + "network":"193.98.162.0\/25", + "version":26305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.162.128", + "prefixLen":25, + "network":"193.98.162.128\/25", + "version":26304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.163.0", + "prefixLen":25, + "network":"193.98.163.0\/25", + "version":26303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.163.128", + "prefixLen":25, + "network":"193.98.163.128\/25", + "version":26302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.176.0", + "prefixLen":25, + "network":"193.98.176.0\/25", + "version":26301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.176.128", + "prefixLen":25, + "network":"193.98.176.128\/25", + "version":26300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.177.0", + "prefixLen":25, + "network":"193.98.177.0\/25", + "version":26299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.177.128", + "prefixLen":25, + "network":"193.98.177.128\/25", + "version":26298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.178.0", + "prefixLen":25, + "network":"193.98.178.0\/25", + "version":26297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.178.128", + "prefixLen":25, + "network":"193.98.178.128\/25", + "version":26296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.179.0", + "prefixLen":25, + "network":"193.98.179.0\/25", + "version":26295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.179.128", + "prefixLen":25, + "network":"193.98.179.128\/25", + "version":26294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.192.0", + "prefixLen":25, + "network":"193.98.192.0\/25", + "version":26293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.192.128", + "prefixLen":25, + "network":"193.98.192.128\/25", + "version":26292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.193.0", + "prefixLen":25, + "network":"193.98.193.0\/25", + "version":26291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.193.128", + "prefixLen":25, + "network":"193.98.193.128\/25", + "version":26290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.194.0", + "prefixLen":25, + "network":"193.98.194.0\/25", + "version":26289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.194.128", + "prefixLen":25, + "network":"193.98.194.128\/25", + "version":26288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.195.0", + "prefixLen":25, + "network":"193.98.195.0\/25", + "version":26287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.195.128", + "prefixLen":25, + "network":"193.98.195.128\/25", + "version":26286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.208.0", + "prefixLen":25, + "network":"193.98.208.0\/25", + "version":26285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.208.128", + "prefixLen":25, + "network":"193.98.208.128\/25", + "version":26284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.209.0", + "prefixLen":25, + "network":"193.98.209.0\/25", + "version":26283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.209.128", + "prefixLen":25, + "network":"193.98.209.128\/25", + "version":26282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.210.0", + "prefixLen":25, + "network":"193.98.210.0\/25", + "version":26281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.210.128", + "prefixLen":25, + "network":"193.98.210.128\/25", + "version":26280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.211.0", + "prefixLen":25, + "network":"193.98.211.0\/25", + "version":26279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.211.128", + "prefixLen":25, + "network":"193.98.211.128\/25", + "version":26278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.224.0", + "prefixLen":25, + "network":"193.98.224.0\/25", + "version":26277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.224.128", + "prefixLen":25, + "network":"193.98.224.128\/25", + "version":26276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.225.0", + "prefixLen":25, + "network":"193.98.225.0\/25", + "version":26275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.225.128", + "prefixLen":25, + "network":"193.98.225.128\/25", + "version":26274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.226.0", + "prefixLen":25, + "network":"193.98.226.0\/25", + "version":26273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.226.128", + "prefixLen":25, + "network":"193.98.226.128\/25", + "version":26272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.227.0", + "prefixLen":25, + "network":"193.98.227.0\/25", + "version":26271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.227.128", + "prefixLen":25, + "network":"193.98.227.128\/25", + "version":26270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.240.0", + "prefixLen":25, + "network":"193.98.240.0\/25", + "version":26269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.240.128", + "prefixLen":25, + "network":"193.98.240.128\/25", + "version":26268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.241.0", + "prefixLen":25, + "network":"193.98.241.0\/25", + "version":26267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.241.128", + "prefixLen":25, + "network":"193.98.241.128\/25", + "version":26266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.242.0", + "prefixLen":25, + "network":"193.98.242.0\/25", + "version":26265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.242.128", + "prefixLen":25, + "network":"193.98.242.128\/25", + "version":26264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.243.0", + "prefixLen":25, + "network":"193.98.243.0\/25", + "version":26263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.98.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.98.243.128", + "prefixLen":25, + "network":"193.98.243.128\/25", + "version":26262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64786 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.0.0", + "prefixLen":25, + "network":"193.99.0.0\/25", + "version":27669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.0.128", + "prefixLen":25, + "network":"193.99.0.128\/25", + "version":27796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.1.0", + "prefixLen":25, + "network":"193.99.1.0\/25", + "version":27795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.1.128", + "prefixLen":25, + "network":"193.99.1.128\/25", + "version":27794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.2.0", + "prefixLen":25, + "network":"193.99.2.0\/25", + "version":27793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.2.128", + "prefixLen":25, + "network":"193.99.2.128\/25", + "version":27792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.3.0", + "prefixLen":25, + "network":"193.99.3.0\/25", + "version":27791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.3.128", + "prefixLen":25, + "network":"193.99.3.128\/25", + "version":27790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.16.0", + "prefixLen":25, + "network":"193.99.16.0\/25", + "version":27789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.16.128", + "prefixLen":25, + "network":"193.99.16.128\/25", + "version":27788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.17.0", + "prefixLen":25, + "network":"193.99.17.0\/25", + "version":27787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.17.128", + "prefixLen":25, + "network":"193.99.17.128\/25", + "version":27786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.18.0", + "prefixLen":25, + "network":"193.99.18.0\/25", + "version":27785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.18.128", + "prefixLen":25, + "network":"193.99.18.128\/25", + "version":27784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.19.0", + "prefixLen":25, + "network":"193.99.19.0\/25", + "version":27783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.19.128", + "prefixLen":25, + "network":"193.99.19.128\/25", + "version":27782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.32.0", + "prefixLen":25, + "network":"193.99.32.0\/25", + "version":27781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.32.128", + "prefixLen":25, + "network":"193.99.32.128\/25", + "version":27780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.33.0", + "prefixLen":25, + "network":"193.99.33.0\/25", + "version":27779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.33.128", + "prefixLen":25, + "network":"193.99.33.128\/25", + "version":27778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.34.0", + "prefixLen":25, + "network":"193.99.34.0\/25", + "version":27777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.34.128", + "prefixLen":25, + "network":"193.99.34.128\/25", + "version":27776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.35.0", + "prefixLen":25, + "network":"193.99.35.0\/25", + "version":27775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.35.128", + "prefixLen":25, + "network":"193.99.35.128\/25", + "version":27774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.48.0", + "prefixLen":25, + "network":"193.99.48.0\/25", + "version":27773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.48.128", + "prefixLen":25, + "network":"193.99.48.128\/25", + "version":27772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.49.0", + "prefixLen":25, + "network":"193.99.49.0\/25", + "version":27771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.49.128", + "prefixLen":25, + "network":"193.99.49.128\/25", + "version":27770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.50.0", + "prefixLen":25, + "network":"193.99.50.0\/25", + "version":27769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.50.128", + "prefixLen":25, + "network":"193.99.50.128\/25", + "version":27768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.51.0", + "prefixLen":25, + "network":"193.99.51.0\/25", + "version":27767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.51.128", + "prefixLen":25, + "network":"193.99.51.128\/25", + "version":27766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.64.0", + "prefixLen":25, + "network":"193.99.64.0\/25", + "version":27765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.64.128", + "prefixLen":25, + "network":"193.99.64.128\/25", + "version":27764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.65.0", + "prefixLen":25, + "network":"193.99.65.0\/25", + "version":27763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.65.128", + "prefixLen":25, + "network":"193.99.65.128\/25", + "version":27762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.66.0", + "prefixLen":25, + "network":"193.99.66.0\/25", + "version":27761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.66.128", + "prefixLen":25, + "network":"193.99.66.128\/25", + "version":27760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.67.0", + "prefixLen":25, + "network":"193.99.67.0\/25", + "version":27759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.67.128", + "prefixLen":25, + "network":"193.99.67.128\/25", + "version":27758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.80.0", + "prefixLen":25, + "network":"193.99.80.0\/25", + "version":27757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.80.128", + "prefixLen":25, + "network":"193.99.80.128\/25", + "version":27756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.81.0", + "prefixLen":25, + "network":"193.99.81.0\/25", + "version":27755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.81.128", + "prefixLen":25, + "network":"193.99.81.128\/25", + "version":27754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.82.0", + "prefixLen":25, + "network":"193.99.82.0\/25", + "version":27753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.82.128", + "prefixLen":25, + "network":"193.99.82.128\/25", + "version":27752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.83.0", + "prefixLen":25, + "network":"193.99.83.0\/25", + "version":27751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.83.128", + "prefixLen":25, + "network":"193.99.83.128\/25", + "version":27750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.96.0", + "prefixLen":25, + "network":"193.99.96.0\/25", + "version":27749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.96.128", + "prefixLen":25, + "network":"193.99.96.128\/25", + "version":27748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.97.0", + "prefixLen":25, + "network":"193.99.97.0\/25", + "version":27747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.97.128", + "prefixLen":25, + "network":"193.99.97.128\/25", + "version":27746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.98.0", + "prefixLen":25, + "network":"193.99.98.0\/25", + "version":27745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.98.128", + "prefixLen":25, + "network":"193.99.98.128\/25", + "version":27744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.99.0", + "prefixLen":25, + "network":"193.99.99.0\/25", + "version":27743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.99.128", + "prefixLen":25, + "network":"193.99.99.128\/25", + "version":27742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.112.0", + "prefixLen":25, + "network":"193.99.112.0\/25", + "version":27741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.112.128", + "prefixLen":25, + "network":"193.99.112.128\/25", + "version":27740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.113.0", + "prefixLen":25, + "network":"193.99.113.0\/25", + "version":27739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.113.128", + "prefixLen":25, + "network":"193.99.113.128\/25", + "version":27738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.114.0", + "prefixLen":25, + "network":"193.99.114.0\/25", + "version":27737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.114.128", + "prefixLen":25, + "network":"193.99.114.128\/25", + "version":27736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.115.0", + "prefixLen":25, + "network":"193.99.115.0\/25", + "version":27735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.115.128", + "prefixLen":25, + "network":"193.99.115.128\/25", + "version":27734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.128.0", + "prefixLen":25, + "network":"193.99.128.0\/25", + "version":27733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.128.128", + "prefixLen":25, + "network":"193.99.128.128\/25", + "version":27732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.129.0", + "prefixLen":25, + "network":"193.99.129.0\/25", + "version":27731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.129.128", + "prefixLen":25, + "network":"193.99.129.128\/25", + "version":27730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.130.0", + "prefixLen":25, + "network":"193.99.130.0\/25", + "version":27729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.130.128", + "prefixLen":25, + "network":"193.99.130.128\/25", + "version":27728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.131.0", + "prefixLen":25, + "network":"193.99.131.0\/25", + "version":27727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.131.128", + "prefixLen":25, + "network":"193.99.131.128\/25", + "version":27726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.144.0", + "prefixLen":25, + "network":"193.99.144.0\/25", + "version":27725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.144.128", + "prefixLen":25, + "network":"193.99.144.128\/25", + "version":27724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.145.0", + "prefixLen":25, + "network":"193.99.145.0\/25", + "version":27723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.145.128", + "prefixLen":25, + "network":"193.99.145.128\/25", + "version":27722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.146.0", + "prefixLen":25, + "network":"193.99.146.0\/25", + "version":27721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.146.128", + "prefixLen":25, + "network":"193.99.146.128\/25", + "version":27720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.147.0", + "prefixLen":25, + "network":"193.99.147.0\/25", + "version":27719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.147.128", + "prefixLen":25, + "network":"193.99.147.128\/25", + "version":27718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.160.0", + "prefixLen":25, + "network":"193.99.160.0\/25", + "version":27717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.160.128", + "prefixLen":25, + "network":"193.99.160.128\/25", + "version":27716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.161.0", + "prefixLen":25, + "network":"193.99.161.0\/25", + "version":27715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.161.128", + "prefixLen":25, + "network":"193.99.161.128\/25", + "version":27714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.162.0", + "prefixLen":25, + "network":"193.99.162.0\/25", + "version":27713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.162.128", + "prefixLen":25, + "network":"193.99.162.128\/25", + "version":27712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.163.0", + "prefixLen":25, + "network":"193.99.163.0\/25", + "version":27711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.163.128", + "prefixLen":25, + "network":"193.99.163.128\/25", + "version":27710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.176.0", + "prefixLen":25, + "network":"193.99.176.0\/25", + "version":27709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.176.128", + "prefixLen":25, + "network":"193.99.176.128\/25", + "version":27708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.177.0", + "prefixLen":25, + "network":"193.99.177.0\/25", + "version":27707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.177.128", + "prefixLen":25, + "network":"193.99.177.128\/25", + "version":27706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.178.0", + "prefixLen":25, + "network":"193.99.178.0\/25", + "version":27705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.178.128", + "prefixLen":25, + "network":"193.99.178.128\/25", + "version":27704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.179.0", + "prefixLen":25, + "network":"193.99.179.0\/25", + "version":27703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.179.128", + "prefixLen":25, + "network":"193.99.179.128\/25", + "version":27702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.192.0", + "prefixLen":25, + "network":"193.99.192.0\/25", + "version":27701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.192.128", + "prefixLen":25, + "network":"193.99.192.128\/25", + "version":27700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.193.0", + "prefixLen":25, + "network":"193.99.193.0\/25", + "version":27699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.193.128", + "prefixLen":25, + "network":"193.99.193.128\/25", + "version":27698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.194.0", + "prefixLen":25, + "network":"193.99.194.0\/25", + "version":27697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.194.128", + "prefixLen":25, + "network":"193.99.194.128\/25", + "version":27696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.195.0", + "prefixLen":25, + "network":"193.99.195.0\/25", + "version":27695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.195.128", + "prefixLen":25, + "network":"193.99.195.128\/25", + "version":27694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.208.0", + "prefixLen":25, + "network":"193.99.208.0\/25", + "version":27693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.208.128", + "prefixLen":25, + "network":"193.99.208.128\/25", + "version":27692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.209.0", + "prefixLen":25, + "network":"193.99.209.0\/25", + "version":27691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.209.128", + "prefixLen":25, + "network":"193.99.209.128\/25", + "version":27690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.210.0", + "prefixLen":25, + "network":"193.99.210.0\/25", + "version":27689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.210.128", + "prefixLen":25, + "network":"193.99.210.128\/25", + "version":27688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.211.0", + "prefixLen":25, + "network":"193.99.211.0\/25", + "version":27687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.211.128", + "prefixLen":25, + "network":"193.99.211.128\/25", + "version":27686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.224.0", + "prefixLen":25, + "network":"193.99.224.0\/25", + "version":27685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.224.128", + "prefixLen":25, + "network":"193.99.224.128\/25", + "version":27684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.225.0", + "prefixLen":25, + "network":"193.99.225.0\/25", + "version":27683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.225.128", + "prefixLen":25, + "network":"193.99.225.128\/25", + "version":27682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.226.0", + "prefixLen":25, + "network":"193.99.226.0\/25", + "version":27681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.226.128", + "prefixLen":25, + "network":"193.99.226.128\/25", + "version":27680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.227.0", + "prefixLen":25, + "network":"193.99.227.0\/25", + "version":27679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.227.128", + "prefixLen":25, + "network":"193.99.227.128\/25", + "version":27678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.240.0", + "prefixLen":25, + "network":"193.99.240.0\/25", + "version":27677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.240.128", + "prefixLen":25, + "network":"193.99.240.128\/25", + "version":27676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.241.0", + "prefixLen":25, + "network":"193.99.241.0\/25", + "version":27675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.241.128", + "prefixLen":25, + "network":"193.99.241.128\/25", + "version":27674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.242.0", + "prefixLen":25, + "network":"193.99.242.0\/25", + "version":27673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.242.128", + "prefixLen":25, + "network":"193.99.242.128\/25", + "version":27672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.243.0", + "prefixLen":25, + "network":"193.99.243.0\/25", + "version":27671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.99.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.99.243.128", + "prefixLen":25, + "network":"193.99.243.128\/25", + "version":27670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64787 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.0.0", + "prefixLen":25, + "network":"193.100.0.0\/25", + "version":27797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.0.128", + "prefixLen":25, + "network":"193.100.0.128\/25", + "version":27924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.1.0", + "prefixLen":25, + "network":"193.100.1.0\/25", + "version":27923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.1.128", + "prefixLen":25, + "network":"193.100.1.128\/25", + "version":27922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.2.0", + "prefixLen":25, + "network":"193.100.2.0\/25", + "version":27921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.2.128", + "prefixLen":25, + "network":"193.100.2.128\/25", + "version":27920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.3.0", + "prefixLen":25, + "network":"193.100.3.0\/25", + "version":27919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.3.128", + "prefixLen":25, + "network":"193.100.3.128\/25", + "version":27918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.16.0", + "prefixLen":25, + "network":"193.100.16.0\/25", + "version":27917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.16.128", + "prefixLen":25, + "network":"193.100.16.128\/25", + "version":27916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.17.0", + "prefixLen":25, + "network":"193.100.17.0\/25", + "version":27915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.17.128", + "prefixLen":25, + "network":"193.100.17.128\/25", + "version":27914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.18.0", + "prefixLen":25, + "network":"193.100.18.0\/25", + "version":27913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.18.128", + "prefixLen":25, + "network":"193.100.18.128\/25", + "version":27912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.19.0", + "prefixLen":25, + "network":"193.100.19.0\/25", + "version":27911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.19.128", + "prefixLen":25, + "network":"193.100.19.128\/25", + "version":27910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.32.0", + "prefixLen":25, + "network":"193.100.32.0\/25", + "version":27909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.32.128", + "prefixLen":25, + "network":"193.100.32.128\/25", + "version":27908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.33.0", + "prefixLen":25, + "network":"193.100.33.0\/25", + "version":27907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.33.128", + "prefixLen":25, + "network":"193.100.33.128\/25", + "version":27906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.34.0", + "prefixLen":25, + "network":"193.100.34.0\/25", + "version":27905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.34.128", + "prefixLen":25, + "network":"193.100.34.128\/25", + "version":27904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.35.0", + "prefixLen":25, + "network":"193.100.35.0\/25", + "version":27903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.35.128", + "prefixLen":25, + "network":"193.100.35.128\/25", + "version":27902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.48.0", + "prefixLen":25, + "network":"193.100.48.0\/25", + "version":27901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.48.128", + "prefixLen":25, + "network":"193.100.48.128\/25", + "version":27900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.49.0", + "prefixLen":25, + "network":"193.100.49.0\/25", + "version":27899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.49.128", + "prefixLen":25, + "network":"193.100.49.128\/25", + "version":27898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.50.0", + "prefixLen":25, + "network":"193.100.50.0\/25", + "version":27897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.50.128", + "prefixLen":25, + "network":"193.100.50.128\/25", + "version":27896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.51.0", + "prefixLen":25, + "network":"193.100.51.0\/25", + "version":27895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.51.128", + "prefixLen":25, + "network":"193.100.51.128\/25", + "version":27894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.64.0", + "prefixLen":25, + "network":"193.100.64.0\/25", + "version":27893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.64.128", + "prefixLen":25, + "network":"193.100.64.128\/25", + "version":27892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.65.0", + "prefixLen":25, + "network":"193.100.65.0\/25", + "version":27891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.65.128", + "prefixLen":25, + "network":"193.100.65.128\/25", + "version":27890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.66.0", + "prefixLen":25, + "network":"193.100.66.0\/25", + "version":27889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.66.128", + "prefixLen":25, + "network":"193.100.66.128\/25", + "version":27888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.67.0", + "prefixLen":25, + "network":"193.100.67.0\/25", + "version":27887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.67.128", + "prefixLen":25, + "network":"193.100.67.128\/25", + "version":27886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.80.0", + "prefixLen":25, + "network":"193.100.80.0\/25", + "version":27885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.80.128", + "prefixLen":25, + "network":"193.100.80.128\/25", + "version":27884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.81.0", + "prefixLen":25, + "network":"193.100.81.0\/25", + "version":27883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.81.128", + "prefixLen":25, + "network":"193.100.81.128\/25", + "version":27882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.82.0", + "prefixLen":25, + "network":"193.100.82.0\/25", + "version":27881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.82.128", + "prefixLen":25, + "network":"193.100.82.128\/25", + "version":27880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.83.0", + "prefixLen":25, + "network":"193.100.83.0\/25", + "version":27879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.83.128", + "prefixLen":25, + "network":"193.100.83.128\/25", + "version":27878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.96.0", + "prefixLen":25, + "network":"193.100.96.0\/25", + "version":27877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.96.128", + "prefixLen":25, + "network":"193.100.96.128\/25", + "version":27876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.97.0", + "prefixLen":25, + "network":"193.100.97.0\/25", + "version":27875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.97.128", + "prefixLen":25, + "network":"193.100.97.128\/25", + "version":27874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.98.0", + "prefixLen":25, + "network":"193.100.98.0\/25", + "version":27873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.98.128", + "prefixLen":25, + "network":"193.100.98.128\/25", + "version":27872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.99.0", + "prefixLen":25, + "network":"193.100.99.0\/25", + "version":27871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.99.128", + "prefixLen":25, + "network":"193.100.99.128\/25", + "version":27870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.112.0", + "prefixLen":25, + "network":"193.100.112.0\/25", + "version":27869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.112.128", + "prefixLen":25, + "network":"193.100.112.128\/25", + "version":27868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.113.0", + "prefixLen":25, + "network":"193.100.113.0\/25", + "version":27867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.113.128", + "prefixLen":25, + "network":"193.100.113.128\/25", + "version":27866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.114.0", + "prefixLen":25, + "network":"193.100.114.0\/25", + "version":27865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.114.128", + "prefixLen":25, + "network":"193.100.114.128\/25", + "version":27864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.115.0", + "prefixLen":25, + "network":"193.100.115.0\/25", + "version":27863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.115.128", + "prefixLen":25, + "network":"193.100.115.128\/25", + "version":27862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.128.0", + "prefixLen":25, + "network":"193.100.128.0\/25", + "version":27861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.128.128", + "prefixLen":25, + "network":"193.100.128.128\/25", + "version":27860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.129.0", + "prefixLen":25, + "network":"193.100.129.0\/25", + "version":27859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.129.128", + "prefixLen":25, + "network":"193.100.129.128\/25", + "version":27858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.130.0", + "prefixLen":25, + "network":"193.100.130.0\/25", + "version":27857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.130.128", + "prefixLen":25, + "network":"193.100.130.128\/25", + "version":27856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.131.0", + "prefixLen":25, + "network":"193.100.131.0\/25", + "version":27855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.131.128", + "prefixLen":25, + "network":"193.100.131.128\/25", + "version":27854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.144.0", + "prefixLen":25, + "network":"193.100.144.0\/25", + "version":27853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.144.128", + "prefixLen":25, + "network":"193.100.144.128\/25", + "version":27852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.145.0", + "prefixLen":25, + "network":"193.100.145.0\/25", + "version":27851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.145.128", + "prefixLen":25, + "network":"193.100.145.128\/25", + "version":27850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.146.0", + "prefixLen":25, + "network":"193.100.146.0\/25", + "version":27849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.146.128", + "prefixLen":25, + "network":"193.100.146.128\/25", + "version":27848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.147.0", + "prefixLen":25, + "network":"193.100.147.0\/25", + "version":27847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.147.128", + "prefixLen":25, + "network":"193.100.147.128\/25", + "version":27846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.160.0", + "prefixLen":25, + "network":"193.100.160.0\/25", + "version":27845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.160.128", + "prefixLen":25, + "network":"193.100.160.128\/25", + "version":27844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.161.0", + "prefixLen":25, + "network":"193.100.161.0\/25", + "version":27843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.161.128", + "prefixLen":25, + "network":"193.100.161.128\/25", + "version":27842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.162.0", + "prefixLen":25, + "network":"193.100.162.0\/25", + "version":27841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.162.128", + "prefixLen":25, + "network":"193.100.162.128\/25", + "version":27840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.163.0", + "prefixLen":25, + "network":"193.100.163.0\/25", + "version":27839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.163.128", + "prefixLen":25, + "network":"193.100.163.128\/25", + "version":27838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.176.0", + "prefixLen":25, + "network":"193.100.176.0\/25", + "version":27837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.176.128", + "prefixLen":25, + "network":"193.100.176.128\/25", + "version":27836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.177.0", + "prefixLen":25, + "network":"193.100.177.0\/25", + "version":27835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.177.128", + "prefixLen":25, + "network":"193.100.177.128\/25", + "version":27834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.178.0", + "prefixLen":25, + "network":"193.100.178.0\/25", + "version":27833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.178.128", + "prefixLen":25, + "network":"193.100.178.128\/25", + "version":27832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.179.0", + "prefixLen":25, + "network":"193.100.179.0\/25", + "version":27831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.179.128", + "prefixLen":25, + "network":"193.100.179.128\/25", + "version":27830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.192.0", + "prefixLen":25, + "network":"193.100.192.0\/25", + "version":27829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.192.128", + "prefixLen":25, + "network":"193.100.192.128\/25", + "version":27828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.193.0", + "prefixLen":25, + "network":"193.100.193.0\/25", + "version":27827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.193.128", + "prefixLen":25, + "network":"193.100.193.128\/25", + "version":27826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.194.0", + "prefixLen":25, + "network":"193.100.194.0\/25", + "version":27825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.194.128", + "prefixLen":25, + "network":"193.100.194.128\/25", + "version":27824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.195.0", + "prefixLen":25, + "network":"193.100.195.0\/25", + "version":27823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.195.128", + "prefixLen":25, + "network":"193.100.195.128\/25", + "version":27822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.208.0", + "prefixLen":25, + "network":"193.100.208.0\/25", + "version":27821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.208.128", + "prefixLen":25, + "network":"193.100.208.128\/25", + "version":27820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.209.0", + "prefixLen":25, + "network":"193.100.209.0\/25", + "version":27819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.209.128", + "prefixLen":25, + "network":"193.100.209.128\/25", + "version":27818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.210.0", + "prefixLen":25, + "network":"193.100.210.0\/25", + "version":27817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.210.128", + "prefixLen":25, + "network":"193.100.210.128\/25", + "version":27816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.211.0", + "prefixLen":25, + "network":"193.100.211.0\/25", + "version":27815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.211.128", + "prefixLen":25, + "network":"193.100.211.128\/25", + "version":27814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.224.0", + "prefixLen":25, + "network":"193.100.224.0\/25", + "version":27813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.224.128", + "prefixLen":25, + "network":"193.100.224.128\/25", + "version":27812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.225.0", + "prefixLen":25, + "network":"193.100.225.0\/25", + "version":27811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.225.128", + "prefixLen":25, + "network":"193.100.225.128\/25", + "version":27810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.226.0", + "prefixLen":25, + "network":"193.100.226.0\/25", + "version":27809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.226.128", + "prefixLen":25, + "network":"193.100.226.128\/25", + "version":27808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.227.0", + "prefixLen":25, + "network":"193.100.227.0\/25", + "version":27807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.227.128", + "prefixLen":25, + "network":"193.100.227.128\/25", + "version":27806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.240.0", + "prefixLen":25, + "network":"193.100.240.0\/25", + "version":27805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.240.128", + "prefixLen":25, + "network":"193.100.240.128\/25", + "version":27804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.241.0", + "prefixLen":25, + "network":"193.100.241.0\/25", + "version":27803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.241.128", + "prefixLen":25, + "network":"193.100.241.128\/25", + "version":27802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.242.0", + "prefixLen":25, + "network":"193.100.242.0\/25", + "version":27801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.242.128", + "prefixLen":25, + "network":"193.100.242.128\/25", + "version":27800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.243.0", + "prefixLen":25, + "network":"193.100.243.0\/25", + "version":27799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.100.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.100.243.128", + "prefixLen":25, + "network":"193.100.243.128\/25", + "version":27798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64788 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.0.0", + "prefixLen":25, + "network":"193.101.0.0\/25", + "version":27925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.0.128", + "prefixLen":25, + "network":"193.101.0.128\/25", + "version":28052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.1.0", + "prefixLen":25, + "network":"193.101.1.0\/25", + "version":28051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.1.128", + "prefixLen":25, + "network":"193.101.1.128\/25", + "version":28050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.2.0", + "prefixLen":25, + "network":"193.101.2.0\/25", + "version":28049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.2.128", + "prefixLen":25, + "network":"193.101.2.128\/25", + "version":28048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.3.0", + "prefixLen":25, + "network":"193.101.3.0\/25", + "version":28047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.3.128", + "prefixLen":25, + "network":"193.101.3.128\/25", + "version":28046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.16.0", + "prefixLen":25, + "network":"193.101.16.0\/25", + "version":28045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.16.128", + "prefixLen":25, + "network":"193.101.16.128\/25", + "version":28044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.17.0", + "prefixLen":25, + "network":"193.101.17.0\/25", + "version":28043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.17.128", + "prefixLen":25, + "network":"193.101.17.128\/25", + "version":28042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.18.0", + "prefixLen":25, + "network":"193.101.18.0\/25", + "version":28041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.18.128", + "prefixLen":25, + "network":"193.101.18.128\/25", + "version":28040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.19.0", + "prefixLen":25, + "network":"193.101.19.0\/25", + "version":28039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.19.128", + "prefixLen":25, + "network":"193.101.19.128\/25", + "version":28038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.32.0", + "prefixLen":25, + "network":"193.101.32.0\/25", + "version":28037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.32.128", + "prefixLen":25, + "network":"193.101.32.128\/25", + "version":28036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.33.0", + "prefixLen":25, + "network":"193.101.33.0\/25", + "version":28035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.33.128", + "prefixLen":25, + "network":"193.101.33.128\/25", + "version":28034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.34.0", + "prefixLen":25, + "network":"193.101.34.0\/25", + "version":28033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.34.128", + "prefixLen":25, + "network":"193.101.34.128\/25", + "version":28032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.35.0", + "prefixLen":25, + "network":"193.101.35.0\/25", + "version":28031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.35.128", + "prefixLen":25, + "network":"193.101.35.128\/25", + "version":28030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.48.0", + "prefixLen":25, + "network":"193.101.48.0\/25", + "version":28029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.48.128", + "prefixLen":25, + "network":"193.101.48.128\/25", + "version":28028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.49.0", + "prefixLen":25, + "network":"193.101.49.0\/25", + "version":28027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.49.128", + "prefixLen":25, + "network":"193.101.49.128\/25", + "version":28026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.50.0", + "prefixLen":25, + "network":"193.101.50.0\/25", + "version":28025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.50.128", + "prefixLen":25, + "network":"193.101.50.128\/25", + "version":28024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.51.0", + "prefixLen":25, + "network":"193.101.51.0\/25", + "version":28023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.51.128", + "prefixLen":25, + "network":"193.101.51.128\/25", + "version":28022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.64.0", + "prefixLen":25, + "network":"193.101.64.0\/25", + "version":28021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.64.128", + "prefixLen":25, + "network":"193.101.64.128\/25", + "version":28020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.65.0", + "prefixLen":25, + "network":"193.101.65.0\/25", + "version":28019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.65.128", + "prefixLen":25, + "network":"193.101.65.128\/25", + "version":28018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.66.0", + "prefixLen":25, + "network":"193.101.66.0\/25", + "version":28017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.66.128", + "prefixLen":25, + "network":"193.101.66.128\/25", + "version":28016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.67.0", + "prefixLen":25, + "network":"193.101.67.0\/25", + "version":28015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.67.128", + "prefixLen":25, + "network":"193.101.67.128\/25", + "version":28014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.80.0", + "prefixLen":25, + "network":"193.101.80.0\/25", + "version":28013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.80.128", + "prefixLen":25, + "network":"193.101.80.128\/25", + "version":28012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.81.0", + "prefixLen":25, + "network":"193.101.81.0\/25", + "version":28011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.81.128", + "prefixLen":25, + "network":"193.101.81.128\/25", + "version":28010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.82.0", + "prefixLen":25, + "network":"193.101.82.0\/25", + "version":28009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.82.128", + "prefixLen":25, + "network":"193.101.82.128\/25", + "version":28008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.83.0", + "prefixLen":25, + "network":"193.101.83.0\/25", + "version":28007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.83.128", + "prefixLen":25, + "network":"193.101.83.128\/25", + "version":28006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.96.0", + "prefixLen":25, + "network":"193.101.96.0\/25", + "version":28005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.96.128", + "prefixLen":25, + "network":"193.101.96.128\/25", + "version":28004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.97.0", + "prefixLen":25, + "network":"193.101.97.0\/25", + "version":28003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.97.128", + "prefixLen":25, + "network":"193.101.97.128\/25", + "version":28002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.98.0", + "prefixLen":25, + "network":"193.101.98.0\/25", + "version":28001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.98.128", + "prefixLen":25, + "network":"193.101.98.128\/25", + "version":28000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.99.0", + "prefixLen":25, + "network":"193.101.99.0\/25", + "version":27999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.99.128", + "prefixLen":25, + "network":"193.101.99.128\/25", + "version":27998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.112.0", + "prefixLen":25, + "network":"193.101.112.0\/25", + "version":27997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.112.128", + "prefixLen":25, + "network":"193.101.112.128\/25", + "version":27996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.113.0", + "prefixLen":25, + "network":"193.101.113.0\/25", + "version":27995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.113.128", + "prefixLen":25, + "network":"193.101.113.128\/25", + "version":27994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.114.0", + "prefixLen":25, + "network":"193.101.114.0\/25", + "version":27993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.114.128", + "prefixLen":25, + "network":"193.101.114.128\/25", + "version":27992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.115.0", + "prefixLen":25, + "network":"193.101.115.0\/25", + "version":27991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.115.128", + "prefixLen":25, + "network":"193.101.115.128\/25", + "version":27990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.128.0", + "prefixLen":25, + "network":"193.101.128.0\/25", + "version":27989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.128.128", + "prefixLen":25, + "network":"193.101.128.128\/25", + "version":27988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.129.0", + "prefixLen":25, + "network":"193.101.129.0\/25", + "version":27987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.129.128", + "prefixLen":25, + "network":"193.101.129.128\/25", + "version":27986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.130.0", + "prefixLen":25, + "network":"193.101.130.0\/25", + "version":27985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.130.128", + "prefixLen":25, + "network":"193.101.130.128\/25", + "version":27984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.131.0", + "prefixLen":25, + "network":"193.101.131.0\/25", + "version":27983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.131.128", + "prefixLen":25, + "network":"193.101.131.128\/25", + "version":27982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.144.0", + "prefixLen":25, + "network":"193.101.144.0\/25", + "version":27981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.144.128", + "prefixLen":25, + "network":"193.101.144.128\/25", + "version":27980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.145.0", + "prefixLen":25, + "network":"193.101.145.0\/25", + "version":27979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.145.128", + "prefixLen":25, + "network":"193.101.145.128\/25", + "version":27978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.146.0", + "prefixLen":25, + "network":"193.101.146.0\/25", + "version":27977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.146.128", + "prefixLen":25, + "network":"193.101.146.128\/25", + "version":27976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.147.0", + "prefixLen":25, + "network":"193.101.147.0\/25", + "version":27975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.147.128", + "prefixLen":25, + "network":"193.101.147.128\/25", + "version":27974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.160.0", + "prefixLen":25, + "network":"193.101.160.0\/25", + "version":27973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.160.128", + "prefixLen":25, + "network":"193.101.160.128\/25", + "version":27972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.161.0", + "prefixLen":25, + "network":"193.101.161.0\/25", + "version":27971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.161.128", + "prefixLen":25, + "network":"193.101.161.128\/25", + "version":27970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.162.0", + "prefixLen":25, + "network":"193.101.162.0\/25", + "version":27969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.162.128", + "prefixLen":25, + "network":"193.101.162.128\/25", + "version":27968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.163.0", + "prefixLen":25, + "network":"193.101.163.0\/25", + "version":27967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.163.128", + "prefixLen":25, + "network":"193.101.163.128\/25", + "version":27966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.176.0", + "prefixLen":25, + "network":"193.101.176.0\/25", + "version":27965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.176.128", + "prefixLen":25, + "network":"193.101.176.128\/25", + "version":27964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.177.0", + "prefixLen":25, + "network":"193.101.177.0\/25", + "version":27963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.177.128", + "prefixLen":25, + "network":"193.101.177.128\/25", + "version":27962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.178.0", + "prefixLen":25, + "network":"193.101.178.0\/25", + "version":27961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.178.128", + "prefixLen":25, + "network":"193.101.178.128\/25", + "version":27960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.179.0", + "prefixLen":25, + "network":"193.101.179.0\/25", + "version":27959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.179.128", + "prefixLen":25, + "network":"193.101.179.128\/25", + "version":27958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.192.0", + "prefixLen":25, + "network":"193.101.192.0\/25", + "version":27957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.192.128", + "prefixLen":25, + "network":"193.101.192.128\/25", + "version":27956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.193.0", + "prefixLen":25, + "network":"193.101.193.0\/25", + "version":27955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.193.128", + "prefixLen":25, + "network":"193.101.193.128\/25", + "version":27954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.194.0", + "prefixLen":25, + "network":"193.101.194.0\/25", + "version":27953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.194.128", + "prefixLen":25, + "network":"193.101.194.128\/25", + "version":27952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.195.0", + "prefixLen":25, + "network":"193.101.195.0\/25", + "version":27951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.195.128", + "prefixLen":25, + "network":"193.101.195.128\/25", + "version":27950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.208.0", + "prefixLen":25, + "network":"193.101.208.0\/25", + "version":27949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.208.128", + "prefixLen":25, + "network":"193.101.208.128\/25", + "version":27948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.209.0", + "prefixLen":25, + "network":"193.101.209.0\/25", + "version":27947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.209.128", + "prefixLen":25, + "network":"193.101.209.128\/25", + "version":27946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.210.0", + "prefixLen":25, + "network":"193.101.210.0\/25", + "version":27945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.210.128", + "prefixLen":25, + "network":"193.101.210.128\/25", + "version":27944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.211.0", + "prefixLen":25, + "network":"193.101.211.0\/25", + "version":27943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.211.128", + "prefixLen":25, + "network":"193.101.211.128\/25", + "version":27942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.224.0", + "prefixLen":25, + "network":"193.101.224.0\/25", + "version":27941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.224.128", + "prefixLen":25, + "network":"193.101.224.128\/25", + "version":27940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.225.0", + "prefixLen":25, + "network":"193.101.225.0\/25", + "version":27939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.225.128", + "prefixLen":25, + "network":"193.101.225.128\/25", + "version":27938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.226.0", + "prefixLen":25, + "network":"193.101.226.0\/25", + "version":27937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.226.128", + "prefixLen":25, + "network":"193.101.226.128\/25", + "version":27936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.227.0", + "prefixLen":25, + "network":"193.101.227.0\/25", + "version":27935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.227.128", + "prefixLen":25, + "network":"193.101.227.128\/25", + "version":27934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.240.0", + "prefixLen":25, + "network":"193.101.240.0\/25", + "version":27933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.240.128", + "prefixLen":25, + "network":"193.101.240.128\/25", + "version":27932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.241.0", + "prefixLen":25, + "network":"193.101.241.0\/25", + "version":27931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.241.128", + "prefixLen":25, + "network":"193.101.241.128\/25", + "version":27930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.242.0", + "prefixLen":25, + "network":"193.101.242.0\/25", + "version":27929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.242.128", + "prefixLen":25, + "network":"193.101.242.128\/25", + "version":27928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.243.0", + "prefixLen":25, + "network":"193.101.243.0\/25", + "version":27927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.101.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.101.243.128", + "prefixLen":25, + "network":"193.101.243.128\/25", + "version":27926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64789 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.0.0", + "prefixLen":25, + "network":"193.102.0.0\/25", + "version":28053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.0.128", + "prefixLen":25, + "network":"193.102.0.128\/25", + "version":28180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.1.0", + "prefixLen":25, + "network":"193.102.1.0\/25", + "version":28179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.1.128", + "prefixLen":25, + "network":"193.102.1.128\/25", + "version":28178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.2.0", + "prefixLen":25, + "network":"193.102.2.0\/25", + "version":28177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.2.128", + "prefixLen":25, + "network":"193.102.2.128\/25", + "version":28176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.3.0", + "prefixLen":25, + "network":"193.102.3.0\/25", + "version":28175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.3.128", + "prefixLen":25, + "network":"193.102.3.128\/25", + "version":28174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.16.0", + "prefixLen":25, + "network":"193.102.16.0\/25", + "version":28173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.16.128", + "prefixLen":25, + "network":"193.102.16.128\/25", + "version":28172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.17.0", + "prefixLen":25, + "network":"193.102.17.0\/25", + "version":28171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.17.128", + "prefixLen":25, + "network":"193.102.17.128\/25", + "version":28170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.18.0", + "prefixLen":25, + "network":"193.102.18.0\/25", + "version":28169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.18.128", + "prefixLen":25, + "network":"193.102.18.128\/25", + "version":28168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.19.0", + "prefixLen":25, + "network":"193.102.19.0\/25", + "version":28167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.19.128", + "prefixLen":25, + "network":"193.102.19.128\/25", + "version":28166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.32.0", + "prefixLen":25, + "network":"193.102.32.0\/25", + "version":28165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.32.128", + "prefixLen":25, + "network":"193.102.32.128\/25", + "version":28164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.33.0", + "prefixLen":25, + "network":"193.102.33.0\/25", + "version":28163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.33.128", + "prefixLen":25, + "network":"193.102.33.128\/25", + "version":28162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.34.0", + "prefixLen":25, + "network":"193.102.34.0\/25", + "version":28161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.34.128", + "prefixLen":25, + "network":"193.102.34.128\/25", + "version":28160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.35.0", + "prefixLen":25, + "network":"193.102.35.0\/25", + "version":28159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.35.128", + "prefixLen":25, + "network":"193.102.35.128\/25", + "version":28158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.48.0", + "prefixLen":25, + "network":"193.102.48.0\/25", + "version":28157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.48.128", + "prefixLen":25, + "network":"193.102.48.128\/25", + "version":28156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.49.0", + "prefixLen":25, + "network":"193.102.49.0\/25", + "version":28155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.49.128", + "prefixLen":25, + "network":"193.102.49.128\/25", + "version":28154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.50.0", + "prefixLen":25, + "network":"193.102.50.0\/25", + "version":28153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.50.128", + "prefixLen":25, + "network":"193.102.50.128\/25", + "version":28152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.51.0", + "prefixLen":25, + "network":"193.102.51.0\/25", + "version":28151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.51.128", + "prefixLen":25, + "network":"193.102.51.128\/25", + "version":28150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.64.0", + "prefixLen":25, + "network":"193.102.64.0\/25", + "version":28149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.64.128", + "prefixLen":25, + "network":"193.102.64.128\/25", + "version":28148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.65.0", + "prefixLen":25, + "network":"193.102.65.0\/25", + "version":28147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.65.128", + "prefixLen":25, + "network":"193.102.65.128\/25", + "version":28146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.66.0", + "prefixLen":25, + "network":"193.102.66.0\/25", + "version":28145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.66.128", + "prefixLen":25, + "network":"193.102.66.128\/25", + "version":28144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.67.0", + "prefixLen":25, + "network":"193.102.67.0\/25", + "version":28143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.67.128", + "prefixLen":25, + "network":"193.102.67.128\/25", + "version":28142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.80.0", + "prefixLen":25, + "network":"193.102.80.0\/25", + "version":28141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.80.128", + "prefixLen":25, + "network":"193.102.80.128\/25", + "version":28140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.81.0", + "prefixLen":25, + "network":"193.102.81.0\/25", + "version":28139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.81.128", + "prefixLen":25, + "network":"193.102.81.128\/25", + "version":28138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.82.0", + "prefixLen":25, + "network":"193.102.82.0\/25", + "version":28137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.82.128", + "prefixLen":25, + "network":"193.102.82.128\/25", + "version":28136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.83.0", + "prefixLen":25, + "network":"193.102.83.0\/25", + "version":28135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.83.128", + "prefixLen":25, + "network":"193.102.83.128\/25", + "version":28134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.96.0", + "prefixLen":25, + "network":"193.102.96.0\/25", + "version":28133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.96.128", + "prefixLen":25, + "network":"193.102.96.128\/25", + "version":28132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.97.0", + "prefixLen":25, + "network":"193.102.97.0\/25", + "version":28131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.97.128", + "prefixLen":25, + "network":"193.102.97.128\/25", + "version":28130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.98.0", + "prefixLen":25, + "network":"193.102.98.0\/25", + "version":28129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.98.128", + "prefixLen":25, + "network":"193.102.98.128\/25", + "version":28128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.99.0", + "prefixLen":25, + "network":"193.102.99.0\/25", + "version":28127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.99.128", + "prefixLen":25, + "network":"193.102.99.128\/25", + "version":28126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.112.0", + "prefixLen":25, + "network":"193.102.112.0\/25", + "version":28125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.112.128", + "prefixLen":25, + "network":"193.102.112.128\/25", + "version":28124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.113.0", + "prefixLen":25, + "network":"193.102.113.0\/25", + "version":28123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.113.128", + "prefixLen":25, + "network":"193.102.113.128\/25", + "version":28122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.114.0", + "prefixLen":25, + "network":"193.102.114.0\/25", + "version":28121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.114.128", + "prefixLen":25, + "network":"193.102.114.128\/25", + "version":28120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.115.0", + "prefixLen":25, + "network":"193.102.115.0\/25", + "version":28119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.115.128", + "prefixLen":25, + "network":"193.102.115.128\/25", + "version":28118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.128.0", + "prefixLen":25, + "network":"193.102.128.0\/25", + "version":28117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.128.128", + "prefixLen":25, + "network":"193.102.128.128\/25", + "version":28116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.129.0", + "prefixLen":25, + "network":"193.102.129.0\/25", + "version":28115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.129.128", + "prefixLen":25, + "network":"193.102.129.128\/25", + "version":28114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.130.0", + "prefixLen":25, + "network":"193.102.130.0\/25", + "version":28113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.130.128", + "prefixLen":25, + "network":"193.102.130.128\/25", + "version":28112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.131.0", + "prefixLen":25, + "network":"193.102.131.0\/25", + "version":28111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.131.128", + "prefixLen":25, + "network":"193.102.131.128\/25", + "version":28110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.144.0", + "prefixLen":25, + "network":"193.102.144.0\/25", + "version":28109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.144.128", + "prefixLen":25, + "network":"193.102.144.128\/25", + "version":28108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.145.0", + "prefixLen":25, + "network":"193.102.145.0\/25", + "version":28107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.145.128", + "prefixLen":25, + "network":"193.102.145.128\/25", + "version":28106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.146.0", + "prefixLen":25, + "network":"193.102.146.0\/25", + "version":28105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.146.128", + "prefixLen":25, + "network":"193.102.146.128\/25", + "version":28104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.147.0", + "prefixLen":25, + "network":"193.102.147.0\/25", + "version":28103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.147.128", + "prefixLen":25, + "network":"193.102.147.128\/25", + "version":28102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.160.0", + "prefixLen":25, + "network":"193.102.160.0\/25", + "version":28101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.160.128", + "prefixLen":25, + "network":"193.102.160.128\/25", + "version":28100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.161.0", + "prefixLen":25, + "network":"193.102.161.0\/25", + "version":28099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.161.128", + "prefixLen":25, + "network":"193.102.161.128\/25", + "version":28098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.162.0", + "prefixLen":25, + "network":"193.102.162.0\/25", + "version":28097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.162.128", + "prefixLen":25, + "network":"193.102.162.128\/25", + "version":28096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.163.0", + "prefixLen":25, + "network":"193.102.163.0\/25", + "version":28095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.163.128", + "prefixLen":25, + "network":"193.102.163.128\/25", + "version":28094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.176.0", + "prefixLen":25, + "network":"193.102.176.0\/25", + "version":28093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.176.128", + "prefixLen":25, + "network":"193.102.176.128\/25", + "version":28092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.177.0", + "prefixLen":25, + "network":"193.102.177.0\/25", + "version":28091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.177.128", + "prefixLen":25, + "network":"193.102.177.128\/25", + "version":28090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.178.0", + "prefixLen":25, + "network":"193.102.178.0\/25", + "version":28089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.178.128", + "prefixLen":25, + "network":"193.102.178.128\/25", + "version":28088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.179.0", + "prefixLen":25, + "network":"193.102.179.0\/25", + "version":28087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.179.128", + "prefixLen":25, + "network":"193.102.179.128\/25", + "version":28086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.192.0", + "prefixLen":25, + "network":"193.102.192.0\/25", + "version":28085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.192.128", + "prefixLen":25, + "network":"193.102.192.128\/25", + "version":28084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.193.0", + "prefixLen":25, + "network":"193.102.193.0\/25", + "version":28083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.193.128", + "prefixLen":25, + "network":"193.102.193.128\/25", + "version":28082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.194.0", + "prefixLen":25, + "network":"193.102.194.0\/25", + "version":28081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.194.128", + "prefixLen":25, + "network":"193.102.194.128\/25", + "version":28080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.195.0", + "prefixLen":25, + "network":"193.102.195.0\/25", + "version":28079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.195.128", + "prefixLen":25, + "network":"193.102.195.128\/25", + "version":28078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.208.0", + "prefixLen":25, + "network":"193.102.208.0\/25", + "version":28077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.208.128", + "prefixLen":25, + "network":"193.102.208.128\/25", + "version":28076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.209.0", + "prefixLen":25, + "network":"193.102.209.0\/25", + "version":28075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.209.128", + "prefixLen":25, + "network":"193.102.209.128\/25", + "version":28074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.210.0", + "prefixLen":25, + "network":"193.102.210.0\/25", + "version":28073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.210.128", + "prefixLen":25, + "network":"193.102.210.128\/25", + "version":28072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.211.0", + "prefixLen":25, + "network":"193.102.211.0\/25", + "version":28071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.211.128", + "prefixLen":25, + "network":"193.102.211.128\/25", + "version":28070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.224.0", + "prefixLen":25, + "network":"193.102.224.0\/25", + "version":28069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.224.128", + "prefixLen":25, + "network":"193.102.224.128\/25", + "version":28068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.225.0", + "prefixLen":25, + "network":"193.102.225.0\/25", + "version":28067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.225.128", + "prefixLen":25, + "network":"193.102.225.128\/25", + "version":28066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.226.0", + "prefixLen":25, + "network":"193.102.226.0\/25", + "version":28065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.226.128", + "prefixLen":25, + "network":"193.102.226.128\/25", + "version":28064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.227.0", + "prefixLen":25, + "network":"193.102.227.0\/25", + "version":28063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.227.128", + "prefixLen":25, + "network":"193.102.227.128\/25", + "version":28062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.240.0", + "prefixLen":25, + "network":"193.102.240.0\/25", + "version":28061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.240.128", + "prefixLen":25, + "network":"193.102.240.128\/25", + "version":28060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.241.0", + "prefixLen":25, + "network":"193.102.241.0\/25", + "version":28059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.241.128", + "prefixLen":25, + "network":"193.102.241.128\/25", + "version":28058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.242.0", + "prefixLen":25, + "network":"193.102.242.0\/25", + "version":28057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.242.128", + "prefixLen":25, + "network":"193.102.242.128\/25", + "version":28056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.243.0", + "prefixLen":25, + "network":"193.102.243.0\/25", + "version":28055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.102.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.102.243.128", + "prefixLen":25, + "network":"193.102.243.128\/25", + "version":28054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64790 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.0.0", + "prefixLen":25, + "network":"193.103.0.0\/25", + "version":28181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.0.128", + "prefixLen":25, + "network":"193.103.0.128\/25", + "version":28308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.1.0", + "prefixLen":25, + "network":"193.103.1.0\/25", + "version":28307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.1.128", + "prefixLen":25, + "network":"193.103.1.128\/25", + "version":28306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.2.0", + "prefixLen":25, + "network":"193.103.2.0\/25", + "version":28305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.2.128", + "prefixLen":25, + "network":"193.103.2.128\/25", + "version":28304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.3.0", + "prefixLen":25, + "network":"193.103.3.0\/25", + "version":28303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.3.128", + "prefixLen":25, + "network":"193.103.3.128\/25", + "version":28302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.16.0", + "prefixLen":25, + "network":"193.103.16.0\/25", + "version":28301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.16.128", + "prefixLen":25, + "network":"193.103.16.128\/25", + "version":28300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.17.0", + "prefixLen":25, + "network":"193.103.17.0\/25", + "version":28299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.17.128", + "prefixLen":25, + "network":"193.103.17.128\/25", + "version":28298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.18.0", + "prefixLen":25, + "network":"193.103.18.0\/25", + "version":28297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.18.128", + "prefixLen":25, + "network":"193.103.18.128\/25", + "version":28296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.19.0", + "prefixLen":25, + "network":"193.103.19.0\/25", + "version":28295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.19.128", + "prefixLen":25, + "network":"193.103.19.128\/25", + "version":28294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.32.0", + "prefixLen":25, + "network":"193.103.32.0\/25", + "version":28293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.32.128", + "prefixLen":25, + "network":"193.103.32.128\/25", + "version":28292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.33.0", + "prefixLen":25, + "network":"193.103.33.0\/25", + "version":28291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.33.128", + "prefixLen":25, + "network":"193.103.33.128\/25", + "version":28290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.34.0", + "prefixLen":25, + "network":"193.103.34.0\/25", + "version":28289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.34.128", + "prefixLen":25, + "network":"193.103.34.128\/25", + "version":28288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.35.0", + "prefixLen":25, + "network":"193.103.35.0\/25", + "version":28287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.35.128", + "prefixLen":25, + "network":"193.103.35.128\/25", + "version":28286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.48.0", + "prefixLen":25, + "network":"193.103.48.0\/25", + "version":28285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.48.128", + "prefixLen":25, + "network":"193.103.48.128\/25", + "version":28284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.49.0", + "prefixLen":25, + "network":"193.103.49.0\/25", + "version":28283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.49.128", + "prefixLen":25, + "network":"193.103.49.128\/25", + "version":28282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.50.0", + "prefixLen":25, + "network":"193.103.50.0\/25", + "version":28281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.50.128", + "prefixLen":25, + "network":"193.103.50.128\/25", + "version":28280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.51.0", + "prefixLen":25, + "network":"193.103.51.0\/25", + "version":28279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.51.128", + "prefixLen":25, + "network":"193.103.51.128\/25", + "version":28278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.64.0", + "prefixLen":25, + "network":"193.103.64.0\/25", + "version":28277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.64.128", + "prefixLen":25, + "network":"193.103.64.128\/25", + "version":28276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.65.0", + "prefixLen":25, + "network":"193.103.65.0\/25", + "version":28275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.65.128", + "prefixLen":25, + "network":"193.103.65.128\/25", + "version":28274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.66.0", + "prefixLen":25, + "network":"193.103.66.0\/25", + "version":28273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.66.128", + "prefixLen":25, + "network":"193.103.66.128\/25", + "version":28272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.67.0", + "prefixLen":25, + "network":"193.103.67.0\/25", + "version":28271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.67.128", + "prefixLen":25, + "network":"193.103.67.128\/25", + "version":28270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.80.0", + "prefixLen":25, + "network":"193.103.80.0\/25", + "version":28269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.80.128", + "prefixLen":25, + "network":"193.103.80.128\/25", + "version":28268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.81.0", + "prefixLen":25, + "network":"193.103.81.0\/25", + "version":28267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.81.128", + "prefixLen":25, + "network":"193.103.81.128\/25", + "version":28266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.82.0", + "prefixLen":25, + "network":"193.103.82.0\/25", + "version":28265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.82.128", + "prefixLen":25, + "network":"193.103.82.128\/25", + "version":28264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.83.0", + "prefixLen":25, + "network":"193.103.83.0\/25", + "version":28263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.83.128", + "prefixLen":25, + "network":"193.103.83.128\/25", + "version":28262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.96.0", + "prefixLen":25, + "network":"193.103.96.0\/25", + "version":28261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.96.128", + "prefixLen":25, + "network":"193.103.96.128\/25", + "version":28260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.97.0", + "prefixLen":25, + "network":"193.103.97.0\/25", + "version":28259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.97.128", + "prefixLen":25, + "network":"193.103.97.128\/25", + "version":28258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.98.0", + "prefixLen":25, + "network":"193.103.98.0\/25", + "version":28257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.98.128", + "prefixLen":25, + "network":"193.103.98.128\/25", + "version":28256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.99.0", + "prefixLen":25, + "network":"193.103.99.0\/25", + "version":28255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.99.128", + "prefixLen":25, + "network":"193.103.99.128\/25", + "version":28254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.112.0", + "prefixLen":25, + "network":"193.103.112.0\/25", + "version":28253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.112.128", + "prefixLen":25, + "network":"193.103.112.128\/25", + "version":28252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.113.0", + "prefixLen":25, + "network":"193.103.113.0\/25", + "version":28251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.113.128", + "prefixLen":25, + "network":"193.103.113.128\/25", + "version":28250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.114.0", + "prefixLen":25, + "network":"193.103.114.0\/25", + "version":28249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.114.128", + "prefixLen":25, + "network":"193.103.114.128\/25", + "version":28248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.115.0", + "prefixLen":25, + "network":"193.103.115.0\/25", + "version":28247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.115.128", + "prefixLen":25, + "network":"193.103.115.128\/25", + "version":28246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.128.0", + "prefixLen":25, + "network":"193.103.128.0\/25", + "version":28245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.128.128", + "prefixLen":25, + "network":"193.103.128.128\/25", + "version":28244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.129.0", + "prefixLen":25, + "network":"193.103.129.0\/25", + "version":28243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.129.128", + "prefixLen":25, + "network":"193.103.129.128\/25", + "version":28242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.130.0", + "prefixLen":25, + "network":"193.103.130.0\/25", + "version":28241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.130.128", + "prefixLen":25, + "network":"193.103.130.128\/25", + "version":28240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.131.0", + "prefixLen":25, + "network":"193.103.131.0\/25", + "version":28239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.131.128", + "prefixLen":25, + "network":"193.103.131.128\/25", + "version":28238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.144.0", + "prefixLen":25, + "network":"193.103.144.0\/25", + "version":28237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.144.128", + "prefixLen":25, + "network":"193.103.144.128\/25", + "version":28236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.145.0", + "prefixLen":25, + "network":"193.103.145.0\/25", + "version":28235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.145.128", + "prefixLen":25, + "network":"193.103.145.128\/25", + "version":28234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.146.0", + "prefixLen":25, + "network":"193.103.146.0\/25", + "version":28233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.146.128", + "prefixLen":25, + "network":"193.103.146.128\/25", + "version":28232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.147.0", + "prefixLen":25, + "network":"193.103.147.0\/25", + "version":28231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.147.128", + "prefixLen":25, + "network":"193.103.147.128\/25", + "version":28230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.160.0", + "prefixLen":25, + "network":"193.103.160.0\/25", + "version":28229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.160.128", + "prefixLen":25, + "network":"193.103.160.128\/25", + "version":28228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.161.0", + "prefixLen":25, + "network":"193.103.161.0\/25", + "version":28227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.161.128", + "prefixLen":25, + "network":"193.103.161.128\/25", + "version":28226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.162.0", + "prefixLen":25, + "network":"193.103.162.0\/25", + "version":28225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.162.128", + "prefixLen":25, + "network":"193.103.162.128\/25", + "version":28224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.163.0", + "prefixLen":25, + "network":"193.103.163.0\/25", + "version":28223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.163.128", + "prefixLen":25, + "network":"193.103.163.128\/25", + "version":28222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.176.0", + "prefixLen":25, + "network":"193.103.176.0\/25", + "version":28221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.176.128", + "prefixLen":25, + "network":"193.103.176.128\/25", + "version":28220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.177.0", + "prefixLen":25, + "network":"193.103.177.0\/25", + "version":28219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.177.128", + "prefixLen":25, + "network":"193.103.177.128\/25", + "version":28218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.178.0", + "prefixLen":25, + "network":"193.103.178.0\/25", + "version":28217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.178.128", + "prefixLen":25, + "network":"193.103.178.128\/25", + "version":28216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.179.0", + "prefixLen":25, + "network":"193.103.179.0\/25", + "version":28215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.179.128", + "prefixLen":25, + "network":"193.103.179.128\/25", + "version":28214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.192.0", + "prefixLen":25, + "network":"193.103.192.0\/25", + "version":28213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.192.128", + "prefixLen":25, + "network":"193.103.192.128\/25", + "version":28212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.193.0", + "prefixLen":25, + "network":"193.103.193.0\/25", + "version":28211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.193.128", + "prefixLen":25, + "network":"193.103.193.128\/25", + "version":28210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.194.0", + "prefixLen":25, + "network":"193.103.194.0\/25", + "version":28209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.194.128", + "prefixLen":25, + "network":"193.103.194.128\/25", + "version":28208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.195.0", + "prefixLen":25, + "network":"193.103.195.0\/25", + "version":28207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.195.128", + "prefixLen":25, + "network":"193.103.195.128\/25", + "version":28206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.208.0", + "prefixLen":25, + "network":"193.103.208.0\/25", + "version":28205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.208.128", + "prefixLen":25, + "network":"193.103.208.128\/25", + "version":28204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.209.0", + "prefixLen":25, + "network":"193.103.209.0\/25", + "version":28203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.209.128", + "prefixLen":25, + "network":"193.103.209.128\/25", + "version":28202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.210.0", + "prefixLen":25, + "network":"193.103.210.0\/25", + "version":28201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.210.128", + "prefixLen":25, + "network":"193.103.210.128\/25", + "version":28200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.211.0", + "prefixLen":25, + "network":"193.103.211.0\/25", + "version":28199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.211.128", + "prefixLen":25, + "network":"193.103.211.128\/25", + "version":28198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.224.0", + "prefixLen":25, + "network":"193.103.224.0\/25", + "version":28197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.224.128", + "prefixLen":25, + "network":"193.103.224.128\/25", + "version":28196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.225.0", + "prefixLen":25, + "network":"193.103.225.0\/25", + "version":28195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.225.128", + "prefixLen":25, + "network":"193.103.225.128\/25", + "version":28194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.226.0", + "prefixLen":25, + "network":"193.103.226.0\/25", + "version":28193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.226.128", + "prefixLen":25, + "network":"193.103.226.128\/25", + "version":28192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.227.0", + "prefixLen":25, + "network":"193.103.227.0\/25", + "version":28191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.227.128", + "prefixLen":25, + "network":"193.103.227.128\/25", + "version":28190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.240.0", + "prefixLen":25, + "network":"193.103.240.0\/25", + "version":28189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.240.128", + "prefixLen":25, + "network":"193.103.240.128\/25", + "version":28188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.241.0", + "prefixLen":25, + "network":"193.103.241.0\/25", + "version":28187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.241.128", + "prefixLen":25, + "network":"193.103.241.128\/25", + "version":28186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.242.0", + "prefixLen":25, + "network":"193.103.242.0\/25", + "version":28185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.242.128", + "prefixLen":25, + "network":"193.103.242.128\/25", + "version":28184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.243.0", + "prefixLen":25, + "network":"193.103.243.0\/25", + "version":28183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.103.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.103.243.128", + "prefixLen":25, + "network":"193.103.243.128\/25", + "version":28182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64791 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.0.0", + "prefixLen":25, + "network":"193.104.0.0\/25", + "version":28309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.0.128", + "prefixLen":25, + "network":"193.104.0.128\/25", + "version":28436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.1.0", + "prefixLen":25, + "network":"193.104.1.0\/25", + "version":28435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.1.128", + "prefixLen":25, + "network":"193.104.1.128\/25", + "version":28434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.2.0", + "prefixLen":25, + "network":"193.104.2.0\/25", + "version":28433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.2.128", + "prefixLen":25, + "network":"193.104.2.128\/25", + "version":28432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.3.0", + "prefixLen":25, + "network":"193.104.3.0\/25", + "version":28431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.3.128", + "prefixLen":25, + "network":"193.104.3.128\/25", + "version":28430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.16.0", + "prefixLen":25, + "network":"193.104.16.0\/25", + "version":28429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.16.128", + "prefixLen":25, + "network":"193.104.16.128\/25", + "version":28428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.17.0", + "prefixLen":25, + "network":"193.104.17.0\/25", + "version":28427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.17.128", + "prefixLen":25, + "network":"193.104.17.128\/25", + "version":28426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.18.0", + "prefixLen":25, + "network":"193.104.18.0\/25", + "version":28425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.18.128", + "prefixLen":25, + "network":"193.104.18.128\/25", + "version":28424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.19.0", + "prefixLen":25, + "network":"193.104.19.0\/25", + "version":28423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.19.128", + "prefixLen":25, + "network":"193.104.19.128\/25", + "version":28422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.32.0", + "prefixLen":25, + "network":"193.104.32.0\/25", + "version":28421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.32.128", + "prefixLen":25, + "network":"193.104.32.128\/25", + "version":28420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.33.0", + "prefixLen":25, + "network":"193.104.33.0\/25", + "version":28419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.33.128", + "prefixLen":25, + "network":"193.104.33.128\/25", + "version":28418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.34.0", + "prefixLen":25, + "network":"193.104.34.0\/25", + "version":28417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.34.128", + "prefixLen":25, + "network":"193.104.34.128\/25", + "version":28416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.35.0", + "prefixLen":25, + "network":"193.104.35.0\/25", + "version":28415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.35.128", + "prefixLen":25, + "network":"193.104.35.128\/25", + "version":28414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.48.0", + "prefixLen":25, + "network":"193.104.48.0\/25", + "version":28413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.48.128", + "prefixLen":25, + "network":"193.104.48.128\/25", + "version":28412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.49.0", + "prefixLen":25, + "network":"193.104.49.0\/25", + "version":28411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.49.128", + "prefixLen":25, + "network":"193.104.49.128\/25", + "version":28410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.50.0", + "prefixLen":25, + "network":"193.104.50.0\/25", + "version":28409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.50.128", + "prefixLen":25, + "network":"193.104.50.128\/25", + "version":28408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.51.0", + "prefixLen":25, + "network":"193.104.51.0\/25", + "version":28407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.51.128", + "prefixLen":25, + "network":"193.104.51.128\/25", + "version":28406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.64.0", + "prefixLen":25, + "network":"193.104.64.0\/25", + "version":28405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.64.128", + "prefixLen":25, + "network":"193.104.64.128\/25", + "version":28404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.65.0", + "prefixLen":25, + "network":"193.104.65.0\/25", + "version":28403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.65.128", + "prefixLen":25, + "network":"193.104.65.128\/25", + "version":28402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.66.0", + "prefixLen":25, + "network":"193.104.66.0\/25", + "version":28401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.66.128", + "prefixLen":25, + "network":"193.104.66.128\/25", + "version":28400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.67.0", + "prefixLen":25, + "network":"193.104.67.0\/25", + "version":28399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.67.128", + "prefixLen":25, + "network":"193.104.67.128\/25", + "version":28398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.80.0", + "prefixLen":25, + "network":"193.104.80.0\/25", + "version":28397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.80.128", + "prefixLen":25, + "network":"193.104.80.128\/25", + "version":28396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.81.0", + "prefixLen":25, + "network":"193.104.81.0\/25", + "version":28395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.81.128", + "prefixLen":25, + "network":"193.104.81.128\/25", + "version":28394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.82.0", + "prefixLen":25, + "network":"193.104.82.0\/25", + "version":28393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.82.128", + "prefixLen":25, + "network":"193.104.82.128\/25", + "version":28392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.83.0", + "prefixLen":25, + "network":"193.104.83.0\/25", + "version":28391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.83.128", + "prefixLen":25, + "network":"193.104.83.128\/25", + "version":28390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.96.0", + "prefixLen":25, + "network":"193.104.96.0\/25", + "version":28389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.96.128", + "prefixLen":25, + "network":"193.104.96.128\/25", + "version":28388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.97.0", + "prefixLen":25, + "network":"193.104.97.0\/25", + "version":28387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.97.128", + "prefixLen":25, + "network":"193.104.97.128\/25", + "version":28386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.98.0", + "prefixLen":25, + "network":"193.104.98.0\/25", + "version":28385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.98.128", + "prefixLen":25, + "network":"193.104.98.128\/25", + "version":28384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.99.0", + "prefixLen":25, + "network":"193.104.99.0\/25", + "version":28383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.99.128", + "prefixLen":25, + "network":"193.104.99.128\/25", + "version":28382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.112.0", + "prefixLen":25, + "network":"193.104.112.0\/25", + "version":28381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.112.128", + "prefixLen":25, + "network":"193.104.112.128\/25", + "version":28380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.113.0", + "prefixLen":25, + "network":"193.104.113.0\/25", + "version":28379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.113.128", + "prefixLen":25, + "network":"193.104.113.128\/25", + "version":28378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.114.0", + "prefixLen":25, + "network":"193.104.114.0\/25", + "version":28377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.114.128", + "prefixLen":25, + "network":"193.104.114.128\/25", + "version":28376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.115.0", + "prefixLen":25, + "network":"193.104.115.0\/25", + "version":28375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.115.128", + "prefixLen":25, + "network":"193.104.115.128\/25", + "version":28374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.128.0", + "prefixLen":25, + "network":"193.104.128.0\/25", + "version":28373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.128.128", + "prefixLen":25, + "network":"193.104.128.128\/25", + "version":28372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.129.0", + "prefixLen":25, + "network":"193.104.129.0\/25", + "version":28371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.129.128", + "prefixLen":25, + "network":"193.104.129.128\/25", + "version":28370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.130.0", + "prefixLen":25, + "network":"193.104.130.0\/25", + "version":28369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.130.128", + "prefixLen":25, + "network":"193.104.130.128\/25", + "version":28368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.131.0", + "prefixLen":25, + "network":"193.104.131.0\/25", + "version":28367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.131.128", + "prefixLen":25, + "network":"193.104.131.128\/25", + "version":28366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.144.0", + "prefixLen":25, + "network":"193.104.144.0\/25", + "version":28365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.144.128", + "prefixLen":25, + "network":"193.104.144.128\/25", + "version":28364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.145.0", + "prefixLen":25, + "network":"193.104.145.0\/25", + "version":28363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.145.128", + "prefixLen":25, + "network":"193.104.145.128\/25", + "version":28362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.146.0", + "prefixLen":25, + "network":"193.104.146.0\/25", + "version":28361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.146.128", + "prefixLen":25, + "network":"193.104.146.128\/25", + "version":28360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.147.0", + "prefixLen":25, + "network":"193.104.147.0\/25", + "version":28359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.147.128", + "prefixLen":25, + "network":"193.104.147.128\/25", + "version":28358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.160.0", + "prefixLen":25, + "network":"193.104.160.0\/25", + "version":28357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.160.128", + "prefixLen":25, + "network":"193.104.160.128\/25", + "version":28356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.161.0", + "prefixLen":25, + "network":"193.104.161.0\/25", + "version":28355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.161.128", + "prefixLen":25, + "network":"193.104.161.128\/25", + "version":28354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.162.0", + "prefixLen":25, + "network":"193.104.162.0\/25", + "version":28353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.162.128", + "prefixLen":25, + "network":"193.104.162.128\/25", + "version":28352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.163.0", + "prefixLen":25, + "network":"193.104.163.0\/25", + "version":28351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.163.128", + "prefixLen":25, + "network":"193.104.163.128\/25", + "version":28350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.176.0", + "prefixLen":25, + "network":"193.104.176.0\/25", + "version":28349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.176.128", + "prefixLen":25, + "network":"193.104.176.128\/25", + "version":28348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.177.0", + "prefixLen":25, + "network":"193.104.177.0\/25", + "version":28347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.177.128", + "prefixLen":25, + "network":"193.104.177.128\/25", + "version":28346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.178.0", + "prefixLen":25, + "network":"193.104.178.0\/25", + "version":28345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.178.128", + "prefixLen":25, + "network":"193.104.178.128\/25", + "version":28344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.179.0", + "prefixLen":25, + "network":"193.104.179.0\/25", + "version":28343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.179.128", + "prefixLen":25, + "network":"193.104.179.128\/25", + "version":28342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.192.0", + "prefixLen":25, + "network":"193.104.192.0\/25", + "version":28341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.192.128", + "prefixLen":25, + "network":"193.104.192.128\/25", + "version":28340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.193.0", + "prefixLen":25, + "network":"193.104.193.0\/25", + "version":28339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.193.128", + "prefixLen":25, + "network":"193.104.193.128\/25", + "version":28338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.194.0", + "prefixLen":25, + "network":"193.104.194.0\/25", + "version":28337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.194.128", + "prefixLen":25, + "network":"193.104.194.128\/25", + "version":28336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.195.0", + "prefixLen":25, + "network":"193.104.195.0\/25", + "version":28335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.195.128", + "prefixLen":25, + "network":"193.104.195.128\/25", + "version":28334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.208.0", + "prefixLen":25, + "network":"193.104.208.0\/25", + "version":28333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.208.128", + "prefixLen":25, + "network":"193.104.208.128\/25", + "version":28332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.209.0", + "prefixLen":25, + "network":"193.104.209.0\/25", + "version":28331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.209.128", + "prefixLen":25, + "network":"193.104.209.128\/25", + "version":28330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.210.0", + "prefixLen":25, + "network":"193.104.210.0\/25", + "version":28329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.210.128", + "prefixLen":25, + "network":"193.104.210.128\/25", + "version":28328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.211.0", + "prefixLen":25, + "network":"193.104.211.0\/25", + "version":28327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.211.128", + "prefixLen":25, + "network":"193.104.211.128\/25", + "version":28326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.224.0", + "prefixLen":25, + "network":"193.104.224.0\/25", + "version":28325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.224.128", + "prefixLen":25, + "network":"193.104.224.128\/25", + "version":28324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.225.0", + "prefixLen":25, + "network":"193.104.225.0\/25", + "version":28323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.225.128", + "prefixLen":25, + "network":"193.104.225.128\/25", + "version":28322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.226.0", + "prefixLen":25, + "network":"193.104.226.0\/25", + "version":28321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.226.128", + "prefixLen":25, + "network":"193.104.226.128\/25", + "version":28320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.227.0", + "prefixLen":25, + "network":"193.104.227.0\/25", + "version":28319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.227.128", + "prefixLen":25, + "network":"193.104.227.128\/25", + "version":28318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.240.0", + "prefixLen":25, + "network":"193.104.240.0\/25", + "version":28317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.240.128", + "prefixLen":25, + "network":"193.104.240.128\/25", + "version":28316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.241.0", + "prefixLen":25, + "network":"193.104.241.0\/25", + "version":28315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.241.128", + "prefixLen":25, + "network":"193.104.241.128\/25", + "version":28314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.242.0", + "prefixLen":25, + "network":"193.104.242.0\/25", + "version":28313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.242.128", + "prefixLen":25, + "network":"193.104.242.128\/25", + "version":28312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.243.0", + "prefixLen":25, + "network":"193.104.243.0\/25", + "version":28311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.104.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.104.243.128", + "prefixLen":25, + "network":"193.104.243.128\/25", + "version":28310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64792 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.0.0", + "prefixLen":25, + "network":"193.105.0.0\/25", + "version":28437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.0.128", + "prefixLen":25, + "network":"193.105.0.128\/25", + "version":28564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.1.0", + "prefixLen":25, + "network":"193.105.1.0\/25", + "version":28563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.1.128", + "prefixLen":25, + "network":"193.105.1.128\/25", + "version":28562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.2.0", + "prefixLen":25, + "network":"193.105.2.0\/25", + "version":28561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.2.128", + "prefixLen":25, + "network":"193.105.2.128\/25", + "version":28560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.3.0", + "prefixLen":25, + "network":"193.105.3.0\/25", + "version":28559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.3.128", + "prefixLen":25, + "network":"193.105.3.128\/25", + "version":28558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.16.0", + "prefixLen":25, + "network":"193.105.16.0\/25", + "version":28557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.16.128", + "prefixLen":25, + "network":"193.105.16.128\/25", + "version":28556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.17.0", + "prefixLen":25, + "network":"193.105.17.0\/25", + "version":28555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.17.128", + "prefixLen":25, + "network":"193.105.17.128\/25", + "version":28554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.18.0", + "prefixLen":25, + "network":"193.105.18.0\/25", + "version":28553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.18.128", + "prefixLen":25, + "network":"193.105.18.128\/25", + "version":28552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.19.0", + "prefixLen":25, + "network":"193.105.19.0\/25", + "version":28551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.19.128", + "prefixLen":25, + "network":"193.105.19.128\/25", + "version":28550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.32.0", + "prefixLen":25, + "network":"193.105.32.0\/25", + "version":28549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.32.128", + "prefixLen":25, + "network":"193.105.32.128\/25", + "version":28548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.33.0", + "prefixLen":25, + "network":"193.105.33.0\/25", + "version":28547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.33.128", + "prefixLen":25, + "network":"193.105.33.128\/25", + "version":28546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.34.0", + "prefixLen":25, + "network":"193.105.34.0\/25", + "version":28545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.34.128", + "prefixLen":25, + "network":"193.105.34.128\/25", + "version":28544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.35.0", + "prefixLen":25, + "network":"193.105.35.0\/25", + "version":28543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.35.128", + "prefixLen":25, + "network":"193.105.35.128\/25", + "version":28542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.48.0", + "prefixLen":25, + "network":"193.105.48.0\/25", + "version":28541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.48.128", + "prefixLen":25, + "network":"193.105.48.128\/25", + "version":28540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.49.0", + "prefixLen":25, + "network":"193.105.49.0\/25", + "version":28539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.49.128", + "prefixLen":25, + "network":"193.105.49.128\/25", + "version":28538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.50.0", + "prefixLen":25, + "network":"193.105.50.0\/25", + "version":28537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.50.128", + "prefixLen":25, + "network":"193.105.50.128\/25", + "version":28536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.51.0", + "prefixLen":25, + "network":"193.105.51.0\/25", + "version":28535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.51.128", + "prefixLen":25, + "network":"193.105.51.128\/25", + "version":28534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.64.0", + "prefixLen":25, + "network":"193.105.64.0\/25", + "version":28533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.64.128", + "prefixLen":25, + "network":"193.105.64.128\/25", + "version":28532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.65.0", + "prefixLen":25, + "network":"193.105.65.0\/25", + "version":28531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.65.128", + "prefixLen":25, + "network":"193.105.65.128\/25", + "version":28530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.66.0", + "prefixLen":25, + "network":"193.105.66.0\/25", + "version":28529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.66.128", + "prefixLen":25, + "network":"193.105.66.128\/25", + "version":28528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.67.0", + "prefixLen":25, + "network":"193.105.67.0\/25", + "version":28527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.67.128", + "prefixLen":25, + "network":"193.105.67.128\/25", + "version":28526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.80.0", + "prefixLen":25, + "network":"193.105.80.0\/25", + "version":28525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.80.128", + "prefixLen":25, + "network":"193.105.80.128\/25", + "version":28524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.81.0", + "prefixLen":25, + "network":"193.105.81.0\/25", + "version":28523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.81.128", + "prefixLen":25, + "network":"193.105.81.128\/25", + "version":28522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.82.0", + "prefixLen":25, + "network":"193.105.82.0\/25", + "version":28521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.82.128", + "prefixLen":25, + "network":"193.105.82.128\/25", + "version":28520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.83.0", + "prefixLen":25, + "network":"193.105.83.0\/25", + "version":28519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.83.128", + "prefixLen":25, + "network":"193.105.83.128\/25", + "version":28518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.96.0", + "prefixLen":25, + "network":"193.105.96.0\/25", + "version":28517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.96.128", + "prefixLen":25, + "network":"193.105.96.128\/25", + "version":28516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.97.0", + "prefixLen":25, + "network":"193.105.97.0\/25", + "version":28515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.97.128", + "prefixLen":25, + "network":"193.105.97.128\/25", + "version":28514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.98.0", + "prefixLen":25, + "network":"193.105.98.0\/25", + "version":28513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.98.128", + "prefixLen":25, + "network":"193.105.98.128\/25", + "version":28512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.99.0", + "prefixLen":25, + "network":"193.105.99.0\/25", + "version":28511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.99.128", + "prefixLen":25, + "network":"193.105.99.128\/25", + "version":28510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.112.0", + "prefixLen":25, + "network":"193.105.112.0\/25", + "version":28509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.112.128", + "prefixLen":25, + "network":"193.105.112.128\/25", + "version":28508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.113.0", + "prefixLen":25, + "network":"193.105.113.0\/25", + "version":28507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.113.128", + "prefixLen":25, + "network":"193.105.113.128\/25", + "version":28506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.114.0", + "prefixLen":25, + "network":"193.105.114.0\/25", + "version":28505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.114.128", + "prefixLen":25, + "network":"193.105.114.128\/25", + "version":28504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.115.0", + "prefixLen":25, + "network":"193.105.115.0\/25", + "version":28503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.115.128", + "prefixLen":25, + "network":"193.105.115.128\/25", + "version":28502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.128.0", + "prefixLen":25, + "network":"193.105.128.0\/25", + "version":28501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.128.128", + "prefixLen":25, + "network":"193.105.128.128\/25", + "version":28500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.129.0", + "prefixLen":25, + "network":"193.105.129.0\/25", + "version":28499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.129.128", + "prefixLen":25, + "network":"193.105.129.128\/25", + "version":28498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.130.0", + "prefixLen":25, + "network":"193.105.130.0\/25", + "version":28497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.130.128", + "prefixLen":25, + "network":"193.105.130.128\/25", + "version":28496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.131.0", + "prefixLen":25, + "network":"193.105.131.0\/25", + "version":28495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.131.128", + "prefixLen":25, + "network":"193.105.131.128\/25", + "version":28494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.144.0", + "prefixLen":25, + "network":"193.105.144.0\/25", + "version":28493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.144.128", + "prefixLen":25, + "network":"193.105.144.128\/25", + "version":28492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.145.0", + "prefixLen":25, + "network":"193.105.145.0\/25", + "version":28491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.145.128", + "prefixLen":25, + "network":"193.105.145.128\/25", + "version":28490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.146.0", + "prefixLen":25, + "network":"193.105.146.0\/25", + "version":28489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.146.128", + "prefixLen":25, + "network":"193.105.146.128\/25", + "version":28488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.147.0", + "prefixLen":25, + "network":"193.105.147.0\/25", + "version":28487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.147.128", + "prefixLen":25, + "network":"193.105.147.128\/25", + "version":28486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.160.0", + "prefixLen":25, + "network":"193.105.160.0\/25", + "version":28485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.160.128", + "prefixLen":25, + "network":"193.105.160.128\/25", + "version":28484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.161.0", + "prefixLen":25, + "network":"193.105.161.0\/25", + "version":28483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.161.128", + "prefixLen":25, + "network":"193.105.161.128\/25", + "version":28482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.162.0", + "prefixLen":25, + "network":"193.105.162.0\/25", + "version":28481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.162.128", + "prefixLen":25, + "network":"193.105.162.128\/25", + "version":28480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.163.0", + "prefixLen":25, + "network":"193.105.163.0\/25", + "version":28479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.163.128", + "prefixLen":25, + "network":"193.105.163.128\/25", + "version":28478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.176.0", + "prefixLen":25, + "network":"193.105.176.0\/25", + "version":28477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.176.128", + "prefixLen":25, + "network":"193.105.176.128\/25", + "version":28476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.177.0", + "prefixLen":25, + "network":"193.105.177.0\/25", + "version":28475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.177.128", + "prefixLen":25, + "network":"193.105.177.128\/25", + "version":28474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.178.0", + "prefixLen":25, + "network":"193.105.178.0\/25", + "version":28473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.178.128", + "prefixLen":25, + "network":"193.105.178.128\/25", + "version":28472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.179.0", + "prefixLen":25, + "network":"193.105.179.0\/25", + "version":28471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.179.128", + "prefixLen":25, + "network":"193.105.179.128\/25", + "version":28470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.192.0", + "prefixLen":25, + "network":"193.105.192.0\/25", + "version":28469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.192.128", + "prefixLen":25, + "network":"193.105.192.128\/25", + "version":28468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.193.0", + "prefixLen":25, + "network":"193.105.193.0\/25", + "version":28467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.193.128", + "prefixLen":25, + "network":"193.105.193.128\/25", + "version":28466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.194.0", + "prefixLen":25, + "network":"193.105.194.0\/25", + "version":28465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.194.128", + "prefixLen":25, + "network":"193.105.194.128\/25", + "version":28464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.195.0", + "prefixLen":25, + "network":"193.105.195.0\/25", + "version":28463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.195.128", + "prefixLen":25, + "network":"193.105.195.128\/25", + "version":28462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.208.0", + "prefixLen":25, + "network":"193.105.208.0\/25", + "version":28461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.208.128", + "prefixLen":25, + "network":"193.105.208.128\/25", + "version":28460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.209.0", + "prefixLen":25, + "network":"193.105.209.0\/25", + "version":28459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.209.128", + "prefixLen":25, + "network":"193.105.209.128\/25", + "version":28458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.210.0", + "prefixLen":25, + "network":"193.105.210.0\/25", + "version":28457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.210.128", + "prefixLen":25, + "network":"193.105.210.128\/25", + "version":28456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.211.0", + "prefixLen":25, + "network":"193.105.211.0\/25", + "version":28455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.211.128", + "prefixLen":25, + "network":"193.105.211.128\/25", + "version":28454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.224.0", + "prefixLen":25, + "network":"193.105.224.0\/25", + "version":28453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.224.128", + "prefixLen":25, + "network":"193.105.224.128\/25", + "version":28452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.225.0", + "prefixLen":25, + "network":"193.105.225.0\/25", + "version":28451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.225.128", + "prefixLen":25, + "network":"193.105.225.128\/25", + "version":28450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.226.0", + "prefixLen":25, + "network":"193.105.226.0\/25", + "version":28449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.226.128", + "prefixLen":25, + "network":"193.105.226.128\/25", + "version":28448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.227.0", + "prefixLen":25, + "network":"193.105.227.0\/25", + "version":28447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.227.128", + "prefixLen":25, + "network":"193.105.227.128\/25", + "version":28446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.240.0", + "prefixLen":25, + "network":"193.105.240.0\/25", + "version":28445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.240.128", + "prefixLen":25, + "network":"193.105.240.128\/25", + "version":28444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.241.0", + "prefixLen":25, + "network":"193.105.241.0\/25", + "version":28443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.241.128", + "prefixLen":25, + "network":"193.105.241.128\/25", + "version":28442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.242.0", + "prefixLen":25, + "network":"193.105.242.0\/25", + "version":28441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.242.128", + "prefixLen":25, + "network":"193.105.242.128\/25", + "version":28440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.243.0", + "prefixLen":25, + "network":"193.105.243.0\/25", + "version":28439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.105.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.105.243.128", + "prefixLen":25, + "network":"193.105.243.128\/25", + "version":28438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64793 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.0.0", + "prefixLen":25, + "network":"193.106.0.0\/25", + "version":28565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.0.128", + "prefixLen":25, + "network":"193.106.0.128\/25", + "version":28692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.1.0", + "prefixLen":25, + "network":"193.106.1.0\/25", + "version":28691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.1.128", + "prefixLen":25, + "network":"193.106.1.128\/25", + "version":28690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.2.0", + "prefixLen":25, + "network":"193.106.2.0\/25", + "version":28689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.2.128", + "prefixLen":25, + "network":"193.106.2.128\/25", + "version":28688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.3.0", + "prefixLen":25, + "network":"193.106.3.0\/25", + "version":28687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.3.128", + "prefixLen":25, + "network":"193.106.3.128\/25", + "version":28686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.16.0", + "prefixLen":25, + "network":"193.106.16.0\/25", + "version":28685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.16.128", + "prefixLen":25, + "network":"193.106.16.128\/25", + "version":28684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.17.0", + "prefixLen":25, + "network":"193.106.17.0\/25", + "version":28683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.17.128", + "prefixLen":25, + "network":"193.106.17.128\/25", + "version":28682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.18.0", + "prefixLen":25, + "network":"193.106.18.0\/25", + "version":28681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.18.128", + "prefixLen":25, + "network":"193.106.18.128\/25", + "version":28680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.19.0", + "prefixLen":25, + "network":"193.106.19.0\/25", + "version":28679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.19.128", + "prefixLen":25, + "network":"193.106.19.128\/25", + "version":28678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.32.0", + "prefixLen":25, + "network":"193.106.32.0\/25", + "version":28677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.32.128", + "prefixLen":25, + "network":"193.106.32.128\/25", + "version":28676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.33.0", + "prefixLen":25, + "network":"193.106.33.0\/25", + "version":28675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.33.128", + "prefixLen":25, + "network":"193.106.33.128\/25", + "version":28674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.34.0", + "prefixLen":25, + "network":"193.106.34.0\/25", + "version":28673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.34.128", + "prefixLen":25, + "network":"193.106.34.128\/25", + "version":28672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.35.0", + "prefixLen":25, + "network":"193.106.35.0\/25", + "version":28671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.35.128", + "prefixLen":25, + "network":"193.106.35.128\/25", + "version":28670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.48.0", + "prefixLen":25, + "network":"193.106.48.0\/25", + "version":28669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.48.128", + "prefixLen":25, + "network":"193.106.48.128\/25", + "version":28668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.49.0", + "prefixLen":25, + "network":"193.106.49.0\/25", + "version":28667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.49.128", + "prefixLen":25, + "network":"193.106.49.128\/25", + "version":28666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.50.0", + "prefixLen":25, + "network":"193.106.50.0\/25", + "version":28665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.50.128", + "prefixLen":25, + "network":"193.106.50.128\/25", + "version":28664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.51.0", + "prefixLen":25, + "network":"193.106.51.0\/25", + "version":28663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.51.128", + "prefixLen":25, + "network":"193.106.51.128\/25", + "version":28662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.64.0", + "prefixLen":25, + "network":"193.106.64.0\/25", + "version":28661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.64.128", + "prefixLen":25, + "network":"193.106.64.128\/25", + "version":28660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.65.0", + "prefixLen":25, + "network":"193.106.65.0\/25", + "version":28659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.65.128", + "prefixLen":25, + "network":"193.106.65.128\/25", + "version":28658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.66.0", + "prefixLen":25, + "network":"193.106.66.0\/25", + "version":28657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.66.128", + "prefixLen":25, + "network":"193.106.66.128\/25", + "version":28656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.67.0", + "prefixLen":25, + "network":"193.106.67.0\/25", + "version":28655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.67.128", + "prefixLen":25, + "network":"193.106.67.128\/25", + "version":28654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.80.0", + "prefixLen":25, + "network":"193.106.80.0\/25", + "version":28653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.80.128", + "prefixLen":25, + "network":"193.106.80.128\/25", + "version":28652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.81.0", + "prefixLen":25, + "network":"193.106.81.0\/25", + "version":28651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.81.128", + "prefixLen":25, + "network":"193.106.81.128\/25", + "version":28650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.82.0", + "prefixLen":25, + "network":"193.106.82.0\/25", + "version":28649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.82.128", + "prefixLen":25, + "network":"193.106.82.128\/25", + "version":28648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.83.0", + "prefixLen":25, + "network":"193.106.83.0\/25", + "version":28647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.83.128", + "prefixLen":25, + "network":"193.106.83.128\/25", + "version":28646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.96.0", + "prefixLen":25, + "network":"193.106.96.0\/25", + "version":28645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.96.128", + "prefixLen":25, + "network":"193.106.96.128\/25", + "version":28644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.97.0", + "prefixLen":25, + "network":"193.106.97.0\/25", + "version":28643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.97.128", + "prefixLen":25, + "network":"193.106.97.128\/25", + "version":28642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.98.0", + "prefixLen":25, + "network":"193.106.98.0\/25", + "version":28641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.98.128", + "prefixLen":25, + "network":"193.106.98.128\/25", + "version":28640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.99.0", + "prefixLen":25, + "network":"193.106.99.0\/25", + "version":28639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.99.128", + "prefixLen":25, + "network":"193.106.99.128\/25", + "version":28638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.112.0", + "prefixLen":25, + "network":"193.106.112.0\/25", + "version":28637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.112.128", + "prefixLen":25, + "network":"193.106.112.128\/25", + "version":28636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.113.0", + "prefixLen":25, + "network":"193.106.113.0\/25", + "version":28635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.113.128", + "prefixLen":25, + "network":"193.106.113.128\/25", + "version":28634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.114.0", + "prefixLen":25, + "network":"193.106.114.0\/25", + "version":28633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.114.128", + "prefixLen":25, + "network":"193.106.114.128\/25", + "version":28632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.115.0", + "prefixLen":25, + "network":"193.106.115.0\/25", + "version":28631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.115.128", + "prefixLen":25, + "network":"193.106.115.128\/25", + "version":28630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.128.0", + "prefixLen":25, + "network":"193.106.128.0\/25", + "version":28629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.128.128", + "prefixLen":25, + "network":"193.106.128.128\/25", + "version":28628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.129.0", + "prefixLen":25, + "network":"193.106.129.0\/25", + "version":28627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.129.128", + "prefixLen":25, + "network":"193.106.129.128\/25", + "version":28626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.130.0", + "prefixLen":25, + "network":"193.106.130.0\/25", + "version":28625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.130.128", + "prefixLen":25, + "network":"193.106.130.128\/25", + "version":28624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.131.0", + "prefixLen":25, + "network":"193.106.131.0\/25", + "version":28623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.131.128", + "prefixLen":25, + "network":"193.106.131.128\/25", + "version":28622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.144.0", + "prefixLen":25, + "network":"193.106.144.0\/25", + "version":28621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.144.128", + "prefixLen":25, + "network":"193.106.144.128\/25", + "version":28620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.145.0", + "prefixLen":25, + "network":"193.106.145.0\/25", + "version":28619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.145.128", + "prefixLen":25, + "network":"193.106.145.128\/25", + "version":28618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.146.0", + "prefixLen":25, + "network":"193.106.146.0\/25", + "version":28617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.146.128", + "prefixLen":25, + "network":"193.106.146.128\/25", + "version":28616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.147.0", + "prefixLen":25, + "network":"193.106.147.0\/25", + "version":28615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.147.128", + "prefixLen":25, + "network":"193.106.147.128\/25", + "version":28614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.160.0", + "prefixLen":25, + "network":"193.106.160.0\/25", + "version":28613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.160.128", + "prefixLen":25, + "network":"193.106.160.128\/25", + "version":28612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.161.0", + "prefixLen":25, + "network":"193.106.161.0\/25", + "version":28611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.161.128", + "prefixLen":25, + "network":"193.106.161.128\/25", + "version":28610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.162.0", + "prefixLen":25, + "network":"193.106.162.0\/25", + "version":28609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.162.128", + "prefixLen":25, + "network":"193.106.162.128\/25", + "version":28608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.163.0", + "prefixLen":25, + "network":"193.106.163.0\/25", + "version":28607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.163.128", + "prefixLen":25, + "network":"193.106.163.128\/25", + "version":28606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.176.0", + "prefixLen":25, + "network":"193.106.176.0\/25", + "version":28605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.176.128", + "prefixLen":25, + "network":"193.106.176.128\/25", + "version":28604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.177.0", + "prefixLen":25, + "network":"193.106.177.0\/25", + "version":28603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.177.128", + "prefixLen":25, + "network":"193.106.177.128\/25", + "version":28602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.178.0", + "prefixLen":25, + "network":"193.106.178.0\/25", + "version":28601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.178.128", + "prefixLen":25, + "network":"193.106.178.128\/25", + "version":28600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.179.0", + "prefixLen":25, + "network":"193.106.179.0\/25", + "version":28599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.179.128", + "prefixLen":25, + "network":"193.106.179.128\/25", + "version":28598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.192.0", + "prefixLen":25, + "network":"193.106.192.0\/25", + "version":28597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.192.128", + "prefixLen":25, + "network":"193.106.192.128\/25", + "version":28596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.193.0", + "prefixLen":25, + "network":"193.106.193.0\/25", + "version":28595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.193.128", + "prefixLen":25, + "network":"193.106.193.128\/25", + "version":28594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.194.0", + "prefixLen":25, + "network":"193.106.194.0\/25", + "version":28593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.194.128", + "prefixLen":25, + "network":"193.106.194.128\/25", + "version":28592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.195.0", + "prefixLen":25, + "network":"193.106.195.0\/25", + "version":28591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.195.128", + "prefixLen":25, + "network":"193.106.195.128\/25", + "version":28590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.208.0", + "prefixLen":25, + "network":"193.106.208.0\/25", + "version":28589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.208.128", + "prefixLen":25, + "network":"193.106.208.128\/25", + "version":28588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.209.0", + "prefixLen":25, + "network":"193.106.209.0\/25", + "version":28587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.209.128", + "prefixLen":25, + "network":"193.106.209.128\/25", + "version":28586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.210.0", + "prefixLen":25, + "network":"193.106.210.0\/25", + "version":28585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.210.128", + "prefixLen":25, + "network":"193.106.210.128\/25", + "version":28584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.211.0", + "prefixLen":25, + "network":"193.106.211.0\/25", + "version":28583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.211.128", + "prefixLen":25, + "network":"193.106.211.128\/25", + "version":28582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.224.0", + "prefixLen":25, + "network":"193.106.224.0\/25", + "version":28581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.224.128", + "prefixLen":25, + "network":"193.106.224.128\/25", + "version":28580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.225.0", + "prefixLen":25, + "network":"193.106.225.0\/25", + "version":28579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.225.128", + "prefixLen":25, + "network":"193.106.225.128\/25", + "version":28578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.226.0", + "prefixLen":25, + "network":"193.106.226.0\/25", + "version":28577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.226.128", + "prefixLen":25, + "network":"193.106.226.128\/25", + "version":28576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.227.0", + "prefixLen":25, + "network":"193.106.227.0\/25", + "version":28575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.227.128", + "prefixLen":25, + "network":"193.106.227.128\/25", + "version":28574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.240.0", + "prefixLen":25, + "network":"193.106.240.0\/25", + "version":28573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.240.128", + "prefixLen":25, + "network":"193.106.240.128\/25", + "version":28572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.241.0", + "prefixLen":25, + "network":"193.106.241.0\/25", + "version":28571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.241.128", + "prefixLen":25, + "network":"193.106.241.128\/25", + "version":28570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.242.0", + "prefixLen":25, + "network":"193.106.242.0\/25", + "version":28569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.242.128", + "prefixLen":25, + "network":"193.106.242.128\/25", + "version":28568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.243.0", + "prefixLen":25, + "network":"193.106.243.0\/25", + "version":28567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.106.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.106.243.128", + "prefixLen":25, + "network":"193.106.243.128\/25", + "version":28566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64794 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.0.0", + "prefixLen":25, + "network":"193.107.0.0\/25", + "version":28693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.0.128", + "prefixLen":25, + "network":"193.107.0.128\/25", + "version":28820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.1.0", + "prefixLen":25, + "network":"193.107.1.0\/25", + "version":28819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.1.128", + "prefixLen":25, + "network":"193.107.1.128\/25", + "version":28818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.2.0", + "prefixLen":25, + "network":"193.107.2.0\/25", + "version":28817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.2.128", + "prefixLen":25, + "network":"193.107.2.128\/25", + "version":28816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.3.0", + "prefixLen":25, + "network":"193.107.3.0\/25", + "version":28815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.3.128", + "prefixLen":25, + "network":"193.107.3.128\/25", + "version":28814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.16.0", + "prefixLen":25, + "network":"193.107.16.0\/25", + "version":28813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.16.128", + "prefixLen":25, + "network":"193.107.16.128\/25", + "version":28812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.17.0", + "prefixLen":25, + "network":"193.107.17.0\/25", + "version":28811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.17.128", + "prefixLen":25, + "network":"193.107.17.128\/25", + "version":28810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.18.0", + "prefixLen":25, + "network":"193.107.18.0\/25", + "version":28809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.18.128", + "prefixLen":25, + "network":"193.107.18.128\/25", + "version":28808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.19.0", + "prefixLen":25, + "network":"193.107.19.0\/25", + "version":28807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.19.128", + "prefixLen":25, + "network":"193.107.19.128\/25", + "version":28806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.32.0", + "prefixLen":25, + "network":"193.107.32.0\/25", + "version":28805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.32.128", + "prefixLen":25, + "network":"193.107.32.128\/25", + "version":28804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.33.0", + "prefixLen":25, + "network":"193.107.33.0\/25", + "version":28803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.33.128", + "prefixLen":25, + "network":"193.107.33.128\/25", + "version":28802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.34.0", + "prefixLen":25, + "network":"193.107.34.0\/25", + "version":28801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.34.128", + "prefixLen":25, + "network":"193.107.34.128\/25", + "version":28800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.35.0", + "prefixLen":25, + "network":"193.107.35.0\/25", + "version":28799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.35.128", + "prefixLen":25, + "network":"193.107.35.128\/25", + "version":28798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.48.0", + "prefixLen":25, + "network":"193.107.48.0\/25", + "version":28797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.48.128", + "prefixLen":25, + "network":"193.107.48.128\/25", + "version":28796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.49.0", + "prefixLen":25, + "network":"193.107.49.0\/25", + "version":28795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.49.128", + "prefixLen":25, + "network":"193.107.49.128\/25", + "version":28794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.50.0", + "prefixLen":25, + "network":"193.107.50.0\/25", + "version":28793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.50.128", + "prefixLen":25, + "network":"193.107.50.128\/25", + "version":28792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.51.0", + "prefixLen":25, + "network":"193.107.51.0\/25", + "version":28791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.51.128", + "prefixLen":25, + "network":"193.107.51.128\/25", + "version":28790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.64.0", + "prefixLen":25, + "network":"193.107.64.0\/25", + "version":28789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.64.128", + "prefixLen":25, + "network":"193.107.64.128\/25", + "version":28788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.65.0", + "prefixLen":25, + "network":"193.107.65.0\/25", + "version":28787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.65.128", + "prefixLen":25, + "network":"193.107.65.128\/25", + "version":28786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.66.0", + "prefixLen":25, + "network":"193.107.66.0\/25", + "version":28785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.66.128", + "prefixLen":25, + "network":"193.107.66.128\/25", + "version":28784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.67.0", + "prefixLen":25, + "network":"193.107.67.0\/25", + "version":28783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.67.128", + "prefixLen":25, + "network":"193.107.67.128\/25", + "version":28782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.80.0", + "prefixLen":25, + "network":"193.107.80.0\/25", + "version":28781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.80.128", + "prefixLen":25, + "network":"193.107.80.128\/25", + "version":28780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.81.0", + "prefixLen":25, + "network":"193.107.81.0\/25", + "version":28779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.81.128", + "prefixLen":25, + "network":"193.107.81.128\/25", + "version":28778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.82.0", + "prefixLen":25, + "network":"193.107.82.0\/25", + "version":28777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.82.128", + "prefixLen":25, + "network":"193.107.82.128\/25", + "version":28776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.83.0", + "prefixLen":25, + "network":"193.107.83.0\/25", + "version":28775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.83.128", + "prefixLen":25, + "network":"193.107.83.128\/25", + "version":28774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.96.0", + "prefixLen":25, + "network":"193.107.96.0\/25", + "version":28773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.96.128", + "prefixLen":25, + "network":"193.107.96.128\/25", + "version":28772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.97.0", + "prefixLen":25, + "network":"193.107.97.0\/25", + "version":28771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.97.128", + "prefixLen":25, + "network":"193.107.97.128\/25", + "version":28770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.98.0", + "prefixLen":25, + "network":"193.107.98.0\/25", + "version":28769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.98.128", + "prefixLen":25, + "network":"193.107.98.128\/25", + "version":28768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.99.0", + "prefixLen":25, + "network":"193.107.99.0\/25", + "version":28767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.99.128", + "prefixLen":25, + "network":"193.107.99.128\/25", + "version":28766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.112.0", + "prefixLen":25, + "network":"193.107.112.0\/25", + "version":28765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.112.128", + "prefixLen":25, + "network":"193.107.112.128\/25", + "version":28764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.113.0", + "prefixLen":25, + "network":"193.107.113.0\/25", + "version":28763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.113.128", + "prefixLen":25, + "network":"193.107.113.128\/25", + "version":28762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.114.0", + "prefixLen":25, + "network":"193.107.114.0\/25", + "version":28761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.114.128", + "prefixLen":25, + "network":"193.107.114.128\/25", + "version":28760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.115.0", + "prefixLen":25, + "network":"193.107.115.0\/25", + "version":28759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.115.128", + "prefixLen":25, + "network":"193.107.115.128\/25", + "version":28758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.128.0", + "prefixLen":25, + "network":"193.107.128.0\/25", + "version":28757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.128.128", + "prefixLen":25, + "network":"193.107.128.128\/25", + "version":28756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.129.0", + "prefixLen":25, + "network":"193.107.129.0\/25", + "version":28755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.129.128", + "prefixLen":25, + "network":"193.107.129.128\/25", + "version":28754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.130.0", + "prefixLen":25, + "network":"193.107.130.0\/25", + "version":28753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.130.128", + "prefixLen":25, + "network":"193.107.130.128\/25", + "version":28752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.131.0", + "prefixLen":25, + "network":"193.107.131.0\/25", + "version":28751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.131.128", + "prefixLen":25, + "network":"193.107.131.128\/25", + "version":28750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.144.0", + "prefixLen":25, + "network":"193.107.144.0\/25", + "version":28749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.144.128", + "prefixLen":25, + "network":"193.107.144.128\/25", + "version":28748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.145.0", + "prefixLen":25, + "network":"193.107.145.0\/25", + "version":28747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.145.128", + "prefixLen":25, + "network":"193.107.145.128\/25", + "version":28746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.146.0", + "prefixLen":25, + "network":"193.107.146.0\/25", + "version":28745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.146.128", + "prefixLen":25, + "network":"193.107.146.128\/25", + "version":28744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.147.0", + "prefixLen":25, + "network":"193.107.147.0\/25", + "version":28743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.147.128", + "prefixLen":25, + "network":"193.107.147.128\/25", + "version":28742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.160.0", + "prefixLen":25, + "network":"193.107.160.0\/25", + "version":28741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.160.128", + "prefixLen":25, + "network":"193.107.160.128\/25", + "version":28740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.161.0", + "prefixLen":25, + "network":"193.107.161.0\/25", + "version":28739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.161.128", + "prefixLen":25, + "network":"193.107.161.128\/25", + "version":28738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.162.0", + "prefixLen":25, + "network":"193.107.162.0\/25", + "version":28737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.162.128", + "prefixLen":25, + "network":"193.107.162.128\/25", + "version":28736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.163.0", + "prefixLen":25, + "network":"193.107.163.0\/25", + "version":28735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.163.128", + "prefixLen":25, + "network":"193.107.163.128\/25", + "version":28734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.176.0", + "prefixLen":25, + "network":"193.107.176.0\/25", + "version":28733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.176.128", + "prefixLen":25, + "network":"193.107.176.128\/25", + "version":28732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.177.0", + "prefixLen":25, + "network":"193.107.177.0\/25", + "version":28731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.177.128", + "prefixLen":25, + "network":"193.107.177.128\/25", + "version":28730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.178.0", + "prefixLen":25, + "network":"193.107.178.0\/25", + "version":28729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.178.128", + "prefixLen":25, + "network":"193.107.178.128\/25", + "version":28728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.179.0", + "prefixLen":25, + "network":"193.107.179.0\/25", + "version":28727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.179.128", + "prefixLen":25, + "network":"193.107.179.128\/25", + "version":28726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.192.0", + "prefixLen":25, + "network":"193.107.192.0\/25", + "version":28725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.192.128", + "prefixLen":25, + "network":"193.107.192.128\/25", + "version":28724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.193.0", + "prefixLen":25, + "network":"193.107.193.0\/25", + "version":28723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.193.128", + "prefixLen":25, + "network":"193.107.193.128\/25", + "version":28722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.194.0", + "prefixLen":25, + "network":"193.107.194.0\/25", + "version":28721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.194.128", + "prefixLen":25, + "network":"193.107.194.128\/25", + "version":28720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.195.0", + "prefixLen":25, + "network":"193.107.195.0\/25", + "version":28719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.195.128", + "prefixLen":25, + "network":"193.107.195.128\/25", + "version":28718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.208.0", + "prefixLen":25, + "network":"193.107.208.0\/25", + "version":28717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.208.128", + "prefixLen":25, + "network":"193.107.208.128\/25", + "version":28716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.209.0", + "prefixLen":25, + "network":"193.107.209.0\/25", + "version":28715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.209.128", + "prefixLen":25, + "network":"193.107.209.128\/25", + "version":28714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.210.0", + "prefixLen":25, + "network":"193.107.210.0\/25", + "version":28713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.210.128", + "prefixLen":25, + "network":"193.107.210.128\/25", + "version":28712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.211.0", + "prefixLen":25, + "network":"193.107.211.0\/25", + "version":28711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.211.128", + "prefixLen":25, + "network":"193.107.211.128\/25", + "version":28710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.224.0", + "prefixLen":25, + "network":"193.107.224.0\/25", + "version":28709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.224.128", + "prefixLen":25, + "network":"193.107.224.128\/25", + "version":28708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.225.0", + "prefixLen":25, + "network":"193.107.225.0\/25", + "version":28707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.225.128", + "prefixLen":25, + "network":"193.107.225.128\/25", + "version":28706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.226.0", + "prefixLen":25, + "network":"193.107.226.0\/25", + "version":28705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.226.128", + "prefixLen":25, + "network":"193.107.226.128\/25", + "version":28704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.227.0", + "prefixLen":25, + "network":"193.107.227.0\/25", + "version":28703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.227.128", + "prefixLen":25, + "network":"193.107.227.128\/25", + "version":28702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.240.0", + "prefixLen":25, + "network":"193.107.240.0\/25", + "version":28701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.240.128", + "prefixLen":25, + "network":"193.107.240.128\/25", + "version":28700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.241.0", + "prefixLen":25, + "network":"193.107.241.0\/25", + "version":28699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.241.128", + "prefixLen":25, + "network":"193.107.241.128\/25", + "version":28698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.242.0", + "prefixLen":25, + "network":"193.107.242.0\/25", + "version":28697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.242.128", + "prefixLen":25, + "network":"193.107.242.128\/25", + "version":28696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.243.0", + "prefixLen":25, + "network":"193.107.243.0\/25", + "version":28695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.107.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.107.243.128", + "prefixLen":25, + "network":"193.107.243.128\/25", + "version":28694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64795 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.0.0", + "prefixLen":25, + "network":"193.108.0.0\/25", + "version":28821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.0.128", + "prefixLen":25, + "network":"193.108.0.128\/25", + "version":28948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.1.0", + "prefixLen":25, + "network":"193.108.1.0\/25", + "version":28947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.1.128", + "prefixLen":25, + "network":"193.108.1.128\/25", + "version":28946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.2.0", + "prefixLen":25, + "network":"193.108.2.0\/25", + "version":28945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.2.128", + "prefixLen":25, + "network":"193.108.2.128\/25", + "version":28944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.3.0", + "prefixLen":25, + "network":"193.108.3.0\/25", + "version":28943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.3.128", + "prefixLen":25, + "network":"193.108.3.128\/25", + "version":28942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.16.0", + "prefixLen":25, + "network":"193.108.16.0\/25", + "version":28941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.16.128", + "prefixLen":25, + "network":"193.108.16.128\/25", + "version":28940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.17.0", + "prefixLen":25, + "network":"193.108.17.0\/25", + "version":28939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.17.128", + "prefixLen":25, + "network":"193.108.17.128\/25", + "version":28938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.18.0", + "prefixLen":25, + "network":"193.108.18.0\/25", + "version":28937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.18.128", + "prefixLen":25, + "network":"193.108.18.128\/25", + "version":28936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.19.0", + "prefixLen":25, + "network":"193.108.19.0\/25", + "version":28935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.19.128", + "prefixLen":25, + "network":"193.108.19.128\/25", + "version":28934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.32.0", + "prefixLen":25, + "network":"193.108.32.0\/25", + "version":28933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.32.128", + "prefixLen":25, + "network":"193.108.32.128\/25", + "version":28932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.33.0", + "prefixLen":25, + "network":"193.108.33.0\/25", + "version":28931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.33.128", + "prefixLen":25, + "network":"193.108.33.128\/25", + "version":28930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.34.0", + "prefixLen":25, + "network":"193.108.34.0\/25", + "version":28929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.34.128", + "prefixLen":25, + "network":"193.108.34.128\/25", + "version":28928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.35.0", + "prefixLen":25, + "network":"193.108.35.0\/25", + "version":28927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.35.128", + "prefixLen":25, + "network":"193.108.35.128\/25", + "version":28926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.48.0", + "prefixLen":25, + "network":"193.108.48.0\/25", + "version":28925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.48.128", + "prefixLen":25, + "network":"193.108.48.128\/25", + "version":28924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.49.0", + "prefixLen":25, + "network":"193.108.49.0\/25", + "version":28923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.49.128", + "prefixLen":25, + "network":"193.108.49.128\/25", + "version":28922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.50.0", + "prefixLen":25, + "network":"193.108.50.0\/25", + "version":28921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.50.128", + "prefixLen":25, + "network":"193.108.50.128\/25", + "version":28920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.51.0", + "prefixLen":25, + "network":"193.108.51.0\/25", + "version":28919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.51.128", + "prefixLen":25, + "network":"193.108.51.128\/25", + "version":28918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.64.0", + "prefixLen":25, + "network":"193.108.64.0\/25", + "version":28917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.64.128", + "prefixLen":25, + "network":"193.108.64.128\/25", + "version":28916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.65.0", + "prefixLen":25, + "network":"193.108.65.0\/25", + "version":28915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.65.128", + "prefixLen":25, + "network":"193.108.65.128\/25", + "version":28914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.66.0", + "prefixLen":25, + "network":"193.108.66.0\/25", + "version":28913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.66.128", + "prefixLen":25, + "network":"193.108.66.128\/25", + "version":28912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.67.0", + "prefixLen":25, + "network":"193.108.67.0\/25", + "version":28911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.67.128", + "prefixLen":25, + "network":"193.108.67.128\/25", + "version":28910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.80.0", + "prefixLen":25, + "network":"193.108.80.0\/25", + "version":28909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.80.128", + "prefixLen":25, + "network":"193.108.80.128\/25", + "version":28908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.81.0", + "prefixLen":25, + "network":"193.108.81.0\/25", + "version":28907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.81.128", + "prefixLen":25, + "network":"193.108.81.128\/25", + "version":28906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.82.0", + "prefixLen":25, + "network":"193.108.82.0\/25", + "version":28905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.82.128", + "prefixLen":25, + "network":"193.108.82.128\/25", + "version":28904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.83.0", + "prefixLen":25, + "network":"193.108.83.0\/25", + "version":28903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.83.128", + "prefixLen":25, + "network":"193.108.83.128\/25", + "version":28902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.96.0", + "prefixLen":25, + "network":"193.108.96.0\/25", + "version":28901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.96.128", + "prefixLen":25, + "network":"193.108.96.128\/25", + "version":28900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.97.0", + "prefixLen":25, + "network":"193.108.97.0\/25", + "version":28899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.97.128", + "prefixLen":25, + "network":"193.108.97.128\/25", + "version":28898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.98.0", + "prefixLen":25, + "network":"193.108.98.0\/25", + "version":28897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.98.128", + "prefixLen":25, + "network":"193.108.98.128\/25", + "version":28896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.99.0", + "prefixLen":25, + "network":"193.108.99.0\/25", + "version":28895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.99.128", + "prefixLen":25, + "network":"193.108.99.128\/25", + "version":28894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.112.0", + "prefixLen":25, + "network":"193.108.112.0\/25", + "version":28893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.112.128", + "prefixLen":25, + "network":"193.108.112.128\/25", + "version":28892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.113.0", + "prefixLen":25, + "network":"193.108.113.0\/25", + "version":28891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.113.128", + "prefixLen":25, + "network":"193.108.113.128\/25", + "version":28890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.114.0", + "prefixLen":25, + "network":"193.108.114.0\/25", + "version":28889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.114.128", + "prefixLen":25, + "network":"193.108.114.128\/25", + "version":28888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.115.0", + "prefixLen":25, + "network":"193.108.115.0\/25", + "version":28887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.115.128", + "prefixLen":25, + "network":"193.108.115.128\/25", + "version":28886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.128.0", + "prefixLen":25, + "network":"193.108.128.0\/25", + "version":28885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.128.128", + "prefixLen":25, + "network":"193.108.128.128\/25", + "version":28884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.129.0", + "prefixLen":25, + "network":"193.108.129.0\/25", + "version":28883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.129.128", + "prefixLen":25, + "network":"193.108.129.128\/25", + "version":28882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.130.0", + "prefixLen":25, + "network":"193.108.130.0\/25", + "version":28881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.130.128", + "prefixLen":25, + "network":"193.108.130.128\/25", + "version":28880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.131.0", + "prefixLen":25, + "network":"193.108.131.0\/25", + "version":28879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.131.128", + "prefixLen":25, + "network":"193.108.131.128\/25", + "version":28878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.144.0", + "prefixLen":25, + "network":"193.108.144.0\/25", + "version":28877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.144.128", + "prefixLen":25, + "network":"193.108.144.128\/25", + "version":28876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.145.0", + "prefixLen":25, + "network":"193.108.145.0\/25", + "version":28875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.145.128", + "prefixLen":25, + "network":"193.108.145.128\/25", + "version":28874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.146.0", + "prefixLen":25, + "network":"193.108.146.0\/25", + "version":28873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.146.128", + "prefixLen":25, + "network":"193.108.146.128\/25", + "version":28872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.147.0", + "prefixLen":25, + "network":"193.108.147.0\/25", + "version":28871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.147.128", + "prefixLen":25, + "network":"193.108.147.128\/25", + "version":28870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.160.0", + "prefixLen":25, + "network":"193.108.160.0\/25", + "version":28869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.160.128", + "prefixLen":25, + "network":"193.108.160.128\/25", + "version":28868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.161.0", + "prefixLen":25, + "network":"193.108.161.0\/25", + "version":28867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.161.128", + "prefixLen":25, + "network":"193.108.161.128\/25", + "version":28866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.162.0", + "prefixLen":25, + "network":"193.108.162.0\/25", + "version":28865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.162.128", + "prefixLen":25, + "network":"193.108.162.128\/25", + "version":28864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.163.0", + "prefixLen":25, + "network":"193.108.163.0\/25", + "version":28863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.163.128", + "prefixLen":25, + "network":"193.108.163.128\/25", + "version":28862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.176.0", + "prefixLen":25, + "network":"193.108.176.0\/25", + "version":28861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.176.128", + "prefixLen":25, + "network":"193.108.176.128\/25", + "version":28860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.177.0", + "prefixLen":25, + "network":"193.108.177.0\/25", + "version":28859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.177.128", + "prefixLen":25, + "network":"193.108.177.128\/25", + "version":28858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.178.0", + "prefixLen":25, + "network":"193.108.178.0\/25", + "version":28857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.178.128", + "prefixLen":25, + "network":"193.108.178.128\/25", + "version":28856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.179.0", + "prefixLen":25, + "network":"193.108.179.0\/25", + "version":28855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.179.128", + "prefixLen":25, + "network":"193.108.179.128\/25", + "version":28854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.192.0", + "prefixLen":25, + "network":"193.108.192.0\/25", + "version":28853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.192.128", + "prefixLen":25, + "network":"193.108.192.128\/25", + "version":28852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.193.0", + "prefixLen":25, + "network":"193.108.193.0\/25", + "version":28851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.193.128", + "prefixLen":25, + "network":"193.108.193.128\/25", + "version":28850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.194.0", + "prefixLen":25, + "network":"193.108.194.0\/25", + "version":28849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.194.128", + "prefixLen":25, + "network":"193.108.194.128\/25", + "version":28848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.195.0", + "prefixLen":25, + "network":"193.108.195.0\/25", + "version":28847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.195.128", + "prefixLen":25, + "network":"193.108.195.128\/25", + "version":28846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.208.0", + "prefixLen":25, + "network":"193.108.208.0\/25", + "version":28845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.208.128", + "prefixLen":25, + "network":"193.108.208.128\/25", + "version":28844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.209.0", + "prefixLen":25, + "network":"193.108.209.0\/25", + "version":28843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.209.128", + "prefixLen":25, + "network":"193.108.209.128\/25", + "version":28842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.210.0", + "prefixLen":25, + "network":"193.108.210.0\/25", + "version":28841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.210.128", + "prefixLen":25, + "network":"193.108.210.128\/25", + "version":28840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.211.0", + "prefixLen":25, + "network":"193.108.211.0\/25", + "version":28839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.211.128", + "prefixLen":25, + "network":"193.108.211.128\/25", + "version":28838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.224.0", + "prefixLen":25, + "network":"193.108.224.0\/25", + "version":28837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.224.128", + "prefixLen":25, + "network":"193.108.224.128\/25", + "version":28836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.225.0", + "prefixLen":25, + "network":"193.108.225.0\/25", + "version":28835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.225.128", + "prefixLen":25, + "network":"193.108.225.128\/25", + "version":28834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.226.0", + "prefixLen":25, + "network":"193.108.226.0\/25", + "version":28833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.226.128", + "prefixLen":25, + "network":"193.108.226.128\/25", + "version":28832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.227.0", + "prefixLen":25, + "network":"193.108.227.0\/25", + "version":28831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.227.128", + "prefixLen":25, + "network":"193.108.227.128\/25", + "version":28830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.240.0", + "prefixLen":25, + "network":"193.108.240.0\/25", + "version":28829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.240.128", + "prefixLen":25, + "network":"193.108.240.128\/25", + "version":28828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.241.0", + "prefixLen":25, + "network":"193.108.241.0\/25", + "version":28827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.241.128", + "prefixLen":25, + "network":"193.108.241.128\/25", + "version":28826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.242.0", + "prefixLen":25, + "network":"193.108.242.0\/25", + "version":28825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.242.128", + "prefixLen":25, + "network":"193.108.242.128\/25", + "version":28824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.243.0", + "prefixLen":25, + "network":"193.108.243.0\/25", + "version":28823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.108.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.108.243.128", + "prefixLen":25, + "network":"193.108.243.128\/25", + "version":28822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64796 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.0.0", + "prefixLen":25, + "network":"193.109.0.0\/25", + "version":30229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.0.128", + "prefixLen":25, + "network":"193.109.0.128\/25", + "version":30356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.1.0", + "prefixLen":25, + "network":"193.109.1.0\/25", + "version":30355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.1.128", + "prefixLen":25, + "network":"193.109.1.128\/25", + "version":30354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.2.0", + "prefixLen":25, + "network":"193.109.2.0\/25", + "version":30353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.2.128", + "prefixLen":25, + "network":"193.109.2.128\/25", + "version":30352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.3.0", + "prefixLen":25, + "network":"193.109.3.0\/25", + "version":30351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.3.128", + "prefixLen":25, + "network":"193.109.3.128\/25", + "version":30350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.16.0", + "prefixLen":25, + "network":"193.109.16.0\/25", + "version":30349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.16.128", + "prefixLen":25, + "network":"193.109.16.128\/25", + "version":30348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.17.0", + "prefixLen":25, + "network":"193.109.17.0\/25", + "version":30347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.17.128", + "prefixLen":25, + "network":"193.109.17.128\/25", + "version":30346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.18.0", + "prefixLen":25, + "network":"193.109.18.0\/25", + "version":30345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.18.128", + "prefixLen":25, + "network":"193.109.18.128\/25", + "version":30344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.19.0", + "prefixLen":25, + "network":"193.109.19.0\/25", + "version":30343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.19.128", + "prefixLen":25, + "network":"193.109.19.128\/25", + "version":30342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.32.0", + "prefixLen":25, + "network":"193.109.32.0\/25", + "version":30341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.32.128", + "prefixLen":25, + "network":"193.109.32.128\/25", + "version":30340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.33.0", + "prefixLen":25, + "network":"193.109.33.0\/25", + "version":30339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.33.128", + "prefixLen":25, + "network":"193.109.33.128\/25", + "version":30338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.34.0", + "prefixLen":25, + "network":"193.109.34.0\/25", + "version":30337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.34.128", + "prefixLen":25, + "network":"193.109.34.128\/25", + "version":30336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.35.0", + "prefixLen":25, + "network":"193.109.35.0\/25", + "version":30335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.35.128", + "prefixLen":25, + "network":"193.109.35.128\/25", + "version":30334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.48.0", + "prefixLen":25, + "network":"193.109.48.0\/25", + "version":30333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.48.128", + "prefixLen":25, + "network":"193.109.48.128\/25", + "version":30332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.49.0", + "prefixLen":25, + "network":"193.109.49.0\/25", + "version":30331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.49.128", + "prefixLen":25, + "network":"193.109.49.128\/25", + "version":30330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.50.0", + "prefixLen":25, + "network":"193.109.50.0\/25", + "version":30329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.50.128", + "prefixLen":25, + "network":"193.109.50.128\/25", + "version":30328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.51.0", + "prefixLen":25, + "network":"193.109.51.0\/25", + "version":30327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.51.128", + "prefixLen":25, + "network":"193.109.51.128\/25", + "version":30326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.64.0", + "prefixLen":25, + "network":"193.109.64.0\/25", + "version":30325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.64.128", + "prefixLen":25, + "network":"193.109.64.128\/25", + "version":30324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.65.0", + "prefixLen":25, + "network":"193.109.65.0\/25", + "version":30323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.65.128", + "prefixLen":25, + "network":"193.109.65.128\/25", + "version":30322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.66.0", + "prefixLen":25, + "network":"193.109.66.0\/25", + "version":30321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.66.128", + "prefixLen":25, + "network":"193.109.66.128\/25", + "version":30320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.67.0", + "prefixLen":25, + "network":"193.109.67.0\/25", + "version":30319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.67.128", + "prefixLen":25, + "network":"193.109.67.128\/25", + "version":30318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.80.0", + "prefixLen":25, + "network":"193.109.80.0\/25", + "version":30317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.80.128", + "prefixLen":25, + "network":"193.109.80.128\/25", + "version":30316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.81.0", + "prefixLen":25, + "network":"193.109.81.0\/25", + "version":30315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.81.128", + "prefixLen":25, + "network":"193.109.81.128\/25", + "version":30314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.82.0", + "prefixLen":25, + "network":"193.109.82.0\/25", + "version":30313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.82.128", + "prefixLen":25, + "network":"193.109.82.128\/25", + "version":30312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.83.0", + "prefixLen":25, + "network":"193.109.83.0\/25", + "version":30311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.83.128", + "prefixLen":25, + "network":"193.109.83.128\/25", + "version":30310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.96.0", + "prefixLen":25, + "network":"193.109.96.0\/25", + "version":30309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.96.128", + "prefixLen":25, + "network":"193.109.96.128\/25", + "version":30308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.97.0", + "prefixLen":25, + "network":"193.109.97.0\/25", + "version":30307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.97.128", + "prefixLen":25, + "network":"193.109.97.128\/25", + "version":30306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.98.0", + "prefixLen":25, + "network":"193.109.98.0\/25", + "version":30305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.98.128", + "prefixLen":25, + "network":"193.109.98.128\/25", + "version":30304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.99.0", + "prefixLen":25, + "network":"193.109.99.0\/25", + "version":30303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.99.128", + "prefixLen":25, + "network":"193.109.99.128\/25", + "version":30302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.112.0", + "prefixLen":25, + "network":"193.109.112.0\/25", + "version":30301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.112.128", + "prefixLen":25, + "network":"193.109.112.128\/25", + "version":30300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.113.0", + "prefixLen":25, + "network":"193.109.113.0\/25", + "version":30299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.113.128", + "prefixLen":25, + "network":"193.109.113.128\/25", + "version":30298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.114.0", + "prefixLen":25, + "network":"193.109.114.0\/25", + "version":30297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.114.128", + "prefixLen":25, + "network":"193.109.114.128\/25", + "version":30296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.115.0", + "prefixLen":25, + "network":"193.109.115.0\/25", + "version":30295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.115.128", + "prefixLen":25, + "network":"193.109.115.128\/25", + "version":30294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.128.0", + "prefixLen":25, + "network":"193.109.128.0\/25", + "version":30293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.128.128", + "prefixLen":25, + "network":"193.109.128.128\/25", + "version":30292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.129.0", + "prefixLen":25, + "network":"193.109.129.0\/25", + "version":30291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.129.128", + "prefixLen":25, + "network":"193.109.129.128\/25", + "version":30290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.130.0", + "prefixLen":25, + "network":"193.109.130.0\/25", + "version":30289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.130.128", + "prefixLen":25, + "network":"193.109.130.128\/25", + "version":30288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.131.0", + "prefixLen":25, + "network":"193.109.131.0\/25", + "version":30287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.131.128", + "prefixLen":25, + "network":"193.109.131.128\/25", + "version":30286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.144.0", + "prefixLen":25, + "network":"193.109.144.0\/25", + "version":30285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.144.128", + "prefixLen":25, + "network":"193.109.144.128\/25", + "version":30284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.145.0", + "prefixLen":25, + "network":"193.109.145.0\/25", + "version":30283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.145.128", + "prefixLen":25, + "network":"193.109.145.128\/25", + "version":30282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.146.0", + "prefixLen":25, + "network":"193.109.146.0\/25", + "version":30281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.146.128", + "prefixLen":25, + "network":"193.109.146.128\/25", + "version":30280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.147.0", + "prefixLen":25, + "network":"193.109.147.0\/25", + "version":30279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.147.128", + "prefixLen":25, + "network":"193.109.147.128\/25", + "version":30278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.160.0", + "prefixLen":25, + "network":"193.109.160.0\/25", + "version":30277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.160.128", + "prefixLen":25, + "network":"193.109.160.128\/25", + "version":30276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.161.0", + "prefixLen":25, + "network":"193.109.161.0\/25", + "version":30275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.161.128", + "prefixLen":25, + "network":"193.109.161.128\/25", + "version":30274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.162.0", + "prefixLen":25, + "network":"193.109.162.0\/25", + "version":30273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.162.128", + "prefixLen":25, + "network":"193.109.162.128\/25", + "version":30272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.163.0", + "prefixLen":25, + "network":"193.109.163.0\/25", + "version":30271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.163.128", + "prefixLen":25, + "network":"193.109.163.128\/25", + "version":30270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.176.0", + "prefixLen":25, + "network":"193.109.176.0\/25", + "version":30269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.176.128", + "prefixLen":25, + "network":"193.109.176.128\/25", + "version":30268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.177.0", + "prefixLen":25, + "network":"193.109.177.0\/25", + "version":30267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.177.128", + "prefixLen":25, + "network":"193.109.177.128\/25", + "version":30266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.178.0", + "prefixLen":25, + "network":"193.109.178.0\/25", + "version":30265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.178.128", + "prefixLen":25, + "network":"193.109.178.128\/25", + "version":30264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.179.0", + "prefixLen":25, + "network":"193.109.179.0\/25", + "version":30263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.179.128", + "prefixLen":25, + "network":"193.109.179.128\/25", + "version":30262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.192.0", + "prefixLen":25, + "network":"193.109.192.0\/25", + "version":30261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.192.128", + "prefixLen":25, + "network":"193.109.192.128\/25", + "version":30260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.193.0", + "prefixLen":25, + "network":"193.109.193.0\/25", + "version":30259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.193.128", + "prefixLen":25, + "network":"193.109.193.128\/25", + "version":30258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.194.0", + "prefixLen":25, + "network":"193.109.194.0\/25", + "version":30257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.194.128", + "prefixLen":25, + "network":"193.109.194.128\/25", + "version":30256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.195.0", + "prefixLen":25, + "network":"193.109.195.0\/25", + "version":30255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.195.128", + "prefixLen":25, + "network":"193.109.195.128\/25", + "version":30254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.208.0", + "prefixLen":25, + "network":"193.109.208.0\/25", + "version":30253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.208.128", + "prefixLen":25, + "network":"193.109.208.128\/25", + "version":30252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.209.0", + "prefixLen":25, + "network":"193.109.209.0\/25", + "version":30251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.209.128", + "prefixLen":25, + "network":"193.109.209.128\/25", + "version":30250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.210.0", + "prefixLen":25, + "network":"193.109.210.0\/25", + "version":30249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.210.128", + "prefixLen":25, + "network":"193.109.210.128\/25", + "version":30248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.211.0", + "prefixLen":25, + "network":"193.109.211.0\/25", + "version":30247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.211.128", + "prefixLen":25, + "network":"193.109.211.128\/25", + "version":30246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.224.0", + "prefixLen":25, + "network":"193.109.224.0\/25", + "version":30245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.224.128", + "prefixLen":25, + "network":"193.109.224.128\/25", + "version":30244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.225.0", + "prefixLen":25, + "network":"193.109.225.0\/25", + "version":30243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.225.128", + "prefixLen":25, + "network":"193.109.225.128\/25", + "version":30242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.226.0", + "prefixLen":25, + "network":"193.109.226.0\/25", + "version":30241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.226.128", + "prefixLen":25, + "network":"193.109.226.128\/25", + "version":30240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.227.0", + "prefixLen":25, + "network":"193.109.227.0\/25", + "version":30239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.227.128", + "prefixLen":25, + "network":"193.109.227.128\/25", + "version":30238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.240.0", + "prefixLen":25, + "network":"193.109.240.0\/25", + "version":30237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.240.128", + "prefixLen":25, + "network":"193.109.240.128\/25", + "version":30236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.241.0", + "prefixLen":25, + "network":"193.109.241.0\/25", + "version":30235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.241.128", + "prefixLen":25, + "network":"193.109.241.128\/25", + "version":30234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.242.0", + "prefixLen":25, + "network":"193.109.242.0\/25", + "version":30233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.242.128", + "prefixLen":25, + "network":"193.109.242.128\/25", + "version":30232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.243.0", + "prefixLen":25, + "network":"193.109.243.0\/25", + "version":30231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.109.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.109.243.128", + "prefixLen":25, + "network":"193.109.243.128\/25", + "version":30230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64797 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.0.0", + "prefixLen":25, + "network":"193.110.0.0\/25", + "version":30357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.0.128", + "prefixLen":25, + "network":"193.110.0.128\/25", + "version":30484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.1.0", + "prefixLen":25, + "network":"193.110.1.0\/25", + "version":30483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.1.128", + "prefixLen":25, + "network":"193.110.1.128\/25", + "version":30482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.2.0", + "prefixLen":25, + "network":"193.110.2.0\/25", + "version":30481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.2.128", + "prefixLen":25, + "network":"193.110.2.128\/25", + "version":30480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.3.0", + "prefixLen":25, + "network":"193.110.3.0\/25", + "version":30479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.3.128", + "prefixLen":25, + "network":"193.110.3.128\/25", + "version":30478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.16.0", + "prefixLen":25, + "network":"193.110.16.0\/25", + "version":30477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.16.128", + "prefixLen":25, + "network":"193.110.16.128\/25", + "version":30476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.17.0", + "prefixLen":25, + "network":"193.110.17.0\/25", + "version":30475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.17.128", + "prefixLen":25, + "network":"193.110.17.128\/25", + "version":30474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.18.0", + "prefixLen":25, + "network":"193.110.18.0\/25", + "version":30473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.18.128", + "prefixLen":25, + "network":"193.110.18.128\/25", + "version":30472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.19.0", + "prefixLen":25, + "network":"193.110.19.0\/25", + "version":30471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.19.128", + "prefixLen":25, + "network":"193.110.19.128\/25", + "version":30470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.32.0", + "prefixLen":25, + "network":"193.110.32.0\/25", + "version":30469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.32.128", + "prefixLen":25, + "network":"193.110.32.128\/25", + "version":30468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.33.0", + "prefixLen":25, + "network":"193.110.33.0\/25", + "version":30467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.33.128", + "prefixLen":25, + "network":"193.110.33.128\/25", + "version":30466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.34.0", + "prefixLen":25, + "network":"193.110.34.0\/25", + "version":30465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.34.128", + "prefixLen":25, + "network":"193.110.34.128\/25", + "version":30464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.35.0", + "prefixLen":25, + "network":"193.110.35.0\/25", + "version":30463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.35.128", + "prefixLen":25, + "network":"193.110.35.128\/25", + "version":30462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.48.0", + "prefixLen":25, + "network":"193.110.48.0\/25", + "version":30461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.48.128", + "prefixLen":25, + "network":"193.110.48.128\/25", + "version":30460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.49.0", + "prefixLen":25, + "network":"193.110.49.0\/25", + "version":30459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.49.128", + "prefixLen":25, + "network":"193.110.49.128\/25", + "version":30458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.50.0", + "prefixLen":25, + "network":"193.110.50.0\/25", + "version":30457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.50.128", + "prefixLen":25, + "network":"193.110.50.128\/25", + "version":30456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.51.0", + "prefixLen":25, + "network":"193.110.51.0\/25", + "version":30455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.51.128", + "prefixLen":25, + "network":"193.110.51.128\/25", + "version":30454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.64.0", + "prefixLen":25, + "network":"193.110.64.0\/25", + "version":30453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.64.128", + "prefixLen":25, + "network":"193.110.64.128\/25", + "version":30452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.65.0", + "prefixLen":25, + "network":"193.110.65.0\/25", + "version":30451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.65.128", + "prefixLen":25, + "network":"193.110.65.128\/25", + "version":30450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.66.0", + "prefixLen":25, + "network":"193.110.66.0\/25", + "version":30449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.66.128", + "prefixLen":25, + "network":"193.110.66.128\/25", + "version":30448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.67.0", + "prefixLen":25, + "network":"193.110.67.0\/25", + "version":30447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.67.128", + "prefixLen":25, + "network":"193.110.67.128\/25", + "version":30446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.80.0", + "prefixLen":25, + "network":"193.110.80.0\/25", + "version":30445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.80.128", + "prefixLen":25, + "network":"193.110.80.128\/25", + "version":30444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.81.0", + "prefixLen":25, + "network":"193.110.81.0\/25", + "version":30443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.81.128", + "prefixLen":25, + "network":"193.110.81.128\/25", + "version":30442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.82.0", + "prefixLen":25, + "network":"193.110.82.0\/25", + "version":30441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.82.128", + "prefixLen":25, + "network":"193.110.82.128\/25", + "version":30440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.83.0", + "prefixLen":25, + "network":"193.110.83.0\/25", + "version":30439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.83.128", + "prefixLen":25, + "network":"193.110.83.128\/25", + "version":30438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.96.0", + "prefixLen":25, + "network":"193.110.96.0\/25", + "version":30437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.96.128", + "prefixLen":25, + "network":"193.110.96.128\/25", + "version":30436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.97.0", + "prefixLen":25, + "network":"193.110.97.0\/25", + "version":30435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.97.128", + "prefixLen":25, + "network":"193.110.97.128\/25", + "version":30434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.98.0", + "prefixLen":25, + "network":"193.110.98.0\/25", + "version":30433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.98.128", + "prefixLen":25, + "network":"193.110.98.128\/25", + "version":30432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.99.0", + "prefixLen":25, + "network":"193.110.99.0\/25", + "version":30431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.99.128", + "prefixLen":25, + "network":"193.110.99.128\/25", + "version":30430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.112.0", + "prefixLen":25, + "network":"193.110.112.0\/25", + "version":30429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.112.128", + "prefixLen":25, + "network":"193.110.112.128\/25", + "version":30428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.113.0", + "prefixLen":25, + "network":"193.110.113.0\/25", + "version":30427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.113.128", + "prefixLen":25, + "network":"193.110.113.128\/25", + "version":30426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.114.0", + "prefixLen":25, + "network":"193.110.114.0\/25", + "version":30425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.114.128", + "prefixLen":25, + "network":"193.110.114.128\/25", + "version":30424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.115.0", + "prefixLen":25, + "network":"193.110.115.0\/25", + "version":30423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.115.128", + "prefixLen":25, + "network":"193.110.115.128\/25", + "version":30422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.128.0", + "prefixLen":25, + "network":"193.110.128.0\/25", + "version":30421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.128.128", + "prefixLen":25, + "network":"193.110.128.128\/25", + "version":30420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.129.0", + "prefixLen":25, + "network":"193.110.129.0\/25", + "version":30419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.129.128", + "prefixLen":25, + "network":"193.110.129.128\/25", + "version":30418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.130.0", + "prefixLen":25, + "network":"193.110.130.0\/25", + "version":30417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.130.128", + "prefixLen":25, + "network":"193.110.130.128\/25", + "version":30416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.131.0", + "prefixLen":25, + "network":"193.110.131.0\/25", + "version":30415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.131.128", + "prefixLen":25, + "network":"193.110.131.128\/25", + "version":30414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.144.0", + "prefixLen":25, + "network":"193.110.144.0\/25", + "version":30413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.144.128", + "prefixLen":25, + "network":"193.110.144.128\/25", + "version":30412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.145.0", + "prefixLen":25, + "network":"193.110.145.0\/25", + "version":30411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.145.128", + "prefixLen":25, + "network":"193.110.145.128\/25", + "version":30410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.146.0", + "prefixLen":25, + "network":"193.110.146.0\/25", + "version":30409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.146.128", + "prefixLen":25, + "network":"193.110.146.128\/25", + "version":30408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.147.0", + "prefixLen":25, + "network":"193.110.147.0\/25", + "version":30407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.147.128", + "prefixLen":25, + "network":"193.110.147.128\/25", + "version":30406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.160.0", + "prefixLen":25, + "network":"193.110.160.0\/25", + "version":30405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.160.128", + "prefixLen":25, + "network":"193.110.160.128\/25", + "version":30404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.161.0", + "prefixLen":25, + "network":"193.110.161.0\/25", + "version":30403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.161.128", + "prefixLen":25, + "network":"193.110.161.128\/25", + "version":30402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.162.0", + "prefixLen":25, + "network":"193.110.162.0\/25", + "version":30401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.162.128", + "prefixLen":25, + "network":"193.110.162.128\/25", + "version":30400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.163.0", + "prefixLen":25, + "network":"193.110.163.0\/25", + "version":30399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.163.128", + "prefixLen":25, + "network":"193.110.163.128\/25", + "version":30398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.176.0", + "prefixLen":25, + "network":"193.110.176.0\/25", + "version":30397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.176.128", + "prefixLen":25, + "network":"193.110.176.128\/25", + "version":30396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.177.0", + "prefixLen":25, + "network":"193.110.177.0\/25", + "version":30395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.177.128", + "prefixLen":25, + "network":"193.110.177.128\/25", + "version":30394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.178.0", + "prefixLen":25, + "network":"193.110.178.0\/25", + "version":30393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.178.128", + "prefixLen":25, + "network":"193.110.178.128\/25", + "version":30392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.179.0", + "prefixLen":25, + "network":"193.110.179.0\/25", + "version":30391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.179.128", + "prefixLen":25, + "network":"193.110.179.128\/25", + "version":30390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.192.0", + "prefixLen":25, + "network":"193.110.192.0\/25", + "version":30389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.192.128", + "prefixLen":25, + "network":"193.110.192.128\/25", + "version":30388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.193.0", + "prefixLen":25, + "network":"193.110.193.0\/25", + "version":30387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.193.128", + "prefixLen":25, + "network":"193.110.193.128\/25", + "version":30386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.194.0", + "prefixLen":25, + "network":"193.110.194.0\/25", + "version":30385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.194.128", + "prefixLen":25, + "network":"193.110.194.128\/25", + "version":30384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.195.0", + "prefixLen":25, + "network":"193.110.195.0\/25", + "version":30383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.195.128", + "prefixLen":25, + "network":"193.110.195.128\/25", + "version":30382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.208.0", + "prefixLen":25, + "network":"193.110.208.0\/25", + "version":30381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.208.128", + "prefixLen":25, + "network":"193.110.208.128\/25", + "version":30380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.209.0", + "prefixLen":25, + "network":"193.110.209.0\/25", + "version":30379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.209.128", + "prefixLen":25, + "network":"193.110.209.128\/25", + "version":30378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.210.0", + "prefixLen":25, + "network":"193.110.210.0\/25", + "version":30377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.210.128", + "prefixLen":25, + "network":"193.110.210.128\/25", + "version":30376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.211.0", + "prefixLen":25, + "network":"193.110.211.0\/25", + "version":30375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.211.128", + "prefixLen":25, + "network":"193.110.211.128\/25", + "version":30374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.224.0", + "prefixLen":25, + "network":"193.110.224.0\/25", + "version":30373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.224.128", + "prefixLen":25, + "network":"193.110.224.128\/25", + "version":30372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.225.0", + "prefixLen":25, + "network":"193.110.225.0\/25", + "version":30371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.225.128", + "prefixLen":25, + "network":"193.110.225.128\/25", + "version":30370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.226.0", + "prefixLen":25, + "network":"193.110.226.0\/25", + "version":30369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.226.128", + "prefixLen":25, + "network":"193.110.226.128\/25", + "version":30368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.227.0", + "prefixLen":25, + "network":"193.110.227.0\/25", + "version":30367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.227.128", + "prefixLen":25, + "network":"193.110.227.128\/25", + "version":30366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.240.0", + "prefixLen":25, + "network":"193.110.240.0\/25", + "version":30365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.240.128", + "prefixLen":25, + "network":"193.110.240.128\/25", + "version":30364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.241.0", + "prefixLen":25, + "network":"193.110.241.0\/25", + "version":30363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.241.128", + "prefixLen":25, + "network":"193.110.241.128\/25", + "version":30362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.242.0", + "prefixLen":25, + "network":"193.110.242.0\/25", + "version":30361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.242.128", + "prefixLen":25, + "network":"193.110.242.128\/25", + "version":30360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.243.0", + "prefixLen":25, + "network":"193.110.243.0\/25", + "version":30359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.110.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.110.243.128", + "prefixLen":25, + "network":"193.110.243.128\/25", + "version":30358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64798 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.0.0", + "prefixLen":25, + "network":"193.111.0.0\/25", + "version":30485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.0.128", + "prefixLen":25, + "network":"193.111.0.128\/25", + "version":30612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.1.0", + "prefixLen":25, + "network":"193.111.1.0\/25", + "version":30611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.1.128", + "prefixLen":25, + "network":"193.111.1.128\/25", + "version":30610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.2.0", + "prefixLen":25, + "network":"193.111.2.0\/25", + "version":30609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.2.128", + "prefixLen":25, + "network":"193.111.2.128\/25", + "version":30608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.3.0", + "prefixLen":25, + "network":"193.111.3.0\/25", + "version":30607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.3.128", + "prefixLen":25, + "network":"193.111.3.128\/25", + "version":30606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.16.0", + "prefixLen":25, + "network":"193.111.16.0\/25", + "version":30605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.16.128", + "prefixLen":25, + "network":"193.111.16.128\/25", + "version":30604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.17.0", + "prefixLen":25, + "network":"193.111.17.0\/25", + "version":30603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.17.128", + "prefixLen":25, + "network":"193.111.17.128\/25", + "version":30602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.18.0", + "prefixLen":25, + "network":"193.111.18.0\/25", + "version":30601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.18.128", + "prefixLen":25, + "network":"193.111.18.128\/25", + "version":30600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.19.0", + "prefixLen":25, + "network":"193.111.19.0\/25", + "version":30599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.19.128", + "prefixLen":25, + "network":"193.111.19.128\/25", + "version":30598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.32.0", + "prefixLen":25, + "network":"193.111.32.0\/25", + "version":30597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.32.128", + "prefixLen":25, + "network":"193.111.32.128\/25", + "version":30596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.33.0", + "prefixLen":25, + "network":"193.111.33.0\/25", + "version":30595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.33.128", + "prefixLen":25, + "network":"193.111.33.128\/25", + "version":30594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.34.0", + "prefixLen":25, + "network":"193.111.34.0\/25", + "version":30593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.34.128", + "prefixLen":25, + "network":"193.111.34.128\/25", + "version":30592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.35.0", + "prefixLen":25, + "network":"193.111.35.0\/25", + "version":30591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.35.128", + "prefixLen":25, + "network":"193.111.35.128\/25", + "version":30590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.48.0", + "prefixLen":25, + "network":"193.111.48.0\/25", + "version":30589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.48.128", + "prefixLen":25, + "network":"193.111.48.128\/25", + "version":30588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.49.0", + "prefixLen":25, + "network":"193.111.49.0\/25", + "version":30587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.49.128", + "prefixLen":25, + "network":"193.111.49.128\/25", + "version":30586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.50.0", + "prefixLen":25, + "network":"193.111.50.0\/25", + "version":30585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.50.128", + "prefixLen":25, + "network":"193.111.50.128\/25", + "version":30584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.51.0", + "prefixLen":25, + "network":"193.111.51.0\/25", + "version":30583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.51.128", + "prefixLen":25, + "network":"193.111.51.128\/25", + "version":30582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.64.0", + "prefixLen":25, + "network":"193.111.64.0\/25", + "version":30581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.64.128", + "prefixLen":25, + "network":"193.111.64.128\/25", + "version":30580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.65.0", + "prefixLen":25, + "network":"193.111.65.0\/25", + "version":30579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.65.128", + "prefixLen":25, + "network":"193.111.65.128\/25", + "version":30578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.66.0", + "prefixLen":25, + "network":"193.111.66.0\/25", + "version":30577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.66.128", + "prefixLen":25, + "network":"193.111.66.128\/25", + "version":30576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.67.0", + "prefixLen":25, + "network":"193.111.67.0\/25", + "version":30575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.67.128", + "prefixLen":25, + "network":"193.111.67.128\/25", + "version":30574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.80.0", + "prefixLen":25, + "network":"193.111.80.0\/25", + "version":30573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.80.128", + "prefixLen":25, + "network":"193.111.80.128\/25", + "version":30572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.81.0", + "prefixLen":25, + "network":"193.111.81.0\/25", + "version":30571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.81.128", + "prefixLen":25, + "network":"193.111.81.128\/25", + "version":30570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.82.0", + "prefixLen":25, + "network":"193.111.82.0\/25", + "version":30569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.82.128", + "prefixLen":25, + "network":"193.111.82.128\/25", + "version":30568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.83.0", + "prefixLen":25, + "network":"193.111.83.0\/25", + "version":30567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.83.128", + "prefixLen":25, + "network":"193.111.83.128\/25", + "version":30566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.96.0", + "prefixLen":25, + "network":"193.111.96.0\/25", + "version":30565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.96.128", + "prefixLen":25, + "network":"193.111.96.128\/25", + "version":30564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.97.0", + "prefixLen":25, + "network":"193.111.97.0\/25", + "version":30563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.97.128", + "prefixLen":25, + "network":"193.111.97.128\/25", + "version":30562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.98.0", + "prefixLen":25, + "network":"193.111.98.0\/25", + "version":30561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.98.128", + "prefixLen":25, + "network":"193.111.98.128\/25", + "version":30560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.99.0", + "prefixLen":25, + "network":"193.111.99.0\/25", + "version":30559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.99.128", + "prefixLen":25, + "network":"193.111.99.128\/25", + "version":30558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.112.0", + "prefixLen":25, + "network":"193.111.112.0\/25", + "version":30557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.112.128", + "prefixLen":25, + "network":"193.111.112.128\/25", + "version":30556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.113.0", + "prefixLen":25, + "network":"193.111.113.0\/25", + "version":30555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.113.128", + "prefixLen":25, + "network":"193.111.113.128\/25", + "version":30554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.114.0", + "prefixLen":25, + "network":"193.111.114.0\/25", + "version":30553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.114.128", + "prefixLen":25, + "network":"193.111.114.128\/25", + "version":30552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.115.0", + "prefixLen":25, + "network":"193.111.115.0\/25", + "version":30551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.115.128", + "prefixLen":25, + "network":"193.111.115.128\/25", + "version":30550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.128.0", + "prefixLen":25, + "network":"193.111.128.0\/25", + "version":30549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.128.128", + "prefixLen":25, + "network":"193.111.128.128\/25", + "version":30548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.129.0", + "prefixLen":25, + "network":"193.111.129.0\/25", + "version":30547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.129.128", + "prefixLen":25, + "network":"193.111.129.128\/25", + "version":30546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.130.0", + "prefixLen":25, + "network":"193.111.130.0\/25", + "version":30545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.130.128", + "prefixLen":25, + "network":"193.111.130.128\/25", + "version":30544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.131.0", + "prefixLen":25, + "network":"193.111.131.0\/25", + "version":30543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.131.128", + "prefixLen":25, + "network":"193.111.131.128\/25", + "version":30542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.144.0", + "prefixLen":25, + "network":"193.111.144.0\/25", + "version":30541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.144.128", + "prefixLen":25, + "network":"193.111.144.128\/25", + "version":30540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.145.0", + "prefixLen":25, + "network":"193.111.145.0\/25", + "version":30539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.145.128", + "prefixLen":25, + "network":"193.111.145.128\/25", + "version":30538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.146.0", + "prefixLen":25, + "network":"193.111.146.0\/25", + "version":30537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.146.128", + "prefixLen":25, + "network":"193.111.146.128\/25", + "version":30536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.147.0", + "prefixLen":25, + "network":"193.111.147.0\/25", + "version":30535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.147.128", + "prefixLen":25, + "network":"193.111.147.128\/25", + "version":30534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.160.0", + "prefixLen":25, + "network":"193.111.160.0\/25", + "version":30533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.160.128", + "prefixLen":25, + "network":"193.111.160.128\/25", + "version":30532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.161.0", + "prefixLen":25, + "network":"193.111.161.0\/25", + "version":30531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.161.128", + "prefixLen":25, + "network":"193.111.161.128\/25", + "version":30530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.162.0", + "prefixLen":25, + "network":"193.111.162.0\/25", + "version":30529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.162.128", + "prefixLen":25, + "network":"193.111.162.128\/25", + "version":30528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.163.0", + "prefixLen":25, + "network":"193.111.163.0\/25", + "version":30527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.163.128", + "prefixLen":25, + "network":"193.111.163.128\/25", + "version":30526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.176.0", + "prefixLen":25, + "network":"193.111.176.0\/25", + "version":30525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.176.128", + "prefixLen":25, + "network":"193.111.176.128\/25", + "version":30524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.177.0", + "prefixLen":25, + "network":"193.111.177.0\/25", + "version":30523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.177.128", + "prefixLen":25, + "network":"193.111.177.128\/25", + "version":30522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.178.0", + "prefixLen":25, + "network":"193.111.178.0\/25", + "version":30521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.178.128", + "prefixLen":25, + "network":"193.111.178.128\/25", + "version":30520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.179.0", + "prefixLen":25, + "network":"193.111.179.0\/25", + "version":30519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.179.128", + "prefixLen":25, + "network":"193.111.179.128\/25", + "version":30518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.192.0", + "prefixLen":25, + "network":"193.111.192.0\/25", + "version":30517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.192.128", + "prefixLen":25, + "network":"193.111.192.128\/25", + "version":30516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.193.0", + "prefixLen":25, + "network":"193.111.193.0\/25", + "version":30515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.193.128", + "prefixLen":25, + "network":"193.111.193.128\/25", + "version":30514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.194.0", + "prefixLen":25, + "network":"193.111.194.0\/25", + "version":30513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.194.128", + "prefixLen":25, + "network":"193.111.194.128\/25", + "version":30512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.195.0", + "prefixLen":25, + "network":"193.111.195.0\/25", + "version":30511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.195.128", + "prefixLen":25, + "network":"193.111.195.128\/25", + "version":30510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.208.0", + "prefixLen":25, + "network":"193.111.208.0\/25", + "version":30509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.208.128", + "prefixLen":25, + "network":"193.111.208.128\/25", + "version":30508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.209.0", + "prefixLen":25, + "network":"193.111.209.0\/25", + "version":30507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.209.128", + "prefixLen":25, + "network":"193.111.209.128\/25", + "version":30506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.210.0", + "prefixLen":25, + "network":"193.111.210.0\/25", + "version":30505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.210.128", + "prefixLen":25, + "network":"193.111.210.128\/25", + "version":30504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.211.0", + "prefixLen":25, + "network":"193.111.211.0\/25", + "version":30503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.211.128", + "prefixLen":25, + "network":"193.111.211.128\/25", + "version":30502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.224.0", + "prefixLen":25, + "network":"193.111.224.0\/25", + "version":30501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.224.128", + "prefixLen":25, + "network":"193.111.224.128\/25", + "version":30500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.225.0", + "prefixLen":25, + "network":"193.111.225.0\/25", + "version":30499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.225.128", + "prefixLen":25, + "network":"193.111.225.128\/25", + "version":30498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.226.0", + "prefixLen":25, + "network":"193.111.226.0\/25", + "version":30497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.226.128", + "prefixLen":25, + "network":"193.111.226.128\/25", + "version":30496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.227.0", + "prefixLen":25, + "network":"193.111.227.0\/25", + "version":30495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.227.128", + "prefixLen":25, + "network":"193.111.227.128\/25", + "version":30494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.240.0", + "prefixLen":25, + "network":"193.111.240.0\/25", + "version":30493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.240.128", + "prefixLen":25, + "network":"193.111.240.128\/25", + "version":30492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.241.0", + "prefixLen":25, + "network":"193.111.241.0\/25", + "version":30491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.241.128", + "prefixLen":25, + "network":"193.111.241.128\/25", + "version":30490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.242.0", + "prefixLen":25, + "network":"193.111.242.0\/25", + "version":30489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.242.128", + "prefixLen":25, + "network":"193.111.242.128\/25", + "version":30488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.243.0", + "prefixLen":25, + "network":"193.111.243.0\/25", + "version":30487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.111.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.111.243.128", + "prefixLen":25, + "network":"193.111.243.128\/25", + "version":30486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64799 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.0.0", + "prefixLen":25, + "network":"193.112.0.0\/25", + "version":30613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.0.128", + "prefixLen":25, + "network":"193.112.0.128\/25", + "version":30740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.1.0", + "prefixLen":25, + "network":"193.112.1.0\/25", + "version":30739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.1.128", + "prefixLen":25, + "network":"193.112.1.128\/25", + "version":30738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.2.0", + "prefixLen":25, + "network":"193.112.2.0\/25", + "version":30737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.2.128", + "prefixLen":25, + "network":"193.112.2.128\/25", + "version":30736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.3.0", + "prefixLen":25, + "network":"193.112.3.0\/25", + "version":30735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.3.128", + "prefixLen":25, + "network":"193.112.3.128\/25", + "version":30734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.16.0", + "prefixLen":25, + "network":"193.112.16.0\/25", + "version":30733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.16.128", + "prefixLen":25, + "network":"193.112.16.128\/25", + "version":30732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.17.0", + "prefixLen":25, + "network":"193.112.17.0\/25", + "version":30731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.17.128", + "prefixLen":25, + "network":"193.112.17.128\/25", + "version":30730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.18.0", + "prefixLen":25, + "network":"193.112.18.0\/25", + "version":30729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.18.128", + "prefixLen":25, + "network":"193.112.18.128\/25", + "version":30728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.19.0", + "prefixLen":25, + "network":"193.112.19.0\/25", + "version":30727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.19.128", + "prefixLen":25, + "network":"193.112.19.128\/25", + "version":30726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.32.0", + "prefixLen":25, + "network":"193.112.32.0\/25", + "version":30725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.32.128", + "prefixLen":25, + "network":"193.112.32.128\/25", + "version":30724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.33.0", + "prefixLen":25, + "network":"193.112.33.0\/25", + "version":30723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.33.128", + "prefixLen":25, + "network":"193.112.33.128\/25", + "version":30722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.34.0", + "prefixLen":25, + "network":"193.112.34.0\/25", + "version":30721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.34.128", + "prefixLen":25, + "network":"193.112.34.128\/25", + "version":30720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.35.0", + "prefixLen":25, + "network":"193.112.35.0\/25", + "version":30719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.35.128", + "prefixLen":25, + "network":"193.112.35.128\/25", + "version":30718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.48.0", + "prefixLen":25, + "network":"193.112.48.0\/25", + "version":30717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.48.128", + "prefixLen":25, + "network":"193.112.48.128\/25", + "version":30716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.49.0", + "prefixLen":25, + "network":"193.112.49.0\/25", + "version":30715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.49.128", + "prefixLen":25, + "network":"193.112.49.128\/25", + "version":30714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.50.0", + "prefixLen":25, + "network":"193.112.50.0\/25", + "version":30713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.50.128", + "prefixLen":25, + "network":"193.112.50.128\/25", + "version":30712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.51.0", + "prefixLen":25, + "network":"193.112.51.0\/25", + "version":30711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.51.128", + "prefixLen":25, + "network":"193.112.51.128\/25", + "version":30710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.64.0", + "prefixLen":25, + "network":"193.112.64.0\/25", + "version":30709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.64.128", + "prefixLen":25, + "network":"193.112.64.128\/25", + "version":30708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.65.0", + "prefixLen":25, + "network":"193.112.65.0\/25", + "version":30707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.65.128", + "prefixLen":25, + "network":"193.112.65.128\/25", + "version":30706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.66.0", + "prefixLen":25, + "network":"193.112.66.0\/25", + "version":30705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.66.128", + "prefixLen":25, + "network":"193.112.66.128\/25", + "version":30704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.67.0", + "prefixLen":25, + "network":"193.112.67.0\/25", + "version":30703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.67.128", + "prefixLen":25, + "network":"193.112.67.128\/25", + "version":30702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.80.0", + "prefixLen":25, + "network":"193.112.80.0\/25", + "version":30701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.80.128", + "prefixLen":25, + "network":"193.112.80.128\/25", + "version":30700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.81.0", + "prefixLen":25, + "network":"193.112.81.0\/25", + "version":30699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.81.128", + "prefixLen":25, + "network":"193.112.81.128\/25", + "version":30698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.82.0", + "prefixLen":25, + "network":"193.112.82.0\/25", + "version":30697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.82.128", + "prefixLen":25, + "network":"193.112.82.128\/25", + "version":30696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.83.0", + "prefixLen":25, + "network":"193.112.83.0\/25", + "version":30695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.83.128", + "prefixLen":25, + "network":"193.112.83.128\/25", + "version":30694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.96.0", + "prefixLen":25, + "network":"193.112.96.0\/25", + "version":30693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.96.128", + "prefixLen":25, + "network":"193.112.96.128\/25", + "version":30692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.97.0", + "prefixLen":25, + "network":"193.112.97.0\/25", + "version":30691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.97.128", + "prefixLen":25, + "network":"193.112.97.128\/25", + "version":30690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.98.0", + "prefixLen":25, + "network":"193.112.98.0\/25", + "version":30689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.98.128", + "prefixLen":25, + "network":"193.112.98.128\/25", + "version":30688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.99.0", + "prefixLen":25, + "network":"193.112.99.0\/25", + "version":30687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.99.128", + "prefixLen":25, + "network":"193.112.99.128\/25", + "version":30686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.112.0", + "prefixLen":25, + "network":"193.112.112.0\/25", + "version":30685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.112.128", + "prefixLen":25, + "network":"193.112.112.128\/25", + "version":30684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.113.0", + "prefixLen":25, + "network":"193.112.113.0\/25", + "version":30683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.113.128", + "prefixLen":25, + "network":"193.112.113.128\/25", + "version":30682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.114.0", + "prefixLen":25, + "network":"193.112.114.0\/25", + "version":30681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.114.128", + "prefixLen":25, + "network":"193.112.114.128\/25", + "version":30680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.115.0", + "prefixLen":25, + "network":"193.112.115.0\/25", + "version":30679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.115.128", + "prefixLen":25, + "network":"193.112.115.128\/25", + "version":30678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.128.0", + "prefixLen":25, + "network":"193.112.128.0\/25", + "version":30677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.128.128", + "prefixLen":25, + "network":"193.112.128.128\/25", + "version":30676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.129.0", + "prefixLen":25, + "network":"193.112.129.0\/25", + "version":30675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.129.128", + "prefixLen":25, + "network":"193.112.129.128\/25", + "version":30674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.130.0", + "prefixLen":25, + "network":"193.112.130.0\/25", + "version":30673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.130.128", + "prefixLen":25, + "network":"193.112.130.128\/25", + "version":30672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.131.0", + "prefixLen":25, + "network":"193.112.131.0\/25", + "version":30671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.131.128", + "prefixLen":25, + "network":"193.112.131.128\/25", + "version":30670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.144.0", + "prefixLen":25, + "network":"193.112.144.0\/25", + "version":30669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.144.128", + "prefixLen":25, + "network":"193.112.144.128\/25", + "version":30668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.145.0", + "prefixLen":25, + "network":"193.112.145.0\/25", + "version":30667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.145.128", + "prefixLen":25, + "network":"193.112.145.128\/25", + "version":30666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.146.0", + "prefixLen":25, + "network":"193.112.146.0\/25", + "version":30665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.146.128", + "prefixLen":25, + "network":"193.112.146.128\/25", + "version":30664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.147.0", + "prefixLen":25, + "network":"193.112.147.0\/25", + "version":30663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.147.128", + "prefixLen":25, + "network":"193.112.147.128\/25", + "version":30662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.160.0", + "prefixLen":25, + "network":"193.112.160.0\/25", + "version":30661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.160.128", + "prefixLen":25, + "network":"193.112.160.128\/25", + "version":30660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.161.0", + "prefixLen":25, + "network":"193.112.161.0\/25", + "version":30659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.161.128", + "prefixLen":25, + "network":"193.112.161.128\/25", + "version":30658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.162.0", + "prefixLen":25, + "network":"193.112.162.0\/25", + "version":30657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.162.128", + "prefixLen":25, + "network":"193.112.162.128\/25", + "version":30656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.163.0", + "prefixLen":25, + "network":"193.112.163.0\/25", + "version":30655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.163.128", + "prefixLen":25, + "network":"193.112.163.128\/25", + "version":30654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.176.0", + "prefixLen":25, + "network":"193.112.176.0\/25", + "version":30653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.176.128", + "prefixLen":25, + "network":"193.112.176.128\/25", + "version":30652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.177.0", + "prefixLen":25, + "network":"193.112.177.0\/25", + "version":30651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.177.128", + "prefixLen":25, + "network":"193.112.177.128\/25", + "version":30650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.178.0", + "prefixLen":25, + "network":"193.112.178.0\/25", + "version":30649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.178.128", + "prefixLen":25, + "network":"193.112.178.128\/25", + "version":30648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.179.0", + "prefixLen":25, + "network":"193.112.179.0\/25", + "version":30647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.179.128", + "prefixLen":25, + "network":"193.112.179.128\/25", + "version":30646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.192.0", + "prefixLen":25, + "network":"193.112.192.0\/25", + "version":30645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.192.128", + "prefixLen":25, + "network":"193.112.192.128\/25", + "version":30644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.193.0", + "prefixLen":25, + "network":"193.112.193.0\/25", + "version":30643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.193.128", + "prefixLen":25, + "network":"193.112.193.128\/25", + "version":30642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.194.0", + "prefixLen":25, + "network":"193.112.194.0\/25", + "version":30641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.194.128", + "prefixLen":25, + "network":"193.112.194.128\/25", + "version":30640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.195.0", + "prefixLen":25, + "network":"193.112.195.0\/25", + "version":30639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.195.128", + "prefixLen":25, + "network":"193.112.195.128\/25", + "version":30638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.208.0", + "prefixLen":25, + "network":"193.112.208.0\/25", + "version":30637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.208.128", + "prefixLen":25, + "network":"193.112.208.128\/25", + "version":30636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.209.0", + "prefixLen":25, + "network":"193.112.209.0\/25", + "version":30635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.209.128", + "prefixLen":25, + "network":"193.112.209.128\/25", + "version":30634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.210.0", + "prefixLen":25, + "network":"193.112.210.0\/25", + "version":30633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.210.128", + "prefixLen":25, + "network":"193.112.210.128\/25", + "version":30632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.211.0", + "prefixLen":25, + "network":"193.112.211.0\/25", + "version":30631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.211.128", + "prefixLen":25, + "network":"193.112.211.128\/25", + "version":30630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.224.0", + "prefixLen":25, + "network":"193.112.224.0\/25", + "version":30629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.224.128", + "prefixLen":25, + "network":"193.112.224.128\/25", + "version":30628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.225.0", + "prefixLen":25, + "network":"193.112.225.0\/25", + "version":30627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.225.128", + "prefixLen":25, + "network":"193.112.225.128\/25", + "version":30626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.226.0", + "prefixLen":25, + "network":"193.112.226.0\/25", + "version":30625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.226.128", + "prefixLen":25, + "network":"193.112.226.128\/25", + "version":30624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.227.0", + "prefixLen":25, + "network":"193.112.227.0\/25", + "version":30623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.227.128", + "prefixLen":25, + "network":"193.112.227.128\/25", + "version":30622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.240.0", + "prefixLen":25, + "network":"193.112.240.0\/25", + "version":30621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.240.128", + "prefixLen":25, + "network":"193.112.240.128\/25", + "version":30620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.241.0", + "prefixLen":25, + "network":"193.112.241.0\/25", + "version":30619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.241.128", + "prefixLen":25, + "network":"193.112.241.128\/25", + "version":30618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.242.0", + "prefixLen":25, + "network":"193.112.242.0\/25", + "version":30617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.242.128", + "prefixLen":25, + "network":"193.112.242.128\/25", + "version":30616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.243.0", + "prefixLen":25, + "network":"193.112.243.0\/25", + "version":30615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.112.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.112.243.128", + "prefixLen":25, + "network":"193.112.243.128\/25", + "version":30614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64800 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.0.0", + "prefixLen":25, + "network":"193.113.0.0\/25", + "version":30741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.0.128", + "prefixLen":25, + "network":"193.113.0.128\/25", + "version":30868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.1.0", + "prefixLen":25, + "network":"193.113.1.0\/25", + "version":30867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.1.128", + "prefixLen":25, + "network":"193.113.1.128\/25", + "version":30866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.2.0", + "prefixLen":25, + "network":"193.113.2.0\/25", + "version":30865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.2.128", + "prefixLen":25, + "network":"193.113.2.128\/25", + "version":30864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.3.0", + "prefixLen":25, + "network":"193.113.3.0\/25", + "version":30863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.3.128", + "prefixLen":25, + "network":"193.113.3.128\/25", + "version":30862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.16.0", + "prefixLen":25, + "network":"193.113.16.0\/25", + "version":30861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.16.128", + "prefixLen":25, + "network":"193.113.16.128\/25", + "version":30860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.17.0", + "prefixLen":25, + "network":"193.113.17.0\/25", + "version":30859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.17.128", + "prefixLen":25, + "network":"193.113.17.128\/25", + "version":30858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.18.0", + "prefixLen":25, + "network":"193.113.18.0\/25", + "version":30857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.18.128", + "prefixLen":25, + "network":"193.113.18.128\/25", + "version":30856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.19.0", + "prefixLen":25, + "network":"193.113.19.0\/25", + "version":30855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.19.128", + "prefixLen":25, + "network":"193.113.19.128\/25", + "version":30854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.32.0", + "prefixLen":25, + "network":"193.113.32.0\/25", + "version":30853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.32.128", + "prefixLen":25, + "network":"193.113.32.128\/25", + "version":30852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.33.0", + "prefixLen":25, + "network":"193.113.33.0\/25", + "version":30851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.33.128", + "prefixLen":25, + "network":"193.113.33.128\/25", + "version":30850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.34.0", + "prefixLen":25, + "network":"193.113.34.0\/25", + "version":30849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.34.128", + "prefixLen":25, + "network":"193.113.34.128\/25", + "version":30848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.35.0", + "prefixLen":25, + "network":"193.113.35.0\/25", + "version":30847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.35.128", + "prefixLen":25, + "network":"193.113.35.128\/25", + "version":30846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.48.0", + "prefixLen":25, + "network":"193.113.48.0\/25", + "version":30845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.48.128", + "prefixLen":25, + "network":"193.113.48.128\/25", + "version":30844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.49.0", + "prefixLen":25, + "network":"193.113.49.0\/25", + "version":30843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.49.128", + "prefixLen":25, + "network":"193.113.49.128\/25", + "version":30842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.50.0", + "prefixLen":25, + "network":"193.113.50.0\/25", + "version":30841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.50.128", + "prefixLen":25, + "network":"193.113.50.128\/25", + "version":30840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.51.0", + "prefixLen":25, + "network":"193.113.51.0\/25", + "version":30839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.51.128", + "prefixLen":25, + "network":"193.113.51.128\/25", + "version":30838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.64.0", + "prefixLen":25, + "network":"193.113.64.0\/25", + "version":30837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.64.128", + "prefixLen":25, + "network":"193.113.64.128\/25", + "version":30836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.65.0", + "prefixLen":25, + "network":"193.113.65.0\/25", + "version":30835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.65.128", + "prefixLen":25, + "network":"193.113.65.128\/25", + "version":30834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.66.0", + "prefixLen":25, + "network":"193.113.66.0\/25", + "version":30833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.66.128", + "prefixLen":25, + "network":"193.113.66.128\/25", + "version":30832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.67.0", + "prefixLen":25, + "network":"193.113.67.0\/25", + "version":30831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.67.128", + "prefixLen":25, + "network":"193.113.67.128\/25", + "version":30830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.80.0", + "prefixLen":25, + "network":"193.113.80.0\/25", + "version":30829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.80.128", + "prefixLen":25, + "network":"193.113.80.128\/25", + "version":30828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.81.0", + "prefixLen":25, + "network":"193.113.81.0\/25", + "version":30827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.81.128", + "prefixLen":25, + "network":"193.113.81.128\/25", + "version":30826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.82.0", + "prefixLen":25, + "network":"193.113.82.0\/25", + "version":30825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.82.128", + "prefixLen":25, + "network":"193.113.82.128\/25", + "version":30824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.83.0", + "prefixLen":25, + "network":"193.113.83.0\/25", + "version":30823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.83.128", + "prefixLen":25, + "network":"193.113.83.128\/25", + "version":30822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.96.0", + "prefixLen":25, + "network":"193.113.96.0\/25", + "version":30821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.96.128", + "prefixLen":25, + "network":"193.113.96.128\/25", + "version":30820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.97.0", + "prefixLen":25, + "network":"193.113.97.0\/25", + "version":30819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.97.128", + "prefixLen":25, + "network":"193.113.97.128\/25", + "version":30818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.98.0", + "prefixLen":25, + "network":"193.113.98.0\/25", + "version":30817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.98.128", + "prefixLen":25, + "network":"193.113.98.128\/25", + "version":30816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.99.0", + "prefixLen":25, + "network":"193.113.99.0\/25", + "version":30815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.99.128", + "prefixLen":25, + "network":"193.113.99.128\/25", + "version":30814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.112.0", + "prefixLen":25, + "network":"193.113.112.0\/25", + "version":30813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.112.128", + "prefixLen":25, + "network":"193.113.112.128\/25", + "version":30812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.113.0", + "prefixLen":25, + "network":"193.113.113.0\/25", + "version":30811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.113.128", + "prefixLen":25, + "network":"193.113.113.128\/25", + "version":30810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.114.0", + "prefixLen":25, + "network":"193.113.114.0\/25", + "version":30809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.114.128", + "prefixLen":25, + "network":"193.113.114.128\/25", + "version":30808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.115.0", + "prefixLen":25, + "network":"193.113.115.0\/25", + "version":30807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.115.128", + "prefixLen":25, + "network":"193.113.115.128\/25", + "version":30806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.128.0", + "prefixLen":25, + "network":"193.113.128.0\/25", + "version":30805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.128.128", + "prefixLen":25, + "network":"193.113.128.128\/25", + "version":30804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.129.0", + "prefixLen":25, + "network":"193.113.129.0\/25", + "version":30803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.129.128", + "prefixLen":25, + "network":"193.113.129.128\/25", + "version":30802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.130.0", + "prefixLen":25, + "network":"193.113.130.0\/25", + "version":30801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.130.128", + "prefixLen":25, + "network":"193.113.130.128\/25", + "version":30800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.131.0", + "prefixLen":25, + "network":"193.113.131.0\/25", + "version":30799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.131.128", + "prefixLen":25, + "network":"193.113.131.128\/25", + "version":30798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.144.0", + "prefixLen":25, + "network":"193.113.144.0\/25", + "version":30797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.144.128", + "prefixLen":25, + "network":"193.113.144.128\/25", + "version":30796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.145.0", + "prefixLen":25, + "network":"193.113.145.0\/25", + "version":30795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.145.128", + "prefixLen":25, + "network":"193.113.145.128\/25", + "version":30794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.146.0", + "prefixLen":25, + "network":"193.113.146.0\/25", + "version":30793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.146.128", + "prefixLen":25, + "network":"193.113.146.128\/25", + "version":30792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.147.0", + "prefixLen":25, + "network":"193.113.147.0\/25", + "version":30791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.147.128", + "prefixLen":25, + "network":"193.113.147.128\/25", + "version":30790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.160.0", + "prefixLen":25, + "network":"193.113.160.0\/25", + "version":30789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.160.128", + "prefixLen":25, + "network":"193.113.160.128\/25", + "version":30788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.161.0", + "prefixLen":25, + "network":"193.113.161.0\/25", + "version":30787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.161.128", + "prefixLen":25, + "network":"193.113.161.128\/25", + "version":30786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.162.0", + "prefixLen":25, + "network":"193.113.162.0\/25", + "version":30785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.162.128", + "prefixLen":25, + "network":"193.113.162.128\/25", + "version":30784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.163.0", + "prefixLen":25, + "network":"193.113.163.0\/25", + "version":30783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.163.128", + "prefixLen":25, + "network":"193.113.163.128\/25", + "version":30782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.176.0", + "prefixLen":25, + "network":"193.113.176.0\/25", + "version":30781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.176.128", + "prefixLen":25, + "network":"193.113.176.128\/25", + "version":30780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.177.0", + "prefixLen":25, + "network":"193.113.177.0\/25", + "version":30779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.177.128", + "prefixLen":25, + "network":"193.113.177.128\/25", + "version":30778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.178.0", + "prefixLen":25, + "network":"193.113.178.0\/25", + "version":30777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.178.128", + "prefixLen":25, + "network":"193.113.178.128\/25", + "version":30776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.179.0", + "prefixLen":25, + "network":"193.113.179.0\/25", + "version":30775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.179.128", + "prefixLen":25, + "network":"193.113.179.128\/25", + "version":30774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.192.0", + "prefixLen":25, + "network":"193.113.192.0\/25", + "version":30773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.192.128", + "prefixLen":25, + "network":"193.113.192.128\/25", + "version":30772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.193.0", + "prefixLen":25, + "network":"193.113.193.0\/25", + "version":30771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.193.128", + "prefixLen":25, + "network":"193.113.193.128\/25", + "version":30770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.194.0", + "prefixLen":25, + "network":"193.113.194.0\/25", + "version":30769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.194.128", + "prefixLen":25, + "network":"193.113.194.128\/25", + "version":30768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.195.0", + "prefixLen":25, + "network":"193.113.195.0\/25", + "version":30767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.195.128", + "prefixLen":25, + "network":"193.113.195.128\/25", + "version":30766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.208.0", + "prefixLen":25, + "network":"193.113.208.0\/25", + "version":30765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.208.128", + "prefixLen":25, + "network":"193.113.208.128\/25", + "version":30764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.209.0", + "prefixLen":25, + "network":"193.113.209.0\/25", + "version":30763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.209.128", + "prefixLen":25, + "network":"193.113.209.128\/25", + "version":30762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.210.0", + "prefixLen":25, + "network":"193.113.210.0\/25", + "version":30761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.210.128", + "prefixLen":25, + "network":"193.113.210.128\/25", + "version":30760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.211.0", + "prefixLen":25, + "network":"193.113.211.0\/25", + "version":30759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.211.128", + "prefixLen":25, + "network":"193.113.211.128\/25", + "version":30758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.224.0", + "prefixLen":25, + "network":"193.113.224.0\/25", + "version":30757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.224.128", + "prefixLen":25, + "network":"193.113.224.128\/25", + "version":30756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.225.0", + "prefixLen":25, + "network":"193.113.225.0\/25", + "version":30755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.225.128", + "prefixLen":25, + "network":"193.113.225.128\/25", + "version":30754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.226.0", + "prefixLen":25, + "network":"193.113.226.0\/25", + "version":30753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.226.128", + "prefixLen":25, + "network":"193.113.226.128\/25", + "version":30752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.227.0", + "prefixLen":25, + "network":"193.113.227.0\/25", + "version":30751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.227.128", + "prefixLen":25, + "network":"193.113.227.128\/25", + "version":30750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.240.0", + "prefixLen":25, + "network":"193.113.240.0\/25", + "version":30749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.240.128", + "prefixLen":25, + "network":"193.113.240.128\/25", + "version":30748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.241.0", + "prefixLen":25, + "network":"193.113.241.0\/25", + "version":30747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.241.128", + "prefixLen":25, + "network":"193.113.241.128\/25", + "version":30746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.242.0", + "prefixLen":25, + "network":"193.113.242.0\/25", + "version":30745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.242.128", + "prefixLen":25, + "network":"193.113.242.128\/25", + "version":30744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.243.0", + "prefixLen":25, + "network":"193.113.243.0\/25", + "version":30743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.113.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.113.243.128", + "prefixLen":25, + "network":"193.113.243.128\/25", + "version":30742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64801 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.0.0", + "prefixLen":25, + "network":"193.114.0.0\/25", + "version":30869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.0.128", + "prefixLen":25, + "network":"193.114.0.128\/25", + "version":30996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.1.0", + "prefixLen":25, + "network":"193.114.1.0\/25", + "version":30995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.1.128", + "prefixLen":25, + "network":"193.114.1.128\/25", + "version":30994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.2.0", + "prefixLen":25, + "network":"193.114.2.0\/25", + "version":30993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.2.128", + "prefixLen":25, + "network":"193.114.2.128\/25", + "version":30992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.3.0", + "prefixLen":25, + "network":"193.114.3.0\/25", + "version":30991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.3.128", + "prefixLen":25, + "network":"193.114.3.128\/25", + "version":30990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.16.0", + "prefixLen":25, + "network":"193.114.16.0\/25", + "version":30989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.16.128", + "prefixLen":25, + "network":"193.114.16.128\/25", + "version":30988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.17.0", + "prefixLen":25, + "network":"193.114.17.0\/25", + "version":30987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.17.128", + "prefixLen":25, + "network":"193.114.17.128\/25", + "version":30986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.18.0", + "prefixLen":25, + "network":"193.114.18.0\/25", + "version":30985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.18.128", + "prefixLen":25, + "network":"193.114.18.128\/25", + "version":30984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.19.0", + "prefixLen":25, + "network":"193.114.19.0\/25", + "version":30983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.19.128", + "prefixLen":25, + "network":"193.114.19.128\/25", + "version":30982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.32.0", + "prefixLen":25, + "network":"193.114.32.0\/25", + "version":30981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.32.128", + "prefixLen":25, + "network":"193.114.32.128\/25", + "version":30980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.33.0", + "prefixLen":25, + "network":"193.114.33.0\/25", + "version":30979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.33.128", + "prefixLen":25, + "network":"193.114.33.128\/25", + "version":30978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.34.0", + "prefixLen":25, + "network":"193.114.34.0\/25", + "version":30977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.34.128", + "prefixLen":25, + "network":"193.114.34.128\/25", + "version":30976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.35.0", + "prefixLen":25, + "network":"193.114.35.0\/25", + "version":30975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.35.128", + "prefixLen":25, + "network":"193.114.35.128\/25", + "version":30974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.48.0", + "prefixLen":25, + "network":"193.114.48.0\/25", + "version":30973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.48.128", + "prefixLen":25, + "network":"193.114.48.128\/25", + "version":30972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.49.0", + "prefixLen":25, + "network":"193.114.49.0\/25", + "version":30971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.49.128", + "prefixLen":25, + "network":"193.114.49.128\/25", + "version":30970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.50.0", + "prefixLen":25, + "network":"193.114.50.0\/25", + "version":30969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.50.128", + "prefixLen":25, + "network":"193.114.50.128\/25", + "version":30968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.51.0", + "prefixLen":25, + "network":"193.114.51.0\/25", + "version":30967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.51.128", + "prefixLen":25, + "network":"193.114.51.128\/25", + "version":30966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.64.0", + "prefixLen":25, + "network":"193.114.64.0\/25", + "version":30965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.64.128", + "prefixLen":25, + "network":"193.114.64.128\/25", + "version":30964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.65.0", + "prefixLen":25, + "network":"193.114.65.0\/25", + "version":30963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.65.128", + "prefixLen":25, + "network":"193.114.65.128\/25", + "version":30962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.66.0", + "prefixLen":25, + "network":"193.114.66.0\/25", + "version":30961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.66.128", + "prefixLen":25, + "network":"193.114.66.128\/25", + "version":30960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.67.0", + "prefixLen":25, + "network":"193.114.67.0\/25", + "version":30959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.67.128", + "prefixLen":25, + "network":"193.114.67.128\/25", + "version":30958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.80.0", + "prefixLen":25, + "network":"193.114.80.0\/25", + "version":30957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.80.128", + "prefixLen":25, + "network":"193.114.80.128\/25", + "version":30956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.81.0", + "prefixLen":25, + "network":"193.114.81.0\/25", + "version":30955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.81.128", + "prefixLen":25, + "network":"193.114.81.128\/25", + "version":30954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.82.0", + "prefixLen":25, + "network":"193.114.82.0\/25", + "version":30953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.82.128", + "prefixLen":25, + "network":"193.114.82.128\/25", + "version":30952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.83.0", + "prefixLen":25, + "network":"193.114.83.0\/25", + "version":30951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.83.128", + "prefixLen":25, + "network":"193.114.83.128\/25", + "version":30950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.96.0", + "prefixLen":25, + "network":"193.114.96.0\/25", + "version":30949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.96.128", + "prefixLen":25, + "network":"193.114.96.128\/25", + "version":30948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.97.0", + "prefixLen":25, + "network":"193.114.97.0\/25", + "version":30947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.97.128", + "prefixLen":25, + "network":"193.114.97.128\/25", + "version":30946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.98.0", + "prefixLen":25, + "network":"193.114.98.0\/25", + "version":30945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.98.128", + "prefixLen":25, + "network":"193.114.98.128\/25", + "version":30944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.99.0", + "prefixLen":25, + "network":"193.114.99.0\/25", + "version":30943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.99.128", + "prefixLen":25, + "network":"193.114.99.128\/25", + "version":30942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.112.0", + "prefixLen":25, + "network":"193.114.112.0\/25", + "version":30941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.112.128", + "prefixLen":25, + "network":"193.114.112.128\/25", + "version":30940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.113.0", + "prefixLen":25, + "network":"193.114.113.0\/25", + "version":30939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.113.128", + "prefixLen":25, + "network":"193.114.113.128\/25", + "version":30938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.114.0", + "prefixLen":25, + "network":"193.114.114.0\/25", + "version":30937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.114.128", + "prefixLen":25, + "network":"193.114.114.128\/25", + "version":30936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.115.0", + "prefixLen":25, + "network":"193.114.115.0\/25", + "version":30935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.115.128", + "prefixLen":25, + "network":"193.114.115.128\/25", + "version":30934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.128.0", + "prefixLen":25, + "network":"193.114.128.0\/25", + "version":30933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.128.128", + "prefixLen":25, + "network":"193.114.128.128\/25", + "version":30932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.129.0", + "prefixLen":25, + "network":"193.114.129.0\/25", + "version":30931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.129.128", + "prefixLen":25, + "network":"193.114.129.128\/25", + "version":30930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.130.0", + "prefixLen":25, + "network":"193.114.130.0\/25", + "version":30929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.130.128", + "prefixLen":25, + "network":"193.114.130.128\/25", + "version":30928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.131.0", + "prefixLen":25, + "network":"193.114.131.0\/25", + "version":30927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.131.128", + "prefixLen":25, + "network":"193.114.131.128\/25", + "version":30926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.144.0", + "prefixLen":25, + "network":"193.114.144.0\/25", + "version":30925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.144.128", + "prefixLen":25, + "network":"193.114.144.128\/25", + "version":30924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.145.0", + "prefixLen":25, + "network":"193.114.145.0\/25", + "version":30923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.145.128", + "prefixLen":25, + "network":"193.114.145.128\/25", + "version":30922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.146.0", + "prefixLen":25, + "network":"193.114.146.0\/25", + "version":30921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.146.128", + "prefixLen":25, + "network":"193.114.146.128\/25", + "version":30920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.147.0", + "prefixLen":25, + "network":"193.114.147.0\/25", + "version":30919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.147.128", + "prefixLen":25, + "network":"193.114.147.128\/25", + "version":30918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.160.0", + "prefixLen":25, + "network":"193.114.160.0\/25", + "version":30917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.160.128", + "prefixLen":25, + "network":"193.114.160.128\/25", + "version":30916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.161.0", + "prefixLen":25, + "network":"193.114.161.0\/25", + "version":30915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.161.128", + "prefixLen":25, + "network":"193.114.161.128\/25", + "version":30914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.162.0", + "prefixLen":25, + "network":"193.114.162.0\/25", + "version":30913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.162.128", + "prefixLen":25, + "network":"193.114.162.128\/25", + "version":30912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.163.0", + "prefixLen":25, + "network":"193.114.163.0\/25", + "version":30911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.163.128", + "prefixLen":25, + "network":"193.114.163.128\/25", + "version":30910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.176.0", + "prefixLen":25, + "network":"193.114.176.0\/25", + "version":30909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.176.128", + "prefixLen":25, + "network":"193.114.176.128\/25", + "version":30908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.177.0", + "prefixLen":25, + "network":"193.114.177.0\/25", + "version":30907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.177.128", + "prefixLen":25, + "network":"193.114.177.128\/25", + "version":30906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.178.0", + "prefixLen":25, + "network":"193.114.178.0\/25", + "version":30905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.178.128", + "prefixLen":25, + "network":"193.114.178.128\/25", + "version":30904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.179.0", + "prefixLen":25, + "network":"193.114.179.0\/25", + "version":30903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.179.128", + "prefixLen":25, + "network":"193.114.179.128\/25", + "version":30902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.192.0", + "prefixLen":25, + "network":"193.114.192.0\/25", + "version":30901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.192.128", + "prefixLen":25, + "network":"193.114.192.128\/25", + "version":30900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.193.0", + "prefixLen":25, + "network":"193.114.193.0\/25", + "version":30899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.193.128", + "prefixLen":25, + "network":"193.114.193.128\/25", + "version":30898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.194.0", + "prefixLen":25, + "network":"193.114.194.0\/25", + "version":30897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.194.128", + "prefixLen":25, + "network":"193.114.194.128\/25", + "version":30896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.195.0", + "prefixLen":25, + "network":"193.114.195.0\/25", + "version":30895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.195.128", + "prefixLen":25, + "network":"193.114.195.128\/25", + "version":30894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.208.0", + "prefixLen":25, + "network":"193.114.208.0\/25", + "version":30893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.208.128", + "prefixLen":25, + "network":"193.114.208.128\/25", + "version":30892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.209.0", + "prefixLen":25, + "network":"193.114.209.0\/25", + "version":30891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.209.128", + "prefixLen":25, + "network":"193.114.209.128\/25", + "version":30890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.210.0", + "prefixLen":25, + "network":"193.114.210.0\/25", + "version":30889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.210.128", + "prefixLen":25, + "network":"193.114.210.128\/25", + "version":30888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.211.0", + "prefixLen":25, + "network":"193.114.211.0\/25", + "version":30887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.211.128", + "prefixLen":25, + "network":"193.114.211.128\/25", + "version":30886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.224.0", + "prefixLen":25, + "network":"193.114.224.0\/25", + "version":30885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.224.128", + "prefixLen":25, + "network":"193.114.224.128\/25", + "version":30884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.225.0", + "prefixLen":25, + "network":"193.114.225.0\/25", + "version":30883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.225.128", + "prefixLen":25, + "network":"193.114.225.128\/25", + "version":30882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.226.0", + "prefixLen":25, + "network":"193.114.226.0\/25", + "version":30881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.226.128", + "prefixLen":25, + "network":"193.114.226.128\/25", + "version":30880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.227.0", + "prefixLen":25, + "network":"193.114.227.0\/25", + "version":30879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.227.128", + "prefixLen":25, + "network":"193.114.227.128\/25", + "version":30878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.240.0", + "prefixLen":25, + "network":"193.114.240.0\/25", + "version":30877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.240.128", + "prefixLen":25, + "network":"193.114.240.128\/25", + "version":30876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.241.0", + "prefixLen":25, + "network":"193.114.241.0\/25", + "version":30875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.241.128", + "prefixLen":25, + "network":"193.114.241.128\/25", + "version":30874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.242.0", + "prefixLen":25, + "network":"193.114.242.0\/25", + "version":30873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.242.128", + "prefixLen":25, + "network":"193.114.242.128\/25", + "version":30872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.243.0", + "prefixLen":25, + "network":"193.114.243.0\/25", + "version":30871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.114.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.114.243.128", + "prefixLen":25, + "network":"193.114.243.128\/25", + "version":30870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64802 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.0.0", + "prefixLen":25, + "network":"193.115.0.0\/25", + "version":30997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.0.128", + "prefixLen":25, + "network":"193.115.0.128\/25", + "version":31124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.1.0", + "prefixLen":25, + "network":"193.115.1.0\/25", + "version":31123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.1.128", + "prefixLen":25, + "network":"193.115.1.128\/25", + "version":31122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.2.0", + "prefixLen":25, + "network":"193.115.2.0\/25", + "version":31121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.2.128", + "prefixLen":25, + "network":"193.115.2.128\/25", + "version":31120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.3.0", + "prefixLen":25, + "network":"193.115.3.0\/25", + "version":31119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.3.128", + "prefixLen":25, + "network":"193.115.3.128\/25", + "version":31118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.16.0", + "prefixLen":25, + "network":"193.115.16.0\/25", + "version":31117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.16.128", + "prefixLen":25, + "network":"193.115.16.128\/25", + "version":31116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.17.0", + "prefixLen":25, + "network":"193.115.17.0\/25", + "version":31115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.17.128", + "prefixLen":25, + "network":"193.115.17.128\/25", + "version":31114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.18.0", + "prefixLen":25, + "network":"193.115.18.0\/25", + "version":31113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.18.128", + "prefixLen":25, + "network":"193.115.18.128\/25", + "version":31112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.19.0", + "prefixLen":25, + "network":"193.115.19.0\/25", + "version":31111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.19.128", + "prefixLen":25, + "network":"193.115.19.128\/25", + "version":31110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.32.0", + "prefixLen":25, + "network":"193.115.32.0\/25", + "version":31109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.32.128", + "prefixLen":25, + "network":"193.115.32.128\/25", + "version":31108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.33.0", + "prefixLen":25, + "network":"193.115.33.0\/25", + "version":31107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.33.128", + "prefixLen":25, + "network":"193.115.33.128\/25", + "version":31106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.34.0", + "prefixLen":25, + "network":"193.115.34.0\/25", + "version":31105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.34.128", + "prefixLen":25, + "network":"193.115.34.128\/25", + "version":31104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.35.0", + "prefixLen":25, + "network":"193.115.35.0\/25", + "version":31103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.35.128", + "prefixLen":25, + "network":"193.115.35.128\/25", + "version":31102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.48.0", + "prefixLen":25, + "network":"193.115.48.0\/25", + "version":31101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.48.128", + "prefixLen":25, + "network":"193.115.48.128\/25", + "version":31100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.49.0", + "prefixLen":25, + "network":"193.115.49.0\/25", + "version":31099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.49.128", + "prefixLen":25, + "network":"193.115.49.128\/25", + "version":31098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.50.0", + "prefixLen":25, + "network":"193.115.50.0\/25", + "version":31097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.50.128", + "prefixLen":25, + "network":"193.115.50.128\/25", + "version":31096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.51.0", + "prefixLen":25, + "network":"193.115.51.0\/25", + "version":31095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.51.128", + "prefixLen":25, + "network":"193.115.51.128\/25", + "version":31094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.64.0", + "prefixLen":25, + "network":"193.115.64.0\/25", + "version":31093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.64.128", + "prefixLen":25, + "network":"193.115.64.128\/25", + "version":31092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.65.0", + "prefixLen":25, + "network":"193.115.65.0\/25", + "version":31091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.65.128", + "prefixLen":25, + "network":"193.115.65.128\/25", + "version":31090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.66.0", + "prefixLen":25, + "network":"193.115.66.0\/25", + "version":31089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.66.128", + "prefixLen":25, + "network":"193.115.66.128\/25", + "version":31088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.67.0", + "prefixLen":25, + "network":"193.115.67.0\/25", + "version":31087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.67.128", + "prefixLen":25, + "network":"193.115.67.128\/25", + "version":31086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.80.0", + "prefixLen":25, + "network":"193.115.80.0\/25", + "version":31085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.80.128", + "prefixLen":25, + "network":"193.115.80.128\/25", + "version":31084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.81.0", + "prefixLen":25, + "network":"193.115.81.0\/25", + "version":31083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.81.128", + "prefixLen":25, + "network":"193.115.81.128\/25", + "version":31082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.82.0", + "prefixLen":25, + "network":"193.115.82.0\/25", + "version":31081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.82.128", + "prefixLen":25, + "network":"193.115.82.128\/25", + "version":31080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.83.0", + "prefixLen":25, + "network":"193.115.83.0\/25", + "version":31079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.83.128", + "prefixLen":25, + "network":"193.115.83.128\/25", + "version":31078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.96.0", + "prefixLen":25, + "network":"193.115.96.0\/25", + "version":31077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.96.128", + "prefixLen":25, + "network":"193.115.96.128\/25", + "version":31076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.97.0", + "prefixLen":25, + "network":"193.115.97.0\/25", + "version":31075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.97.128", + "prefixLen":25, + "network":"193.115.97.128\/25", + "version":31074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.98.0", + "prefixLen":25, + "network":"193.115.98.0\/25", + "version":31073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.98.128", + "prefixLen":25, + "network":"193.115.98.128\/25", + "version":31072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.99.0", + "prefixLen":25, + "network":"193.115.99.0\/25", + "version":31071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.99.128", + "prefixLen":25, + "network":"193.115.99.128\/25", + "version":31070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.112.0", + "prefixLen":25, + "network":"193.115.112.0\/25", + "version":31069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.112.128", + "prefixLen":25, + "network":"193.115.112.128\/25", + "version":31068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.113.0", + "prefixLen":25, + "network":"193.115.113.0\/25", + "version":31067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.113.128", + "prefixLen":25, + "network":"193.115.113.128\/25", + "version":31066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.114.0", + "prefixLen":25, + "network":"193.115.114.0\/25", + "version":31065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.114.128", + "prefixLen":25, + "network":"193.115.114.128\/25", + "version":31064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.115.0", + "prefixLen":25, + "network":"193.115.115.0\/25", + "version":31063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.115.128", + "prefixLen":25, + "network":"193.115.115.128\/25", + "version":31062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.128.0", + "prefixLen":25, + "network":"193.115.128.0\/25", + "version":31061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.128.128", + "prefixLen":25, + "network":"193.115.128.128\/25", + "version":31060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.129.0", + "prefixLen":25, + "network":"193.115.129.0\/25", + "version":31059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.129.128", + "prefixLen":25, + "network":"193.115.129.128\/25", + "version":31058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.130.0", + "prefixLen":25, + "network":"193.115.130.0\/25", + "version":31057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.130.128", + "prefixLen":25, + "network":"193.115.130.128\/25", + "version":31056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.131.0", + "prefixLen":25, + "network":"193.115.131.0\/25", + "version":31055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.131.128", + "prefixLen":25, + "network":"193.115.131.128\/25", + "version":31054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.144.0", + "prefixLen":25, + "network":"193.115.144.0\/25", + "version":31053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.144.128", + "prefixLen":25, + "network":"193.115.144.128\/25", + "version":31052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.145.0", + "prefixLen":25, + "network":"193.115.145.0\/25", + "version":31051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.145.128", + "prefixLen":25, + "network":"193.115.145.128\/25", + "version":31050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.146.0", + "prefixLen":25, + "network":"193.115.146.0\/25", + "version":31049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.146.128", + "prefixLen":25, + "network":"193.115.146.128\/25", + "version":31048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.147.0", + "prefixLen":25, + "network":"193.115.147.0\/25", + "version":31047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.147.128", + "prefixLen":25, + "network":"193.115.147.128\/25", + "version":31046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.160.0", + "prefixLen":25, + "network":"193.115.160.0\/25", + "version":31045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.160.128", + "prefixLen":25, + "network":"193.115.160.128\/25", + "version":31044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.161.0", + "prefixLen":25, + "network":"193.115.161.0\/25", + "version":31043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.161.128", + "prefixLen":25, + "network":"193.115.161.128\/25", + "version":31042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.162.0", + "prefixLen":25, + "network":"193.115.162.0\/25", + "version":31041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.162.128", + "prefixLen":25, + "network":"193.115.162.128\/25", + "version":31040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.163.0", + "prefixLen":25, + "network":"193.115.163.0\/25", + "version":31039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.163.128", + "prefixLen":25, + "network":"193.115.163.128\/25", + "version":31038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.176.0", + "prefixLen":25, + "network":"193.115.176.0\/25", + "version":31037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.176.128", + "prefixLen":25, + "network":"193.115.176.128\/25", + "version":31036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.177.0", + "prefixLen":25, + "network":"193.115.177.0\/25", + "version":31035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.177.128", + "prefixLen":25, + "network":"193.115.177.128\/25", + "version":31034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.178.0", + "prefixLen":25, + "network":"193.115.178.0\/25", + "version":31033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.178.128", + "prefixLen":25, + "network":"193.115.178.128\/25", + "version":31032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.179.0", + "prefixLen":25, + "network":"193.115.179.0\/25", + "version":31031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.179.128", + "prefixLen":25, + "network":"193.115.179.128\/25", + "version":31030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.192.0", + "prefixLen":25, + "network":"193.115.192.0\/25", + "version":31029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.192.128", + "prefixLen":25, + "network":"193.115.192.128\/25", + "version":31028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.193.0", + "prefixLen":25, + "network":"193.115.193.0\/25", + "version":31027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.193.128", + "prefixLen":25, + "network":"193.115.193.128\/25", + "version":31026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.194.0", + "prefixLen":25, + "network":"193.115.194.0\/25", + "version":31025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.194.128", + "prefixLen":25, + "network":"193.115.194.128\/25", + "version":31024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.195.0", + "prefixLen":25, + "network":"193.115.195.0\/25", + "version":31023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.195.128", + "prefixLen":25, + "network":"193.115.195.128\/25", + "version":31022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.208.0", + "prefixLen":25, + "network":"193.115.208.0\/25", + "version":31021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.208.128", + "prefixLen":25, + "network":"193.115.208.128\/25", + "version":31020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.209.0", + "prefixLen":25, + "network":"193.115.209.0\/25", + "version":31019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.209.128", + "prefixLen":25, + "network":"193.115.209.128\/25", + "version":31018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.210.0", + "prefixLen":25, + "network":"193.115.210.0\/25", + "version":31017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.210.128", + "prefixLen":25, + "network":"193.115.210.128\/25", + "version":31016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.211.0", + "prefixLen":25, + "network":"193.115.211.0\/25", + "version":31015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.211.128", + "prefixLen":25, + "network":"193.115.211.128\/25", + "version":31014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.224.0", + "prefixLen":25, + "network":"193.115.224.0\/25", + "version":31013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.224.128", + "prefixLen":25, + "network":"193.115.224.128\/25", + "version":31012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.225.0", + "prefixLen":25, + "network":"193.115.225.0\/25", + "version":31011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.225.128", + "prefixLen":25, + "network":"193.115.225.128\/25", + "version":31010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.226.0", + "prefixLen":25, + "network":"193.115.226.0\/25", + "version":31009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.226.128", + "prefixLen":25, + "network":"193.115.226.128\/25", + "version":31008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.227.0", + "prefixLen":25, + "network":"193.115.227.0\/25", + "version":31007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.227.128", + "prefixLen":25, + "network":"193.115.227.128\/25", + "version":31006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.240.0", + "prefixLen":25, + "network":"193.115.240.0\/25", + "version":31005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.240.128", + "prefixLen":25, + "network":"193.115.240.128\/25", + "version":31004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.241.0", + "prefixLen":25, + "network":"193.115.241.0\/25", + "version":31003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.241.128", + "prefixLen":25, + "network":"193.115.241.128\/25", + "version":31002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.242.0", + "prefixLen":25, + "network":"193.115.242.0\/25", + "version":31001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.242.128", + "prefixLen":25, + "network":"193.115.242.128\/25", + "version":31000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.243.0", + "prefixLen":25, + "network":"193.115.243.0\/25", + "version":30999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.115.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.115.243.128", + "prefixLen":25, + "network":"193.115.243.128\/25", + "version":30998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64803 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.0.0", + "prefixLen":25, + "network":"193.116.0.0\/25", + "version":31125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.0.128", + "prefixLen":25, + "network":"193.116.0.128\/25", + "version":31252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.1.0", + "prefixLen":25, + "network":"193.116.1.0\/25", + "version":31251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.1.128", + "prefixLen":25, + "network":"193.116.1.128\/25", + "version":31250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.2.0", + "prefixLen":25, + "network":"193.116.2.0\/25", + "version":31249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.2.128", + "prefixLen":25, + "network":"193.116.2.128\/25", + "version":31248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.3.0", + "prefixLen":25, + "network":"193.116.3.0\/25", + "version":31247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.3.128", + "prefixLen":25, + "network":"193.116.3.128\/25", + "version":31246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.16.0", + "prefixLen":25, + "network":"193.116.16.0\/25", + "version":31245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.16.128", + "prefixLen":25, + "network":"193.116.16.128\/25", + "version":31244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.17.0", + "prefixLen":25, + "network":"193.116.17.0\/25", + "version":31243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.17.128", + "prefixLen":25, + "network":"193.116.17.128\/25", + "version":31242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.18.0", + "prefixLen":25, + "network":"193.116.18.0\/25", + "version":31241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.18.128", + "prefixLen":25, + "network":"193.116.18.128\/25", + "version":31240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.19.0", + "prefixLen":25, + "network":"193.116.19.0\/25", + "version":31239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.19.128", + "prefixLen":25, + "network":"193.116.19.128\/25", + "version":31238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.32.0", + "prefixLen":25, + "network":"193.116.32.0\/25", + "version":31237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.32.128", + "prefixLen":25, + "network":"193.116.32.128\/25", + "version":31236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.33.0", + "prefixLen":25, + "network":"193.116.33.0\/25", + "version":31235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.33.128", + "prefixLen":25, + "network":"193.116.33.128\/25", + "version":31234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.34.0", + "prefixLen":25, + "network":"193.116.34.0\/25", + "version":31233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.34.128", + "prefixLen":25, + "network":"193.116.34.128\/25", + "version":31232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.35.0", + "prefixLen":25, + "network":"193.116.35.0\/25", + "version":31231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.35.128", + "prefixLen":25, + "network":"193.116.35.128\/25", + "version":31230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.48.0", + "prefixLen":25, + "network":"193.116.48.0\/25", + "version":31229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.48.128", + "prefixLen":25, + "network":"193.116.48.128\/25", + "version":31228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.49.0", + "prefixLen":25, + "network":"193.116.49.0\/25", + "version":31227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.49.128", + "prefixLen":25, + "network":"193.116.49.128\/25", + "version":31226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.50.0", + "prefixLen":25, + "network":"193.116.50.0\/25", + "version":31225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.50.128", + "prefixLen":25, + "network":"193.116.50.128\/25", + "version":31224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.51.0", + "prefixLen":25, + "network":"193.116.51.0\/25", + "version":31223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.51.128", + "prefixLen":25, + "network":"193.116.51.128\/25", + "version":31222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.64.0", + "prefixLen":25, + "network":"193.116.64.0\/25", + "version":31221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.64.128", + "prefixLen":25, + "network":"193.116.64.128\/25", + "version":31220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.65.0", + "prefixLen":25, + "network":"193.116.65.0\/25", + "version":31219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.65.128", + "prefixLen":25, + "network":"193.116.65.128\/25", + "version":31218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.66.0", + "prefixLen":25, + "network":"193.116.66.0\/25", + "version":31217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.66.128", + "prefixLen":25, + "network":"193.116.66.128\/25", + "version":31216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.67.0", + "prefixLen":25, + "network":"193.116.67.0\/25", + "version":31215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.67.128", + "prefixLen":25, + "network":"193.116.67.128\/25", + "version":31214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.80.0", + "prefixLen":25, + "network":"193.116.80.0\/25", + "version":31213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.80.128", + "prefixLen":25, + "network":"193.116.80.128\/25", + "version":31212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.81.0", + "prefixLen":25, + "network":"193.116.81.0\/25", + "version":31211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.81.128", + "prefixLen":25, + "network":"193.116.81.128\/25", + "version":31210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.82.0", + "prefixLen":25, + "network":"193.116.82.0\/25", + "version":31209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.82.128", + "prefixLen":25, + "network":"193.116.82.128\/25", + "version":31208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.83.0", + "prefixLen":25, + "network":"193.116.83.0\/25", + "version":31207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.83.128", + "prefixLen":25, + "network":"193.116.83.128\/25", + "version":31206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.96.0", + "prefixLen":25, + "network":"193.116.96.0\/25", + "version":31205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.96.128", + "prefixLen":25, + "network":"193.116.96.128\/25", + "version":31204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.97.0", + "prefixLen":25, + "network":"193.116.97.0\/25", + "version":31203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.97.128", + "prefixLen":25, + "network":"193.116.97.128\/25", + "version":31202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.98.0", + "prefixLen":25, + "network":"193.116.98.0\/25", + "version":31201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.98.128", + "prefixLen":25, + "network":"193.116.98.128\/25", + "version":31200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.99.0", + "prefixLen":25, + "network":"193.116.99.0\/25", + "version":31199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.99.128", + "prefixLen":25, + "network":"193.116.99.128\/25", + "version":31198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.112.0", + "prefixLen":25, + "network":"193.116.112.0\/25", + "version":31197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.112.128", + "prefixLen":25, + "network":"193.116.112.128\/25", + "version":31196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.113.0", + "prefixLen":25, + "network":"193.116.113.0\/25", + "version":31195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.113.128", + "prefixLen":25, + "network":"193.116.113.128\/25", + "version":31194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.114.0", + "prefixLen":25, + "network":"193.116.114.0\/25", + "version":31193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.114.128", + "prefixLen":25, + "network":"193.116.114.128\/25", + "version":31192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.115.0", + "prefixLen":25, + "network":"193.116.115.0\/25", + "version":31191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.115.128", + "prefixLen":25, + "network":"193.116.115.128\/25", + "version":31190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.128.0", + "prefixLen":25, + "network":"193.116.128.0\/25", + "version":31189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.128.128", + "prefixLen":25, + "network":"193.116.128.128\/25", + "version":31188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.129.0", + "prefixLen":25, + "network":"193.116.129.0\/25", + "version":31187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.129.128", + "prefixLen":25, + "network":"193.116.129.128\/25", + "version":31186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.130.0", + "prefixLen":25, + "network":"193.116.130.0\/25", + "version":31185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.130.128", + "prefixLen":25, + "network":"193.116.130.128\/25", + "version":31184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.131.0", + "prefixLen":25, + "network":"193.116.131.0\/25", + "version":31183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.131.128", + "prefixLen":25, + "network":"193.116.131.128\/25", + "version":31182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.144.0", + "prefixLen":25, + "network":"193.116.144.0\/25", + "version":31181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.144.128", + "prefixLen":25, + "network":"193.116.144.128\/25", + "version":31180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.145.0", + "prefixLen":25, + "network":"193.116.145.0\/25", + "version":31179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.145.128", + "prefixLen":25, + "network":"193.116.145.128\/25", + "version":31178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.146.0", + "prefixLen":25, + "network":"193.116.146.0\/25", + "version":31177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.146.128", + "prefixLen":25, + "network":"193.116.146.128\/25", + "version":31176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.147.0", + "prefixLen":25, + "network":"193.116.147.0\/25", + "version":31175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.147.128", + "prefixLen":25, + "network":"193.116.147.128\/25", + "version":31174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.160.0", + "prefixLen":25, + "network":"193.116.160.0\/25", + "version":31173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.160.128", + "prefixLen":25, + "network":"193.116.160.128\/25", + "version":31172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.161.0", + "prefixLen":25, + "network":"193.116.161.0\/25", + "version":31171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.161.128", + "prefixLen":25, + "network":"193.116.161.128\/25", + "version":31170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.162.0", + "prefixLen":25, + "network":"193.116.162.0\/25", + "version":31169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.162.128", + "prefixLen":25, + "network":"193.116.162.128\/25", + "version":31168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.163.0", + "prefixLen":25, + "network":"193.116.163.0\/25", + "version":31167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.163.128", + "prefixLen":25, + "network":"193.116.163.128\/25", + "version":31166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.176.0", + "prefixLen":25, + "network":"193.116.176.0\/25", + "version":31165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.176.128", + "prefixLen":25, + "network":"193.116.176.128\/25", + "version":31164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.177.0", + "prefixLen":25, + "network":"193.116.177.0\/25", + "version":31163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.177.128", + "prefixLen":25, + "network":"193.116.177.128\/25", + "version":31162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.178.0", + "prefixLen":25, + "network":"193.116.178.0\/25", + "version":31161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.178.128", + "prefixLen":25, + "network":"193.116.178.128\/25", + "version":31160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.179.0", + "prefixLen":25, + "network":"193.116.179.0\/25", + "version":31159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.179.128", + "prefixLen":25, + "network":"193.116.179.128\/25", + "version":31158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.192.0", + "prefixLen":25, + "network":"193.116.192.0\/25", + "version":31157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.192.128", + "prefixLen":25, + "network":"193.116.192.128\/25", + "version":31156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.193.0", + "prefixLen":25, + "network":"193.116.193.0\/25", + "version":31155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.193.128", + "prefixLen":25, + "network":"193.116.193.128\/25", + "version":31154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.194.0", + "prefixLen":25, + "network":"193.116.194.0\/25", + "version":31153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.194.128", + "prefixLen":25, + "network":"193.116.194.128\/25", + "version":31152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.195.0", + "prefixLen":25, + "network":"193.116.195.0\/25", + "version":31151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.195.128", + "prefixLen":25, + "network":"193.116.195.128\/25", + "version":31150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.208.0", + "prefixLen":25, + "network":"193.116.208.0\/25", + "version":31149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.208.128", + "prefixLen":25, + "network":"193.116.208.128\/25", + "version":31148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.209.0", + "prefixLen":25, + "network":"193.116.209.0\/25", + "version":31147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.209.128", + "prefixLen":25, + "network":"193.116.209.128\/25", + "version":31146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.210.0", + "prefixLen":25, + "network":"193.116.210.0\/25", + "version":31145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.210.128", + "prefixLen":25, + "network":"193.116.210.128\/25", + "version":31144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.211.0", + "prefixLen":25, + "network":"193.116.211.0\/25", + "version":31143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.211.128", + "prefixLen":25, + "network":"193.116.211.128\/25", + "version":31142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.224.0", + "prefixLen":25, + "network":"193.116.224.0\/25", + "version":31141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.224.128", + "prefixLen":25, + "network":"193.116.224.128\/25", + "version":31140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.225.0", + "prefixLen":25, + "network":"193.116.225.0\/25", + "version":31139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.225.128", + "prefixLen":25, + "network":"193.116.225.128\/25", + "version":31138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.226.0", + "prefixLen":25, + "network":"193.116.226.0\/25", + "version":31137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.226.128", + "prefixLen":25, + "network":"193.116.226.128\/25", + "version":31136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.227.0", + "prefixLen":25, + "network":"193.116.227.0\/25", + "version":31135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.227.128", + "prefixLen":25, + "network":"193.116.227.128\/25", + "version":31134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.240.0", + "prefixLen":25, + "network":"193.116.240.0\/25", + "version":31133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.240.128", + "prefixLen":25, + "network":"193.116.240.128\/25", + "version":31132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.241.0", + "prefixLen":25, + "network":"193.116.241.0\/25", + "version":31131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.241.128", + "prefixLen":25, + "network":"193.116.241.128\/25", + "version":31130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.242.0", + "prefixLen":25, + "network":"193.116.242.0\/25", + "version":31129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.242.128", + "prefixLen":25, + "network":"193.116.242.128\/25", + "version":31128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.243.0", + "prefixLen":25, + "network":"193.116.243.0\/25", + "version":31127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.116.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.116.243.128", + "prefixLen":25, + "network":"193.116.243.128\/25", + "version":31126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64804 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.0.0", + "prefixLen":25, + "network":"193.117.0.0\/25", + "version":31253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.0.128", + "prefixLen":25, + "network":"193.117.0.128\/25", + "version":31380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.1.0", + "prefixLen":25, + "network":"193.117.1.0\/25", + "version":31379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.1.128", + "prefixLen":25, + "network":"193.117.1.128\/25", + "version":31378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.2.0", + "prefixLen":25, + "network":"193.117.2.0\/25", + "version":31377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.2.128", + "prefixLen":25, + "network":"193.117.2.128\/25", + "version":31376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.3.0", + "prefixLen":25, + "network":"193.117.3.0\/25", + "version":31375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.3.128", + "prefixLen":25, + "network":"193.117.3.128\/25", + "version":31374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.16.0", + "prefixLen":25, + "network":"193.117.16.0\/25", + "version":31373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.16.128", + "prefixLen":25, + "network":"193.117.16.128\/25", + "version":31372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.17.0", + "prefixLen":25, + "network":"193.117.17.0\/25", + "version":31371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.17.128", + "prefixLen":25, + "network":"193.117.17.128\/25", + "version":31370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.18.0", + "prefixLen":25, + "network":"193.117.18.0\/25", + "version":31369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.18.128", + "prefixLen":25, + "network":"193.117.18.128\/25", + "version":31368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.19.0", + "prefixLen":25, + "network":"193.117.19.0\/25", + "version":31367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.19.128", + "prefixLen":25, + "network":"193.117.19.128\/25", + "version":31366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.32.0", + "prefixLen":25, + "network":"193.117.32.0\/25", + "version":31365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.32.128", + "prefixLen":25, + "network":"193.117.32.128\/25", + "version":31364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.33.0", + "prefixLen":25, + "network":"193.117.33.0\/25", + "version":31363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.33.128", + "prefixLen":25, + "network":"193.117.33.128\/25", + "version":31362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.34.0", + "prefixLen":25, + "network":"193.117.34.0\/25", + "version":31361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.34.128", + "prefixLen":25, + "network":"193.117.34.128\/25", + "version":31360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.35.0", + "prefixLen":25, + "network":"193.117.35.0\/25", + "version":31359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.35.128", + "prefixLen":25, + "network":"193.117.35.128\/25", + "version":31358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.48.0", + "prefixLen":25, + "network":"193.117.48.0\/25", + "version":31357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.48.128", + "prefixLen":25, + "network":"193.117.48.128\/25", + "version":31356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.49.0", + "prefixLen":25, + "network":"193.117.49.0\/25", + "version":31355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.49.128", + "prefixLen":25, + "network":"193.117.49.128\/25", + "version":31354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.50.0", + "prefixLen":25, + "network":"193.117.50.0\/25", + "version":31353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.50.128", + "prefixLen":25, + "network":"193.117.50.128\/25", + "version":31352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.51.0", + "prefixLen":25, + "network":"193.117.51.0\/25", + "version":31351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.51.128", + "prefixLen":25, + "network":"193.117.51.128\/25", + "version":31350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.64.0", + "prefixLen":25, + "network":"193.117.64.0\/25", + "version":31349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.64.128", + "prefixLen":25, + "network":"193.117.64.128\/25", + "version":31348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.65.0", + "prefixLen":25, + "network":"193.117.65.0\/25", + "version":31347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.65.128", + "prefixLen":25, + "network":"193.117.65.128\/25", + "version":31346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.66.0", + "prefixLen":25, + "network":"193.117.66.0\/25", + "version":31345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.66.128", + "prefixLen":25, + "network":"193.117.66.128\/25", + "version":31344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.67.0", + "prefixLen":25, + "network":"193.117.67.0\/25", + "version":31343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.67.128", + "prefixLen":25, + "network":"193.117.67.128\/25", + "version":31342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.80.0", + "prefixLen":25, + "network":"193.117.80.0\/25", + "version":31341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.80.128", + "prefixLen":25, + "network":"193.117.80.128\/25", + "version":31340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.81.0", + "prefixLen":25, + "network":"193.117.81.0\/25", + "version":31339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.81.128", + "prefixLen":25, + "network":"193.117.81.128\/25", + "version":31338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.82.0", + "prefixLen":25, + "network":"193.117.82.0\/25", + "version":31337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.82.128", + "prefixLen":25, + "network":"193.117.82.128\/25", + "version":31336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.83.0", + "prefixLen":25, + "network":"193.117.83.0\/25", + "version":31335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.83.128", + "prefixLen":25, + "network":"193.117.83.128\/25", + "version":31334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.96.0", + "prefixLen":25, + "network":"193.117.96.0\/25", + "version":31333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.96.128", + "prefixLen":25, + "network":"193.117.96.128\/25", + "version":31332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.97.0", + "prefixLen":25, + "network":"193.117.97.0\/25", + "version":31331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.97.128", + "prefixLen":25, + "network":"193.117.97.128\/25", + "version":31330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.98.0", + "prefixLen":25, + "network":"193.117.98.0\/25", + "version":31329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.98.128", + "prefixLen":25, + "network":"193.117.98.128\/25", + "version":31328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.99.0", + "prefixLen":25, + "network":"193.117.99.0\/25", + "version":31327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.99.128", + "prefixLen":25, + "network":"193.117.99.128\/25", + "version":31326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.112.0", + "prefixLen":25, + "network":"193.117.112.0\/25", + "version":31325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.112.128", + "prefixLen":25, + "network":"193.117.112.128\/25", + "version":31324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.113.0", + "prefixLen":25, + "network":"193.117.113.0\/25", + "version":31323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.113.128", + "prefixLen":25, + "network":"193.117.113.128\/25", + "version":31322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.114.0", + "prefixLen":25, + "network":"193.117.114.0\/25", + "version":31321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.114.128", + "prefixLen":25, + "network":"193.117.114.128\/25", + "version":31320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.115.0", + "prefixLen":25, + "network":"193.117.115.0\/25", + "version":31319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.115.128", + "prefixLen":25, + "network":"193.117.115.128\/25", + "version":31318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.128.0", + "prefixLen":25, + "network":"193.117.128.0\/25", + "version":31317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.128.128", + "prefixLen":25, + "network":"193.117.128.128\/25", + "version":31316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.129.0", + "prefixLen":25, + "network":"193.117.129.0\/25", + "version":31315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.129.128", + "prefixLen":25, + "network":"193.117.129.128\/25", + "version":31314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.130.0", + "prefixLen":25, + "network":"193.117.130.0\/25", + "version":31313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.130.128", + "prefixLen":25, + "network":"193.117.130.128\/25", + "version":31312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.131.0", + "prefixLen":25, + "network":"193.117.131.0\/25", + "version":31311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.131.128", + "prefixLen":25, + "network":"193.117.131.128\/25", + "version":31310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.144.0", + "prefixLen":25, + "network":"193.117.144.0\/25", + "version":31309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.144.128", + "prefixLen":25, + "network":"193.117.144.128\/25", + "version":31308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.145.0", + "prefixLen":25, + "network":"193.117.145.0\/25", + "version":31307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.145.128", + "prefixLen":25, + "network":"193.117.145.128\/25", + "version":31306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.146.0", + "prefixLen":25, + "network":"193.117.146.0\/25", + "version":31305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.146.128", + "prefixLen":25, + "network":"193.117.146.128\/25", + "version":31304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.147.0", + "prefixLen":25, + "network":"193.117.147.0\/25", + "version":31303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.147.128", + "prefixLen":25, + "network":"193.117.147.128\/25", + "version":31302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.160.0", + "prefixLen":25, + "network":"193.117.160.0\/25", + "version":31301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.160.128", + "prefixLen":25, + "network":"193.117.160.128\/25", + "version":31300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.161.0", + "prefixLen":25, + "network":"193.117.161.0\/25", + "version":31299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.161.128", + "prefixLen":25, + "network":"193.117.161.128\/25", + "version":31298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.162.0", + "prefixLen":25, + "network":"193.117.162.0\/25", + "version":31297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.162.128", + "prefixLen":25, + "network":"193.117.162.128\/25", + "version":31296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.163.0", + "prefixLen":25, + "network":"193.117.163.0\/25", + "version":31295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.163.128", + "prefixLen":25, + "network":"193.117.163.128\/25", + "version":31294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.176.0", + "prefixLen":25, + "network":"193.117.176.0\/25", + "version":31293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.176.128", + "prefixLen":25, + "network":"193.117.176.128\/25", + "version":31292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.177.0", + "prefixLen":25, + "network":"193.117.177.0\/25", + "version":31291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.177.128", + "prefixLen":25, + "network":"193.117.177.128\/25", + "version":31290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.178.0", + "prefixLen":25, + "network":"193.117.178.0\/25", + "version":31289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.178.128", + "prefixLen":25, + "network":"193.117.178.128\/25", + "version":31288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.179.0", + "prefixLen":25, + "network":"193.117.179.0\/25", + "version":31287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.179.128", + "prefixLen":25, + "network":"193.117.179.128\/25", + "version":31286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.192.0", + "prefixLen":25, + "network":"193.117.192.0\/25", + "version":31285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.192.128", + "prefixLen":25, + "network":"193.117.192.128\/25", + "version":31284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.193.0", + "prefixLen":25, + "network":"193.117.193.0\/25", + "version":31283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.193.128", + "prefixLen":25, + "network":"193.117.193.128\/25", + "version":31282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.194.0", + "prefixLen":25, + "network":"193.117.194.0\/25", + "version":31281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.194.128", + "prefixLen":25, + "network":"193.117.194.128\/25", + "version":31280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.195.0", + "prefixLen":25, + "network":"193.117.195.0\/25", + "version":31279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.195.128", + "prefixLen":25, + "network":"193.117.195.128\/25", + "version":31278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.208.0", + "prefixLen":25, + "network":"193.117.208.0\/25", + "version":31277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.208.128", + "prefixLen":25, + "network":"193.117.208.128\/25", + "version":31276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.209.0", + "prefixLen":25, + "network":"193.117.209.0\/25", + "version":31275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.209.128", + "prefixLen":25, + "network":"193.117.209.128\/25", + "version":31274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.210.0", + "prefixLen":25, + "network":"193.117.210.0\/25", + "version":31273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.210.128", + "prefixLen":25, + "network":"193.117.210.128\/25", + "version":31272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.211.0", + "prefixLen":25, + "network":"193.117.211.0\/25", + "version":31271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.211.128", + "prefixLen":25, + "network":"193.117.211.128\/25", + "version":31270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.224.0", + "prefixLen":25, + "network":"193.117.224.0\/25", + "version":31269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.224.128", + "prefixLen":25, + "network":"193.117.224.128\/25", + "version":31268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.225.0", + "prefixLen":25, + "network":"193.117.225.0\/25", + "version":31267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.225.128", + "prefixLen":25, + "network":"193.117.225.128\/25", + "version":31266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.226.0", + "prefixLen":25, + "network":"193.117.226.0\/25", + "version":31265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.226.128", + "prefixLen":25, + "network":"193.117.226.128\/25", + "version":31264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.227.0", + "prefixLen":25, + "network":"193.117.227.0\/25", + "version":31263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.227.128", + "prefixLen":25, + "network":"193.117.227.128\/25", + "version":31262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.240.0", + "prefixLen":25, + "network":"193.117.240.0\/25", + "version":31261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.240.128", + "prefixLen":25, + "network":"193.117.240.128\/25", + "version":31260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.241.0", + "prefixLen":25, + "network":"193.117.241.0\/25", + "version":31259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.241.128", + "prefixLen":25, + "network":"193.117.241.128\/25", + "version":31258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.242.0", + "prefixLen":25, + "network":"193.117.242.0\/25", + "version":31257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.242.128", + "prefixLen":25, + "network":"193.117.242.128\/25", + "version":31256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.243.0", + "prefixLen":25, + "network":"193.117.243.0\/25", + "version":31255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.117.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.117.243.128", + "prefixLen":25, + "network":"193.117.243.128\/25", + "version":31254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64805 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.0.0", + "prefixLen":25, + "network":"193.118.0.0\/25", + "version":31381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.0.128", + "prefixLen":25, + "network":"193.118.0.128\/25", + "version":31508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.1.0", + "prefixLen":25, + "network":"193.118.1.0\/25", + "version":31507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.1.128", + "prefixLen":25, + "network":"193.118.1.128\/25", + "version":31506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.2.0", + "prefixLen":25, + "network":"193.118.2.0\/25", + "version":31505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.2.128", + "prefixLen":25, + "network":"193.118.2.128\/25", + "version":31504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.3.0", + "prefixLen":25, + "network":"193.118.3.0\/25", + "version":31503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.3.128", + "prefixLen":25, + "network":"193.118.3.128\/25", + "version":31502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.16.0", + "prefixLen":25, + "network":"193.118.16.0\/25", + "version":31501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.16.128", + "prefixLen":25, + "network":"193.118.16.128\/25", + "version":31500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.17.0", + "prefixLen":25, + "network":"193.118.17.0\/25", + "version":31499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.17.128", + "prefixLen":25, + "network":"193.118.17.128\/25", + "version":31498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.18.0", + "prefixLen":25, + "network":"193.118.18.0\/25", + "version":31497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.18.128", + "prefixLen":25, + "network":"193.118.18.128\/25", + "version":31496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.19.0", + "prefixLen":25, + "network":"193.118.19.0\/25", + "version":31495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.19.128", + "prefixLen":25, + "network":"193.118.19.128\/25", + "version":31494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.32.0", + "prefixLen":25, + "network":"193.118.32.0\/25", + "version":31493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.32.128", + "prefixLen":25, + "network":"193.118.32.128\/25", + "version":31492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.33.0", + "prefixLen":25, + "network":"193.118.33.0\/25", + "version":31491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.33.128", + "prefixLen":25, + "network":"193.118.33.128\/25", + "version":31490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.34.0", + "prefixLen":25, + "network":"193.118.34.0\/25", + "version":31489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.34.128", + "prefixLen":25, + "network":"193.118.34.128\/25", + "version":31488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.35.0", + "prefixLen":25, + "network":"193.118.35.0\/25", + "version":31487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.35.128", + "prefixLen":25, + "network":"193.118.35.128\/25", + "version":31486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.48.0", + "prefixLen":25, + "network":"193.118.48.0\/25", + "version":31485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.48.128", + "prefixLen":25, + "network":"193.118.48.128\/25", + "version":31484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.49.0", + "prefixLen":25, + "network":"193.118.49.0\/25", + "version":31483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.49.128", + "prefixLen":25, + "network":"193.118.49.128\/25", + "version":31482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.50.0", + "prefixLen":25, + "network":"193.118.50.0\/25", + "version":31481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.50.128", + "prefixLen":25, + "network":"193.118.50.128\/25", + "version":31480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.51.0", + "prefixLen":25, + "network":"193.118.51.0\/25", + "version":31479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.51.128", + "prefixLen":25, + "network":"193.118.51.128\/25", + "version":31478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.64.0", + "prefixLen":25, + "network":"193.118.64.0\/25", + "version":31477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.64.128", + "prefixLen":25, + "network":"193.118.64.128\/25", + "version":31476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.65.0", + "prefixLen":25, + "network":"193.118.65.0\/25", + "version":31475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.65.128", + "prefixLen":25, + "network":"193.118.65.128\/25", + "version":31474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.66.0", + "prefixLen":25, + "network":"193.118.66.0\/25", + "version":31473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.66.128", + "prefixLen":25, + "network":"193.118.66.128\/25", + "version":31472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.67.0", + "prefixLen":25, + "network":"193.118.67.0\/25", + "version":31471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.67.128", + "prefixLen":25, + "network":"193.118.67.128\/25", + "version":31470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.80.0", + "prefixLen":25, + "network":"193.118.80.0\/25", + "version":31469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.80.128", + "prefixLen":25, + "network":"193.118.80.128\/25", + "version":31468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.81.0", + "prefixLen":25, + "network":"193.118.81.0\/25", + "version":31467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.81.128", + "prefixLen":25, + "network":"193.118.81.128\/25", + "version":31466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.82.0", + "prefixLen":25, + "network":"193.118.82.0\/25", + "version":31465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.82.128", + "prefixLen":25, + "network":"193.118.82.128\/25", + "version":31464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.83.0", + "prefixLen":25, + "network":"193.118.83.0\/25", + "version":31463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.83.128", + "prefixLen":25, + "network":"193.118.83.128\/25", + "version":31462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.96.0", + "prefixLen":25, + "network":"193.118.96.0\/25", + "version":31461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.96.128", + "prefixLen":25, + "network":"193.118.96.128\/25", + "version":31460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.97.0", + "prefixLen":25, + "network":"193.118.97.0\/25", + "version":31459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.97.128", + "prefixLen":25, + "network":"193.118.97.128\/25", + "version":31458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.98.0", + "prefixLen":25, + "network":"193.118.98.0\/25", + "version":31457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.98.128", + "prefixLen":25, + "network":"193.118.98.128\/25", + "version":31456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.99.0", + "prefixLen":25, + "network":"193.118.99.0\/25", + "version":31455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.99.128", + "prefixLen":25, + "network":"193.118.99.128\/25", + "version":31454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.112.0", + "prefixLen":25, + "network":"193.118.112.0\/25", + "version":31453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.112.128", + "prefixLen":25, + "network":"193.118.112.128\/25", + "version":31452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.113.0", + "prefixLen":25, + "network":"193.118.113.0\/25", + "version":31451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.113.128", + "prefixLen":25, + "network":"193.118.113.128\/25", + "version":31450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.114.0", + "prefixLen":25, + "network":"193.118.114.0\/25", + "version":31449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.114.128", + "prefixLen":25, + "network":"193.118.114.128\/25", + "version":31448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.115.0", + "prefixLen":25, + "network":"193.118.115.0\/25", + "version":31447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.115.128", + "prefixLen":25, + "network":"193.118.115.128\/25", + "version":31446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.128.0", + "prefixLen":25, + "network":"193.118.128.0\/25", + "version":31445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.128.128", + "prefixLen":25, + "network":"193.118.128.128\/25", + "version":31444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.129.0", + "prefixLen":25, + "network":"193.118.129.0\/25", + "version":31443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.129.128", + "prefixLen":25, + "network":"193.118.129.128\/25", + "version":31442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.130.0", + "prefixLen":25, + "network":"193.118.130.0\/25", + "version":31441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.130.128", + "prefixLen":25, + "network":"193.118.130.128\/25", + "version":31440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.131.0", + "prefixLen":25, + "network":"193.118.131.0\/25", + "version":31439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.131.128", + "prefixLen":25, + "network":"193.118.131.128\/25", + "version":31438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.144.0", + "prefixLen":25, + "network":"193.118.144.0\/25", + "version":31437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.144.128", + "prefixLen":25, + "network":"193.118.144.128\/25", + "version":31436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.145.0", + "prefixLen":25, + "network":"193.118.145.0\/25", + "version":31435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.145.128", + "prefixLen":25, + "network":"193.118.145.128\/25", + "version":31434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.146.0", + "prefixLen":25, + "network":"193.118.146.0\/25", + "version":31433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.146.128", + "prefixLen":25, + "network":"193.118.146.128\/25", + "version":31432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.147.0", + "prefixLen":25, + "network":"193.118.147.0\/25", + "version":31431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.147.128", + "prefixLen":25, + "network":"193.118.147.128\/25", + "version":31430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.160.0", + "prefixLen":25, + "network":"193.118.160.0\/25", + "version":31429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.160.128", + "prefixLen":25, + "network":"193.118.160.128\/25", + "version":31428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.161.0", + "prefixLen":25, + "network":"193.118.161.0\/25", + "version":31427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.161.128", + "prefixLen":25, + "network":"193.118.161.128\/25", + "version":31426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.162.0", + "prefixLen":25, + "network":"193.118.162.0\/25", + "version":31425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.162.128", + "prefixLen":25, + "network":"193.118.162.128\/25", + "version":31424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.163.0", + "prefixLen":25, + "network":"193.118.163.0\/25", + "version":31423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.163.128", + "prefixLen":25, + "network":"193.118.163.128\/25", + "version":31422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.176.0", + "prefixLen":25, + "network":"193.118.176.0\/25", + "version":31421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.176.128", + "prefixLen":25, + "network":"193.118.176.128\/25", + "version":31420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.177.0", + "prefixLen":25, + "network":"193.118.177.0\/25", + "version":31419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.177.128", + "prefixLen":25, + "network":"193.118.177.128\/25", + "version":31418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.178.0", + "prefixLen":25, + "network":"193.118.178.0\/25", + "version":31417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.178.128", + "prefixLen":25, + "network":"193.118.178.128\/25", + "version":31416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.179.0", + "prefixLen":25, + "network":"193.118.179.0\/25", + "version":31415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.179.128", + "prefixLen":25, + "network":"193.118.179.128\/25", + "version":31414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.192.0", + "prefixLen":25, + "network":"193.118.192.0\/25", + "version":31413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.192.128", + "prefixLen":25, + "network":"193.118.192.128\/25", + "version":31412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.193.0", + "prefixLen":25, + "network":"193.118.193.0\/25", + "version":31411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.193.128", + "prefixLen":25, + "network":"193.118.193.128\/25", + "version":31410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.194.0", + "prefixLen":25, + "network":"193.118.194.0\/25", + "version":31409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.194.128", + "prefixLen":25, + "network":"193.118.194.128\/25", + "version":31408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.195.0", + "prefixLen":25, + "network":"193.118.195.0\/25", + "version":31407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.195.128", + "prefixLen":25, + "network":"193.118.195.128\/25", + "version":31406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.208.0", + "prefixLen":25, + "network":"193.118.208.0\/25", + "version":31405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.208.128", + "prefixLen":25, + "network":"193.118.208.128\/25", + "version":31404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.209.0", + "prefixLen":25, + "network":"193.118.209.0\/25", + "version":31403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.209.128", + "prefixLen":25, + "network":"193.118.209.128\/25", + "version":31402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.210.0", + "prefixLen":25, + "network":"193.118.210.0\/25", + "version":31401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.210.128", + "prefixLen":25, + "network":"193.118.210.128\/25", + "version":31400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.211.0", + "prefixLen":25, + "network":"193.118.211.0\/25", + "version":31399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.211.128", + "prefixLen":25, + "network":"193.118.211.128\/25", + "version":31398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.224.0", + "prefixLen":25, + "network":"193.118.224.0\/25", + "version":31397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.224.128", + "prefixLen":25, + "network":"193.118.224.128\/25", + "version":31396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.225.0", + "prefixLen":25, + "network":"193.118.225.0\/25", + "version":31395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.225.128", + "prefixLen":25, + "network":"193.118.225.128\/25", + "version":31394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.226.0", + "prefixLen":25, + "network":"193.118.226.0\/25", + "version":31393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.226.128", + "prefixLen":25, + "network":"193.118.226.128\/25", + "version":31392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.227.0", + "prefixLen":25, + "network":"193.118.227.0\/25", + "version":31391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.227.128", + "prefixLen":25, + "network":"193.118.227.128\/25", + "version":31390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.240.0", + "prefixLen":25, + "network":"193.118.240.0\/25", + "version":31389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.240.128", + "prefixLen":25, + "network":"193.118.240.128\/25", + "version":31388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.241.0", + "prefixLen":25, + "network":"193.118.241.0\/25", + "version":31387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.241.128", + "prefixLen":25, + "network":"193.118.241.128\/25", + "version":31386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.242.0", + "prefixLen":25, + "network":"193.118.242.0\/25", + "version":31385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.242.128", + "prefixLen":25, + "network":"193.118.242.128\/25", + "version":31384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.243.0", + "prefixLen":25, + "network":"193.118.243.0\/25", + "version":31383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.118.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.118.243.128", + "prefixLen":25, + "network":"193.118.243.128\/25", + "version":31382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64806 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.0.0", + "prefixLen":25, + "network":"193.119.0.0\/25", + "version":32789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.0.128", + "prefixLen":25, + "network":"193.119.0.128\/25", + "version":32916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.1.0", + "prefixLen":25, + "network":"193.119.1.0\/25", + "version":32915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.1.128", + "prefixLen":25, + "network":"193.119.1.128\/25", + "version":32914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.2.0", + "prefixLen":25, + "network":"193.119.2.0\/25", + "version":32913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.2.128", + "prefixLen":25, + "network":"193.119.2.128\/25", + "version":32912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.3.0", + "prefixLen":25, + "network":"193.119.3.0\/25", + "version":32911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.3.128", + "prefixLen":25, + "network":"193.119.3.128\/25", + "version":32910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.16.0", + "prefixLen":25, + "network":"193.119.16.0\/25", + "version":32909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.16.128", + "prefixLen":25, + "network":"193.119.16.128\/25", + "version":32908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.17.0", + "prefixLen":25, + "network":"193.119.17.0\/25", + "version":32907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.17.128", + "prefixLen":25, + "network":"193.119.17.128\/25", + "version":32906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.18.0", + "prefixLen":25, + "network":"193.119.18.0\/25", + "version":32905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.18.128", + "prefixLen":25, + "network":"193.119.18.128\/25", + "version":32904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.19.0", + "prefixLen":25, + "network":"193.119.19.0\/25", + "version":32903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.19.128", + "prefixLen":25, + "network":"193.119.19.128\/25", + "version":32902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.32.0", + "prefixLen":25, + "network":"193.119.32.0\/25", + "version":32901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.32.128", + "prefixLen":25, + "network":"193.119.32.128\/25", + "version":32900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.33.0", + "prefixLen":25, + "network":"193.119.33.0\/25", + "version":32899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.33.128", + "prefixLen":25, + "network":"193.119.33.128\/25", + "version":32898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.34.0", + "prefixLen":25, + "network":"193.119.34.0\/25", + "version":32897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.34.128", + "prefixLen":25, + "network":"193.119.34.128\/25", + "version":32896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.35.0", + "prefixLen":25, + "network":"193.119.35.0\/25", + "version":32895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.35.128", + "prefixLen":25, + "network":"193.119.35.128\/25", + "version":32894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.48.0", + "prefixLen":25, + "network":"193.119.48.0\/25", + "version":32893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.48.128", + "prefixLen":25, + "network":"193.119.48.128\/25", + "version":32892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.49.0", + "prefixLen":25, + "network":"193.119.49.0\/25", + "version":32891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.49.128", + "prefixLen":25, + "network":"193.119.49.128\/25", + "version":32890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.50.0", + "prefixLen":25, + "network":"193.119.50.0\/25", + "version":32889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.50.128", + "prefixLen":25, + "network":"193.119.50.128\/25", + "version":32888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.51.0", + "prefixLen":25, + "network":"193.119.51.0\/25", + "version":32887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.51.128", + "prefixLen":25, + "network":"193.119.51.128\/25", + "version":32886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.64.0", + "prefixLen":25, + "network":"193.119.64.0\/25", + "version":32885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.64.128", + "prefixLen":25, + "network":"193.119.64.128\/25", + "version":32884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.65.0", + "prefixLen":25, + "network":"193.119.65.0\/25", + "version":32883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.65.128", + "prefixLen":25, + "network":"193.119.65.128\/25", + "version":32882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.66.0", + "prefixLen":25, + "network":"193.119.66.0\/25", + "version":32881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.66.128", + "prefixLen":25, + "network":"193.119.66.128\/25", + "version":32880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.67.0", + "prefixLen":25, + "network":"193.119.67.0\/25", + "version":32879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.67.128", + "prefixLen":25, + "network":"193.119.67.128\/25", + "version":32878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.80.0", + "prefixLen":25, + "network":"193.119.80.0\/25", + "version":32877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.80.128", + "prefixLen":25, + "network":"193.119.80.128\/25", + "version":32876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.81.0", + "prefixLen":25, + "network":"193.119.81.0\/25", + "version":32875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.81.128", + "prefixLen":25, + "network":"193.119.81.128\/25", + "version":32874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.82.0", + "prefixLen":25, + "network":"193.119.82.0\/25", + "version":32873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.82.128", + "prefixLen":25, + "network":"193.119.82.128\/25", + "version":32872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.83.0", + "prefixLen":25, + "network":"193.119.83.0\/25", + "version":32871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.83.128", + "prefixLen":25, + "network":"193.119.83.128\/25", + "version":32870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.96.0", + "prefixLen":25, + "network":"193.119.96.0\/25", + "version":32869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.96.128", + "prefixLen":25, + "network":"193.119.96.128\/25", + "version":32868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.97.0", + "prefixLen":25, + "network":"193.119.97.0\/25", + "version":32867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.97.128", + "prefixLen":25, + "network":"193.119.97.128\/25", + "version":32866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.98.0", + "prefixLen":25, + "network":"193.119.98.0\/25", + "version":32865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.98.128", + "prefixLen":25, + "network":"193.119.98.128\/25", + "version":32864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.99.0", + "prefixLen":25, + "network":"193.119.99.0\/25", + "version":32863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.99.128", + "prefixLen":25, + "network":"193.119.99.128\/25", + "version":32862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.112.0", + "prefixLen":25, + "network":"193.119.112.0\/25", + "version":32861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.112.128", + "prefixLen":25, + "network":"193.119.112.128\/25", + "version":32860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.113.0", + "prefixLen":25, + "network":"193.119.113.0\/25", + "version":32859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.113.128", + "prefixLen":25, + "network":"193.119.113.128\/25", + "version":32858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.114.0", + "prefixLen":25, + "network":"193.119.114.0\/25", + "version":32857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.114.128", + "prefixLen":25, + "network":"193.119.114.128\/25", + "version":32856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.115.0", + "prefixLen":25, + "network":"193.119.115.0\/25", + "version":32855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.115.128", + "prefixLen":25, + "network":"193.119.115.128\/25", + "version":32854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.128.0", + "prefixLen":25, + "network":"193.119.128.0\/25", + "version":32853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.128.128", + "prefixLen":25, + "network":"193.119.128.128\/25", + "version":32852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.129.0", + "prefixLen":25, + "network":"193.119.129.0\/25", + "version":32851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.129.128", + "prefixLen":25, + "network":"193.119.129.128\/25", + "version":32850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.130.0", + "prefixLen":25, + "network":"193.119.130.0\/25", + "version":32849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.130.128", + "prefixLen":25, + "network":"193.119.130.128\/25", + "version":32848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.131.0", + "prefixLen":25, + "network":"193.119.131.0\/25", + "version":32847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.131.128", + "prefixLen":25, + "network":"193.119.131.128\/25", + "version":32846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.144.0", + "prefixLen":25, + "network":"193.119.144.0\/25", + "version":32845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.144.128", + "prefixLen":25, + "network":"193.119.144.128\/25", + "version":32844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.145.0", + "prefixLen":25, + "network":"193.119.145.0\/25", + "version":32843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.145.128", + "prefixLen":25, + "network":"193.119.145.128\/25", + "version":32842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.146.0", + "prefixLen":25, + "network":"193.119.146.0\/25", + "version":32841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.146.128", + "prefixLen":25, + "network":"193.119.146.128\/25", + "version":32840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.147.0", + "prefixLen":25, + "network":"193.119.147.0\/25", + "version":32839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.147.128", + "prefixLen":25, + "network":"193.119.147.128\/25", + "version":32838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.160.0", + "prefixLen":25, + "network":"193.119.160.0\/25", + "version":32837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.160.128", + "prefixLen":25, + "network":"193.119.160.128\/25", + "version":32836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.161.0", + "prefixLen":25, + "network":"193.119.161.0\/25", + "version":32835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.161.128", + "prefixLen":25, + "network":"193.119.161.128\/25", + "version":32834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.162.0", + "prefixLen":25, + "network":"193.119.162.0\/25", + "version":32833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.162.128", + "prefixLen":25, + "network":"193.119.162.128\/25", + "version":32832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.163.0", + "prefixLen":25, + "network":"193.119.163.0\/25", + "version":32831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.163.128", + "prefixLen":25, + "network":"193.119.163.128\/25", + "version":32830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.176.0", + "prefixLen":25, + "network":"193.119.176.0\/25", + "version":32829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.176.128", + "prefixLen":25, + "network":"193.119.176.128\/25", + "version":32828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.177.0", + "prefixLen":25, + "network":"193.119.177.0\/25", + "version":32827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.177.128", + "prefixLen":25, + "network":"193.119.177.128\/25", + "version":32826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.178.0", + "prefixLen":25, + "network":"193.119.178.0\/25", + "version":32825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.178.128", + "prefixLen":25, + "network":"193.119.178.128\/25", + "version":32824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.179.0", + "prefixLen":25, + "network":"193.119.179.0\/25", + "version":32823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.179.128", + "prefixLen":25, + "network":"193.119.179.128\/25", + "version":32822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.192.0", + "prefixLen":25, + "network":"193.119.192.0\/25", + "version":32821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.192.128", + "prefixLen":25, + "network":"193.119.192.128\/25", + "version":32820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.193.0", + "prefixLen":25, + "network":"193.119.193.0\/25", + "version":32819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.193.128", + "prefixLen":25, + "network":"193.119.193.128\/25", + "version":32818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.194.0", + "prefixLen":25, + "network":"193.119.194.0\/25", + "version":32817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.194.128", + "prefixLen":25, + "network":"193.119.194.128\/25", + "version":32816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.195.0", + "prefixLen":25, + "network":"193.119.195.0\/25", + "version":32815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.195.128", + "prefixLen":25, + "network":"193.119.195.128\/25", + "version":32814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.208.0", + "prefixLen":25, + "network":"193.119.208.0\/25", + "version":32813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.208.128", + "prefixLen":25, + "network":"193.119.208.128\/25", + "version":32812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.209.0", + "prefixLen":25, + "network":"193.119.209.0\/25", + "version":32811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.209.128", + "prefixLen":25, + "network":"193.119.209.128\/25", + "version":32810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.210.0", + "prefixLen":25, + "network":"193.119.210.0\/25", + "version":32809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.210.128", + "prefixLen":25, + "network":"193.119.210.128\/25", + "version":32808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.211.0", + "prefixLen":25, + "network":"193.119.211.0\/25", + "version":32807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.211.128", + "prefixLen":25, + "network":"193.119.211.128\/25", + "version":32806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.224.0", + "prefixLen":25, + "network":"193.119.224.0\/25", + "version":32805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.224.128", + "prefixLen":25, + "network":"193.119.224.128\/25", + "version":32804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.225.0", + "prefixLen":25, + "network":"193.119.225.0\/25", + "version":32803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.225.128", + "prefixLen":25, + "network":"193.119.225.128\/25", + "version":32802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.226.0", + "prefixLen":25, + "network":"193.119.226.0\/25", + "version":32801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.226.128", + "prefixLen":25, + "network":"193.119.226.128\/25", + "version":32800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.227.0", + "prefixLen":25, + "network":"193.119.227.0\/25", + "version":32799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.227.128", + "prefixLen":25, + "network":"193.119.227.128\/25", + "version":32798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.240.0", + "prefixLen":25, + "network":"193.119.240.0\/25", + "version":32797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.240.128", + "prefixLen":25, + "network":"193.119.240.128\/25", + "version":32796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.241.0", + "prefixLen":25, + "network":"193.119.241.0\/25", + "version":32795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.241.128", + "prefixLen":25, + "network":"193.119.241.128\/25", + "version":32794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.242.0", + "prefixLen":25, + "network":"193.119.242.0\/25", + "version":32793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.242.128", + "prefixLen":25, + "network":"193.119.242.128\/25", + "version":32792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.243.0", + "prefixLen":25, + "network":"193.119.243.0\/25", + "version":32791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.119.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.119.243.128", + "prefixLen":25, + "network":"193.119.243.128\/25", + "version":32790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64807 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.0.0", + "prefixLen":25, + "network":"193.120.0.0\/25", + "version":32917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.0.128", + "prefixLen":25, + "network":"193.120.0.128\/25", + "version":33044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.1.0", + "prefixLen":25, + "network":"193.120.1.0\/25", + "version":33043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.1.128", + "prefixLen":25, + "network":"193.120.1.128\/25", + "version":33042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.2.0", + "prefixLen":25, + "network":"193.120.2.0\/25", + "version":33041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.2.128", + "prefixLen":25, + "network":"193.120.2.128\/25", + "version":33040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.3.0", + "prefixLen":25, + "network":"193.120.3.0\/25", + "version":33039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.3.128", + "prefixLen":25, + "network":"193.120.3.128\/25", + "version":33038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.16.0", + "prefixLen":25, + "network":"193.120.16.0\/25", + "version":33037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.16.128", + "prefixLen":25, + "network":"193.120.16.128\/25", + "version":33036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.17.0", + "prefixLen":25, + "network":"193.120.17.0\/25", + "version":33035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.17.128", + "prefixLen":25, + "network":"193.120.17.128\/25", + "version":33034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.18.0", + "prefixLen":25, + "network":"193.120.18.0\/25", + "version":33033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.18.128", + "prefixLen":25, + "network":"193.120.18.128\/25", + "version":33032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.19.0", + "prefixLen":25, + "network":"193.120.19.0\/25", + "version":33031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.19.128", + "prefixLen":25, + "network":"193.120.19.128\/25", + "version":33030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.32.0", + "prefixLen":25, + "network":"193.120.32.0\/25", + "version":33029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.32.128", + "prefixLen":25, + "network":"193.120.32.128\/25", + "version":33028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.33.0", + "prefixLen":25, + "network":"193.120.33.0\/25", + "version":33027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.33.128", + "prefixLen":25, + "network":"193.120.33.128\/25", + "version":33026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.34.0", + "prefixLen":25, + "network":"193.120.34.0\/25", + "version":33025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.34.128", + "prefixLen":25, + "network":"193.120.34.128\/25", + "version":33024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.35.0", + "prefixLen":25, + "network":"193.120.35.0\/25", + "version":33023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.35.128", + "prefixLen":25, + "network":"193.120.35.128\/25", + "version":33022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.48.0", + "prefixLen":25, + "network":"193.120.48.0\/25", + "version":33021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.48.128", + "prefixLen":25, + "network":"193.120.48.128\/25", + "version":33020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.49.0", + "prefixLen":25, + "network":"193.120.49.0\/25", + "version":33019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.49.128", + "prefixLen":25, + "network":"193.120.49.128\/25", + "version":33018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.50.0", + "prefixLen":25, + "network":"193.120.50.0\/25", + "version":33017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.50.128", + "prefixLen":25, + "network":"193.120.50.128\/25", + "version":33016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.51.0", + "prefixLen":25, + "network":"193.120.51.0\/25", + "version":33015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.51.128", + "prefixLen":25, + "network":"193.120.51.128\/25", + "version":33014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.64.0", + "prefixLen":25, + "network":"193.120.64.0\/25", + "version":33013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.64.128", + "prefixLen":25, + "network":"193.120.64.128\/25", + "version":33012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.65.0", + "prefixLen":25, + "network":"193.120.65.0\/25", + "version":33011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.65.128", + "prefixLen":25, + "network":"193.120.65.128\/25", + "version":33010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.66.0", + "prefixLen":25, + "network":"193.120.66.0\/25", + "version":33009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.66.128", + "prefixLen":25, + "network":"193.120.66.128\/25", + "version":33008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.67.0", + "prefixLen":25, + "network":"193.120.67.0\/25", + "version":33007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.67.128", + "prefixLen":25, + "network":"193.120.67.128\/25", + "version":33006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.80.0", + "prefixLen":25, + "network":"193.120.80.0\/25", + "version":33005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.80.128", + "prefixLen":25, + "network":"193.120.80.128\/25", + "version":33004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.81.0", + "prefixLen":25, + "network":"193.120.81.0\/25", + "version":33003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.81.128", + "prefixLen":25, + "network":"193.120.81.128\/25", + "version":33002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.82.0", + "prefixLen":25, + "network":"193.120.82.0\/25", + "version":33001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.82.128", + "prefixLen":25, + "network":"193.120.82.128\/25", + "version":33000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.83.0", + "prefixLen":25, + "network":"193.120.83.0\/25", + "version":32999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.83.128", + "prefixLen":25, + "network":"193.120.83.128\/25", + "version":32998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.96.0", + "prefixLen":25, + "network":"193.120.96.0\/25", + "version":32997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.96.128", + "prefixLen":25, + "network":"193.120.96.128\/25", + "version":32996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.97.0", + "prefixLen":25, + "network":"193.120.97.0\/25", + "version":32995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.97.128", + "prefixLen":25, + "network":"193.120.97.128\/25", + "version":32994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.98.0", + "prefixLen":25, + "network":"193.120.98.0\/25", + "version":32993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.98.128", + "prefixLen":25, + "network":"193.120.98.128\/25", + "version":32992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.99.0", + "prefixLen":25, + "network":"193.120.99.0\/25", + "version":32991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.99.128", + "prefixLen":25, + "network":"193.120.99.128\/25", + "version":32990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.112.0", + "prefixLen":25, + "network":"193.120.112.0\/25", + "version":32989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.112.128", + "prefixLen":25, + "network":"193.120.112.128\/25", + "version":32988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.113.0", + "prefixLen":25, + "network":"193.120.113.0\/25", + "version":32987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.113.128", + "prefixLen":25, + "network":"193.120.113.128\/25", + "version":32986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.114.0", + "prefixLen":25, + "network":"193.120.114.0\/25", + "version":32985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.114.128", + "prefixLen":25, + "network":"193.120.114.128\/25", + "version":32984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.115.0", + "prefixLen":25, + "network":"193.120.115.0\/25", + "version":32983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.115.128", + "prefixLen":25, + "network":"193.120.115.128\/25", + "version":32982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.128.0", + "prefixLen":25, + "network":"193.120.128.0\/25", + "version":32981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.128.128", + "prefixLen":25, + "network":"193.120.128.128\/25", + "version":32980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.129.0", + "prefixLen":25, + "network":"193.120.129.0\/25", + "version":32979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.129.128", + "prefixLen":25, + "network":"193.120.129.128\/25", + "version":32978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.130.0", + "prefixLen":25, + "network":"193.120.130.0\/25", + "version":32977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.130.128", + "prefixLen":25, + "network":"193.120.130.128\/25", + "version":32976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.131.0", + "prefixLen":25, + "network":"193.120.131.0\/25", + "version":32975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.131.128", + "prefixLen":25, + "network":"193.120.131.128\/25", + "version":32974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.144.0", + "prefixLen":25, + "network":"193.120.144.0\/25", + "version":32973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.144.128", + "prefixLen":25, + "network":"193.120.144.128\/25", + "version":32972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.145.0", + "prefixLen":25, + "network":"193.120.145.0\/25", + "version":32971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.145.128", + "prefixLen":25, + "network":"193.120.145.128\/25", + "version":32970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.146.0", + "prefixLen":25, + "network":"193.120.146.0\/25", + "version":32969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.146.128", + "prefixLen":25, + "network":"193.120.146.128\/25", + "version":32968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.147.0", + "prefixLen":25, + "network":"193.120.147.0\/25", + "version":32967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.147.128", + "prefixLen":25, + "network":"193.120.147.128\/25", + "version":32966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.160.0", + "prefixLen":25, + "network":"193.120.160.0\/25", + "version":32965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.160.128", + "prefixLen":25, + "network":"193.120.160.128\/25", + "version":32964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.161.0", + "prefixLen":25, + "network":"193.120.161.0\/25", + "version":32963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.161.128", + "prefixLen":25, + "network":"193.120.161.128\/25", + "version":32962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.162.0", + "prefixLen":25, + "network":"193.120.162.0\/25", + "version":32961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.162.128", + "prefixLen":25, + "network":"193.120.162.128\/25", + "version":32960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.163.0", + "prefixLen":25, + "network":"193.120.163.0\/25", + "version":32959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.163.128", + "prefixLen":25, + "network":"193.120.163.128\/25", + "version":32958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.176.0", + "prefixLen":25, + "network":"193.120.176.0\/25", + "version":32957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.176.128", + "prefixLen":25, + "network":"193.120.176.128\/25", + "version":32956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.177.0", + "prefixLen":25, + "network":"193.120.177.0\/25", + "version":32955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.177.128", + "prefixLen":25, + "network":"193.120.177.128\/25", + "version":32954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.178.0", + "prefixLen":25, + "network":"193.120.178.0\/25", + "version":32953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.178.128", + "prefixLen":25, + "network":"193.120.178.128\/25", + "version":32952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.179.0", + "prefixLen":25, + "network":"193.120.179.0\/25", + "version":32951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.179.128", + "prefixLen":25, + "network":"193.120.179.128\/25", + "version":32950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.192.0", + "prefixLen":25, + "network":"193.120.192.0\/25", + "version":32949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.192.128", + "prefixLen":25, + "network":"193.120.192.128\/25", + "version":32948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.193.0", + "prefixLen":25, + "network":"193.120.193.0\/25", + "version":32947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.193.128", + "prefixLen":25, + "network":"193.120.193.128\/25", + "version":32946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.194.0", + "prefixLen":25, + "network":"193.120.194.0\/25", + "version":32945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.194.128", + "prefixLen":25, + "network":"193.120.194.128\/25", + "version":32944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.195.0", + "prefixLen":25, + "network":"193.120.195.0\/25", + "version":32943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.195.128", + "prefixLen":25, + "network":"193.120.195.128\/25", + "version":32942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.208.0", + "prefixLen":25, + "network":"193.120.208.0\/25", + "version":32941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.208.128", + "prefixLen":25, + "network":"193.120.208.128\/25", + "version":32940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.209.0", + "prefixLen":25, + "network":"193.120.209.0\/25", + "version":32939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.209.128", + "prefixLen":25, + "network":"193.120.209.128\/25", + "version":32938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.210.0", + "prefixLen":25, + "network":"193.120.210.0\/25", + "version":32937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.210.128", + "prefixLen":25, + "network":"193.120.210.128\/25", + "version":32936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.211.0", + "prefixLen":25, + "network":"193.120.211.0\/25", + "version":32935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.211.128", + "prefixLen":25, + "network":"193.120.211.128\/25", + "version":32934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.224.0", + "prefixLen":25, + "network":"193.120.224.0\/25", + "version":32933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.224.128", + "prefixLen":25, + "network":"193.120.224.128\/25", + "version":32932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.225.0", + "prefixLen":25, + "network":"193.120.225.0\/25", + "version":32931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.225.128", + "prefixLen":25, + "network":"193.120.225.128\/25", + "version":32930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.226.0", + "prefixLen":25, + "network":"193.120.226.0\/25", + "version":32929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.226.128", + "prefixLen":25, + "network":"193.120.226.128\/25", + "version":32928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.227.0", + "prefixLen":25, + "network":"193.120.227.0\/25", + "version":32927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.227.128", + "prefixLen":25, + "network":"193.120.227.128\/25", + "version":32926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.240.0", + "prefixLen":25, + "network":"193.120.240.0\/25", + "version":32925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.240.128", + "prefixLen":25, + "network":"193.120.240.128\/25", + "version":32924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.241.0", + "prefixLen":25, + "network":"193.120.241.0\/25", + "version":32923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.241.128", + "prefixLen":25, + "network":"193.120.241.128\/25", + "version":32922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.242.0", + "prefixLen":25, + "network":"193.120.242.0\/25", + "version":32921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.242.128", + "prefixLen":25, + "network":"193.120.242.128\/25", + "version":32920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.243.0", + "prefixLen":25, + "network":"193.120.243.0\/25", + "version":32919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.120.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.120.243.128", + "prefixLen":25, + "network":"193.120.243.128\/25", + "version":32918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64808 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.0.0", + "prefixLen":25, + "network":"193.121.0.0\/25", + "version":33045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.0.128", + "prefixLen":25, + "network":"193.121.0.128\/25", + "version":33172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.1.0", + "prefixLen":25, + "network":"193.121.1.0\/25", + "version":33171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.1.128", + "prefixLen":25, + "network":"193.121.1.128\/25", + "version":33170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.2.0", + "prefixLen":25, + "network":"193.121.2.0\/25", + "version":33169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.2.128", + "prefixLen":25, + "network":"193.121.2.128\/25", + "version":33168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.3.0", + "prefixLen":25, + "network":"193.121.3.0\/25", + "version":33167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.3.128", + "prefixLen":25, + "network":"193.121.3.128\/25", + "version":33166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.16.0", + "prefixLen":25, + "network":"193.121.16.0\/25", + "version":33165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.16.128", + "prefixLen":25, + "network":"193.121.16.128\/25", + "version":33164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.17.0", + "prefixLen":25, + "network":"193.121.17.0\/25", + "version":33163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.17.128", + "prefixLen":25, + "network":"193.121.17.128\/25", + "version":33162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.18.0", + "prefixLen":25, + "network":"193.121.18.0\/25", + "version":33161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.18.128", + "prefixLen":25, + "network":"193.121.18.128\/25", + "version":33160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.19.0", + "prefixLen":25, + "network":"193.121.19.0\/25", + "version":33159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.19.128", + "prefixLen":25, + "network":"193.121.19.128\/25", + "version":33158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.32.0", + "prefixLen":25, + "network":"193.121.32.0\/25", + "version":33157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.32.128", + "prefixLen":25, + "network":"193.121.32.128\/25", + "version":33156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.33.0", + "prefixLen":25, + "network":"193.121.33.0\/25", + "version":33155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.33.128", + "prefixLen":25, + "network":"193.121.33.128\/25", + "version":33154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.34.0", + "prefixLen":25, + "network":"193.121.34.0\/25", + "version":33153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.34.128", + "prefixLen":25, + "network":"193.121.34.128\/25", + "version":33152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.35.0", + "prefixLen":25, + "network":"193.121.35.0\/25", + "version":33151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.35.128", + "prefixLen":25, + "network":"193.121.35.128\/25", + "version":33150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.48.0", + "prefixLen":25, + "network":"193.121.48.0\/25", + "version":33149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.48.128", + "prefixLen":25, + "network":"193.121.48.128\/25", + "version":33148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.49.0", + "prefixLen":25, + "network":"193.121.49.0\/25", + "version":33147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.49.128", + "prefixLen":25, + "network":"193.121.49.128\/25", + "version":33146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.50.0", + "prefixLen":25, + "network":"193.121.50.0\/25", + "version":33145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.50.128", + "prefixLen":25, + "network":"193.121.50.128\/25", + "version":33144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.51.0", + "prefixLen":25, + "network":"193.121.51.0\/25", + "version":33143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.51.128", + "prefixLen":25, + "network":"193.121.51.128\/25", + "version":33142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.64.0", + "prefixLen":25, + "network":"193.121.64.0\/25", + "version":33141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.64.128", + "prefixLen":25, + "network":"193.121.64.128\/25", + "version":33140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.65.0", + "prefixLen":25, + "network":"193.121.65.0\/25", + "version":33139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.65.128", + "prefixLen":25, + "network":"193.121.65.128\/25", + "version":33138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.66.0", + "prefixLen":25, + "network":"193.121.66.0\/25", + "version":33137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.66.128", + "prefixLen":25, + "network":"193.121.66.128\/25", + "version":33136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.67.0", + "prefixLen":25, + "network":"193.121.67.0\/25", + "version":33135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.67.128", + "prefixLen":25, + "network":"193.121.67.128\/25", + "version":33134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.80.0", + "prefixLen":25, + "network":"193.121.80.0\/25", + "version":33133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.80.128", + "prefixLen":25, + "network":"193.121.80.128\/25", + "version":33132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.81.0", + "prefixLen":25, + "network":"193.121.81.0\/25", + "version":33131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.81.128", + "prefixLen":25, + "network":"193.121.81.128\/25", + "version":33130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.82.0", + "prefixLen":25, + "network":"193.121.82.0\/25", + "version":33129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.82.128", + "prefixLen":25, + "network":"193.121.82.128\/25", + "version":33128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.83.0", + "prefixLen":25, + "network":"193.121.83.0\/25", + "version":33127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.83.128", + "prefixLen":25, + "network":"193.121.83.128\/25", + "version":33126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.96.0", + "prefixLen":25, + "network":"193.121.96.0\/25", + "version":33125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.96.128", + "prefixLen":25, + "network":"193.121.96.128\/25", + "version":33124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.97.0", + "prefixLen":25, + "network":"193.121.97.0\/25", + "version":33123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.97.128", + "prefixLen":25, + "network":"193.121.97.128\/25", + "version":33122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.98.0", + "prefixLen":25, + "network":"193.121.98.0\/25", + "version":33121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.98.128", + "prefixLen":25, + "network":"193.121.98.128\/25", + "version":33120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.99.0", + "prefixLen":25, + "network":"193.121.99.0\/25", + "version":33119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.99.128", + "prefixLen":25, + "network":"193.121.99.128\/25", + "version":33118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.112.0", + "prefixLen":25, + "network":"193.121.112.0\/25", + "version":33117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.112.128", + "prefixLen":25, + "network":"193.121.112.128\/25", + "version":33116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.113.0", + "prefixLen":25, + "network":"193.121.113.0\/25", + "version":33115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.113.128", + "prefixLen":25, + "network":"193.121.113.128\/25", + "version":33114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.114.0", + "prefixLen":25, + "network":"193.121.114.0\/25", + "version":33113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.114.128", + "prefixLen":25, + "network":"193.121.114.128\/25", + "version":33112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.115.0", + "prefixLen":25, + "network":"193.121.115.0\/25", + "version":33111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.115.128", + "prefixLen":25, + "network":"193.121.115.128\/25", + "version":33110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.128.0", + "prefixLen":25, + "network":"193.121.128.0\/25", + "version":33109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.128.128", + "prefixLen":25, + "network":"193.121.128.128\/25", + "version":33108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.129.0", + "prefixLen":25, + "network":"193.121.129.0\/25", + "version":33107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.129.128", + "prefixLen":25, + "network":"193.121.129.128\/25", + "version":33106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.130.0", + "prefixLen":25, + "network":"193.121.130.0\/25", + "version":33105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.130.128", + "prefixLen":25, + "network":"193.121.130.128\/25", + "version":33104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.131.0", + "prefixLen":25, + "network":"193.121.131.0\/25", + "version":33103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.131.128", + "prefixLen":25, + "network":"193.121.131.128\/25", + "version":33102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.144.0", + "prefixLen":25, + "network":"193.121.144.0\/25", + "version":33101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.144.128", + "prefixLen":25, + "network":"193.121.144.128\/25", + "version":33100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.145.0", + "prefixLen":25, + "network":"193.121.145.0\/25", + "version":33099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.145.128", + "prefixLen":25, + "network":"193.121.145.128\/25", + "version":33098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.146.0", + "prefixLen":25, + "network":"193.121.146.0\/25", + "version":33097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.146.128", + "prefixLen":25, + "network":"193.121.146.128\/25", + "version":33096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.147.0", + "prefixLen":25, + "network":"193.121.147.0\/25", + "version":33095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.147.128", + "prefixLen":25, + "network":"193.121.147.128\/25", + "version":33094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.160.0", + "prefixLen":25, + "network":"193.121.160.0\/25", + "version":33093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.160.128", + "prefixLen":25, + "network":"193.121.160.128\/25", + "version":33092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.161.0", + "prefixLen":25, + "network":"193.121.161.0\/25", + "version":33091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.161.128", + "prefixLen":25, + "network":"193.121.161.128\/25", + "version":33090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.162.0", + "prefixLen":25, + "network":"193.121.162.0\/25", + "version":33089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.162.128", + "prefixLen":25, + "network":"193.121.162.128\/25", + "version":33088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.163.0", + "prefixLen":25, + "network":"193.121.163.0\/25", + "version":33087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.163.128", + "prefixLen":25, + "network":"193.121.163.128\/25", + "version":33086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.176.0", + "prefixLen":25, + "network":"193.121.176.0\/25", + "version":33085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.176.128", + "prefixLen":25, + "network":"193.121.176.128\/25", + "version":33084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.177.0", + "prefixLen":25, + "network":"193.121.177.0\/25", + "version":33083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.177.128", + "prefixLen":25, + "network":"193.121.177.128\/25", + "version":33082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.178.0", + "prefixLen":25, + "network":"193.121.178.0\/25", + "version":33081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.178.128", + "prefixLen":25, + "network":"193.121.178.128\/25", + "version":33080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.179.0", + "prefixLen":25, + "network":"193.121.179.0\/25", + "version":33079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.179.128", + "prefixLen":25, + "network":"193.121.179.128\/25", + "version":33078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.192.0", + "prefixLen":25, + "network":"193.121.192.0\/25", + "version":33077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.192.128", + "prefixLen":25, + "network":"193.121.192.128\/25", + "version":33076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.193.0", + "prefixLen":25, + "network":"193.121.193.0\/25", + "version":33075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.193.128", + "prefixLen":25, + "network":"193.121.193.128\/25", + "version":33074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.194.0", + "prefixLen":25, + "network":"193.121.194.0\/25", + "version":33073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.194.128", + "prefixLen":25, + "network":"193.121.194.128\/25", + "version":33072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.195.0", + "prefixLen":25, + "network":"193.121.195.0\/25", + "version":33071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.195.128", + "prefixLen":25, + "network":"193.121.195.128\/25", + "version":33070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.208.0", + "prefixLen":25, + "network":"193.121.208.0\/25", + "version":33069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.208.128", + "prefixLen":25, + "network":"193.121.208.128\/25", + "version":33068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.209.0", + "prefixLen":25, + "network":"193.121.209.0\/25", + "version":33067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.209.128", + "prefixLen":25, + "network":"193.121.209.128\/25", + "version":33066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.210.0", + "prefixLen":25, + "network":"193.121.210.0\/25", + "version":33065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.210.128", + "prefixLen":25, + "network":"193.121.210.128\/25", + "version":33064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.211.0", + "prefixLen":25, + "network":"193.121.211.0\/25", + "version":33063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.211.128", + "prefixLen":25, + "network":"193.121.211.128\/25", + "version":33062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.224.0", + "prefixLen":25, + "network":"193.121.224.0\/25", + "version":33061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.224.128", + "prefixLen":25, + "network":"193.121.224.128\/25", + "version":33060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.225.0", + "prefixLen":25, + "network":"193.121.225.0\/25", + "version":33059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.225.128", + "prefixLen":25, + "network":"193.121.225.128\/25", + "version":33058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.226.0", + "prefixLen":25, + "network":"193.121.226.0\/25", + "version":33057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.226.128", + "prefixLen":25, + "network":"193.121.226.128\/25", + "version":33056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.227.0", + "prefixLen":25, + "network":"193.121.227.0\/25", + "version":33055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.227.128", + "prefixLen":25, + "network":"193.121.227.128\/25", + "version":33054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.240.0", + "prefixLen":25, + "network":"193.121.240.0\/25", + "version":33053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.240.128", + "prefixLen":25, + "network":"193.121.240.128\/25", + "version":33052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.241.0", + "prefixLen":25, + "network":"193.121.241.0\/25", + "version":33051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.241.128", + "prefixLen":25, + "network":"193.121.241.128\/25", + "version":33050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.242.0", + "prefixLen":25, + "network":"193.121.242.0\/25", + "version":33049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.242.128", + "prefixLen":25, + "network":"193.121.242.128\/25", + "version":33048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.243.0", + "prefixLen":25, + "network":"193.121.243.0\/25", + "version":33047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.121.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.121.243.128", + "prefixLen":25, + "network":"193.121.243.128\/25", + "version":33046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64809 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.0.0", + "prefixLen":25, + "network":"193.122.0.0\/25", + "version":33173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.0.128", + "prefixLen":25, + "network":"193.122.0.128\/25", + "version":33300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.1.0", + "prefixLen":25, + "network":"193.122.1.0\/25", + "version":33299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.1.128", + "prefixLen":25, + "network":"193.122.1.128\/25", + "version":33298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.2.0", + "prefixLen":25, + "network":"193.122.2.0\/25", + "version":33297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.2.128", + "prefixLen":25, + "network":"193.122.2.128\/25", + "version":33296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.3.0", + "prefixLen":25, + "network":"193.122.3.0\/25", + "version":33295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.3.128", + "prefixLen":25, + "network":"193.122.3.128\/25", + "version":33294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.16.0", + "prefixLen":25, + "network":"193.122.16.0\/25", + "version":33293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.16.128", + "prefixLen":25, + "network":"193.122.16.128\/25", + "version":33292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.17.0", + "prefixLen":25, + "network":"193.122.17.0\/25", + "version":33291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.17.128", + "prefixLen":25, + "network":"193.122.17.128\/25", + "version":33290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.18.0", + "prefixLen":25, + "network":"193.122.18.0\/25", + "version":33289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.18.128", + "prefixLen":25, + "network":"193.122.18.128\/25", + "version":33288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.19.0", + "prefixLen":25, + "network":"193.122.19.0\/25", + "version":33287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.19.128", + "prefixLen":25, + "network":"193.122.19.128\/25", + "version":33286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.32.0", + "prefixLen":25, + "network":"193.122.32.0\/25", + "version":33285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.32.128", + "prefixLen":25, + "network":"193.122.32.128\/25", + "version":33284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.33.0", + "prefixLen":25, + "network":"193.122.33.0\/25", + "version":33283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.33.128", + "prefixLen":25, + "network":"193.122.33.128\/25", + "version":33282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.34.0", + "prefixLen":25, + "network":"193.122.34.0\/25", + "version":33281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.34.128", + "prefixLen":25, + "network":"193.122.34.128\/25", + "version":33280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.35.0", + "prefixLen":25, + "network":"193.122.35.0\/25", + "version":33279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.35.128", + "prefixLen":25, + "network":"193.122.35.128\/25", + "version":33278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.48.0", + "prefixLen":25, + "network":"193.122.48.0\/25", + "version":33277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.48.128", + "prefixLen":25, + "network":"193.122.48.128\/25", + "version":33276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.49.0", + "prefixLen":25, + "network":"193.122.49.0\/25", + "version":33275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.49.128", + "prefixLen":25, + "network":"193.122.49.128\/25", + "version":33274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.50.0", + "prefixLen":25, + "network":"193.122.50.0\/25", + "version":33273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.50.128", + "prefixLen":25, + "network":"193.122.50.128\/25", + "version":33272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.51.0", + "prefixLen":25, + "network":"193.122.51.0\/25", + "version":33271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.51.128", + "prefixLen":25, + "network":"193.122.51.128\/25", + "version":33270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.64.0", + "prefixLen":25, + "network":"193.122.64.0\/25", + "version":33269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.64.128", + "prefixLen":25, + "network":"193.122.64.128\/25", + "version":33268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.65.0", + "prefixLen":25, + "network":"193.122.65.0\/25", + "version":33267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.65.128", + "prefixLen":25, + "network":"193.122.65.128\/25", + "version":33266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.66.0", + "prefixLen":25, + "network":"193.122.66.0\/25", + "version":33265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.66.128", + "prefixLen":25, + "network":"193.122.66.128\/25", + "version":33264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.67.0", + "prefixLen":25, + "network":"193.122.67.0\/25", + "version":33263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.67.128", + "prefixLen":25, + "network":"193.122.67.128\/25", + "version":33262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.80.0", + "prefixLen":25, + "network":"193.122.80.0\/25", + "version":33261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.80.128", + "prefixLen":25, + "network":"193.122.80.128\/25", + "version":33260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.81.0", + "prefixLen":25, + "network":"193.122.81.0\/25", + "version":33259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.81.128", + "prefixLen":25, + "network":"193.122.81.128\/25", + "version":33258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.82.0", + "prefixLen":25, + "network":"193.122.82.0\/25", + "version":33257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.82.128", + "prefixLen":25, + "network":"193.122.82.128\/25", + "version":33256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.83.0", + "prefixLen":25, + "network":"193.122.83.0\/25", + "version":33255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.83.128", + "prefixLen":25, + "network":"193.122.83.128\/25", + "version":33254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.96.0", + "prefixLen":25, + "network":"193.122.96.0\/25", + "version":33253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.96.128", + "prefixLen":25, + "network":"193.122.96.128\/25", + "version":33252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.97.0", + "prefixLen":25, + "network":"193.122.97.0\/25", + "version":33251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.97.128", + "prefixLen":25, + "network":"193.122.97.128\/25", + "version":33250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.98.0", + "prefixLen":25, + "network":"193.122.98.0\/25", + "version":33249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.98.128", + "prefixLen":25, + "network":"193.122.98.128\/25", + "version":33248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.99.0", + "prefixLen":25, + "network":"193.122.99.0\/25", + "version":33247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.99.128", + "prefixLen":25, + "network":"193.122.99.128\/25", + "version":33246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.112.0", + "prefixLen":25, + "network":"193.122.112.0\/25", + "version":33245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.112.128", + "prefixLen":25, + "network":"193.122.112.128\/25", + "version":33244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.113.0", + "prefixLen":25, + "network":"193.122.113.0\/25", + "version":33243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.113.128", + "prefixLen":25, + "network":"193.122.113.128\/25", + "version":33242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.114.0", + "prefixLen":25, + "network":"193.122.114.0\/25", + "version":33241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.114.128", + "prefixLen":25, + "network":"193.122.114.128\/25", + "version":33240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.115.0", + "prefixLen":25, + "network":"193.122.115.0\/25", + "version":33239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.115.128", + "prefixLen":25, + "network":"193.122.115.128\/25", + "version":33238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.128.0", + "prefixLen":25, + "network":"193.122.128.0\/25", + "version":33237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.128.128", + "prefixLen":25, + "network":"193.122.128.128\/25", + "version":33236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.129.0", + "prefixLen":25, + "network":"193.122.129.0\/25", + "version":33235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.129.128", + "prefixLen":25, + "network":"193.122.129.128\/25", + "version":33234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.130.0", + "prefixLen":25, + "network":"193.122.130.0\/25", + "version":33233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.130.128", + "prefixLen":25, + "network":"193.122.130.128\/25", + "version":33232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.131.0", + "prefixLen":25, + "network":"193.122.131.0\/25", + "version":33231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.131.128", + "prefixLen":25, + "network":"193.122.131.128\/25", + "version":33230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.144.0", + "prefixLen":25, + "network":"193.122.144.0\/25", + "version":33229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.144.128", + "prefixLen":25, + "network":"193.122.144.128\/25", + "version":33228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.145.0", + "prefixLen":25, + "network":"193.122.145.0\/25", + "version":33227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.145.128", + "prefixLen":25, + "network":"193.122.145.128\/25", + "version":33226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.146.0", + "prefixLen":25, + "network":"193.122.146.0\/25", + "version":33225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.146.128", + "prefixLen":25, + "network":"193.122.146.128\/25", + "version":33224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.147.0", + "prefixLen":25, + "network":"193.122.147.0\/25", + "version":33223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.147.128", + "prefixLen":25, + "network":"193.122.147.128\/25", + "version":33222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.160.0", + "prefixLen":25, + "network":"193.122.160.0\/25", + "version":33221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.160.128", + "prefixLen":25, + "network":"193.122.160.128\/25", + "version":33220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.161.0", + "prefixLen":25, + "network":"193.122.161.0\/25", + "version":33219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.161.128", + "prefixLen":25, + "network":"193.122.161.128\/25", + "version":33218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.162.0", + "prefixLen":25, + "network":"193.122.162.0\/25", + "version":33217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.162.128", + "prefixLen":25, + "network":"193.122.162.128\/25", + "version":33216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.163.0", + "prefixLen":25, + "network":"193.122.163.0\/25", + "version":33215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.163.128", + "prefixLen":25, + "network":"193.122.163.128\/25", + "version":33214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.176.0", + "prefixLen":25, + "network":"193.122.176.0\/25", + "version":33213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.176.128", + "prefixLen":25, + "network":"193.122.176.128\/25", + "version":33212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.177.0", + "prefixLen":25, + "network":"193.122.177.0\/25", + "version":33211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.177.128", + "prefixLen":25, + "network":"193.122.177.128\/25", + "version":33210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.178.0", + "prefixLen":25, + "network":"193.122.178.0\/25", + "version":33209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.178.128", + "prefixLen":25, + "network":"193.122.178.128\/25", + "version":33208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.179.0", + "prefixLen":25, + "network":"193.122.179.0\/25", + "version":33207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.179.128", + "prefixLen":25, + "network":"193.122.179.128\/25", + "version":33206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.192.0", + "prefixLen":25, + "network":"193.122.192.0\/25", + "version":33205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.192.128", + "prefixLen":25, + "network":"193.122.192.128\/25", + "version":33204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.193.0", + "prefixLen":25, + "network":"193.122.193.0\/25", + "version":33203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.193.128", + "prefixLen":25, + "network":"193.122.193.128\/25", + "version":33202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.194.0", + "prefixLen":25, + "network":"193.122.194.0\/25", + "version":33201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.194.128", + "prefixLen":25, + "network":"193.122.194.128\/25", + "version":33200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.195.0", + "prefixLen":25, + "network":"193.122.195.0\/25", + "version":33199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.195.128", + "prefixLen":25, + "network":"193.122.195.128\/25", + "version":33198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.208.0", + "prefixLen":25, + "network":"193.122.208.0\/25", + "version":33197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.208.128", + "prefixLen":25, + "network":"193.122.208.128\/25", + "version":33196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.209.0", + "prefixLen":25, + "network":"193.122.209.0\/25", + "version":33195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.209.128", + "prefixLen":25, + "network":"193.122.209.128\/25", + "version":33194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.210.0", + "prefixLen":25, + "network":"193.122.210.0\/25", + "version":33193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.210.128", + "prefixLen":25, + "network":"193.122.210.128\/25", + "version":33192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.211.0", + "prefixLen":25, + "network":"193.122.211.0\/25", + "version":33191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.211.128", + "prefixLen":25, + "network":"193.122.211.128\/25", + "version":33190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.224.0", + "prefixLen":25, + "network":"193.122.224.0\/25", + "version":33189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.224.128", + "prefixLen":25, + "network":"193.122.224.128\/25", + "version":33188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.225.0", + "prefixLen":25, + "network":"193.122.225.0\/25", + "version":33187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.225.128", + "prefixLen":25, + "network":"193.122.225.128\/25", + "version":33186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.226.0", + "prefixLen":25, + "network":"193.122.226.0\/25", + "version":33185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.226.128", + "prefixLen":25, + "network":"193.122.226.128\/25", + "version":33184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.227.0", + "prefixLen":25, + "network":"193.122.227.0\/25", + "version":33183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.227.128", + "prefixLen":25, + "network":"193.122.227.128\/25", + "version":33182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.240.0", + "prefixLen":25, + "network":"193.122.240.0\/25", + "version":33181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.240.128", + "prefixLen":25, + "network":"193.122.240.128\/25", + "version":33180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.241.0", + "prefixLen":25, + "network":"193.122.241.0\/25", + "version":33179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.241.128", + "prefixLen":25, + "network":"193.122.241.128\/25", + "version":33178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.242.0", + "prefixLen":25, + "network":"193.122.242.0\/25", + "version":33177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.242.128", + "prefixLen":25, + "network":"193.122.242.128\/25", + "version":33176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.243.0", + "prefixLen":25, + "network":"193.122.243.0\/25", + "version":33175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.122.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.122.243.128", + "prefixLen":25, + "network":"193.122.243.128\/25", + "version":33174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64810 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.0.0", + "prefixLen":25, + "network":"193.123.0.0\/25", + "version":33301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.0.128", + "prefixLen":25, + "network":"193.123.0.128\/25", + "version":33428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.1.0", + "prefixLen":25, + "network":"193.123.1.0\/25", + "version":33427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.1.128", + "prefixLen":25, + "network":"193.123.1.128\/25", + "version":33426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.2.0", + "prefixLen":25, + "network":"193.123.2.0\/25", + "version":33425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.2.128", + "prefixLen":25, + "network":"193.123.2.128\/25", + "version":33424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.3.0", + "prefixLen":25, + "network":"193.123.3.0\/25", + "version":33423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.3.128", + "prefixLen":25, + "network":"193.123.3.128\/25", + "version":33422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.16.0", + "prefixLen":25, + "network":"193.123.16.0\/25", + "version":33421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.16.128", + "prefixLen":25, + "network":"193.123.16.128\/25", + "version":33420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.17.0", + "prefixLen":25, + "network":"193.123.17.0\/25", + "version":33419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.17.128", + "prefixLen":25, + "network":"193.123.17.128\/25", + "version":33418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.18.0", + "prefixLen":25, + "network":"193.123.18.0\/25", + "version":33417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.18.128", + "prefixLen":25, + "network":"193.123.18.128\/25", + "version":33416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.19.0", + "prefixLen":25, + "network":"193.123.19.0\/25", + "version":33415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.19.128", + "prefixLen":25, + "network":"193.123.19.128\/25", + "version":33414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.32.0", + "prefixLen":25, + "network":"193.123.32.0\/25", + "version":33413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.32.128", + "prefixLen":25, + "network":"193.123.32.128\/25", + "version":33412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.33.0", + "prefixLen":25, + "network":"193.123.33.0\/25", + "version":33411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.33.128", + "prefixLen":25, + "network":"193.123.33.128\/25", + "version":33410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.34.0", + "prefixLen":25, + "network":"193.123.34.0\/25", + "version":33409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.34.128", + "prefixLen":25, + "network":"193.123.34.128\/25", + "version":33408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.35.0", + "prefixLen":25, + "network":"193.123.35.0\/25", + "version":33407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.35.128", + "prefixLen":25, + "network":"193.123.35.128\/25", + "version":33406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.48.0", + "prefixLen":25, + "network":"193.123.48.0\/25", + "version":33405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.48.128", + "prefixLen":25, + "network":"193.123.48.128\/25", + "version":33404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.49.0", + "prefixLen":25, + "network":"193.123.49.0\/25", + "version":33403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.49.128", + "prefixLen":25, + "network":"193.123.49.128\/25", + "version":33402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.50.0", + "prefixLen":25, + "network":"193.123.50.0\/25", + "version":33401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.50.128", + "prefixLen":25, + "network":"193.123.50.128\/25", + "version":33400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.51.0", + "prefixLen":25, + "network":"193.123.51.0\/25", + "version":33399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.51.128", + "prefixLen":25, + "network":"193.123.51.128\/25", + "version":33398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.64.0", + "prefixLen":25, + "network":"193.123.64.0\/25", + "version":33397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.64.128", + "prefixLen":25, + "network":"193.123.64.128\/25", + "version":33396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.65.0", + "prefixLen":25, + "network":"193.123.65.0\/25", + "version":33395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.65.128", + "prefixLen":25, + "network":"193.123.65.128\/25", + "version":33394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.66.0", + "prefixLen":25, + "network":"193.123.66.0\/25", + "version":33393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.66.128", + "prefixLen":25, + "network":"193.123.66.128\/25", + "version":33392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.67.0", + "prefixLen":25, + "network":"193.123.67.0\/25", + "version":33391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.67.128", + "prefixLen":25, + "network":"193.123.67.128\/25", + "version":33390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.80.0", + "prefixLen":25, + "network":"193.123.80.0\/25", + "version":33389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.80.128", + "prefixLen":25, + "network":"193.123.80.128\/25", + "version":33388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.81.0", + "prefixLen":25, + "network":"193.123.81.0\/25", + "version":33387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.81.128", + "prefixLen":25, + "network":"193.123.81.128\/25", + "version":33386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.82.0", + "prefixLen":25, + "network":"193.123.82.0\/25", + "version":33385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.82.128", + "prefixLen":25, + "network":"193.123.82.128\/25", + "version":33384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.83.0", + "prefixLen":25, + "network":"193.123.83.0\/25", + "version":33383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.83.128", + "prefixLen":25, + "network":"193.123.83.128\/25", + "version":33382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.96.0", + "prefixLen":25, + "network":"193.123.96.0\/25", + "version":33381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.96.128", + "prefixLen":25, + "network":"193.123.96.128\/25", + "version":33380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.97.0", + "prefixLen":25, + "network":"193.123.97.0\/25", + "version":33379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.97.128", + "prefixLen":25, + "network":"193.123.97.128\/25", + "version":33378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.98.0", + "prefixLen":25, + "network":"193.123.98.0\/25", + "version":33377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.98.128", + "prefixLen":25, + "network":"193.123.98.128\/25", + "version":33376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.99.0", + "prefixLen":25, + "network":"193.123.99.0\/25", + "version":33375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.99.128", + "prefixLen":25, + "network":"193.123.99.128\/25", + "version":33374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.112.0", + "prefixLen":25, + "network":"193.123.112.0\/25", + "version":33373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.112.128", + "prefixLen":25, + "network":"193.123.112.128\/25", + "version":33372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.113.0", + "prefixLen":25, + "network":"193.123.113.0\/25", + "version":33371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.113.128", + "prefixLen":25, + "network":"193.123.113.128\/25", + "version":33370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.114.0", + "prefixLen":25, + "network":"193.123.114.0\/25", + "version":33369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.114.128", + "prefixLen":25, + "network":"193.123.114.128\/25", + "version":33368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.115.0", + "prefixLen":25, + "network":"193.123.115.0\/25", + "version":33367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.115.128", + "prefixLen":25, + "network":"193.123.115.128\/25", + "version":33366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.128.0", + "prefixLen":25, + "network":"193.123.128.0\/25", + "version":33365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.128.128", + "prefixLen":25, + "network":"193.123.128.128\/25", + "version":33364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.129.0", + "prefixLen":25, + "network":"193.123.129.0\/25", + "version":33363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.129.128", + "prefixLen":25, + "network":"193.123.129.128\/25", + "version":33362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.130.0", + "prefixLen":25, + "network":"193.123.130.0\/25", + "version":33361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.130.128", + "prefixLen":25, + "network":"193.123.130.128\/25", + "version":33360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.131.0", + "prefixLen":25, + "network":"193.123.131.0\/25", + "version":33359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.131.128", + "prefixLen":25, + "network":"193.123.131.128\/25", + "version":33358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.144.0", + "prefixLen":25, + "network":"193.123.144.0\/25", + "version":33357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.144.128", + "prefixLen":25, + "network":"193.123.144.128\/25", + "version":33356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.145.0", + "prefixLen":25, + "network":"193.123.145.0\/25", + "version":33355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.145.128", + "prefixLen":25, + "network":"193.123.145.128\/25", + "version":33354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.146.0", + "prefixLen":25, + "network":"193.123.146.0\/25", + "version":33353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.146.128", + "prefixLen":25, + "network":"193.123.146.128\/25", + "version":33352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.147.0", + "prefixLen":25, + "network":"193.123.147.0\/25", + "version":33351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.147.128", + "prefixLen":25, + "network":"193.123.147.128\/25", + "version":33350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.160.0", + "prefixLen":25, + "network":"193.123.160.0\/25", + "version":33349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.160.128", + "prefixLen":25, + "network":"193.123.160.128\/25", + "version":33348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.161.0", + "prefixLen":25, + "network":"193.123.161.0\/25", + "version":33347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.161.128", + "prefixLen":25, + "network":"193.123.161.128\/25", + "version":33346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.162.0", + "prefixLen":25, + "network":"193.123.162.0\/25", + "version":33345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.162.128", + "prefixLen":25, + "network":"193.123.162.128\/25", + "version":33344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.163.0", + "prefixLen":25, + "network":"193.123.163.0\/25", + "version":33343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.163.128", + "prefixLen":25, + "network":"193.123.163.128\/25", + "version":33342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.176.0", + "prefixLen":25, + "network":"193.123.176.0\/25", + "version":33341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.176.128", + "prefixLen":25, + "network":"193.123.176.128\/25", + "version":33340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.177.0", + "prefixLen":25, + "network":"193.123.177.0\/25", + "version":33339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.177.128", + "prefixLen":25, + "network":"193.123.177.128\/25", + "version":33338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.178.0", + "prefixLen":25, + "network":"193.123.178.0\/25", + "version":33337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.178.128", + "prefixLen":25, + "network":"193.123.178.128\/25", + "version":33336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.179.0", + "prefixLen":25, + "network":"193.123.179.0\/25", + "version":33335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.179.128", + "prefixLen":25, + "network":"193.123.179.128\/25", + "version":33334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.192.0", + "prefixLen":25, + "network":"193.123.192.0\/25", + "version":33333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.192.128", + "prefixLen":25, + "network":"193.123.192.128\/25", + "version":33332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.193.0", + "prefixLen":25, + "network":"193.123.193.0\/25", + "version":33331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.193.128", + "prefixLen":25, + "network":"193.123.193.128\/25", + "version":33330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.194.0", + "prefixLen":25, + "network":"193.123.194.0\/25", + "version":33329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.194.128", + "prefixLen":25, + "network":"193.123.194.128\/25", + "version":33328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.195.0", + "prefixLen":25, + "network":"193.123.195.0\/25", + "version":33327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.195.128", + "prefixLen":25, + "network":"193.123.195.128\/25", + "version":33326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.208.0", + "prefixLen":25, + "network":"193.123.208.0\/25", + "version":33325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.208.128", + "prefixLen":25, + "network":"193.123.208.128\/25", + "version":33324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.209.0", + "prefixLen":25, + "network":"193.123.209.0\/25", + "version":33323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.209.128", + "prefixLen":25, + "network":"193.123.209.128\/25", + "version":33322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.210.0", + "prefixLen":25, + "network":"193.123.210.0\/25", + "version":33321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.210.128", + "prefixLen":25, + "network":"193.123.210.128\/25", + "version":33320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.211.0", + "prefixLen":25, + "network":"193.123.211.0\/25", + "version":33319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.211.128", + "prefixLen":25, + "network":"193.123.211.128\/25", + "version":33318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.224.0", + "prefixLen":25, + "network":"193.123.224.0\/25", + "version":33317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.224.128", + "prefixLen":25, + "network":"193.123.224.128\/25", + "version":33316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.225.0", + "prefixLen":25, + "network":"193.123.225.0\/25", + "version":33315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.225.128", + "prefixLen":25, + "network":"193.123.225.128\/25", + "version":33314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.226.0", + "prefixLen":25, + "network":"193.123.226.0\/25", + "version":33313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.226.128", + "prefixLen":25, + "network":"193.123.226.128\/25", + "version":33312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.227.0", + "prefixLen":25, + "network":"193.123.227.0\/25", + "version":33311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.227.128", + "prefixLen":25, + "network":"193.123.227.128\/25", + "version":33310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.240.0", + "prefixLen":25, + "network":"193.123.240.0\/25", + "version":33309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.240.128", + "prefixLen":25, + "network":"193.123.240.128\/25", + "version":33308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.241.0", + "prefixLen":25, + "network":"193.123.241.0\/25", + "version":33307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.241.128", + "prefixLen":25, + "network":"193.123.241.128\/25", + "version":33306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.242.0", + "prefixLen":25, + "network":"193.123.242.0\/25", + "version":33305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.242.128", + "prefixLen":25, + "network":"193.123.242.128\/25", + "version":33304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.243.0", + "prefixLen":25, + "network":"193.123.243.0\/25", + "version":33303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.123.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.123.243.128", + "prefixLen":25, + "network":"193.123.243.128\/25", + "version":33302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64811 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.0.0", + "prefixLen":25, + "network":"193.124.0.0\/25", + "version":33429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.0.128", + "prefixLen":25, + "network":"193.124.0.128\/25", + "version":33556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.1.0", + "prefixLen":25, + "network":"193.124.1.0\/25", + "version":33555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.1.128", + "prefixLen":25, + "network":"193.124.1.128\/25", + "version":33554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.2.0", + "prefixLen":25, + "network":"193.124.2.0\/25", + "version":33553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.2.128", + "prefixLen":25, + "network":"193.124.2.128\/25", + "version":33552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.3.0", + "prefixLen":25, + "network":"193.124.3.0\/25", + "version":33551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.3.128", + "prefixLen":25, + "network":"193.124.3.128\/25", + "version":33550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.16.0", + "prefixLen":25, + "network":"193.124.16.0\/25", + "version":33549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.16.128", + "prefixLen":25, + "network":"193.124.16.128\/25", + "version":33548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.17.0", + "prefixLen":25, + "network":"193.124.17.0\/25", + "version":33547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.17.128", + "prefixLen":25, + "network":"193.124.17.128\/25", + "version":33546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.18.0", + "prefixLen":25, + "network":"193.124.18.0\/25", + "version":33545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.18.128", + "prefixLen":25, + "network":"193.124.18.128\/25", + "version":33544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.19.0", + "prefixLen":25, + "network":"193.124.19.0\/25", + "version":33543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.19.128", + "prefixLen":25, + "network":"193.124.19.128\/25", + "version":33542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.32.0", + "prefixLen":25, + "network":"193.124.32.0\/25", + "version":33541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.32.128", + "prefixLen":25, + "network":"193.124.32.128\/25", + "version":33540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.33.0", + "prefixLen":25, + "network":"193.124.33.0\/25", + "version":33539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.33.128", + "prefixLen":25, + "network":"193.124.33.128\/25", + "version":33538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.34.0", + "prefixLen":25, + "network":"193.124.34.0\/25", + "version":33537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.34.128", + "prefixLen":25, + "network":"193.124.34.128\/25", + "version":33536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.35.0", + "prefixLen":25, + "network":"193.124.35.0\/25", + "version":33535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.35.128", + "prefixLen":25, + "network":"193.124.35.128\/25", + "version":33534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.48.0", + "prefixLen":25, + "network":"193.124.48.0\/25", + "version":33533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.48.128", + "prefixLen":25, + "network":"193.124.48.128\/25", + "version":33532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.49.0", + "prefixLen":25, + "network":"193.124.49.0\/25", + "version":33531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.49.128", + "prefixLen":25, + "network":"193.124.49.128\/25", + "version":33530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.50.0", + "prefixLen":25, + "network":"193.124.50.0\/25", + "version":33529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.50.128", + "prefixLen":25, + "network":"193.124.50.128\/25", + "version":33528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.51.0", + "prefixLen":25, + "network":"193.124.51.0\/25", + "version":33527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.51.128", + "prefixLen":25, + "network":"193.124.51.128\/25", + "version":33526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.64.0", + "prefixLen":25, + "network":"193.124.64.0\/25", + "version":33525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.64.128", + "prefixLen":25, + "network":"193.124.64.128\/25", + "version":33524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.65.0", + "prefixLen":25, + "network":"193.124.65.0\/25", + "version":33523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.65.128", + "prefixLen":25, + "network":"193.124.65.128\/25", + "version":33522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.66.0", + "prefixLen":25, + "network":"193.124.66.0\/25", + "version":33521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.66.128", + "prefixLen":25, + "network":"193.124.66.128\/25", + "version":33520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.67.0", + "prefixLen":25, + "network":"193.124.67.0\/25", + "version":33519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.67.128", + "prefixLen":25, + "network":"193.124.67.128\/25", + "version":33518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.80.0", + "prefixLen":25, + "network":"193.124.80.0\/25", + "version":33517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.80.128", + "prefixLen":25, + "network":"193.124.80.128\/25", + "version":33516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.81.0", + "prefixLen":25, + "network":"193.124.81.0\/25", + "version":33515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.81.128", + "prefixLen":25, + "network":"193.124.81.128\/25", + "version":33514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.82.0", + "prefixLen":25, + "network":"193.124.82.0\/25", + "version":33513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.82.128", + "prefixLen":25, + "network":"193.124.82.128\/25", + "version":33512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.83.0", + "prefixLen":25, + "network":"193.124.83.0\/25", + "version":33511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.83.128", + "prefixLen":25, + "network":"193.124.83.128\/25", + "version":33510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.96.0", + "prefixLen":25, + "network":"193.124.96.0\/25", + "version":33509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.96.128", + "prefixLen":25, + "network":"193.124.96.128\/25", + "version":33508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.97.0", + "prefixLen":25, + "network":"193.124.97.0\/25", + "version":33507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.97.128", + "prefixLen":25, + "network":"193.124.97.128\/25", + "version":33506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.98.0", + "prefixLen":25, + "network":"193.124.98.0\/25", + "version":33505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.98.128", + "prefixLen":25, + "network":"193.124.98.128\/25", + "version":33504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.99.0", + "prefixLen":25, + "network":"193.124.99.0\/25", + "version":33503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.99.128", + "prefixLen":25, + "network":"193.124.99.128\/25", + "version":33502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.112.0", + "prefixLen":25, + "network":"193.124.112.0\/25", + "version":33501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.112.128", + "prefixLen":25, + "network":"193.124.112.128\/25", + "version":33500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.113.0", + "prefixLen":25, + "network":"193.124.113.0\/25", + "version":33499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.113.128", + "prefixLen":25, + "network":"193.124.113.128\/25", + "version":33498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.114.0", + "prefixLen":25, + "network":"193.124.114.0\/25", + "version":33497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.114.128", + "prefixLen":25, + "network":"193.124.114.128\/25", + "version":33496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.115.0", + "prefixLen":25, + "network":"193.124.115.0\/25", + "version":33495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.115.128", + "prefixLen":25, + "network":"193.124.115.128\/25", + "version":33494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.128.0", + "prefixLen":25, + "network":"193.124.128.0\/25", + "version":33493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.128.128", + "prefixLen":25, + "network":"193.124.128.128\/25", + "version":33492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.129.0", + "prefixLen":25, + "network":"193.124.129.0\/25", + "version":33491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.129.128", + "prefixLen":25, + "network":"193.124.129.128\/25", + "version":33490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.130.0", + "prefixLen":25, + "network":"193.124.130.0\/25", + "version":33489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.130.128", + "prefixLen":25, + "network":"193.124.130.128\/25", + "version":33488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.131.0", + "prefixLen":25, + "network":"193.124.131.0\/25", + "version":33487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.131.128", + "prefixLen":25, + "network":"193.124.131.128\/25", + "version":33486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.144.0", + "prefixLen":25, + "network":"193.124.144.0\/25", + "version":33485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.144.128", + "prefixLen":25, + "network":"193.124.144.128\/25", + "version":33484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.145.0", + "prefixLen":25, + "network":"193.124.145.0\/25", + "version":33483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.145.128", + "prefixLen":25, + "network":"193.124.145.128\/25", + "version":33482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.146.0", + "prefixLen":25, + "network":"193.124.146.0\/25", + "version":33481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.146.128", + "prefixLen":25, + "network":"193.124.146.128\/25", + "version":33480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.147.0", + "prefixLen":25, + "network":"193.124.147.0\/25", + "version":33479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.147.128", + "prefixLen":25, + "network":"193.124.147.128\/25", + "version":33478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.160.0", + "prefixLen":25, + "network":"193.124.160.0\/25", + "version":33477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.160.128", + "prefixLen":25, + "network":"193.124.160.128\/25", + "version":33476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.161.0", + "prefixLen":25, + "network":"193.124.161.0\/25", + "version":33475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.161.128", + "prefixLen":25, + "network":"193.124.161.128\/25", + "version":33474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.162.0", + "prefixLen":25, + "network":"193.124.162.0\/25", + "version":33473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.162.128", + "prefixLen":25, + "network":"193.124.162.128\/25", + "version":33472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.163.0", + "prefixLen":25, + "network":"193.124.163.0\/25", + "version":33471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.163.128", + "prefixLen":25, + "network":"193.124.163.128\/25", + "version":33470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.176.0", + "prefixLen":25, + "network":"193.124.176.0\/25", + "version":33469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.176.128", + "prefixLen":25, + "network":"193.124.176.128\/25", + "version":33468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.177.0", + "prefixLen":25, + "network":"193.124.177.0\/25", + "version":33467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.177.128", + "prefixLen":25, + "network":"193.124.177.128\/25", + "version":33466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.178.0", + "prefixLen":25, + "network":"193.124.178.0\/25", + "version":33465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.178.128", + "prefixLen":25, + "network":"193.124.178.128\/25", + "version":33464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.179.0", + "prefixLen":25, + "network":"193.124.179.0\/25", + "version":33463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.179.128", + "prefixLen":25, + "network":"193.124.179.128\/25", + "version":33462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.192.0", + "prefixLen":25, + "network":"193.124.192.0\/25", + "version":33461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.192.128", + "prefixLen":25, + "network":"193.124.192.128\/25", + "version":33460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.193.0", + "prefixLen":25, + "network":"193.124.193.0\/25", + "version":33459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.193.128", + "prefixLen":25, + "network":"193.124.193.128\/25", + "version":33458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.194.0", + "prefixLen":25, + "network":"193.124.194.0\/25", + "version":33457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.194.128", + "prefixLen":25, + "network":"193.124.194.128\/25", + "version":33456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.195.0", + "prefixLen":25, + "network":"193.124.195.0\/25", + "version":33455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.195.128", + "prefixLen":25, + "network":"193.124.195.128\/25", + "version":33454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.208.0", + "prefixLen":25, + "network":"193.124.208.0\/25", + "version":33453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.208.128", + "prefixLen":25, + "network":"193.124.208.128\/25", + "version":33452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.209.0", + "prefixLen":25, + "network":"193.124.209.0\/25", + "version":33451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.209.128", + "prefixLen":25, + "network":"193.124.209.128\/25", + "version":33450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.210.0", + "prefixLen":25, + "network":"193.124.210.0\/25", + "version":33449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.210.128", + "prefixLen":25, + "network":"193.124.210.128\/25", + "version":33448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.211.0", + "prefixLen":25, + "network":"193.124.211.0\/25", + "version":33447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.211.128", + "prefixLen":25, + "network":"193.124.211.128\/25", + "version":33446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.224.0", + "prefixLen":25, + "network":"193.124.224.0\/25", + "version":33445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.224.128", + "prefixLen":25, + "network":"193.124.224.128\/25", + "version":33444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.225.0", + "prefixLen":25, + "network":"193.124.225.0\/25", + "version":33443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.225.128", + "prefixLen":25, + "network":"193.124.225.128\/25", + "version":33442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.226.0", + "prefixLen":25, + "network":"193.124.226.0\/25", + "version":33441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.226.128", + "prefixLen":25, + "network":"193.124.226.128\/25", + "version":33440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.227.0", + "prefixLen":25, + "network":"193.124.227.0\/25", + "version":33439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.227.128", + "prefixLen":25, + "network":"193.124.227.128\/25", + "version":33438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.240.0", + "prefixLen":25, + "network":"193.124.240.0\/25", + "version":33437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.240.128", + "prefixLen":25, + "network":"193.124.240.128\/25", + "version":33436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.241.0", + "prefixLen":25, + "network":"193.124.241.0\/25", + "version":33435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.241.128", + "prefixLen":25, + "network":"193.124.241.128\/25", + "version":33434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.242.0", + "prefixLen":25, + "network":"193.124.242.0\/25", + "version":33433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.242.128", + "prefixLen":25, + "network":"193.124.242.128\/25", + "version":33432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.243.0", + "prefixLen":25, + "network":"193.124.243.0\/25", + "version":33431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.124.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.124.243.128", + "prefixLen":25, + "network":"193.124.243.128\/25", + "version":33430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64812 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.0.0", + "prefixLen":25, + "network":"193.125.0.0\/25", + "version":33557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.0.128", + "prefixLen":25, + "network":"193.125.0.128\/25", + "version":33684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.1.0", + "prefixLen":25, + "network":"193.125.1.0\/25", + "version":33683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.1.128", + "prefixLen":25, + "network":"193.125.1.128\/25", + "version":33682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.2.0", + "prefixLen":25, + "network":"193.125.2.0\/25", + "version":33681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.2.128", + "prefixLen":25, + "network":"193.125.2.128\/25", + "version":33680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.3.0", + "prefixLen":25, + "network":"193.125.3.0\/25", + "version":33679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.3.128", + "prefixLen":25, + "network":"193.125.3.128\/25", + "version":33678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.16.0", + "prefixLen":25, + "network":"193.125.16.0\/25", + "version":33677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.16.128", + "prefixLen":25, + "network":"193.125.16.128\/25", + "version":33676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.17.0", + "prefixLen":25, + "network":"193.125.17.0\/25", + "version":33675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.17.128", + "prefixLen":25, + "network":"193.125.17.128\/25", + "version":33674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.18.0", + "prefixLen":25, + "network":"193.125.18.0\/25", + "version":33673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.18.128", + "prefixLen":25, + "network":"193.125.18.128\/25", + "version":33672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.19.0", + "prefixLen":25, + "network":"193.125.19.0\/25", + "version":33671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.19.128", + "prefixLen":25, + "network":"193.125.19.128\/25", + "version":33670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.32.0", + "prefixLen":25, + "network":"193.125.32.0\/25", + "version":33669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.32.128", + "prefixLen":25, + "network":"193.125.32.128\/25", + "version":33668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.33.0", + "prefixLen":25, + "network":"193.125.33.0\/25", + "version":33667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.33.128", + "prefixLen":25, + "network":"193.125.33.128\/25", + "version":33666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.34.0", + "prefixLen":25, + "network":"193.125.34.0\/25", + "version":33665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.34.128", + "prefixLen":25, + "network":"193.125.34.128\/25", + "version":33664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.35.0", + "prefixLen":25, + "network":"193.125.35.0\/25", + "version":33663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.35.128", + "prefixLen":25, + "network":"193.125.35.128\/25", + "version":33662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.48.0", + "prefixLen":25, + "network":"193.125.48.0\/25", + "version":33661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.48.128", + "prefixLen":25, + "network":"193.125.48.128\/25", + "version":33660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.49.0", + "prefixLen":25, + "network":"193.125.49.0\/25", + "version":33659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.49.128", + "prefixLen":25, + "network":"193.125.49.128\/25", + "version":33658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.50.0", + "prefixLen":25, + "network":"193.125.50.0\/25", + "version":33657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.50.128", + "prefixLen":25, + "network":"193.125.50.128\/25", + "version":33656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.51.0", + "prefixLen":25, + "network":"193.125.51.0\/25", + "version":33655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.51.128", + "prefixLen":25, + "network":"193.125.51.128\/25", + "version":33654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.64.0", + "prefixLen":25, + "network":"193.125.64.0\/25", + "version":33653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.64.128", + "prefixLen":25, + "network":"193.125.64.128\/25", + "version":33652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.65.0", + "prefixLen":25, + "network":"193.125.65.0\/25", + "version":33651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.65.128", + "prefixLen":25, + "network":"193.125.65.128\/25", + "version":33650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.66.0", + "prefixLen":25, + "network":"193.125.66.0\/25", + "version":33649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.66.128", + "prefixLen":25, + "network":"193.125.66.128\/25", + "version":33648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.67.0", + "prefixLen":25, + "network":"193.125.67.0\/25", + "version":33647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.67.128", + "prefixLen":25, + "network":"193.125.67.128\/25", + "version":33646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.80.0", + "prefixLen":25, + "network":"193.125.80.0\/25", + "version":33645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.80.128", + "prefixLen":25, + "network":"193.125.80.128\/25", + "version":33644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.81.0", + "prefixLen":25, + "network":"193.125.81.0\/25", + "version":33643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.81.128", + "prefixLen":25, + "network":"193.125.81.128\/25", + "version":33642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.82.0", + "prefixLen":25, + "network":"193.125.82.0\/25", + "version":33641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.82.128", + "prefixLen":25, + "network":"193.125.82.128\/25", + "version":33640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.83.0", + "prefixLen":25, + "network":"193.125.83.0\/25", + "version":33639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.83.128", + "prefixLen":25, + "network":"193.125.83.128\/25", + "version":33638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.96.0", + "prefixLen":25, + "network":"193.125.96.0\/25", + "version":33637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.96.128", + "prefixLen":25, + "network":"193.125.96.128\/25", + "version":33636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.97.0", + "prefixLen":25, + "network":"193.125.97.0\/25", + "version":33635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.97.128", + "prefixLen":25, + "network":"193.125.97.128\/25", + "version":33634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.98.0", + "prefixLen":25, + "network":"193.125.98.0\/25", + "version":33633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.98.128", + "prefixLen":25, + "network":"193.125.98.128\/25", + "version":33632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.99.0", + "prefixLen":25, + "network":"193.125.99.0\/25", + "version":33631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.99.128", + "prefixLen":25, + "network":"193.125.99.128\/25", + "version":33630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.112.0", + "prefixLen":25, + "network":"193.125.112.0\/25", + "version":33629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.112.128", + "prefixLen":25, + "network":"193.125.112.128\/25", + "version":33628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.113.0", + "prefixLen":25, + "network":"193.125.113.0\/25", + "version":33627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.113.128", + "prefixLen":25, + "network":"193.125.113.128\/25", + "version":33626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.114.0", + "prefixLen":25, + "network":"193.125.114.0\/25", + "version":33625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.114.128", + "prefixLen":25, + "network":"193.125.114.128\/25", + "version":33624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.115.0", + "prefixLen":25, + "network":"193.125.115.0\/25", + "version":33623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.115.128", + "prefixLen":25, + "network":"193.125.115.128\/25", + "version":33622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.128.0", + "prefixLen":25, + "network":"193.125.128.0\/25", + "version":33621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.128.128", + "prefixLen":25, + "network":"193.125.128.128\/25", + "version":33620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.129.0", + "prefixLen":25, + "network":"193.125.129.0\/25", + "version":33619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.129.128", + "prefixLen":25, + "network":"193.125.129.128\/25", + "version":33618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.130.0", + "prefixLen":25, + "network":"193.125.130.0\/25", + "version":33617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.130.128", + "prefixLen":25, + "network":"193.125.130.128\/25", + "version":33616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.131.0", + "prefixLen":25, + "network":"193.125.131.0\/25", + "version":33615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.131.128", + "prefixLen":25, + "network":"193.125.131.128\/25", + "version":33614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.144.0", + "prefixLen":25, + "network":"193.125.144.0\/25", + "version":33613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.144.128", + "prefixLen":25, + "network":"193.125.144.128\/25", + "version":33612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.145.0", + "prefixLen":25, + "network":"193.125.145.0\/25", + "version":33611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.145.128", + "prefixLen":25, + "network":"193.125.145.128\/25", + "version":33610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.146.0", + "prefixLen":25, + "network":"193.125.146.0\/25", + "version":33609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.146.128", + "prefixLen":25, + "network":"193.125.146.128\/25", + "version":33608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.147.0", + "prefixLen":25, + "network":"193.125.147.0\/25", + "version":33607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.147.128", + "prefixLen":25, + "network":"193.125.147.128\/25", + "version":33606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.160.0", + "prefixLen":25, + "network":"193.125.160.0\/25", + "version":33605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.160.128", + "prefixLen":25, + "network":"193.125.160.128\/25", + "version":33604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.161.0", + "prefixLen":25, + "network":"193.125.161.0\/25", + "version":33603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.161.128", + "prefixLen":25, + "network":"193.125.161.128\/25", + "version":33602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.162.0", + "prefixLen":25, + "network":"193.125.162.0\/25", + "version":33601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.162.128", + "prefixLen":25, + "network":"193.125.162.128\/25", + "version":33600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.163.0", + "prefixLen":25, + "network":"193.125.163.0\/25", + "version":33599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.163.128", + "prefixLen":25, + "network":"193.125.163.128\/25", + "version":33598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.176.0", + "prefixLen":25, + "network":"193.125.176.0\/25", + "version":33597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.176.128", + "prefixLen":25, + "network":"193.125.176.128\/25", + "version":33596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.177.0", + "prefixLen":25, + "network":"193.125.177.0\/25", + "version":33595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.177.128", + "prefixLen":25, + "network":"193.125.177.128\/25", + "version":33594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.178.0", + "prefixLen":25, + "network":"193.125.178.0\/25", + "version":33593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.178.128", + "prefixLen":25, + "network":"193.125.178.128\/25", + "version":33592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.179.0", + "prefixLen":25, + "network":"193.125.179.0\/25", + "version":33591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.179.128", + "prefixLen":25, + "network":"193.125.179.128\/25", + "version":33590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.192.0", + "prefixLen":25, + "network":"193.125.192.0\/25", + "version":33589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.192.128", + "prefixLen":25, + "network":"193.125.192.128\/25", + "version":33588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.193.0", + "prefixLen":25, + "network":"193.125.193.0\/25", + "version":33587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.193.128", + "prefixLen":25, + "network":"193.125.193.128\/25", + "version":33586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.194.0", + "prefixLen":25, + "network":"193.125.194.0\/25", + "version":33585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.194.128", + "prefixLen":25, + "network":"193.125.194.128\/25", + "version":33584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.195.0", + "prefixLen":25, + "network":"193.125.195.0\/25", + "version":33583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.195.128", + "prefixLen":25, + "network":"193.125.195.128\/25", + "version":33582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.208.0", + "prefixLen":25, + "network":"193.125.208.0\/25", + "version":33581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.208.128", + "prefixLen":25, + "network":"193.125.208.128\/25", + "version":33580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.209.0", + "prefixLen":25, + "network":"193.125.209.0\/25", + "version":33579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.209.128", + "prefixLen":25, + "network":"193.125.209.128\/25", + "version":33578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.210.0", + "prefixLen":25, + "network":"193.125.210.0\/25", + "version":33577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.210.128", + "prefixLen":25, + "network":"193.125.210.128\/25", + "version":33576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.211.0", + "prefixLen":25, + "network":"193.125.211.0\/25", + "version":33575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.211.128", + "prefixLen":25, + "network":"193.125.211.128\/25", + "version":33574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.224.0", + "prefixLen":25, + "network":"193.125.224.0\/25", + "version":33573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.224.128", + "prefixLen":25, + "network":"193.125.224.128\/25", + "version":33572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.225.0", + "prefixLen":25, + "network":"193.125.225.0\/25", + "version":33571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.225.128", + "prefixLen":25, + "network":"193.125.225.128\/25", + "version":33570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.226.0", + "prefixLen":25, + "network":"193.125.226.0\/25", + "version":33569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.226.128", + "prefixLen":25, + "network":"193.125.226.128\/25", + "version":33568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.227.0", + "prefixLen":25, + "network":"193.125.227.0\/25", + "version":33567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.227.128", + "prefixLen":25, + "network":"193.125.227.128\/25", + "version":33566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.240.0", + "prefixLen":25, + "network":"193.125.240.0\/25", + "version":33565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.240.128", + "prefixLen":25, + "network":"193.125.240.128\/25", + "version":33564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.241.0", + "prefixLen":25, + "network":"193.125.241.0\/25", + "version":33563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.241.128", + "prefixLen":25, + "network":"193.125.241.128\/25", + "version":33562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.242.0", + "prefixLen":25, + "network":"193.125.242.0\/25", + "version":33561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.242.128", + "prefixLen":25, + "network":"193.125.242.128\/25", + "version":33560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.243.0", + "prefixLen":25, + "network":"193.125.243.0\/25", + "version":33559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.125.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.125.243.128", + "prefixLen":25, + "network":"193.125.243.128\/25", + "version":33558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64813 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.0.0", + "prefixLen":25, + "network":"193.126.0.0\/25", + "version":33685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.0.128", + "prefixLen":25, + "network":"193.126.0.128\/25", + "version":33812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.1.0", + "prefixLen":25, + "network":"193.126.1.0\/25", + "version":33811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.1.128", + "prefixLen":25, + "network":"193.126.1.128\/25", + "version":33810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.2.0", + "prefixLen":25, + "network":"193.126.2.0\/25", + "version":33809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.2.128", + "prefixLen":25, + "network":"193.126.2.128\/25", + "version":33808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.3.0", + "prefixLen":25, + "network":"193.126.3.0\/25", + "version":33807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.3.128", + "prefixLen":25, + "network":"193.126.3.128\/25", + "version":33806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.16.0", + "prefixLen":25, + "network":"193.126.16.0\/25", + "version":33805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.16.128", + "prefixLen":25, + "network":"193.126.16.128\/25", + "version":33804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.17.0", + "prefixLen":25, + "network":"193.126.17.0\/25", + "version":33803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.17.128", + "prefixLen":25, + "network":"193.126.17.128\/25", + "version":33802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.18.0", + "prefixLen":25, + "network":"193.126.18.0\/25", + "version":33801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.18.128", + "prefixLen":25, + "network":"193.126.18.128\/25", + "version":33800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.19.0", + "prefixLen":25, + "network":"193.126.19.0\/25", + "version":33799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.19.128", + "prefixLen":25, + "network":"193.126.19.128\/25", + "version":33798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.32.0", + "prefixLen":25, + "network":"193.126.32.0\/25", + "version":33797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.32.128", + "prefixLen":25, + "network":"193.126.32.128\/25", + "version":33796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.33.0", + "prefixLen":25, + "network":"193.126.33.0\/25", + "version":33795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.33.128", + "prefixLen":25, + "network":"193.126.33.128\/25", + "version":33794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.34.0", + "prefixLen":25, + "network":"193.126.34.0\/25", + "version":33793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.34.128", + "prefixLen":25, + "network":"193.126.34.128\/25", + "version":33792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.35.0", + "prefixLen":25, + "network":"193.126.35.0\/25", + "version":33791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.35.128", + "prefixLen":25, + "network":"193.126.35.128\/25", + "version":33790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.48.0", + "prefixLen":25, + "network":"193.126.48.0\/25", + "version":33789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.48.128", + "prefixLen":25, + "network":"193.126.48.128\/25", + "version":33788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.49.0", + "prefixLen":25, + "network":"193.126.49.0\/25", + "version":33787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.49.128", + "prefixLen":25, + "network":"193.126.49.128\/25", + "version":33786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.50.0", + "prefixLen":25, + "network":"193.126.50.0\/25", + "version":33785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.50.128", + "prefixLen":25, + "network":"193.126.50.128\/25", + "version":33784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.51.0", + "prefixLen":25, + "network":"193.126.51.0\/25", + "version":33783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.51.128", + "prefixLen":25, + "network":"193.126.51.128\/25", + "version":33782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.64.0", + "prefixLen":25, + "network":"193.126.64.0\/25", + "version":33781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.64.128", + "prefixLen":25, + "network":"193.126.64.128\/25", + "version":33780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.65.0", + "prefixLen":25, + "network":"193.126.65.0\/25", + "version":33779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.65.128", + "prefixLen":25, + "network":"193.126.65.128\/25", + "version":33778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.66.0", + "prefixLen":25, + "network":"193.126.66.0\/25", + "version":33777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.66.128", + "prefixLen":25, + "network":"193.126.66.128\/25", + "version":33776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.67.0", + "prefixLen":25, + "network":"193.126.67.0\/25", + "version":33775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.67.128", + "prefixLen":25, + "network":"193.126.67.128\/25", + "version":33774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.80.0", + "prefixLen":25, + "network":"193.126.80.0\/25", + "version":33773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.80.128", + "prefixLen":25, + "network":"193.126.80.128\/25", + "version":33772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.81.0", + "prefixLen":25, + "network":"193.126.81.0\/25", + "version":33771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.81.128", + "prefixLen":25, + "network":"193.126.81.128\/25", + "version":33770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.82.0", + "prefixLen":25, + "network":"193.126.82.0\/25", + "version":33769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.82.128", + "prefixLen":25, + "network":"193.126.82.128\/25", + "version":33768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.83.0", + "prefixLen":25, + "network":"193.126.83.0\/25", + "version":33767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.83.128", + "prefixLen":25, + "network":"193.126.83.128\/25", + "version":33766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.96.0", + "prefixLen":25, + "network":"193.126.96.0\/25", + "version":33765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.96.128", + "prefixLen":25, + "network":"193.126.96.128\/25", + "version":33764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.97.0", + "prefixLen":25, + "network":"193.126.97.0\/25", + "version":33763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.97.128", + "prefixLen":25, + "network":"193.126.97.128\/25", + "version":33762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.98.0", + "prefixLen":25, + "network":"193.126.98.0\/25", + "version":33761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.98.128", + "prefixLen":25, + "network":"193.126.98.128\/25", + "version":33760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.99.0", + "prefixLen":25, + "network":"193.126.99.0\/25", + "version":33759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.99.128", + "prefixLen":25, + "network":"193.126.99.128\/25", + "version":33758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.112.0", + "prefixLen":25, + "network":"193.126.112.0\/25", + "version":33757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.112.128", + "prefixLen":25, + "network":"193.126.112.128\/25", + "version":33756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.113.0", + "prefixLen":25, + "network":"193.126.113.0\/25", + "version":33755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.113.128", + "prefixLen":25, + "network":"193.126.113.128\/25", + "version":33754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.114.0", + "prefixLen":25, + "network":"193.126.114.0\/25", + "version":33753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.114.128", + "prefixLen":25, + "network":"193.126.114.128\/25", + "version":33752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.115.0", + "prefixLen":25, + "network":"193.126.115.0\/25", + "version":33751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.115.128", + "prefixLen":25, + "network":"193.126.115.128\/25", + "version":33750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.128.0", + "prefixLen":25, + "network":"193.126.128.0\/25", + "version":33749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.128.128", + "prefixLen":25, + "network":"193.126.128.128\/25", + "version":33748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.129.0", + "prefixLen":25, + "network":"193.126.129.0\/25", + "version":33747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.129.128", + "prefixLen":25, + "network":"193.126.129.128\/25", + "version":33746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.130.0", + "prefixLen":25, + "network":"193.126.130.0\/25", + "version":33745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.130.128", + "prefixLen":25, + "network":"193.126.130.128\/25", + "version":33744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.131.0", + "prefixLen":25, + "network":"193.126.131.0\/25", + "version":33743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.131.128", + "prefixLen":25, + "network":"193.126.131.128\/25", + "version":33742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.144.0", + "prefixLen":25, + "network":"193.126.144.0\/25", + "version":33741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.144.128", + "prefixLen":25, + "network":"193.126.144.128\/25", + "version":33740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.145.0", + "prefixLen":25, + "network":"193.126.145.0\/25", + "version":33739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.145.128", + "prefixLen":25, + "network":"193.126.145.128\/25", + "version":33738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.146.0", + "prefixLen":25, + "network":"193.126.146.0\/25", + "version":33737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.146.128", + "prefixLen":25, + "network":"193.126.146.128\/25", + "version":33736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.147.0", + "prefixLen":25, + "network":"193.126.147.0\/25", + "version":33735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.147.128", + "prefixLen":25, + "network":"193.126.147.128\/25", + "version":33734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.160.0", + "prefixLen":25, + "network":"193.126.160.0\/25", + "version":33733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.160.128", + "prefixLen":25, + "network":"193.126.160.128\/25", + "version":33732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.161.0", + "prefixLen":25, + "network":"193.126.161.0\/25", + "version":33731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.161.128", + "prefixLen":25, + "network":"193.126.161.128\/25", + "version":33730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.162.0", + "prefixLen":25, + "network":"193.126.162.0\/25", + "version":33729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.162.128", + "prefixLen":25, + "network":"193.126.162.128\/25", + "version":33728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.163.0", + "prefixLen":25, + "network":"193.126.163.0\/25", + "version":33727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.163.128", + "prefixLen":25, + "network":"193.126.163.128\/25", + "version":33726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.176.0", + "prefixLen":25, + "network":"193.126.176.0\/25", + "version":33725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.176.128", + "prefixLen":25, + "network":"193.126.176.128\/25", + "version":33724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.177.0", + "prefixLen":25, + "network":"193.126.177.0\/25", + "version":33723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.177.128", + "prefixLen":25, + "network":"193.126.177.128\/25", + "version":33722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.178.0", + "prefixLen":25, + "network":"193.126.178.0\/25", + "version":33721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.178.128", + "prefixLen":25, + "network":"193.126.178.128\/25", + "version":33720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.179.0", + "prefixLen":25, + "network":"193.126.179.0\/25", + "version":33719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.179.128", + "prefixLen":25, + "network":"193.126.179.128\/25", + "version":33718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.192.0", + "prefixLen":25, + "network":"193.126.192.0\/25", + "version":33717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.192.128", + "prefixLen":25, + "network":"193.126.192.128\/25", + "version":33716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.193.0", + "prefixLen":25, + "network":"193.126.193.0\/25", + "version":33715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.193.128", + "prefixLen":25, + "network":"193.126.193.128\/25", + "version":33714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.194.0", + "prefixLen":25, + "network":"193.126.194.0\/25", + "version":33713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.194.128", + "prefixLen":25, + "network":"193.126.194.128\/25", + "version":33712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.195.0", + "prefixLen":25, + "network":"193.126.195.0\/25", + "version":33711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.195.128", + "prefixLen":25, + "network":"193.126.195.128\/25", + "version":33710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.208.0", + "prefixLen":25, + "network":"193.126.208.0\/25", + "version":33709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.208.128", + "prefixLen":25, + "network":"193.126.208.128\/25", + "version":33708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.209.0", + "prefixLen":25, + "network":"193.126.209.0\/25", + "version":33707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.209.128", + "prefixLen":25, + "network":"193.126.209.128\/25", + "version":33706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.210.0", + "prefixLen":25, + "network":"193.126.210.0\/25", + "version":33705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.210.128", + "prefixLen":25, + "network":"193.126.210.128\/25", + "version":33704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.211.0", + "prefixLen":25, + "network":"193.126.211.0\/25", + "version":33703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.211.128", + "prefixLen":25, + "network":"193.126.211.128\/25", + "version":33702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.224.0", + "prefixLen":25, + "network":"193.126.224.0\/25", + "version":33701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.224.128", + "prefixLen":25, + "network":"193.126.224.128\/25", + "version":33700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.225.0", + "prefixLen":25, + "network":"193.126.225.0\/25", + "version":33699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.225.128", + "prefixLen":25, + "network":"193.126.225.128\/25", + "version":33698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.226.0", + "prefixLen":25, + "network":"193.126.226.0\/25", + "version":33697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.226.128", + "prefixLen":25, + "network":"193.126.226.128\/25", + "version":33696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.227.0", + "prefixLen":25, + "network":"193.126.227.0\/25", + "version":33695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.227.128", + "prefixLen":25, + "network":"193.126.227.128\/25", + "version":33694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.240.0", + "prefixLen":25, + "network":"193.126.240.0\/25", + "version":33693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.240.128", + "prefixLen":25, + "network":"193.126.240.128\/25", + "version":33692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.241.0", + "prefixLen":25, + "network":"193.126.241.0\/25", + "version":33691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.241.128", + "prefixLen":25, + "network":"193.126.241.128\/25", + "version":33690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.242.0", + "prefixLen":25, + "network":"193.126.242.0\/25", + "version":33689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.242.128", + "prefixLen":25, + "network":"193.126.242.128\/25", + "version":33688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.243.0", + "prefixLen":25, + "network":"193.126.243.0\/25", + "version":33687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.126.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.126.243.128", + "prefixLen":25, + "network":"193.126.243.128\/25", + "version":33686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64814 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.0.0", + "prefixLen":25, + "network":"193.127.0.0\/25", + "version":33813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.0.128", + "prefixLen":25, + "network":"193.127.0.128\/25", + "version":33940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.1.0", + "prefixLen":25, + "network":"193.127.1.0\/25", + "version":33939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.1.128", + "prefixLen":25, + "network":"193.127.1.128\/25", + "version":33938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.2.0", + "prefixLen":25, + "network":"193.127.2.0\/25", + "version":33937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.2.128", + "prefixLen":25, + "network":"193.127.2.128\/25", + "version":33936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.3.0", + "prefixLen":25, + "network":"193.127.3.0\/25", + "version":33935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.3.128", + "prefixLen":25, + "network":"193.127.3.128\/25", + "version":33934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.16.0", + "prefixLen":25, + "network":"193.127.16.0\/25", + "version":33933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.16.128", + "prefixLen":25, + "network":"193.127.16.128\/25", + "version":33932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.17.0", + "prefixLen":25, + "network":"193.127.17.0\/25", + "version":33931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.17.128", + "prefixLen":25, + "network":"193.127.17.128\/25", + "version":33930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.18.0", + "prefixLen":25, + "network":"193.127.18.0\/25", + "version":33929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.18.128", + "prefixLen":25, + "network":"193.127.18.128\/25", + "version":33928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.19.0", + "prefixLen":25, + "network":"193.127.19.0\/25", + "version":33927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.19.128", + "prefixLen":25, + "network":"193.127.19.128\/25", + "version":33926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.32.0", + "prefixLen":25, + "network":"193.127.32.0\/25", + "version":33925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.32.128", + "prefixLen":25, + "network":"193.127.32.128\/25", + "version":33924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.33.0", + "prefixLen":25, + "network":"193.127.33.0\/25", + "version":33923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.33.128", + "prefixLen":25, + "network":"193.127.33.128\/25", + "version":33922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.34.0", + "prefixLen":25, + "network":"193.127.34.0\/25", + "version":33921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.34.128", + "prefixLen":25, + "network":"193.127.34.128\/25", + "version":33920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.35.0", + "prefixLen":25, + "network":"193.127.35.0\/25", + "version":33919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.35.128", + "prefixLen":25, + "network":"193.127.35.128\/25", + "version":33918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.48.0", + "prefixLen":25, + "network":"193.127.48.0\/25", + "version":33917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.48.128", + "prefixLen":25, + "network":"193.127.48.128\/25", + "version":33916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.49.0", + "prefixLen":25, + "network":"193.127.49.0\/25", + "version":33915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.49.128", + "prefixLen":25, + "network":"193.127.49.128\/25", + "version":33914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.50.0", + "prefixLen":25, + "network":"193.127.50.0\/25", + "version":33913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.50.128", + "prefixLen":25, + "network":"193.127.50.128\/25", + "version":33912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.51.0", + "prefixLen":25, + "network":"193.127.51.0\/25", + "version":33911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.51.128", + "prefixLen":25, + "network":"193.127.51.128\/25", + "version":33910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.64.0", + "prefixLen":25, + "network":"193.127.64.0\/25", + "version":33909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.64.128", + "prefixLen":25, + "network":"193.127.64.128\/25", + "version":33908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.65.0", + "prefixLen":25, + "network":"193.127.65.0\/25", + "version":33907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.65.128", + "prefixLen":25, + "network":"193.127.65.128\/25", + "version":33906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.66.0", + "prefixLen":25, + "network":"193.127.66.0\/25", + "version":33905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.66.128", + "prefixLen":25, + "network":"193.127.66.128\/25", + "version":33904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.67.0", + "prefixLen":25, + "network":"193.127.67.0\/25", + "version":33903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.67.128", + "prefixLen":25, + "network":"193.127.67.128\/25", + "version":33902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.80.0", + "prefixLen":25, + "network":"193.127.80.0\/25", + "version":33901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.80.128", + "prefixLen":25, + "network":"193.127.80.128\/25", + "version":33900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.81.0", + "prefixLen":25, + "network":"193.127.81.0\/25", + "version":33899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.81.128", + "prefixLen":25, + "network":"193.127.81.128\/25", + "version":33898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.82.0", + "prefixLen":25, + "network":"193.127.82.0\/25", + "version":33897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.82.128", + "prefixLen":25, + "network":"193.127.82.128\/25", + "version":33896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.83.0", + "prefixLen":25, + "network":"193.127.83.0\/25", + "version":33895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.83.128", + "prefixLen":25, + "network":"193.127.83.128\/25", + "version":33894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.96.0", + "prefixLen":25, + "network":"193.127.96.0\/25", + "version":33893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.96.128", + "prefixLen":25, + "network":"193.127.96.128\/25", + "version":33892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.97.0", + "prefixLen":25, + "network":"193.127.97.0\/25", + "version":33891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.97.128", + "prefixLen":25, + "network":"193.127.97.128\/25", + "version":33890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.98.0", + "prefixLen":25, + "network":"193.127.98.0\/25", + "version":33889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.98.128", + "prefixLen":25, + "network":"193.127.98.128\/25", + "version":33888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.99.0", + "prefixLen":25, + "network":"193.127.99.0\/25", + "version":33887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.99.128", + "prefixLen":25, + "network":"193.127.99.128\/25", + "version":33886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.112.0", + "prefixLen":25, + "network":"193.127.112.0\/25", + "version":33885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.112.128", + "prefixLen":25, + "network":"193.127.112.128\/25", + "version":33884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.113.0", + "prefixLen":25, + "network":"193.127.113.0\/25", + "version":33883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.113.128", + "prefixLen":25, + "network":"193.127.113.128\/25", + "version":33882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.114.0", + "prefixLen":25, + "network":"193.127.114.0\/25", + "version":33881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.114.128", + "prefixLen":25, + "network":"193.127.114.128\/25", + "version":33880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.115.0", + "prefixLen":25, + "network":"193.127.115.0\/25", + "version":33879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.115.128", + "prefixLen":25, + "network":"193.127.115.128\/25", + "version":33878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.128.0", + "prefixLen":25, + "network":"193.127.128.0\/25", + "version":33877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.128.128", + "prefixLen":25, + "network":"193.127.128.128\/25", + "version":33876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.129.0", + "prefixLen":25, + "network":"193.127.129.0\/25", + "version":33875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.129.128", + "prefixLen":25, + "network":"193.127.129.128\/25", + "version":33874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.130.0", + "prefixLen":25, + "network":"193.127.130.0\/25", + "version":33873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.130.128", + "prefixLen":25, + "network":"193.127.130.128\/25", + "version":33872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.131.0", + "prefixLen":25, + "network":"193.127.131.0\/25", + "version":33871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.131.128", + "prefixLen":25, + "network":"193.127.131.128\/25", + "version":33870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.144.0", + "prefixLen":25, + "network":"193.127.144.0\/25", + "version":33869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.144.128", + "prefixLen":25, + "network":"193.127.144.128\/25", + "version":33868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.145.0", + "prefixLen":25, + "network":"193.127.145.0\/25", + "version":33867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.145.128", + "prefixLen":25, + "network":"193.127.145.128\/25", + "version":33866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.146.0", + "prefixLen":25, + "network":"193.127.146.0\/25", + "version":33865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.146.128", + "prefixLen":25, + "network":"193.127.146.128\/25", + "version":33864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.147.0", + "prefixLen":25, + "network":"193.127.147.0\/25", + "version":33863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.147.128", + "prefixLen":25, + "network":"193.127.147.128\/25", + "version":33862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.160.0", + "prefixLen":25, + "network":"193.127.160.0\/25", + "version":33861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.160.128", + "prefixLen":25, + "network":"193.127.160.128\/25", + "version":33860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.161.0", + "prefixLen":25, + "network":"193.127.161.0\/25", + "version":33859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.161.128", + "prefixLen":25, + "network":"193.127.161.128\/25", + "version":33858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.162.0", + "prefixLen":25, + "network":"193.127.162.0\/25", + "version":33857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.162.128", + "prefixLen":25, + "network":"193.127.162.128\/25", + "version":33856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.163.0", + "prefixLen":25, + "network":"193.127.163.0\/25", + "version":33855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.163.128", + "prefixLen":25, + "network":"193.127.163.128\/25", + "version":33854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.176.0", + "prefixLen":25, + "network":"193.127.176.0\/25", + "version":33853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.176.128", + "prefixLen":25, + "network":"193.127.176.128\/25", + "version":33852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.177.0", + "prefixLen":25, + "network":"193.127.177.0\/25", + "version":33851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.177.128", + "prefixLen":25, + "network":"193.127.177.128\/25", + "version":33850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.178.0", + "prefixLen":25, + "network":"193.127.178.0\/25", + "version":33849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.178.128", + "prefixLen":25, + "network":"193.127.178.128\/25", + "version":33848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.179.0", + "prefixLen":25, + "network":"193.127.179.0\/25", + "version":33847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.179.128", + "prefixLen":25, + "network":"193.127.179.128\/25", + "version":33846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.192.0", + "prefixLen":25, + "network":"193.127.192.0\/25", + "version":33845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.192.128", + "prefixLen":25, + "network":"193.127.192.128\/25", + "version":33844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.193.0", + "prefixLen":25, + "network":"193.127.193.0\/25", + "version":33843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.193.128", + "prefixLen":25, + "network":"193.127.193.128\/25", + "version":33842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.194.0", + "prefixLen":25, + "network":"193.127.194.0\/25", + "version":33841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.194.128", + "prefixLen":25, + "network":"193.127.194.128\/25", + "version":33840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.195.0", + "prefixLen":25, + "network":"193.127.195.0\/25", + "version":33839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.195.128", + "prefixLen":25, + "network":"193.127.195.128\/25", + "version":33838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.208.0", + "prefixLen":25, + "network":"193.127.208.0\/25", + "version":33837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.208.128", + "prefixLen":25, + "network":"193.127.208.128\/25", + "version":33836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.209.0", + "prefixLen":25, + "network":"193.127.209.0\/25", + "version":33835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.209.128", + "prefixLen":25, + "network":"193.127.209.128\/25", + "version":33834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.210.0", + "prefixLen":25, + "network":"193.127.210.0\/25", + "version":33833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.210.128", + "prefixLen":25, + "network":"193.127.210.128\/25", + "version":33832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.211.0", + "prefixLen":25, + "network":"193.127.211.0\/25", + "version":33831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.211.128", + "prefixLen":25, + "network":"193.127.211.128\/25", + "version":33830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.224.0", + "prefixLen":25, + "network":"193.127.224.0\/25", + "version":33829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.224.128", + "prefixLen":25, + "network":"193.127.224.128\/25", + "version":33828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.225.0", + "prefixLen":25, + "network":"193.127.225.0\/25", + "version":33827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.225.128", + "prefixLen":25, + "network":"193.127.225.128\/25", + "version":33826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.226.0", + "prefixLen":25, + "network":"193.127.226.0\/25", + "version":33825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.226.128", + "prefixLen":25, + "network":"193.127.226.128\/25", + "version":33824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.227.0", + "prefixLen":25, + "network":"193.127.227.0\/25", + "version":33823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.227.128", + "prefixLen":25, + "network":"193.127.227.128\/25", + "version":33822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.240.0", + "prefixLen":25, + "network":"193.127.240.0\/25", + "version":33821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.240.128", + "prefixLen":25, + "network":"193.127.240.128\/25", + "version":33820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.241.0", + "prefixLen":25, + "network":"193.127.241.0\/25", + "version":33819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.241.128", + "prefixLen":25, + "network":"193.127.241.128\/25", + "version":33818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.242.0", + "prefixLen":25, + "network":"193.127.242.0\/25", + "version":33817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.242.128", + "prefixLen":25, + "network":"193.127.242.128\/25", + "version":33816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.243.0", + "prefixLen":25, + "network":"193.127.243.0\/25", + "version":33815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.127.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.127.243.128", + "prefixLen":25, + "network":"193.127.243.128\/25", + "version":33814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64815 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.0.0", + "prefixLen":25, + "network":"193.128.0.0\/25", + "version":33941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.0.128", + "prefixLen":25, + "network":"193.128.0.128\/25", + "version":34068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.1.0", + "prefixLen":25, + "network":"193.128.1.0\/25", + "version":34067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.1.128", + "prefixLen":25, + "network":"193.128.1.128\/25", + "version":34066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.2.0", + "prefixLen":25, + "network":"193.128.2.0\/25", + "version":34065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.2.128", + "prefixLen":25, + "network":"193.128.2.128\/25", + "version":34064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.3.0", + "prefixLen":25, + "network":"193.128.3.0\/25", + "version":34063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.3.128", + "prefixLen":25, + "network":"193.128.3.128\/25", + "version":34062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.16.0", + "prefixLen":25, + "network":"193.128.16.0\/25", + "version":34061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.16.128", + "prefixLen":25, + "network":"193.128.16.128\/25", + "version":34060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.17.0", + "prefixLen":25, + "network":"193.128.17.0\/25", + "version":34059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.17.128", + "prefixLen":25, + "network":"193.128.17.128\/25", + "version":34058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.18.0", + "prefixLen":25, + "network":"193.128.18.0\/25", + "version":34057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.18.128", + "prefixLen":25, + "network":"193.128.18.128\/25", + "version":34056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.19.0", + "prefixLen":25, + "network":"193.128.19.0\/25", + "version":34055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.19.128", + "prefixLen":25, + "network":"193.128.19.128\/25", + "version":34054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.32.0", + "prefixLen":25, + "network":"193.128.32.0\/25", + "version":34053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.32.128", + "prefixLen":25, + "network":"193.128.32.128\/25", + "version":34052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.33.0", + "prefixLen":25, + "network":"193.128.33.0\/25", + "version":34051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.33.128", + "prefixLen":25, + "network":"193.128.33.128\/25", + "version":34050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.34.0", + "prefixLen":25, + "network":"193.128.34.0\/25", + "version":34049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.34.128", + "prefixLen":25, + "network":"193.128.34.128\/25", + "version":34048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.35.0", + "prefixLen":25, + "network":"193.128.35.0\/25", + "version":34047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.35.128", + "prefixLen":25, + "network":"193.128.35.128\/25", + "version":34046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.48.0", + "prefixLen":25, + "network":"193.128.48.0\/25", + "version":34045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.48.128", + "prefixLen":25, + "network":"193.128.48.128\/25", + "version":34044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.49.0", + "prefixLen":25, + "network":"193.128.49.0\/25", + "version":34043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.49.128", + "prefixLen":25, + "network":"193.128.49.128\/25", + "version":34042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.50.0", + "prefixLen":25, + "network":"193.128.50.0\/25", + "version":34041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.50.128", + "prefixLen":25, + "network":"193.128.50.128\/25", + "version":34040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.51.0", + "prefixLen":25, + "network":"193.128.51.0\/25", + "version":34039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.51.128", + "prefixLen":25, + "network":"193.128.51.128\/25", + "version":34038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.64.0", + "prefixLen":25, + "network":"193.128.64.0\/25", + "version":34037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.64.128", + "prefixLen":25, + "network":"193.128.64.128\/25", + "version":34036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.65.0", + "prefixLen":25, + "network":"193.128.65.0\/25", + "version":34035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.65.128", + "prefixLen":25, + "network":"193.128.65.128\/25", + "version":34034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.66.0", + "prefixLen":25, + "network":"193.128.66.0\/25", + "version":34033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.66.128", + "prefixLen":25, + "network":"193.128.66.128\/25", + "version":34032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.67.0", + "prefixLen":25, + "network":"193.128.67.0\/25", + "version":34031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.67.128", + "prefixLen":25, + "network":"193.128.67.128\/25", + "version":34030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.80.0", + "prefixLen":25, + "network":"193.128.80.0\/25", + "version":34029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.80.128", + "prefixLen":25, + "network":"193.128.80.128\/25", + "version":34028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.81.0", + "prefixLen":25, + "network":"193.128.81.0\/25", + "version":34027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.81.128", + "prefixLen":25, + "network":"193.128.81.128\/25", + "version":34026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.82.0", + "prefixLen":25, + "network":"193.128.82.0\/25", + "version":34025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.82.128", + "prefixLen":25, + "network":"193.128.82.128\/25", + "version":34024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.83.0", + "prefixLen":25, + "network":"193.128.83.0\/25", + "version":34023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.83.128", + "prefixLen":25, + "network":"193.128.83.128\/25", + "version":34022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.96.0", + "prefixLen":25, + "network":"193.128.96.0\/25", + "version":34021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.96.128", + "prefixLen":25, + "network":"193.128.96.128\/25", + "version":34020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.97.0", + "prefixLen":25, + "network":"193.128.97.0\/25", + "version":34019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.97.128", + "prefixLen":25, + "network":"193.128.97.128\/25", + "version":34018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.98.0", + "prefixLen":25, + "network":"193.128.98.0\/25", + "version":34017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.98.128", + "prefixLen":25, + "network":"193.128.98.128\/25", + "version":34016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.99.0", + "prefixLen":25, + "network":"193.128.99.0\/25", + "version":34015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.99.128", + "prefixLen":25, + "network":"193.128.99.128\/25", + "version":34014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.112.0", + "prefixLen":25, + "network":"193.128.112.0\/25", + "version":34013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.112.128", + "prefixLen":25, + "network":"193.128.112.128\/25", + "version":34012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.113.0", + "prefixLen":25, + "network":"193.128.113.0\/25", + "version":34011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.113.128", + "prefixLen":25, + "network":"193.128.113.128\/25", + "version":34010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.114.0", + "prefixLen":25, + "network":"193.128.114.0\/25", + "version":34009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.114.128", + "prefixLen":25, + "network":"193.128.114.128\/25", + "version":34008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.115.0", + "prefixLen":25, + "network":"193.128.115.0\/25", + "version":34007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.115.128", + "prefixLen":25, + "network":"193.128.115.128\/25", + "version":34006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.128.0", + "prefixLen":25, + "network":"193.128.128.0\/25", + "version":34005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.128.128", + "prefixLen":25, + "network":"193.128.128.128\/25", + "version":34004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.129.0", + "prefixLen":25, + "network":"193.128.129.0\/25", + "version":34003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.129.128", + "prefixLen":25, + "network":"193.128.129.128\/25", + "version":34002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.130.0", + "prefixLen":25, + "network":"193.128.130.0\/25", + "version":34001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.130.128", + "prefixLen":25, + "network":"193.128.130.128\/25", + "version":34000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.131.0", + "prefixLen":25, + "network":"193.128.131.0\/25", + "version":33999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.131.128", + "prefixLen":25, + "network":"193.128.131.128\/25", + "version":33998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.144.0", + "prefixLen":25, + "network":"193.128.144.0\/25", + "version":33997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.144.128", + "prefixLen":25, + "network":"193.128.144.128\/25", + "version":33996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.145.0", + "prefixLen":25, + "network":"193.128.145.0\/25", + "version":33995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.145.128", + "prefixLen":25, + "network":"193.128.145.128\/25", + "version":33994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.146.0", + "prefixLen":25, + "network":"193.128.146.0\/25", + "version":33993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.146.128", + "prefixLen":25, + "network":"193.128.146.128\/25", + "version":33992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.147.0", + "prefixLen":25, + "network":"193.128.147.0\/25", + "version":33991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.147.128", + "prefixLen":25, + "network":"193.128.147.128\/25", + "version":33990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.160.0", + "prefixLen":25, + "network":"193.128.160.0\/25", + "version":33989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.160.128", + "prefixLen":25, + "network":"193.128.160.128\/25", + "version":33988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.161.0", + "prefixLen":25, + "network":"193.128.161.0\/25", + "version":33987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.161.128", + "prefixLen":25, + "network":"193.128.161.128\/25", + "version":33986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.162.0", + "prefixLen":25, + "network":"193.128.162.0\/25", + "version":33985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.162.128", + "prefixLen":25, + "network":"193.128.162.128\/25", + "version":33984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.163.0", + "prefixLen":25, + "network":"193.128.163.0\/25", + "version":33983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.163.128", + "prefixLen":25, + "network":"193.128.163.128\/25", + "version":33982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.176.0", + "prefixLen":25, + "network":"193.128.176.0\/25", + "version":33981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.176.128", + "prefixLen":25, + "network":"193.128.176.128\/25", + "version":33980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.177.0", + "prefixLen":25, + "network":"193.128.177.0\/25", + "version":33979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.177.128", + "prefixLen":25, + "network":"193.128.177.128\/25", + "version":33978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.178.0", + "prefixLen":25, + "network":"193.128.178.0\/25", + "version":33977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.178.128", + "prefixLen":25, + "network":"193.128.178.128\/25", + "version":33976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.179.0", + "prefixLen":25, + "network":"193.128.179.0\/25", + "version":33975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.179.128", + "prefixLen":25, + "network":"193.128.179.128\/25", + "version":33974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.192.0", + "prefixLen":25, + "network":"193.128.192.0\/25", + "version":33973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.192.128", + "prefixLen":25, + "network":"193.128.192.128\/25", + "version":33972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.193.0", + "prefixLen":25, + "network":"193.128.193.0\/25", + "version":33971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.193.128", + "prefixLen":25, + "network":"193.128.193.128\/25", + "version":33970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.194.0", + "prefixLen":25, + "network":"193.128.194.0\/25", + "version":33969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.194.128", + "prefixLen":25, + "network":"193.128.194.128\/25", + "version":33968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.195.0", + "prefixLen":25, + "network":"193.128.195.0\/25", + "version":33967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.195.128", + "prefixLen":25, + "network":"193.128.195.128\/25", + "version":33966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.208.0", + "prefixLen":25, + "network":"193.128.208.0\/25", + "version":33965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.208.128", + "prefixLen":25, + "network":"193.128.208.128\/25", + "version":33964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.209.0", + "prefixLen":25, + "network":"193.128.209.0\/25", + "version":33963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.209.128", + "prefixLen":25, + "network":"193.128.209.128\/25", + "version":33962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.210.0", + "prefixLen":25, + "network":"193.128.210.0\/25", + "version":33961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.210.128", + "prefixLen":25, + "network":"193.128.210.128\/25", + "version":33960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.211.0", + "prefixLen":25, + "network":"193.128.211.0\/25", + "version":33959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.211.128", + "prefixLen":25, + "network":"193.128.211.128\/25", + "version":33958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.224.0", + "prefixLen":25, + "network":"193.128.224.0\/25", + "version":33957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.224.128", + "prefixLen":25, + "network":"193.128.224.128\/25", + "version":33956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.225.0", + "prefixLen":25, + "network":"193.128.225.0\/25", + "version":33955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.225.128", + "prefixLen":25, + "network":"193.128.225.128\/25", + "version":33954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.226.0", + "prefixLen":25, + "network":"193.128.226.0\/25", + "version":33953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.226.128", + "prefixLen":25, + "network":"193.128.226.128\/25", + "version":33952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.227.0", + "prefixLen":25, + "network":"193.128.227.0\/25", + "version":33951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.227.128", + "prefixLen":25, + "network":"193.128.227.128\/25", + "version":33950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.240.0", + "prefixLen":25, + "network":"193.128.240.0\/25", + "version":33949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.240.128", + "prefixLen":25, + "network":"193.128.240.128\/25", + "version":33948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.241.0", + "prefixLen":25, + "network":"193.128.241.0\/25", + "version":33947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.241.128", + "prefixLen":25, + "network":"193.128.241.128\/25", + "version":33946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.242.0", + "prefixLen":25, + "network":"193.128.242.0\/25", + "version":33945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.242.128", + "prefixLen":25, + "network":"193.128.242.128\/25", + "version":33944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.243.0", + "prefixLen":25, + "network":"193.128.243.0\/25", + "version":33943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.128.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.128.243.128", + "prefixLen":25, + "network":"193.128.243.128\/25", + "version":33942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64816 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.0.0", + "prefixLen":25, + "network":"193.129.0.0\/25", + "version":35349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.0.128", + "prefixLen":25, + "network":"193.129.0.128\/25", + "version":35476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.1.0", + "prefixLen":25, + "network":"193.129.1.0\/25", + "version":35475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.1.128", + "prefixLen":25, + "network":"193.129.1.128\/25", + "version":35474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.2.0", + "prefixLen":25, + "network":"193.129.2.0\/25", + "version":35473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.2.128", + "prefixLen":25, + "network":"193.129.2.128\/25", + "version":35472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.3.0", + "prefixLen":25, + "network":"193.129.3.0\/25", + "version":35471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.3.128", + "prefixLen":25, + "network":"193.129.3.128\/25", + "version":35470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.16.0", + "prefixLen":25, + "network":"193.129.16.0\/25", + "version":35469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.16.128", + "prefixLen":25, + "network":"193.129.16.128\/25", + "version":35468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.17.0", + "prefixLen":25, + "network":"193.129.17.0\/25", + "version":35467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.17.128", + "prefixLen":25, + "network":"193.129.17.128\/25", + "version":35466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.18.0", + "prefixLen":25, + "network":"193.129.18.0\/25", + "version":35465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.18.128", + "prefixLen":25, + "network":"193.129.18.128\/25", + "version":35464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.19.0", + "prefixLen":25, + "network":"193.129.19.0\/25", + "version":35463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.19.128", + "prefixLen":25, + "network":"193.129.19.128\/25", + "version":35462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.32.0", + "prefixLen":25, + "network":"193.129.32.0\/25", + "version":35461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.32.128", + "prefixLen":25, + "network":"193.129.32.128\/25", + "version":35460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.33.0", + "prefixLen":25, + "network":"193.129.33.0\/25", + "version":35459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.33.128", + "prefixLen":25, + "network":"193.129.33.128\/25", + "version":35458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.34.0", + "prefixLen":25, + "network":"193.129.34.0\/25", + "version":35457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.34.128", + "prefixLen":25, + "network":"193.129.34.128\/25", + "version":35456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.35.0", + "prefixLen":25, + "network":"193.129.35.0\/25", + "version":35455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.35.128", + "prefixLen":25, + "network":"193.129.35.128\/25", + "version":35454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.48.0", + "prefixLen":25, + "network":"193.129.48.0\/25", + "version":35453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.48.128", + "prefixLen":25, + "network":"193.129.48.128\/25", + "version":35452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.49.0", + "prefixLen":25, + "network":"193.129.49.0\/25", + "version":35451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.49.128", + "prefixLen":25, + "network":"193.129.49.128\/25", + "version":35450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.50.0", + "prefixLen":25, + "network":"193.129.50.0\/25", + "version":35449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.50.128", + "prefixLen":25, + "network":"193.129.50.128\/25", + "version":35448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.51.0", + "prefixLen":25, + "network":"193.129.51.0\/25", + "version":35447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.51.128", + "prefixLen":25, + "network":"193.129.51.128\/25", + "version":35446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.64.0", + "prefixLen":25, + "network":"193.129.64.0\/25", + "version":35445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.64.128", + "prefixLen":25, + "network":"193.129.64.128\/25", + "version":35444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.65.0", + "prefixLen":25, + "network":"193.129.65.0\/25", + "version":35443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.65.128", + "prefixLen":25, + "network":"193.129.65.128\/25", + "version":35442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.66.0", + "prefixLen":25, + "network":"193.129.66.0\/25", + "version":35441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.66.128", + "prefixLen":25, + "network":"193.129.66.128\/25", + "version":35440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.67.0", + "prefixLen":25, + "network":"193.129.67.0\/25", + "version":35439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.67.128", + "prefixLen":25, + "network":"193.129.67.128\/25", + "version":35438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.80.0", + "prefixLen":25, + "network":"193.129.80.0\/25", + "version":35437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.80.128", + "prefixLen":25, + "network":"193.129.80.128\/25", + "version":35436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.81.0", + "prefixLen":25, + "network":"193.129.81.0\/25", + "version":35435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.81.128", + "prefixLen":25, + "network":"193.129.81.128\/25", + "version":35434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.82.0", + "prefixLen":25, + "network":"193.129.82.0\/25", + "version":35433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.82.128", + "prefixLen":25, + "network":"193.129.82.128\/25", + "version":35432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.83.0", + "prefixLen":25, + "network":"193.129.83.0\/25", + "version":35431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.83.128", + "prefixLen":25, + "network":"193.129.83.128\/25", + "version":35430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.96.0", + "prefixLen":25, + "network":"193.129.96.0\/25", + "version":35429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.96.128", + "prefixLen":25, + "network":"193.129.96.128\/25", + "version":35428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.97.0", + "prefixLen":25, + "network":"193.129.97.0\/25", + "version":35427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.97.128", + "prefixLen":25, + "network":"193.129.97.128\/25", + "version":35426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.98.0", + "prefixLen":25, + "network":"193.129.98.0\/25", + "version":35425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.98.128", + "prefixLen":25, + "network":"193.129.98.128\/25", + "version":35424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.99.0", + "prefixLen":25, + "network":"193.129.99.0\/25", + "version":35423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.99.128", + "prefixLen":25, + "network":"193.129.99.128\/25", + "version":35422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.112.0", + "prefixLen":25, + "network":"193.129.112.0\/25", + "version":35421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.112.128", + "prefixLen":25, + "network":"193.129.112.128\/25", + "version":35420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.113.0", + "prefixLen":25, + "network":"193.129.113.0\/25", + "version":35419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.113.128", + "prefixLen":25, + "network":"193.129.113.128\/25", + "version":35418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.114.0", + "prefixLen":25, + "network":"193.129.114.0\/25", + "version":35417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.114.128", + "prefixLen":25, + "network":"193.129.114.128\/25", + "version":35416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.115.0", + "prefixLen":25, + "network":"193.129.115.0\/25", + "version":35415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.115.128", + "prefixLen":25, + "network":"193.129.115.128\/25", + "version":35414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.128.0", + "prefixLen":25, + "network":"193.129.128.0\/25", + "version":35413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.128.128", + "prefixLen":25, + "network":"193.129.128.128\/25", + "version":35412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.129.0", + "prefixLen":25, + "network":"193.129.129.0\/25", + "version":35411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.129.128", + "prefixLen":25, + "network":"193.129.129.128\/25", + "version":35410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.130.0", + "prefixLen":25, + "network":"193.129.130.0\/25", + "version":35409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.130.128", + "prefixLen":25, + "network":"193.129.130.128\/25", + "version":35408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.131.0", + "prefixLen":25, + "network":"193.129.131.0\/25", + "version":35407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.131.128", + "prefixLen":25, + "network":"193.129.131.128\/25", + "version":35406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.144.0", + "prefixLen":25, + "network":"193.129.144.0\/25", + "version":35405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.144.128", + "prefixLen":25, + "network":"193.129.144.128\/25", + "version":35404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.145.0", + "prefixLen":25, + "network":"193.129.145.0\/25", + "version":35403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.145.128", + "prefixLen":25, + "network":"193.129.145.128\/25", + "version":35402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.146.0", + "prefixLen":25, + "network":"193.129.146.0\/25", + "version":35401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.146.128", + "prefixLen":25, + "network":"193.129.146.128\/25", + "version":35400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.147.0", + "prefixLen":25, + "network":"193.129.147.0\/25", + "version":35399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.147.128", + "prefixLen":25, + "network":"193.129.147.128\/25", + "version":35398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.160.0", + "prefixLen":25, + "network":"193.129.160.0\/25", + "version":35397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.160.128", + "prefixLen":25, + "network":"193.129.160.128\/25", + "version":35396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.161.0", + "prefixLen":25, + "network":"193.129.161.0\/25", + "version":35395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.161.128", + "prefixLen":25, + "network":"193.129.161.128\/25", + "version":35394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.162.0", + "prefixLen":25, + "network":"193.129.162.0\/25", + "version":35393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.162.128", + "prefixLen":25, + "network":"193.129.162.128\/25", + "version":35392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.163.0", + "prefixLen":25, + "network":"193.129.163.0\/25", + "version":35391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.163.128", + "prefixLen":25, + "network":"193.129.163.128\/25", + "version":35390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.176.0", + "prefixLen":25, + "network":"193.129.176.0\/25", + "version":35389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.176.128", + "prefixLen":25, + "network":"193.129.176.128\/25", + "version":35388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.177.0", + "prefixLen":25, + "network":"193.129.177.0\/25", + "version":35387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.177.128", + "prefixLen":25, + "network":"193.129.177.128\/25", + "version":35386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.178.0", + "prefixLen":25, + "network":"193.129.178.0\/25", + "version":35385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.178.128", + "prefixLen":25, + "network":"193.129.178.128\/25", + "version":35384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.179.0", + "prefixLen":25, + "network":"193.129.179.0\/25", + "version":35383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.179.128", + "prefixLen":25, + "network":"193.129.179.128\/25", + "version":35382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.192.0", + "prefixLen":25, + "network":"193.129.192.0\/25", + "version":35381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.192.128", + "prefixLen":25, + "network":"193.129.192.128\/25", + "version":35380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.193.0", + "prefixLen":25, + "network":"193.129.193.0\/25", + "version":35379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.193.128", + "prefixLen":25, + "network":"193.129.193.128\/25", + "version":35378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.194.0", + "prefixLen":25, + "network":"193.129.194.0\/25", + "version":35377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.194.128", + "prefixLen":25, + "network":"193.129.194.128\/25", + "version":35376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.195.0", + "prefixLen":25, + "network":"193.129.195.0\/25", + "version":35375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.195.128", + "prefixLen":25, + "network":"193.129.195.128\/25", + "version":35374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.208.0", + "prefixLen":25, + "network":"193.129.208.0\/25", + "version":35373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.208.128", + "prefixLen":25, + "network":"193.129.208.128\/25", + "version":35372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.209.0", + "prefixLen":25, + "network":"193.129.209.0\/25", + "version":35371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.209.128", + "prefixLen":25, + "network":"193.129.209.128\/25", + "version":35370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.210.0", + "prefixLen":25, + "network":"193.129.210.0\/25", + "version":35369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.210.128", + "prefixLen":25, + "network":"193.129.210.128\/25", + "version":35368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.211.0", + "prefixLen":25, + "network":"193.129.211.0\/25", + "version":35367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.211.128", + "prefixLen":25, + "network":"193.129.211.128\/25", + "version":35366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.224.0", + "prefixLen":25, + "network":"193.129.224.0\/25", + "version":35365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.224.128", + "prefixLen":25, + "network":"193.129.224.128\/25", + "version":35364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.225.0", + "prefixLen":25, + "network":"193.129.225.0\/25", + "version":35363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.225.128", + "prefixLen":25, + "network":"193.129.225.128\/25", + "version":35362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.226.0", + "prefixLen":25, + "network":"193.129.226.0\/25", + "version":35361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.226.128", + "prefixLen":25, + "network":"193.129.226.128\/25", + "version":35360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.227.0", + "prefixLen":25, + "network":"193.129.227.0\/25", + "version":35359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.227.128", + "prefixLen":25, + "network":"193.129.227.128\/25", + "version":35358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.240.0", + "prefixLen":25, + "network":"193.129.240.0\/25", + "version":35357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.240.128", + "prefixLen":25, + "network":"193.129.240.128\/25", + "version":35356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.241.0", + "prefixLen":25, + "network":"193.129.241.0\/25", + "version":35355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.241.128", + "prefixLen":25, + "network":"193.129.241.128\/25", + "version":35354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.242.0", + "prefixLen":25, + "network":"193.129.242.0\/25", + "version":35353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.242.128", + "prefixLen":25, + "network":"193.129.242.128\/25", + "version":35352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.243.0", + "prefixLen":25, + "network":"193.129.243.0\/25", + "version":35351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.129.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.129.243.128", + "prefixLen":25, + "network":"193.129.243.128\/25", + "version":35350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64817 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.0.0", + "prefixLen":25, + "network":"193.130.0.0\/25", + "version":35477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.0.128", + "prefixLen":25, + "network":"193.130.0.128\/25", + "version":35604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.1.0", + "prefixLen":25, + "network":"193.130.1.0\/25", + "version":35603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.1.128", + "prefixLen":25, + "network":"193.130.1.128\/25", + "version":35602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.2.0", + "prefixLen":25, + "network":"193.130.2.0\/25", + "version":35601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.2.128", + "prefixLen":25, + "network":"193.130.2.128\/25", + "version":35600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.3.0", + "prefixLen":25, + "network":"193.130.3.0\/25", + "version":35599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.3.128", + "prefixLen":25, + "network":"193.130.3.128\/25", + "version":35598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.16.0", + "prefixLen":25, + "network":"193.130.16.0\/25", + "version":35597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.16.128", + "prefixLen":25, + "network":"193.130.16.128\/25", + "version":35596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.17.0", + "prefixLen":25, + "network":"193.130.17.0\/25", + "version":35595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.17.128", + "prefixLen":25, + "network":"193.130.17.128\/25", + "version":35594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.18.0", + "prefixLen":25, + "network":"193.130.18.0\/25", + "version":35593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.18.128", + "prefixLen":25, + "network":"193.130.18.128\/25", + "version":35592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.19.0", + "prefixLen":25, + "network":"193.130.19.0\/25", + "version":35591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.19.128", + "prefixLen":25, + "network":"193.130.19.128\/25", + "version":35590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.32.0", + "prefixLen":25, + "network":"193.130.32.0\/25", + "version":35589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.32.128", + "prefixLen":25, + "network":"193.130.32.128\/25", + "version":35588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.33.0", + "prefixLen":25, + "network":"193.130.33.0\/25", + "version":35587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.33.128", + "prefixLen":25, + "network":"193.130.33.128\/25", + "version":35586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.34.0", + "prefixLen":25, + "network":"193.130.34.0\/25", + "version":35585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.34.128", + "prefixLen":25, + "network":"193.130.34.128\/25", + "version":35584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.35.0", + "prefixLen":25, + "network":"193.130.35.0\/25", + "version":35583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.35.128", + "prefixLen":25, + "network":"193.130.35.128\/25", + "version":35582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.48.0", + "prefixLen":25, + "network":"193.130.48.0\/25", + "version":35581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.48.128", + "prefixLen":25, + "network":"193.130.48.128\/25", + "version":35580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.49.0", + "prefixLen":25, + "network":"193.130.49.0\/25", + "version":35579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.49.128", + "prefixLen":25, + "network":"193.130.49.128\/25", + "version":35578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.50.0", + "prefixLen":25, + "network":"193.130.50.0\/25", + "version":35577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.50.128", + "prefixLen":25, + "network":"193.130.50.128\/25", + "version":35576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.51.0", + "prefixLen":25, + "network":"193.130.51.0\/25", + "version":35575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.51.128", + "prefixLen":25, + "network":"193.130.51.128\/25", + "version":35574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.64.0", + "prefixLen":25, + "network":"193.130.64.0\/25", + "version":35573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.64.128", + "prefixLen":25, + "network":"193.130.64.128\/25", + "version":35572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.65.0", + "prefixLen":25, + "network":"193.130.65.0\/25", + "version":35571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.65.128", + "prefixLen":25, + "network":"193.130.65.128\/25", + "version":35570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.66.0", + "prefixLen":25, + "network":"193.130.66.0\/25", + "version":35569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.66.128", + "prefixLen":25, + "network":"193.130.66.128\/25", + "version":35568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.67.0", + "prefixLen":25, + "network":"193.130.67.0\/25", + "version":35567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.67.128", + "prefixLen":25, + "network":"193.130.67.128\/25", + "version":35566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.80.0", + "prefixLen":25, + "network":"193.130.80.0\/25", + "version":35565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.80.128", + "prefixLen":25, + "network":"193.130.80.128\/25", + "version":35564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.81.0", + "prefixLen":25, + "network":"193.130.81.0\/25", + "version":35563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.81.128", + "prefixLen":25, + "network":"193.130.81.128\/25", + "version":35562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.82.0", + "prefixLen":25, + "network":"193.130.82.0\/25", + "version":35561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.82.128", + "prefixLen":25, + "network":"193.130.82.128\/25", + "version":35560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.83.0", + "prefixLen":25, + "network":"193.130.83.0\/25", + "version":35559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.83.128", + "prefixLen":25, + "network":"193.130.83.128\/25", + "version":35558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.96.0", + "prefixLen":25, + "network":"193.130.96.0\/25", + "version":35557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.96.128", + "prefixLen":25, + "network":"193.130.96.128\/25", + "version":35556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.97.0", + "prefixLen":25, + "network":"193.130.97.0\/25", + "version":35555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.97.128", + "prefixLen":25, + "network":"193.130.97.128\/25", + "version":35554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.98.0", + "prefixLen":25, + "network":"193.130.98.0\/25", + "version":35553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.98.128", + "prefixLen":25, + "network":"193.130.98.128\/25", + "version":35552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.99.0", + "prefixLen":25, + "network":"193.130.99.0\/25", + "version":35551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.99.128", + "prefixLen":25, + "network":"193.130.99.128\/25", + "version":35550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.112.0", + "prefixLen":25, + "network":"193.130.112.0\/25", + "version":35549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.112.128", + "prefixLen":25, + "network":"193.130.112.128\/25", + "version":35548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.113.0", + "prefixLen":25, + "network":"193.130.113.0\/25", + "version":35547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.113.128", + "prefixLen":25, + "network":"193.130.113.128\/25", + "version":35546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.114.0", + "prefixLen":25, + "network":"193.130.114.0\/25", + "version":35545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.114.128", + "prefixLen":25, + "network":"193.130.114.128\/25", + "version":35544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.115.0", + "prefixLen":25, + "network":"193.130.115.0\/25", + "version":35543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.115.128", + "prefixLen":25, + "network":"193.130.115.128\/25", + "version":35542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.128.0", + "prefixLen":25, + "network":"193.130.128.0\/25", + "version":35541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.128.128", + "prefixLen":25, + "network":"193.130.128.128\/25", + "version":35540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.129.0", + "prefixLen":25, + "network":"193.130.129.0\/25", + "version":35539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.129.128", + "prefixLen":25, + "network":"193.130.129.128\/25", + "version":35538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.130.0", + "prefixLen":25, + "network":"193.130.130.0\/25", + "version":35537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.130.128", + "prefixLen":25, + "network":"193.130.130.128\/25", + "version":35536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.131.0", + "prefixLen":25, + "network":"193.130.131.0\/25", + "version":35535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.131.128", + "prefixLen":25, + "network":"193.130.131.128\/25", + "version":35534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.144.0", + "prefixLen":25, + "network":"193.130.144.0\/25", + "version":35533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.144.128", + "prefixLen":25, + "network":"193.130.144.128\/25", + "version":35532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.145.0", + "prefixLen":25, + "network":"193.130.145.0\/25", + "version":35531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.145.128", + "prefixLen":25, + "network":"193.130.145.128\/25", + "version":35530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.146.0", + "prefixLen":25, + "network":"193.130.146.0\/25", + "version":35529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.146.128", + "prefixLen":25, + "network":"193.130.146.128\/25", + "version":35528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.147.0", + "prefixLen":25, + "network":"193.130.147.0\/25", + "version":35527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.147.128", + "prefixLen":25, + "network":"193.130.147.128\/25", + "version":35526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.160.0", + "prefixLen":25, + "network":"193.130.160.0\/25", + "version":35525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.160.128", + "prefixLen":25, + "network":"193.130.160.128\/25", + "version":35524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.161.0", + "prefixLen":25, + "network":"193.130.161.0\/25", + "version":35523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.161.128", + "prefixLen":25, + "network":"193.130.161.128\/25", + "version":35522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.162.0", + "prefixLen":25, + "network":"193.130.162.0\/25", + "version":35521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.162.128", + "prefixLen":25, + "network":"193.130.162.128\/25", + "version":35520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.163.0", + "prefixLen":25, + "network":"193.130.163.0\/25", + "version":35519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.163.128", + "prefixLen":25, + "network":"193.130.163.128\/25", + "version":35518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.176.0", + "prefixLen":25, + "network":"193.130.176.0\/25", + "version":35517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.176.128", + "prefixLen":25, + "network":"193.130.176.128\/25", + "version":35516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.177.0", + "prefixLen":25, + "network":"193.130.177.0\/25", + "version":35515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.177.128", + "prefixLen":25, + "network":"193.130.177.128\/25", + "version":35514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.178.0", + "prefixLen":25, + "network":"193.130.178.0\/25", + "version":35513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.178.128", + "prefixLen":25, + "network":"193.130.178.128\/25", + "version":35512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.179.0", + "prefixLen":25, + "network":"193.130.179.0\/25", + "version":35511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.179.128", + "prefixLen":25, + "network":"193.130.179.128\/25", + "version":35510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.192.0", + "prefixLen":25, + "network":"193.130.192.0\/25", + "version":35509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.192.128", + "prefixLen":25, + "network":"193.130.192.128\/25", + "version":35508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.193.0", + "prefixLen":25, + "network":"193.130.193.0\/25", + "version":35507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.193.128", + "prefixLen":25, + "network":"193.130.193.128\/25", + "version":35506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.194.0", + "prefixLen":25, + "network":"193.130.194.0\/25", + "version":35505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.194.128", + "prefixLen":25, + "network":"193.130.194.128\/25", + "version":35504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.195.0", + "prefixLen":25, + "network":"193.130.195.0\/25", + "version":35503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.195.128", + "prefixLen":25, + "network":"193.130.195.128\/25", + "version":35502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.208.0", + "prefixLen":25, + "network":"193.130.208.0\/25", + "version":35501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.208.128", + "prefixLen":25, + "network":"193.130.208.128\/25", + "version":35500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.209.0", + "prefixLen":25, + "network":"193.130.209.0\/25", + "version":35499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.209.128", + "prefixLen":25, + "network":"193.130.209.128\/25", + "version":35498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.210.0", + "prefixLen":25, + "network":"193.130.210.0\/25", + "version":35497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.210.128", + "prefixLen":25, + "network":"193.130.210.128\/25", + "version":35496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.211.0", + "prefixLen":25, + "network":"193.130.211.0\/25", + "version":35495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.211.128", + "prefixLen":25, + "network":"193.130.211.128\/25", + "version":35494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.224.0", + "prefixLen":25, + "network":"193.130.224.0\/25", + "version":35493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.224.128", + "prefixLen":25, + "network":"193.130.224.128\/25", + "version":35492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.225.0", + "prefixLen":25, + "network":"193.130.225.0\/25", + "version":35491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.225.128", + "prefixLen":25, + "network":"193.130.225.128\/25", + "version":35490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.226.0", + "prefixLen":25, + "network":"193.130.226.0\/25", + "version":35489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.226.128", + "prefixLen":25, + "network":"193.130.226.128\/25", + "version":35488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.227.0", + "prefixLen":25, + "network":"193.130.227.0\/25", + "version":35487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.227.128", + "prefixLen":25, + "network":"193.130.227.128\/25", + "version":35486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.240.0", + "prefixLen":25, + "network":"193.130.240.0\/25", + "version":35485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.240.128", + "prefixLen":25, + "network":"193.130.240.128\/25", + "version":35484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.241.0", + "prefixLen":25, + "network":"193.130.241.0\/25", + "version":35483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.241.128", + "prefixLen":25, + "network":"193.130.241.128\/25", + "version":35482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.242.0", + "prefixLen":25, + "network":"193.130.242.0\/25", + "version":35481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.242.128", + "prefixLen":25, + "network":"193.130.242.128\/25", + "version":35480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.243.0", + "prefixLen":25, + "network":"193.130.243.0\/25", + "version":35479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.130.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.130.243.128", + "prefixLen":25, + "network":"193.130.243.128\/25", + "version":35478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64818 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.0.0", + "prefixLen":25, + "network":"193.131.0.0\/25", + "version":35605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.0.128", + "prefixLen":25, + "network":"193.131.0.128\/25", + "version":35732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.1.0", + "prefixLen":25, + "network":"193.131.1.0\/25", + "version":35731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.1.128", + "prefixLen":25, + "network":"193.131.1.128\/25", + "version":35730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.2.0", + "prefixLen":25, + "network":"193.131.2.0\/25", + "version":35729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.2.128", + "prefixLen":25, + "network":"193.131.2.128\/25", + "version":35728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.3.0", + "prefixLen":25, + "network":"193.131.3.0\/25", + "version":35727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.3.128", + "prefixLen":25, + "network":"193.131.3.128\/25", + "version":35726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.16.0", + "prefixLen":25, + "network":"193.131.16.0\/25", + "version":35725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.16.128", + "prefixLen":25, + "network":"193.131.16.128\/25", + "version":35724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.17.0", + "prefixLen":25, + "network":"193.131.17.0\/25", + "version":35723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.17.128", + "prefixLen":25, + "network":"193.131.17.128\/25", + "version":35722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.18.0", + "prefixLen":25, + "network":"193.131.18.0\/25", + "version":35721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.18.128", + "prefixLen":25, + "network":"193.131.18.128\/25", + "version":35720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.19.0", + "prefixLen":25, + "network":"193.131.19.0\/25", + "version":35719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.19.128", + "prefixLen":25, + "network":"193.131.19.128\/25", + "version":35718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.32.0", + "prefixLen":25, + "network":"193.131.32.0\/25", + "version":35717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.32.128", + "prefixLen":25, + "network":"193.131.32.128\/25", + "version":35716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.33.0", + "prefixLen":25, + "network":"193.131.33.0\/25", + "version":35715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.33.128", + "prefixLen":25, + "network":"193.131.33.128\/25", + "version":35714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.34.0", + "prefixLen":25, + "network":"193.131.34.0\/25", + "version":35713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.34.128", + "prefixLen":25, + "network":"193.131.34.128\/25", + "version":35712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.35.0", + "prefixLen":25, + "network":"193.131.35.0\/25", + "version":35711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.35.128", + "prefixLen":25, + "network":"193.131.35.128\/25", + "version":35710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.48.0", + "prefixLen":25, + "network":"193.131.48.0\/25", + "version":35709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.48.128", + "prefixLen":25, + "network":"193.131.48.128\/25", + "version":35708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.49.0", + "prefixLen":25, + "network":"193.131.49.0\/25", + "version":35707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.49.128", + "prefixLen":25, + "network":"193.131.49.128\/25", + "version":35706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.50.0", + "prefixLen":25, + "network":"193.131.50.0\/25", + "version":35705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.50.128", + "prefixLen":25, + "network":"193.131.50.128\/25", + "version":35704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.51.0", + "prefixLen":25, + "network":"193.131.51.0\/25", + "version":35703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.51.128", + "prefixLen":25, + "network":"193.131.51.128\/25", + "version":35702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.64.0", + "prefixLen":25, + "network":"193.131.64.0\/25", + "version":35701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.64.128", + "prefixLen":25, + "network":"193.131.64.128\/25", + "version":35700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.65.0", + "prefixLen":25, + "network":"193.131.65.0\/25", + "version":35699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.65.128", + "prefixLen":25, + "network":"193.131.65.128\/25", + "version":35698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.66.0", + "prefixLen":25, + "network":"193.131.66.0\/25", + "version":35697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.66.128", + "prefixLen":25, + "network":"193.131.66.128\/25", + "version":35696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.67.0", + "prefixLen":25, + "network":"193.131.67.0\/25", + "version":35695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.67.128", + "prefixLen":25, + "network":"193.131.67.128\/25", + "version":35694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.80.0", + "prefixLen":25, + "network":"193.131.80.0\/25", + "version":35693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.80.128", + "prefixLen":25, + "network":"193.131.80.128\/25", + "version":35692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.81.0", + "prefixLen":25, + "network":"193.131.81.0\/25", + "version":35691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.81.128", + "prefixLen":25, + "network":"193.131.81.128\/25", + "version":35690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.82.0", + "prefixLen":25, + "network":"193.131.82.0\/25", + "version":35689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.82.128", + "prefixLen":25, + "network":"193.131.82.128\/25", + "version":35688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.83.0", + "prefixLen":25, + "network":"193.131.83.0\/25", + "version":35687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.83.128", + "prefixLen":25, + "network":"193.131.83.128\/25", + "version":35686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.96.0", + "prefixLen":25, + "network":"193.131.96.0\/25", + "version":35685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.96.128", + "prefixLen":25, + "network":"193.131.96.128\/25", + "version":35684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.97.0", + "prefixLen":25, + "network":"193.131.97.0\/25", + "version":35683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.97.128", + "prefixLen":25, + "network":"193.131.97.128\/25", + "version":35682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.98.0", + "prefixLen":25, + "network":"193.131.98.0\/25", + "version":35681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.98.128", + "prefixLen":25, + "network":"193.131.98.128\/25", + "version":35680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.99.0", + "prefixLen":25, + "network":"193.131.99.0\/25", + "version":35679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.99.128", + "prefixLen":25, + "network":"193.131.99.128\/25", + "version":35678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.112.0", + "prefixLen":25, + "network":"193.131.112.0\/25", + "version":35677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.112.128", + "prefixLen":25, + "network":"193.131.112.128\/25", + "version":35676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.113.0", + "prefixLen":25, + "network":"193.131.113.0\/25", + "version":35675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.113.128", + "prefixLen":25, + "network":"193.131.113.128\/25", + "version":35674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.114.0", + "prefixLen":25, + "network":"193.131.114.0\/25", + "version":35673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.114.128", + "prefixLen":25, + "network":"193.131.114.128\/25", + "version":35672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.115.0", + "prefixLen":25, + "network":"193.131.115.0\/25", + "version":35671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.115.128", + "prefixLen":25, + "network":"193.131.115.128\/25", + "version":35670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.128.0", + "prefixLen":25, + "network":"193.131.128.0\/25", + "version":35669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.128.128", + "prefixLen":25, + "network":"193.131.128.128\/25", + "version":35668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.129.0", + "prefixLen":25, + "network":"193.131.129.0\/25", + "version":35667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.129.128", + "prefixLen":25, + "network":"193.131.129.128\/25", + "version":35666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.130.0", + "prefixLen":25, + "network":"193.131.130.0\/25", + "version":35665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.130.128", + "prefixLen":25, + "network":"193.131.130.128\/25", + "version":35664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.131.0", + "prefixLen":25, + "network":"193.131.131.0\/25", + "version":35663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.131.128", + "prefixLen":25, + "network":"193.131.131.128\/25", + "version":35662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.144.0", + "prefixLen":25, + "network":"193.131.144.0\/25", + "version":35661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.144.128", + "prefixLen":25, + "network":"193.131.144.128\/25", + "version":35660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.145.0", + "prefixLen":25, + "network":"193.131.145.0\/25", + "version":35659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.145.128", + "prefixLen":25, + "network":"193.131.145.128\/25", + "version":35658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.146.0", + "prefixLen":25, + "network":"193.131.146.0\/25", + "version":35657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.146.128", + "prefixLen":25, + "network":"193.131.146.128\/25", + "version":35656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.147.0", + "prefixLen":25, + "network":"193.131.147.0\/25", + "version":35655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.147.128", + "prefixLen":25, + "network":"193.131.147.128\/25", + "version":35654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.160.0", + "prefixLen":25, + "network":"193.131.160.0\/25", + "version":35653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.160.128", + "prefixLen":25, + "network":"193.131.160.128\/25", + "version":35652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.161.0", + "prefixLen":25, + "network":"193.131.161.0\/25", + "version":35651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.161.128", + "prefixLen":25, + "network":"193.131.161.128\/25", + "version":35650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.162.0", + "prefixLen":25, + "network":"193.131.162.0\/25", + "version":35649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.162.128", + "prefixLen":25, + "network":"193.131.162.128\/25", + "version":35648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.163.0", + "prefixLen":25, + "network":"193.131.163.0\/25", + "version":35647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.163.128", + "prefixLen":25, + "network":"193.131.163.128\/25", + "version":35646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.176.0", + "prefixLen":25, + "network":"193.131.176.0\/25", + "version":35645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.176.128", + "prefixLen":25, + "network":"193.131.176.128\/25", + "version":35644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.177.0", + "prefixLen":25, + "network":"193.131.177.0\/25", + "version":35643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.177.128", + "prefixLen":25, + "network":"193.131.177.128\/25", + "version":35642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.178.0", + "prefixLen":25, + "network":"193.131.178.0\/25", + "version":35641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.178.128", + "prefixLen":25, + "network":"193.131.178.128\/25", + "version":35640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.179.0", + "prefixLen":25, + "network":"193.131.179.0\/25", + "version":35639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.179.128", + "prefixLen":25, + "network":"193.131.179.128\/25", + "version":35638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.192.0", + "prefixLen":25, + "network":"193.131.192.0\/25", + "version":35637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.192.128", + "prefixLen":25, + "network":"193.131.192.128\/25", + "version":35636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.193.0", + "prefixLen":25, + "network":"193.131.193.0\/25", + "version":35635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.193.128", + "prefixLen":25, + "network":"193.131.193.128\/25", + "version":35634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.194.0", + "prefixLen":25, + "network":"193.131.194.0\/25", + "version":35633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.194.128", + "prefixLen":25, + "network":"193.131.194.128\/25", + "version":35632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.195.0", + "prefixLen":25, + "network":"193.131.195.0\/25", + "version":35631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.195.128", + "prefixLen":25, + "network":"193.131.195.128\/25", + "version":35630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.208.0", + "prefixLen":25, + "network":"193.131.208.0\/25", + "version":35629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.208.128", + "prefixLen":25, + "network":"193.131.208.128\/25", + "version":35628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.209.0", + "prefixLen":25, + "network":"193.131.209.0\/25", + "version":35627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.209.128", + "prefixLen":25, + "network":"193.131.209.128\/25", + "version":35626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.210.0", + "prefixLen":25, + "network":"193.131.210.0\/25", + "version":35625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.210.128", + "prefixLen":25, + "network":"193.131.210.128\/25", + "version":35624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.211.0", + "prefixLen":25, + "network":"193.131.211.0\/25", + "version":35623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.211.128", + "prefixLen":25, + "network":"193.131.211.128\/25", + "version":35622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.224.0", + "prefixLen":25, + "network":"193.131.224.0\/25", + "version":35621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.224.128", + "prefixLen":25, + "network":"193.131.224.128\/25", + "version":35620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.225.0", + "prefixLen":25, + "network":"193.131.225.0\/25", + "version":35619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.225.128", + "prefixLen":25, + "network":"193.131.225.128\/25", + "version":35618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.226.0", + "prefixLen":25, + "network":"193.131.226.0\/25", + "version":35617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.226.128", + "prefixLen":25, + "network":"193.131.226.128\/25", + "version":35616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.227.0", + "prefixLen":25, + "network":"193.131.227.0\/25", + "version":35615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.227.128", + "prefixLen":25, + "network":"193.131.227.128\/25", + "version":35614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.240.0", + "prefixLen":25, + "network":"193.131.240.0\/25", + "version":35613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.240.128", + "prefixLen":25, + "network":"193.131.240.128\/25", + "version":35612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.241.0", + "prefixLen":25, + "network":"193.131.241.0\/25", + "version":35611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.241.128", + "prefixLen":25, + "network":"193.131.241.128\/25", + "version":35610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.242.0", + "prefixLen":25, + "network":"193.131.242.0\/25", + "version":35609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.242.128", + "prefixLen":25, + "network":"193.131.242.128\/25", + "version":35608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.243.0", + "prefixLen":25, + "network":"193.131.243.0\/25", + "version":35607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.131.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.131.243.128", + "prefixLen":25, + "network":"193.131.243.128\/25", + "version":35606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64819 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.0.0", + "prefixLen":25, + "network":"193.132.0.0\/25", + "version":35733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.0.128", + "prefixLen":25, + "network":"193.132.0.128\/25", + "version":35860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.1.0", + "prefixLen":25, + "network":"193.132.1.0\/25", + "version":35859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.1.128", + "prefixLen":25, + "network":"193.132.1.128\/25", + "version":35858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.2.0", + "prefixLen":25, + "network":"193.132.2.0\/25", + "version":35857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.2.128", + "prefixLen":25, + "network":"193.132.2.128\/25", + "version":35856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.3.0", + "prefixLen":25, + "network":"193.132.3.0\/25", + "version":35855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.3.128", + "prefixLen":25, + "network":"193.132.3.128\/25", + "version":35854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.16.0", + "prefixLen":25, + "network":"193.132.16.0\/25", + "version":35853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.16.128", + "prefixLen":25, + "network":"193.132.16.128\/25", + "version":35852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.17.0", + "prefixLen":25, + "network":"193.132.17.0\/25", + "version":35851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.17.128", + "prefixLen":25, + "network":"193.132.17.128\/25", + "version":35850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.18.0", + "prefixLen":25, + "network":"193.132.18.0\/25", + "version":35849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.18.128", + "prefixLen":25, + "network":"193.132.18.128\/25", + "version":35848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.19.0", + "prefixLen":25, + "network":"193.132.19.0\/25", + "version":35847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.19.128", + "prefixLen":25, + "network":"193.132.19.128\/25", + "version":35846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.32.0", + "prefixLen":25, + "network":"193.132.32.0\/25", + "version":35845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.32.128", + "prefixLen":25, + "network":"193.132.32.128\/25", + "version":35844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.33.0", + "prefixLen":25, + "network":"193.132.33.0\/25", + "version":35843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.33.128", + "prefixLen":25, + "network":"193.132.33.128\/25", + "version":35842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.34.0", + "prefixLen":25, + "network":"193.132.34.0\/25", + "version":35841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.34.128", + "prefixLen":25, + "network":"193.132.34.128\/25", + "version":35840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.35.0", + "prefixLen":25, + "network":"193.132.35.0\/25", + "version":35839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.35.128", + "prefixLen":25, + "network":"193.132.35.128\/25", + "version":35838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.48.0", + "prefixLen":25, + "network":"193.132.48.0\/25", + "version":35837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.48.128", + "prefixLen":25, + "network":"193.132.48.128\/25", + "version":35836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.49.0", + "prefixLen":25, + "network":"193.132.49.0\/25", + "version":35835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.49.128", + "prefixLen":25, + "network":"193.132.49.128\/25", + "version":35834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.50.0", + "prefixLen":25, + "network":"193.132.50.0\/25", + "version":35833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.50.128", + "prefixLen":25, + "network":"193.132.50.128\/25", + "version":35832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.51.0", + "prefixLen":25, + "network":"193.132.51.0\/25", + "version":35831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.51.128", + "prefixLen":25, + "network":"193.132.51.128\/25", + "version":35830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.64.0", + "prefixLen":25, + "network":"193.132.64.0\/25", + "version":35829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.64.128", + "prefixLen":25, + "network":"193.132.64.128\/25", + "version":35828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.65.0", + "prefixLen":25, + "network":"193.132.65.0\/25", + "version":35827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.65.128", + "prefixLen":25, + "network":"193.132.65.128\/25", + "version":35826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.66.0", + "prefixLen":25, + "network":"193.132.66.0\/25", + "version":35825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.66.128", + "prefixLen":25, + "network":"193.132.66.128\/25", + "version":35824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.67.0", + "prefixLen":25, + "network":"193.132.67.0\/25", + "version":35823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.67.128", + "prefixLen":25, + "network":"193.132.67.128\/25", + "version":35822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.80.0", + "prefixLen":25, + "network":"193.132.80.0\/25", + "version":35821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.80.128", + "prefixLen":25, + "network":"193.132.80.128\/25", + "version":35820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.81.0", + "prefixLen":25, + "network":"193.132.81.0\/25", + "version":35819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.81.128", + "prefixLen":25, + "network":"193.132.81.128\/25", + "version":35818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.82.0", + "prefixLen":25, + "network":"193.132.82.0\/25", + "version":35817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.82.128", + "prefixLen":25, + "network":"193.132.82.128\/25", + "version":35816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.83.0", + "prefixLen":25, + "network":"193.132.83.0\/25", + "version":35815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.83.128", + "prefixLen":25, + "network":"193.132.83.128\/25", + "version":35814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.96.0", + "prefixLen":25, + "network":"193.132.96.0\/25", + "version":35813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.96.128", + "prefixLen":25, + "network":"193.132.96.128\/25", + "version":35812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.97.0", + "prefixLen":25, + "network":"193.132.97.0\/25", + "version":35811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.97.128", + "prefixLen":25, + "network":"193.132.97.128\/25", + "version":35810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.98.0", + "prefixLen":25, + "network":"193.132.98.0\/25", + "version":35809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.98.128", + "prefixLen":25, + "network":"193.132.98.128\/25", + "version":35808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.99.0", + "prefixLen":25, + "network":"193.132.99.0\/25", + "version":35807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.99.128", + "prefixLen":25, + "network":"193.132.99.128\/25", + "version":35806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.112.0", + "prefixLen":25, + "network":"193.132.112.0\/25", + "version":35805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.112.128", + "prefixLen":25, + "network":"193.132.112.128\/25", + "version":35804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.113.0", + "prefixLen":25, + "network":"193.132.113.0\/25", + "version":35803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.113.128", + "prefixLen":25, + "network":"193.132.113.128\/25", + "version":35802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.114.0", + "prefixLen":25, + "network":"193.132.114.0\/25", + "version":35801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.114.128", + "prefixLen":25, + "network":"193.132.114.128\/25", + "version":35800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.115.0", + "prefixLen":25, + "network":"193.132.115.0\/25", + "version":35799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.115.128", + "prefixLen":25, + "network":"193.132.115.128\/25", + "version":35798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.128.0", + "prefixLen":25, + "network":"193.132.128.0\/25", + "version":35797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.128.128", + "prefixLen":25, + "network":"193.132.128.128\/25", + "version":35796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.129.0", + "prefixLen":25, + "network":"193.132.129.0\/25", + "version":35795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.129.128", + "prefixLen":25, + "network":"193.132.129.128\/25", + "version":35794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.130.0", + "prefixLen":25, + "network":"193.132.130.0\/25", + "version":35793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.130.128", + "prefixLen":25, + "network":"193.132.130.128\/25", + "version":35792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.131.0", + "prefixLen":25, + "network":"193.132.131.0\/25", + "version":35791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.131.128", + "prefixLen":25, + "network":"193.132.131.128\/25", + "version":35790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.144.0", + "prefixLen":25, + "network":"193.132.144.0\/25", + "version":35789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.144.128", + "prefixLen":25, + "network":"193.132.144.128\/25", + "version":35788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.145.0", + "prefixLen":25, + "network":"193.132.145.0\/25", + "version":35787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.145.128", + "prefixLen":25, + "network":"193.132.145.128\/25", + "version":35786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.146.0", + "prefixLen":25, + "network":"193.132.146.0\/25", + "version":35785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.146.128", + "prefixLen":25, + "network":"193.132.146.128\/25", + "version":35784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.147.0", + "prefixLen":25, + "network":"193.132.147.0\/25", + "version":35783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.147.128", + "prefixLen":25, + "network":"193.132.147.128\/25", + "version":35782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.160.0", + "prefixLen":25, + "network":"193.132.160.0\/25", + "version":35781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.160.128", + "prefixLen":25, + "network":"193.132.160.128\/25", + "version":35780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.161.0", + "prefixLen":25, + "network":"193.132.161.0\/25", + "version":35779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.161.128", + "prefixLen":25, + "network":"193.132.161.128\/25", + "version":35778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.162.0", + "prefixLen":25, + "network":"193.132.162.0\/25", + "version":35777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.162.128", + "prefixLen":25, + "network":"193.132.162.128\/25", + "version":35776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.163.0", + "prefixLen":25, + "network":"193.132.163.0\/25", + "version":35775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.163.128", + "prefixLen":25, + "network":"193.132.163.128\/25", + "version":35774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.176.0", + "prefixLen":25, + "network":"193.132.176.0\/25", + "version":35773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.176.128", + "prefixLen":25, + "network":"193.132.176.128\/25", + "version":35772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.177.0", + "prefixLen":25, + "network":"193.132.177.0\/25", + "version":35771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.177.128", + "prefixLen":25, + "network":"193.132.177.128\/25", + "version":35770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.178.0", + "prefixLen":25, + "network":"193.132.178.0\/25", + "version":35769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.178.128", + "prefixLen":25, + "network":"193.132.178.128\/25", + "version":35768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.179.0", + "prefixLen":25, + "network":"193.132.179.0\/25", + "version":35767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.179.128", + "prefixLen":25, + "network":"193.132.179.128\/25", + "version":35766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.192.0", + "prefixLen":25, + "network":"193.132.192.0\/25", + "version":35765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.192.128", + "prefixLen":25, + "network":"193.132.192.128\/25", + "version":35764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.193.0", + "prefixLen":25, + "network":"193.132.193.0\/25", + "version":35763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.193.128", + "prefixLen":25, + "network":"193.132.193.128\/25", + "version":35762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.194.0", + "prefixLen":25, + "network":"193.132.194.0\/25", + "version":35761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.194.128", + "prefixLen":25, + "network":"193.132.194.128\/25", + "version":35760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.195.0", + "prefixLen":25, + "network":"193.132.195.0\/25", + "version":35759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.195.128", + "prefixLen":25, + "network":"193.132.195.128\/25", + "version":35758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.208.0", + "prefixLen":25, + "network":"193.132.208.0\/25", + "version":35757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.208.128", + "prefixLen":25, + "network":"193.132.208.128\/25", + "version":35756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.209.0", + "prefixLen":25, + "network":"193.132.209.0\/25", + "version":35755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.209.128", + "prefixLen":25, + "network":"193.132.209.128\/25", + "version":35754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.210.0", + "prefixLen":25, + "network":"193.132.210.0\/25", + "version":35753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.210.128", + "prefixLen":25, + "network":"193.132.210.128\/25", + "version":35752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.211.0", + "prefixLen":25, + "network":"193.132.211.0\/25", + "version":35751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.211.128", + "prefixLen":25, + "network":"193.132.211.128\/25", + "version":35750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.224.0", + "prefixLen":25, + "network":"193.132.224.0\/25", + "version":35749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.224.128", + "prefixLen":25, + "network":"193.132.224.128\/25", + "version":35748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.225.0", + "prefixLen":25, + "network":"193.132.225.0\/25", + "version":35747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.225.128", + "prefixLen":25, + "network":"193.132.225.128\/25", + "version":35746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.226.0", + "prefixLen":25, + "network":"193.132.226.0\/25", + "version":35745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.226.128", + "prefixLen":25, + "network":"193.132.226.128\/25", + "version":35744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.227.0", + "prefixLen":25, + "network":"193.132.227.0\/25", + "version":35743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.227.128", + "prefixLen":25, + "network":"193.132.227.128\/25", + "version":35742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.240.0", + "prefixLen":25, + "network":"193.132.240.0\/25", + "version":35741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.240.128", + "prefixLen":25, + "network":"193.132.240.128\/25", + "version":35740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.241.0", + "prefixLen":25, + "network":"193.132.241.0\/25", + "version":35739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.241.128", + "prefixLen":25, + "network":"193.132.241.128\/25", + "version":35738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.242.0", + "prefixLen":25, + "network":"193.132.242.0\/25", + "version":35737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.242.128", + "prefixLen":25, + "network":"193.132.242.128\/25", + "version":35736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.243.0", + "prefixLen":25, + "network":"193.132.243.0\/25", + "version":35735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.132.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.132.243.128", + "prefixLen":25, + "network":"193.132.243.128\/25", + "version":35734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64820 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.0.0", + "prefixLen":25, + "network":"193.133.0.0\/25", + "version":35861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.0.128", + "prefixLen":25, + "network":"193.133.0.128\/25", + "version":35988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.1.0", + "prefixLen":25, + "network":"193.133.1.0\/25", + "version":35987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.1.128", + "prefixLen":25, + "network":"193.133.1.128\/25", + "version":35986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.2.0", + "prefixLen":25, + "network":"193.133.2.0\/25", + "version":35985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.2.128", + "prefixLen":25, + "network":"193.133.2.128\/25", + "version":35984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.3.0", + "prefixLen":25, + "network":"193.133.3.0\/25", + "version":35983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.3.128", + "prefixLen":25, + "network":"193.133.3.128\/25", + "version":35982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.16.0", + "prefixLen":25, + "network":"193.133.16.0\/25", + "version":35981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.16.128", + "prefixLen":25, + "network":"193.133.16.128\/25", + "version":35980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.17.0", + "prefixLen":25, + "network":"193.133.17.0\/25", + "version":35979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.17.128", + "prefixLen":25, + "network":"193.133.17.128\/25", + "version":35978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.18.0", + "prefixLen":25, + "network":"193.133.18.0\/25", + "version":35977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.18.128", + "prefixLen":25, + "network":"193.133.18.128\/25", + "version":35976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.19.0", + "prefixLen":25, + "network":"193.133.19.0\/25", + "version":35975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.19.128", + "prefixLen":25, + "network":"193.133.19.128\/25", + "version":35974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.32.0", + "prefixLen":25, + "network":"193.133.32.0\/25", + "version":35973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.32.128", + "prefixLen":25, + "network":"193.133.32.128\/25", + "version":35972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.33.0", + "prefixLen":25, + "network":"193.133.33.0\/25", + "version":35971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.33.128", + "prefixLen":25, + "network":"193.133.33.128\/25", + "version":35970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.34.0", + "prefixLen":25, + "network":"193.133.34.0\/25", + "version":35969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.34.128", + "prefixLen":25, + "network":"193.133.34.128\/25", + "version":35968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.35.0", + "prefixLen":25, + "network":"193.133.35.0\/25", + "version":35967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.35.128", + "prefixLen":25, + "network":"193.133.35.128\/25", + "version":35966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.48.0", + "prefixLen":25, + "network":"193.133.48.0\/25", + "version":35965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.48.128", + "prefixLen":25, + "network":"193.133.48.128\/25", + "version":35964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.49.0", + "prefixLen":25, + "network":"193.133.49.0\/25", + "version":35963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.49.128", + "prefixLen":25, + "network":"193.133.49.128\/25", + "version":35962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.50.0", + "prefixLen":25, + "network":"193.133.50.0\/25", + "version":35961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.50.128", + "prefixLen":25, + "network":"193.133.50.128\/25", + "version":35960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.51.0", + "prefixLen":25, + "network":"193.133.51.0\/25", + "version":35959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.51.128", + "prefixLen":25, + "network":"193.133.51.128\/25", + "version":35958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.64.0", + "prefixLen":25, + "network":"193.133.64.0\/25", + "version":35957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.64.128", + "prefixLen":25, + "network":"193.133.64.128\/25", + "version":35956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.65.0", + "prefixLen":25, + "network":"193.133.65.0\/25", + "version":35955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.65.128", + "prefixLen":25, + "network":"193.133.65.128\/25", + "version":35954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.66.0", + "prefixLen":25, + "network":"193.133.66.0\/25", + "version":35953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.66.128", + "prefixLen":25, + "network":"193.133.66.128\/25", + "version":35952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.67.0", + "prefixLen":25, + "network":"193.133.67.0\/25", + "version":35951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.67.128", + "prefixLen":25, + "network":"193.133.67.128\/25", + "version":35950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.80.0", + "prefixLen":25, + "network":"193.133.80.0\/25", + "version":35949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.80.128", + "prefixLen":25, + "network":"193.133.80.128\/25", + "version":35948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.81.0", + "prefixLen":25, + "network":"193.133.81.0\/25", + "version":35947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.81.128", + "prefixLen":25, + "network":"193.133.81.128\/25", + "version":35946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.82.0", + "prefixLen":25, + "network":"193.133.82.0\/25", + "version":35945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.82.128", + "prefixLen":25, + "network":"193.133.82.128\/25", + "version":35944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.83.0", + "prefixLen":25, + "network":"193.133.83.0\/25", + "version":35943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.83.128", + "prefixLen":25, + "network":"193.133.83.128\/25", + "version":35942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.96.0", + "prefixLen":25, + "network":"193.133.96.0\/25", + "version":35941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.96.128", + "prefixLen":25, + "network":"193.133.96.128\/25", + "version":35940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.97.0", + "prefixLen":25, + "network":"193.133.97.0\/25", + "version":35939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.97.128", + "prefixLen":25, + "network":"193.133.97.128\/25", + "version":35938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.98.0", + "prefixLen":25, + "network":"193.133.98.0\/25", + "version":35937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.98.128", + "prefixLen":25, + "network":"193.133.98.128\/25", + "version":35936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.99.0", + "prefixLen":25, + "network":"193.133.99.0\/25", + "version":35935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.99.128", + "prefixLen":25, + "network":"193.133.99.128\/25", + "version":35934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.112.0", + "prefixLen":25, + "network":"193.133.112.0\/25", + "version":35933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.112.128", + "prefixLen":25, + "network":"193.133.112.128\/25", + "version":35932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.113.0", + "prefixLen":25, + "network":"193.133.113.0\/25", + "version":35931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.113.128", + "prefixLen":25, + "network":"193.133.113.128\/25", + "version":35930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.114.0", + "prefixLen":25, + "network":"193.133.114.0\/25", + "version":35929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.114.128", + "prefixLen":25, + "network":"193.133.114.128\/25", + "version":35928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.115.0", + "prefixLen":25, + "network":"193.133.115.0\/25", + "version":35927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.115.128", + "prefixLen":25, + "network":"193.133.115.128\/25", + "version":35926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.128.0", + "prefixLen":25, + "network":"193.133.128.0\/25", + "version":35925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.128.128", + "prefixLen":25, + "network":"193.133.128.128\/25", + "version":35924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.129.0", + "prefixLen":25, + "network":"193.133.129.0\/25", + "version":35923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.129.128", + "prefixLen":25, + "network":"193.133.129.128\/25", + "version":35922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.130.0", + "prefixLen":25, + "network":"193.133.130.0\/25", + "version":35921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.130.128", + "prefixLen":25, + "network":"193.133.130.128\/25", + "version":35920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.131.0", + "prefixLen":25, + "network":"193.133.131.0\/25", + "version":35919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.131.128", + "prefixLen":25, + "network":"193.133.131.128\/25", + "version":35918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.144.0", + "prefixLen":25, + "network":"193.133.144.0\/25", + "version":35917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.144.128", + "prefixLen":25, + "network":"193.133.144.128\/25", + "version":35916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.145.0", + "prefixLen":25, + "network":"193.133.145.0\/25", + "version":35915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.145.128", + "prefixLen":25, + "network":"193.133.145.128\/25", + "version":35914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.146.0", + "prefixLen":25, + "network":"193.133.146.0\/25", + "version":35913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.146.128", + "prefixLen":25, + "network":"193.133.146.128\/25", + "version":35912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.147.0", + "prefixLen":25, + "network":"193.133.147.0\/25", + "version":35911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.147.128", + "prefixLen":25, + "network":"193.133.147.128\/25", + "version":35910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.160.0", + "prefixLen":25, + "network":"193.133.160.0\/25", + "version":35909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.160.128", + "prefixLen":25, + "network":"193.133.160.128\/25", + "version":35908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.161.0", + "prefixLen":25, + "network":"193.133.161.0\/25", + "version":35907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.161.128", + "prefixLen":25, + "network":"193.133.161.128\/25", + "version":35906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.162.0", + "prefixLen":25, + "network":"193.133.162.0\/25", + "version":35905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.162.128", + "prefixLen":25, + "network":"193.133.162.128\/25", + "version":35904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.163.0", + "prefixLen":25, + "network":"193.133.163.0\/25", + "version":35903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.163.128", + "prefixLen":25, + "network":"193.133.163.128\/25", + "version":35902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.176.0", + "prefixLen":25, + "network":"193.133.176.0\/25", + "version":35901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.176.128", + "prefixLen":25, + "network":"193.133.176.128\/25", + "version":35900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.177.0", + "prefixLen":25, + "network":"193.133.177.0\/25", + "version":35899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.177.128", + "prefixLen":25, + "network":"193.133.177.128\/25", + "version":35898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.178.0", + "prefixLen":25, + "network":"193.133.178.0\/25", + "version":35897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.178.128", + "prefixLen":25, + "network":"193.133.178.128\/25", + "version":35896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.179.0", + "prefixLen":25, + "network":"193.133.179.0\/25", + "version":35895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.179.128", + "prefixLen":25, + "network":"193.133.179.128\/25", + "version":35894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.192.0", + "prefixLen":25, + "network":"193.133.192.0\/25", + "version":35893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.192.128", + "prefixLen":25, + "network":"193.133.192.128\/25", + "version":35892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.193.0", + "prefixLen":25, + "network":"193.133.193.0\/25", + "version":35891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.193.128", + "prefixLen":25, + "network":"193.133.193.128\/25", + "version":35890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.194.0", + "prefixLen":25, + "network":"193.133.194.0\/25", + "version":35889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.194.128", + "prefixLen":25, + "network":"193.133.194.128\/25", + "version":35888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.195.0", + "prefixLen":25, + "network":"193.133.195.0\/25", + "version":35887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.195.128", + "prefixLen":25, + "network":"193.133.195.128\/25", + "version":35886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.208.0", + "prefixLen":25, + "network":"193.133.208.0\/25", + "version":35885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.208.128", + "prefixLen":25, + "network":"193.133.208.128\/25", + "version":35884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.209.0", + "prefixLen":25, + "network":"193.133.209.0\/25", + "version":35883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.209.128", + "prefixLen":25, + "network":"193.133.209.128\/25", + "version":35882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.210.0", + "prefixLen":25, + "network":"193.133.210.0\/25", + "version":35881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.210.128", + "prefixLen":25, + "network":"193.133.210.128\/25", + "version":35880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.211.0", + "prefixLen":25, + "network":"193.133.211.0\/25", + "version":35879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.211.128", + "prefixLen":25, + "network":"193.133.211.128\/25", + "version":35878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.224.0", + "prefixLen":25, + "network":"193.133.224.0\/25", + "version":35877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.224.128", + "prefixLen":25, + "network":"193.133.224.128\/25", + "version":35876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.225.0", + "prefixLen":25, + "network":"193.133.225.0\/25", + "version":35875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.225.128", + "prefixLen":25, + "network":"193.133.225.128\/25", + "version":35874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.226.0", + "prefixLen":25, + "network":"193.133.226.0\/25", + "version":35873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.226.128", + "prefixLen":25, + "network":"193.133.226.128\/25", + "version":35872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.227.0", + "prefixLen":25, + "network":"193.133.227.0\/25", + "version":35871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.227.128", + "prefixLen":25, + "network":"193.133.227.128\/25", + "version":35870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.240.0", + "prefixLen":25, + "network":"193.133.240.0\/25", + "version":35869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.240.128", + "prefixLen":25, + "network":"193.133.240.128\/25", + "version":35868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.241.0", + "prefixLen":25, + "network":"193.133.241.0\/25", + "version":35867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.241.128", + "prefixLen":25, + "network":"193.133.241.128\/25", + "version":35866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.242.0", + "prefixLen":25, + "network":"193.133.242.0\/25", + "version":35865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.242.128", + "prefixLen":25, + "network":"193.133.242.128\/25", + "version":35864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.243.0", + "prefixLen":25, + "network":"193.133.243.0\/25", + "version":35863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.133.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.133.243.128", + "prefixLen":25, + "network":"193.133.243.128\/25", + "version":35862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64821 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.0.0", + "prefixLen":25, + "network":"193.134.0.0\/25", + "version":35989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.0.128", + "prefixLen":25, + "network":"193.134.0.128\/25", + "version":36116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.1.0", + "prefixLen":25, + "network":"193.134.1.0\/25", + "version":36115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.1.128", + "prefixLen":25, + "network":"193.134.1.128\/25", + "version":36114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.2.0", + "prefixLen":25, + "network":"193.134.2.0\/25", + "version":36113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.2.128", + "prefixLen":25, + "network":"193.134.2.128\/25", + "version":36112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.3.0", + "prefixLen":25, + "network":"193.134.3.0\/25", + "version":36111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.3.128", + "prefixLen":25, + "network":"193.134.3.128\/25", + "version":36110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.16.0", + "prefixLen":25, + "network":"193.134.16.0\/25", + "version":36109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.16.128", + "prefixLen":25, + "network":"193.134.16.128\/25", + "version":36108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.17.0", + "prefixLen":25, + "network":"193.134.17.0\/25", + "version":36107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.17.128", + "prefixLen":25, + "network":"193.134.17.128\/25", + "version":36106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.18.0", + "prefixLen":25, + "network":"193.134.18.0\/25", + "version":36105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.18.128", + "prefixLen":25, + "network":"193.134.18.128\/25", + "version":36104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.19.0", + "prefixLen":25, + "network":"193.134.19.0\/25", + "version":36103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.19.128", + "prefixLen":25, + "network":"193.134.19.128\/25", + "version":36102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.32.0", + "prefixLen":25, + "network":"193.134.32.0\/25", + "version":36101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.32.128", + "prefixLen":25, + "network":"193.134.32.128\/25", + "version":36100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.33.0", + "prefixLen":25, + "network":"193.134.33.0\/25", + "version":36099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.33.128", + "prefixLen":25, + "network":"193.134.33.128\/25", + "version":36098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.34.0", + "prefixLen":25, + "network":"193.134.34.0\/25", + "version":36097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.34.128", + "prefixLen":25, + "network":"193.134.34.128\/25", + "version":36096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.35.0", + "prefixLen":25, + "network":"193.134.35.0\/25", + "version":36095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.35.128", + "prefixLen":25, + "network":"193.134.35.128\/25", + "version":36094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.48.0", + "prefixLen":25, + "network":"193.134.48.0\/25", + "version":36093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.48.128", + "prefixLen":25, + "network":"193.134.48.128\/25", + "version":36092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.49.0", + "prefixLen":25, + "network":"193.134.49.0\/25", + "version":36091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.49.128", + "prefixLen":25, + "network":"193.134.49.128\/25", + "version":36090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.50.0", + "prefixLen":25, + "network":"193.134.50.0\/25", + "version":36089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.50.128", + "prefixLen":25, + "network":"193.134.50.128\/25", + "version":36088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.51.0", + "prefixLen":25, + "network":"193.134.51.0\/25", + "version":36087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.51.128", + "prefixLen":25, + "network":"193.134.51.128\/25", + "version":36086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.64.0", + "prefixLen":25, + "network":"193.134.64.0\/25", + "version":36085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.64.128", + "prefixLen":25, + "network":"193.134.64.128\/25", + "version":36084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.65.0", + "prefixLen":25, + "network":"193.134.65.0\/25", + "version":36083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.65.128", + "prefixLen":25, + "network":"193.134.65.128\/25", + "version":36082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.66.0", + "prefixLen":25, + "network":"193.134.66.0\/25", + "version":36081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.66.128", + "prefixLen":25, + "network":"193.134.66.128\/25", + "version":36080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.67.0", + "prefixLen":25, + "network":"193.134.67.0\/25", + "version":36079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.67.128", + "prefixLen":25, + "network":"193.134.67.128\/25", + "version":36078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.80.0", + "prefixLen":25, + "network":"193.134.80.0\/25", + "version":36077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.80.128", + "prefixLen":25, + "network":"193.134.80.128\/25", + "version":36076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.81.0", + "prefixLen":25, + "network":"193.134.81.0\/25", + "version":36075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.81.128", + "prefixLen":25, + "network":"193.134.81.128\/25", + "version":36074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.82.0", + "prefixLen":25, + "network":"193.134.82.0\/25", + "version":36073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.82.128", + "prefixLen":25, + "network":"193.134.82.128\/25", + "version":36072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.83.0", + "prefixLen":25, + "network":"193.134.83.0\/25", + "version":36071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.83.128", + "prefixLen":25, + "network":"193.134.83.128\/25", + "version":36070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.96.0", + "prefixLen":25, + "network":"193.134.96.0\/25", + "version":36069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.96.128", + "prefixLen":25, + "network":"193.134.96.128\/25", + "version":36068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.97.0", + "prefixLen":25, + "network":"193.134.97.0\/25", + "version":36067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.97.128", + "prefixLen":25, + "network":"193.134.97.128\/25", + "version":36066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.98.0", + "prefixLen":25, + "network":"193.134.98.0\/25", + "version":36065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.98.128", + "prefixLen":25, + "network":"193.134.98.128\/25", + "version":36064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.99.0", + "prefixLen":25, + "network":"193.134.99.0\/25", + "version":36063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.99.128", + "prefixLen":25, + "network":"193.134.99.128\/25", + "version":36062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.112.0", + "prefixLen":25, + "network":"193.134.112.0\/25", + "version":36061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.112.128", + "prefixLen":25, + "network":"193.134.112.128\/25", + "version":36060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.113.0", + "prefixLen":25, + "network":"193.134.113.0\/25", + "version":36059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.113.128", + "prefixLen":25, + "network":"193.134.113.128\/25", + "version":36058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.114.0", + "prefixLen":25, + "network":"193.134.114.0\/25", + "version":36057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.114.128", + "prefixLen":25, + "network":"193.134.114.128\/25", + "version":36056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.115.0", + "prefixLen":25, + "network":"193.134.115.0\/25", + "version":36055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.115.128", + "prefixLen":25, + "network":"193.134.115.128\/25", + "version":36054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.128.0", + "prefixLen":25, + "network":"193.134.128.0\/25", + "version":36053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.128.128", + "prefixLen":25, + "network":"193.134.128.128\/25", + "version":36052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.129.0", + "prefixLen":25, + "network":"193.134.129.0\/25", + "version":36051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.129.128", + "prefixLen":25, + "network":"193.134.129.128\/25", + "version":36050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.130.0", + "prefixLen":25, + "network":"193.134.130.0\/25", + "version":36049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.130.128", + "prefixLen":25, + "network":"193.134.130.128\/25", + "version":36048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.131.0", + "prefixLen":25, + "network":"193.134.131.0\/25", + "version":36047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.131.128", + "prefixLen":25, + "network":"193.134.131.128\/25", + "version":36046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.144.0", + "prefixLen":25, + "network":"193.134.144.0\/25", + "version":36045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.144.128", + "prefixLen":25, + "network":"193.134.144.128\/25", + "version":36044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.145.0", + "prefixLen":25, + "network":"193.134.145.0\/25", + "version":36043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.145.128", + "prefixLen":25, + "network":"193.134.145.128\/25", + "version":36042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.146.0", + "prefixLen":25, + "network":"193.134.146.0\/25", + "version":36041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.146.128", + "prefixLen":25, + "network":"193.134.146.128\/25", + "version":36040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.147.0", + "prefixLen":25, + "network":"193.134.147.0\/25", + "version":36039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.147.128", + "prefixLen":25, + "network":"193.134.147.128\/25", + "version":36038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.160.0", + "prefixLen":25, + "network":"193.134.160.0\/25", + "version":36037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.160.128", + "prefixLen":25, + "network":"193.134.160.128\/25", + "version":36036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.161.0", + "prefixLen":25, + "network":"193.134.161.0\/25", + "version":36035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.161.128", + "prefixLen":25, + "network":"193.134.161.128\/25", + "version":36034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.162.0", + "prefixLen":25, + "network":"193.134.162.0\/25", + "version":36033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.162.128", + "prefixLen":25, + "network":"193.134.162.128\/25", + "version":36032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.163.0", + "prefixLen":25, + "network":"193.134.163.0\/25", + "version":36031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.163.128", + "prefixLen":25, + "network":"193.134.163.128\/25", + "version":36030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.176.0", + "prefixLen":25, + "network":"193.134.176.0\/25", + "version":36029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.176.128", + "prefixLen":25, + "network":"193.134.176.128\/25", + "version":36028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.177.0", + "prefixLen":25, + "network":"193.134.177.0\/25", + "version":36027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.177.128", + "prefixLen":25, + "network":"193.134.177.128\/25", + "version":36026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.178.0", + "prefixLen":25, + "network":"193.134.178.0\/25", + "version":36025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.178.128", + "prefixLen":25, + "network":"193.134.178.128\/25", + "version":36024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.179.0", + "prefixLen":25, + "network":"193.134.179.0\/25", + "version":36023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.179.128", + "prefixLen":25, + "network":"193.134.179.128\/25", + "version":36022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.192.0", + "prefixLen":25, + "network":"193.134.192.0\/25", + "version":36021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.192.128", + "prefixLen":25, + "network":"193.134.192.128\/25", + "version":36020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.193.0", + "prefixLen":25, + "network":"193.134.193.0\/25", + "version":36019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.193.128", + "prefixLen":25, + "network":"193.134.193.128\/25", + "version":36018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.194.0", + "prefixLen":25, + "network":"193.134.194.0\/25", + "version":36017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.194.128", + "prefixLen":25, + "network":"193.134.194.128\/25", + "version":36016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.195.0", + "prefixLen":25, + "network":"193.134.195.0\/25", + "version":36015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.195.128", + "prefixLen":25, + "network":"193.134.195.128\/25", + "version":36014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.208.0", + "prefixLen":25, + "network":"193.134.208.0\/25", + "version":36013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.208.128", + "prefixLen":25, + "network":"193.134.208.128\/25", + "version":36012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.209.0", + "prefixLen":25, + "network":"193.134.209.0\/25", + "version":36011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.209.128", + "prefixLen":25, + "network":"193.134.209.128\/25", + "version":36010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.210.0", + "prefixLen":25, + "network":"193.134.210.0\/25", + "version":36009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.210.128", + "prefixLen":25, + "network":"193.134.210.128\/25", + "version":36008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.211.0", + "prefixLen":25, + "network":"193.134.211.0\/25", + "version":36007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.211.128", + "prefixLen":25, + "network":"193.134.211.128\/25", + "version":36006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.224.0", + "prefixLen":25, + "network":"193.134.224.0\/25", + "version":36005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.224.128", + "prefixLen":25, + "network":"193.134.224.128\/25", + "version":36004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.225.0", + "prefixLen":25, + "network":"193.134.225.0\/25", + "version":36003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.225.128", + "prefixLen":25, + "network":"193.134.225.128\/25", + "version":36002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.226.0", + "prefixLen":25, + "network":"193.134.226.0\/25", + "version":36001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.226.128", + "prefixLen":25, + "network":"193.134.226.128\/25", + "version":36000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.227.0", + "prefixLen":25, + "network":"193.134.227.0\/25", + "version":35999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.227.128", + "prefixLen":25, + "network":"193.134.227.128\/25", + "version":35998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.240.0", + "prefixLen":25, + "network":"193.134.240.0\/25", + "version":35997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.240.128", + "prefixLen":25, + "network":"193.134.240.128\/25", + "version":35996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.241.0", + "prefixLen":25, + "network":"193.134.241.0\/25", + "version":35995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.241.128", + "prefixLen":25, + "network":"193.134.241.128\/25", + "version":35994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.242.0", + "prefixLen":25, + "network":"193.134.242.0\/25", + "version":35993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.242.128", + "prefixLen":25, + "network":"193.134.242.128\/25", + "version":35992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.243.0", + "prefixLen":25, + "network":"193.134.243.0\/25", + "version":35991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.134.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.134.243.128", + "prefixLen":25, + "network":"193.134.243.128\/25", + "version":35990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64822 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.0.0", + "prefixLen":25, + "network":"193.135.0.0\/25", + "version":36117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.0.128", + "prefixLen":25, + "network":"193.135.0.128\/25", + "version":36244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.1.0", + "prefixLen":25, + "network":"193.135.1.0\/25", + "version":36243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.1.128", + "prefixLen":25, + "network":"193.135.1.128\/25", + "version":36242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.2.0", + "prefixLen":25, + "network":"193.135.2.0\/25", + "version":36241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.2.128", + "prefixLen":25, + "network":"193.135.2.128\/25", + "version":36240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.3.0", + "prefixLen":25, + "network":"193.135.3.0\/25", + "version":36239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.3.128", + "prefixLen":25, + "network":"193.135.3.128\/25", + "version":36238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.16.0", + "prefixLen":25, + "network":"193.135.16.0\/25", + "version":36237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.16.128", + "prefixLen":25, + "network":"193.135.16.128\/25", + "version":36236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.17.0", + "prefixLen":25, + "network":"193.135.17.0\/25", + "version":36235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.17.128", + "prefixLen":25, + "network":"193.135.17.128\/25", + "version":36234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.18.0", + "prefixLen":25, + "network":"193.135.18.0\/25", + "version":36233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.18.128", + "prefixLen":25, + "network":"193.135.18.128\/25", + "version":36232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.19.0", + "prefixLen":25, + "network":"193.135.19.0\/25", + "version":36231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.19.128", + "prefixLen":25, + "network":"193.135.19.128\/25", + "version":36230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.32.0", + "prefixLen":25, + "network":"193.135.32.0\/25", + "version":36229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.32.128", + "prefixLen":25, + "network":"193.135.32.128\/25", + "version":36228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.33.0", + "prefixLen":25, + "network":"193.135.33.0\/25", + "version":36227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.33.128", + "prefixLen":25, + "network":"193.135.33.128\/25", + "version":36226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.34.0", + "prefixLen":25, + "network":"193.135.34.0\/25", + "version":36225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.34.128", + "prefixLen":25, + "network":"193.135.34.128\/25", + "version":36224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.35.0", + "prefixLen":25, + "network":"193.135.35.0\/25", + "version":36223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.35.128", + "prefixLen":25, + "network":"193.135.35.128\/25", + "version":36222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.48.0", + "prefixLen":25, + "network":"193.135.48.0\/25", + "version":36221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.48.128", + "prefixLen":25, + "network":"193.135.48.128\/25", + "version":36220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.49.0", + "prefixLen":25, + "network":"193.135.49.0\/25", + "version":36219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.49.128", + "prefixLen":25, + "network":"193.135.49.128\/25", + "version":36218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.50.0", + "prefixLen":25, + "network":"193.135.50.0\/25", + "version":36217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.50.128", + "prefixLen":25, + "network":"193.135.50.128\/25", + "version":36216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.51.0", + "prefixLen":25, + "network":"193.135.51.0\/25", + "version":36215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.51.128", + "prefixLen":25, + "network":"193.135.51.128\/25", + "version":36214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.64.0", + "prefixLen":25, + "network":"193.135.64.0\/25", + "version":36213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.64.128", + "prefixLen":25, + "network":"193.135.64.128\/25", + "version":36212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.65.0", + "prefixLen":25, + "network":"193.135.65.0\/25", + "version":36211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.65.128", + "prefixLen":25, + "network":"193.135.65.128\/25", + "version":36210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.66.0", + "prefixLen":25, + "network":"193.135.66.0\/25", + "version":36209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.66.128", + "prefixLen":25, + "network":"193.135.66.128\/25", + "version":36208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.67.0", + "prefixLen":25, + "network":"193.135.67.0\/25", + "version":36207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.67.128", + "prefixLen":25, + "network":"193.135.67.128\/25", + "version":36206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.80.0", + "prefixLen":25, + "network":"193.135.80.0\/25", + "version":36205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.80.128", + "prefixLen":25, + "network":"193.135.80.128\/25", + "version":36204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.81.0", + "prefixLen":25, + "network":"193.135.81.0\/25", + "version":36203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.81.128", + "prefixLen":25, + "network":"193.135.81.128\/25", + "version":36202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.82.0", + "prefixLen":25, + "network":"193.135.82.0\/25", + "version":36201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.82.128", + "prefixLen":25, + "network":"193.135.82.128\/25", + "version":36200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.83.0", + "prefixLen":25, + "network":"193.135.83.0\/25", + "version":36199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.83.128", + "prefixLen":25, + "network":"193.135.83.128\/25", + "version":36198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.96.0", + "prefixLen":25, + "network":"193.135.96.0\/25", + "version":36197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.96.128", + "prefixLen":25, + "network":"193.135.96.128\/25", + "version":36196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.97.0", + "prefixLen":25, + "network":"193.135.97.0\/25", + "version":36195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.97.128", + "prefixLen":25, + "network":"193.135.97.128\/25", + "version":36194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.98.0", + "prefixLen":25, + "network":"193.135.98.0\/25", + "version":36193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.98.128", + "prefixLen":25, + "network":"193.135.98.128\/25", + "version":36192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.99.0", + "prefixLen":25, + "network":"193.135.99.0\/25", + "version":36191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.99.128", + "prefixLen":25, + "network":"193.135.99.128\/25", + "version":36190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.112.0", + "prefixLen":25, + "network":"193.135.112.0\/25", + "version":36189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.112.128", + "prefixLen":25, + "network":"193.135.112.128\/25", + "version":36188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.113.0", + "prefixLen":25, + "network":"193.135.113.0\/25", + "version":36187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.113.128", + "prefixLen":25, + "network":"193.135.113.128\/25", + "version":36186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.114.0", + "prefixLen":25, + "network":"193.135.114.0\/25", + "version":36185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.114.128", + "prefixLen":25, + "network":"193.135.114.128\/25", + "version":36184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.115.0", + "prefixLen":25, + "network":"193.135.115.0\/25", + "version":36183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.115.128", + "prefixLen":25, + "network":"193.135.115.128\/25", + "version":36182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.128.0", + "prefixLen":25, + "network":"193.135.128.0\/25", + "version":36181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.128.128", + "prefixLen":25, + "network":"193.135.128.128\/25", + "version":36180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.129.0", + "prefixLen":25, + "network":"193.135.129.0\/25", + "version":36179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.129.128", + "prefixLen":25, + "network":"193.135.129.128\/25", + "version":36178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.130.0", + "prefixLen":25, + "network":"193.135.130.0\/25", + "version":36177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.130.128", + "prefixLen":25, + "network":"193.135.130.128\/25", + "version":36176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.131.0", + "prefixLen":25, + "network":"193.135.131.0\/25", + "version":36175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.131.128", + "prefixLen":25, + "network":"193.135.131.128\/25", + "version":36174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.144.0", + "prefixLen":25, + "network":"193.135.144.0\/25", + "version":36173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.144.128", + "prefixLen":25, + "network":"193.135.144.128\/25", + "version":36172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.145.0", + "prefixLen":25, + "network":"193.135.145.0\/25", + "version":36171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.145.128", + "prefixLen":25, + "network":"193.135.145.128\/25", + "version":36170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.146.0", + "prefixLen":25, + "network":"193.135.146.0\/25", + "version":36169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.146.128", + "prefixLen":25, + "network":"193.135.146.128\/25", + "version":36168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.147.0", + "prefixLen":25, + "network":"193.135.147.0\/25", + "version":36167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.147.128", + "prefixLen":25, + "network":"193.135.147.128\/25", + "version":36166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.160.0", + "prefixLen":25, + "network":"193.135.160.0\/25", + "version":36165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.160.128", + "prefixLen":25, + "network":"193.135.160.128\/25", + "version":36164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.161.0", + "prefixLen":25, + "network":"193.135.161.0\/25", + "version":36163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.161.128", + "prefixLen":25, + "network":"193.135.161.128\/25", + "version":36162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.162.0", + "prefixLen":25, + "network":"193.135.162.0\/25", + "version":36161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.162.128", + "prefixLen":25, + "network":"193.135.162.128\/25", + "version":36160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.163.0", + "prefixLen":25, + "network":"193.135.163.0\/25", + "version":36159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.163.128", + "prefixLen":25, + "network":"193.135.163.128\/25", + "version":36158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.176.0", + "prefixLen":25, + "network":"193.135.176.0\/25", + "version":36157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.176.128", + "prefixLen":25, + "network":"193.135.176.128\/25", + "version":36156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.177.0", + "prefixLen":25, + "network":"193.135.177.0\/25", + "version":36155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.177.128", + "prefixLen":25, + "network":"193.135.177.128\/25", + "version":36154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.178.0", + "prefixLen":25, + "network":"193.135.178.0\/25", + "version":36153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.178.128", + "prefixLen":25, + "network":"193.135.178.128\/25", + "version":36152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.179.0", + "prefixLen":25, + "network":"193.135.179.0\/25", + "version":36151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.179.128", + "prefixLen":25, + "network":"193.135.179.128\/25", + "version":36150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.192.0", + "prefixLen":25, + "network":"193.135.192.0\/25", + "version":36149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.192.128", + "prefixLen":25, + "network":"193.135.192.128\/25", + "version":36148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.193.0", + "prefixLen":25, + "network":"193.135.193.0\/25", + "version":36147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.193.128", + "prefixLen":25, + "network":"193.135.193.128\/25", + "version":36146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.194.0", + "prefixLen":25, + "network":"193.135.194.0\/25", + "version":36145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.194.128", + "prefixLen":25, + "network":"193.135.194.128\/25", + "version":36144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.195.0", + "prefixLen":25, + "network":"193.135.195.0\/25", + "version":36143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.195.128", + "prefixLen":25, + "network":"193.135.195.128\/25", + "version":36142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.208.0", + "prefixLen":25, + "network":"193.135.208.0\/25", + "version":36141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.208.128", + "prefixLen":25, + "network":"193.135.208.128\/25", + "version":36140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.209.0", + "prefixLen":25, + "network":"193.135.209.0\/25", + "version":36139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.209.128", + "prefixLen":25, + "network":"193.135.209.128\/25", + "version":36138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.210.0", + "prefixLen":25, + "network":"193.135.210.0\/25", + "version":36137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.210.128", + "prefixLen":25, + "network":"193.135.210.128\/25", + "version":36136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.211.0", + "prefixLen":25, + "network":"193.135.211.0\/25", + "version":36135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.211.128", + "prefixLen":25, + "network":"193.135.211.128\/25", + "version":36134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.224.0", + "prefixLen":25, + "network":"193.135.224.0\/25", + "version":36133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.224.128", + "prefixLen":25, + "network":"193.135.224.128\/25", + "version":36132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.225.0", + "prefixLen":25, + "network":"193.135.225.0\/25", + "version":36131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.225.128", + "prefixLen":25, + "network":"193.135.225.128\/25", + "version":36130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.226.0", + "prefixLen":25, + "network":"193.135.226.0\/25", + "version":36129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.226.128", + "prefixLen":25, + "network":"193.135.226.128\/25", + "version":36128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.227.0", + "prefixLen":25, + "network":"193.135.227.0\/25", + "version":36127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.227.128", + "prefixLen":25, + "network":"193.135.227.128\/25", + "version":36126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.240.0", + "prefixLen":25, + "network":"193.135.240.0\/25", + "version":36125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.240.128", + "prefixLen":25, + "network":"193.135.240.128\/25", + "version":36124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.241.0", + "prefixLen":25, + "network":"193.135.241.0\/25", + "version":36123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.241.128", + "prefixLen":25, + "network":"193.135.241.128\/25", + "version":36122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.242.0", + "prefixLen":25, + "network":"193.135.242.0\/25", + "version":36121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.242.128", + "prefixLen":25, + "network":"193.135.242.128\/25", + "version":36120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.243.0", + "prefixLen":25, + "network":"193.135.243.0\/25", + "version":36119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.135.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.135.243.128", + "prefixLen":25, + "network":"193.135.243.128\/25", + "version":36118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64823 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.0.0", + "prefixLen":25, + "network":"193.136.0.0\/25", + "version":36245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.0.128", + "prefixLen":25, + "network":"193.136.0.128\/25", + "version":36372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.1.0", + "prefixLen":25, + "network":"193.136.1.0\/25", + "version":36371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.1.128", + "prefixLen":25, + "network":"193.136.1.128\/25", + "version":36370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.2.0", + "prefixLen":25, + "network":"193.136.2.0\/25", + "version":36369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.2.128", + "prefixLen":25, + "network":"193.136.2.128\/25", + "version":36368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.3.0", + "prefixLen":25, + "network":"193.136.3.0\/25", + "version":36367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.3.128", + "prefixLen":25, + "network":"193.136.3.128\/25", + "version":36366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.16.0", + "prefixLen":25, + "network":"193.136.16.0\/25", + "version":36365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.16.128", + "prefixLen":25, + "network":"193.136.16.128\/25", + "version":36364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.17.0", + "prefixLen":25, + "network":"193.136.17.0\/25", + "version":36363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.17.128", + "prefixLen":25, + "network":"193.136.17.128\/25", + "version":36362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.18.0", + "prefixLen":25, + "network":"193.136.18.0\/25", + "version":36361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.18.128", + "prefixLen":25, + "network":"193.136.18.128\/25", + "version":36360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.19.0", + "prefixLen":25, + "network":"193.136.19.0\/25", + "version":36359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.19.128", + "prefixLen":25, + "network":"193.136.19.128\/25", + "version":36358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.32.0", + "prefixLen":25, + "network":"193.136.32.0\/25", + "version":36357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.32.128", + "prefixLen":25, + "network":"193.136.32.128\/25", + "version":36356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.33.0", + "prefixLen":25, + "network":"193.136.33.0\/25", + "version":36355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.33.128", + "prefixLen":25, + "network":"193.136.33.128\/25", + "version":36354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.34.0", + "prefixLen":25, + "network":"193.136.34.0\/25", + "version":36353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.34.128", + "prefixLen":25, + "network":"193.136.34.128\/25", + "version":36352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.35.0", + "prefixLen":25, + "network":"193.136.35.0\/25", + "version":36351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.35.128", + "prefixLen":25, + "network":"193.136.35.128\/25", + "version":36350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.48.0", + "prefixLen":25, + "network":"193.136.48.0\/25", + "version":36349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.48.128", + "prefixLen":25, + "network":"193.136.48.128\/25", + "version":36348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.49.0", + "prefixLen":25, + "network":"193.136.49.0\/25", + "version":36347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.49.128", + "prefixLen":25, + "network":"193.136.49.128\/25", + "version":36346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.50.0", + "prefixLen":25, + "network":"193.136.50.0\/25", + "version":36345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.50.128", + "prefixLen":25, + "network":"193.136.50.128\/25", + "version":36344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.51.0", + "prefixLen":25, + "network":"193.136.51.0\/25", + "version":36343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.51.128", + "prefixLen":25, + "network":"193.136.51.128\/25", + "version":36342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.64.0", + "prefixLen":25, + "network":"193.136.64.0\/25", + "version":36341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.64.128", + "prefixLen":25, + "network":"193.136.64.128\/25", + "version":36340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.65.0", + "prefixLen":25, + "network":"193.136.65.0\/25", + "version":36339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.65.128", + "prefixLen":25, + "network":"193.136.65.128\/25", + "version":36338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.66.0", + "prefixLen":25, + "network":"193.136.66.0\/25", + "version":36337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.66.128", + "prefixLen":25, + "network":"193.136.66.128\/25", + "version":36336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.67.0", + "prefixLen":25, + "network":"193.136.67.0\/25", + "version":36335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.67.128", + "prefixLen":25, + "network":"193.136.67.128\/25", + "version":36334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.80.0", + "prefixLen":25, + "network":"193.136.80.0\/25", + "version":36333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.80.128", + "prefixLen":25, + "network":"193.136.80.128\/25", + "version":36332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.81.0", + "prefixLen":25, + "network":"193.136.81.0\/25", + "version":36331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.81.128", + "prefixLen":25, + "network":"193.136.81.128\/25", + "version":36330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.82.0", + "prefixLen":25, + "network":"193.136.82.0\/25", + "version":36329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.82.128", + "prefixLen":25, + "network":"193.136.82.128\/25", + "version":36328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.83.0", + "prefixLen":25, + "network":"193.136.83.0\/25", + "version":36327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.83.128", + "prefixLen":25, + "network":"193.136.83.128\/25", + "version":36326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.96.0", + "prefixLen":25, + "network":"193.136.96.0\/25", + "version":36325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.96.128", + "prefixLen":25, + "network":"193.136.96.128\/25", + "version":36324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.97.0", + "prefixLen":25, + "network":"193.136.97.0\/25", + "version":36323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.97.128", + "prefixLen":25, + "network":"193.136.97.128\/25", + "version":36322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.98.0", + "prefixLen":25, + "network":"193.136.98.0\/25", + "version":36321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.98.128", + "prefixLen":25, + "network":"193.136.98.128\/25", + "version":36320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.99.0", + "prefixLen":25, + "network":"193.136.99.0\/25", + "version":36319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.99.128", + "prefixLen":25, + "network":"193.136.99.128\/25", + "version":36318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.112.0", + "prefixLen":25, + "network":"193.136.112.0\/25", + "version":36317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.112.128", + "prefixLen":25, + "network":"193.136.112.128\/25", + "version":36316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.113.0", + "prefixLen":25, + "network":"193.136.113.0\/25", + "version":36315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.113.128", + "prefixLen":25, + "network":"193.136.113.128\/25", + "version":36314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.114.0", + "prefixLen":25, + "network":"193.136.114.0\/25", + "version":36313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.114.128", + "prefixLen":25, + "network":"193.136.114.128\/25", + "version":36312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.115.0", + "prefixLen":25, + "network":"193.136.115.0\/25", + "version":36311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.115.128", + "prefixLen":25, + "network":"193.136.115.128\/25", + "version":36310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.128.0", + "prefixLen":25, + "network":"193.136.128.0\/25", + "version":36309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.128.128", + "prefixLen":25, + "network":"193.136.128.128\/25", + "version":36308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.129.0", + "prefixLen":25, + "network":"193.136.129.0\/25", + "version":36307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.129.128", + "prefixLen":25, + "network":"193.136.129.128\/25", + "version":36306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.130.0", + "prefixLen":25, + "network":"193.136.130.0\/25", + "version":36305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.130.128", + "prefixLen":25, + "network":"193.136.130.128\/25", + "version":36304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.131.0", + "prefixLen":25, + "network":"193.136.131.0\/25", + "version":36303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.131.128", + "prefixLen":25, + "network":"193.136.131.128\/25", + "version":36302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.144.0", + "prefixLen":25, + "network":"193.136.144.0\/25", + "version":36301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.144.128", + "prefixLen":25, + "network":"193.136.144.128\/25", + "version":36300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.145.0", + "prefixLen":25, + "network":"193.136.145.0\/25", + "version":36299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.145.128", + "prefixLen":25, + "network":"193.136.145.128\/25", + "version":36298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.146.0", + "prefixLen":25, + "network":"193.136.146.0\/25", + "version":36297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.146.128", + "prefixLen":25, + "network":"193.136.146.128\/25", + "version":36296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.147.0", + "prefixLen":25, + "network":"193.136.147.0\/25", + "version":36295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.147.128", + "prefixLen":25, + "network":"193.136.147.128\/25", + "version":36294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.160.0", + "prefixLen":25, + "network":"193.136.160.0\/25", + "version":36293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.160.128", + "prefixLen":25, + "network":"193.136.160.128\/25", + "version":36292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.161.0", + "prefixLen":25, + "network":"193.136.161.0\/25", + "version":36291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.161.128", + "prefixLen":25, + "network":"193.136.161.128\/25", + "version":36290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.162.0", + "prefixLen":25, + "network":"193.136.162.0\/25", + "version":36289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.162.128", + "prefixLen":25, + "network":"193.136.162.128\/25", + "version":36288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.163.0", + "prefixLen":25, + "network":"193.136.163.0\/25", + "version":36287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.163.128", + "prefixLen":25, + "network":"193.136.163.128\/25", + "version":36286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.176.0", + "prefixLen":25, + "network":"193.136.176.0\/25", + "version":36285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.176.128", + "prefixLen":25, + "network":"193.136.176.128\/25", + "version":36284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.177.0", + "prefixLen":25, + "network":"193.136.177.0\/25", + "version":36283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.177.128", + "prefixLen":25, + "network":"193.136.177.128\/25", + "version":36282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.178.0", + "prefixLen":25, + "network":"193.136.178.0\/25", + "version":36281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.178.128", + "prefixLen":25, + "network":"193.136.178.128\/25", + "version":36280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.179.0", + "prefixLen":25, + "network":"193.136.179.0\/25", + "version":36279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.179.128", + "prefixLen":25, + "network":"193.136.179.128\/25", + "version":36278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.192.0", + "prefixLen":25, + "network":"193.136.192.0\/25", + "version":36277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.192.128", + "prefixLen":25, + "network":"193.136.192.128\/25", + "version":36276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.193.0", + "prefixLen":25, + "network":"193.136.193.0\/25", + "version":36275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.193.128", + "prefixLen":25, + "network":"193.136.193.128\/25", + "version":36274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.194.0", + "prefixLen":25, + "network":"193.136.194.0\/25", + "version":36273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.194.128", + "prefixLen":25, + "network":"193.136.194.128\/25", + "version":36272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.195.0", + "prefixLen":25, + "network":"193.136.195.0\/25", + "version":36271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.195.128", + "prefixLen":25, + "network":"193.136.195.128\/25", + "version":36270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.208.0", + "prefixLen":25, + "network":"193.136.208.0\/25", + "version":36269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.208.128", + "prefixLen":25, + "network":"193.136.208.128\/25", + "version":36268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.209.0", + "prefixLen":25, + "network":"193.136.209.0\/25", + "version":36267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.209.128", + "prefixLen":25, + "network":"193.136.209.128\/25", + "version":36266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.210.0", + "prefixLen":25, + "network":"193.136.210.0\/25", + "version":36265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.210.128", + "prefixLen":25, + "network":"193.136.210.128\/25", + "version":36264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.211.0", + "prefixLen":25, + "network":"193.136.211.0\/25", + "version":36263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.211.128", + "prefixLen":25, + "network":"193.136.211.128\/25", + "version":36262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.224.0", + "prefixLen":25, + "network":"193.136.224.0\/25", + "version":36261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.224.128", + "prefixLen":25, + "network":"193.136.224.128\/25", + "version":36260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.225.0", + "prefixLen":25, + "network":"193.136.225.0\/25", + "version":36259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.225.128", + "prefixLen":25, + "network":"193.136.225.128\/25", + "version":36258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.226.0", + "prefixLen":25, + "network":"193.136.226.0\/25", + "version":36257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.226.128", + "prefixLen":25, + "network":"193.136.226.128\/25", + "version":36256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.227.0", + "prefixLen":25, + "network":"193.136.227.0\/25", + "version":36255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.227.128", + "prefixLen":25, + "network":"193.136.227.128\/25", + "version":36254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.240.0", + "prefixLen":25, + "network":"193.136.240.0\/25", + "version":36253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.240.128", + "prefixLen":25, + "network":"193.136.240.128\/25", + "version":36252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.241.0", + "prefixLen":25, + "network":"193.136.241.0\/25", + "version":36251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.241.128", + "prefixLen":25, + "network":"193.136.241.128\/25", + "version":36250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.242.0", + "prefixLen":25, + "network":"193.136.242.0\/25", + "version":36249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.242.128", + "prefixLen":25, + "network":"193.136.242.128\/25", + "version":36248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.243.0", + "prefixLen":25, + "network":"193.136.243.0\/25", + "version":36247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.136.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.136.243.128", + "prefixLen":25, + "network":"193.136.243.128\/25", + "version":36246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64824 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.0.0", + "prefixLen":25, + "network":"193.137.0.0\/25", + "version":36373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.0.128", + "prefixLen":25, + "network":"193.137.0.128\/25", + "version":36500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.1.0", + "prefixLen":25, + "network":"193.137.1.0\/25", + "version":36499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.1.128", + "prefixLen":25, + "network":"193.137.1.128\/25", + "version":36498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.2.0", + "prefixLen":25, + "network":"193.137.2.0\/25", + "version":36497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.2.128", + "prefixLen":25, + "network":"193.137.2.128\/25", + "version":36496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.3.0", + "prefixLen":25, + "network":"193.137.3.0\/25", + "version":36495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.3.128", + "prefixLen":25, + "network":"193.137.3.128\/25", + "version":36494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.16.0", + "prefixLen":25, + "network":"193.137.16.0\/25", + "version":36493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.16.128", + "prefixLen":25, + "network":"193.137.16.128\/25", + "version":36492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.17.0", + "prefixLen":25, + "network":"193.137.17.0\/25", + "version":36491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.17.128", + "prefixLen":25, + "network":"193.137.17.128\/25", + "version":36490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.18.0", + "prefixLen":25, + "network":"193.137.18.0\/25", + "version":36489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.18.128", + "prefixLen":25, + "network":"193.137.18.128\/25", + "version":36488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.19.0", + "prefixLen":25, + "network":"193.137.19.0\/25", + "version":36487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.19.128", + "prefixLen":25, + "network":"193.137.19.128\/25", + "version":36486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.32.0", + "prefixLen":25, + "network":"193.137.32.0\/25", + "version":36485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.32.128", + "prefixLen":25, + "network":"193.137.32.128\/25", + "version":36484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.33.0", + "prefixLen":25, + "network":"193.137.33.0\/25", + "version":36483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.33.128", + "prefixLen":25, + "network":"193.137.33.128\/25", + "version":36482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.34.0", + "prefixLen":25, + "network":"193.137.34.0\/25", + "version":36481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.34.128", + "prefixLen":25, + "network":"193.137.34.128\/25", + "version":36480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.35.0", + "prefixLen":25, + "network":"193.137.35.0\/25", + "version":36479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.35.128", + "prefixLen":25, + "network":"193.137.35.128\/25", + "version":36478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.48.0", + "prefixLen":25, + "network":"193.137.48.0\/25", + "version":36477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.48.128", + "prefixLen":25, + "network":"193.137.48.128\/25", + "version":36476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.49.0", + "prefixLen":25, + "network":"193.137.49.0\/25", + "version":36475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.49.128", + "prefixLen":25, + "network":"193.137.49.128\/25", + "version":36474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.50.0", + "prefixLen":25, + "network":"193.137.50.0\/25", + "version":36473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.50.128", + "prefixLen":25, + "network":"193.137.50.128\/25", + "version":36472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.51.0", + "prefixLen":25, + "network":"193.137.51.0\/25", + "version":36471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.51.128", + "prefixLen":25, + "network":"193.137.51.128\/25", + "version":36470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.64.0", + "prefixLen":25, + "network":"193.137.64.0\/25", + "version":36469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.64.128", + "prefixLen":25, + "network":"193.137.64.128\/25", + "version":36468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.65.0", + "prefixLen":25, + "network":"193.137.65.0\/25", + "version":36467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.65.128", + "prefixLen":25, + "network":"193.137.65.128\/25", + "version":36466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.66.0", + "prefixLen":25, + "network":"193.137.66.0\/25", + "version":36465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.66.128", + "prefixLen":25, + "network":"193.137.66.128\/25", + "version":36464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.67.0", + "prefixLen":25, + "network":"193.137.67.0\/25", + "version":36463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.67.128", + "prefixLen":25, + "network":"193.137.67.128\/25", + "version":36462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.80.0", + "prefixLen":25, + "network":"193.137.80.0\/25", + "version":36461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.80.128", + "prefixLen":25, + "network":"193.137.80.128\/25", + "version":36460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.81.0", + "prefixLen":25, + "network":"193.137.81.0\/25", + "version":36459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.81.128", + "prefixLen":25, + "network":"193.137.81.128\/25", + "version":36458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.82.0", + "prefixLen":25, + "network":"193.137.82.0\/25", + "version":36457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.82.128", + "prefixLen":25, + "network":"193.137.82.128\/25", + "version":36456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.83.0", + "prefixLen":25, + "network":"193.137.83.0\/25", + "version":36455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.83.128", + "prefixLen":25, + "network":"193.137.83.128\/25", + "version":36454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.96.0", + "prefixLen":25, + "network":"193.137.96.0\/25", + "version":36453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.96.128", + "prefixLen":25, + "network":"193.137.96.128\/25", + "version":36452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.97.0", + "prefixLen":25, + "network":"193.137.97.0\/25", + "version":36451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.97.128", + "prefixLen":25, + "network":"193.137.97.128\/25", + "version":36450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.98.0", + "prefixLen":25, + "network":"193.137.98.0\/25", + "version":36449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.98.128", + "prefixLen":25, + "network":"193.137.98.128\/25", + "version":36448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.99.0", + "prefixLen":25, + "network":"193.137.99.0\/25", + "version":36447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.99.128", + "prefixLen":25, + "network":"193.137.99.128\/25", + "version":36446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.112.0", + "prefixLen":25, + "network":"193.137.112.0\/25", + "version":36445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.112.128", + "prefixLen":25, + "network":"193.137.112.128\/25", + "version":36444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.113.0", + "prefixLen":25, + "network":"193.137.113.0\/25", + "version":36443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.113.128", + "prefixLen":25, + "network":"193.137.113.128\/25", + "version":36442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.114.0", + "prefixLen":25, + "network":"193.137.114.0\/25", + "version":36441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.114.128", + "prefixLen":25, + "network":"193.137.114.128\/25", + "version":36440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.115.0", + "prefixLen":25, + "network":"193.137.115.0\/25", + "version":36439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.115.128", + "prefixLen":25, + "network":"193.137.115.128\/25", + "version":36438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.128.0", + "prefixLen":25, + "network":"193.137.128.0\/25", + "version":36437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.128.128", + "prefixLen":25, + "network":"193.137.128.128\/25", + "version":36436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.129.0", + "prefixLen":25, + "network":"193.137.129.0\/25", + "version":36435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.129.128", + "prefixLen":25, + "network":"193.137.129.128\/25", + "version":36434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.130.0", + "prefixLen":25, + "network":"193.137.130.0\/25", + "version":36433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.130.128", + "prefixLen":25, + "network":"193.137.130.128\/25", + "version":36432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.131.0", + "prefixLen":25, + "network":"193.137.131.0\/25", + "version":36431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.131.128", + "prefixLen":25, + "network":"193.137.131.128\/25", + "version":36430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.144.0", + "prefixLen":25, + "network":"193.137.144.0\/25", + "version":36429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.144.128", + "prefixLen":25, + "network":"193.137.144.128\/25", + "version":36428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.145.0", + "prefixLen":25, + "network":"193.137.145.0\/25", + "version":36427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.145.128", + "prefixLen":25, + "network":"193.137.145.128\/25", + "version":36426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.146.0", + "prefixLen":25, + "network":"193.137.146.0\/25", + "version":36425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.146.128", + "prefixLen":25, + "network":"193.137.146.128\/25", + "version":36424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.147.0", + "prefixLen":25, + "network":"193.137.147.0\/25", + "version":36423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.147.128", + "prefixLen":25, + "network":"193.137.147.128\/25", + "version":36422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.160.0", + "prefixLen":25, + "network":"193.137.160.0\/25", + "version":36421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.160.128", + "prefixLen":25, + "network":"193.137.160.128\/25", + "version":36420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.161.0", + "prefixLen":25, + "network":"193.137.161.0\/25", + "version":36419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.161.128", + "prefixLen":25, + "network":"193.137.161.128\/25", + "version":36418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.162.0", + "prefixLen":25, + "network":"193.137.162.0\/25", + "version":36417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.162.128", + "prefixLen":25, + "network":"193.137.162.128\/25", + "version":36416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.163.0", + "prefixLen":25, + "network":"193.137.163.0\/25", + "version":36415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.163.128", + "prefixLen":25, + "network":"193.137.163.128\/25", + "version":36414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.176.0", + "prefixLen":25, + "network":"193.137.176.0\/25", + "version":36413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.176.128", + "prefixLen":25, + "network":"193.137.176.128\/25", + "version":36412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.177.0", + "prefixLen":25, + "network":"193.137.177.0\/25", + "version":36411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.177.128", + "prefixLen":25, + "network":"193.137.177.128\/25", + "version":36410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.178.0", + "prefixLen":25, + "network":"193.137.178.0\/25", + "version":36409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.178.128", + "prefixLen":25, + "network":"193.137.178.128\/25", + "version":36408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.179.0", + "prefixLen":25, + "network":"193.137.179.0\/25", + "version":36407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.179.128", + "prefixLen":25, + "network":"193.137.179.128\/25", + "version":36406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.192.0", + "prefixLen":25, + "network":"193.137.192.0\/25", + "version":36405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.192.128", + "prefixLen":25, + "network":"193.137.192.128\/25", + "version":36404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.193.0", + "prefixLen":25, + "network":"193.137.193.0\/25", + "version":36403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.193.128", + "prefixLen":25, + "network":"193.137.193.128\/25", + "version":36402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.194.0", + "prefixLen":25, + "network":"193.137.194.0\/25", + "version":36401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.194.128", + "prefixLen":25, + "network":"193.137.194.128\/25", + "version":36400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.195.0", + "prefixLen":25, + "network":"193.137.195.0\/25", + "version":36399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.195.128", + "prefixLen":25, + "network":"193.137.195.128\/25", + "version":36398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.208.0", + "prefixLen":25, + "network":"193.137.208.0\/25", + "version":36397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.208.128", + "prefixLen":25, + "network":"193.137.208.128\/25", + "version":36396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.209.0", + "prefixLen":25, + "network":"193.137.209.0\/25", + "version":36395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.209.128", + "prefixLen":25, + "network":"193.137.209.128\/25", + "version":36394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.210.0", + "prefixLen":25, + "network":"193.137.210.0\/25", + "version":36393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.210.128", + "prefixLen":25, + "network":"193.137.210.128\/25", + "version":36392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.211.0", + "prefixLen":25, + "network":"193.137.211.0\/25", + "version":36391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.211.128", + "prefixLen":25, + "network":"193.137.211.128\/25", + "version":36390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.224.0", + "prefixLen":25, + "network":"193.137.224.0\/25", + "version":36389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.224.128", + "prefixLen":25, + "network":"193.137.224.128\/25", + "version":36388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.225.0", + "prefixLen":25, + "network":"193.137.225.0\/25", + "version":36387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.225.128", + "prefixLen":25, + "network":"193.137.225.128\/25", + "version":36386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.226.0", + "prefixLen":25, + "network":"193.137.226.0\/25", + "version":36385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.226.128", + "prefixLen":25, + "network":"193.137.226.128\/25", + "version":36384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.227.0", + "prefixLen":25, + "network":"193.137.227.0\/25", + "version":36383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.227.128", + "prefixLen":25, + "network":"193.137.227.128\/25", + "version":36382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.240.0", + "prefixLen":25, + "network":"193.137.240.0\/25", + "version":36381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.240.128", + "prefixLen":25, + "network":"193.137.240.128\/25", + "version":36380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.241.0", + "prefixLen":25, + "network":"193.137.241.0\/25", + "version":36379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.241.128", + "prefixLen":25, + "network":"193.137.241.128\/25", + "version":36378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.242.0", + "prefixLen":25, + "network":"193.137.242.0\/25", + "version":36377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.242.128", + "prefixLen":25, + "network":"193.137.242.128\/25", + "version":36376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.243.0", + "prefixLen":25, + "network":"193.137.243.0\/25", + "version":36375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.137.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.137.243.128", + "prefixLen":25, + "network":"193.137.243.128\/25", + "version":36374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64825 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.0.0", + "prefixLen":25, + "network":"193.138.0.0\/25", + "version":36501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.0.128", + "prefixLen":25, + "network":"193.138.0.128\/25", + "version":36628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.1.0", + "prefixLen":25, + "network":"193.138.1.0\/25", + "version":36627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.1.128", + "prefixLen":25, + "network":"193.138.1.128\/25", + "version":36626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.2.0", + "prefixLen":25, + "network":"193.138.2.0\/25", + "version":36625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.2.128", + "prefixLen":25, + "network":"193.138.2.128\/25", + "version":36624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.3.0", + "prefixLen":25, + "network":"193.138.3.0\/25", + "version":36623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.3.128", + "prefixLen":25, + "network":"193.138.3.128\/25", + "version":36622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.16.0", + "prefixLen":25, + "network":"193.138.16.0\/25", + "version":36621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.16.128", + "prefixLen":25, + "network":"193.138.16.128\/25", + "version":36620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.17.0", + "prefixLen":25, + "network":"193.138.17.0\/25", + "version":36619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.17.128", + "prefixLen":25, + "network":"193.138.17.128\/25", + "version":36618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.18.0", + "prefixLen":25, + "network":"193.138.18.0\/25", + "version":36617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.18.128", + "prefixLen":25, + "network":"193.138.18.128\/25", + "version":36616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.19.0", + "prefixLen":25, + "network":"193.138.19.0\/25", + "version":36615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.19.128", + "prefixLen":25, + "network":"193.138.19.128\/25", + "version":36614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.32.0", + "prefixLen":25, + "network":"193.138.32.0\/25", + "version":36613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.32.128", + "prefixLen":25, + "network":"193.138.32.128\/25", + "version":36612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.33.0", + "prefixLen":25, + "network":"193.138.33.0\/25", + "version":36611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.33.128", + "prefixLen":25, + "network":"193.138.33.128\/25", + "version":36610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.34.0", + "prefixLen":25, + "network":"193.138.34.0\/25", + "version":36609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.34.128", + "prefixLen":25, + "network":"193.138.34.128\/25", + "version":36608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.35.0", + "prefixLen":25, + "network":"193.138.35.0\/25", + "version":36607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.35.128", + "prefixLen":25, + "network":"193.138.35.128\/25", + "version":36606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.48.0", + "prefixLen":25, + "network":"193.138.48.0\/25", + "version":36605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.48.128", + "prefixLen":25, + "network":"193.138.48.128\/25", + "version":36604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.49.0", + "prefixLen":25, + "network":"193.138.49.0\/25", + "version":36603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.49.128", + "prefixLen":25, + "network":"193.138.49.128\/25", + "version":36602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.50.0", + "prefixLen":25, + "network":"193.138.50.0\/25", + "version":36601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.50.128", + "prefixLen":25, + "network":"193.138.50.128\/25", + "version":36600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.51.0", + "prefixLen":25, + "network":"193.138.51.0\/25", + "version":36599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.51.128", + "prefixLen":25, + "network":"193.138.51.128\/25", + "version":36598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.64.0", + "prefixLen":25, + "network":"193.138.64.0\/25", + "version":36597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.64.128", + "prefixLen":25, + "network":"193.138.64.128\/25", + "version":36596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.65.0", + "prefixLen":25, + "network":"193.138.65.0\/25", + "version":36595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.65.128", + "prefixLen":25, + "network":"193.138.65.128\/25", + "version":36594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.66.0", + "prefixLen":25, + "network":"193.138.66.0\/25", + "version":36593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.66.128", + "prefixLen":25, + "network":"193.138.66.128\/25", + "version":36592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.67.0", + "prefixLen":25, + "network":"193.138.67.0\/25", + "version":36591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.67.128", + "prefixLen":25, + "network":"193.138.67.128\/25", + "version":36590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.80.0", + "prefixLen":25, + "network":"193.138.80.0\/25", + "version":36589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.80.128", + "prefixLen":25, + "network":"193.138.80.128\/25", + "version":36588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.81.0", + "prefixLen":25, + "network":"193.138.81.0\/25", + "version":36587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.81.128", + "prefixLen":25, + "network":"193.138.81.128\/25", + "version":36586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.82.0", + "prefixLen":25, + "network":"193.138.82.0\/25", + "version":36585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.82.128", + "prefixLen":25, + "network":"193.138.82.128\/25", + "version":36584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.83.0", + "prefixLen":25, + "network":"193.138.83.0\/25", + "version":36583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.83.128", + "prefixLen":25, + "network":"193.138.83.128\/25", + "version":36582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.96.0", + "prefixLen":25, + "network":"193.138.96.0\/25", + "version":36581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.96.128", + "prefixLen":25, + "network":"193.138.96.128\/25", + "version":36580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.97.0", + "prefixLen":25, + "network":"193.138.97.0\/25", + "version":36579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.97.128", + "prefixLen":25, + "network":"193.138.97.128\/25", + "version":36578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.98.0", + "prefixLen":25, + "network":"193.138.98.0\/25", + "version":36577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.98.128", + "prefixLen":25, + "network":"193.138.98.128\/25", + "version":36576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.99.0", + "prefixLen":25, + "network":"193.138.99.0\/25", + "version":36575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.99.128", + "prefixLen":25, + "network":"193.138.99.128\/25", + "version":36574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.112.0", + "prefixLen":25, + "network":"193.138.112.0\/25", + "version":36573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.112.128", + "prefixLen":25, + "network":"193.138.112.128\/25", + "version":36572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.113.0", + "prefixLen":25, + "network":"193.138.113.0\/25", + "version":36571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.113.128", + "prefixLen":25, + "network":"193.138.113.128\/25", + "version":36570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.114.0", + "prefixLen":25, + "network":"193.138.114.0\/25", + "version":36569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.114.128", + "prefixLen":25, + "network":"193.138.114.128\/25", + "version":36568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.115.0", + "prefixLen":25, + "network":"193.138.115.0\/25", + "version":36567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.115.128", + "prefixLen":25, + "network":"193.138.115.128\/25", + "version":36566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.128.0", + "prefixLen":25, + "network":"193.138.128.0\/25", + "version":36565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.128.128", + "prefixLen":25, + "network":"193.138.128.128\/25", + "version":36564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.129.0", + "prefixLen":25, + "network":"193.138.129.0\/25", + "version":36563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.129.128", + "prefixLen":25, + "network":"193.138.129.128\/25", + "version":36562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.130.0", + "prefixLen":25, + "network":"193.138.130.0\/25", + "version":36561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.130.128", + "prefixLen":25, + "network":"193.138.130.128\/25", + "version":36560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.131.0", + "prefixLen":25, + "network":"193.138.131.0\/25", + "version":36559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.131.128", + "prefixLen":25, + "network":"193.138.131.128\/25", + "version":36558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.144.0", + "prefixLen":25, + "network":"193.138.144.0\/25", + "version":36557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.144.128", + "prefixLen":25, + "network":"193.138.144.128\/25", + "version":36556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.145.0", + "prefixLen":25, + "network":"193.138.145.0\/25", + "version":36555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.145.128", + "prefixLen":25, + "network":"193.138.145.128\/25", + "version":36554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.146.0", + "prefixLen":25, + "network":"193.138.146.0\/25", + "version":36553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.146.128", + "prefixLen":25, + "network":"193.138.146.128\/25", + "version":36552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.147.0", + "prefixLen":25, + "network":"193.138.147.0\/25", + "version":36551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.147.128", + "prefixLen":25, + "network":"193.138.147.128\/25", + "version":36550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.160.0", + "prefixLen":25, + "network":"193.138.160.0\/25", + "version":36549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.160.128", + "prefixLen":25, + "network":"193.138.160.128\/25", + "version":36548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.161.0", + "prefixLen":25, + "network":"193.138.161.0\/25", + "version":36547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.161.128", + "prefixLen":25, + "network":"193.138.161.128\/25", + "version":36546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.162.0", + "prefixLen":25, + "network":"193.138.162.0\/25", + "version":36545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.162.128", + "prefixLen":25, + "network":"193.138.162.128\/25", + "version":36544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.163.0", + "prefixLen":25, + "network":"193.138.163.0\/25", + "version":36543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.163.128", + "prefixLen":25, + "network":"193.138.163.128\/25", + "version":36542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.176.0", + "prefixLen":25, + "network":"193.138.176.0\/25", + "version":36541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.176.128", + "prefixLen":25, + "network":"193.138.176.128\/25", + "version":36540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.177.0", + "prefixLen":25, + "network":"193.138.177.0\/25", + "version":36539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.177.128", + "prefixLen":25, + "network":"193.138.177.128\/25", + "version":36538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.178.0", + "prefixLen":25, + "network":"193.138.178.0\/25", + "version":36537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.178.128", + "prefixLen":25, + "network":"193.138.178.128\/25", + "version":36536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.179.0", + "prefixLen":25, + "network":"193.138.179.0\/25", + "version":36535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.179.128", + "prefixLen":25, + "network":"193.138.179.128\/25", + "version":36534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.192.0", + "prefixLen":25, + "network":"193.138.192.0\/25", + "version":36533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.192.128", + "prefixLen":25, + "network":"193.138.192.128\/25", + "version":36532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.193.0", + "prefixLen":25, + "network":"193.138.193.0\/25", + "version":36531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.193.128", + "prefixLen":25, + "network":"193.138.193.128\/25", + "version":36530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.194.0", + "prefixLen":25, + "network":"193.138.194.0\/25", + "version":36529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.194.128", + "prefixLen":25, + "network":"193.138.194.128\/25", + "version":36528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.195.0", + "prefixLen":25, + "network":"193.138.195.0\/25", + "version":36527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.195.128", + "prefixLen":25, + "network":"193.138.195.128\/25", + "version":36526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.208.0", + "prefixLen":25, + "network":"193.138.208.0\/25", + "version":36525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.208.128", + "prefixLen":25, + "network":"193.138.208.128\/25", + "version":36524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.209.0", + "prefixLen":25, + "network":"193.138.209.0\/25", + "version":36523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.209.128", + "prefixLen":25, + "network":"193.138.209.128\/25", + "version":36522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.210.0", + "prefixLen":25, + "network":"193.138.210.0\/25", + "version":36521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.210.128", + "prefixLen":25, + "network":"193.138.210.128\/25", + "version":36520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.211.0", + "prefixLen":25, + "network":"193.138.211.0\/25", + "version":36519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.211.128", + "prefixLen":25, + "network":"193.138.211.128\/25", + "version":36518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.224.0", + "prefixLen":25, + "network":"193.138.224.0\/25", + "version":36517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.224.128", + "prefixLen":25, + "network":"193.138.224.128\/25", + "version":36516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.225.0", + "prefixLen":25, + "network":"193.138.225.0\/25", + "version":36515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.225.128", + "prefixLen":25, + "network":"193.138.225.128\/25", + "version":36514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.226.0", + "prefixLen":25, + "network":"193.138.226.0\/25", + "version":36513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.226.128", + "prefixLen":25, + "network":"193.138.226.128\/25", + "version":36512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.227.0", + "prefixLen":25, + "network":"193.138.227.0\/25", + "version":36511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.227.128", + "prefixLen":25, + "network":"193.138.227.128\/25", + "version":36510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.240.0", + "prefixLen":25, + "network":"193.138.240.0\/25", + "version":36509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.240.128", + "prefixLen":25, + "network":"193.138.240.128\/25", + "version":36508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.241.0", + "prefixLen":25, + "network":"193.138.241.0\/25", + "version":36507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.241.128", + "prefixLen":25, + "network":"193.138.241.128\/25", + "version":36506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.242.0", + "prefixLen":25, + "network":"193.138.242.0\/25", + "version":36505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.242.128", + "prefixLen":25, + "network":"193.138.242.128\/25", + "version":36504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.243.0", + "prefixLen":25, + "network":"193.138.243.0\/25", + "version":36503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.138.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.138.243.128", + "prefixLen":25, + "network":"193.138.243.128\/25", + "version":36502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64826 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.0.0", + "prefixLen":25, + "network":"193.139.0.0\/25", + "version":37909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.0.128", + "prefixLen":25, + "network":"193.139.0.128\/25", + "version":38036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.1.0", + "prefixLen":25, + "network":"193.139.1.0\/25", + "version":38035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.1.128", + "prefixLen":25, + "network":"193.139.1.128\/25", + "version":38034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.2.0", + "prefixLen":25, + "network":"193.139.2.0\/25", + "version":38033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.2.128", + "prefixLen":25, + "network":"193.139.2.128\/25", + "version":38032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.3.0", + "prefixLen":25, + "network":"193.139.3.0\/25", + "version":38031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.3.128", + "prefixLen":25, + "network":"193.139.3.128\/25", + "version":38030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.16.0", + "prefixLen":25, + "network":"193.139.16.0\/25", + "version":38029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.16.128", + "prefixLen":25, + "network":"193.139.16.128\/25", + "version":38028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.17.0", + "prefixLen":25, + "network":"193.139.17.0\/25", + "version":38027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.17.128", + "prefixLen":25, + "network":"193.139.17.128\/25", + "version":38026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.18.0", + "prefixLen":25, + "network":"193.139.18.0\/25", + "version":38025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.18.128", + "prefixLen":25, + "network":"193.139.18.128\/25", + "version":38024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.19.0", + "prefixLen":25, + "network":"193.139.19.0\/25", + "version":38023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.19.128", + "prefixLen":25, + "network":"193.139.19.128\/25", + "version":38022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.32.0", + "prefixLen":25, + "network":"193.139.32.0\/25", + "version":38021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.32.128", + "prefixLen":25, + "network":"193.139.32.128\/25", + "version":38020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.33.0", + "prefixLen":25, + "network":"193.139.33.0\/25", + "version":38019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.33.128", + "prefixLen":25, + "network":"193.139.33.128\/25", + "version":38018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.34.0", + "prefixLen":25, + "network":"193.139.34.0\/25", + "version":38017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.34.128", + "prefixLen":25, + "network":"193.139.34.128\/25", + "version":38016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.35.0", + "prefixLen":25, + "network":"193.139.35.0\/25", + "version":38015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.35.128", + "prefixLen":25, + "network":"193.139.35.128\/25", + "version":38014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.48.0", + "prefixLen":25, + "network":"193.139.48.0\/25", + "version":38013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.48.128", + "prefixLen":25, + "network":"193.139.48.128\/25", + "version":38012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.49.0", + "prefixLen":25, + "network":"193.139.49.0\/25", + "version":38011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.49.128", + "prefixLen":25, + "network":"193.139.49.128\/25", + "version":38010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.50.0", + "prefixLen":25, + "network":"193.139.50.0\/25", + "version":38009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.50.128", + "prefixLen":25, + "network":"193.139.50.128\/25", + "version":38008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.51.0", + "prefixLen":25, + "network":"193.139.51.0\/25", + "version":38007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.51.128", + "prefixLen":25, + "network":"193.139.51.128\/25", + "version":38006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.64.0", + "prefixLen":25, + "network":"193.139.64.0\/25", + "version":38005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.64.128", + "prefixLen":25, + "network":"193.139.64.128\/25", + "version":38004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.65.0", + "prefixLen":25, + "network":"193.139.65.0\/25", + "version":38003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.65.128", + "prefixLen":25, + "network":"193.139.65.128\/25", + "version":38002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.66.0", + "prefixLen":25, + "network":"193.139.66.0\/25", + "version":38001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.66.128", + "prefixLen":25, + "network":"193.139.66.128\/25", + "version":38000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.67.0", + "prefixLen":25, + "network":"193.139.67.0\/25", + "version":37999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.67.128", + "prefixLen":25, + "network":"193.139.67.128\/25", + "version":37998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.80.0", + "prefixLen":25, + "network":"193.139.80.0\/25", + "version":37997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.80.128", + "prefixLen":25, + "network":"193.139.80.128\/25", + "version":37996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.81.0", + "prefixLen":25, + "network":"193.139.81.0\/25", + "version":37995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.81.128", + "prefixLen":25, + "network":"193.139.81.128\/25", + "version":37994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.82.0", + "prefixLen":25, + "network":"193.139.82.0\/25", + "version":37993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.82.128", + "prefixLen":25, + "network":"193.139.82.128\/25", + "version":37992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.83.0", + "prefixLen":25, + "network":"193.139.83.0\/25", + "version":37991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.83.128", + "prefixLen":25, + "network":"193.139.83.128\/25", + "version":37990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.96.0", + "prefixLen":25, + "network":"193.139.96.0\/25", + "version":37989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.96.128", + "prefixLen":25, + "network":"193.139.96.128\/25", + "version":37988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.97.0", + "prefixLen":25, + "network":"193.139.97.0\/25", + "version":37987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.97.128", + "prefixLen":25, + "network":"193.139.97.128\/25", + "version":37986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.98.0", + "prefixLen":25, + "network":"193.139.98.0\/25", + "version":37985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.98.128", + "prefixLen":25, + "network":"193.139.98.128\/25", + "version":37984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.99.0", + "prefixLen":25, + "network":"193.139.99.0\/25", + "version":37983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.99.128", + "prefixLen":25, + "network":"193.139.99.128\/25", + "version":37982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.112.0", + "prefixLen":25, + "network":"193.139.112.0\/25", + "version":37981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.112.128", + "prefixLen":25, + "network":"193.139.112.128\/25", + "version":37980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.113.0", + "prefixLen":25, + "network":"193.139.113.0\/25", + "version":37979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.113.128", + "prefixLen":25, + "network":"193.139.113.128\/25", + "version":37978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.114.0", + "prefixLen":25, + "network":"193.139.114.0\/25", + "version":37977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.114.128", + "prefixLen":25, + "network":"193.139.114.128\/25", + "version":37976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.115.0", + "prefixLen":25, + "network":"193.139.115.0\/25", + "version":37975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.115.128", + "prefixLen":25, + "network":"193.139.115.128\/25", + "version":37974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.128.0", + "prefixLen":25, + "network":"193.139.128.0\/25", + "version":37973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.128.128", + "prefixLen":25, + "network":"193.139.128.128\/25", + "version":37972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.129.0", + "prefixLen":25, + "network":"193.139.129.0\/25", + "version":37971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.129.128", + "prefixLen":25, + "network":"193.139.129.128\/25", + "version":37970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.130.0", + "prefixLen":25, + "network":"193.139.130.0\/25", + "version":37969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.130.128", + "prefixLen":25, + "network":"193.139.130.128\/25", + "version":37968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.131.0", + "prefixLen":25, + "network":"193.139.131.0\/25", + "version":37967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.131.128", + "prefixLen":25, + "network":"193.139.131.128\/25", + "version":37966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.144.0", + "prefixLen":25, + "network":"193.139.144.0\/25", + "version":37965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.144.128", + "prefixLen":25, + "network":"193.139.144.128\/25", + "version":37964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.145.0", + "prefixLen":25, + "network":"193.139.145.0\/25", + "version":37963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.145.128", + "prefixLen":25, + "network":"193.139.145.128\/25", + "version":37962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.146.0", + "prefixLen":25, + "network":"193.139.146.0\/25", + "version":37961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.146.128", + "prefixLen":25, + "network":"193.139.146.128\/25", + "version":37960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.147.0", + "prefixLen":25, + "network":"193.139.147.0\/25", + "version":37959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.147.128", + "prefixLen":25, + "network":"193.139.147.128\/25", + "version":37958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.160.0", + "prefixLen":25, + "network":"193.139.160.0\/25", + "version":37957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.160.128", + "prefixLen":25, + "network":"193.139.160.128\/25", + "version":37956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.161.0", + "prefixLen":25, + "network":"193.139.161.0\/25", + "version":37955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.161.128", + "prefixLen":25, + "network":"193.139.161.128\/25", + "version":37954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.162.0", + "prefixLen":25, + "network":"193.139.162.0\/25", + "version":37953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.162.128", + "prefixLen":25, + "network":"193.139.162.128\/25", + "version":37952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.163.0", + "prefixLen":25, + "network":"193.139.163.0\/25", + "version":37951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.163.128", + "prefixLen":25, + "network":"193.139.163.128\/25", + "version":37950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.176.0", + "prefixLen":25, + "network":"193.139.176.0\/25", + "version":37949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.176.128", + "prefixLen":25, + "network":"193.139.176.128\/25", + "version":37948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.177.0", + "prefixLen":25, + "network":"193.139.177.0\/25", + "version":37947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.177.128", + "prefixLen":25, + "network":"193.139.177.128\/25", + "version":37946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.178.0", + "prefixLen":25, + "network":"193.139.178.0\/25", + "version":37945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.178.128", + "prefixLen":25, + "network":"193.139.178.128\/25", + "version":37944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.179.0", + "prefixLen":25, + "network":"193.139.179.0\/25", + "version":37943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.179.128", + "prefixLen":25, + "network":"193.139.179.128\/25", + "version":37942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.192.0", + "prefixLen":25, + "network":"193.139.192.0\/25", + "version":37941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.192.128", + "prefixLen":25, + "network":"193.139.192.128\/25", + "version":37940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.193.0", + "prefixLen":25, + "network":"193.139.193.0\/25", + "version":37939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.193.128", + "prefixLen":25, + "network":"193.139.193.128\/25", + "version":37938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.194.0", + "prefixLen":25, + "network":"193.139.194.0\/25", + "version":37937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.194.128", + "prefixLen":25, + "network":"193.139.194.128\/25", + "version":37936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.195.0", + "prefixLen":25, + "network":"193.139.195.0\/25", + "version":37935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.195.128", + "prefixLen":25, + "network":"193.139.195.128\/25", + "version":37934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.208.0", + "prefixLen":25, + "network":"193.139.208.0\/25", + "version":37933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.208.128", + "prefixLen":25, + "network":"193.139.208.128\/25", + "version":37932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.209.0", + "prefixLen":25, + "network":"193.139.209.0\/25", + "version":37931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.209.128", + "prefixLen":25, + "network":"193.139.209.128\/25", + "version":37930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.210.0", + "prefixLen":25, + "network":"193.139.210.0\/25", + "version":37929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.210.128", + "prefixLen":25, + "network":"193.139.210.128\/25", + "version":37928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.211.0", + "prefixLen":25, + "network":"193.139.211.0\/25", + "version":37927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.211.128", + "prefixLen":25, + "network":"193.139.211.128\/25", + "version":37926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.224.0", + "prefixLen":25, + "network":"193.139.224.0\/25", + "version":37925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.224.128", + "prefixLen":25, + "network":"193.139.224.128\/25", + "version":37924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.225.0", + "prefixLen":25, + "network":"193.139.225.0\/25", + "version":37923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.225.128", + "prefixLen":25, + "network":"193.139.225.128\/25", + "version":37922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.226.0", + "prefixLen":25, + "network":"193.139.226.0\/25", + "version":37921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.226.128", + "prefixLen":25, + "network":"193.139.226.128\/25", + "version":37920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.227.0", + "prefixLen":25, + "network":"193.139.227.0\/25", + "version":37919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.227.128", + "prefixLen":25, + "network":"193.139.227.128\/25", + "version":37918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.240.0", + "prefixLen":25, + "network":"193.139.240.0\/25", + "version":37917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.240.128", + "prefixLen":25, + "network":"193.139.240.128\/25", + "version":37916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.241.0", + "prefixLen":25, + "network":"193.139.241.0\/25", + "version":37915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.241.128", + "prefixLen":25, + "network":"193.139.241.128\/25", + "version":37914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.242.0", + "prefixLen":25, + "network":"193.139.242.0\/25", + "version":37913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.242.128", + "prefixLen":25, + "network":"193.139.242.128\/25", + "version":37912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.243.0", + "prefixLen":25, + "network":"193.139.243.0\/25", + "version":37911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.139.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.139.243.128", + "prefixLen":25, + "network":"193.139.243.128\/25", + "version":37910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64827 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.0.0", + "prefixLen":25, + "network":"193.140.0.0\/25", + "version":38037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.0.128", + "prefixLen":25, + "network":"193.140.0.128\/25", + "version":38164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.1.0", + "prefixLen":25, + "network":"193.140.1.0\/25", + "version":38163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.1.128", + "prefixLen":25, + "network":"193.140.1.128\/25", + "version":38162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.2.0", + "prefixLen":25, + "network":"193.140.2.0\/25", + "version":38161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.2.128", + "prefixLen":25, + "network":"193.140.2.128\/25", + "version":38160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.3.0", + "prefixLen":25, + "network":"193.140.3.0\/25", + "version":38159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.3.128", + "prefixLen":25, + "network":"193.140.3.128\/25", + "version":38158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.16.0", + "prefixLen":25, + "network":"193.140.16.0\/25", + "version":38157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.16.128", + "prefixLen":25, + "network":"193.140.16.128\/25", + "version":38156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.17.0", + "prefixLen":25, + "network":"193.140.17.0\/25", + "version":38155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.17.128", + "prefixLen":25, + "network":"193.140.17.128\/25", + "version":38154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.18.0", + "prefixLen":25, + "network":"193.140.18.0\/25", + "version":38153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.18.128", + "prefixLen":25, + "network":"193.140.18.128\/25", + "version":38152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.19.0", + "prefixLen":25, + "network":"193.140.19.0\/25", + "version":38151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.19.128", + "prefixLen":25, + "network":"193.140.19.128\/25", + "version":38150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.32.0", + "prefixLen":25, + "network":"193.140.32.0\/25", + "version":38149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.32.128", + "prefixLen":25, + "network":"193.140.32.128\/25", + "version":38148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.33.0", + "prefixLen":25, + "network":"193.140.33.0\/25", + "version":38147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.33.128", + "prefixLen":25, + "network":"193.140.33.128\/25", + "version":38146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.34.0", + "prefixLen":25, + "network":"193.140.34.0\/25", + "version":38145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.34.128", + "prefixLen":25, + "network":"193.140.34.128\/25", + "version":38144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.35.0", + "prefixLen":25, + "network":"193.140.35.0\/25", + "version":38143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.35.128", + "prefixLen":25, + "network":"193.140.35.128\/25", + "version":38142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.48.0", + "prefixLen":25, + "network":"193.140.48.0\/25", + "version":38141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.48.128", + "prefixLen":25, + "network":"193.140.48.128\/25", + "version":38140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.49.0", + "prefixLen":25, + "network":"193.140.49.0\/25", + "version":38139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.49.128", + "prefixLen":25, + "network":"193.140.49.128\/25", + "version":38138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.50.0", + "prefixLen":25, + "network":"193.140.50.0\/25", + "version":38137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.50.128", + "prefixLen":25, + "network":"193.140.50.128\/25", + "version":38136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.51.0", + "prefixLen":25, + "network":"193.140.51.0\/25", + "version":38135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.51.128", + "prefixLen":25, + "network":"193.140.51.128\/25", + "version":38134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.64.0", + "prefixLen":25, + "network":"193.140.64.0\/25", + "version":38133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.64.128", + "prefixLen":25, + "network":"193.140.64.128\/25", + "version":38132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.65.0", + "prefixLen":25, + "network":"193.140.65.0\/25", + "version":38131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.65.128", + "prefixLen":25, + "network":"193.140.65.128\/25", + "version":38130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.66.0", + "prefixLen":25, + "network":"193.140.66.0\/25", + "version":38129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.66.128", + "prefixLen":25, + "network":"193.140.66.128\/25", + "version":38128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.67.0", + "prefixLen":25, + "network":"193.140.67.0\/25", + "version":38127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.67.128", + "prefixLen":25, + "network":"193.140.67.128\/25", + "version":38126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.80.0", + "prefixLen":25, + "network":"193.140.80.0\/25", + "version":38125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.80.128", + "prefixLen":25, + "network":"193.140.80.128\/25", + "version":38124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.81.0", + "prefixLen":25, + "network":"193.140.81.0\/25", + "version":38123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.81.128", + "prefixLen":25, + "network":"193.140.81.128\/25", + "version":38122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.82.0", + "prefixLen":25, + "network":"193.140.82.0\/25", + "version":38121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.82.128", + "prefixLen":25, + "network":"193.140.82.128\/25", + "version":38120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.83.0", + "prefixLen":25, + "network":"193.140.83.0\/25", + "version":38119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.83.128", + "prefixLen":25, + "network":"193.140.83.128\/25", + "version":38118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.96.0", + "prefixLen":25, + "network":"193.140.96.0\/25", + "version":38117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.96.128", + "prefixLen":25, + "network":"193.140.96.128\/25", + "version":38116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.97.0", + "prefixLen":25, + "network":"193.140.97.0\/25", + "version":38115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.97.128", + "prefixLen":25, + "network":"193.140.97.128\/25", + "version":38114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.98.0", + "prefixLen":25, + "network":"193.140.98.0\/25", + "version":38113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.98.128", + "prefixLen":25, + "network":"193.140.98.128\/25", + "version":38112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.99.0", + "prefixLen":25, + "network":"193.140.99.0\/25", + "version":38111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.99.128", + "prefixLen":25, + "network":"193.140.99.128\/25", + "version":38110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.112.0", + "prefixLen":25, + "network":"193.140.112.0\/25", + "version":38109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.112.128", + "prefixLen":25, + "network":"193.140.112.128\/25", + "version":38108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.113.0", + "prefixLen":25, + "network":"193.140.113.0\/25", + "version":38107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.113.128", + "prefixLen":25, + "network":"193.140.113.128\/25", + "version":38106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.114.0", + "prefixLen":25, + "network":"193.140.114.0\/25", + "version":38105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.114.128", + "prefixLen":25, + "network":"193.140.114.128\/25", + "version":38104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.115.0", + "prefixLen":25, + "network":"193.140.115.0\/25", + "version":38103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.115.128", + "prefixLen":25, + "network":"193.140.115.128\/25", + "version":38102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.128.0", + "prefixLen":25, + "network":"193.140.128.0\/25", + "version":38101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.128.128", + "prefixLen":25, + "network":"193.140.128.128\/25", + "version":38100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.129.0", + "prefixLen":25, + "network":"193.140.129.0\/25", + "version":38099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.129.128", + "prefixLen":25, + "network":"193.140.129.128\/25", + "version":38098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.130.0", + "prefixLen":25, + "network":"193.140.130.0\/25", + "version":38097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.130.128", + "prefixLen":25, + "network":"193.140.130.128\/25", + "version":38096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.131.0", + "prefixLen":25, + "network":"193.140.131.0\/25", + "version":38095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.131.128", + "prefixLen":25, + "network":"193.140.131.128\/25", + "version":38094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.144.0", + "prefixLen":25, + "network":"193.140.144.0\/25", + "version":38093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.144.128", + "prefixLen":25, + "network":"193.140.144.128\/25", + "version":38092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.145.0", + "prefixLen":25, + "network":"193.140.145.0\/25", + "version":38091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.145.128", + "prefixLen":25, + "network":"193.140.145.128\/25", + "version":38090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.146.0", + "prefixLen":25, + "network":"193.140.146.0\/25", + "version":38089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.146.128", + "prefixLen":25, + "network":"193.140.146.128\/25", + "version":38088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.147.0", + "prefixLen":25, + "network":"193.140.147.0\/25", + "version":38087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.147.128", + "prefixLen":25, + "network":"193.140.147.128\/25", + "version":38086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.160.0", + "prefixLen":25, + "network":"193.140.160.0\/25", + "version":38085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.160.128", + "prefixLen":25, + "network":"193.140.160.128\/25", + "version":38084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.161.0", + "prefixLen":25, + "network":"193.140.161.0\/25", + "version":38083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.161.128", + "prefixLen":25, + "network":"193.140.161.128\/25", + "version":38082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.162.0", + "prefixLen":25, + "network":"193.140.162.0\/25", + "version":38081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.162.128", + "prefixLen":25, + "network":"193.140.162.128\/25", + "version":38080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.163.0", + "prefixLen":25, + "network":"193.140.163.0\/25", + "version":38079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.163.128", + "prefixLen":25, + "network":"193.140.163.128\/25", + "version":38078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.176.0", + "prefixLen":25, + "network":"193.140.176.0\/25", + "version":38077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.176.128", + "prefixLen":25, + "network":"193.140.176.128\/25", + "version":38076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.177.0", + "prefixLen":25, + "network":"193.140.177.0\/25", + "version":38075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.177.128", + "prefixLen":25, + "network":"193.140.177.128\/25", + "version":38074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.178.0", + "prefixLen":25, + "network":"193.140.178.0\/25", + "version":38073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.178.128", + "prefixLen":25, + "network":"193.140.178.128\/25", + "version":38072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.179.0", + "prefixLen":25, + "network":"193.140.179.0\/25", + "version":38071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.179.128", + "prefixLen":25, + "network":"193.140.179.128\/25", + "version":38070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.192.0", + "prefixLen":25, + "network":"193.140.192.0\/25", + "version":38069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.192.128", + "prefixLen":25, + "network":"193.140.192.128\/25", + "version":38068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.193.0", + "prefixLen":25, + "network":"193.140.193.0\/25", + "version":38067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.193.128", + "prefixLen":25, + "network":"193.140.193.128\/25", + "version":38066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.194.0", + "prefixLen":25, + "network":"193.140.194.0\/25", + "version":38065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.194.128", + "prefixLen":25, + "network":"193.140.194.128\/25", + "version":38064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.195.0", + "prefixLen":25, + "network":"193.140.195.0\/25", + "version":38063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.195.128", + "prefixLen":25, + "network":"193.140.195.128\/25", + "version":38062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.208.0", + "prefixLen":25, + "network":"193.140.208.0\/25", + "version":38061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.208.128", + "prefixLen":25, + "network":"193.140.208.128\/25", + "version":38060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.209.0", + "prefixLen":25, + "network":"193.140.209.0\/25", + "version":38059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.209.128", + "prefixLen":25, + "network":"193.140.209.128\/25", + "version":38058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.210.0", + "prefixLen":25, + "network":"193.140.210.0\/25", + "version":38057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.210.128", + "prefixLen":25, + "network":"193.140.210.128\/25", + "version":38056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.211.0", + "prefixLen":25, + "network":"193.140.211.0\/25", + "version":38055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.211.128", + "prefixLen":25, + "network":"193.140.211.128\/25", + "version":38054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.224.0", + "prefixLen":25, + "network":"193.140.224.0\/25", + "version":38053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.224.128", + "prefixLen":25, + "network":"193.140.224.128\/25", + "version":38052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.225.0", + "prefixLen":25, + "network":"193.140.225.0\/25", + "version":38051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.225.128", + "prefixLen":25, + "network":"193.140.225.128\/25", + "version":38050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.226.0", + "prefixLen":25, + "network":"193.140.226.0\/25", + "version":38049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.226.128", + "prefixLen":25, + "network":"193.140.226.128\/25", + "version":38048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.227.0", + "prefixLen":25, + "network":"193.140.227.0\/25", + "version":38047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.227.128", + "prefixLen":25, + "network":"193.140.227.128\/25", + "version":38046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.240.0", + "prefixLen":25, + "network":"193.140.240.0\/25", + "version":38045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.240.128", + "prefixLen":25, + "network":"193.140.240.128\/25", + "version":38044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.241.0", + "prefixLen":25, + "network":"193.140.241.0\/25", + "version":38043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.241.128", + "prefixLen":25, + "network":"193.140.241.128\/25", + "version":38042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.242.0", + "prefixLen":25, + "network":"193.140.242.0\/25", + "version":38041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.242.128", + "prefixLen":25, + "network":"193.140.242.128\/25", + "version":38040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.243.0", + "prefixLen":25, + "network":"193.140.243.0\/25", + "version":38039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.140.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.140.243.128", + "prefixLen":25, + "network":"193.140.243.128\/25", + "version":38038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64828 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.0.0", + "prefixLen":25, + "network":"193.141.0.0\/25", + "version":38165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.0.128", + "prefixLen":25, + "network":"193.141.0.128\/25", + "version":38292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.1.0", + "prefixLen":25, + "network":"193.141.1.0\/25", + "version":38291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.1.128", + "prefixLen":25, + "network":"193.141.1.128\/25", + "version":38290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.2.0", + "prefixLen":25, + "network":"193.141.2.0\/25", + "version":38289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.2.128", + "prefixLen":25, + "network":"193.141.2.128\/25", + "version":38288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.3.0", + "prefixLen":25, + "network":"193.141.3.0\/25", + "version":38287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.3.128", + "prefixLen":25, + "network":"193.141.3.128\/25", + "version":38286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.16.0", + "prefixLen":25, + "network":"193.141.16.0\/25", + "version":38285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.16.128", + "prefixLen":25, + "network":"193.141.16.128\/25", + "version":38284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.17.0", + "prefixLen":25, + "network":"193.141.17.0\/25", + "version":38283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.17.128", + "prefixLen":25, + "network":"193.141.17.128\/25", + "version":38282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.18.0", + "prefixLen":25, + "network":"193.141.18.0\/25", + "version":38281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.18.128", + "prefixLen":25, + "network":"193.141.18.128\/25", + "version":38280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.19.0", + "prefixLen":25, + "network":"193.141.19.0\/25", + "version":38279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.19.128", + "prefixLen":25, + "network":"193.141.19.128\/25", + "version":38278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.32.0", + "prefixLen":25, + "network":"193.141.32.0\/25", + "version":38277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.32.128", + "prefixLen":25, + "network":"193.141.32.128\/25", + "version":38276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.33.0", + "prefixLen":25, + "network":"193.141.33.0\/25", + "version":38275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.33.128", + "prefixLen":25, + "network":"193.141.33.128\/25", + "version":38274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.34.0", + "prefixLen":25, + "network":"193.141.34.0\/25", + "version":38273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.34.128", + "prefixLen":25, + "network":"193.141.34.128\/25", + "version":38272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.35.0", + "prefixLen":25, + "network":"193.141.35.0\/25", + "version":38271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.35.128", + "prefixLen":25, + "network":"193.141.35.128\/25", + "version":38270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.48.0", + "prefixLen":25, + "network":"193.141.48.0\/25", + "version":38269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.48.128", + "prefixLen":25, + "network":"193.141.48.128\/25", + "version":38268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.49.0", + "prefixLen":25, + "network":"193.141.49.0\/25", + "version":38267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.49.128", + "prefixLen":25, + "network":"193.141.49.128\/25", + "version":38266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.50.0", + "prefixLen":25, + "network":"193.141.50.0\/25", + "version":38265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.50.128", + "prefixLen":25, + "network":"193.141.50.128\/25", + "version":38264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.51.0", + "prefixLen":25, + "network":"193.141.51.0\/25", + "version":38263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.51.128", + "prefixLen":25, + "network":"193.141.51.128\/25", + "version":38262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.64.0", + "prefixLen":25, + "network":"193.141.64.0\/25", + "version":38261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.64.128", + "prefixLen":25, + "network":"193.141.64.128\/25", + "version":38260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.65.0", + "prefixLen":25, + "network":"193.141.65.0\/25", + "version":38259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.65.128", + "prefixLen":25, + "network":"193.141.65.128\/25", + "version":38258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.66.0", + "prefixLen":25, + "network":"193.141.66.0\/25", + "version":38257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.66.128", + "prefixLen":25, + "network":"193.141.66.128\/25", + "version":38256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.67.0", + "prefixLen":25, + "network":"193.141.67.0\/25", + "version":38255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.67.128", + "prefixLen":25, + "network":"193.141.67.128\/25", + "version":38254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.80.0", + "prefixLen":25, + "network":"193.141.80.0\/25", + "version":38253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.80.128", + "prefixLen":25, + "network":"193.141.80.128\/25", + "version":38252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.81.0", + "prefixLen":25, + "network":"193.141.81.0\/25", + "version":38251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.81.128", + "prefixLen":25, + "network":"193.141.81.128\/25", + "version":38250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.82.0", + "prefixLen":25, + "network":"193.141.82.0\/25", + "version":38249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.82.128", + "prefixLen":25, + "network":"193.141.82.128\/25", + "version":38248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.83.0", + "prefixLen":25, + "network":"193.141.83.0\/25", + "version":38247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.83.128", + "prefixLen":25, + "network":"193.141.83.128\/25", + "version":38246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.96.0", + "prefixLen":25, + "network":"193.141.96.0\/25", + "version":38245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.96.128", + "prefixLen":25, + "network":"193.141.96.128\/25", + "version":38244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.97.0", + "prefixLen":25, + "network":"193.141.97.0\/25", + "version":38243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.97.128", + "prefixLen":25, + "network":"193.141.97.128\/25", + "version":38242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.98.0", + "prefixLen":25, + "network":"193.141.98.0\/25", + "version":38241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.98.128", + "prefixLen":25, + "network":"193.141.98.128\/25", + "version":38240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.99.0", + "prefixLen":25, + "network":"193.141.99.0\/25", + "version":38239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.99.128", + "prefixLen":25, + "network":"193.141.99.128\/25", + "version":38238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.112.0", + "prefixLen":25, + "network":"193.141.112.0\/25", + "version":38237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.112.128", + "prefixLen":25, + "network":"193.141.112.128\/25", + "version":38236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.113.0", + "prefixLen":25, + "network":"193.141.113.0\/25", + "version":38235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.113.128", + "prefixLen":25, + "network":"193.141.113.128\/25", + "version":38234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.114.0", + "prefixLen":25, + "network":"193.141.114.0\/25", + "version":38233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.114.128", + "prefixLen":25, + "network":"193.141.114.128\/25", + "version":38232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.115.0", + "prefixLen":25, + "network":"193.141.115.0\/25", + "version":38231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.115.128", + "prefixLen":25, + "network":"193.141.115.128\/25", + "version":38230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.128.0", + "prefixLen":25, + "network":"193.141.128.0\/25", + "version":38229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.128.128", + "prefixLen":25, + "network":"193.141.128.128\/25", + "version":38228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.129.0", + "prefixLen":25, + "network":"193.141.129.0\/25", + "version":38227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.129.128", + "prefixLen":25, + "network":"193.141.129.128\/25", + "version":38226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.130.0", + "prefixLen":25, + "network":"193.141.130.0\/25", + "version":38225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.130.128", + "prefixLen":25, + "network":"193.141.130.128\/25", + "version":38224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.131.0", + "prefixLen":25, + "network":"193.141.131.0\/25", + "version":38223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.131.128", + "prefixLen":25, + "network":"193.141.131.128\/25", + "version":38222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.144.0", + "prefixLen":25, + "network":"193.141.144.0\/25", + "version":38221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.144.128", + "prefixLen":25, + "network":"193.141.144.128\/25", + "version":38220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.145.0", + "prefixLen":25, + "network":"193.141.145.0\/25", + "version":38219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.145.128", + "prefixLen":25, + "network":"193.141.145.128\/25", + "version":38218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.146.0", + "prefixLen":25, + "network":"193.141.146.0\/25", + "version":38217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.146.128", + "prefixLen":25, + "network":"193.141.146.128\/25", + "version":38216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.147.0", + "prefixLen":25, + "network":"193.141.147.0\/25", + "version":38215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.147.128", + "prefixLen":25, + "network":"193.141.147.128\/25", + "version":38214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.160.0", + "prefixLen":25, + "network":"193.141.160.0\/25", + "version":38213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.160.128", + "prefixLen":25, + "network":"193.141.160.128\/25", + "version":38212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.161.0", + "prefixLen":25, + "network":"193.141.161.0\/25", + "version":38211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.161.128", + "prefixLen":25, + "network":"193.141.161.128\/25", + "version":38210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.162.0", + "prefixLen":25, + "network":"193.141.162.0\/25", + "version":38209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.162.128", + "prefixLen":25, + "network":"193.141.162.128\/25", + "version":38208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.163.0", + "prefixLen":25, + "network":"193.141.163.0\/25", + "version":38207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.163.128", + "prefixLen":25, + "network":"193.141.163.128\/25", + "version":38206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.176.0", + "prefixLen":25, + "network":"193.141.176.0\/25", + "version":38205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.176.128", + "prefixLen":25, + "network":"193.141.176.128\/25", + "version":38204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.177.0", + "prefixLen":25, + "network":"193.141.177.0\/25", + "version":38203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.177.128", + "prefixLen":25, + "network":"193.141.177.128\/25", + "version":38202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.178.0", + "prefixLen":25, + "network":"193.141.178.0\/25", + "version":38201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.178.128", + "prefixLen":25, + "network":"193.141.178.128\/25", + "version":38200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.179.0", + "prefixLen":25, + "network":"193.141.179.0\/25", + "version":38199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.179.128", + "prefixLen":25, + "network":"193.141.179.128\/25", + "version":38198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.192.0", + "prefixLen":25, + "network":"193.141.192.0\/25", + "version":38197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.192.128", + "prefixLen":25, + "network":"193.141.192.128\/25", + "version":38196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.193.0", + "prefixLen":25, + "network":"193.141.193.0\/25", + "version":38195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.193.128", + "prefixLen":25, + "network":"193.141.193.128\/25", + "version":38194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.194.0", + "prefixLen":25, + "network":"193.141.194.0\/25", + "version":38193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.194.128", + "prefixLen":25, + "network":"193.141.194.128\/25", + "version":38192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.195.0", + "prefixLen":25, + "network":"193.141.195.0\/25", + "version":38191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.195.128", + "prefixLen":25, + "network":"193.141.195.128\/25", + "version":38190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.208.0", + "prefixLen":25, + "network":"193.141.208.0\/25", + "version":38189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.208.128", + "prefixLen":25, + "network":"193.141.208.128\/25", + "version":38188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.209.0", + "prefixLen":25, + "network":"193.141.209.0\/25", + "version":38187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.209.128", + "prefixLen":25, + "network":"193.141.209.128\/25", + "version":38186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.210.0", + "prefixLen":25, + "network":"193.141.210.0\/25", + "version":38185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.210.128", + "prefixLen":25, + "network":"193.141.210.128\/25", + "version":38184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.211.0", + "prefixLen":25, + "network":"193.141.211.0\/25", + "version":38183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.211.128", + "prefixLen":25, + "network":"193.141.211.128\/25", + "version":38182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.224.0", + "prefixLen":25, + "network":"193.141.224.0\/25", + "version":38181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.224.128", + "prefixLen":25, + "network":"193.141.224.128\/25", + "version":38180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.225.0", + "prefixLen":25, + "network":"193.141.225.0\/25", + "version":38179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.225.128", + "prefixLen":25, + "network":"193.141.225.128\/25", + "version":38178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.226.0", + "prefixLen":25, + "network":"193.141.226.0\/25", + "version":38177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.226.128", + "prefixLen":25, + "network":"193.141.226.128\/25", + "version":38176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.227.0", + "prefixLen":25, + "network":"193.141.227.0\/25", + "version":38175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.227.128", + "prefixLen":25, + "network":"193.141.227.128\/25", + "version":38174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.240.0", + "prefixLen":25, + "network":"193.141.240.0\/25", + "version":38173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.240.128", + "prefixLen":25, + "network":"193.141.240.128\/25", + "version":38172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.241.0", + "prefixLen":25, + "network":"193.141.241.0\/25", + "version":38171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.241.128", + "prefixLen":25, + "network":"193.141.241.128\/25", + "version":38170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.242.0", + "prefixLen":25, + "network":"193.141.242.0\/25", + "version":38169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.242.128", + "prefixLen":25, + "network":"193.141.242.128\/25", + "version":38168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.243.0", + "prefixLen":25, + "network":"193.141.243.0\/25", + "version":38167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.141.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.141.243.128", + "prefixLen":25, + "network":"193.141.243.128\/25", + "version":38166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64829 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.0.0", + "prefixLen":25, + "network":"193.142.0.0\/25", + "version":38293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.0.128", + "prefixLen":25, + "network":"193.142.0.128\/25", + "version":38420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.1.0", + "prefixLen":25, + "network":"193.142.1.0\/25", + "version":38419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.1.128", + "prefixLen":25, + "network":"193.142.1.128\/25", + "version":38418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.2.0", + "prefixLen":25, + "network":"193.142.2.0\/25", + "version":38417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.2.128", + "prefixLen":25, + "network":"193.142.2.128\/25", + "version":38416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.3.0", + "prefixLen":25, + "network":"193.142.3.0\/25", + "version":38415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.3.128", + "prefixLen":25, + "network":"193.142.3.128\/25", + "version":38414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.16.0", + "prefixLen":25, + "network":"193.142.16.0\/25", + "version":38413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.16.128", + "prefixLen":25, + "network":"193.142.16.128\/25", + "version":38412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.17.0", + "prefixLen":25, + "network":"193.142.17.0\/25", + "version":38411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.17.128", + "prefixLen":25, + "network":"193.142.17.128\/25", + "version":38410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.18.0", + "prefixLen":25, + "network":"193.142.18.0\/25", + "version":38409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.18.128", + "prefixLen":25, + "network":"193.142.18.128\/25", + "version":38408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.19.0", + "prefixLen":25, + "network":"193.142.19.0\/25", + "version":38407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.19.128", + "prefixLen":25, + "network":"193.142.19.128\/25", + "version":38406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.32.0", + "prefixLen":25, + "network":"193.142.32.0\/25", + "version":38405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.32.128", + "prefixLen":25, + "network":"193.142.32.128\/25", + "version":38404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.33.0", + "prefixLen":25, + "network":"193.142.33.0\/25", + "version":38403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.33.128", + "prefixLen":25, + "network":"193.142.33.128\/25", + "version":38402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.34.0", + "prefixLen":25, + "network":"193.142.34.0\/25", + "version":38401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.34.128", + "prefixLen":25, + "network":"193.142.34.128\/25", + "version":38400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.35.0", + "prefixLen":25, + "network":"193.142.35.0\/25", + "version":38399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.35.128", + "prefixLen":25, + "network":"193.142.35.128\/25", + "version":38398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.48.0", + "prefixLen":25, + "network":"193.142.48.0\/25", + "version":38397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.48.128", + "prefixLen":25, + "network":"193.142.48.128\/25", + "version":38396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.49.0", + "prefixLen":25, + "network":"193.142.49.0\/25", + "version":38395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.49.128", + "prefixLen":25, + "network":"193.142.49.128\/25", + "version":38394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.50.0", + "prefixLen":25, + "network":"193.142.50.0\/25", + "version":38393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.50.128", + "prefixLen":25, + "network":"193.142.50.128\/25", + "version":38392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.51.0", + "prefixLen":25, + "network":"193.142.51.0\/25", + "version":38391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.51.128", + "prefixLen":25, + "network":"193.142.51.128\/25", + "version":38390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.64.0", + "prefixLen":25, + "network":"193.142.64.0\/25", + "version":38389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.64.128", + "prefixLen":25, + "network":"193.142.64.128\/25", + "version":38388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.65.0", + "prefixLen":25, + "network":"193.142.65.0\/25", + "version":38387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.65.128", + "prefixLen":25, + "network":"193.142.65.128\/25", + "version":38386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.66.0", + "prefixLen":25, + "network":"193.142.66.0\/25", + "version":38385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.66.128", + "prefixLen":25, + "network":"193.142.66.128\/25", + "version":38384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.67.0", + "prefixLen":25, + "network":"193.142.67.0\/25", + "version":38383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.67.128", + "prefixLen":25, + "network":"193.142.67.128\/25", + "version":38382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.80.0", + "prefixLen":25, + "network":"193.142.80.0\/25", + "version":38381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.80.128", + "prefixLen":25, + "network":"193.142.80.128\/25", + "version":38380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.81.0", + "prefixLen":25, + "network":"193.142.81.0\/25", + "version":38379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.81.128", + "prefixLen":25, + "network":"193.142.81.128\/25", + "version":38378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.82.0", + "prefixLen":25, + "network":"193.142.82.0\/25", + "version":38377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.82.128", + "prefixLen":25, + "network":"193.142.82.128\/25", + "version":38376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.83.0", + "prefixLen":25, + "network":"193.142.83.0\/25", + "version":38375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.83.128", + "prefixLen":25, + "network":"193.142.83.128\/25", + "version":38374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.96.0", + "prefixLen":25, + "network":"193.142.96.0\/25", + "version":38373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.96.128", + "prefixLen":25, + "network":"193.142.96.128\/25", + "version":38372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.97.0", + "prefixLen":25, + "network":"193.142.97.0\/25", + "version":38371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.97.128", + "prefixLen":25, + "network":"193.142.97.128\/25", + "version":38370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.98.0", + "prefixLen":25, + "network":"193.142.98.0\/25", + "version":38369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.98.128", + "prefixLen":25, + "network":"193.142.98.128\/25", + "version":38368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.99.0", + "prefixLen":25, + "network":"193.142.99.0\/25", + "version":38367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.99.128", + "prefixLen":25, + "network":"193.142.99.128\/25", + "version":38366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.112.0", + "prefixLen":25, + "network":"193.142.112.0\/25", + "version":38365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.112.128", + "prefixLen":25, + "network":"193.142.112.128\/25", + "version":38364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.113.0", + "prefixLen":25, + "network":"193.142.113.0\/25", + "version":38363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.113.128", + "prefixLen":25, + "network":"193.142.113.128\/25", + "version":38362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.114.0", + "prefixLen":25, + "network":"193.142.114.0\/25", + "version":38361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.114.128", + "prefixLen":25, + "network":"193.142.114.128\/25", + "version":38360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.115.0", + "prefixLen":25, + "network":"193.142.115.0\/25", + "version":38359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.115.128", + "prefixLen":25, + "network":"193.142.115.128\/25", + "version":38358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.128.0", + "prefixLen":25, + "network":"193.142.128.0\/25", + "version":38357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.128.128", + "prefixLen":25, + "network":"193.142.128.128\/25", + "version":38356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.129.0", + "prefixLen":25, + "network":"193.142.129.0\/25", + "version":38355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.129.128", + "prefixLen":25, + "network":"193.142.129.128\/25", + "version":38354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.130.0", + "prefixLen":25, + "network":"193.142.130.0\/25", + "version":38353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.130.128", + "prefixLen":25, + "network":"193.142.130.128\/25", + "version":38352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.131.0", + "prefixLen":25, + "network":"193.142.131.0\/25", + "version":38351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.131.128", + "prefixLen":25, + "network":"193.142.131.128\/25", + "version":38350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.144.0", + "prefixLen":25, + "network":"193.142.144.0\/25", + "version":38349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.144.128", + "prefixLen":25, + "network":"193.142.144.128\/25", + "version":38348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.145.0", + "prefixLen":25, + "network":"193.142.145.0\/25", + "version":38347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.145.128", + "prefixLen":25, + "network":"193.142.145.128\/25", + "version":38346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.146.0", + "prefixLen":25, + "network":"193.142.146.0\/25", + "version":38345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.146.128", + "prefixLen":25, + "network":"193.142.146.128\/25", + "version":38344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.147.0", + "prefixLen":25, + "network":"193.142.147.0\/25", + "version":38343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.147.128", + "prefixLen":25, + "network":"193.142.147.128\/25", + "version":38342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.160.0", + "prefixLen":25, + "network":"193.142.160.0\/25", + "version":38341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.160.128", + "prefixLen":25, + "network":"193.142.160.128\/25", + "version":38340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.161.0", + "prefixLen":25, + "network":"193.142.161.0\/25", + "version":38339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.161.128", + "prefixLen":25, + "network":"193.142.161.128\/25", + "version":38338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.162.0", + "prefixLen":25, + "network":"193.142.162.0\/25", + "version":38337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.162.128", + "prefixLen":25, + "network":"193.142.162.128\/25", + "version":38336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.163.0", + "prefixLen":25, + "network":"193.142.163.0\/25", + "version":38335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.163.128", + "prefixLen":25, + "network":"193.142.163.128\/25", + "version":38334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.176.0", + "prefixLen":25, + "network":"193.142.176.0\/25", + "version":38333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.176.128", + "prefixLen":25, + "network":"193.142.176.128\/25", + "version":38332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.177.0", + "prefixLen":25, + "network":"193.142.177.0\/25", + "version":38331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.177.128", + "prefixLen":25, + "network":"193.142.177.128\/25", + "version":38330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.178.0", + "prefixLen":25, + "network":"193.142.178.0\/25", + "version":38329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.178.128", + "prefixLen":25, + "network":"193.142.178.128\/25", + "version":38328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.179.0", + "prefixLen":25, + "network":"193.142.179.0\/25", + "version":38327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.179.128", + "prefixLen":25, + "network":"193.142.179.128\/25", + "version":38326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.192.0", + "prefixLen":25, + "network":"193.142.192.0\/25", + "version":38325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.192.128", + "prefixLen":25, + "network":"193.142.192.128\/25", + "version":38324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.193.0", + "prefixLen":25, + "network":"193.142.193.0\/25", + "version":38323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.193.128", + "prefixLen":25, + "network":"193.142.193.128\/25", + "version":38322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.194.0", + "prefixLen":25, + "network":"193.142.194.0\/25", + "version":38321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.194.128", + "prefixLen":25, + "network":"193.142.194.128\/25", + "version":38320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.195.0", + "prefixLen":25, + "network":"193.142.195.0\/25", + "version":38319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.195.128", + "prefixLen":25, + "network":"193.142.195.128\/25", + "version":38318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.208.0", + "prefixLen":25, + "network":"193.142.208.0\/25", + "version":38317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.208.128", + "prefixLen":25, + "network":"193.142.208.128\/25", + "version":38316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.209.0", + "prefixLen":25, + "network":"193.142.209.0\/25", + "version":38315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.209.128", + "prefixLen":25, + "network":"193.142.209.128\/25", + "version":38314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.210.0", + "prefixLen":25, + "network":"193.142.210.0\/25", + "version":38313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.210.128", + "prefixLen":25, + "network":"193.142.210.128\/25", + "version":38312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.211.0", + "prefixLen":25, + "network":"193.142.211.0\/25", + "version":38311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.211.128", + "prefixLen":25, + "network":"193.142.211.128\/25", + "version":38310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.224.0", + "prefixLen":25, + "network":"193.142.224.0\/25", + "version":38309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.224.128", + "prefixLen":25, + "network":"193.142.224.128\/25", + "version":38308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.225.0", + "prefixLen":25, + "network":"193.142.225.0\/25", + "version":38307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.225.128", + "prefixLen":25, + "network":"193.142.225.128\/25", + "version":38306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.226.0", + "prefixLen":25, + "network":"193.142.226.0\/25", + "version":38305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.226.128", + "prefixLen":25, + "network":"193.142.226.128\/25", + "version":38304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.227.0", + "prefixLen":25, + "network":"193.142.227.0\/25", + "version":38303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.227.128", + "prefixLen":25, + "network":"193.142.227.128\/25", + "version":38302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.240.0", + "prefixLen":25, + "network":"193.142.240.0\/25", + "version":38301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.240.128", + "prefixLen":25, + "network":"193.142.240.128\/25", + "version":38300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.241.0", + "prefixLen":25, + "network":"193.142.241.0\/25", + "version":38299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.241.128", + "prefixLen":25, + "network":"193.142.241.128\/25", + "version":38298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.242.0", + "prefixLen":25, + "network":"193.142.242.0\/25", + "version":38297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.242.128", + "prefixLen":25, + "network":"193.142.242.128\/25", + "version":38296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.243.0", + "prefixLen":25, + "network":"193.142.243.0\/25", + "version":38295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.142.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.142.243.128", + "prefixLen":25, + "network":"193.142.243.128\/25", + "version":38294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64830 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.0.0", + "prefixLen":25, + "network":"193.143.0.0\/25", + "version":38421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.0.128", + "prefixLen":25, + "network":"193.143.0.128\/25", + "version":38548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.1.0", + "prefixLen":25, + "network":"193.143.1.0\/25", + "version":38547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.1.128", + "prefixLen":25, + "network":"193.143.1.128\/25", + "version":38546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.2.0", + "prefixLen":25, + "network":"193.143.2.0\/25", + "version":38545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.2.128", + "prefixLen":25, + "network":"193.143.2.128\/25", + "version":38544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.3.0", + "prefixLen":25, + "network":"193.143.3.0\/25", + "version":38543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.3.128", + "prefixLen":25, + "network":"193.143.3.128\/25", + "version":38542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.16.0", + "prefixLen":25, + "network":"193.143.16.0\/25", + "version":38541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.16.128", + "prefixLen":25, + "network":"193.143.16.128\/25", + "version":38540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.17.0", + "prefixLen":25, + "network":"193.143.17.0\/25", + "version":38539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.17.128", + "prefixLen":25, + "network":"193.143.17.128\/25", + "version":38538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.18.0", + "prefixLen":25, + "network":"193.143.18.0\/25", + "version":38537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.18.128", + "prefixLen":25, + "network":"193.143.18.128\/25", + "version":38536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.19.0", + "prefixLen":25, + "network":"193.143.19.0\/25", + "version":38535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.19.128", + "prefixLen":25, + "network":"193.143.19.128\/25", + "version":38534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.32.0", + "prefixLen":25, + "network":"193.143.32.0\/25", + "version":38533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.32.128", + "prefixLen":25, + "network":"193.143.32.128\/25", + "version":38532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.33.0", + "prefixLen":25, + "network":"193.143.33.0\/25", + "version":38531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.33.128", + "prefixLen":25, + "network":"193.143.33.128\/25", + "version":38530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.34.0", + "prefixLen":25, + "network":"193.143.34.0\/25", + "version":38529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.34.128", + "prefixLen":25, + "network":"193.143.34.128\/25", + "version":38528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.35.0", + "prefixLen":25, + "network":"193.143.35.0\/25", + "version":38527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.35.128", + "prefixLen":25, + "network":"193.143.35.128\/25", + "version":38526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.48.0", + "prefixLen":25, + "network":"193.143.48.0\/25", + "version":38525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.48.128", + "prefixLen":25, + "network":"193.143.48.128\/25", + "version":38524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.49.0", + "prefixLen":25, + "network":"193.143.49.0\/25", + "version":38523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.49.128", + "prefixLen":25, + "network":"193.143.49.128\/25", + "version":38522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.50.0", + "prefixLen":25, + "network":"193.143.50.0\/25", + "version":38521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.50.128", + "prefixLen":25, + "network":"193.143.50.128\/25", + "version":38520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.51.0", + "prefixLen":25, + "network":"193.143.51.0\/25", + "version":38519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.51.128", + "prefixLen":25, + "network":"193.143.51.128\/25", + "version":38518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.64.0", + "prefixLen":25, + "network":"193.143.64.0\/25", + "version":38517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.64.128", + "prefixLen":25, + "network":"193.143.64.128\/25", + "version":38516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.65.0", + "prefixLen":25, + "network":"193.143.65.0\/25", + "version":38515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.65.128", + "prefixLen":25, + "network":"193.143.65.128\/25", + "version":38514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.66.0", + "prefixLen":25, + "network":"193.143.66.0\/25", + "version":38513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.66.128", + "prefixLen":25, + "network":"193.143.66.128\/25", + "version":38512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.67.0", + "prefixLen":25, + "network":"193.143.67.0\/25", + "version":38511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.67.128", + "prefixLen":25, + "network":"193.143.67.128\/25", + "version":38510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.80.0", + "prefixLen":25, + "network":"193.143.80.0\/25", + "version":38509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.80.128", + "prefixLen":25, + "network":"193.143.80.128\/25", + "version":38508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.81.0", + "prefixLen":25, + "network":"193.143.81.0\/25", + "version":38507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.81.128", + "prefixLen":25, + "network":"193.143.81.128\/25", + "version":38506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.82.0", + "prefixLen":25, + "network":"193.143.82.0\/25", + "version":38505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.82.128", + "prefixLen":25, + "network":"193.143.82.128\/25", + "version":38504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.83.0", + "prefixLen":25, + "network":"193.143.83.0\/25", + "version":38503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.83.128", + "prefixLen":25, + "network":"193.143.83.128\/25", + "version":38502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.96.0", + "prefixLen":25, + "network":"193.143.96.0\/25", + "version":38501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.96.128", + "prefixLen":25, + "network":"193.143.96.128\/25", + "version":38500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.97.0", + "prefixLen":25, + "network":"193.143.97.0\/25", + "version":38499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.97.128", + "prefixLen":25, + "network":"193.143.97.128\/25", + "version":38498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.98.0", + "prefixLen":25, + "network":"193.143.98.0\/25", + "version":38497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.98.128", + "prefixLen":25, + "network":"193.143.98.128\/25", + "version":38496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.99.0", + "prefixLen":25, + "network":"193.143.99.0\/25", + "version":38495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.99.128", + "prefixLen":25, + "network":"193.143.99.128\/25", + "version":38494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.112.0", + "prefixLen":25, + "network":"193.143.112.0\/25", + "version":38493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.112.128", + "prefixLen":25, + "network":"193.143.112.128\/25", + "version":38492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.113.0", + "prefixLen":25, + "network":"193.143.113.0\/25", + "version":38491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.113.128", + "prefixLen":25, + "network":"193.143.113.128\/25", + "version":38490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.114.0", + "prefixLen":25, + "network":"193.143.114.0\/25", + "version":38489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.114.128", + "prefixLen":25, + "network":"193.143.114.128\/25", + "version":38488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.115.0", + "prefixLen":25, + "network":"193.143.115.0\/25", + "version":38487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.115.128", + "prefixLen":25, + "network":"193.143.115.128\/25", + "version":38486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.128.0", + "prefixLen":25, + "network":"193.143.128.0\/25", + "version":38485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.128.128", + "prefixLen":25, + "network":"193.143.128.128\/25", + "version":38484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.129.0", + "prefixLen":25, + "network":"193.143.129.0\/25", + "version":38483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.129.128", + "prefixLen":25, + "network":"193.143.129.128\/25", + "version":38482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.130.0", + "prefixLen":25, + "network":"193.143.130.0\/25", + "version":38481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.130.128", + "prefixLen":25, + "network":"193.143.130.128\/25", + "version":38480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.131.0", + "prefixLen":25, + "network":"193.143.131.0\/25", + "version":38479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.131.128", + "prefixLen":25, + "network":"193.143.131.128\/25", + "version":38478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.144.0", + "prefixLen":25, + "network":"193.143.144.0\/25", + "version":38477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.144.128", + "prefixLen":25, + "network":"193.143.144.128\/25", + "version":38476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.145.0", + "prefixLen":25, + "network":"193.143.145.0\/25", + "version":38475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.145.128", + "prefixLen":25, + "network":"193.143.145.128\/25", + "version":38474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.146.0", + "prefixLen":25, + "network":"193.143.146.0\/25", + "version":38473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.146.128", + "prefixLen":25, + "network":"193.143.146.128\/25", + "version":38472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.147.0", + "prefixLen":25, + "network":"193.143.147.0\/25", + "version":38471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.147.128", + "prefixLen":25, + "network":"193.143.147.128\/25", + "version":38470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.160.0", + "prefixLen":25, + "network":"193.143.160.0\/25", + "version":38469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.160.128", + "prefixLen":25, + "network":"193.143.160.128\/25", + "version":38468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.161.0", + "prefixLen":25, + "network":"193.143.161.0\/25", + "version":38467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.161.128", + "prefixLen":25, + "network":"193.143.161.128\/25", + "version":38466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.162.0", + "prefixLen":25, + "network":"193.143.162.0\/25", + "version":38465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.162.128", + "prefixLen":25, + "network":"193.143.162.128\/25", + "version":38464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.163.0", + "prefixLen":25, + "network":"193.143.163.0\/25", + "version":38463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.163.128", + "prefixLen":25, + "network":"193.143.163.128\/25", + "version":38462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.176.0", + "prefixLen":25, + "network":"193.143.176.0\/25", + "version":38461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.176.128", + "prefixLen":25, + "network":"193.143.176.128\/25", + "version":38460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.177.0", + "prefixLen":25, + "network":"193.143.177.0\/25", + "version":38459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.177.128", + "prefixLen":25, + "network":"193.143.177.128\/25", + "version":38458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.178.0", + "prefixLen":25, + "network":"193.143.178.0\/25", + "version":38457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.178.128", + "prefixLen":25, + "network":"193.143.178.128\/25", + "version":38456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.179.0", + "prefixLen":25, + "network":"193.143.179.0\/25", + "version":38455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.179.128", + "prefixLen":25, + "network":"193.143.179.128\/25", + "version":38454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.192.0", + "prefixLen":25, + "network":"193.143.192.0\/25", + "version":38453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.192.128", + "prefixLen":25, + "network":"193.143.192.128\/25", + "version":38452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.193.0", + "prefixLen":25, + "network":"193.143.193.0\/25", + "version":38451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.193.128", + "prefixLen":25, + "network":"193.143.193.128\/25", + "version":38450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.194.0", + "prefixLen":25, + "network":"193.143.194.0\/25", + "version":38449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.194.128", + "prefixLen":25, + "network":"193.143.194.128\/25", + "version":38448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.195.0", + "prefixLen":25, + "network":"193.143.195.0\/25", + "version":38447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.195.128", + "prefixLen":25, + "network":"193.143.195.128\/25", + "version":38446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.208.0", + "prefixLen":25, + "network":"193.143.208.0\/25", + "version":38445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.208.128", + "prefixLen":25, + "network":"193.143.208.128\/25", + "version":38444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.209.0", + "prefixLen":25, + "network":"193.143.209.0\/25", + "version":38443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.209.128", + "prefixLen":25, + "network":"193.143.209.128\/25", + "version":38442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.210.0", + "prefixLen":25, + "network":"193.143.210.0\/25", + "version":38441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.210.128", + "prefixLen":25, + "network":"193.143.210.128\/25", + "version":38440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.211.0", + "prefixLen":25, + "network":"193.143.211.0\/25", + "version":38439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.211.128", + "prefixLen":25, + "network":"193.143.211.128\/25", + "version":38438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.224.0", + "prefixLen":25, + "network":"193.143.224.0\/25", + "version":38437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.224.128", + "prefixLen":25, + "network":"193.143.224.128\/25", + "version":38436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.225.0", + "prefixLen":25, + "network":"193.143.225.0\/25", + "version":38435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.225.128", + "prefixLen":25, + "network":"193.143.225.128\/25", + "version":38434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.226.0", + "prefixLen":25, + "network":"193.143.226.0\/25", + "version":38433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.226.128", + "prefixLen":25, + "network":"193.143.226.128\/25", + "version":38432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.227.0", + "prefixLen":25, + "network":"193.143.227.0\/25", + "version":38431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.227.128", + "prefixLen":25, + "network":"193.143.227.128\/25", + "version":38430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.240.0", + "prefixLen":25, + "network":"193.143.240.0\/25", + "version":38429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.240.128", + "prefixLen":25, + "network":"193.143.240.128\/25", + "version":38428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.241.0", + "prefixLen":25, + "network":"193.143.241.0\/25", + "version":38427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.241.128", + "prefixLen":25, + "network":"193.143.241.128\/25", + "version":38426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.242.0", + "prefixLen":25, + "network":"193.143.242.0\/25", + "version":38425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.242.128", + "prefixLen":25, + "network":"193.143.242.128\/25", + "version":38424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.243.0", + "prefixLen":25, + "network":"193.143.243.0\/25", + "version":38423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.143.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.143.243.128", + "prefixLen":25, + "network":"193.143.243.128\/25", + "version":38422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64831 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.0.0", + "prefixLen":25, + "network":"193.144.0.0\/25", + "version":38549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.0.128", + "prefixLen":25, + "network":"193.144.0.128\/25", + "version":38676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.1.0", + "prefixLen":25, + "network":"193.144.1.0\/25", + "version":38675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.1.128", + "prefixLen":25, + "network":"193.144.1.128\/25", + "version":38674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.2.0", + "prefixLen":25, + "network":"193.144.2.0\/25", + "version":38673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.2.128", + "prefixLen":25, + "network":"193.144.2.128\/25", + "version":38672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.3.0", + "prefixLen":25, + "network":"193.144.3.0\/25", + "version":38671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.3.128", + "prefixLen":25, + "network":"193.144.3.128\/25", + "version":38670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.16.0", + "prefixLen":25, + "network":"193.144.16.0\/25", + "version":38669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.16.128", + "prefixLen":25, + "network":"193.144.16.128\/25", + "version":38668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.17.0", + "prefixLen":25, + "network":"193.144.17.0\/25", + "version":38667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.17.128", + "prefixLen":25, + "network":"193.144.17.128\/25", + "version":38666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.18.0", + "prefixLen":25, + "network":"193.144.18.0\/25", + "version":38665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.18.128", + "prefixLen":25, + "network":"193.144.18.128\/25", + "version":38664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.19.0", + "prefixLen":25, + "network":"193.144.19.0\/25", + "version":38663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.19.128", + "prefixLen":25, + "network":"193.144.19.128\/25", + "version":38662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.32.0", + "prefixLen":25, + "network":"193.144.32.0\/25", + "version":38661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.32.128", + "prefixLen":25, + "network":"193.144.32.128\/25", + "version":38660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.33.0", + "prefixLen":25, + "network":"193.144.33.0\/25", + "version":38659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.33.128", + "prefixLen":25, + "network":"193.144.33.128\/25", + "version":38658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.34.0", + "prefixLen":25, + "network":"193.144.34.0\/25", + "version":38657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.34.128", + "prefixLen":25, + "network":"193.144.34.128\/25", + "version":38656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.35.0", + "prefixLen":25, + "network":"193.144.35.0\/25", + "version":38655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.35.128", + "prefixLen":25, + "network":"193.144.35.128\/25", + "version":38654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.48.0", + "prefixLen":25, + "network":"193.144.48.0\/25", + "version":38653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.48.128", + "prefixLen":25, + "network":"193.144.48.128\/25", + "version":38652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.49.0", + "prefixLen":25, + "network":"193.144.49.0\/25", + "version":38651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.49.128", + "prefixLen":25, + "network":"193.144.49.128\/25", + "version":38650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.50.0", + "prefixLen":25, + "network":"193.144.50.0\/25", + "version":38649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.50.128", + "prefixLen":25, + "network":"193.144.50.128\/25", + "version":38648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.51.0", + "prefixLen":25, + "network":"193.144.51.0\/25", + "version":38647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.51.128", + "prefixLen":25, + "network":"193.144.51.128\/25", + "version":38646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.64.0", + "prefixLen":25, + "network":"193.144.64.0\/25", + "version":38645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.64.128", + "prefixLen":25, + "network":"193.144.64.128\/25", + "version":38644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.65.0", + "prefixLen":25, + "network":"193.144.65.0\/25", + "version":38643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.65.128", + "prefixLen":25, + "network":"193.144.65.128\/25", + "version":38642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.66.0", + "prefixLen":25, + "network":"193.144.66.0\/25", + "version":38641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.66.128", + "prefixLen":25, + "network":"193.144.66.128\/25", + "version":38640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.67.0", + "prefixLen":25, + "network":"193.144.67.0\/25", + "version":38639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.67.128", + "prefixLen":25, + "network":"193.144.67.128\/25", + "version":38638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.80.0", + "prefixLen":25, + "network":"193.144.80.0\/25", + "version":38637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.80.128", + "prefixLen":25, + "network":"193.144.80.128\/25", + "version":38636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.81.0", + "prefixLen":25, + "network":"193.144.81.0\/25", + "version":38635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.81.128", + "prefixLen":25, + "network":"193.144.81.128\/25", + "version":38634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.82.0", + "prefixLen":25, + "network":"193.144.82.0\/25", + "version":38633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.82.128", + "prefixLen":25, + "network":"193.144.82.128\/25", + "version":38632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.83.0", + "prefixLen":25, + "network":"193.144.83.0\/25", + "version":38631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.83.128", + "prefixLen":25, + "network":"193.144.83.128\/25", + "version":38630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.96.0", + "prefixLen":25, + "network":"193.144.96.0\/25", + "version":38629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.96.128", + "prefixLen":25, + "network":"193.144.96.128\/25", + "version":38628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.97.0", + "prefixLen":25, + "network":"193.144.97.0\/25", + "version":38627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.97.128", + "prefixLen":25, + "network":"193.144.97.128\/25", + "version":38626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.98.0", + "prefixLen":25, + "network":"193.144.98.0\/25", + "version":38625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.98.128", + "prefixLen":25, + "network":"193.144.98.128\/25", + "version":38624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.99.0", + "prefixLen":25, + "network":"193.144.99.0\/25", + "version":38623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.99.128", + "prefixLen":25, + "network":"193.144.99.128\/25", + "version":38622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.112.0", + "prefixLen":25, + "network":"193.144.112.0\/25", + "version":38621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.112.128", + "prefixLen":25, + "network":"193.144.112.128\/25", + "version":38620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.113.0", + "prefixLen":25, + "network":"193.144.113.0\/25", + "version":38619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.113.128", + "prefixLen":25, + "network":"193.144.113.128\/25", + "version":38618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.114.0", + "prefixLen":25, + "network":"193.144.114.0\/25", + "version":38617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.114.128", + "prefixLen":25, + "network":"193.144.114.128\/25", + "version":38616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.115.0", + "prefixLen":25, + "network":"193.144.115.0\/25", + "version":38615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.115.128", + "prefixLen":25, + "network":"193.144.115.128\/25", + "version":38614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.128.0", + "prefixLen":25, + "network":"193.144.128.0\/25", + "version":38613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.128.128", + "prefixLen":25, + "network":"193.144.128.128\/25", + "version":38612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.129.0", + "prefixLen":25, + "network":"193.144.129.0\/25", + "version":38611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.129.128", + "prefixLen":25, + "network":"193.144.129.128\/25", + "version":38610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.130.0", + "prefixLen":25, + "network":"193.144.130.0\/25", + "version":38609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.130.128", + "prefixLen":25, + "network":"193.144.130.128\/25", + "version":38608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.131.0", + "prefixLen":25, + "network":"193.144.131.0\/25", + "version":38607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.131.128", + "prefixLen":25, + "network":"193.144.131.128\/25", + "version":38606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.144.0", + "prefixLen":25, + "network":"193.144.144.0\/25", + "version":38605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.144.128", + "prefixLen":25, + "network":"193.144.144.128\/25", + "version":38604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.145.0", + "prefixLen":25, + "network":"193.144.145.0\/25", + "version":38603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.145.128", + "prefixLen":25, + "network":"193.144.145.128\/25", + "version":38602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.146.0", + "prefixLen":25, + "network":"193.144.146.0\/25", + "version":38601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.146.128", + "prefixLen":25, + "network":"193.144.146.128\/25", + "version":38600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.147.0", + "prefixLen":25, + "network":"193.144.147.0\/25", + "version":38599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.147.128", + "prefixLen":25, + "network":"193.144.147.128\/25", + "version":38598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.160.0", + "prefixLen":25, + "network":"193.144.160.0\/25", + "version":38597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.160.128", + "prefixLen":25, + "network":"193.144.160.128\/25", + "version":38596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.161.0", + "prefixLen":25, + "network":"193.144.161.0\/25", + "version":38595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.161.128", + "prefixLen":25, + "network":"193.144.161.128\/25", + "version":38594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.162.0", + "prefixLen":25, + "network":"193.144.162.0\/25", + "version":38593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.162.128", + "prefixLen":25, + "network":"193.144.162.128\/25", + "version":38592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.163.0", + "prefixLen":25, + "network":"193.144.163.0\/25", + "version":38591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.163.128", + "prefixLen":25, + "network":"193.144.163.128\/25", + "version":38590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.176.0", + "prefixLen":25, + "network":"193.144.176.0\/25", + "version":38589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.176.128", + "prefixLen":25, + "network":"193.144.176.128\/25", + "version":38588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.177.0", + "prefixLen":25, + "network":"193.144.177.0\/25", + "version":38587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.177.128", + "prefixLen":25, + "network":"193.144.177.128\/25", + "version":38586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.178.0", + "prefixLen":25, + "network":"193.144.178.0\/25", + "version":38585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.178.128", + "prefixLen":25, + "network":"193.144.178.128\/25", + "version":38584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.179.0", + "prefixLen":25, + "network":"193.144.179.0\/25", + "version":38583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.179.128", + "prefixLen":25, + "network":"193.144.179.128\/25", + "version":38582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.192.0", + "prefixLen":25, + "network":"193.144.192.0\/25", + "version":38581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.192.128", + "prefixLen":25, + "network":"193.144.192.128\/25", + "version":38580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.193.0", + "prefixLen":25, + "network":"193.144.193.0\/25", + "version":38579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.193.128", + "prefixLen":25, + "network":"193.144.193.128\/25", + "version":38578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.194.0", + "prefixLen":25, + "network":"193.144.194.0\/25", + "version":38577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.194.128", + "prefixLen":25, + "network":"193.144.194.128\/25", + "version":38576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.195.0", + "prefixLen":25, + "network":"193.144.195.0\/25", + "version":38575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.195.128", + "prefixLen":25, + "network":"193.144.195.128\/25", + "version":38574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.208.0", + "prefixLen":25, + "network":"193.144.208.0\/25", + "version":38573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.208.128", + "prefixLen":25, + "network":"193.144.208.128\/25", + "version":38572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.209.0", + "prefixLen":25, + "network":"193.144.209.0\/25", + "version":38571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.209.128", + "prefixLen":25, + "network":"193.144.209.128\/25", + "version":38570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.210.0", + "prefixLen":25, + "network":"193.144.210.0\/25", + "version":38569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.210.128", + "prefixLen":25, + "network":"193.144.210.128\/25", + "version":38568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.211.0", + "prefixLen":25, + "network":"193.144.211.0\/25", + "version":38567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.211.128", + "prefixLen":25, + "network":"193.144.211.128\/25", + "version":38566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.224.0", + "prefixLen":25, + "network":"193.144.224.0\/25", + "version":38565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.224.128", + "prefixLen":25, + "network":"193.144.224.128\/25", + "version":38564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.225.0", + "prefixLen":25, + "network":"193.144.225.0\/25", + "version":38563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.225.128", + "prefixLen":25, + "network":"193.144.225.128\/25", + "version":38562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.226.0", + "prefixLen":25, + "network":"193.144.226.0\/25", + "version":38561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.226.128", + "prefixLen":25, + "network":"193.144.226.128\/25", + "version":38560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.227.0", + "prefixLen":25, + "network":"193.144.227.0\/25", + "version":38559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.227.128", + "prefixLen":25, + "network":"193.144.227.128\/25", + "version":38558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.240.0", + "prefixLen":25, + "network":"193.144.240.0\/25", + "version":38557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.240.128", + "prefixLen":25, + "network":"193.144.240.128\/25", + "version":38556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.241.0", + "prefixLen":25, + "network":"193.144.241.0\/25", + "version":38555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.241.128", + "prefixLen":25, + "network":"193.144.241.128\/25", + "version":38554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.242.0", + "prefixLen":25, + "network":"193.144.242.0\/25", + "version":38553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.242.128", + "prefixLen":25, + "network":"193.144.242.128\/25", + "version":38552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.243.0", + "prefixLen":25, + "network":"193.144.243.0\/25", + "version":38551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.144.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.144.243.128", + "prefixLen":25, + "network":"193.144.243.128\/25", + "version":38550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64832 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.0.0", + "prefixLen":25, + "network":"193.145.0.0\/25", + "version":38677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.0.128", + "prefixLen":25, + "network":"193.145.0.128\/25", + "version":38804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.1.0", + "prefixLen":25, + "network":"193.145.1.0\/25", + "version":38803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.1.128", + "prefixLen":25, + "network":"193.145.1.128\/25", + "version":38802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.2.0", + "prefixLen":25, + "network":"193.145.2.0\/25", + "version":38801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.2.128", + "prefixLen":25, + "network":"193.145.2.128\/25", + "version":38800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.3.0", + "prefixLen":25, + "network":"193.145.3.0\/25", + "version":38799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.3.128", + "prefixLen":25, + "network":"193.145.3.128\/25", + "version":38798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.16.0", + "prefixLen":25, + "network":"193.145.16.0\/25", + "version":38797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.16.128", + "prefixLen":25, + "network":"193.145.16.128\/25", + "version":38796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.17.0", + "prefixLen":25, + "network":"193.145.17.0\/25", + "version":38795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.17.128", + "prefixLen":25, + "network":"193.145.17.128\/25", + "version":38794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.18.0", + "prefixLen":25, + "network":"193.145.18.0\/25", + "version":38793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.18.128", + "prefixLen":25, + "network":"193.145.18.128\/25", + "version":38792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.19.0", + "prefixLen":25, + "network":"193.145.19.0\/25", + "version":38791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.19.128", + "prefixLen":25, + "network":"193.145.19.128\/25", + "version":38790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.32.0", + "prefixLen":25, + "network":"193.145.32.0\/25", + "version":38789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.32.128", + "prefixLen":25, + "network":"193.145.32.128\/25", + "version":38788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.33.0", + "prefixLen":25, + "network":"193.145.33.0\/25", + "version":38787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.33.128", + "prefixLen":25, + "network":"193.145.33.128\/25", + "version":38786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.34.0", + "prefixLen":25, + "network":"193.145.34.0\/25", + "version":38785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.34.128", + "prefixLen":25, + "network":"193.145.34.128\/25", + "version":38784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.35.0", + "prefixLen":25, + "network":"193.145.35.0\/25", + "version":38783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.35.128", + "prefixLen":25, + "network":"193.145.35.128\/25", + "version":38782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.48.0", + "prefixLen":25, + "network":"193.145.48.0\/25", + "version":38781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.48.128", + "prefixLen":25, + "network":"193.145.48.128\/25", + "version":38780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.49.0", + "prefixLen":25, + "network":"193.145.49.0\/25", + "version":38779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.49.128", + "prefixLen":25, + "network":"193.145.49.128\/25", + "version":38778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.50.0", + "prefixLen":25, + "network":"193.145.50.0\/25", + "version":38777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.50.128", + "prefixLen":25, + "network":"193.145.50.128\/25", + "version":38776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.51.0", + "prefixLen":25, + "network":"193.145.51.0\/25", + "version":38775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.51.128", + "prefixLen":25, + "network":"193.145.51.128\/25", + "version":38774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.64.0", + "prefixLen":25, + "network":"193.145.64.0\/25", + "version":38773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.64.128", + "prefixLen":25, + "network":"193.145.64.128\/25", + "version":38772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.65.0", + "prefixLen":25, + "network":"193.145.65.0\/25", + "version":38771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.65.128", + "prefixLen":25, + "network":"193.145.65.128\/25", + "version":38770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.66.0", + "prefixLen":25, + "network":"193.145.66.0\/25", + "version":38769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.66.128", + "prefixLen":25, + "network":"193.145.66.128\/25", + "version":38768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.67.0", + "prefixLen":25, + "network":"193.145.67.0\/25", + "version":38767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.67.128", + "prefixLen":25, + "network":"193.145.67.128\/25", + "version":38766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.80.0", + "prefixLen":25, + "network":"193.145.80.0\/25", + "version":38765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.80.128", + "prefixLen":25, + "network":"193.145.80.128\/25", + "version":38764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.81.0", + "prefixLen":25, + "network":"193.145.81.0\/25", + "version":38763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.81.128", + "prefixLen":25, + "network":"193.145.81.128\/25", + "version":38762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.82.0", + "prefixLen":25, + "network":"193.145.82.0\/25", + "version":38761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.82.128", + "prefixLen":25, + "network":"193.145.82.128\/25", + "version":38760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.83.0", + "prefixLen":25, + "network":"193.145.83.0\/25", + "version":38759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.83.128", + "prefixLen":25, + "network":"193.145.83.128\/25", + "version":38758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.96.0", + "prefixLen":25, + "network":"193.145.96.0\/25", + "version":38757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.96.128", + "prefixLen":25, + "network":"193.145.96.128\/25", + "version":38756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.97.0", + "prefixLen":25, + "network":"193.145.97.0\/25", + "version":38755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.97.128", + "prefixLen":25, + "network":"193.145.97.128\/25", + "version":38754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.98.0", + "prefixLen":25, + "network":"193.145.98.0\/25", + "version":38753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.98.128", + "prefixLen":25, + "network":"193.145.98.128\/25", + "version":38752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.99.0", + "prefixLen":25, + "network":"193.145.99.0\/25", + "version":38751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.99.128", + "prefixLen":25, + "network":"193.145.99.128\/25", + "version":38750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.112.0", + "prefixLen":25, + "network":"193.145.112.0\/25", + "version":38749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.112.128", + "prefixLen":25, + "network":"193.145.112.128\/25", + "version":38748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.113.0", + "prefixLen":25, + "network":"193.145.113.0\/25", + "version":38747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.113.128", + "prefixLen":25, + "network":"193.145.113.128\/25", + "version":38746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.114.0", + "prefixLen":25, + "network":"193.145.114.0\/25", + "version":38745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.114.128", + "prefixLen":25, + "network":"193.145.114.128\/25", + "version":38744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.115.0", + "prefixLen":25, + "network":"193.145.115.0\/25", + "version":38743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.115.128", + "prefixLen":25, + "network":"193.145.115.128\/25", + "version":38742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.128.0", + "prefixLen":25, + "network":"193.145.128.0\/25", + "version":38741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.128.128", + "prefixLen":25, + "network":"193.145.128.128\/25", + "version":38740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.129.0", + "prefixLen":25, + "network":"193.145.129.0\/25", + "version":38739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.129.128", + "prefixLen":25, + "network":"193.145.129.128\/25", + "version":38738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.130.0", + "prefixLen":25, + "network":"193.145.130.0\/25", + "version":38737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.130.128", + "prefixLen":25, + "network":"193.145.130.128\/25", + "version":38736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.131.0", + "prefixLen":25, + "network":"193.145.131.0\/25", + "version":38735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.131.128", + "prefixLen":25, + "network":"193.145.131.128\/25", + "version":38734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.144.0", + "prefixLen":25, + "network":"193.145.144.0\/25", + "version":38733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.144.128", + "prefixLen":25, + "network":"193.145.144.128\/25", + "version":38732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.145.0", + "prefixLen":25, + "network":"193.145.145.0\/25", + "version":38731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.145.128", + "prefixLen":25, + "network":"193.145.145.128\/25", + "version":38730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.146.0", + "prefixLen":25, + "network":"193.145.146.0\/25", + "version":38729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.146.128", + "prefixLen":25, + "network":"193.145.146.128\/25", + "version":38728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.147.0", + "prefixLen":25, + "network":"193.145.147.0\/25", + "version":38727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.147.128", + "prefixLen":25, + "network":"193.145.147.128\/25", + "version":38726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.160.0", + "prefixLen":25, + "network":"193.145.160.0\/25", + "version":38725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.160.128", + "prefixLen":25, + "network":"193.145.160.128\/25", + "version":38724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.161.0", + "prefixLen":25, + "network":"193.145.161.0\/25", + "version":38723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.161.128", + "prefixLen":25, + "network":"193.145.161.128\/25", + "version":38722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.162.0", + "prefixLen":25, + "network":"193.145.162.0\/25", + "version":38721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.162.128", + "prefixLen":25, + "network":"193.145.162.128\/25", + "version":38720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.163.0", + "prefixLen":25, + "network":"193.145.163.0\/25", + "version":38719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.163.128", + "prefixLen":25, + "network":"193.145.163.128\/25", + "version":38718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.176.0", + "prefixLen":25, + "network":"193.145.176.0\/25", + "version":38717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.176.128", + "prefixLen":25, + "network":"193.145.176.128\/25", + "version":38716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.177.0", + "prefixLen":25, + "network":"193.145.177.0\/25", + "version":38715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.177.128", + "prefixLen":25, + "network":"193.145.177.128\/25", + "version":38714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.178.0", + "prefixLen":25, + "network":"193.145.178.0\/25", + "version":38713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.178.128", + "prefixLen":25, + "network":"193.145.178.128\/25", + "version":38712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.179.0", + "prefixLen":25, + "network":"193.145.179.0\/25", + "version":38711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.179.128", + "prefixLen":25, + "network":"193.145.179.128\/25", + "version":38710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.192.0", + "prefixLen":25, + "network":"193.145.192.0\/25", + "version":38709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.192.128", + "prefixLen":25, + "network":"193.145.192.128\/25", + "version":38708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.193.0", + "prefixLen":25, + "network":"193.145.193.0\/25", + "version":38707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.193.128", + "prefixLen":25, + "network":"193.145.193.128\/25", + "version":38706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.194.0", + "prefixLen":25, + "network":"193.145.194.0\/25", + "version":38705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.194.128", + "prefixLen":25, + "network":"193.145.194.128\/25", + "version":38704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.195.0", + "prefixLen":25, + "network":"193.145.195.0\/25", + "version":38703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.195.128", + "prefixLen":25, + "network":"193.145.195.128\/25", + "version":38702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.208.0", + "prefixLen":25, + "network":"193.145.208.0\/25", + "version":38701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.208.128", + "prefixLen":25, + "network":"193.145.208.128\/25", + "version":38700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.209.0", + "prefixLen":25, + "network":"193.145.209.0\/25", + "version":38699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.209.128", + "prefixLen":25, + "network":"193.145.209.128\/25", + "version":38698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.210.0", + "prefixLen":25, + "network":"193.145.210.0\/25", + "version":38697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.210.128", + "prefixLen":25, + "network":"193.145.210.128\/25", + "version":38696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.211.0", + "prefixLen":25, + "network":"193.145.211.0\/25", + "version":38695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.211.128", + "prefixLen":25, + "network":"193.145.211.128\/25", + "version":38694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.224.0", + "prefixLen":25, + "network":"193.145.224.0\/25", + "version":38693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.224.128", + "prefixLen":25, + "network":"193.145.224.128\/25", + "version":38692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.225.0", + "prefixLen":25, + "network":"193.145.225.0\/25", + "version":38691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.225.128", + "prefixLen":25, + "network":"193.145.225.128\/25", + "version":38690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.226.0", + "prefixLen":25, + "network":"193.145.226.0\/25", + "version":38689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.226.128", + "prefixLen":25, + "network":"193.145.226.128\/25", + "version":38688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.227.0", + "prefixLen":25, + "network":"193.145.227.0\/25", + "version":38687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.227.128", + "prefixLen":25, + "network":"193.145.227.128\/25", + "version":38686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.240.0", + "prefixLen":25, + "network":"193.145.240.0\/25", + "version":38685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.240.128", + "prefixLen":25, + "network":"193.145.240.128\/25", + "version":38684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.241.0", + "prefixLen":25, + "network":"193.145.241.0\/25", + "version":38683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.241.128", + "prefixLen":25, + "network":"193.145.241.128\/25", + "version":38682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.242.0", + "prefixLen":25, + "network":"193.145.242.0\/25", + "version":38681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.242.128", + "prefixLen":25, + "network":"193.145.242.128\/25", + "version":38680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.243.0", + "prefixLen":25, + "network":"193.145.243.0\/25", + "version":38679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.145.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.145.243.128", + "prefixLen":25, + "network":"193.145.243.128\/25", + "version":38678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64833 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.0.0", + "prefixLen":25, + "network":"193.146.0.0\/25", + "version":38805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.0.128", + "prefixLen":25, + "network":"193.146.0.128\/25", + "version":38932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.1.0", + "prefixLen":25, + "network":"193.146.1.0\/25", + "version":38931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.1.128", + "prefixLen":25, + "network":"193.146.1.128\/25", + "version":38930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.2.0", + "prefixLen":25, + "network":"193.146.2.0\/25", + "version":38929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.2.128", + "prefixLen":25, + "network":"193.146.2.128\/25", + "version":38928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.3.0", + "prefixLen":25, + "network":"193.146.3.0\/25", + "version":38927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.3.128", + "prefixLen":25, + "network":"193.146.3.128\/25", + "version":38926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.16.0", + "prefixLen":25, + "network":"193.146.16.0\/25", + "version":38925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.16.128", + "prefixLen":25, + "network":"193.146.16.128\/25", + "version":38924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.17.0", + "prefixLen":25, + "network":"193.146.17.0\/25", + "version":38923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.17.128", + "prefixLen":25, + "network":"193.146.17.128\/25", + "version":38922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.18.0", + "prefixLen":25, + "network":"193.146.18.0\/25", + "version":38921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.18.128", + "prefixLen":25, + "network":"193.146.18.128\/25", + "version":38920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.19.0", + "prefixLen":25, + "network":"193.146.19.0\/25", + "version":38919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.19.128", + "prefixLen":25, + "network":"193.146.19.128\/25", + "version":38918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.32.0", + "prefixLen":25, + "network":"193.146.32.0\/25", + "version":38917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.32.128", + "prefixLen":25, + "network":"193.146.32.128\/25", + "version":38916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.33.0", + "prefixLen":25, + "network":"193.146.33.0\/25", + "version":38915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.33.128", + "prefixLen":25, + "network":"193.146.33.128\/25", + "version":38914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.34.0", + "prefixLen":25, + "network":"193.146.34.0\/25", + "version":38913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.34.128", + "prefixLen":25, + "network":"193.146.34.128\/25", + "version":38912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.35.0", + "prefixLen":25, + "network":"193.146.35.0\/25", + "version":38911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.35.128", + "prefixLen":25, + "network":"193.146.35.128\/25", + "version":38910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.48.0", + "prefixLen":25, + "network":"193.146.48.0\/25", + "version":38909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.48.128", + "prefixLen":25, + "network":"193.146.48.128\/25", + "version":38908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.49.0", + "prefixLen":25, + "network":"193.146.49.0\/25", + "version":38907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.49.128", + "prefixLen":25, + "network":"193.146.49.128\/25", + "version":38906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.50.0", + "prefixLen":25, + "network":"193.146.50.0\/25", + "version":38905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.50.128", + "prefixLen":25, + "network":"193.146.50.128\/25", + "version":38904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.51.0", + "prefixLen":25, + "network":"193.146.51.0\/25", + "version":38903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.51.128", + "prefixLen":25, + "network":"193.146.51.128\/25", + "version":38902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.64.0", + "prefixLen":25, + "network":"193.146.64.0\/25", + "version":38901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.64.128", + "prefixLen":25, + "network":"193.146.64.128\/25", + "version":38900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.65.0", + "prefixLen":25, + "network":"193.146.65.0\/25", + "version":38899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.65.128", + "prefixLen":25, + "network":"193.146.65.128\/25", + "version":38898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.66.0", + "prefixLen":25, + "network":"193.146.66.0\/25", + "version":38897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.66.128", + "prefixLen":25, + "network":"193.146.66.128\/25", + "version":38896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.67.0", + "prefixLen":25, + "network":"193.146.67.0\/25", + "version":38895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.67.128", + "prefixLen":25, + "network":"193.146.67.128\/25", + "version":38894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.80.0", + "prefixLen":25, + "network":"193.146.80.0\/25", + "version":38893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.80.128", + "prefixLen":25, + "network":"193.146.80.128\/25", + "version":38892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.81.0", + "prefixLen":25, + "network":"193.146.81.0\/25", + "version":38891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.81.128", + "prefixLen":25, + "network":"193.146.81.128\/25", + "version":38890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.82.0", + "prefixLen":25, + "network":"193.146.82.0\/25", + "version":38889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.82.128", + "prefixLen":25, + "network":"193.146.82.128\/25", + "version":38888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.83.0", + "prefixLen":25, + "network":"193.146.83.0\/25", + "version":38887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.83.128", + "prefixLen":25, + "network":"193.146.83.128\/25", + "version":38886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.96.0", + "prefixLen":25, + "network":"193.146.96.0\/25", + "version":38885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.96.128", + "prefixLen":25, + "network":"193.146.96.128\/25", + "version":38884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.97.0", + "prefixLen":25, + "network":"193.146.97.0\/25", + "version":38883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.97.128", + "prefixLen":25, + "network":"193.146.97.128\/25", + "version":38882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.98.0", + "prefixLen":25, + "network":"193.146.98.0\/25", + "version":38881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.98.128", + "prefixLen":25, + "network":"193.146.98.128\/25", + "version":38880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.99.0", + "prefixLen":25, + "network":"193.146.99.0\/25", + "version":38879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.99.128", + "prefixLen":25, + "network":"193.146.99.128\/25", + "version":38878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.112.0", + "prefixLen":25, + "network":"193.146.112.0\/25", + "version":38877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.112.128", + "prefixLen":25, + "network":"193.146.112.128\/25", + "version":38876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.113.0", + "prefixLen":25, + "network":"193.146.113.0\/25", + "version":38875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.113.128", + "prefixLen":25, + "network":"193.146.113.128\/25", + "version":38874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.114.0", + "prefixLen":25, + "network":"193.146.114.0\/25", + "version":38873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.114.128", + "prefixLen":25, + "network":"193.146.114.128\/25", + "version":38872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.115.0", + "prefixLen":25, + "network":"193.146.115.0\/25", + "version":38871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.115.128", + "prefixLen":25, + "network":"193.146.115.128\/25", + "version":38870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.128.0", + "prefixLen":25, + "network":"193.146.128.0\/25", + "version":38869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.128.128", + "prefixLen":25, + "network":"193.146.128.128\/25", + "version":38868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.129.0", + "prefixLen":25, + "network":"193.146.129.0\/25", + "version":38867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.129.128", + "prefixLen":25, + "network":"193.146.129.128\/25", + "version":38866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.130.0", + "prefixLen":25, + "network":"193.146.130.0\/25", + "version":38865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.130.128", + "prefixLen":25, + "network":"193.146.130.128\/25", + "version":38864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.131.0", + "prefixLen":25, + "network":"193.146.131.0\/25", + "version":38863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.131.128", + "prefixLen":25, + "network":"193.146.131.128\/25", + "version":38862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.144.0", + "prefixLen":25, + "network":"193.146.144.0\/25", + "version":38861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.144.128", + "prefixLen":25, + "network":"193.146.144.128\/25", + "version":38860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.145.0", + "prefixLen":25, + "network":"193.146.145.0\/25", + "version":38859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.145.128", + "prefixLen":25, + "network":"193.146.145.128\/25", + "version":38858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.146.0", + "prefixLen":25, + "network":"193.146.146.0\/25", + "version":38857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.146.128", + "prefixLen":25, + "network":"193.146.146.128\/25", + "version":38856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.147.0", + "prefixLen":25, + "network":"193.146.147.0\/25", + "version":38855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.147.128", + "prefixLen":25, + "network":"193.146.147.128\/25", + "version":38854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.160.0", + "prefixLen":25, + "network":"193.146.160.0\/25", + "version":38853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.160.128", + "prefixLen":25, + "network":"193.146.160.128\/25", + "version":38852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.161.0", + "prefixLen":25, + "network":"193.146.161.0\/25", + "version":38851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.161.128", + "prefixLen":25, + "network":"193.146.161.128\/25", + "version":38850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.162.0", + "prefixLen":25, + "network":"193.146.162.0\/25", + "version":38849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.162.128", + "prefixLen":25, + "network":"193.146.162.128\/25", + "version":38848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.163.0", + "prefixLen":25, + "network":"193.146.163.0\/25", + "version":38847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.163.128", + "prefixLen":25, + "network":"193.146.163.128\/25", + "version":38846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.176.0", + "prefixLen":25, + "network":"193.146.176.0\/25", + "version":38845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.176.128", + "prefixLen":25, + "network":"193.146.176.128\/25", + "version":38844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.177.0", + "prefixLen":25, + "network":"193.146.177.0\/25", + "version":38843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.177.128", + "prefixLen":25, + "network":"193.146.177.128\/25", + "version":38842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.178.0", + "prefixLen":25, + "network":"193.146.178.0\/25", + "version":38841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.178.128", + "prefixLen":25, + "network":"193.146.178.128\/25", + "version":38840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.179.0", + "prefixLen":25, + "network":"193.146.179.0\/25", + "version":38839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.179.128", + "prefixLen":25, + "network":"193.146.179.128\/25", + "version":38838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.192.0", + "prefixLen":25, + "network":"193.146.192.0\/25", + "version":38837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.192.128", + "prefixLen":25, + "network":"193.146.192.128\/25", + "version":38836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.193.0", + "prefixLen":25, + "network":"193.146.193.0\/25", + "version":38835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.193.128", + "prefixLen":25, + "network":"193.146.193.128\/25", + "version":38834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.194.0", + "prefixLen":25, + "network":"193.146.194.0\/25", + "version":38833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.194.128", + "prefixLen":25, + "network":"193.146.194.128\/25", + "version":38832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.195.0", + "prefixLen":25, + "network":"193.146.195.0\/25", + "version":38831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.195.128", + "prefixLen":25, + "network":"193.146.195.128\/25", + "version":38830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.208.0", + "prefixLen":25, + "network":"193.146.208.0\/25", + "version":38829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.208.128", + "prefixLen":25, + "network":"193.146.208.128\/25", + "version":38828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.209.0", + "prefixLen":25, + "network":"193.146.209.0\/25", + "version":38827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.209.128", + "prefixLen":25, + "network":"193.146.209.128\/25", + "version":38826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.210.0", + "prefixLen":25, + "network":"193.146.210.0\/25", + "version":38825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.210.128", + "prefixLen":25, + "network":"193.146.210.128\/25", + "version":38824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.211.0", + "prefixLen":25, + "network":"193.146.211.0\/25", + "version":38823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.211.128", + "prefixLen":25, + "network":"193.146.211.128\/25", + "version":38822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.224.0", + "prefixLen":25, + "network":"193.146.224.0\/25", + "version":38821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.224.128", + "prefixLen":25, + "network":"193.146.224.128\/25", + "version":38820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.225.0", + "prefixLen":25, + "network":"193.146.225.0\/25", + "version":38819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.225.128", + "prefixLen":25, + "network":"193.146.225.128\/25", + "version":38818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.226.0", + "prefixLen":25, + "network":"193.146.226.0\/25", + "version":38817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.226.128", + "prefixLen":25, + "network":"193.146.226.128\/25", + "version":38816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.227.0", + "prefixLen":25, + "network":"193.146.227.0\/25", + "version":38815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.227.128", + "prefixLen":25, + "network":"193.146.227.128\/25", + "version":38814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.240.0", + "prefixLen":25, + "network":"193.146.240.0\/25", + "version":38813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.240.128", + "prefixLen":25, + "network":"193.146.240.128\/25", + "version":38812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.241.0", + "prefixLen":25, + "network":"193.146.241.0\/25", + "version":38811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.241.128", + "prefixLen":25, + "network":"193.146.241.128\/25", + "version":38810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.242.0", + "prefixLen":25, + "network":"193.146.242.0\/25", + "version":38809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.242.128", + "prefixLen":25, + "network":"193.146.242.128\/25", + "version":38808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.243.0", + "prefixLen":25, + "network":"193.146.243.0\/25", + "version":38807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.146.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.146.243.128", + "prefixLen":25, + "network":"193.146.243.128\/25", + "version":38806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64834 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.0.0", + "prefixLen":25, + "network":"193.147.0.0\/25", + "version":38933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.0.128", + "prefixLen":25, + "network":"193.147.0.128\/25", + "version":39060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.1.0", + "prefixLen":25, + "network":"193.147.1.0\/25", + "version":39059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.1.128", + "prefixLen":25, + "network":"193.147.1.128\/25", + "version":39058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.2.0", + "prefixLen":25, + "network":"193.147.2.0\/25", + "version":39057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.2.128", + "prefixLen":25, + "network":"193.147.2.128\/25", + "version":39056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.3.0", + "prefixLen":25, + "network":"193.147.3.0\/25", + "version":39055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.3.128", + "prefixLen":25, + "network":"193.147.3.128\/25", + "version":39054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.16.0", + "prefixLen":25, + "network":"193.147.16.0\/25", + "version":39053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.16.128", + "prefixLen":25, + "network":"193.147.16.128\/25", + "version":39052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.17.0", + "prefixLen":25, + "network":"193.147.17.0\/25", + "version":39051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.17.128", + "prefixLen":25, + "network":"193.147.17.128\/25", + "version":39050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.18.0", + "prefixLen":25, + "network":"193.147.18.0\/25", + "version":39049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.18.128", + "prefixLen":25, + "network":"193.147.18.128\/25", + "version":39048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.19.0", + "prefixLen":25, + "network":"193.147.19.0\/25", + "version":39047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.19.128", + "prefixLen":25, + "network":"193.147.19.128\/25", + "version":39046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.32.0", + "prefixLen":25, + "network":"193.147.32.0\/25", + "version":39045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.32.128", + "prefixLen":25, + "network":"193.147.32.128\/25", + "version":39044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.33.0", + "prefixLen":25, + "network":"193.147.33.0\/25", + "version":39043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.33.128", + "prefixLen":25, + "network":"193.147.33.128\/25", + "version":39042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.34.0", + "prefixLen":25, + "network":"193.147.34.0\/25", + "version":39041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.34.128", + "prefixLen":25, + "network":"193.147.34.128\/25", + "version":39040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.35.0", + "prefixLen":25, + "network":"193.147.35.0\/25", + "version":39039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.35.128", + "prefixLen":25, + "network":"193.147.35.128\/25", + "version":39038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.48.0", + "prefixLen":25, + "network":"193.147.48.0\/25", + "version":39037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.48.128", + "prefixLen":25, + "network":"193.147.48.128\/25", + "version":39036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.49.0", + "prefixLen":25, + "network":"193.147.49.0\/25", + "version":39035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.49.128", + "prefixLen":25, + "network":"193.147.49.128\/25", + "version":39034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.50.0", + "prefixLen":25, + "network":"193.147.50.0\/25", + "version":39033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.50.128", + "prefixLen":25, + "network":"193.147.50.128\/25", + "version":39032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.51.0", + "prefixLen":25, + "network":"193.147.51.0\/25", + "version":39031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.51.128", + "prefixLen":25, + "network":"193.147.51.128\/25", + "version":39030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.64.0", + "prefixLen":25, + "network":"193.147.64.0\/25", + "version":39029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.64.128", + "prefixLen":25, + "network":"193.147.64.128\/25", + "version":39028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.65.0", + "prefixLen":25, + "network":"193.147.65.0\/25", + "version":39027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.65.128", + "prefixLen":25, + "network":"193.147.65.128\/25", + "version":39026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.66.0", + "prefixLen":25, + "network":"193.147.66.0\/25", + "version":39025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.66.128", + "prefixLen":25, + "network":"193.147.66.128\/25", + "version":39024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.67.0", + "prefixLen":25, + "network":"193.147.67.0\/25", + "version":39023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.67.128", + "prefixLen":25, + "network":"193.147.67.128\/25", + "version":39022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.80.0", + "prefixLen":25, + "network":"193.147.80.0\/25", + "version":39021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.80.128", + "prefixLen":25, + "network":"193.147.80.128\/25", + "version":39020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.81.0", + "prefixLen":25, + "network":"193.147.81.0\/25", + "version":39019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.81.128", + "prefixLen":25, + "network":"193.147.81.128\/25", + "version":39018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.82.0", + "prefixLen":25, + "network":"193.147.82.0\/25", + "version":39017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.82.128", + "prefixLen":25, + "network":"193.147.82.128\/25", + "version":39016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.83.0", + "prefixLen":25, + "network":"193.147.83.0\/25", + "version":39015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.83.128", + "prefixLen":25, + "network":"193.147.83.128\/25", + "version":39014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.96.0", + "prefixLen":25, + "network":"193.147.96.0\/25", + "version":39013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.96.128", + "prefixLen":25, + "network":"193.147.96.128\/25", + "version":39012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.97.0", + "prefixLen":25, + "network":"193.147.97.0\/25", + "version":39011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.97.128", + "prefixLen":25, + "network":"193.147.97.128\/25", + "version":39010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.98.0", + "prefixLen":25, + "network":"193.147.98.0\/25", + "version":39009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.98.128", + "prefixLen":25, + "network":"193.147.98.128\/25", + "version":39008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.99.0", + "prefixLen":25, + "network":"193.147.99.0\/25", + "version":39007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.99.128", + "prefixLen":25, + "network":"193.147.99.128\/25", + "version":39006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.112.0", + "prefixLen":25, + "network":"193.147.112.0\/25", + "version":39005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.112.128", + "prefixLen":25, + "network":"193.147.112.128\/25", + "version":39004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.113.0", + "prefixLen":25, + "network":"193.147.113.0\/25", + "version":39003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.113.128", + "prefixLen":25, + "network":"193.147.113.128\/25", + "version":39002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.114.0", + "prefixLen":25, + "network":"193.147.114.0\/25", + "version":39001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.114.128", + "prefixLen":25, + "network":"193.147.114.128\/25", + "version":39000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.115.0", + "prefixLen":25, + "network":"193.147.115.0\/25", + "version":38999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.115.128", + "prefixLen":25, + "network":"193.147.115.128\/25", + "version":38998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.128.0", + "prefixLen":25, + "network":"193.147.128.0\/25", + "version":38997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.128.128", + "prefixLen":25, + "network":"193.147.128.128\/25", + "version":38996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.129.0", + "prefixLen":25, + "network":"193.147.129.0\/25", + "version":38995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.129.128", + "prefixLen":25, + "network":"193.147.129.128\/25", + "version":38994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.130.0", + "prefixLen":25, + "network":"193.147.130.0\/25", + "version":38993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.130.128", + "prefixLen":25, + "network":"193.147.130.128\/25", + "version":38992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.131.0", + "prefixLen":25, + "network":"193.147.131.0\/25", + "version":38991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.131.128", + "prefixLen":25, + "network":"193.147.131.128\/25", + "version":38990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.144.0", + "prefixLen":25, + "network":"193.147.144.0\/25", + "version":38989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.144.128", + "prefixLen":25, + "network":"193.147.144.128\/25", + "version":38988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.145.0", + "prefixLen":25, + "network":"193.147.145.0\/25", + "version":38987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.145.128", + "prefixLen":25, + "network":"193.147.145.128\/25", + "version":38986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.146.0", + "prefixLen":25, + "network":"193.147.146.0\/25", + "version":38985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.146.128", + "prefixLen":25, + "network":"193.147.146.128\/25", + "version":38984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.147.0", + "prefixLen":25, + "network":"193.147.147.0\/25", + "version":38983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.147.128", + "prefixLen":25, + "network":"193.147.147.128\/25", + "version":38982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.160.0", + "prefixLen":25, + "network":"193.147.160.0\/25", + "version":38981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.160.128", + "prefixLen":25, + "network":"193.147.160.128\/25", + "version":38980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.161.0", + "prefixLen":25, + "network":"193.147.161.0\/25", + "version":38979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.161.128", + "prefixLen":25, + "network":"193.147.161.128\/25", + "version":38978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.162.0", + "prefixLen":25, + "network":"193.147.162.0\/25", + "version":38977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.162.128", + "prefixLen":25, + "network":"193.147.162.128\/25", + "version":38976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.163.0", + "prefixLen":25, + "network":"193.147.163.0\/25", + "version":38975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.163.128", + "prefixLen":25, + "network":"193.147.163.128\/25", + "version":38974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.176.0", + "prefixLen":25, + "network":"193.147.176.0\/25", + "version":38973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.176.128", + "prefixLen":25, + "network":"193.147.176.128\/25", + "version":38972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.177.0", + "prefixLen":25, + "network":"193.147.177.0\/25", + "version":38971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.177.128", + "prefixLen":25, + "network":"193.147.177.128\/25", + "version":38970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.178.0", + "prefixLen":25, + "network":"193.147.178.0\/25", + "version":38969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.178.128", + "prefixLen":25, + "network":"193.147.178.128\/25", + "version":38968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.179.0", + "prefixLen":25, + "network":"193.147.179.0\/25", + "version":38967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.179.128", + "prefixLen":25, + "network":"193.147.179.128\/25", + "version":38966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.192.0", + "prefixLen":25, + "network":"193.147.192.0\/25", + "version":38965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.192.128", + "prefixLen":25, + "network":"193.147.192.128\/25", + "version":38964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.193.0", + "prefixLen":25, + "network":"193.147.193.0\/25", + "version":38963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.193.128", + "prefixLen":25, + "network":"193.147.193.128\/25", + "version":38962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.194.0", + "prefixLen":25, + "network":"193.147.194.0\/25", + "version":38961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.194.128", + "prefixLen":25, + "network":"193.147.194.128\/25", + "version":38960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.195.0", + "prefixLen":25, + "network":"193.147.195.0\/25", + "version":38959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.195.128", + "prefixLen":25, + "network":"193.147.195.128\/25", + "version":38958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.208.0", + "prefixLen":25, + "network":"193.147.208.0\/25", + "version":38957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.208.128", + "prefixLen":25, + "network":"193.147.208.128\/25", + "version":38956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.209.0", + "prefixLen":25, + "network":"193.147.209.0\/25", + "version":38955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.209.128", + "prefixLen":25, + "network":"193.147.209.128\/25", + "version":38954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.210.0", + "prefixLen":25, + "network":"193.147.210.0\/25", + "version":38953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.210.128", + "prefixLen":25, + "network":"193.147.210.128\/25", + "version":38952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.211.0", + "prefixLen":25, + "network":"193.147.211.0\/25", + "version":38951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.211.128", + "prefixLen":25, + "network":"193.147.211.128\/25", + "version":38950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.224.0", + "prefixLen":25, + "network":"193.147.224.0\/25", + "version":38949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.224.128", + "prefixLen":25, + "network":"193.147.224.128\/25", + "version":38948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.225.0", + "prefixLen":25, + "network":"193.147.225.0\/25", + "version":38947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.225.128", + "prefixLen":25, + "network":"193.147.225.128\/25", + "version":38946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.226.0", + "prefixLen":25, + "network":"193.147.226.0\/25", + "version":38945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.226.128", + "prefixLen":25, + "network":"193.147.226.128\/25", + "version":38944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.227.0", + "prefixLen":25, + "network":"193.147.227.0\/25", + "version":38943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.227.128", + "prefixLen":25, + "network":"193.147.227.128\/25", + "version":38942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.240.0", + "prefixLen":25, + "network":"193.147.240.0\/25", + "version":38941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.240.128", + "prefixLen":25, + "network":"193.147.240.128\/25", + "version":38940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.241.0", + "prefixLen":25, + "network":"193.147.241.0\/25", + "version":38939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.241.128", + "prefixLen":25, + "network":"193.147.241.128\/25", + "version":38938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.242.0", + "prefixLen":25, + "network":"193.147.242.0\/25", + "version":38937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.242.128", + "prefixLen":25, + "network":"193.147.242.128\/25", + "version":38936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.243.0", + "prefixLen":25, + "network":"193.147.243.0\/25", + "version":38935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.147.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.147.243.128", + "prefixLen":25, + "network":"193.147.243.128\/25", + "version":38934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64835 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.0.0", + "prefixLen":25, + "network":"193.148.0.0\/25", + "version":39061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.0.128", + "prefixLen":25, + "network":"193.148.0.128\/25", + "version":39188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.1.0", + "prefixLen":25, + "network":"193.148.1.0\/25", + "version":39187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.1.128", + "prefixLen":25, + "network":"193.148.1.128\/25", + "version":39186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.2.0", + "prefixLen":25, + "network":"193.148.2.0\/25", + "version":39185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.2.128", + "prefixLen":25, + "network":"193.148.2.128\/25", + "version":39184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.3.0", + "prefixLen":25, + "network":"193.148.3.0\/25", + "version":39183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.3.128", + "prefixLen":25, + "network":"193.148.3.128\/25", + "version":39182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.16.0", + "prefixLen":25, + "network":"193.148.16.0\/25", + "version":39181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.16.128", + "prefixLen":25, + "network":"193.148.16.128\/25", + "version":39180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.17.0", + "prefixLen":25, + "network":"193.148.17.0\/25", + "version":39179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.17.128", + "prefixLen":25, + "network":"193.148.17.128\/25", + "version":39178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.18.0", + "prefixLen":25, + "network":"193.148.18.0\/25", + "version":39177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.18.128", + "prefixLen":25, + "network":"193.148.18.128\/25", + "version":39176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.19.0", + "prefixLen":25, + "network":"193.148.19.0\/25", + "version":39175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.19.128", + "prefixLen":25, + "network":"193.148.19.128\/25", + "version":39174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.32.0", + "prefixLen":25, + "network":"193.148.32.0\/25", + "version":39173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.32.128", + "prefixLen":25, + "network":"193.148.32.128\/25", + "version":39172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.33.0", + "prefixLen":25, + "network":"193.148.33.0\/25", + "version":39171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.33.128", + "prefixLen":25, + "network":"193.148.33.128\/25", + "version":39170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.34.0", + "prefixLen":25, + "network":"193.148.34.0\/25", + "version":39169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.34.128", + "prefixLen":25, + "network":"193.148.34.128\/25", + "version":39168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.35.0", + "prefixLen":25, + "network":"193.148.35.0\/25", + "version":39167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.35.128", + "prefixLen":25, + "network":"193.148.35.128\/25", + "version":39166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.48.0", + "prefixLen":25, + "network":"193.148.48.0\/25", + "version":39165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.48.128", + "prefixLen":25, + "network":"193.148.48.128\/25", + "version":39164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.49.0", + "prefixLen":25, + "network":"193.148.49.0\/25", + "version":39163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.49.128", + "prefixLen":25, + "network":"193.148.49.128\/25", + "version":39162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.50.0", + "prefixLen":25, + "network":"193.148.50.0\/25", + "version":39161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.50.128", + "prefixLen":25, + "network":"193.148.50.128\/25", + "version":39160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.51.0", + "prefixLen":25, + "network":"193.148.51.0\/25", + "version":39159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.51.128", + "prefixLen":25, + "network":"193.148.51.128\/25", + "version":39158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.64.0", + "prefixLen":25, + "network":"193.148.64.0\/25", + "version":39157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.64.128", + "prefixLen":25, + "network":"193.148.64.128\/25", + "version":39156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.65.0", + "prefixLen":25, + "network":"193.148.65.0\/25", + "version":39155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.65.128", + "prefixLen":25, + "network":"193.148.65.128\/25", + "version":39154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.66.0", + "prefixLen":25, + "network":"193.148.66.0\/25", + "version":39153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.66.128", + "prefixLen":25, + "network":"193.148.66.128\/25", + "version":39152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.67.0", + "prefixLen":25, + "network":"193.148.67.0\/25", + "version":39151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.67.128", + "prefixLen":25, + "network":"193.148.67.128\/25", + "version":39150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.80.0", + "prefixLen":25, + "network":"193.148.80.0\/25", + "version":39149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.80.128", + "prefixLen":25, + "network":"193.148.80.128\/25", + "version":39148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.81.0", + "prefixLen":25, + "network":"193.148.81.0\/25", + "version":39147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.81.128", + "prefixLen":25, + "network":"193.148.81.128\/25", + "version":39146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.82.0", + "prefixLen":25, + "network":"193.148.82.0\/25", + "version":39145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.82.128", + "prefixLen":25, + "network":"193.148.82.128\/25", + "version":39144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.83.0", + "prefixLen":25, + "network":"193.148.83.0\/25", + "version":39143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.83.128", + "prefixLen":25, + "network":"193.148.83.128\/25", + "version":39142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.96.0", + "prefixLen":25, + "network":"193.148.96.0\/25", + "version":39141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.96.128", + "prefixLen":25, + "network":"193.148.96.128\/25", + "version":39140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.97.0", + "prefixLen":25, + "network":"193.148.97.0\/25", + "version":39139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.97.128", + "prefixLen":25, + "network":"193.148.97.128\/25", + "version":39138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.98.0", + "prefixLen":25, + "network":"193.148.98.0\/25", + "version":39137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.98.128", + "prefixLen":25, + "network":"193.148.98.128\/25", + "version":39136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.99.0", + "prefixLen":25, + "network":"193.148.99.0\/25", + "version":39135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.99.128", + "prefixLen":25, + "network":"193.148.99.128\/25", + "version":39134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.112.0", + "prefixLen":25, + "network":"193.148.112.0\/25", + "version":39133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.112.128", + "prefixLen":25, + "network":"193.148.112.128\/25", + "version":39132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.113.0", + "prefixLen":25, + "network":"193.148.113.0\/25", + "version":39131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.113.128", + "prefixLen":25, + "network":"193.148.113.128\/25", + "version":39130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.114.0", + "prefixLen":25, + "network":"193.148.114.0\/25", + "version":39129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.114.128", + "prefixLen":25, + "network":"193.148.114.128\/25", + "version":39128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.115.0", + "prefixLen":25, + "network":"193.148.115.0\/25", + "version":39127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.115.128", + "prefixLen":25, + "network":"193.148.115.128\/25", + "version":39126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.128.0", + "prefixLen":25, + "network":"193.148.128.0\/25", + "version":39125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.128.128", + "prefixLen":25, + "network":"193.148.128.128\/25", + "version":39124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.129.0", + "prefixLen":25, + "network":"193.148.129.0\/25", + "version":39123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.129.128", + "prefixLen":25, + "network":"193.148.129.128\/25", + "version":39122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.130.0", + "prefixLen":25, + "network":"193.148.130.0\/25", + "version":39121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.130.128", + "prefixLen":25, + "network":"193.148.130.128\/25", + "version":39120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.131.0", + "prefixLen":25, + "network":"193.148.131.0\/25", + "version":39119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.131.128", + "prefixLen":25, + "network":"193.148.131.128\/25", + "version":39118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.144.0", + "prefixLen":25, + "network":"193.148.144.0\/25", + "version":39117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.144.128", + "prefixLen":25, + "network":"193.148.144.128\/25", + "version":39116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.145.0", + "prefixLen":25, + "network":"193.148.145.0\/25", + "version":39115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.145.128", + "prefixLen":25, + "network":"193.148.145.128\/25", + "version":39114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.146.0", + "prefixLen":25, + "network":"193.148.146.0\/25", + "version":39113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.146.128", + "prefixLen":25, + "network":"193.148.146.128\/25", + "version":39112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.147.0", + "prefixLen":25, + "network":"193.148.147.0\/25", + "version":39111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.147.128", + "prefixLen":25, + "network":"193.148.147.128\/25", + "version":39110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.160.0", + "prefixLen":25, + "network":"193.148.160.0\/25", + "version":39109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.160.128", + "prefixLen":25, + "network":"193.148.160.128\/25", + "version":39108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.161.0", + "prefixLen":25, + "network":"193.148.161.0\/25", + "version":39107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.161.128", + "prefixLen":25, + "network":"193.148.161.128\/25", + "version":39106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.162.0", + "prefixLen":25, + "network":"193.148.162.0\/25", + "version":39105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.162.128", + "prefixLen":25, + "network":"193.148.162.128\/25", + "version":39104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.163.0", + "prefixLen":25, + "network":"193.148.163.0\/25", + "version":39103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.163.128", + "prefixLen":25, + "network":"193.148.163.128\/25", + "version":39102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.176.0", + "prefixLen":25, + "network":"193.148.176.0\/25", + "version":39101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.176.128", + "prefixLen":25, + "network":"193.148.176.128\/25", + "version":39100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.177.0", + "prefixLen":25, + "network":"193.148.177.0\/25", + "version":39099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.177.128", + "prefixLen":25, + "network":"193.148.177.128\/25", + "version":39098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.178.0", + "prefixLen":25, + "network":"193.148.178.0\/25", + "version":39097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.178.128", + "prefixLen":25, + "network":"193.148.178.128\/25", + "version":39096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.179.0", + "prefixLen":25, + "network":"193.148.179.0\/25", + "version":39095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.179.128", + "prefixLen":25, + "network":"193.148.179.128\/25", + "version":39094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.192.0", + "prefixLen":25, + "network":"193.148.192.0\/25", + "version":39093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.192.128", + "prefixLen":25, + "network":"193.148.192.128\/25", + "version":39092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.193.0", + "prefixLen":25, + "network":"193.148.193.0\/25", + "version":39091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.193.128", + "prefixLen":25, + "network":"193.148.193.128\/25", + "version":39090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.194.0", + "prefixLen":25, + "network":"193.148.194.0\/25", + "version":39089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.194.128", + "prefixLen":25, + "network":"193.148.194.128\/25", + "version":39088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.195.0", + "prefixLen":25, + "network":"193.148.195.0\/25", + "version":39087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.195.128", + "prefixLen":25, + "network":"193.148.195.128\/25", + "version":39086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.208.0", + "prefixLen":25, + "network":"193.148.208.0\/25", + "version":39085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.208.128", + "prefixLen":25, + "network":"193.148.208.128\/25", + "version":39084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.209.0", + "prefixLen":25, + "network":"193.148.209.0\/25", + "version":39083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.209.128", + "prefixLen":25, + "network":"193.148.209.128\/25", + "version":39082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.210.0", + "prefixLen":25, + "network":"193.148.210.0\/25", + "version":39081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.210.128", + "prefixLen":25, + "network":"193.148.210.128\/25", + "version":39080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.211.0", + "prefixLen":25, + "network":"193.148.211.0\/25", + "version":39079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.211.128", + "prefixLen":25, + "network":"193.148.211.128\/25", + "version":39078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.224.0", + "prefixLen":25, + "network":"193.148.224.0\/25", + "version":39077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.224.128", + "prefixLen":25, + "network":"193.148.224.128\/25", + "version":39076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.225.0", + "prefixLen":25, + "network":"193.148.225.0\/25", + "version":39075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.225.128", + "prefixLen":25, + "network":"193.148.225.128\/25", + "version":39074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.226.0", + "prefixLen":25, + "network":"193.148.226.0\/25", + "version":39073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.226.128", + "prefixLen":25, + "network":"193.148.226.128\/25", + "version":39072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.227.0", + "prefixLen":25, + "network":"193.148.227.0\/25", + "version":39071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.227.128", + "prefixLen":25, + "network":"193.148.227.128\/25", + "version":39070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.240.0", + "prefixLen":25, + "network":"193.148.240.0\/25", + "version":39069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.240.128", + "prefixLen":25, + "network":"193.148.240.128\/25", + "version":39068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.241.0", + "prefixLen":25, + "network":"193.148.241.0\/25", + "version":39067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.241.128", + "prefixLen":25, + "network":"193.148.241.128\/25", + "version":39066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.242.0", + "prefixLen":25, + "network":"193.148.242.0\/25", + "version":39065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.242.128", + "prefixLen":25, + "network":"193.148.242.128\/25", + "version":39064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.243.0", + "prefixLen":25, + "network":"193.148.243.0\/25", + "version":39063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.148.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.148.243.128", + "prefixLen":25, + "network":"193.148.243.128\/25", + "version":39062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64836 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.0.0", + "prefixLen":25, + "network":"193.149.0.0\/25", + "version":40469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.0.128", + "prefixLen":25, + "network":"193.149.0.128\/25", + "version":40596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.1.0", + "prefixLen":25, + "network":"193.149.1.0\/25", + "version":40595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.1.128", + "prefixLen":25, + "network":"193.149.1.128\/25", + "version":40594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.2.0", + "prefixLen":25, + "network":"193.149.2.0\/25", + "version":40593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.2.128", + "prefixLen":25, + "network":"193.149.2.128\/25", + "version":40592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.3.0", + "prefixLen":25, + "network":"193.149.3.0\/25", + "version":40591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.3.128", + "prefixLen":25, + "network":"193.149.3.128\/25", + "version":40590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.16.0", + "prefixLen":25, + "network":"193.149.16.0\/25", + "version":40589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.16.128", + "prefixLen":25, + "network":"193.149.16.128\/25", + "version":40588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.17.0", + "prefixLen":25, + "network":"193.149.17.0\/25", + "version":40587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.17.128", + "prefixLen":25, + "network":"193.149.17.128\/25", + "version":40586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.18.0", + "prefixLen":25, + "network":"193.149.18.0\/25", + "version":40585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.18.128", + "prefixLen":25, + "network":"193.149.18.128\/25", + "version":40584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.19.0", + "prefixLen":25, + "network":"193.149.19.0\/25", + "version":40583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.19.128", + "prefixLen":25, + "network":"193.149.19.128\/25", + "version":40582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.32.0", + "prefixLen":25, + "network":"193.149.32.0\/25", + "version":40581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.32.128", + "prefixLen":25, + "network":"193.149.32.128\/25", + "version":40580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.33.0", + "prefixLen":25, + "network":"193.149.33.0\/25", + "version":40579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.33.128", + "prefixLen":25, + "network":"193.149.33.128\/25", + "version":40578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.34.0", + "prefixLen":25, + "network":"193.149.34.0\/25", + "version":40577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.34.128", + "prefixLen":25, + "network":"193.149.34.128\/25", + "version":40576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.35.0", + "prefixLen":25, + "network":"193.149.35.0\/25", + "version":40575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.35.128", + "prefixLen":25, + "network":"193.149.35.128\/25", + "version":40574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.48.0", + "prefixLen":25, + "network":"193.149.48.0\/25", + "version":40573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.48.128", + "prefixLen":25, + "network":"193.149.48.128\/25", + "version":40572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.49.0", + "prefixLen":25, + "network":"193.149.49.0\/25", + "version":40571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.49.128", + "prefixLen":25, + "network":"193.149.49.128\/25", + "version":40570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.50.0", + "prefixLen":25, + "network":"193.149.50.0\/25", + "version":40569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.50.128", + "prefixLen":25, + "network":"193.149.50.128\/25", + "version":40568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.51.0", + "prefixLen":25, + "network":"193.149.51.0\/25", + "version":40567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.51.128", + "prefixLen":25, + "network":"193.149.51.128\/25", + "version":40566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.64.0", + "prefixLen":25, + "network":"193.149.64.0\/25", + "version":40565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.64.128", + "prefixLen":25, + "network":"193.149.64.128\/25", + "version":40564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.65.0", + "prefixLen":25, + "network":"193.149.65.0\/25", + "version":40563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.65.128", + "prefixLen":25, + "network":"193.149.65.128\/25", + "version":40562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.66.0", + "prefixLen":25, + "network":"193.149.66.0\/25", + "version":40561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.66.128", + "prefixLen":25, + "network":"193.149.66.128\/25", + "version":40560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.67.0", + "prefixLen":25, + "network":"193.149.67.0\/25", + "version":40559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.67.128", + "prefixLen":25, + "network":"193.149.67.128\/25", + "version":40558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.80.0", + "prefixLen":25, + "network":"193.149.80.0\/25", + "version":40557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.80.128", + "prefixLen":25, + "network":"193.149.80.128\/25", + "version":40556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.81.0", + "prefixLen":25, + "network":"193.149.81.0\/25", + "version":40555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.81.128", + "prefixLen":25, + "network":"193.149.81.128\/25", + "version":40554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.82.0", + "prefixLen":25, + "network":"193.149.82.0\/25", + "version":40553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.82.128", + "prefixLen":25, + "network":"193.149.82.128\/25", + "version":40552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.83.0", + "prefixLen":25, + "network":"193.149.83.0\/25", + "version":40551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.83.128", + "prefixLen":25, + "network":"193.149.83.128\/25", + "version":40550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.96.0", + "prefixLen":25, + "network":"193.149.96.0\/25", + "version":40549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.96.128", + "prefixLen":25, + "network":"193.149.96.128\/25", + "version":40548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.97.0", + "prefixLen":25, + "network":"193.149.97.0\/25", + "version":40547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.97.128", + "prefixLen":25, + "network":"193.149.97.128\/25", + "version":40546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.98.0", + "prefixLen":25, + "network":"193.149.98.0\/25", + "version":40545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.98.128", + "prefixLen":25, + "network":"193.149.98.128\/25", + "version":40544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.99.0", + "prefixLen":25, + "network":"193.149.99.0\/25", + "version":40543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.99.128", + "prefixLen":25, + "network":"193.149.99.128\/25", + "version":40542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.112.0", + "prefixLen":25, + "network":"193.149.112.0\/25", + "version":40541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.112.128", + "prefixLen":25, + "network":"193.149.112.128\/25", + "version":40540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.113.0", + "prefixLen":25, + "network":"193.149.113.0\/25", + "version":40539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.113.128", + "prefixLen":25, + "network":"193.149.113.128\/25", + "version":40538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.114.0", + "prefixLen":25, + "network":"193.149.114.0\/25", + "version":40537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.114.128", + "prefixLen":25, + "network":"193.149.114.128\/25", + "version":40536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.115.0", + "prefixLen":25, + "network":"193.149.115.0\/25", + "version":40535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.115.128", + "prefixLen":25, + "network":"193.149.115.128\/25", + "version":40534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.128.0", + "prefixLen":25, + "network":"193.149.128.0\/25", + "version":40533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.128.128", + "prefixLen":25, + "network":"193.149.128.128\/25", + "version":40532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.129.0", + "prefixLen":25, + "network":"193.149.129.0\/25", + "version":40531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.129.128", + "prefixLen":25, + "network":"193.149.129.128\/25", + "version":40530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.130.0", + "prefixLen":25, + "network":"193.149.130.0\/25", + "version":40529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.130.128", + "prefixLen":25, + "network":"193.149.130.128\/25", + "version":40528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.131.0", + "prefixLen":25, + "network":"193.149.131.0\/25", + "version":40527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.131.128", + "prefixLen":25, + "network":"193.149.131.128\/25", + "version":40526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.144.0", + "prefixLen":25, + "network":"193.149.144.0\/25", + "version":40525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.144.128", + "prefixLen":25, + "network":"193.149.144.128\/25", + "version":40524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.145.0", + "prefixLen":25, + "network":"193.149.145.0\/25", + "version":40523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.145.128", + "prefixLen":25, + "network":"193.149.145.128\/25", + "version":40522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.146.0", + "prefixLen":25, + "network":"193.149.146.0\/25", + "version":40521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.146.128", + "prefixLen":25, + "network":"193.149.146.128\/25", + "version":40520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.147.0", + "prefixLen":25, + "network":"193.149.147.0\/25", + "version":40519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.147.128", + "prefixLen":25, + "network":"193.149.147.128\/25", + "version":40518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.160.0", + "prefixLen":25, + "network":"193.149.160.0\/25", + "version":40517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.160.128", + "prefixLen":25, + "network":"193.149.160.128\/25", + "version":40516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.161.0", + "prefixLen":25, + "network":"193.149.161.0\/25", + "version":40515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.161.128", + "prefixLen":25, + "network":"193.149.161.128\/25", + "version":40514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.162.0", + "prefixLen":25, + "network":"193.149.162.0\/25", + "version":40513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.162.128", + "prefixLen":25, + "network":"193.149.162.128\/25", + "version":40512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.163.0", + "prefixLen":25, + "network":"193.149.163.0\/25", + "version":40511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.163.128", + "prefixLen":25, + "network":"193.149.163.128\/25", + "version":40510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.176.0", + "prefixLen":25, + "network":"193.149.176.0\/25", + "version":40509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.176.128", + "prefixLen":25, + "network":"193.149.176.128\/25", + "version":40508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.177.0", + "prefixLen":25, + "network":"193.149.177.0\/25", + "version":40507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.177.128", + "prefixLen":25, + "network":"193.149.177.128\/25", + "version":40506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.178.0", + "prefixLen":25, + "network":"193.149.178.0\/25", + "version":40505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.178.128", + "prefixLen":25, + "network":"193.149.178.128\/25", + "version":40504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.179.0", + "prefixLen":25, + "network":"193.149.179.0\/25", + "version":40503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.179.128", + "prefixLen":25, + "network":"193.149.179.128\/25", + "version":40502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.192.0", + "prefixLen":25, + "network":"193.149.192.0\/25", + "version":40501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.192.128", + "prefixLen":25, + "network":"193.149.192.128\/25", + "version":40500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.193.0", + "prefixLen":25, + "network":"193.149.193.0\/25", + "version":40499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.193.128", + "prefixLen":25, + "network":"193.149.193.128\/25", + "version":40498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.194.0", + "prefixLen":25, + "network":"193.149.194.0\/25", + "version":40497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.194.128", + "prefixLen":25, + "network":"193.149.194.128\/25", + "version":40496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.195.0", + "prefixLen":25, + "network":"193.149.195.0\/25", + "version":40495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.195.128", + "prefixLen":25, + "network":"193.149.195.128\/25", + "version":40494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.208.0", + "prefixLen":25, + "network":"193.149.208.0\/25", + "version":40493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.208.128", + "prefixLen":25, + "network":"193.149.208.128\/25", + "version":40492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.209.0", + "prefixLen":25, + "network":"193.149.209.0\/25", + "version":40491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.209.128", + "prefixLen":25, + "network":"193.149.209.128\/25", + "version":40490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.210.0", + "prefixLen":25, + "network":"193.149.210.0\/25", + "version":40489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.210.128", + "prefixLen":25, + "network":"193.149.210.128\/25", + "version":40488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.211.0", + "prefixLen":25, + "network":"193.149.211.0\/25", + "version":40487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.211.128", + "prefixLen":25, + "network":"193.149.211.128\/25", + "version":40486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.224.0", + "prefixLen":25, + "network":"193.149.224.0\/25", + "version":40485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.224.128", + "prefixLen":25, + "network":"193.149.224.128\/25", + "version":40484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.225.0", + "prefixLen":25, + "network":"193.149.225.0\/25", + "version":40483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.225.128", + "prefixLen":25, + "network":"193.149.225.128\/25", + "version":40482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.226.0", + "prefixLen":25, + "network":"193.149.226.0\/25", + "version":40481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.226.128", + "prefixLen":25, + "network":"193.149.226.128\/25", + "version":40480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.227.0", + "prefixLen":25, + "network":"193.149.227.0\/25", + "version":40479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.227.128", + "prefixLen":25, + "network":"193.149.227.128\/25", + "version":40478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.240.0", + "prefixLen":25, + "network":"193.149.240.0\/25", + "version":40477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.240.128", + "prefixLen":25, + "network":"193.149.240.128\/25", + "version":40476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.241.0", + "prefixLen":25, + "network":"193.149.241.0\/25", + "version":40475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.241.128", + "prefixLen":25, + "network":"193.149.241.128\/25", + "version":40474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.242.0", + "prefixLen":25, + "network":"193.149.242.0\/25", + "version":40473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.242.128", + "prefixLen":25, + "network":"193.149.242.128\/25", + "version":40472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.243.0", + "prefixLen":25, + "network":"193.149.243.0\/25", + "version":40471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.149.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.149.243.128", + "prefixLen":25, + "network":"193.149.243.128\/25", + "version":40470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64837 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.0.0", + "prefixLen":25, + "network":"193.150.0.0\/25", + "version":40597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.0.128", + "prefixLen":25, + "network":"193.150.0.128\/25", + "version":40724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.1.0", + "prefixLen":25, + "network":"193.150.1.0\/25", + "version":40723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.1.128", + "prefixLen":25, + "network":"193.150.1.128\/25", + "version":40722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.2.0", + "prefixLen":25, + "network":"193.150.2.0\/25", + "version":40721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.2.128", + "prefixLen":25, + "network":"193.150.2.128\/25", + "version":40720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.3.0", + "prefixLen":25, + "network":"193.150.3.0\/25", + "version":40719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.3.128", + "prefixLen":25, + "network":"193.150.3.128\/25", + "version":40718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.16.0", + "prefixLen":25, + "network":"193.150.16.0\/25", + "version":40717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.16.128", + "prefixLen":25, + "network":"193.150.16.128\/25", + "version":40716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.17.0", + "prefixLen":25, + "network":"193.150.17.0\/25", + "version":40715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.17.128", + "prefixLen":25, + "network":"193.150.17.128\/25", + "version":40714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.18.0", + "prefixLen":25, + "network":"193.150.18.0\/25", + "version":40713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.18.128", + "prefixLen":25, + "network":"193.150.18.128\/25", + "version":40712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.19.0", + "prefixLen":25, + "network":"193.150.19.0\/25", + "version":40711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.19.128", + "prefixLen":25, + "network":"193.150.19.128\/25", + "version":40710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.32.0", + "prefixLen":25, + "network":"193.150.32.0\/25", + "version":40709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.32.128", + "prefixLen":25, + "network":"193.150.32.128\/25", + "version":40708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.33.0", + "prefixLen":25, + "network":"193.150.33.0\/25", + "version":40707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.33.128", + "prefixLen":25, + "network":"193.150.33.128\/25", + "version":40706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.34.0", + "prefixLen":25, + "network":"193.150.34.0\/25", + "version":40705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.34.128", + "prefixLen":25, + "network":"193.150.34.128\/25", + "version":40704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.35.0", + "prefixLen":25, + "network":"193.150.35.0\/25", + "version":40703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.35.128", + "prefixLen":25, + "network":"193.150.35.128\/25", + "version":40702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.48.0", + "prefixLen":25, + "network":"193.150.48.0\/25", + "version":40701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.48.128", + "prefixLen":25, + "network":"193.150.48.128\/25", + "version":40700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.49.0", + "prefixLen":25, + "network":"193.150.49.0\/25", + "version":40699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.49.128", + "prefixLen":25, + "network":"193.150.49.128\/25", + "version":40698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.50.0", + "prefixLen":25, + "network":"193.150.50.0\/25", + "version":40697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.50.128", + "prefixLen":25, + "network":"193.150.50.128\/25", + "version":40696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.51.0", + "prefixLen":25, + "network":"193.150.51.0\/25", + "version":40695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.51.128", + "prefixLen":25, + "network":"193.150.51.128\/25", + "version":40694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.64.0", + "prefixLen":25, + "network":"193.150.64.0\/25", + "version":40693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.64.128", + "prefixLen":25, + "network":"193.150.64.128\/25", + "version":40692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.65.0", + "prefixLen":25, + "network":"193.150.65.0\/25", + "version":40691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.65.128", + "prefixLen":25, + "network":"193.150.65.128\/25", + "version":40690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.66.0", + "prefixLen":25, + "network":"193.150.66.0\/25", + "version":40689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.66.128", + "prefixLen":25, + "network":"193.150.66.128\/25", + "version":40688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.67.0", + "prefixLen":25, + "network":"193.150.67.0\/25", + "version":40687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.67.128", + "prefixLen":25, + "network":"193.150.67.128\/25", + "version":40686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.80.0", + "prefixLen":25, + "network":"193.150.80.0\/25", + "version":40685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.80.128", + "prefixLen":25, + "network":"193.150.80.128\/25", + "version":40684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.81.0", + "prefixLen":25, + "network":"193.150.81.0\/25", + "version":40683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.81.128", + "prefixLen":25, + "network":"193.150.81.128\/25", + "version":40682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.82.0", + "prefixLen":25, + "network":"193.150.82.0\/25", + "version":40681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.82.128", + "prefixLen":25, + "network":"193.150.82.128\/25", + "version":40680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.83.0", + "prefixLen":25, + "network":"193.150.83.0\/25", + "version":40679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.83.128", + "prefixLen":25, + "network":"193.150.83.128\/25", + "version":40678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.96.0", + "prefixLen":25, + "network":"193.150.96.0\/25", + "version":40677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.96.128", + "prefixLen":25, + "network":"193.150.96.128\/25", + "version":40676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.97.0", + "prefixLen":25, + "network":"193.150.97.0\/25", + "version":40675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.97.128", + "prefixLen":25, + "network":"193.150.97.128\/25", + "version":40674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.98.0", + "prefixLen":25, + "network":"193.150.98.0\/25", + "version":40673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.98.128", + "prefixLen":25, + "network":"193.150.98.128\/25", + "version":40672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.99.0", + "prefixLen":25, + "network":"193.150.99.0\/25", + "version":40671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.99.128", + "prefixLen":25, + "network":"193.150.99.128\/25", + "version":40670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.112.0", + "prefixLen":25, + "network":"193.150.112.0\/25", + "version":40669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.112.128", + "prefixLen":25, + "network":"193.150.112.128\/25", + "version":40668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.113.0", + "prefixLen":25, + "network":"193.150.113.0\/25", + "version":40667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.113.128", + "prefixLen":25, + "network":"193.150.113.128\/25", + "version":40666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.114.0", + "prefixLen":25, + "network":"193.150.114.0\/25", + "version":40665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.114.128", + "prefixLen":25, + "network":"193.150.114.128\/25", + "version":40664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.115.0", + "prefixLen":25, + "network":"193.150.115.0\/25", + "version":40663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.115.128", + "prefixLen":25, + "network":"193.150.115.128\/25", + "version":40662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.128.0", + "prefixLen":25, + "network":"193.150.128.0\/25", + "version":40661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.128.128", + "prefixLen":25, + "network":"193.150.128.128\/25", + "version":40660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.129.0", + "prefixLen":25, + "network":"193.150.129.0\/25", + "version":40659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.129.128", + "prefixLen":25, + "network":"193.150.129.128\/25", + "version":40658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.130.0", + "prefixLen":25, + "network":"193.150.130.0\/25", + "version":40657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.130.128", + "prefixLen":25, + "network":"193.150.130.128\/25", + "version":40656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.131.0", + "prefixLen":25, + "network":"193.150.131.0\/25", + "version":40655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.131.128", + "prefixLen":25, + "network":"193.150.131.128\/25", + "version":40654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.144.0", + "prefixLen":25, + "network":"193.150.144.0\/25", + "version":40653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.144.128", + "prefixLen":25, + "network":"193.150.144.128\/25", + "version":40652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.145.0", + "prefixLen":25, + "network":"193.150.145.0\/25", + "version":40651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.145.128", + "prefixLen":25, + "network":"193.150.145.128\/25", + "version":40650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.146.0", + "prefixLen":25, + "network":"193.150.146.0\/25", + "version":40649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.146.128", + "prefixLen":25, + "network":"193.150.146.128\/25", + "version":40648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.147.0", + "prefixLen":25, + "network":"193.150.147.0\/25", + "version":40647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.147.128", + "prefixLen":25, + "network":"193.150.147.128\/25", + "version":40646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.160.0", + "prefixLen":25, + "network":"193.150.160.0\/25", + "version":40645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.160.128", + "prefixLen":25, + "network":"193.150.160.128\/25", + "version":40644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.161.0", + "prefixLen":25, + "network":"193.150.161.0\/25", + "version":40643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.161.128", + "prefixLen":25, + "network":"193.150.161.128\/25", + "version":40642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.162.0", + "prefixLen":25, + "network":"193.150.162.0\/25", + "version":40641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.162.128", + "prefixLen":25, + "network":"193.150.162.128\/25", + "version":40640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.163.0", + "prefixLen":25, + "network":"193.150.163.0\/25", + "version":40639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.163.128", + "prefixLen":25, + "network":"193.150.163.128\/25", + "version":40638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.176.0", + "prefixLen":25, + "network":"193.150.176.0\/25", + "version":40637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.176.128", + "prefixLen":25, + "network":"193.150.176.128\/25", + "version":40636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.177.0", + "prefixLen":25, + "network":"193.150.177.0\/25", + "version":40635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.177.128", + "prefixLen":25, + "network":"193.150.177.128\/25", + "version":40634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.178.0", + "prefixLen":25, + "network":"193.150.178.0\/25", + "version":40633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.178.128", + "prefixLen":25, + "network":"193.150.178.128\/25", + "version":40632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.179.0", + "prefixLen":25, + "network":"193.150.179.0\/25", + "version":40631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.179.128", + "prefixLen":25, + "network":"193.150.179.128\/25", + "version":40630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.192.0", + "prefixLen":25, + "network":"193.150.192.0\/25", + "version":40629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.192.128", + "prefixLen":25, + "network":"193.150.192.128\/25", + "version":40628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.193.0", + "prefixLen":25, + "network":"193.150.193.0\/25", + "version":40627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.193.128", + "prefixLen":25, + "network":"193.150.193.128\/25", + "version":40626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.194.0", + "prefixLen":25, + "network":"193.150.194.0\/25", + "version":40625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.194.128", + "prefixLen":25, + "network":"193.150.194.128\/25", + "version":40624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.195.0", + "prefixLen":25, + "network":"193.150.195.0\/25", + "version":40623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.195.128", + "prefixLen":25, + "network":"193.150.195.128\/25", + "version":40622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.208.0", + "prefixLen":25, + "network":"193.150.208.0\/25", + "version":40621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.208.128", + "prefixLen":25, + "network":"193.150.208.128\/25", + "version":40620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.209.0", + "prefixLen":25, + "network":"193.150.209.0\/25", + "version":40619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.209.128", + "prefixLen":25, + "network":"193.150.209.128\/25", + "version":40618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.210.0", + "prefixLen":25, + "network":"193.150.210.0\/25", + "version":40617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.210.128", + "prefixLen":25, + "network":"193.150.210.128\/25", + "version":40616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.211.0", + "prefixLen":25, + "network":"193.150.211.0\/25", + "version":40615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.211.128", + "prefixLen":25, + "network":"193.150.211.128\/25", + "version":40614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.224.0", + "prefixLen":25, + "network":"193.150.224.0\/25", + "version":40613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.224.128", + "prefixLen":25, + "network":"193.150.224.128\/25", + "version":40612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.225.0", + "prefixLen":25, + "network":"193.150.225.0\/25", + "version":40611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.225.128", + "prefixLen":25, + "network":"193.150.225.128\/25", + "version":40610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.226.0", + "prefixLen":25, + "network":"193.150.226.0\/25", + "version":40609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.226.128", + "prefixLen":25, + "network":"193.150.226.128\/25", + "version":40608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.227.0", + "prefixLen":25, + "network":"193.150.227.0\/25", + "version":40607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.227.128", + "prefixLen":25, + "network":"193.150.227.128\/25", + "version":40606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.240.0", + "prefixLen":25, + "network":"193.150.240.0\/25", + "version":40605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.240.128", + "prefixLen":25, + "network":"193.150.240.128\/25", + "version":40604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.241.0", + "prefixLen":25, + "network":"193.150.241.0\/25", + "version":40603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.241.128", + "prefixLen":25, + "network":"193.150.241.128\/25", + "version":40602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.242.0", + "prefixLen":25, + "network":"193.150.242.0\/25", + "version":40601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.242.128", + "prefixLen":25, + "network":"193.150.242.128\/25", + "version":40600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.243.0", + "prefixLen":25, + "network":"193.150.243.0\/25", + "version":40599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.150.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.150.243.128", + "prefixLen":25, + "network":"193.150.243.128\/25", + "version":40598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64838 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.0.0", + "prefixLen":25, + "network":"193.151.0.0\/25", + "version":40725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.0.128", + "prefixLen":25, + "network":"193.151.0.128\/25", + "version":40852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.1.0", + "prefixLen":25, + "network":"193.151.1.0\/25", + "version":40851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.1.128", + "prefixLen":25, + "network":"193.151.1.128\/25", + "version":40850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.2.0", + "prefixLen":25, + "network":"193.151.2.0\/25", + "version":40849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.2.128", + "prefixLen":25, + "network":"193.151.2.128\/25", + "version":40848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.3.0", + "prefixLen":25, + "network":"193.151.3.0\/25", + "version":40847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.3.128", + "prefixLen":25, + "network":"193.151.3.128\/25", + "version":40846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.16.0", + "prefixLen":25, + "network":"193.151.16.0\/25", + "version":40845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.16.128", + "prefixLen":25, + "network":"193.151.16.128\/25", + "version":40844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.17.0", + "prefixLen":25, + "network":"193.151.17.0\/25", + "version":40843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.17.128", + "prefixLen":25, + "network":"193.151.17.128\/25", + "version":40842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.18.0", + "prefixLen":25, + "network":"193.151.18.0\/25", + "version":40841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.18.128", + "prefixLen":25, + "network":"193.151.18.128\/25", + "version":40840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.19.0", + "prefixLen":25, + "network":"193.151.19.0\/25", + "version":40839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.19.128", + "prefixLen":25, + "network":"193.151.19.128\/25", + "version":40838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.32.0", + "prefixLen":25, + "network":"193.151.32.0\/25", + "version":40837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.32.128", + "prefixLen":25, + "network":"193.151.32.128\/25", + "version":40836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.33.0", + "prefixLen":25, + "network":"193.151.33.0\/25", + "version":40835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.33.128", + "prefixLen":25, + "network":"193.151.33.128\/25", + "version":40834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.34.0", + "prefixLen":25, + "network":"193.151.34.0\/25", + "version":40833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.34.128", + "prefixLen":25, + "network":"193.151.34.128\/25", + "version":40832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.35.0", + "prefixLen":25, + "network":"193.151.35.0\/25", + "version":40831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.35.128", + "prefixLen":25, + "network":"193.151.35.128\/25", + "version":40830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.48.0", + "prefixLen":25, + "network":"193.151.48.0\/25", + "version":40829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.48.128", + "prefixLen":25, + "network":"193.151.48.128\/25", + "version":40828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.49.0", + "prefixLen":25, + "network":"193.151.49.0\/25", + "version":40827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.49.128", + "prefixLen":25, + "network":"193.151.49.128\/25", + "version":40826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.50.0", + "prefixLen":25, + "network":"193.151.50.0\/25", + "version":40825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.50.128", + "prefixLen":25, + "network":"193.151.50.128\/25", + "version":40824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.51.0", + "prefixLen":25, + "network":"193.151.51.0\/25", + "version":40823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.51.128", + "prefixLen":25, + "network":"193.151.51.128\/25", + "version":40822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.64.0", + "prefixLen":25, + "network":"193.151.64.0\/25", + "version":40821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.64.128", + "prefixLen":25, + "network":"193.151.64.128\/25", + "version":40820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.65.0", + "prefixLen":25, + "network":"193.151.65.0\/25", + "version":40819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.65.128", + "prefixLen":25, + "network":"193.151.65.128\/25", + "version":40818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.66.0", + "prefixLen":25, + "network":"193.151.66.0\/25", + "version":40817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.66.128", + "prefixLen":25, + "network":"193.151.66.128\/25", + "version":40816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.67.0", + "prefixLen":25, + "network":"193.151.67.0\/25", + "version":40815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.67.128", + "prefixLen":25, + "network":"193.151.67.128\/25", + "version":40814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.80.0", + "prefixLen":25, + "network":"193.151.80.0\/25", + "version":40813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.80.128", + "prefixLen":25, + "network":"193.151.80.128\/25", + "version":40812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.81.0", + "prefixLen":25, + "network":"193.151.81.0\/25", + "version":40811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.81.128", + "prefixLen":25, + "network":"193.151.81.128\/25", + "version":40810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.82.0", + "prefixLen":25, + "network":"193.151.82.0\/25", + "version":40809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.82.128", + "prefixLen":25, + "network":"193.151.82.128\/25", + "version":40808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.83.0", + "prefixLen":25, + "network":"193.151.83.0\/25", + "version":40807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.83.128", + "prefixLen":25, + "network":"193.151.83.128\/25", + "version":40806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.96.0", + "prefixLen":25, + "network":"193.151.96.0\/25", + "version":40805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.96.128", + "prefixLen":25, + "network":"193.151.96.128\/25", + "version":40804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.97.0", + "prefixLen":25, + "network":"193.151.97.0\/25", + "version":40803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.97.128", + "prefixLen":25, + "network":"193.151.97.128\/25", + "version":40802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.98.0", + "prefixLen":25, + "network":"193.151.98.0\/25", + "version":40801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.98.128", + "prefixLen":25, + "network":"193.151.98.128\/25", + "version":40800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.99.0", + "prefixLen":25, + "network":"193.151.99.0\/25", + "version":40799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.99.128", + "prefixLen":25, + "network":"193.151.99.128\/25", + "version":40798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.112.0", + "prefixLen":25, + "network":"193.151.112.0\/25", + "version":40797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.112.128", + "prefixLen":25, + "network":"193.151.112.128\/25", + "version":40796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.113.0", + "prefixLen":25, + "network":"193.151.113.0\/25", + "version":40795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.113.128", + "prefixLen":25, + "network":"193.151.113.128\/25", + "version":40794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.114.0", + "prefixLen":25, + "network":"193.151.114.0\/25", + "version":40793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.114.128", + "prefixLen":25, + "network":"193.151.114.128\/25", + "version":40792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.115.0", + "prefixLen":25, + "network":"193.151.115.0\/25", + "version":40791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.115.128", + "prefixLen":25, + "network":"193.151.115.128\/25", + "version":40790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.128.0", + "prefixLen":25, + "network":"193.151.128.0\/25", + "version":40789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.128.128", + "prefixLen":25, + "network":"193.151.128.128\/25", + "version":40788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.129.0", + "prefixLen":25, + "network":"193.151.129.0\/25", + "version":40787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.129.128", + "prefixLen":25, + "network":"193.151.129.128\/25", + "version":40786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.130.0", + "prefixLen":25, + "network":"193.151.130.0\/25", + "version":40785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.130.128", + "prefixLen":25, + "network":"193.151.130.128\/25", + "version":40784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.131.0", + "prefixLen":25, + "network":"193.151.131.0\/25", + "version":40783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.131.128", + "prefixLen":25, + "network":"193.151.131.128\/25", + "version":40782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.144.0", + "prefixLen":25, + "network":"193.151.144.0\/25", + "version":40781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.144.128", + "prefixLen":25, + "network":"193.151.144.128\/25", + "version":40780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.145.0", + "prefixLen":25, + "network":"193.151.145.0\/25", + "version":40779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.145.128", + "prefixLen":25, + "network":"193.151.145.128\/25", + "version":40778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.146.0", + "prefixLen":25, + "network":"193.151.146.0\/25", + "version":40777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.146.128", + "prefixLen":25, + "network":"193.151.146.128\/25", + "version":40776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.147.0", + "prefixLen":25, + "network":"193.151.147.0\/25", + "version":40775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.147.128", + "prefixLen":25, + "network":"193.151.147.128\/25", + "version":40774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.160.0", + "prefixLen":25, + "network":"193.151.160.0\/25", + "version":40773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.160.128", + "prefixLen":25, + "network":"193.151.160.128\/25", + "version":40772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.161.0", + "prefixLen":25, + "network":"193.151.161.0\/25", + "version":40771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.161.128", + "prefixLen":25, + "network":"193.151.161.128\/25", + "version":40770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.162.0", + "prefixLen":25, + "network":"193.151.162.0\/25", + "version":40769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.162.128", + "prefixLen":25, + "network":"193.151.162.128\/25", + "version":40768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.163.0", + "prefixLen":25, + "network":"193.151.163.0\/25", + "version":40767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.163.128", + "prefixLen":25, + "network":"193.151.163.128\/25", + "version":40766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.176.0", + "prefixLen":25, + "network":"193.151.176.0\/25", + "version":40765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.176.128", + "prefixLen":25, + "network":"193.151.176.128\/25", + "version":40764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.177.0", + "prefixLen":25, + "network":"193.151.177.0\/25", + "version":40763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.177.128", + "prefixLen":25, + "network":"193.151.177.128\/25", + "version":40762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.178.0", + "prefixLen":25, + "network":"193.151.178.0\/25", + "version":40761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.178.128", + "prefixLen":25, + "network":"193.151.178.128\/25", + "version":40760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.179.0", + "prefixLen":25, + "network":"193.151.179.0\/25", + "version":40759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.179.128", + "prefixLen":25, + "network":"193.151.179.128\/25", + "version":40758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.192.0", + "prefixLen":25, + "network":"193.151.192.0\/25", + "version":40757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.192.128", + "prefixLen":25, + "network":"193.151.192.128\/25", + "version":40756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.193.0", + "prefixLen":25, + "network":"193.151.193.0\/25", + "version":40755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.193.128", + "prefixLen":25, + "network":"193.151.193.128\/25", + "version":40754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.194.0", + "prefixLen":25, + "network":"193.151.194.0\/25", + "version":40753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.194.128", + "prefixLen":25, + "network":"193.151.194.128\/25", + "version":40752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.195.0", + "prefixLen":25, + "network":"193.151.195.0\/25", + "version":40751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.195.128", + "prefixLen":25, + "network":"193.151.195.128\/25", + "version":40750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.208.0", + "prefixLen":25, + "network":"193.151.208.0\/25", + "version":40749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.208.128", + "prefixLen":25, + "network":"193.151.208.128\/25", + "version":40748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.209.0", + "prefixLen":25, + "network":"193.151.209.0\/25", + "version":40747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.209.128", + "prefixLen":25, + "network":"193.151.209.128\/25", + "version":40746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.210.0", + "prefixLen":25, + "network":"193.151.210.0\/25", + "version":40745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.210.128", + "prefixLen":25, + "network":"193.151.210.128\/25", + "version":40744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.211.0", + "prefixLen":25, + "network":"193.151.211.0\/25", + "version":40743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.211.128", + "prefixLen":25, + "network":"193.151.211.128\/25", + "version":40742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.224.0", + "prefixLen":25, + "network":"193.151.224.0\/25", + "version":40741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.224.128", + "prefixLen":25, + "network":"193.151.224.128\/25", + "version":40740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.225.0", + "prefixLen":25, + "network":"193.151.225.0\/25", + "version":40739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.225.128", + "prefixLen":25, + "network":"193.151.225.128\/25", + "version":40738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.226.0", + "prefixLen":25, + "network":"193.151.226.0\/25", + "version":40737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.226.128", + "prefixLen":25, + "network":"193.151.226.128\/25", + "version":40736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.227.0", + "prefixLen":25, + "network":"193.151.227.0\/25", + "version":40735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.227.128", + "prefixLen":25, + "network":"193.151.227.128\/25", + "version":40734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.240.0", + "prefixLen":25, + "network":"193.151.240.0\/25", + "version":40733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.240.128", + "prefixLen":25, + "network":"193.151.240.128\/25", + "version":40732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.241.0", + "prefixLen":25, + "network":"193.151.241.0\/25", + "version":40731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.241.128", + "prefixLen":25, + "network":"193.151.241.128\/25", + "version":40730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.242.0", + "prefixLen":25, + "network":"193.151.242.0\/25", + "version":40729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.242.128", + "prefixLen":25, + "network":"193.151.242.128\/25", + "version":40728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.243.0", + "prefixLen":25, + "network":"193.151.243.0\/25", + "version":40727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.151.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.151.243.128", + "prefixLen":25, + "network":"193.151.243.128\/25", + "version":40726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64839 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.0.0", + "prefixLen":25, + "network":"193.152.0.0\/25", + "version":40853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.0.128", + "prefixLen":25, + "network":"193.152.0.128\/25", + "version":40980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.1.0", + "prefixLen":25, + "network":"193.152.1.0\/25", + "version":40979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.1.128", + "prefixLen":25, + "network":"193.152.1.128\/25", + "version":40978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.2.0", + "prefixLen":25, + "network":"193.152.2.0\/25", + "version":40977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.2.128", + "prefixLen":25, + "network":"193.152.2.128\/25", + "version":40976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.3.0", + "prefixLen":25, + "network":"193.152.3.0\/25", + "version":40975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.3.128", + "prefixLen":25, + "network":"193.152.3.128\/25", + "version":40974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.16.0", + "prefixLen":25, + "network":"193.152.16.0\/25", + "version":40973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.16.128", + "prefixLen":25, + "network":"193.152.16.128\/25", + "version":40972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.17.0", + "prefixLen":25, + "network":"193.152.17.0\/25", + "version":40971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.17.128", + "prefixLen":25, + "network":"193.152.17.128\/25", + "version":40970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.18.0", + "prefixLen":25, + "network":"193.152.18.0\/25", + "version":40969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.18.128", + "prefixLen":25, + "network":"193.152.18.128\/25", + "version":40968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.19.0", + "prefixLen":25, + "network":"193.152.19.0\/25", + "version":40967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.19.128", + "prefixLen":25, + "network":"193.152.19.128\/25", + "version":40966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.32.0", + "prefixLen":25, + "network":"193.152.32.0\/25", + "version":40965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.32.128", + "prefixLen":25, + "network":"193.152.32.128\/25", + "version":40964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.33.0", + "prefixLen":25, + "network":"193.152.33.0\/25", + "version":40963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.33.128", + "prefixLen":25, + "network":"193.152.33.128\/25", + "version":40962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.34.0", + "prefixLen":25, + "network":"193.152.34.0\/25", + "version":40961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.34.128", + "prefixLen":25, + "network":"193.152.34.128\/25", + "version":40960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.35.0", + "prefixLen":25, + "network":"193.152.35.0\/25", + "version":40959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.35.128", + "prefixLen":25, + "network":"193.152.35.128\/25", + "version":40958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.48.0", + "prefixLen":25, + "network":"193.152.48.0\/25", + "version":40957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.48.128", + "prefixLen":25, + "network":"193.152.48.128\/25", + "version":40956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.49.0", + "prefixLen":25, + "network":"193.152.49.0\/25", + "version":40955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.49.128", + "prefixLen":25, + "network":"193.152.49.128\/25", + "version":40954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.50.0", + "prefixLen":25, + "network":"193.152.50.0\/25", + "version":40953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.50.128", + "prefixLen":25, + "network":"193.152.50.128\/25", + "version":40952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.51.0", + "prefixLen":25, + "network":"193.152.51.0\/25", + "version":40951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.51.128", + "prefixLen":25, + "network":"193.152.51.128\/25", + "version":40950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.64.0", + "prefixLen":25, + "network":"193.152.64.0\/25", + "version":40949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.64.128", + "prefixLen":25, + "network":"193.152.64.128\/25", + "version":40948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.65.0", + "prefixLen":25, + "network":"193.152.65.0\/25", + "version":40947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.65.128", + "prefixLen":25, + "network":"193.152.65.128\/25", + "version":40946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.66.0", + "prefixLen":25, + "network":"193.152.66.0\/25", + "version":40945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.66.128", + "prefixLen":25, + "network":"193.152.66.128\/25", + "version":40944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.67.0", + "prefixLen":25, + "network":"193.152.67.0\/25", + "version":40943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.67.128", + "prefixLen":25, + "network":"193.152.67.128\/25", + "version":40942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.80.0", + "prefixLen":25, + "network":"193.152.80.0\/25", + "version":40941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.80.128", + "prefixLen":25, + "network":"193.152.80.128\/25", + "version":40940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.81.0", + "prefixLen":25, + "network":"193.152.81.0\/25", + "version":40939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.81.128", + "prefixLen":25, + "network":"193.152.81.128\/25", + "version":40938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.82.0", + "prefixLen":25, + "network":"193.152.82.0\/25", + "version":40937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.82.128", + "prefixLen":25, + "network":"193.152.82.128\/25", + "version":40936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.83.0", + "prefixLen":25, + "network":"193.152.83.0\/25", + "version":40935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.83.128", + "prefixLen":25, + "network":"193.152.83.128\/25", + "version":40934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.96.0", + "prefixLen":25, + "network":"193.152.96.0\/25", + "version":40933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.96.128", + "prefixLen":25, + "network":"193.152.96.128\/25", + "version":40932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.97.0", + "prefixLen":25, + "network":"193.152.97.0\/25", + "version":40931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.97.128", + "prefixLen":25, + "network":"193.152.97.128\/25", + "version":40930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.98.0", + "prefixLen":25, + "network":"193.152.98.0\/25", + "version":40929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.98.128", + "prefixLen":25, + "network":"193.152.98.128\/25", + "version":40928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.99.0", + "prefixLen":25, + "network":"193.152.99.0\/25", + "version":40927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.99.128", + "prefixLen":25, + "network":"193.152.99.128\/25", + "version":40926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.112.0", + "prefixLen":25, + "network":"193.152.112.0\/25", + "version":40925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.112.128", + "prefixLen":25, + "network":"193.152.112.128\/25", + "version":40924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.113.0", + "prefixLen":25, + "network":"193.152.113.0\/25", + "version":40923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.113.128", + "prefixLen":25, + "network":"193.152.113.128\/25", + "version":40922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.114.0", + "prefixLen":25, + "network":"193.152.114.0\/25", + "version":40921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.114.128", + "prefixLen":25, + "network":"193.152.114.128\/25", + "version":40920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.115.0", + "prefixLen":25, + "network":"193.152.115.0\/25", + "version":40919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.115.128", + "prefixLen":25, + "network":"193.152.115.128\/25", + "version":40918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.128.0", + "prefixLen":25, + "network":"193.152.128.0\/25", + "version":40917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.128.128", + "prefixLen":25, + "network":"193.152.128.128\/25", + "version":40916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.129.0", + "prefixLen":25, + "network":"193.152.129.0\/25", + "version":40915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.129.128", + "prefixLen":25, + "network":"193.152.129.128\/25", + "version":40914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.130.0", + "prefixLen":25, + "network":"193.152.130.0\/25", + "version":40913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.130.128", + "prefixLen":25, + "network":"193.152.130.128\/25", + "version":40912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.131.0", + "prefixLen":25, + "network":"193.152.131.0\/25", + "version":40911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.131.128", + "prefixLen":25, + "network":"193.152.131.128\/25", + "version":40910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.144.0", + "prefixLen":25, + "network":"193.152.144.0\/25", + "version":40909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.144.128", + "prefixLen":25, + "network":"193.152.144.128\/25", + "version":40908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.145.0", + "prefixLen":25, + "network":"193.152.145.0\/25", + "version":40907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.145.128", + "prefixLen":25, + "network":"193.152.145.128\/25", + "version":40906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.146.0", + "prefixLen":25, + "network":"193.152.146.0\/25", + "version":40905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.146.128", + "prefixLen":25, + "network":"193.152.146.128\/25", + "version":40904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.147.0", + "prefixLen":25, + "network":"193.152.147.0\/25", + "version":40903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.147.128", + "prefixLen":25, + "network":"193.152.147.128\/25", + "version":40902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.160.0", + "prefixLen":25, + "network":"193.152.160.0\/25", + "version":40901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.160.128", + "prefixLen":25, + "network":"193.152.160.128\/25", + "version":40900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.161.0", + "prefixLen":25, + "network":"193.152.161.0\/25", + "version":40899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.161.128", + "prefixLen":25, + "network":"193.152.161.128\/25", + "version":40898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.162.0", + "prefixLen":25, + "network":"193.152.162.0\/25", + "version":40897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.162.128", + "prefixLen":25, + "network":"193.152.162.128\/25", + "version":40896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.163.0", + "prefixLen":25, + "network":"193.152.163.0\/25", + "version":40895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.163.128", + "prefixLen":25, + "network":"193.152.163.128\/25", + "version":40894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.176.0", + "prefixLen":25, + "network":"193.152.176.0\/25", + "version":40893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.176.128", + "prefixLen":25, + "network":"193.152.176.128\/25", + "version":40892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.177.0", + "prefixLen":25, + "network":"193.152.177.0\/25", + "version":40891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.177.128", + "prefixLen":25, + "network":"193.152.177.128\/25", + "version":40890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.178.0", + "prefixLen":25, + "network":"193.152.178.0\/25", + "version":40889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.178.128", + "prefixLen":25, + "network":"193.152.178.128\/25", + "version":40888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.179.0", + "prefixLen":25, + "network":"193.152.179.0\/25", + "version":40887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.179.128", + "prefixLen":25, + "network":"193.152.179.128\/25", + "version":40886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.192.0", + "prefixLen":25, + "network":"193.152.192.0\/25", + "version":40885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.192.128", + "prefixLen":25, + "network":"193.152.192.128\/25", + "version":40884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.193.0", + "prefixLen":25, + "network":"193.152.193.0\/25", + "version":40883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.193.128", + "prefixLen":25, + "network":"193.152.193.128\/25", + "version":40882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.194.0", + "prefixLen":25, + "network":"193.152.194.0\/25", + "version":40881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.194.128", + "prefixLen":25, + "network":"193.152.194.128\/25", + "version":40880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.195.0", + "prefixLen":25, + "network":"193.152.195.0\/25", + "version":40879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.195.128", + "prefixLen":25, + "network":"193.152.195.128\/25", + "version":40878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.208.0", + "prefixLen":25, + "network":"193.152.208.0\/25", + "version":40877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.208.128", + "prefixLen":25, + "network":"193.152.208.128\/25", + "version":40876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.209.0", + "prefixLen":25, + "network":"193.152.209.0\/25", + "version":40875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.209.128", + "prefixLen":25, + "network":"193.152.209.128\/25", + "version":40874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.210.0", + "prefixLen":25, + "network":"193.152.210.0\/25", + "version":40873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.210.128", + "prefixLen":25, + "network":"193.152.210.128\/25", + "version":40872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.211.0", + "prefixLen":25, + "network":"193.152.211.0\/25", + "version":40871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.211.128", + "prefixLen":25, + "network":"193.152.211.128\/25", + "version":40870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.224.0", + "prefixLen":25, + "network":"193.152.224.0\/25", + "version":40869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.224.128", + "prefixLen":25, + "network":"193.152.224.128\/25", + "version":40868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.225.0", + "prefixLen":25, + "network":"193.152.225.0\/25", + "version":40867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.225.128", + "prefixLen":25, + "network":"193.152.225.128\/25", + "version":40866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.226.0", + "prefixLen":25, + "network":"193.152.226.0\/25", + "version":40865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.226.128", + "prefixLen":25, + "network":"193.152.226.128\/25", + "version":40864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.227.0", + "prefixLen":25, + "network":"193.152.227.0\/25", + "version":40863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.227.128", + "prefixLen":25, + "network":"193.152.227.128\/25", + "version":40862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.240.0", + "prefixLen":25, + "network":"193.152.240.0\/25", + "version":40861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.240.128", + "prefixLen":25, + "network":"193.152.240.128\/25", + "version":40860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.241.0", + "prefixLen":25, + "network":"193.152.241.0\/25", + "version":40859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.241.128", + "prefixLen":25, + "network":"193.152.241.128\/25", + "version":40858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.242.0", + "prefixLen":25, + "network":"193.152.242.0\/25", + "version":40857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.242.128", + "prefixLen":25, + "network":"193.152.242.128\/25", + "version":40856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.243.0", + "prefixLen":25, + "network":"193.152.243.0\/25", + "version":40855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.152.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.152.243.128", + "prefixLen":25, + "network":"193.152.243.128\/25", + "version":40854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64840 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.0.0", + "prefixLen":25, + "network":"193.153.0.0\/25", + "version":40981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.0.128", + "prefixLen":25, + "network":"193.153.0.128\/25", + "version":41108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.1.0", + "prefixLen":25, + "network":"193.153.1.0\/25", + "version":41107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.1.128", + "prefixLen":25, + "network":"193.153.1.128\/25", + "version":41106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.2.0", + "prefixLen":25, + "network":"193.153.2.0\/25", + "version":41105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.2.128", + "prefixLen":25, + "network":"193.153.2.128\/25", + "version":41104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.3.0", + "prefixLen":25, + "network":"193.153.3.0\/25", + "version":41103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.3.128", + "prefixLen":25, + "network":"193.153.3.128\/25", + "version":41102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.16.0", + "prefixLen":25, + "network":"193.153.16.0\/25", + "version":41101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.16.128", + "prefixLen":25, + "network":"193.153.16.128\/25", + "version":41100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.17.0", + "prefixLen":25, + "network":"193.153.17.0\/25", + "version":41099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.17.128", + "prefixLen":25, + "network":"193.153.17.128\/25", + "version":41098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.18.0", + "prefixLen":25, + "network":"193.153.18.0\/25", + "version":41097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.18.128", + "prefixLen":25, + "network":"193.153.18.128\/25", + "version":41096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.19.0", + "prefixLen":25, + "network":"193.153.19.0\/25", + "version":41095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.19.128", + "prefixLen":25, + "network":"193.153.19.128\/25", + "version":41094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.32.0", + "prefixLen":25, + "network":"193.153.32.0\/25", + "version":41093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.32.128", + "prefixLen":25, + "network":"193.153.32.128\/25", + "version":41092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.33.0", + "prefixLen":25, + "network":"193.153.33.0\/25", + "version":41091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.33.128", + "prefixLen":25, + "network":"193.153.33.128\/25", + "version":41090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.34.0", + "prefixLen":25, + "network":"193.153.34.0\/25", + "version":41089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.34.128", + "prefixLen":25, + "network":"193.153.34.128\/25", + "version":41088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.35.0", + "prefixLen":25, + "network":"193.153.35.0\/25", + "version":41087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.35.128", + "prefixLen":25, + "network":"193.153.35.128\/25", + "version":41086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.48.0", + "prefixLen":25, + "network":"193.153.48.0\/25", + "version":41085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.48.128", + "prefixLen":25, + "network":"193.153.48.128\/25", + "version":41084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.49.0", + "prefixLen":25, + "network":"193.153.49.0\/25", + "version":41083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.49.128", + "prefixLen":25, + "network":"193.153.49.128\/25", + "version":41082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.50.0", + "prefixLen":25, + "network":"193.153.50.0\/25", + "version":41081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.50.128", + "prefixLen":25, + "network":"193.153.50.128\/25", + "version":41080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.51.0", + "prefixLen":25, + "network":"193.153.51.0\/25", + "version":41079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.51.128", + "prefixLen":25, + "network":"193.153.51.128\/25", + "version":41078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.64.0", + "prefixLen":25, + "network":"193.153.64.0\/25", + "version":41077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.64.128", + "prefixLen":25, + "network":"193.153.64.128\/25", + "version":41076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.65.0", + "prefixLen":25, + "network":"193.153.65.0\/25", + "version":41075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.65.128", + "prefixLen":25, + "network":"193.153.65.128\/25", + "version":41074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.66.0", + "prefixLen":25, + "network":"193.153.66.0\/25", + "version":41073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.66.128", + "prefixLen":25, + "network":"193.153.66.128\/25", + "version":41072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.67.0", + "prefixLen":25, + "network":"193.153.67.0\/25", + "version":41071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.67.128", + "prefixLen":25, + "network":"193.153.67.128\/25", + "version":41070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.80.0", + "prefixLen":25, + "network":"193.153.80.0\/25", + "version":41069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.80.128", + "prefixLen":25, + "network":"193.153.80.128\/25", + "version":41068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.81.0", + "prefixLen":25, + "network":"193.153.81.0\/25", + "version":41067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.81.128", + "prefixLen":25, + "network":"193.153.81.128\/25", + "version":41066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.82.0", + "prefixLen":25, + "network":"193.153.82.0\/25", + "version":41065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.82.128", + "prefixLen":25, + "network":"193.153.82.128\/25", + "version":41064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.83.0", + "prefixLen":25, + "network":"193.153.83.0\/25", + "version":41063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.83.128", + "prefixLen":25, + "network":"193.153.83.128\/25", + "version":41062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.96.0", + "prefixLen":25, + "network":"193.153.96.0\/25", + "version":41061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.96.128", + "prefixLen":25, + "network":"193.153.96.128\/25", + "version":41060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.97.0", + "prefixLen":25, + "network":"193.153.97.0\/25", + "version":41059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.97.128", + "prefixLen":25, + "network":"193.153.97.128\/25", + "version":41058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.98.0", + "prefixLen":25, + "network":"193.153.98.0\/25", + "version":41057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.98.128", + "prefixLen":25, + "network":"193.153.98.128\/25", + "version":41056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.99.0", + "prefixLen":25, + "network":"193.153.99.0\/25", + "version":41055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.99.128", + "prefixLen":25, + "network":"193.153.99.128\/25", + "version":41054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.112.0", + "prefixLen":25, + "network":"193.153.112.0\/25", + "version":41053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.112.128", + "prefixLen":25, + "network":"193.153.112.128\/25", + "version":41052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.113.0", + "prefixLen":25, + "network":"193.153.113.0\/25", + "version":41051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.113.128", + "prefixLen":25, + "network":"193.153.113.128\/25", + "version":41050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.114.0", + "prefixLen":25, + "network":"193.153.114.0\/25", + "version":41049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.114.128", + "prefixLen":25, + "network":"193.153.114.128\/25", + "version":41048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.115.0", + "prefixLen":25, + "network":"193.153.115.0\/25", + "version":41047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.115.128", + "prefixLen":25, + "network":"193.153.115.128\/25", + "version":41046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.128.0", + "prefixLen":25, + "network":"193.153.128.0\/25", + "version":41045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.128.128", + "prefixLen":25, + "network":"193.153.128.128\/25", + "version":41044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.129.0", + "prefixLen":25, + "network":"193.153.129.0\/25", + "version":41043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.129.128", + "prefixLen":25, + "network":"193.153.129.128\/25", + "version":41042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.130.0", + "prefixLen":25, + "network":"193.153.130.0\/25", + "version":41041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.130.128", + "prefixLen":25, + "network":"193.153.130.128\/25", + "version":41040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.131.0", + "prefixLen":25, + "network":"193.153.131.0\/25", + "version":41039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.131.128", + "prefixLen":25, + "network":"193.153.131.128\/25", + "version":41038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.144.0", + "prefixLen":25, + "network":"193.153.144.0\/25", + "version":41037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.144.128", + "prefixLen":25, + "network":"193.153.144.128\/25", + "version":41036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.145.0", + "prefixLen":25, + "network":"193.153.145.0\/25", + "version":41035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.145.128", + "prefixLen":25, + "network":"193.153.145.128\/25", + "version":41034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.146.0", + "prefixLen":25, + "network":"193.153.146.0\/25", + "version":41033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.146.128", + "prefixLen":25, + "network":"193.153.146.128\/25", + "version":41032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.147.0", + "prefixLen":25, + "network":"193.153.147.0\/25", + "version":41031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.147.128", + "prefixLen":25, + "network":"193.153.147.128\/25", + "version":41030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.160.0", + "prefixLen":25, + "network":"193.153.160.0\/25", + "version":41029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.160.128", + "prefixLen":25, + "network":"193.153.160.128\/25", + "version":41028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.161.0", + "prefixLen":25, + "network":"193.153.161.0\/25", + "version":41027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.161.128", + "prefixLen":25, + "network":"193.153.161.128\/25", + "version":41026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.162.0", + "prefixLen":25, + "network":"193.153.162.0\/25", + "version":41025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.162.128", + "prefixLen":25, + "network":"193.153.162.128\/25", + "version":41024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.163.0", + "prefixLen":25, + "network":"193.153.163.0\/25", + "version":41023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.163.128", + "prefixLen":25, + "network":"193.153.163.128\/25", + "version":41022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.176.0", + "prefixLen":25, + "network":"193.153.176.0\/25", + "version":41021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.176.128", + "prefixLen":25, + "network":"193.153.176.128\/25", + "version":41020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.177.0", + "prefixLen":25, + "network":"193.153.177.0\/25", + "version":41019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.177.128", + "prefixLen":25, + "network":"193.153.177.128\/25", + "version":41018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.178.0", + "prefixLen":25, + "network":"193.153.178.0\/25", + "version":41017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.178.128", + "prefixLen":25, + "network":"193.153.178.128\/25", + "version":41016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.179.0", + "prefixLen":25, + "network":"193.153.179.0\/25", + "version":41015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.179.128", + "prefixLen":25, + "network":"193.153.179.128\/25", + "version":41014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.192.0", + "prefixLen":25, + "network":"193.153.192.0\/25", + "version":41013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.192.128", + "prefixLen":25, + "network":"193.153.192.128\/25", + "version":41012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.193.0", + "prefixLen":25, + "network":"193.153.193.0\/25", + "version":41011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.193.128", + "prefixLen":25, + "network":"193.153.193.128\/25", + "version":41010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.194.0", + "prefixLen":25, + "network":"193.153.194.0\/25", + "version":41009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.194.128", + "prefixLen":25, + "network":"193.153.194.128\/25", + "version":41008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.195.0", + "prefixLen":25, + "network":"193.153.195.0\/25", + "version":41007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.195.128", + "prefixLen":25, + "network":"193.153.195.128\/25", + "version":41006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.208.0", + "prefixLen":25, + "network":"193.153.208.0\/25", + "version":41005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.208.128", + "prefixLen":25, + "network":"193.153.208.128\/25", + "version":41004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.209.0", + "prefixLen":25, + "network":"193.153.209.0\/25", + "version":41003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.209.128", + "prefixLen":25, + "network":"193.153.209.128\/25", + "version":41002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.210.0", + "prefixLen":25, + "network":"193.153.210.0\/25", + "version":41001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.210.128", + "prefixLen":25, + "network":"193.153.210.128\/25", + "version":41000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.211.0", + "prefixLen":25, + "network":"193.153.211.0\/25", + "version":40999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.211.128", + "prefixLen":25, + "network":"193.153.211.128\/25", + "version":40998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.224.0", + "prefixLen":25, + "network":"193.153.224.0\/25", + "version":40997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.224.128", + "prefixLen":25, + "network":"193.153.224.128\/25", + "version":40996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.225.0", + "prefixLen":25, + "network":"193.153.225.0\/25", + "version":40995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.225.128", + "prefixLen":25, + "network":"193.153.225.128\/25", + "version":40994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.226.0", + "prefixLen":25, + "network":"193.153.226.0\/25", + "version":40993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.226.128", + "prefixLen":25, + "network":"193.153.226.128\/25", + "version":40992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.227.0", + "prefixLen":25, + "network":"193.153.227.0\/25", + "version":40991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.227.128", + "prefixLen":25, + "network":"193.153.227.128\/25", + "version":40990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.240.0", + "prefixLen":25, + "network":"193.153.240.0\/25", + "version":40989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.240.128", + "prefixLen":25, + "network":"193.153.240.128\/25", + "version":40988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.241.0", + "prefixLen":25, + "network":"193.153.241.0\/25", + "version":40987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.241.128", + "prefixLen":25, + "network":"193.153.241.128\/25", + "version":40986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.242.0", + "prefixLen":25, + "network":"193.153.242.0\/25", + "version":40985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.242.128", + "prefixLen":25, + "network":"193.153.242.128\/25", + "version":40984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.243.0", + "prefixLen":25, + "network":"193.153.243.0\/25", + "version":40983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.153.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.153.243.128", + "prefixLen":25, + "network":"193.153.243.128\/25", + "version":40982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64841 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.0.0", + "prefixLen":25, + "network":"193.154.0.0\/25", + "version":41109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.0.128", + "prefixLen":25, + "network":"193.154.0.128\/25", + "version":41236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.1.0", + "prefixLen":25, + "network":"193.154.1.0\/25", + "version":41235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.1.128", + "prefixLen":25, + "network":"193.154.1.128\/25", + "version":41234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.2.0", + "prefixLen":25, + "network":"193.154.2.0\/25", + "version":41233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.2.128", + "prefixLen":25, + "network":"193.154.2.128\/25", + "version":41232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.3.0", + "prefixLen":25, + "network":"193.154.3.0\/25", + "version":41231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.3.128", + "prefixLen":25, + "network":"193.154.3.128\/25", + "version":41230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.16.0", + "prefixLen":25, + "network":"193.154.16.0\/25", + "version":41229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.16.128", + "prefixLen":25, + "network":"193.154.16.128\/25", + "version":41228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.17.0", + "prefixLen":25, + "network":"193.154.17.0\/25", + "version":41227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.17.128", + "prefixLen":25, + "network":"193.154.17.128\/25", + "version":41226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.18.0", + "prefixLen":25, + "network":"193.154.18.0\/25", + "version":41225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.18.128", + "prefixLen":25, + "network":"193.154.18.128\/25", + "version":41224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.19.0", + "prefixLen":25, + "network":"193.154.19.0\/25", + "version":41223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.19.128", + "prefixLen":25, + "network":"193.154.19.128\/25", + "version":41222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.32.0", + "prefixLen":25, + "network":"193.154.32.0\/25", + "version":41221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.32.128", + "prefixLen":25, + "network":"193.154.32.128\/25", + "version":41220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.33.0", + "prefixLen":25, + "network":"193.154.33.0\/25", + "version":41219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.33.128", + "prefixLen":25, + "network":"193.154.33.128\/25", + "version":41218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.34.0", + "prefixLen":25, + "network":"193.154.34.0\/25", + "version":41217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.34.128", + "prefixLen":25, + "network":"193.154.34.128\/25", + "version":41216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.35.0", + "prefixLen":25, + "network":"193.154.35.0\/25", + "version":41215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.35.128", + "prefixLen":25, + "network":"193.154.35.128\/25", + "version":41214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.48.0", + "prefixLen":25, + "network":"193.154.48.0\/25", + "version":41213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.48.128", + "prefixLen":25, + "network":"193.154.48.128\/25", + "version":41212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.49.0", + "prefixLen":25, + "network":"193.154.49.0\/25", + "version":41211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.49.128", + "prefixLen":25, + "network":"193.154.49.128\/25", + "version":41210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.50.0", + "prefixLen":25, + "network":"193.154.50.0\/25", + "version":41209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.50.128", + "prefixLen":25, + "network":"193.154.50.128\/25", + "version":41208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.51.0", + "prefixLen":25, + "network":"193.154.51.0\/25", + "version":41207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.51.128", + "prefixLen":25, + "network":"193.154.51.128\/25", + "version":41206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.64.0", + "prefixLen":25, + "network":"193.154.64.0\/25", + "version":41205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.64.128", + "prefixLen":25, + "network":"193.154.64.128\/25", + "version":41204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.65.0", + "prefixLen":25, + "network":"193.154.65.0\/25", + "version":41203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.65.128", + "prefixLen":25, + "network":"193.154.65.128\/25", + "version":41202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.66.0", + "prefixLen":25, + "network":"193.154.66.0\/25", + "version":41201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.66.128", + "prefixLen":25, + "network":"193.154.66.128\/25", + "version":41200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.67.0", + "prefixLen":25, + "network":"193.154.67.0\/25", + "version":41199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.67.128", + "prefixLen":25, + "network":"193.154.67.128\/25", + "version":41198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.80.0", + "prefixLen":25, + "network":"193.154.80.0\/25", + "version":41197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.80.128", + "prefixLen":25, + "network":"193.154.80.128\/25", + "version":41196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.81.0", + "prefixLen":25, + "network":"193.154.81.0\/25", + "version":41195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.81.128", + "prefixLen":25, + "network":"193.154.81.128\/25", + "version":41194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.82.0", + "prefixLen":25, + "network":"193.154.82.0\/25", + "version":41193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.82.128", + "prefixLen":25, + "network":"193.154.82.128\/25", + "version":41192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.83.0", + "prefixLen":25, + "network":"193.154.83.0\/25", + "version":41191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.83.128", + "prefixLen":25, + "network":"193.154.83.128\/25", + "version":41190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.96.0", + "prefixLen":25, + "network":"193.154.96.0\/25", + "version":41189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.96.128", + "prefixLen":25, + "network":"193.154.96.128\/25", + "version":41188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.97.0", + "prefixLen":25, + "network":"193.154.97.0\/25", + "version":41187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.97.128", + "prefixLen":25, + "network":"193.154.97.128\/25", + "version":41186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.98.0", + "prefixLen":25, + "network":"193.154.98.0\/25", + "version":41185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.98.128", + "prefixLen":25, + "network":"193.154.98.128\/25", + "version":41184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.99.0", + "prefixLen":25, + "network":"193.154.99.0\/25", + "version":41183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.99.128", + "prefixLen":25, + "network":"193.154.99.128\/25", + "version":41182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.112.0", + "prefixLen":25, + "network":"193.154.112.0\/25", + "version":41181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.112.128", + "prefixLen":25, + "network":"193.154.112.128\/25", + "version":41180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.113.0", + "prefixLen":25, + "network":"193.154.113.0\/25", + "version":41179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.113.128", + "prefixLen":25, + "network":"193.154.113.128\/25", + "version":41178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.114.0", + "prefixLen":25, + "network":"193.154.114.0\/25", + "version":41177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.114.128", + "prefixLen":25, + "network":"193.154.114.128\/25", + "version":41176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.115.0", + "prefixLen":25, + "network":"193.154.115.0\/25", + "version":41175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.115.128", + "prefixLen":25, + "network":"193.154.115.128\/25", + "version":41174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.128.0", + "prefixLen":25, + "network":"193.154.128.0\/25", + "version":41173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.128.128", + "prefixLen":25, + "network":"193.154.128.128\/25", + "version":41172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.129.0", + "prefixLen":25, + "network":"193.154.129.0\/25", + "version":41171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.129.128", + "prefixLen":25, + "network":"193.154.129.128\/25", + "version":41170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.130.0", + "prefixLen":25, + "network":"193.154.130.0\/25", + "version":41169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.130.128", + "prefixLen":25, + "network":"193.154.130.128\/25", + "version":41168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.131.0", + "prefixLen":25, + "network":"193.154.131.0\/25", + "version":41167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.131.128", + "prefixLen":25, + "network":"193.154.131.128\/25", + "version":41166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.144.0", + "prefixLen":25, + "network":"193.154.144.0\/25", + "version":41165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.144.128", + "prefixLen":25, + "network":"193.154.144.128\/25", + "version":41164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.145.0", + "prefixLen":25, + "network":"193.154.145.0\/25", + "version":41163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.145.128", + "prefixLen":25, + "network":"193.154.145.128\/25", + "version":41162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.146.0", + "prefixLen":25, + "network":"193.154.146.0\/25", + "version":41161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.146.128", + "prefixLen":25, + "network":"193.154.146.128\/25", + "version":41160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.147.0", + "prefixLen":25, + "network":"193.154.147.0\/25", + "version":41159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.147.128", + "prefixLen":25, + "network":"193.154.147.128\/25", + "version":41158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.160.0", + "prefixLen":25, + "network":"193.154.160.0\/25", + "version":41157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.160.128", + "prefixLen":25, + "network":"193.154.160.128\/25", + "version":41156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.161.0", + "prefixLen":25, + "network":"193.154.161.0\/25", + "version":41155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.161.128", + "prefixLen":25, + "network":"193.154.161.128\/25", + "version":41154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.162.0", + "prefixLen":25, + "network":"193.154.162.0\/25", + "version":41153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.162.128", + "prefixLen":25, + "network":"193.154.162.128\/25", + "version":41152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.163.0", + "prefixLen":25, + "network":"193.154.163.0\/25", + "version":41151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.163.128", + "prefixLen":25, + "network":"193.154.163.128\/25", + "version":41150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.176.0", + "prefixLen":25, + "network":"193.154.176.0\/25", + "version":41149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.176.128", + "prefixLen":25, + "network":"193.154.176.128\/25", + "version":41148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.177.0", + "prefixLen":25, + "network":"193.154.177.0\/25", + "version":41147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.177.128", + "prefixLen":25, + "network":"193.154.177.128\/25", + "version":41146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.178.0", + "prefixLen":25, + "network":"193.154.178.0\/25", + "version":41145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.178.128", + "prefixLen":25, + "network":"193.154.178.128\/25", + "version":41144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.179.0", + "prefixLen":25, + "network":"193.154.179.0\/25", + "version":41143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.179.128", + "prefixLen":25, + "network":"193.154.179.128\/25", + "version":41142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.192.0", + "prefixLen":25, + "network":"193.154.192.0\/25", + "version":41141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.192.128", + "prefixLen":25, + "network":"193.154.192.128\/25", + "version":41140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.193.0", + "prefixLen":25, + "network":"193.154.193.0\/25", + "version":41139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.193.128", + "prefixLen":25, + "network":"193.154.193.128\/25", + "version":41138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.194.0", + "prefixLen":25, + "network":"193.154.194.0\/25", + "version":41137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.194.128", + "prefixLen":25, + "network":"193.154.194.128\/25", + "version":41136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.195.0", + "prefixLen":25, + "network":"193.154.195.0\/25", + "version":41135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.195.128", + "prefixLen":25, + "network":"193.154.195.128\/25", + "version":41134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.208.0", + "prefixLen":25, + "network":"193.154.208.0\/25", + "version":41133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.208.128", + "prefixLen":25, + "network":"193.154.208.128\/25", + "version":41132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.209.0", + "prefixLen":25, + "network":"193.154.209.0\/25", + "version":41131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.209.128", + "prefixLen":25, + "network":"193.154.209.128\/25", + "version":41130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.210.0", + "prefixLen":25, + "network":"193.154.210.0\/25", + "version":41129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.210.128", + "prefixLen":25, + "network":"193.154.210.128\/25", + "version":41128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.211.0", + "prefixLen":25, + "network":"193.154.211.0\/25", + "version":41127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.211.128", + "prefixLen":25, + "network":"193.154.211.128\/25", + "version":41126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.224.0", + "prefixLen":25, + "network":"193.154.224.0\/25", + "version":41125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.224.128", + "prefixLen":25, + "network":"193.154.224.128\/25", + "version":41124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.225.0", + "prefixLen":25, + "network":"193.154.225.0\/25", + "version":41123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.225.128", + "prefixLen":25, + "network":"193.154.225.128\/25", + "version":41122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.226.0", + "prefixLen":25, + "network":"193.154.226.0\/25", + "version":41121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.226.128", + "prefixLen":25, + "network":"193.154.226.128\/25", + "version":41120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.227.0", + "prefixLen":25, + "network":"193.154.227.0\/25", + "version":41119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.227.128", + "prefixLen":25, + "network":"193.154.227.128\/25", + "version":41118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.240.0", + "prefixLen":25, + "network":"193.154.240.0\/25", + "version":41117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.240.128", + "prefixLen":25, + "network":"193.154.240.128\/25", + "version":41116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.241.0", + "prefixLen":25, + "network":"193.154.241.0\/25", + "version":41115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.241.128", + "prefixLen":25, + "network":"193.154.241.128\/25", + "version":41114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.242.0", + "prefixLen":25, + "network":"193.154.242.0\/25", + "version":41113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.242.128", + "prefixLen":25, + "network":"193.154.242.128\/25", + "version":41112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.243.0", + "prefixLen":25, + "network":"193.154.243.0\/25", + "version":41111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.154.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.154.243.128", + "prefixLen":25, + "network":"193.154.243.128\/25", + "version":41110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64842 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.0.0", + "prefixLen":25, + "network":"193.155.0.0\/25", + "version":41237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.0.128", + "prefixLen":25, + "network":"193.155.0.128\/25", + "version":41364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.1.0", + "prefixLen":25, + "network":"193.155.1.0\/25", + "version":41363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.1.128", + "prefixLen":25, + "network":"193.155.1.128\/25", + "version":41362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.2.0", + "prefixLen":25, + "network":"193.155.2.0\/25", + "version":41361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.2.128", + "prefixLen":25, + "network":"193.155.2.128\/25", + "version":41360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.3.0", + "prefixLen":25, + "network":"193.155.3.0\/25", + "version":41359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.3.128", + "prefixLen":25, + "network":"193.155.3.128\/25", + "version":41358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.16.0", + "prefixLen":25, + "network":"193.155.16.0\/25", + "version":41357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.16.128", + "prefixLen":25, + "network":"193.155.16.128\/25", + "version":41356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.17.0", + "prefixLen":25, + "network":"193.155.17.0\/25", + "version":41355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.17.128", + "prefixLen":25, + "network":"193.155.17.128\/25", + "version":41354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.18.0", + "prefixLen":25, + "network":"193.155.18.0\/25", + "version":41353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.18.128", + "prefixLen":25, + "network":"193.155.18.128\/25", + "version":41352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.19.0", + "prefixLen":25, + "network":"193.155.19.0\/25", + "version":41351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.19.128", + "prefixLen":25, + "network":"193.155.19.128\/25", + "version":41350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.32.0", + "prefixLen":25, + "network":"193.155.32.0\/25", + "version":41349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.32.128", + "prefixLen":25, + "network":"193.155.32.128\/25", + "version":41348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.33.0", + "prefixLen":25, + "network":"193.155.33.0\/25", + "version":41347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.33.128", + "prefixLen":25, + "network":"193.155.33.128\/25", + "version":41346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.34.0", + "prefixLen":25, + "network":"193.155.34.0\/25", + "version":41345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.34.128", + "prefixLen":25, + "network":"193.155.34.128\/25", + "version":41344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.35.0", + "prefixLen":25, + "network":"193.155.35.0\/25", + "version":41343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.35.128", + "prefixLen":25, + "network":"193.155.35.128\/25", + "version":41342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.48.0", + "prefixLen":25, + "network":"193.155.48.0\/25", + "version":41341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.48.128", + "prefixLen":25, + "network":"193.155.48.128\/25", + "version":41340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.49.0", + "prefixLen":25, + "network":"193.155.49.0\/25", + "version":41339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.49.128", + "prefixLen":25, + "network":"193.155.49.128\/25", + "version":41338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.50.0", + "prefixLen":25, + "network":"193.155.50.0\/25", + "version":41337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.50.128", + "prefixLen":25, + "network":"193.155.50.128\/25", + "version":41336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.51.0", + "prefixLen":25, + "network":"193.155.51.0\/25", + "version":41335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.51.128", + "prefixLen":25, + "network":"193.155.51.128\/25", + "version":41334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.64.0", + "prefixLen":25, + "network":"193.155.64.0\/25", + "version":41333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.64.128", + "prefixLen":25, + "network":"193.155.64.128\/25", + "version":41332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.65.0", + "prefixLen":25, + "network":"193.155.65.0\/25", + "version":41331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.65.128", + "prefixLen":25, + "network":"193.155.65.128\/25", + "version":41330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.66.0", + "prefixLen":25, + "network":"193.155.66.0\/25", + "version":41329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.66.128", + "prefixLen":25, + "network":"193.155.66.128\/25", + "version":41328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.67.0", + "prefixLen":25, + "network":"193.155.67.0\/25", + "version":41327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.67.128", + "prefixLen":25, + "network":"193.155.67.128\/25", + "version":41326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.80.0", + "prefixLen":25, + "network":"193.155.80.0\/25", + "version":41325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.80.128", + "prefixLen":25, + "network":"193.155.80.128\/25", + "version":41324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.81.0", + "prefixLen":25, + "network":"193.155.81.0\/25", + "version":41323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.81.128", + "prefixLen":25, + "network":"193.155.81.128\/25", + "version":41322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.82.0", + "prefixLen":25, + "network":"193.155.82.0\/25", + "version":41321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.82.128", + "prefixLen":25, + "network":"193.155.82.128\/25", + "version":41320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.83.0", + "prefixLen":25, + "network":"193.155.83.0\/25", + "version":41319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.83.128", + "prefixLen":25, + "network":"193.155.83.128\/25", + "version":41318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.96.0", + "prefixLen":25, + "network":"193.155.96.0\/25", + "version":41317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.96.128", + "prefixLen":25, + "network":"193.155.96.128\/25", + "version":41316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.97.0", + "prefixLen":25, + "network":"193.155.97.0\/25", + "version":41315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.97.128", + "prefixLen":25, + "network":"193.155.97.128\/25", + "version":41314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.98.0", + "prefixLen":25, + "network":"193.155.98.0\/25", + "version":41313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.98.128", + "prefixLen":25, + "network":"193.155.98.128\/25", + "version":41312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.99.0", + "prefixLen":25, + "network":"193.155.99.0\/25", + "version":41311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.99.128", + "prefixLen":25, + "network":"193.155.99.128\/25", + "version":41310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.112.0", + "prefixLen":25, + "network":"193.155.112.0\/25", + "version":41309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.112.128", + "prefixLen":25, + "network":"193.155.112.128\/25", + "version":41308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.113.0", + "prefixLen":25, + "network":"193.155.113.0\/25", + "version":41307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.113.128", + "prefixLen":25, + "network":"193.155.113.128\/25", + "version":41306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.114.0", + "prefixLen":25, + "network":"193.155.114.0\/25", + "version":41305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.114.128", + "prefixLen":25, + "network":"193.155.114.128\/25", + "version":41304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.115.0", + "prefixLen":25, + "network":"193.155.115.0\/25", + "version":41303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.115.128", + "prefixLen":25, + "network":"193.155.115.128\/25", + "version":41302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.128.0", + "prefixLen":25, + "network":"193.155.128.0\/25", + "version":41301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.128.128", + "prefixLen":25, + "network":"193.155.128.128\/25", + "version":41300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.129.0", + "prefixLen":25, + "network":"193.155.129.0\/25", + "version":41299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.129.128", + "prefixLen":25, + "network":"193.155.129.128\/25", + "version":41298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.130.0", + "prefixLen":25, + "network":"193.155.130.0\/25", + "version":41297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.130.128", + "prefixLen":25, + "network":"193.155.130.128\/25", + "version":41296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.131.0", + "prefixLen":25, + "network":"193.155.131.0\/25", + "version":41295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.131.128", + "prefixLen":25, + "network":"193.155.131.128\/25", + "version":41294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.144.0", + "prefixLen":25, + "network":"193.155.144.0\/25", + "version":41293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.144.128", + "prefixLen":25, + "network":"193.155.144.128\/25", + "version":41292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.145.0", + "prefixLen":25, + "network":"193.155.145.0\/25", + "version":41291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.145.128", + "prefixLen":25, + "network":"193.155.145.128\/25", + "version":41290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.146.0", + "prefixLen":25, + "network":"193.155.146.0\/25", + "version":41289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.146.128", + "prefixLen":25, + "network":"193.155.146.128\/25", + "version":41288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.147.0", + "prefixLen":25, + "network":"193.155.147.0\/25", + "version":41287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.147.128", + "prefixLen":25, + "network":"193.155.147.128\/25", + "version":41286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.160.0", + "prefixLen":25, + "network":"193.155.160.0\/25", + "version":41285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.160.128", + "prefixLen":25, + "network":"193.155.160.128\/25", + "version":41284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.161.0", + "prefixLen":25, + "network":"193.155.161.0\/25", + "version":41283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.161.128", + "prefixLen":25, + "network":"193.155.161.128\/25", + "version":41282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.162.0", + "prefixLen":25, + "network":"193.155.162.0\/25", + "version":41281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.162.128", + "prefixLen":25, + "network":"193.155.162.128\/25", + "version":41280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.163.0", + "prefixLen":25, + "network":"193.155.163.0\/25", + "version":41279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.163.128", + "prefixLen":25, + "network":"193.155.163.128\/25", + "version":41278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.176.0", + "prefixLen":25, + "network":"193.155.176.0\/25", + "version":41277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.176.128", + "prefixLen":25, + "network":"193.155.176.128\/25", + "version":41276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.177.0", + "prefixLen":25, + "network":"193.155.177.0\/25", + "version":41275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.177.128", + "prefixLen":25, + "network":"193.155.177.128\/25", + "version":41274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.178.0", + "prefixLen":25, + "network":"193.155.178.0\/25", + "version":41273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.178.128", + "prefixLen":25, + "network":"193.155.178.128\/25", + "version":41272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.179.0", + "prefixLen":25, + "network":"193.155.179.0\/25", + "version":41271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.179.128", + "prefixLen":25, + "network":"193.155.179.128\/25", + "version":41270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.192.0", + "prefixLen":25, + "network":"193.155.192.0\/25", + "version":41269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.192.128", + "prefixLen":25, + "network":"193.155.192.128\/25", + "version":41268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.193.0", + "prefixLen":25, + "network":"193.155.193.0\/25", + "version":41267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.193.128", + "prefixLen":25, + "network":"193.155.193.128\/25", + "version":41266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.194.0", + "prefixLen":25, + "network":"193.155.194.0\/25", + "version":41265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.194.128", + "prefixLen":25, + "network":"193.155.194.128\/25", + "version":41264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.195.0", + "prefixLen":25, + "network":"193.155.195.0\/25", + "version":41263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.195.128", + "prefixLen":25, + "network":"193.155.195.128\/25", + "version":41262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.208.0", + "prefixLen":25, + "network":"193.155.208.0\/25", + "version":41261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.208.128", + "prefixLen":25, + "network":"193.155.208.128\/25", + "version":41260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.209.0", + "prefixLen":25, + "network":"193.155.209.0\/25", + "version":41259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.209.128", + "prefixLen":25, + "network":"193.155.209.128\/25", + "version":41258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.210.0", + "prefixLen":25, + "network":"193.155.210.0\/25", + "version":41257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.210.128", + "prefixLen":25, + "network":"193.155.210.128\/25", + "version":41256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.211.0", + "prefixLen":25, + "network":"193.155.211.0\/25", + "version":41255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.211.128", + "prefixLen":25, + "network":"193.155.211.128\/25", + "version":41254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.224.0", + "prefixLen":25, + "network":"193.155.224.0\/25", + "version":41253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.224.128", + "prefixLen":25, + "network":"193.155.224.128\/25", + "version":41252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.225.0", + "prefixLen":25, + "network":"193.155.225.0\/25", + "version":41251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.225.128", + "prefixLen":25, + "network":"193.155.225.128\/25", + "version":41250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.226.0", + "prefixLen":25, + "network":"193.155.226.0\/25", + "version":41249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.226.128", + "prefixLen":25, + "network":"193.155.226.128\/25", + "version":41248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.227.0", + "prefixLen":25, + "network":"193.155.227.0\/25", + "version":41247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.227.128", + "prefixLen":25, + "network":"193.155.227.128\/25", + "version":41246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.240.0", + "prefixLen":25, + "network":"193.155.240.0\/25", + "version":41245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.240.128", + "prefixLen":25, + "network":"193.155.240.128\/25", + "version":41244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.241.0", + "prefixLen":25, + "network":"193.155.241.0\/25", + "version":41243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.241.128", + "prefixLen":25, + "network":"193.155.241.128\/25", + "version":41242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.242.0", + "prefixLen":25, + "network":"193.155.242.0\/25", + "version":41241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.242.128", + "prefixLen":25, + "network":"193.155.242.128\/25", + "version":41240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.243.0", + "prefixLen":25, + "network":"193.155.243.0\/25", + "version":41239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.155.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.155.243.128", + "prefixLen":25, + "network":"193.155.243.128\/25", + "version":41238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64843 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.0.0", + "prefixLen":25, + "network":"193.156.0.0\/25", + "version":41365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.0.128", + "prefixLen":25, + "network":"193.156.0.128\/25", + "version":41492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.1.0", + "prefixLen":25, + "network":"193.156.1.0\/25", + "version":41491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.1.128", + "prefixLen":25, + "network":"193.156.1.128\/25", + "version":41490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.2.0", + "prefixLen":25, + "network":"193.156.2.0\/25", + "version":41489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.2.128", + "prefixLen":25, + "network":"193.156.2.128\/25", + "version":41488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.3.0", + "prefixLen":25, + "network":"193.156.3.0\/25", + "version":41487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.3.128", + "prefixLen":25, + "network":"193.156.3.128\/25", + "version":41486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.16.0", + "prefixLen":25, + "network":"193.156.16.0\/25", + "version":41485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.16.128", + "prefixLen":25, + "network":"193.156.16.128\/25", + "version":41484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.17.0", + "prefixLen":25, + "network":"193.156.17.0\/25", + "version":41483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.17.128", + "prefixLen":25, + "network":"193.156.17.128\/25", + "version":41482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.18.0", + "prefixLen":25, + "network":"193.156.18.0\/25", + "version":41481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.18.128", + "prefixLen":25, + "network":"193.156.18.128\/25", + "version":41480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.19.0", + "prefixLen":25, + "network":"193.156.19.0\/25", + "version":41479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.19.128", + "prefixLen":25, + "network":"193.156.19.128\/25", + "version":41478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.32.0", + "prefixLen":25, + "network":"193.156.32.0\/25", + "version":41477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.32.128", + "prefixLen":25, + "network":"193.156.32.128\/25", + "version":41476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.33.0", + "prefixLen":25, + "network":"193.156.33.0\/25", + "version":41475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.33.128", + "prefixLen":25, + "network":"193.156.33.128\/25", + "version":41474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.34.0", + "prefixLen":25, + "network":"193.156.34.0\/25", + "version":41473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.34.128", + "prefixLen":25, + "network":"193.156.34.128\/25", + "version":41472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.35.0", + "prefixLen":25, + "network":"193.156.35.0\/25", + "version":41471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.35.128", + "prefixLen":25, + "network":"193.156.35.128\/25", + "version":41470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.48.0", + "prefixLen":25, + "network":"193.156.48.0\/25", + "version":41469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.48.128", + "prefixLen":25, + "network":"193.156.48.128\/25", + "version":41468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.49.0", + "prefixLen":25, + "network":"193.156.49.0\/25", + "version":41467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.49.128", + "prefixLen":25, + "network":"193.156.49.128\/25", + "version":41466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.50.0", + "prefixLen":25, + "network":"193.156.50.0\/25", + "version":41465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.50.128", + "prefixLen":25, + "network":"193.156.50.128\/25", + "version":41464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.51.0", + "prefixLen":25, + "network":"193.156.51.0\/25", + "version":41463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.51.128", + "prefixLen":25, + "network":"193.156.51.128\/25", + "version":41462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.64.0", + "prefixLen":25, + "network":"193.156.64.0\/25", + "version":41461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.64.128", + "prefixLen":25, + "network":"193.156.64.128\/25", + "version":41460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.65.0", + "prefixLen":25, + "network":"193.156.65.0\/25", + "version":41459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.65.128", + "prefixLen":25, + "network":"193.156.65.128\/25", + "version":41458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.66.0", + "prefixLen":25, + "network":"193.156.66.0\/25", + "version":41457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.66.128", + "prefixLen":25, + "network":"193.156.66.128\/25", + "version":41456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.67.0", + "prefixLen":25, + "network":"193.156.67.0\/25", + "version":41455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.67.128", + "prefixLen":25, + "network":"193.156.67.128\/25", + "version":41454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.80.0", + "prefixLen":25, + "network":"193.156.80.0\/25", + "version":41453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.80.128", + "prefixLen":25, + "network":"193.156.80.128\/25", + "version":41452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.81.0", + "prefixLen":25, + "network":"193.156.81.0\/25", + "version":41451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.81.128", + "prefixLen":25, + "network":"193.156.81.128\/25", + "version":41450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.82.0", + "prefixLen":25, + "network":"193.156.82.0\/25", + "version":41449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.82.128", + "prefixLen":25, + "network":"193.156.82.128\/25", + "version":41448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.83.0", + "prefixLen":25, + "network":"193.156.83.0\/25", + "version":41447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.83.128", + "prefixLen":25, + "network":"193.156.83.128\/25", + "version":41446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.96.0", + "prefixLen":25, + "network":"193.156.96.0\/25", + "version":41445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.96.128", + "prefixLen":25, + "network":"193.156.96.128\/25", + "version":41444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.97.0", + "prefixLen":25, + "network":"193.156.97.0\/25", + "version":41443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.97.128", + "prefixLen":25, + "network":"193.156.97.128\/25", + "version":41442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.98.0", + "prefixLen":25, + "network":"193.156.98.0\/25", + "version":41441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.98.128", + "prefixLen":25, + "network":"193.156.98.128\/25", + "version":41440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.99.0", + "prefixLen":25, + "network":"193.156.99.0\/25", + "version":41439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.99.128", + "prefixLen":25, + "network":"193.156.99.128\/25", + "version":41438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.112.0", + "prefixLen":25, + "network":"193.156.112.0\/25", + "version":41437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.112.128", + "prefixLen":25, + "network":"193.156.112.128\/25", + "version":41436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.113.0", + "prefixLen":25, + "network":"193.156.113.0\/25", + "version":41435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.113.128", + "prefixLen":25, + "network":"193.156.113.128\/25", + "version":41434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.114.0", + "prefixLen":25, + "network":"193.156.114.0\/25", + "version":41433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.114.128", + "prefixLen":25, + "network":"193.156.114.128\/25", + "version":41432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.115.0", + "prefixLen":25, + "network":"193.156.115.0\/25", + "version":41431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.115.128", + "prefixLen":25, + "network":"193.156.115.128\/25", + "version":41430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.128.0", + "prefixLen":25, + "network":"193.156.128.0\/25", + "version":41429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.128.128", + "prefixLen":25, + "network":"193.156.128.128\/25", + "version":41428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.129.0", + "prefixLen":25, + "network":"193.156.129.0\/25", + "version":41427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.129.128", + "prefixLen":25, + "network":"193.156.129.128\/25", + "version":41426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.130.0", + "prefixLen":25, + "network":"193.156.130.0\/25", + "version":41425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.130.128", + "prefixLen":25, + "network":"193.156.130.128\/25", + "version":41424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.131.0", + "prefixLen":25, + "network":"193.156.131.0\/25", + "version":41423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.131.128", + "prefixLen":25, + "network":"193.156.131.128\/25", + "version":41422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.144.0", + "prefixLen":25, + "network":"193.156.144.0\/25", + "version":41421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.144.128", + "prefixLen":25, + "network":"193.156.144.128\/25", + "version":41420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.145.0", + "prefixLen":25, + "network":"193.156.145.0\/25", + "version":41419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.145.128", + "prefixLen":25, + "network":"193.156.145.128\/25", + "version":41418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.146.0", + "prefixLen":25, + "network":"193.156.146.0\/25", + "version":41417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.146.128", + "prefixLen":25, + "network":"193.156.146.128\/25", + "version":41416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.147.0", + "prefixLen":25, + "network":"193.156.147.0\/25", + "version":41415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.147.128", + "prefixLen":25, + "network":"193.156.147.128\/25", + "version":41414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.160.0", + "prefixLen":25, + "network":"193.156.160.0\/25", + "version":41413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.160.128", + "prefixLen":25, + "network":"193.156.160.128\/25", + "version":41412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.161.0", + "prefixLen":25, + "network":"193.156.161.0\/25", + "version":41411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.161.128", + "prefixLen":25, + "network":"193.156.161.128\/25", + "version":41410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.162.0", + "prefixLen":25, + "network":"193.156.162.0\/25", + "version":41409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.162.128", + "prefixLen":25, + "network":"193.156.162.128\/25", + "version":41408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.163.0", + "prefixLen":25, + "network":"193.156.163.0\/25", + "version":41407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.163.128", + "prefixLen":25, + "network":"193.156.163.128\/25", + "version":41406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.176.0", + "prefixLen":25, + "network":"193.156.176.0\/25", + "version":41405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.176.128", + "prefixLen":25, + "network":"193.156.176.128\/25", + "version":41404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.177.0", + "prefixLen":25, + "network":"193.156.177.0\/25", + "version":41403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.177.128", + "prefixLen":25, + "network":"193.156.177.128\/25", + "version":41402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.178.0", + "prefixLen":25, + "network":"193.156.178.0\/25", + "version":41401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.178.128", + "prefixLen":25, + "network":"193.156.178.128\/25", + "version":41400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.179.0", + "prefixLen":25, + "network":"193.156.179.0\/25", + "version":41399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.179.128", + "prefixLen":25, + "network":"193.156.179.128\/25", + "version":41398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.192.0", + "prefixLen":25, + "network":"193.156.192.0\/25", + "version":41397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.192.128", + "prefixLen":25, + "network":"193.156.192.128\/25", + "version":41396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.193.0", + "prefixLen":25, + "network":"193.156.193.0\/25", + "version":41395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.193.128", + "prefixLen":25, + "network":"193.156.193.128\/25", + "version":41394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.194.0", + "prefixLen":25, + "network":"193.156.194.0\/25", + "version":41393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.194.128", + "prefixLen":25, + "network":"193.156.194.128\/25", + "version":41392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.195.0", + "prefixLen":25, + "network":"193.156.195.0\/25", + "version":41391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.195.128", + "prefixLen":25, + "network":"193.156.195.128\/25", + "version":41390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.208.0", + "prefixLen":25, + "network":"193.156.208.0\/25", + "version":41389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.208.128", + "prefixLen":25, + "network":"193.156.208.128\/25", + "version":41388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.209.0", + "prefixLen":25, + "network":"193.156.209.0\/25", + "version":41387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.209.128", + "prefixLen":25, + "network":"193.156.209.128\/25", + "version":41386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.210.0", + "prefixLen":25, + "network":"193.156.210.0\/25", + "version":41385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.210.128", + "prefixLen":25, + "network":"193.156.210.128\/25", + "version":41384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.211.0", + "prefixLen":25, + "network":"193.156.211.0\/25", + "version":41383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.211.128", + "prefixLen":25, + "network":"193.156.211.128\/25", + "version":41382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.224.0", + "prefixLen":25, + "network":"193.156.224.0\/25", + "version":41381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.224.128", + "prefixLen":25, + "network":"193.156.224.128\/25", + "version":41380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.225.0", + "prefixLen":25, + "network":"193.156.225.0\/25", + "version":41379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.225.128", + "prefixLen":25, + "network":"193.156.225.128\/25", + "version":41378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.226.0", + "prefixLen":25, + "network":"193.156.226.0\/25", + "version":41377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.226.128", + "prefixLen":25, + "network":"193.156.226.128\/25", + "version":41376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.227.0", + "prefixLen":25, + "network":"193.156.227.0\/25", + "version":41375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.227.128", + "prefixLen":25, + "network":"193.156.227.128\/25", + "version":41374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.240.0", + "prefixLen":25, + "network":"193.156.240.0\/25", + "version":41373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.240.128", + "prefixLen":25, + "network":"193.156.240.128\/25", + "version":41372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.241.0", + "prefixLen":25, + "network":"193.156.241.0\/25", + "version":41371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.241.128", + "prefixLen":25, + "network":"193.156.241.128\/25", + "version":41370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.242.0", + "prefixLen":25, + "network":"193.156.242.0\/25", + "version":41369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.242.128", + "prefixLen":25, + "network":"193.156.242.128\/25", + "version":41368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.243.0", + "prefixLen":25, + "network":"193.156.243.0\/25", + "version":41367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.156.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.156.243.128", + "prefixLen":25, + "network":"193.156.243.128\/25", + "version":41366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64844 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.0.0", + "prefixLen":25, + "network":"193.157.0.0\/25", + "version":41493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.0.128", + "prefixLen":25, + "network":"193.157.0.128\/25", + "version":41620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.1.0", + "prefixLen":25, + "network":"193.157.1.0\/25", + "version":41619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.1.128", + "prefixLen":25, + "network":"193.157.1.128\/25", + "version":41618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.2.0", + "prefixLen":25, + "network":"193.157.2.0\/25", + "version":41617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.2.128", + "prefixLen":25, + "network":"193.157.2.128\/25", + "version":41616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.3.0", + "prefixLen":25, + "network":"193.157.3.0\/25", + "version":41615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.3.128", + "prefixLen":25, + "network":"193.157.3.128\/25", + "version":41614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.16.0", + "prefixLen":25, + "network":"193.157.16.0\/25", + "version":41613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.16.128", + "prefixLen":25, + "network":"193.157.16.128\/25", + "version":41612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.17.0", + "prefixLen":25, + "network":"193.157.17.0\/25", + "version":41611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.17.128", + "prefixLen":25, + "network":"193.157.17.128\/25", + "version":41610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.18.0", + "prefixLen":25, + "network":"193.157.18.0\/25", + "version":41609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.18.128", + "prefixLen":25, + "network":"193.157.18.128\/25", + "version":41608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.19.0", + "prefixLen":25, + "network":"193.157.19.0\/25", + "version":41607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.19.128", + "prefixLen":25, + "network":"193.157.19.128\/25", + "version":41606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.32.0", + "prefixLen":25, + "network":"193.157.32.0\/25", + "version":41605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.32.128", + "prefixLen":25, + "network":"193.157.32.128\/25", + "version":41604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.33.0", + "prefixLen":25, + "network":"193.157.33.0\/25", + "version":41603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.33.128", + "prefixLen":25, + "network":"193.157.33.128\/25", + "version":41602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.34.0", + "prefixLen":25, + "network":"193.157.34.0\/25", + "version":41601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.34.128", + "prefixLen":25, + "network":"193.157.34.128\/25", + "version":41600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.35.0", + "prefixLen":25, + "network":"193.157.35.0\/25", + "version":41599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.35.128", + "prefixLen":25, + "network":"193.157.35.128\/25", + "version":41598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.48.0", + "prefixLen":25, + "network":"193.157.48.0\/25", + "version":41597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.48.128", + "prefixLen":25, + "network":"193.157.48.128\/25", + "version":41596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.49.0", + "prefixLen":25, + "network":"193.157.49.0\/25", + "version":41595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.49.128", + "prefixLen":25, + "network":"193.157.49.128\/25", + "version":41594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.50.0", + "prefixLen":25, + "network":"193.157.50.0\/25", + "version":41593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.50.128", + "prefixLen":25, + "network":"193.157.50.128\/25", + "version":41592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.51.0", + "prefixLen":25, + "network":"193.157.51.0\/25", + "version":41591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.51.128", + "prefixLen":25, + "network":"193.157.51.128\/25", + "version":41590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.64.0", + "prefixLen":25, + "network":"193.157.64.0\/25", + "version":41589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.64.128", + "prefixLen":25, + "network":"193.157.64.128\/25", + "version":41588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.65.0", + "prefixLen":25, + "network":"193.157.65.0\/25", + "version":41587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.65.128", + "prefixLen":25, + "network":"193.157.65.128\/25", + "version":41586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.66.0", + "prefixLen":25, + "network":"193.157.66.0\/25", + "version":41585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.66.128", + "prefixLen":25, + "network":"193.157.66.128\/25", + "version":41584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.67.0", + "prefixLen":25, + "network":"193.157.67.0\/25", + "version":41583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.67.128", + "prefixLen":25, + "network":"193.157.67.128\/25", + "version":41582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.80.0", + "prefixLen":25, + "network":"193.157.80.0\/25", + "version":41581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.80.128", + "prefixLen":25, + "network":"193.157.80.128\/25", + "version":41580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.81.0", + "prefixLen":25, + "network":"193.157.81.0\/25", + "version":41579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.81.128", + "prefixLen":25, + "network":"193.157.81.128\/25", + "version":41578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.82.0", + "prefixLen":25, + "network":"193.157.82.0\/25", + "version":41577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.82.128", + "prefixLen":25, + "network":"193.157.82.128\/25", + "version":41576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.83.0", + "prefixLen":25, + "network":"193.157.83.0\/25", + "version":41575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.83.128", + "prefixLen":25, + "network":"193.157.83.128\/25", + "version":41574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.96.0", + "prefixLen":25, + "network":"193.157.96.0\/25", + "version":41573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.96.128", + "prefixLen":25, + "network":"193.157.96.128\/25", + "version":41572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.97.0", + "prefixLen":25, + "network":"193.157.97.0\/25", + "version":41571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.97.128", + "prefixLen":25, + "network":"193.157.97.128\/25", + "version":41570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.98.0", + "prefixLen":25, + "network":"193.157.98.0\/25", + "version":41569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.98.128", + "prefixLen":25, + "network":"193.157.98.128\/25", + "version":41568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.99.0", + "prefixLen":25, + "network":"193.157.99.0\/25", + "version":41567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.99.128", + "prefixLen":25, + "network":"193.157.99.128\/25", + "version":41566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.112.0", + "prefixLen":25, + "network":"193.157.112.0\/25", + "version":41565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.112.128", + "prefixLen":25, + "network":"193.157.112.128\/25", + "version":41564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.113.0", + "prefixLen":25, + "network":"193.157.113.0\/25", + "version":41563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.113.128", + "prefixLen":25, + "network":"193.157.113.128\/25", + "version":41562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.114.0", + "prefixLen":25, + "network":"193.157.114.0\/25", + "version":41561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.114.128", + "prefixLen":25, + "network":"193.157.114.128\/25", + "version":41560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.115.0", + "prefixLen":25, + "network":"193.157.115.0\/25", + "version":41559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.115.128", + "prefixLen":25, + "network":"193.157.115.128\/25", + "version":41558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.128.0", + "prefixLen":25, + "network":"193.157.128.0\/25", + "version":41557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.128.128", + "prefixLen":25, + "network":"193.157.128.128\/25", + "version":41556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.129.0", + "prefixLen":25, + "network":"193.157.129.0\/25", + "version":41555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.129.128", + "prefixLen":25, + "network":"193.157.129.128\/25", + "version":41554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.130.0", + "prefixLen":25, + "network":"193.157.130.0\/25", + "version":41553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.130.128", + "prefixLen":25, + "network":"193.157.130.128\/25", + "version":41552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.131.0", + "prefixLen":25, + "network":"193.157.131.0\/25", + "version":41551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.131.128", + "prefixLen":25, + "network":"193.157.131.128\/25", + "version":41550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.144.0", + "prefixLen":25, + "network":"193.157.144.0\/25", + "version":41549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.144.128", + "prefixLen":25, + "network":"193.157.144.128\/25", + "version":41548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.145.0", + "prefixLen":25, + "network":"193.157.145.0\/25", + "version":41547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.145.128", + "prefixLen":25, + "network":"193.157.145.128\/25", + "version":41546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.146.0", + "prefixLen":25, + "network":"193.157.146.0\/25", + "version":41545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.146.128", + "prefixLen":25, + "network":"193.157.146.128\/25", + "version":41544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.147.0", + "prefixLen":25, + "network":"193.157.147.0\/25", + "version":41543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.147.128", + "prefixLen":25, + "network":"193.157.147.128\/25", + "version":41542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.160.0", + "prefixLen":25, + "network":"193.157.160.0\/25", + "version":41541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.160.128", + "prefixLen":25, + "network":"193.157.160.128\/25", + "version":41540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.161.0", + "prefixLen":25, + "network":"193.157.161.0\/25", + "version":41539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.161.128", + "prefixLen":25, + "network":"193.157.161.128\/25", + "version":41538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.162.0", + "prefixLen":25, + "network":"193.157.162.0\/25", + "version":41537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.162.128", + "prefixLen":25, + "network":"193.157.162.128\/25", + "version":41536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.163.0", + "prefixLen":25, + "network":"193.157.163.0\/25", + "version":41535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.163.128", + "prefixLen":25, + "network":"193.157.163.128\/25", + "version":41534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.176.0", + "prefixLen":25, + "network":"193.157.176.0\/25", + "version":41533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.176.128", + "prefixLen":25, + "network":"193.157.176.128\/25", + "version":41532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.177.0", + "prefixLen":25, + "network":"193.157.177.0\/25", + "version":41531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.177.128", + "prefixLen":25, + "network":"193.157.177.128\/25", + "version":41530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.178.0", + "prefixLen":25, + "network":"193.157.178.0\/25", + "version":41529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.178.128", + "prefixLen":25, + "network":"193.157.178.128\/25", + "version":41528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.179.0", + "prefixLen":25, + "network":"193.157.179.0\/25", + "version":41527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.179.128", + "prefixLen":25, + "network":"193.157.179.128\/25", + "version":41526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.192.0", + "prefixLen":25, + "network":"193.157.192.0\/25", + "version":41525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.192.128", + "prefixLen":25, + "network":"193.157.192.128\/25", + "version":41524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.193.0", + "prefixLen":25, + "network":"193.157.193.0\/25", + "version":41523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.193.128", + "prefixLen":25, + "network":"193.157.193.128\/25", + "version":41522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.194.0", + "prefixLen":25, + "network":"193.157.194.0\/25", + "version":41521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.194.128", + "prefixLen":25, + "network":"193.157.194.128\/25", + "version":41520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.195.0", + "prefixLen":25, + "network":"193.157.195.0\/25", + "version":41519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.195.128", + "prefixLen":25, + "network":"193.157.195.128\/25", + "version":41518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.208.0", + "prefixLen":25, + "network":"193.157.208.0\/25", + "version":41517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.208.128", + "prefixLen":25, + "network":"193.157.208.128\/25", + "version":41516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.209.0", + "prefixLen":25, + "network":"193.157.209.0\/25", + "version":41515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.209.128", + "prefixLen":25, + "network":"193.157.209.128\/25", + "version":41514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.210.0", + "prefixLen":25, + "network":"193.157.210.0\/25", + "version":41513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.210.128", + "prefixLen":25, + "network":"193.157.210.128\/25", + "version":41512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.211.0", + "prefixLen":25, + "network":"193.157.211.0\/25", + "version":41511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.211.128", + "prefixLen":25, + "network":"193.157.211.128\/25", + "version":41510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.224.0", + "prefixLen":25, + "network":"193.157.224.0\/25", + "version":41509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.224.128", + "prefixLen":25, + "network":"193.157.224.128\/25", + "version":41508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.225.0", + "prefixLen":25, + "network":"193.157.225.0\/25", + "version":41507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.225.128", + "prefixLen":25, + "network":"193.157.225.128\/25", + "version":41506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.226.0", + "prefixLen":25, + "network":"193.157.226.0\/25", + "version":41505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.226.128", + "prefixLen":25, + "network":"193.157.226.128\/25", + "version":41504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.227.0", + "prefixLen":25, + "network":"193.157.227.0\/25", + "version":41503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.227.128", + "prefixLen":25, + "network":"193.157.227.128\/25", + "version":41502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.240.0", + "prefixLen":25, + "network":"193.157.240.0\/25", + "version":41501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.240.128", + "prefixLen":25, + "network":"193.157.240.128\/25", + "version":41500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.241.0", + "prefixLen":25, + "network":"193.157.241.0\/25", + "version":41499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.241.128", + "prefixLen":25, + "network":"193.157.241.128\/25", + "version":41498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.242.0", + "prefixLen":25, + "network":"193.157.242.0\/25", + "version":41497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.242.128", + "prefixLen":25, + "network":"193.157.242.128\/25", + "version":41496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.243.0", + "prefixLen":25, + "network":"193.157.243.0\/25", + "version":41495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.157.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.157.243.128", + "prefixLen":25, + "network":"193.157.243.128\/25", + "version":41494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64845 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.0.0", + "prefixLen":25, + "network":"193.158.0.0\/25", + "version":41621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.0.128", + "prefixLen":25, + "network":"193.158.0.128\/25", + "version":41748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.1.0", + "prefixLen":25, + "network":"193.158.1.0\/25", + "version":41747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.1.128", + "prefixLen":25, + "network":"193.158.1.128\/25", + "version":41746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.2.0", + "prefixLen":25, + "network":"193.158.2.0\/25", + "version":41745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.2.128", + "prefixLen":25, + "network":"193.158.2.128\/25", + "version":41744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.3.0", + "prefixLen":25, + "network":"193.158.3.0\/25", + "version":41743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.3.128", + "prefixLen":25, + "network":"193.158.3.128\/25", + "version":41742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.16.0", + "prefixLen":25, + "network":"193.158.16.0\/25", + "version":41741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.16.128", + "prefixLen":25, + "network":"193.158.16.128\/25", + "version":41740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.17.0", + "prefixLen":25, + "network":"193.158.17.0\/25", + "version":41739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.17.128", + "prefixLen":25, + "network":"193.158.17.128\/25", + "version":41738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.18.0", + "prefixLen":25, + "network":"193.158.18.0\/25", + "version":41737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.18.128", + "prefixLen":25, + "network":"193.158.18.128\/25", + "version":41736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.19.0", + "prefixLen":25, + "network":"193.158.19.0\/25", + "version":41735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.19.128", + "prefixLen":25, + "network":"193.158.19.128\/25", + "version":41734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.32.0", + "prefixLen":25, + "network":"193.158.32.0\/25", + "version":41733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.32.128", + "prefixLen":25, + "network":"193.158.32.128\/25", + "version":41732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.33.0", + "prefixLen":25, + "network":"193.158.33.0\/25", + "version":41731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.33.128", + "prefixLen":25, + "network":"193.158.33.128\/25", + "version":41730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.34.0", + "prefixLen":25, + "network":"193.158.34.0\/25", + "version":41729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.34.128", + "prefixLen":25, + "network":"193.158.34.128\/25", + "version":41728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.35.0", + "prefixLen":25, + "network":"193.158.35.0\/25", + "version":41727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.35.128", + "prefixLen":25, + "network":"193.158.35.128\/25", + "version":41726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.48.0", + "prefixLen":25, + "network":"193.158.48.0\/25", + "version":41725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.48.128", + "prefixLen":25, + "network":"193.158.48.128\/25", + "version":41724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.49.0", + "prefixLen":25, + "network":"193.158.49.0\/25", + "version":41723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.49.128", + "prefixLen":25, + "network":"193.158.49.128\/25", + "version":41722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.50.0", + "prefixLen":25, + "network":"193.158.50.0\/25", + "version":41721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.50.128", + "prefixLen":25, + "network":"193.158.50.128\/25", + "version":41720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.51.0", + "prefixLen":25, + "network":"193.158.51.0\/25", + "version":41719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.51.128", + "prefixLen":25, + "network":"193.158.51.128\/25", + "version":41718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.64.0", + "prefixLen":25, + "network":"193.158.64.0\/25", + "version":41717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.64.128", + "prefixLen":25, + "network":"193.158.64.128\/25", + "version":41716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.65.0", + "prefixLen":25, + "network":"193.158.65.0\/25", + "version":41715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.65.128", + "prefixLen":25, + "network":"193.158.65.128\/25", + "version":41714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.66.0", + "prefixLen":25, + "network":"193.158.66.0\/25", + "version":41713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.66.128", + "prefixLen":25, + "network":"193.158.66.128\/25", + "version":41712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.67.0", + "prefixLen":25, + "network":"193.158.67.0\/25", + "version":41711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.67.128", + "prefixLen":25, + "network":"193.158.67.128\/25", + "version":41710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.80.0", + "prefixLen":25, + "network":"193.158.80.0\/25", + "version":41709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.80.128", + "prefixLen":25, + "network":"193.158.80.128\/25", + "version":41708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.81.0", + "prefixLen":25, + "network":"193.158.81.0\/25", + "version":41707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.81.128", + "prefixLen":25, + "network":"193.158.81.128\/25", + "version":41706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.82.0", + "prefixLen":25, + "network":"193.158.82.0\/25", + "version":41705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.82.128", + "prefixLen":25, + "network":"193.158.82.128\/25", + "version":41704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.83.0", + "prefixLen":25, + "network":"193.158.83.0\/25", + "version":41703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.83.128", + "prefixLen":25, + "network":"193.158.83.128\/25", + "version":41702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.96.0", + "prefixLen":25, + "network":"193.158.96.0\/25", + "version":41701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.96.128", + "prefixLen":25, + "network":"193.158.96.128\/25", + "version":41700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.97.0", + "prefixLen":25, + "network":"193.158.97.0\/25", + "version":41699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.97.128", + "prefixLen":25, + "network":"193.158.97.128\/25", + "version":41698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.98.0", + "prefixLen":25, + "network":"193.158.98.0\/25", + "version":41697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.98.128", + "prefixLen":25, + "network":"193.158.98.128\/25", + "version":41696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.99.0", + "prefixLen":25, + "network":"193.158.99.0\/25", + "version":41695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.99.128", + "prefixLen":25, + "network":"193.158.99.128\/25", + "version":41694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.112.0", + "prefixLen":25, + "network":"193.158.112.0\/25", + "version":41693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.112.128", + "prefixLen":25, + "network":"193.158.112.128\/25", + "version":41692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.113.0", + "prefixLen":25, + "network":"193.158.113.0\/25", + "version":41691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.113.128", + "prefixLen":25, + "network":"193.158.113.128\/25", + "version":41690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.114.0", + "prefixLen":25, + "network":"193.158.114.0\/25", + "version":41689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.114.128", + "prefixLen":25, + "network":"193.158.114.128\/25", + "version":41688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.115.0", + "prefixLen":25, + "network":"193.158.115.0\/25", + "version":41687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.115.128", + "prefixLen":25, + "network":"193.158.115.128\/25", + "version":41686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.128.0", + "prefixLen":25, + "network":"193.158.128.0\/25", + "version":41685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.128.128", + "prefixLen":25, + "network":"193.158.128.128\/25", + "version":41684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.129.0", + "prefixLen":25, + "network":"193.158.129.0\/25", + "version":41683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.129.128", + "prefixLen":25, + "network":"193.158.129.128\/25", + "version":41682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.130.0", + "prefixLen":25, + "network":"193.158.130.0\/25", + "version":41681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.130.128", + "prefixLen":25, + "network":"193.158.130.128\/25", + "version":41680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.131.0", + "prefixLen":25, + "network":"193.158.131.0\/25", + "version":41679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.131.128", + "prefixLen":25, + "network":"193.158.131.128\/25", + "version":41678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.144.0", + "prefixLen":25, + "network":"193.158.144.0\/25", + "version":41677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.144.128", + "prefixLen":25, + "network":"193.158.144.128\/25", + "version":41676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.145.0", + "prefixLen":25, + "network":"193.158.145.0\/25", + "version":41675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.145.128", + "prefixLen":25, + "network":"193.158.145.128\/25", + "version":41674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.146.0", + "prefixLen":25, + "network":"193.158.146.0\/25", + "version":41673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.146.128", + "prefixLen":25, + "network":"193.158.146.128\/25", + "version":41672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.147.0", + "prefixLen":25, + "network":"193.158.147.0\/25", + "version":41671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.147.128", + "prefixLen":25, + "network":"193.158.147.128\/25", + "version":41670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.160.0", + "prefixLen":25, + "network":"193.158.160.0\/25", + "version":41669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.160.128", + "prefixLen":25, + "network":"193.158.160.128\/25", + "version":41668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.161.0", + "prefixLen":25, + "network":"193.158.161.0\/25", + "version":41667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.161.128", + "prefixLen":25, + "network":"193.158.161.128\/25", + "version":41666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.162.0", + "prefixLen":25, + "network":"193.158.162.0\/25", + "version":41665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.162.128", + "prefixLen":25, + "network":"193.158.162.128\/25", + "version":41664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.163.0", + "prefixLen":25, + "network":"193.158.163.0\/25", + "version":41663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.163.128", + "prefixLen":25, + "network":"193.158.163.128\/25", + "version":41662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.176.0", + "prefixLen":25, + "network":"193.158.176.0\/25", + "version":41661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.176.128", + "prefixLen":25, + "network":"193.158.176.128\/25", + "version":41660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.177.0", + "prefixLen":25, + "network":"193.158.177.0\/25", + "version":41659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.177.128", + "prefixLen":25, + "network":"193.158.177.128\/25", + "version":41658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.178.0", + "prefixLen":25, + "network":"193.158.178.0\/25", + "version":41657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.178.128", + "prefixLen":25, + "network":"193.158.178.128\/25", + "version":41656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.179.0", + "prefixLen":25, + "network":"193.158.179.0\/25", + "version":41655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.179.128", + "prefixLen":25, + "network":"193.158.179.128\/25", + "version":41654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.192.0", + "prefixLen":25, + "network":"193.158.192.0\/25", + "version":41653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.192.128", + "prefixLen":25, + "network":"193.158.192.128\/25", + "version":41652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.193.0", + "prefixLen":25, + "network":"193.158.193.0\/25", + "version":41651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.193.128", + "prefixLen":25, + "network":"193.158.193.128\/25", + "version":41650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.194.0", + "prefixLen":25, + "network":"193.158.194.0\/25", + "version":41649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.194.128", + "prefixLen":25, + "network":"193.158.194.128\/25", + "version":41648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.195.0", + "prefixLen":25, + "network":"193.158.195.0\/25", + "version":41647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.195.128", + "prefixLen":25, + "network":"193.158.195.128\/25", + "version":41646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.208.0", + "prefixLen":25, + "network":"193.158.208.0\/25", + "version":41645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.208.128", + "prefixLen":25, + "network":"193.158.208.128\/25", + "version":41644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.209.0", + "prefixLen":25, + "network":"193.158.209.0\/25", + "version":41643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.209.128", + "prefixLen":25, + "network":"193.158.209.128\/25", + "version":41642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.210.0", + "prefixLen":25, + "network":"193.158.210.0\/25", + "version":41641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.210.128", + "prefixLen":25, + "network":"193.158.210.128\/25", + "version":41640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.211.0", + "prefixLen":25, + "network":"193.158.211.0\/25", + "version":41639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.211.128", + "prefixLen":25, + "network":"193.158.211.128\/25", + "version":41638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.224.0", + "prefixLen":25, + "network":"193.158.224.0\/25", + "version":41637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.224.128", + "prefixLen":25, + "network":"193.158.224.128\/25", + "version":41636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.225.0", + "prefixLen":25, + "network":"193.158.225.0\/25", + "version":41635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.225.128", + "prefixLen":25, + "network":"193.158.225.128\/25", + "version":41634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.226.0", + "prefixLen":25, + "network":"193.158.226.0\/25", + "version":41633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.226.128", + "prefixLen":25, + "network":"193.158.226.128\/25", + "version":41632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.227.0", + "prefixLen":25, + "network":"193.158.227.0\/25", + "version":41631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.227.128", + "prefixLen":25, + "network":"193.158.227.128\/25", + "version":41630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.240.0", + "prefixLen":25, + "network":"193.158.240.0\/25", + "version":41629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.240.128", + "prefixLen":25, + "network":"193.158.240.128\/25", + "version":41628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.241.0", + "prefixLen":25, + "network":"193.158.241.0\/25", + "version":41627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.241.128", + "prefixLen":25, + "network":"193.158.241.128\/25", + "version":41626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.242.0", + "prefixLen":25, + "network":"193.158.242.0\/25", + "version":41625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.242.128", + "prefixLen":25, + "network":"193.158.242.128\/25", + "version":41624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.243.0", + "prefixLen":25, + "network":"193.158.243.0\/25", + "version":41623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.158.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.158.243.128", + "prefixLen":25, + "network":"193.158.243.128\/25", + "version":41622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64846 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.0.0", + "prefixLen":25, + "network":"193.159.0.0\/25", + "version":43029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.0.128", + "prefixLen":25, + "network":"193.159.0.128\/25", + "version":43156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.1.0", + "prefixLen":25, + "network":"193.159.1.0\/25", + "version":43155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.1.128", + "prefixLen":25, + "network":"193.159.1.128\/25", + "version":43154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.2.0", + "prefixLen":25, + "network":"193.159.2.0\/25", + "version":43153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.2.128", + "prefixLen":25, + "network":"193.159.2.128\/25", + "version":43152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.3.0", + "prefixLen":25, + "network":"193.159.3.0\/25", + "version":43151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.3.128", + "prefixLen":25, + "network":"193.159.3.128\/25", + "version":43150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.16.0", + "prefixLen":25, + "network":"193.159.16.0\/25", + "version":43149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.16.128", + "prefixLen":25, + "network":"193.159.16.128\/25", + "version":43148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.17.0", + "prefixLen":25, + "network":"193.159.17.0\/25", + "version":43147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.17.128", + "prefixLen":25, + "network":"193.159.17.128\/25", + "version":43146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.18.0", + "prefixLen":25, + "network":"193.159.18.0\/25", + "version":43145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.18.128", + "prefixLen":25, + "network":"193.159.18.128\/25", + "version":43144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.19.0", + "prefixLen":25, + "network":"193.159.19.0\/25", + "version":43143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.19.128", + "prefixLen":25, + "network":"193.159.19.128\/25", + "version":43142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.32.0", + "prefixLen":25, + "network":"193.159.32.0\/25", + "version":43141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.32.128", + "prefixLen":25, + "network":"193.159.32.128\/25", + "version":43140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.33.0", + "prefixLen":25, + "network":"193.159.33.0\/25", + "version":43139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.33.128", + "prefixLen":25, + "network":"193.159.33.128\/25", + "version":43138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.34.0", + "prefixLen":25, + "network":"193.159.34.0\/25", + "version":43137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.34.128", + "prefixLen":25, + "network":"193.159.34.128\/25", + "version":43136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.35.0", + "prefixLen":25, + "network":"193.159.35.0\/25", + "version":43135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.35.128", + "prefixLen":25, + "network":"193.159.35.128\/25", + "version":43134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.48.0", + "prefixLen":25, + "network":"193.159.48.0\/25", + "version":43133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.48.128", + "prefixLen":25, + "network":"193.159.48.128\/25", + "version":43132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.49.0", + "prefixLen":25, + "network":"193.159.49.0\/25", + "version":43131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.49.128", + "prefixLen":25, + "network":"193.159.49.128\/25", + "version":43130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.50.0", + "prefixLen":25, + "network":"193.159.50.0\/25", + "version":43129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.50.128", + "prefixLen":25, + "network":"193.159.50.128\/25", + "version":43128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.51.0", + "prefixLen":25, + "network":"193.159.51.0\/25", + "version":43127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.51.128", + "prefixLen":25, + "network":"193.159.51.128\/25", + "version":43126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.64.0", + "prefixLen":25, + "network":"193.159.64.0\/25", + "version":43125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.64.128", + "prefixLen":25, + "network":"193.159.64.128\/25", + "version":43124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.65.0", + "prefixLen":25, + "network":"193.159.65.0\/25", + "version":43123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.65.128", + "prefixLen":25, + "network":"193.159.65.128\/25", + "version":43122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.66.0", + "prefixLen":25, + "network":"193.159.66.0\/25", + "version":43121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.66.128", + "prefixLen":25, + "network":"193.159.66.128\/25", + "version":43120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.67.0", + "prefixLen":25, + "network":"193.159.67.0\/25", + "version":43119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.67.128", + "prefixLen":25, + "network":"193.159.67.128\/25", + "version":43118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.80.0", + "prefixLen":25, + "network":"193.159.80.0\/25", + "version":43117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.80.128", + "prefixLen":25, + "network":"193.159.80.128\/25", + "version":43116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.81.0", + "prefixLen":25, + "network":"193.159.81.0\/25", + "version":43115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.81.128", + "prefixLen":25, + "network":"193.159.81.128\/25", + "version":43114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.82.0", + "prefixLen":25, + "network":"193.159.82.0\/25", + "version":43113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.82.128", + "prefixLen":25, + "network":"193.159.82.128\/25", + "version":43112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.83.0", + "prefixLen":25, + "network":"193.159.83.0\/25", + "version":43111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.83.128", + "prefixLen":25, + "network":"193.159.83.128\/25", + "version":43110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.96.0", + "prefixLen":25, + "network":"193.159.96.0\/25", + "version":43109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.96.128", + "prefixLen":25, + "network":"193.159.96.128\/25", + "version":43108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.97.0", + "prefixLen":25, + "network":"193.159.97.0\/25", + "version":43107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.97.128", + "prefixLen":25, + "network":"193.159.97.128\/25", + "version":43106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.98.0", + "prefixLen":25, + "network":"193.159.98.0\/25", + "version":43105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.98.128", + "prefixLen":25, + "network":"193.159.98.128\/25", + "version":43104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.99.0", + "prefixLen":25, + "network":"193.159.99.0\/25", + "version":43103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.99.128", + "prefixLen":25, + "network":"193.159.99.128\/25", + "version":43102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.112.0", + "prefixLen":25, + "network":"193.159.112.0\/25", + "version":43101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.112.128", + "prefixLen":25, + "network":"193.159.112.128\/25", + "version":43100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.113.0", + "prefixLen":25, + "network":"193.159.113.0\/25", + "version":43099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.113.128", + "prefixLen":25, + "network":"193.159.113.128\/25", + "version":43098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.114.0", + "prefixLen":25, + "network":"193.159.114.0\/25", + "version":43097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.114.128", + "prefixLen":25, + "network":"193.159.114.128\/25", + "version":43096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.115.0", + "prefixLen":25, + "network":"193.159.115.0\/25", + "version":43095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.115.128", + "prefixLen":25, + "network":"193.159.115.128\/25", + "version":43094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.128.0", + "prefixLen":25, + "network":"193.159.128.0\/25", + "version":43093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.128.128", + "prefixLen":25, + "network":"193.159.128.128\/25", + "version":43092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.129.0", + "prefixLen":25, + "network":"193.159.129.0\/25", + "version":43091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.129.128", + "prefixLen":25, + "network":"193.159.129.128\/25", + "version":43090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.130.0", + "prefixLen":25, + "network":"193.159.130.0\/25", + "version":43089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.130.128", + "prefixLen":25, + "network":"193.159.130.128\/25", + "version":43088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.131.0", + "prefixLen":25, + "network":"193.159.131.0\/25", + "version":43087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.131.128", + "prefixLen":25, + "network":"193.159.131.128\/25", + "version":43086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.144.0", + "prefixLen":25, + "network":"193.159.144.0\/25", + "version":43085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.144.128", + "prefixLen":25, + "network":"193.159.144.128\/25", + "version":43084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.145.0", + "prefixLen":25, + "network":"193.159.145.0\/25", + "version":43083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.145.128", + "prefixLen":25, + "network":"193.159.145.128\/25", + "version":43082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.146.0", + "prefixLen":25, + "network":"193.159.146.0\/25", + "version":43081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.146.128", + "prefixLen":25, + "network":"193.159.146.128\/25", + "version":43080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.147.0", + "prefixLen":25, + "network":"193.159.147.0\/25", + "version":43079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.147.128", + "prefixLen":25, + "network":"193.159.147.128\/25", + "version":43078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.160.0", + "prefixLen":25, + "network":"193.159.160.0\/25", + "version":43077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.160.128", + "prefixLen":25, + "network":"193.159.160.128\/25", + "version":43076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.161.0", + "prefixLen":25, + "network":"193.159.161.0\/25", + "version":43075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.161.128", + "prefixLen":25, + "network":"193.159.161.128\/25", + "version":43074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.162.0", + "prefixLen":25, + "network":"193.159.162.0\/25", + "version":43073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.162.128", + "prefixLen":25, + "network":"193.159.162.128\/25", + "version":43072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.163.0", + "prefixLen":25, + "network":"193.159.163.0\/25", + "version":43071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.163.128", + "prefixLen":25, + "network":"193.159.163.128\/25", + "version":43070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.176.0", + "prefixLen":25, + "network":"193.159.176.0\/25", + "version":43069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.176.128", + "prefixLen":25, + "network":"193.159.176.128\/25", + "version":43068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.177.0", + "prefixLen":25, + "network":"193.159.177.0\/25", + "version":43067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.177.128", + "prefixLen":25, + "network":"193.159.177.128\/25", + "version":43066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.178.0", + "prefixLen":25, + "network":"193.159.178.0\/25", + "version":43065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.178.128", + "prefixLen":25, + "network":"193.159.178.128\/25", + "version":43064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.179.0", + "prefixLen":25, + "network":"193.159.179.0\/25", + "version":43063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.179.128", + "prefixLen":25, + "network":"193.159.179.128\/25", + "version":43062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.192.0", + "prefixLen":25, + "network":"193.159.192.0\/25", + "version":43061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.192.128", + "prefixLen":25, + "network":"193.159.192.128\/25", + "version":43060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.193.0", + "prefixLen":25, + "network":"193.159.193.0\/25", + "version":43059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.193.128", + "prefixLen":25, + "network":"193.159.193.128\/25", + "version":43058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.194.0", + "prefixLen":25, + "network":"193.159.194.0\/25", + "version":43057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.194.128", + "prefixLen":25, + "network":"193.159.194.128\/25", + "version":43056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.195.0", + "prefixLen":25, + "network":"193.159.195.0\/25", + "version":43055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.195.128", + "prefixLen":25, + "network":"193.159.195.128\/25", + "version":43054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.208.0", + "prefixLen":25, + "network":"193.159.208.0\/25", + "version":43053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.208.128", + "prefixLen":25, + "network":"193.159.208.128\/25", + "version":43052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.209.0", + "prefixLen":25, + "network":"193.159.209.0\/25", + "version":43051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.209.128", + "prefixLen":25, + "network":"193.159.209.128\/25", + "version":43050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.210.0", + "prefixLen":25, + "network":"193.159.210.0\/25", + "version":43049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.210.128", + "prefixLen":25, + "network":"193.159.210.128\/25", + "version":43048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.211.0", + "prefixLen":25, + "network":"193.159.211.0\/25", + "version":43047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.211.128", + "prefixLen":25, + "network":"193.159.211.128\/25", + "version":43046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.224.0", + "prefixLen":25, + "network":"193.159.224.0\/25", + "version":43045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.224.128", + "prefixLen":25, + "network":"193.159.224.128\/25", + "version":43044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.225.0", + "prefixLen":25, + "network":"193.159.225.0\/25", + "version":43043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.225.128", + "prefixLen":25, + "network":"193.159.225.128\/25", + "version":43042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.226.0", + "prefixLen":25, + "network":"193.159.226.0\/25", + "version":43041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.226.128", + "prefixLen":25, + "network":"193.159.226.128\/25", + "version":43040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.227.0", + "prefixLen":25, + "network":"193.159.227.0\/25", + "version":43039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.227.128", + "prefixLen":25, + "network":"193.159.227.128\/25", + "version":43038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.240.0", + "prefixLen":25, + "network":"193.159.240.0\/25", + "version":43037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.240.128", + "prefixLen":25, + "network":"193.159.240.128\/25", + "version":43036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.241.0", + "prefixLen":25, + "network":"193.159.241.0\/25", + "version":43035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.241.128", + "prefixLen":25, + "network":"193.159.241.128\/25", + "version":43034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.242.0", + "prefixLen":25, + "network":"193.159.242.0\/25", + "version":43033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.242.128", + "prefixLen":25, + "network":"193.159.242.128\/25", + "version":43032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.243.0", + "prefixLen":25, + "network":"193.159.243.0\/25", + "version":43031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.159.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.159.243.128", + "prefixLen":25, + "network":"193.159.243.128\/25", + "version":43030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64847 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.0.0", + "prefixLen":25, + "network":"193.160.0.0\/25", + "version":43157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.0.128", + "prefixLen":25, + "network":"193.160.0.128\/25", + "version":43284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.1.0", + "prefixLen":25, + "network":"193.160.1.0\/25", + "version":43283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.1.128", + "prefixLen":25, + "network":"193.160.1.128\/25", + "version":43282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.2.0", + "prefixLen":25, + "network":"193.160.2.0\/25", + "version":43281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.2.128", + "prefixLen":25, + "network":"193.160.2.128\/25", + "version":43280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.3.0", + "prefixLen":25, + "network":"193.160.3.0\/25", + "version":43279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.3.128", + "prefixLen":25, + "network":"193.160.3.128\/25", + "version":43278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.16.0", + "prefixLen":25, + "network":"193.160.16.0\/25", + "version":43277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.16.128", + "prefixLen":25, + "network":"193.160.16.128\/25", + "version":43276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.17.0", + "prefixLen":25, + "network":"193.160.17.0\/25", + "version":43275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.17.128", + "prefixLen":25, + "network":"193.160.17.128\/25", + "version":43274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.18.0", + "prefixLen":25, + "network":"193.160.18.0\/25", + "version":43273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.18.128", + "prefixLen":25, + "network":"193.160.18.128\/25", + "version":43272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.19.0", + "prefixLen":25, + "network":"193.160.19.0\/25", + "version":43271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.19.128", + "prefixLen":25, + "network":"193.160.19.128\/25", + "version":43270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.32.0", + "prefixLen":25, + "network":"193.160.32.0\/25", + "version":43269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.32.128", + "prefixLen":25, + "network":"193.160.32.128\/25", + "version":43268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.33.0", + "prefixLen":25, + "network":"193.160.33.0\/25", + "version":43267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.33.128", + "prefixLen":25, + "network":"193.160.33.128\/25", + "version":43266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.34.0", + "prefixLen":25, + "network":"193.160.34.0\/25", + "version":43265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.34.128", + "prefixLen":25, + "network":"193.160.34.128\/25", + "version":43264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.35.0", + "prefixLen":25, + "network":"193.160.35.0\/25", + "version":43263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.35.128", + "prefixLen":25, + "network":"193.160.35.128\/25", + "version":43262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.48.0", + "prefixLen":25, + "network":"193.160.48.0\/25", + "version":43261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.48.128", + "prefixLen":25, + "network":"193.160.48.128\/25", + "version":43260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.49.0", + "prefixLen":25, + "network":"193.160.49.0\/25", + "version":43259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.49.128", + "prefixLen":25, + "network":"193.160.49.128\/25", + "version":43258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.50.0", + "prefixLen":25, + "network":"193.160.50.0\/25", + "version":43257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.50.128", + "prefixLen":25, + "network":"193.160.50.128\/25", + "version":43256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.51.0", + "prefixLen":25, + "network":"193.160.51.0\/25", + "version":43255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.51.128", + "prefixLen":25, + "network":"193.160.51.128\/25", + "version":43254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.64.0", + "prefixLen":25, + "network":"193.160.64.0\/25", + "version":43253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.64.128", + "prefixLen":25, + "network":"193.160.64.128\/25", + "version":43252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.65.0", + "prefixLen":25, + "network":"193.160.65.0\/25", + "version":43251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.65.128", + "prefixLen":25, + "network":"193.160.65.128\/25", + "version":43250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.66.0", + "prefixLen":25, + "network":"193.160.66.0\/25", + "version":43249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.66.128", + "prefixLen":25, + "network":"193.160.66.128\/25", + "version":43248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.67.0", + "prefixLen":25, + "network":"193.160.67.0\/25", + "version":43247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.67.128", + "prefixLen":25, + "network":"193.160.67.128\/25", + "version":43246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.80.0", + "prefixLen":25, + "network":"193.160.80.0\/25", + "version":43245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.80.128", + "prefixLen":25, + "network":"193.160.80.128\/25", + "version":43244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.81.0", + "prefixLen":25, + "network":"193.160.81.0\/25", + "version":43243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.81.128", + "prefixLen":25, + "network":"193.160.81.128\/25", + "version":43242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.82.0", + "prefixLen":25, + "network":"193.160.82.0\/25", + "version":43241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.82.128", + "prefixLen":25, + "network":"193.160.82.128\/25", + "version":43240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.83.0", + "prefixLen":25, + "network":"193.160.83.0\/25", + "version":43239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.83.128", + "prefixLen":25, + "network":"193.160.83.128\/25", + "version":43238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.96.0", + "prefixLen":25, + "network":"193.160.96.0\/25", + "version":43237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.96.128", + "prefixLen":25, + "network":"193.160.96.128\/25", + "version":43236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.97.0", + "prefixLen":25, + "network":"193.160.97.0\/25", + "version":43235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.97.128", + "prefixLen":25, + "network":"193.160.97.128\/25", + "version":43234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.98.0", + "prefixLen":25, + "network":"193.160.98.0\/25", + "version":43233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.98.128", + "prefixLen":25, + "network":"193.160.98.128\/25", + "version":43232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.99.0", + "prefixLen":25, + "network":"193.160.99.0\/25", + "version":43231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.99.128", + "prefixLen":25, + "network":"193.160.99.128\/25", + "version":43230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.112.0", + "prefixLen":25, + "network":"193.160.112.0\/25", + "version":43229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.112.128", + "prefixLen":25, + "network":"193.160.112.128\/25", + "version":43228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.113.0", + "prefixLen":25, + "network":"193.160.113.0\/25", + "version":43227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.113.128", + "prefixLen":25, + "network":"193.160.113.128\/25", + "version":43226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.114.0", + "prefixLen":25, + "network":"193.160.114.0\/25", + "version":43225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.114.128", + "prefixLen":25, + "network":"193.160.114.128\/25", + "version":43224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.115.0", + "prefixLen":25, + "network":"193.160.115.0\/25", + "version":43223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.115.128", + "prefixLen":25, + "network":"193.160.115.128\/25", + "version":43222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.128.0", + "prefixLen":25, + "network":"193.160.128.0\/25", + "version":43221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.128.128", + "prefixLen":25, + "network":"193.160.128.128\/25", + "version":43220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.129.0", + "prefixLen":25, + "network":"193.160.129.0\/25", + "version":43219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.129.128", + "prefixLen":25, + "network":"193.160.129.128\/25", + "version":43218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.130.0", + "prefixLen":25, + "network":"193.160.130.0\/25", + "version":43217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.130.128", + "prefixLen":25, + "network":"193.160.130.128\/25", + "version":43216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.131.0", + "prefixLen":25, + "network":"193.160.131.0\/25", + "version":43215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.131.128", + "prefixLen":25, + "network":"193.160.131.128\/25", + "version":43214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.144.0", + "prefixLen":25, + "network":"193.160.144.0\/25", + "version":43213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.144.128", + "prefixLen":25, + "network":"193.160.144.128\/25", + "version":43212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.145.0", + "prefixLen":25, + "network":"193.160.145.0\/25", + "version":43211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.145.128", + "prefixLen":25, + "network":"193.160.145.128\/25", + "version":43210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.146.0", + "prefixLen":25, + "network":"193.160.146.0\/25", + "version":43209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.146.128", + "prefixLen":25, + "network":"193.160.146.128\/25", + "version":43208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.147.0", + "prefixLen":25, + "network":"193.160.147.0\/25", + "version":43207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.147.128", + "prefixLen":25, + "network":"193.160.147.128\/25", + "version":43206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.160.0", + "prefixLen":25, + "network":"193.160.160.0\/25", + "version":43205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.160.128", + "prefixLen":25, + "network":"193.160.160.128\/25", + "version":43204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.161.0", + "prefixLen":25, + "network":"193.160.161.0\/25", + "version":43203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.161.128", + "prefixLen":25, + "network":"193.160.161.128\/25", + "version":43202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.162.0", + "prefixLen":25, + "network":"193.160.162.0\/25", + "version":43201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.162.128", + "prefixLen":25, + "network":"193.160.162.128\/25", + "version":43200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.163.0", + "prefixLen":25, + "network":"193.160.163.0\/25", + "version":43199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.163.128", + "prefixLen":25, + "network":"193.160.163.128\/25", + "version":43198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.176.0", + "prefixLen":25, + "network":"193.160.176.0\/25", + "version":43197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.176.128", + "prefixLen":25, + "network":"193.160.176.128\/25", + "version":43196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.177.0", + "prefixLen":25, + "network":"193.160.177.0\/25", + "version":43195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.177.128", + "prefixLen":25, + "network":"193.160.177.128\/25", + "version":43194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.178.0", + "prefixLen":25, + "network":"193.160.178.0\/25", + "version":43193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.178.128", + "prefixLen":25, + "network":"193.160.178.128\/25", + "version":43192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.179.0", + "prefixLen":25, + "network":"193.160.179.0\/25", + "version":43191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.179.128", + "prefixLen":25, + "network":"193.160.179.128\/25", + "version":43190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.192.0", + "prefixLen":25, + "network":"193.160.192.0\/25", + "version":43189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.192.128", + "prefixLen":25, + "network":"193.160.192.128\/25", + "version":43188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.193.0", + "prefixLen":25, + "network":"193.160.193.0\/25", + "version":43187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.193.128", + "prefixLen":25, + "network":"193.160.193.128\/25", + "version":43186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.194.0", + "prefixLen":25, + "network":"193.160.194.0\/25", + "version":43185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.194.128", + "prefixLen":25, + "network":"193.160.194.128\/25", + "version":43184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.195.0", + "prefixLen":25, + "network":"193.160.195.0\/25", + "version":43183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.195.128", + "prefixLen":25, + "network":"193.160.195.128\/25", + "version":43182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.208.0", + "prefixLen":25, + "network":"193.160.208.0\/25", + "version":43181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.208.128", + "prefixLen":25, + "network":"193.160.208.128\/25", + "version":43180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.209.0", + "prefixLen":25, + "network":"193.160.209.0\/25", + "version":43179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.209.128", + "prefixLen":25, + "network":"193.160.209.128\/25", + "version":43178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.210.0", + "prefixLen":25, + "network":"193.160.210.0\/25", + "version":43177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.210.128", + "prefixLen":25, + "network":"193.160.210.128\/25", + "version":43176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.211.0", + "prefixLen":25, + "network":"193.160.211.0\/25", + "version":43175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.211.128", + "prefixLen":25, + "network":"193.160.211.128\/25", + "version":43174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.224.0", + "prefixLen":25, + "network":"193.160.224.0\/25", + "version":43173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.224.128", + "prefixLen":25, + "network":"193.160.224.128\/25", + "version":43172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.225.0", + "prefixLen":25, + "network":"193.160.225.0\/25", + "version":43171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.225.128", + "prefixLen":25, + "network":"193.160.225.128\/25", + "version":43170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.226.0", + "prefixLen":25, + "network":"193.160.226.0\/25", + "version":43169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.226.128", + "prefixLen":25, + "network":"193.160.226.128\/25", + "version":43168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.227.0", + "prefixLen":25, + "network":"193.160.227.0\/25", + "version":43167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.227.128", + "prefixLen":25, + "network":"193.160.227.128\/25", + "version":43166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.240.0", + "prefixLen":25, + "network":"193.160.240.0\/25", + "version":43165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.240.128", + "prefixLen":25, + "network":"193.160.240.128\/25", + "version":43164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.241.0", + "prefixLen":25, + "network":"193.160.241.0\/25", + "version":43163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.241.128", + "prefixLen":25, + "network":"193.160.241.128\/25", + "version":43162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.242.0", + "prefixLen":25, + "network":"193.160.242.0\/25", + "version":43161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.242.128", + "prefixLen":25, + "network":"193.160.242.128\/25", + "version":43160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.243.0", + "prefixLen":25, + "network":"193.160.243.0\/25", + "version":43159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.160.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.160.243.128", + "prefixLen":25, + "network":"193.160.243.128\/25", + "version":43158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64848 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.0.0", + "prefixLen":25, + "network":"193.161.0.0\/25", + "version":43285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.0.128", + "prefixLen":25, + "network":"193.161.0.128\/25", + "version":43412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.1.0", + "prefixLen":25, + "network":"193.161.1.0\/25", + "version":43411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.1.128", + "prefixLen":25, + "network":"193.161.1.128\/25", + "version":43410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.2.0", + "prefixLen":25, + "network":"193.161.2.0\/25", + "version":43409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.2.128", + "prefixLen":25, + "network":"193.161.2.128\/25", + "version":43408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.3.0", + "prefixLen":25, + "network":"193.161.3.0\/25", + "version":43407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.3.128", + "prefixLen":25, + "network":"193.161.3.128\/25", + "version":43406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.16.0", + "prefixLen":25, + "network":"193.161.16.0\/25", + "version":43405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.16.128", + "prefixLen":25, + "network":"193.161.16.128\/25", + "version":43404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.17.0", + "prefixLen":25, + "network":"193.161.17.0\/25", + "version":43403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.17.128", + "prefixLen":25, + "network":"193.161.17.128\/25", + "version":43402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.18.0", + "prefixLen":25, + "network":"193.161.18.0\/25", + "version":43401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.18.128", + "prefixLen":25, + "network":"193.161.18.128\/25", + "version":43400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.19.0", + "prefixLen":25, + "network":"193.161.19.0\/25", + "version":43399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.19.128", + "prefixLen":25, + "network":"193.161.19.128\/25", + "version":43398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.32.0", + "prefixLen":25, + "network":"193.161.32.0\/25", + "version":43397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.32.128", + "prefixLen":25, + "network":"193.161.32.128\/25", + "version":43396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.33.0", + "prefixLen":25, + "network":"193.161.33.0\/25", + "version":43395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.33.128", + "prefixLen":25, + "network":"193.161.33.128\/25", + "version":43394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.34.0", + "prefixLen":25, + "network":"193.161.34.0\/25", + "version":43393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.34.128", + "prefixLen":25, + "network":"193.161.34.128\/25", + "version":43392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.35.0", + "prefixLen":25, + "network":"193.161.35.0\/25", + "version":43391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.35.128", + "prefixLen":25, + "network":"193.161.35.128\/25", + "version":43390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.48.0", + "prefixLen":25, + "network":"193.161.48.0\/25", + "version":43389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.48.128", + "prefixLen":25, + "network":"193.161.48.128\/25", + "version":43388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.49.0", + "prefixLen":25, + "network":"193.161.49.0\/25", + "version":43387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.49.128", + "prefixLen":25, + "network":"193.161.49.128\/25", + "version":43386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.50.0", + "prefixLen":25, + "network":"193.161.50.0\/25", + "version":43385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.50.128", + "prefixLen":25, + "network":"193.161.50.128\/25", + "version":43384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.51.0", + "prefixLen":25, + "network":"193.161.51.0\/25", + "version":43383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.51.128", + "prefixLen":25, + "network":"193.161.51.128\/25", + "version":43382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.64.0", + "prefixLen":25, + "network":"193.161.64.0\/25", + "version":43381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.64.128", + "prefixLen":25, + "network":"193.161.64.128\/25", + "version":43380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.65.0", + "prefixLen":25, + "network":"193.161.65.0\/25", + "version":43379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.65.128", + "prefixLen":25, + "network":"193.161.65.128\/25", + "version":43378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.66.0", + "prefixLen":25, + "network":"193.161.66.0\/25", + "version":43377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.66.128", + "prefixLen":25, + "network":"193.161.66.128\/25", + "version":43376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.67.0", + "prefixLen":25, + "network":"193.161.67.0\/25", + "version":43375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.67.128", + "prefixLen":25, + "network":"193.161.67.128\/25", + "version":43374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.80.0", + "prefixLen":25, + "network":"193.161.80.0\/25", + "version":43373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.80.128", + "prefixLen":25, + "network":"193.161.80.128\/25", + "version":43372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.81.0", + "prefixLen":25, + "network":"193.161.81.0\/25", + "version":43371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.81.128", + "prefixLen":25, + "network":"193.161.81.128\/25", + "version":43370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.82.0", + "prefixLen":25, + "network":"193.161.82.0\/25", + "version":43369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.82.128", + "prefixLen":25, + "network":"193.161.82.128\/25", + "version":43368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.83.0", + "prefixLen":25, + "network":"193.161.83.0\/25", + "version":43367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.83.128", + "prefixLen":25, + "network":"193.161.83.128\/25", + "version":43366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.96.0", + "prefixLen":25, + "network":"193.161.96.0\/25", + "version":43365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.96.128", + "prefixLen":25, + "network":"193.161.96.128\/25", + "version":43364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.97.0", + "prefixLen":25, + "network":"193.161.97.0\/25", + "version":43363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.97.128", + "prefixLen":25, + "network":"193.161.97.128\/25", + "version":43362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.98.0", + "prefixLen":25, + "network":"193.161.98.0\/25", + "version":43361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.98.128", + "prefixLen":25, + "network":"193.161.98.128\/25", + "version":43360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.99.0", + "prefixLen":25, + "network":"193.161.99.0\/25", + "version":43359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.99.128", + "prefixLen":25, + "network":"193.161.99.128\/25", + "version":43358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.112.0", + "prefixLen":25, + "network":"193.161.112.0\/25", + "version":43357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.112.128", + "prefixLen":25, + "network":"193.161.112.128\/25", + "version":43356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.113.0", + "prefixLen":25, + "network":"193.161.113.0\/25", + "version":43355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.113.128", + "prefixLen":25, + "network":"193.161.113.128\/25", + "version":43354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.114.0", + "prefixLen":25, + "network":"193.161.114.0\/25", + "version":43353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.114.128", + "prefixLen":25, + "network":"193.161.114.128\/25", + "version":43352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.115.0", + "prefixLen":25, + "network":"193.161.115.0\/25", + "version":43351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.115.128", + "prefixLen":25, + "network":"193.161.115.128\/25", + "version":43350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.128.0", + "prefixLen":25, + "network":"193.161.128.0\/25", + "version":43349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.128.128", + "prefixLen":25, + "network":"193.161.128.128\/25", + "version":43348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.129.0", + "prefixLen":25, + "network":"193.161.129.0\/25", + "version":43347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.129.128", + "prefixLen":25, + "network":"193.161.129.128\/25", + "version":43346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.130.0", + "prefixLen":25, + "network":"193.161.130.0\/25", + "version":43345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.130.128", + "prefixLen":25, + "network":"193.161.130.128\/25", + "version":43344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.131.0", + "prefixLen":25, + "network":"193.161.131.0\/25", + "version":43343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.131.128", + "prefixLen":25, + "network":"193.161.131.128\/25", + "version":43342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.144.0", + "prefixLen":25, + "network":"193.161.144.0\/25", + "version":43341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.144.128", + "prefixLen":25, + "network":"193.161.144.128\/25", + "version":43340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.145.0", + "prefixLen":25, + "network":"193.161.145.0\/25", + "version":43339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.145.128", + "prefixLen":25, + "network":"193.161.145.128\/25", + "version":43338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.146.0", + "prefixLen":25, + "network":"193.161.146.0\/25", + "version":43337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.146.128", + "prefixLen":25, + "network":"193.161.146.128\/25", + "version":43336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.147.0", + "prefixLen":25, + "network":"193.161.147.0\/25", + "version":43335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.147.128", + "prefixLen":25, + "network":"193.161.147.128\/25", + "version":43334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.160.0", + "prefixLen":25, + "network":"193.161.160.0\/25", + "version":43333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.160.128", + "prefixLen":25, + "network":"193.161.160.128\/25", + "version":43332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.161.0", + "prefixLen":25, + "network":"193.161.161.0\/25", + "version":43331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.161.128", + "prefixLen":25, + "network":"193.161.161.128\/25", + "version":43330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.162.0", + "prefixLen":25, + "network":"193.161.162.0\/25", + "version":43329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.162.128", + "prefixLen":25, + "network":"193.161.162.128\/25", + "version":43328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.163.0", + "prefixLen":25, + "network":"193.161.163.0\/25", + "version":43327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.163.128", + "prefixLen":25, + "network":"193.161.163.128\/25", + "version":43326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.176.0", + "prefixLen":25, + "network":"193.161.176.0\/25", + "version":43325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.176.128", + "prefixLen":25, + "network":"193.161.176.128\/25", + "version":43324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.177.0", + "prefixLen":25, + "network":"193.161.177.0\/25", + "version":43323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.177.128", + "prefixLen":25, + "network":"193.161.177.128\/25", + "version":43322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.178.0", + "prefixLen":25, + "network":"193.161.178.0\/25", + "version":43321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.178.128", + "prefixLen":25, + "network":"193.161.178.128\/25", + "version":43320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.179.0", + "prefixLen":25, + "network":"193.161.179.0\/25", + "version":43319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.179.128", + "prefixLen":25, + "network":"193.161.179.128\/25", + "version":43318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.192.0", + "prefixLen":25, + "network":"193.161.192.0\/25", + "version":43317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.192.128", + "prefixLen":25, + "network":"193.161.192.128\/25", + "version":43316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.193.0", + "prefixLen":25, + "network":"193.161.193.0\/25", + "version":43315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.193.128", + "prefixLen":25, + "network":"193.161.193.128\/25", + "version":43314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.194.0", + "prefixLen":25, + "network":"193.161.194.0\/25", + "version":43313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.194.128", + "prefixLen":25, + "network":"193.161.194.128\/25", + "version":43312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.195.0", + "prefixLen":25, + "network":"193.161.195.0\/25", + "version":43311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.195.128", + "prefixLen":25, + "network":"193.161.195.128\/25", + "version":43310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.208.0", + "prefixLen":25, + "network":"193.161.208.0\/25", + "version":43309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.208.128", + "prefixLen":25, + "network":"193.161.208.128\/25", + "version":43308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.209.0", + "prefixLen":25, + "network":"193.161.209.0\/25", + "version":43307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.209.128", + "prefixLen":25, + "network":"193.161.209.128\/25", + "version":43306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.210.0", + "prefixLen":25, + "network":"193.161.210.0\/25", + "version":43305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.210.128", + "prefixLen":25, + "network":"193.161.210.128\/25", + "version":43304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.211.0", + "prefixLen":25, + "network":"193.161.211.0\/25", + "version":43303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.211.128", + "prefixLen":25, + "network":"193.161.211.128\/25", + "version":43302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.224.0", + "prefixLen":25, + "network":"193.161.224.0\/25", + "version":43301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.224.128", + "prefixLen":25, + "network":"193.161.224.128\/25", + "version":43300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.225.0", + "prefixLen":25, + "network":"193.161.225.0\/25", + "version":43299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.225.128", + "prefixLen":25, + "network":"193.161.225.128\/25", + "version":43298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.226.0", + "prefixLen":25, + "network":"193.161.226.0\/25", + "version":43297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.226.128", + "prefixLen":25, + "network":"193.161.226.128\/25", + "version":43296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.227.0", + "prefixLen":25, + "network":"193.161.227.0\/25", + "version":43295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.227.128", + "prefixLen":25, + "network":"193.161.227.128\/25", + "version":43294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.240.0", + "prefixLen":25, + "network":"193.161.240.0\/25", + "version":43293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.240.128", + "prefixLen":25, + "network":"193.161.240.128\/25", + "version":43292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.241.0", + "prefixLen":25, + "network":"193.161.241.0\/25", + "version":43291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.241.128", + "prefixLen":25, + "network":"193.161.241.128\/25", + "version":43290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.242.0", + "prefixLen":25, + "network":"193.161.242.0\/25", + "version":43289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.242.128", + "prefixLen":25, + "network":"193.161.242.128\/25", + "version":43288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.243.0", + "prefixLen":25, + "network":"193.161.243.0\/25", + "version":43287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.161.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.161.243.128", + "prefixLen":25, + "network":"193.161.243.128\/25", + "version":43286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64849 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.0.0", + "prefixLen":25, + "network":"193.162.0.0\/25", + "version":43413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.0.128", + "prefixLen":25, + "network":"193.162.0.128\/25", + "version":43540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.1.0", + "prefixLen":25, + "network":"193.162.1.0\/25", + "version":43539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.1.128", + "prefixLen":25, + "network":"193.162.1.128\/25", + "version":43538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.2.0", + "prefixLen":25, + "network":"193.162.2.0\/25", + "version":43537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.2.128", + "prefixLen":25, + "network":"193.162.2.128\/25", + "version":43536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.3.0", + "prefixLen":25, + "network":"193.162.3.0\/25", + "version":43535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.3.128", + "prefixLen":25, + "network":"193.162.3.128\/25", + "version":43534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.16.0", + "prefixLen":25, + "network":"193.162.16.0\/25", + "version":43533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.16.128", + "prefixLen":25, + "network":"193.162.16.128\/25", + "version":43532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.17.0", + "prefixLen":25, + "network":"193.162.17.0\/25", + "version":43531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.17.128", + "prefixLen":25, + "network":"193.162.17.128\/25", + "version":43530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.18.0", + "prefixLen":25, + "network":"193.162.18.0\/25", + "version":43529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.18.128", + "prefixLen":25, + "network":"193.162.18.128\/25", + "version":43528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.19.0", + "prefixLen":25, + "network":"193.162.19.0\/25", + "version":43527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.19.128", + "prefixLen":25, + "network":"193.162.19.128\/25", + "version":43526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.32.0", + "prefixLen":25, + "network":"193.162.32.0\/25", + "version":43525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.32.128", + "prefixLen":25, + "network":"193.162.32.128\/25", + "version":43524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.33.0", + "prefixLen":25, + "network":"193.162.33.0\/25", + "version":43523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.33.128", + "prefixLen":25, + "network":"193.162.33.128\/25", + "version":43522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.34.0", + "prefixLen":25, + "network":"193.162.34.0\/25", + "version":43521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.34.128", + "prefixLen":25, + "network":"193.162.34.128\/25", + "version":43520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.35.0", + "prefixLen":25, + "network":"193.162.35.0\/25", + "version":43519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.35.128", + "prefixLen":25, + "network":"193.162.35.128\/25", + "version":43518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.48.0", + "prefixLen":25, + "network":"193.162.48.0\/25", + "version":43517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.48.128", + "prefixLen":25, + "network":"193.162.48.128\/25", + "version":43516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.49.0", + "prefixLen":25, + "network":"193.162.49.0\/25", + "version":43515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.49.128", + "prefixLen":25, + "network":"193.162.49.128\/25", + "version":43514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.50.0", + "prefixLen":25, + "network":"193.162.50.0\/25", + "version":43513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.50.128", + "prefixLen":25, + "network":"193.162.50.128\/25", + "version":43512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.51.0", + "prefixLen":25, + "network":"193.162.51.0\/25", + "version":43511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.51.128", + "prefixLen":25, + "network":"193.162.51.128\/25", + "version":43510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.64.0", + "prefixLen":25, + "network":"193.162.64.0\/25", + "version":43509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.64.128", + "prefixLen":25, + "network":"193.162.64.128\/25", + "version":43508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.65.0", + "prefixLen":25, + "network":"193.162.65.0\/25", + "version":43507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.65.128", + "prefixLen":25, + "network":"193.162.65.128\/25", + "version":43506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.66.0", + "prefixLen":25, + "network":"193.162.66.0\/25", + "version":43505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.66.128", + "prefixLen":25, + "network":"193.162.66.128\/25", + "version":43504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.67.0", + "prefixLen":25, + "network":"193.162.67.0\/25", + "version":43503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.67.128", + "prefixLen":25, + "network":"193.162.67.128\/25", + "version":43502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.80.0", + "prefixLen":25, + "network":"193.162.80.0\/25", + "version":43501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.80.128", + "prefixLen":25, + "network":"193.162.80.128\/25", + "version":43500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.81.0", + "prefixLen":25, + "network":"193.162.81.0\/25", + "version":43499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.81.128", + "prefixLen":25, + "network":"193.162.81.128\/25", + "version":43498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.82.0", + "prefixLen":25, + "network":"193.162.82.0\/25", + "version":43497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.82.128", + "prefixLen":25, + "network":"193.162.82.128\/25", + "version":43496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.83.0", + "prefixLen":25, + "network":"193.162.83.0\/25", + "version":43495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.83.128", + "prefixLen":25, + "network":"193.162.83.128\/25", + "version":43494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.96.0", + "prefixLen":25, + "network":"193.162.96.0\/25", + "version":43493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.96.128", + "prefixLen":25, + "network":"193.162.96.128\/25", + "version":43492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.97.0", + "prefixLen":25, + "network":"193.162.97.0\/25", + "version":43491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.97.128", + "prefixLen":25, + "network":"193.162.97.128\/25", + "version":43490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.98.0", + "prefixLen":25, + "network":"193.162.98.0\/25", + "version":43489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.98.128", + "prefixLen":25, + "network":"193.162.98.128\/25", + "version":43488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.99.0", + "prefixLen":25, + "network":"193.162.99.0\/25", + "version":43487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.99.128", + "prefixLen":25, + "network":"193.162.99.128\/25", + "version":43486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.112.0", + "prefixLen":25, + "network":"193.162.112.0\/25", + "version":43485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.112.128", + "prefixLen":25, + "network":"193.162.112.128\/25", + "version":43484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.113.0", + "prefixLen":25, + "network":"193.162.113.0\/25", + "version":43483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.113.128", + "prefixLen":25, + "network":"193.162.113.128\/25", + "version":43482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.114.0", + "prefixLen":25, + "network":"193.162.114.0\/25", + "version":43481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.114.128", + "prefixLen":25, + "network":"193.162.114.128\/25", + "version":43480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.115.0", + "prefixLen":25, + "network":"193.162.115.0\/25", + "version":43479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.115.128", + "prefixLen":25, + "network":"193.162.115.128\/25", + "version":43478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.128.0", + "prefixLen":25, + "network":"193.162.128.0\/25", + "version":43477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.128.128", + "prefixLen":25, + "network":"193.162.128.128\/25", + "version":43476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.129.0", + "prefixLen":25, + "network":"193.162.129.0\/25", + "version":43475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.129.128", + "prefixLen":25, + "network":"193.162.129.128\/25", + "version":43474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.130.0", + "prefixLen":25, + "network":"193.162.130.0\/25", + "version":43473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.130.128", + "prefixLen":25, + "network":"193.162.130.128\/25", + "version":43472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.131.0", + "prefixLen":25, + "network":"193.162.131.0\/25", + "version":43471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.131.128", + "prefixLen":25, + "network":"193.162.131.128\/25", + "version":43470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.144.0", + "prefixLen":25, + "network":"193.162.144.0\/25", + "version":43469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.144.128", + "prefixLen":25, + "network":"193.162.144.128\/25", + "version":43468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.145.0", + "prefixLen":25, + "network":"193.162.145.0\/25", + "version":43467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.145.128", + "prefixLen":25, + "network":"193.162.145.128\/25", + "version":43466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.146.0", + "prefixLen":25, + "network":"193.162.146.0\/25", + "version":43465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.146.128", + "prefixLen":25, + "network":"193.162.146.128\/25", + "version":43464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.147.0", + "prefixLen":25, + "network":"193.162.147.0\/25", + "version":43463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.147.128", + "prefixLen":25, + "network":"193.162.147.128\/25", + "version":43462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.160.0", + "prefixLen":25, + "network":"193.162.160.0\/25", + "version":43461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.160.128", + "prefixLen":25, + "network":"193.162.160.128\/25", + "version":43460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.161.0", + "prefixLen":25, + "network":"193.162.161.0\/25", + "version":43459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.161.128", + "prefixLen":25, + "network":"193.162.161.128\/25", + "version":43458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.162.0", + "prefixLen":25, + "network":"193.162.162.0\/25", + "version":43457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.162.128", + "prefixLen":25, + "network":"193.162.162.128\/25", + "version":43456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.163.0", + "prefixLen":25, + "network":"193.162.163.0\/25", + "version":43455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.163.128", + "prefixLen":25, + "network":"193.162.163.128\/25", + "version":43454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.176.0", + "prefixLen":25, + "network":"193.162.176.0\/25", + "version":43453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.176.128", + "prefixLen":25, + "network":"193.162.176.128\/25", + "version":43452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.177.0", + "prefixLen":25, + "network":"193.162.177.0\/25", + "version":43451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.177.128", + "prefixLen":25, + "network":"193.162.177.128\/25", + "version":43450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.178.0", + "prefixLen":25, + "network":"193.162.178.0\/25", + "version":43449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.178.128", + "prefixLen":25, + "network":"193.162.178.128\/25", + "version":43448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.179.0", + "prefixLen":25, + "network":"193.162.179.0\/25", + "version":43447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.179.128", + "prefixLen":25, + "network":"193.162.179.128\/25", + "version":43446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.192.0", + "prefixLen":25, + "network":"193.162.192.0\/25", + "version":43445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.192.128", + "prefixLen":25, + "network":"193.162.192.128\/25", + "version":43444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.193.0", + "prefixLen":25, + "network":"193.162.193.0\/25", + "version":43443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.193.128", + "prefixLen":25, + "network":"193.162.193.128\/25", + "version":43442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.194.0", + "prefixLen":25, + "network":"193.162.194.0\/25", + "version":43441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.194.128", + "prefixLen":25, + "network":"193.162.194.128\/25", + "version":43440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.195.0", + "prefixLen":25, + "network":"193.162.195.0\/25", + "version":43439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.195.128", + "prefixLen":25, + "network":"193.162.195.128\/25", + "version":43438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.208.0", + "prefixLen":25, + "network":"193.162.208.0\/25", + "version":43437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.208.128", + "prefixLen":25, + "network":"193.162.208.128\/25", + "version":43436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.209.0", + "prefixLen":25, + "network":"193.162.209.0\/25", + "version":43435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.209.128", + "prefixLen":25, + "network":"193.162.209.128\/25", + "version":43434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.210.0", + "prefixLen":25, + "network":"193.162.210.0\/25", + "version":43433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.210.128", + "prefixLen":25, + "network":"193.162.210.128\/25", + "version":43432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.211.0", + "prefixLen":25, + "network":"193.162.211.0\/25", + "version":43431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.211.128", + "prefixLen":25, + "network":"193.162.211.128\/25", + "version":43430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.224.0", + "prefixLen":25, + "network":"193.162.224.0\/25", + "version":43429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.224.128", + "prefixLen":25, + "network":"193.162.224.128\/25", + "version":43428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.225.0", + "prefixLen":25, + "network":"193.162.225.0\/25", + "version":43427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.225.128", + "prefixLen":25, + "network":"193.162.225.128\/25", + "version":43426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.226.0", + "prefixLen":25, + "network":"193.162.226.0\/25", + "version":43425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.226.128", + "prefixLen":25, + "network":"193.162.226.128\/25", + "version":43424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.227.0", + "prefixLen":25, + "network":"193.162.227.0\/25", + "version":43423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.227.128", + "prefixLen":25, + "network":"193.162.227.128\/25", + "version":43422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.240.0", + "prefixLen":25, + "network":"193.162.240.0\/25", + "version":43421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.240.128", + "prefixLen":25, + "network":"193.162.240.128\/25", + "version":43420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.241.0", + "prefixLen":25, + "network":"193.162.241.0\/25", + "version":43419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.241.128", + "prefixLen":25, + "network":"193.162.241.128\/25", + "version":43418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.242.0", + "prefixLen":25, + "network":"193.162.242.0\/25", + "version":43417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.242.128", + "prefixLen":25, + "network":"193.162.242.128\/25", + "version":43416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.243.0", + "prefixLen":25, + "network":"193.162.243.0\/25", + "version":43415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.162.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.162.243.128", + "prefixLen":25, + "network":"193.162.243.128\/25", + "version":43414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64850 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.0.0", + "prefixLen":25, + "network":"193.163.0.0\/25", + "version":43541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.0.128", + "prefixLen":25, + "network":"193.163.0.128\/25", + "version":43668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.1.0", + "prefixLen":25, + "network":"193.163.1.0\/25", + "version":43667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.1.128", + "prefixLen":25, + "network":"193.163.1.128\/25", + "version":43666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.2.0", + "prefixLen":25, + "network":"193.163.2.0\/25", + "version":43665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.2.128", + "prefixLen":25, + "network":"193.163.2.128\/25", + "version":43664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.3.0", + "prefixLen":25, + "network":"193.163.3.0\/25", + "version":43663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.3.128", + "prefixLen":25, + "network":"193.163.3.128\/25", + "version":43662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.16.0", + "prefixLen":25, + "network":"193.163.16.0\/25", + "version":43661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.16.128", + "prefixLen":25, + "network":"193.163.16.128\/25", + "version":43660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.17.0", + "prefixLen":25, + "network":"193.163.17.0\/25", + "version":43659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.17.128", + "prefixLen":25, + "network":"193.163.17.128\/25", + "version":43658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.18.0", + "prefixLen":25, + "network":"193.163.18.0\/25", + "version":43657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.18.128", + "prefixLen":25, + "network":"193.163.18.128\/25", + "version":43656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.19.0", + "prefixLen":25, + "network":"193.163.19.0\/25", + "version":43655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.19.128", + "prefixLen":25, + "network":"193.163.19.128\/25", + "version":43654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.32.0", + "prefixLen":25, + "network":"193.163.32.0\/25", + "version":43653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.32.128", + "prefixLen":25, + "network":"193.163.32.128\/25", + "version":43652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.33.0", + "prefixLen":25, + "network":"193.163.33.0\/25", + "version":43651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.33.128", + "prefixLen":25, + "network":"193.163.33.128\/25", + "version":43650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.34.0", + "prefixLen":25, + "network":"193.163.34.0\/25", + "version":43649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.34.128", + "prefixLen":25, + "network":"193.163.34.128\/25", + "version":43648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.35.0", + "prefixLen":25, + "network":"193.163.35.0\/25", + "version":43647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.35.128", + "prefixLen":25, + "network":"193.163.35.128\/25", + "version":43646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.48.0", + "prefixLen":25, + "network":"193.163.48.0\/25", + "version":43645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.48.128", + "prefixLen":25, + "network":"193.163.48.128\/25", + "version":43644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.49.0", + "prefixLen":25, + "network":"193.163.49.0\/25", + "version":43643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.49.128", + "prefixLen":25, + "network":"193.163.49.128\/25", + "version":43642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.50.0", + "prefixLen":25, + "network":"193.163.50.0\/25", + "version":43641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.50.128", + "prefixLen":25, + "network":"193.163.50.128\/25", + "version":43640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.51.0", + "prefixLen":25, + "network":"193.163.51.0\/25", + "version":43639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.51.128", + "prefixLen":25, + "network":"193.163.51.128\/25", + "version":43638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.64.0", + "prefixLen":25, + "network":"193.163.64.0\/25", + "version":43637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.64.128", + "prefixLen":25, + "network":"193.163.64.128\/25", + "version":43636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.65.0", + "prefixLen":25, + "network":"193.163.65.0\/25", + "version":43635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.65.128", + "prefixLen":25, + "network":"193.163.65.128\/25", + "version":43634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.66.0", + "prefixLen":25, + "network":"193.163.66.0\/25", + "version":43633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.66.128", + "prefixLen":25, + "network":"193.163.66.128\/25", + "version":43632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.67.0", + "prefixLen":25, + "network":"193.163.67.0\/25", + "version":43631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.67.128", + "prefixLen":25, + "network":"193.163.67.128\/25", + "version":43630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.80.0", + "prefixLen":25, + "network":"193.163.80.0\/25", + "version":43629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.80.128", + "prefixLen":25, + "network":"193.163.80.128\/25", + "version":43628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.81.0", + "prefixLen":25, + "network":"193.163.81.0\/25", + "version":43627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.81.128", + "prefixLen":25, + "network":"193.163.81.128\/25", + "version":43626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.82.0", + "prefixLen":25, + "network":"193.163.82.0\/25", + "version":43625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.82.128", + "prefixLen":25, + "network":"193.163.82.128\/25", + "version":43624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.83.0", + "prefixLen":25, + "network":"193.163.83.0\/25", + "version":43623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.83.128", + "prefixLen":25, + "network":"193.163.83.128\/25", + "version":43622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.96.0", + "prefixLen":25, + "network":"193.163.96.0\/25", + "version":43621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.96.128", + "prefixLen":25, + "network":"193.163.96.128\/25", + "version":43620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.97.0", + "prefixLen":25, + "network":"193.163.97.0\/25", + "version":43619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.97.128", + "prefixLen":25, + "network":"193.163.97.128\/25", + "version":43618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.98.0", + "prefixLen":25, + "network":"193.163.98.0\/25", + "version":43617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.98.128", + "prefixLen":25, + "network":"193.163.98.128\/25", + "version":43616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.99.0", + "prefixLen":25, + "network":"193.163.99.0\/25", + "version":43615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.99.128", + "prefixLen":25, + "network":"193.163.99.128\/25", + "version":43614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.112.0", + "prefixLen":25, + "network":"193.163.112.0\/25", + "version":43613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.112.128", + "prefixLen":25, + "network":"193.163.112.128\/25", + "version":43612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.113.0", + "prefixLen":25, + "network":"193.163.113.0\/25", + "version":43611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.113.128", + "prefixLen":25, + "network":"193.163.113.128\/25", + "version":43610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.114.0", + "prefixLen":25, + "network":"193.163.114.0\/25", + "version":43609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.114.128", + "prefixLen":25, + "network":"193.163.114.128\/25", + "version":43608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.115.0", + "prefixLen":25, + "network":"193.163.115.0\/25", + "version":43607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.115.128", + "prefixLen":25, + "network":"193.163.115.128\/25", + "version":43606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.128.0", + "prefixLen":25, + "network":"193.163.128.0\/25", + "version":43605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.128.128", + "prefixLen":25, + "network":"193.163.128.128\/25", + "version":43604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.129.0", + "prefixLen":25, + "network":"193.163.129.0\/25", + "version":43603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.129.128", + "prefixLen":25, + "network":"193.163.129.128\/25", + "version":43602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.130.0", + "prefixLen":25, + "network":"193.163.130.0\/25", + "version":43601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.130.128", + "prefixLen":25, + "network":"193.163.130.128\/25", + "version":43600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.131.0", + "prefixLen":25, + "network":"193.163.131.0\/25", + "version":43599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.131.128", + "prefixLen":25, + "network":"193.163.131.128\/25", + "version":43598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.144.0", + "prefixLen":25, + "network":"193.163.144.0\/25", + "version":43597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.144.128", + "prefixLen":25, + "network":"193.163.144.128\/25", + "version":43596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.145.0", + "prefixLen":25, + "network":"193.163.145.0\/25", + "version":43595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.145.128", + "prefixLen":25, + "network":"193.163.145.128\/25", + "version":43594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.146.0", + "prefixLen":25, + "network":"193.163.146.0\/25", + "version":43593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.146.128", + "prefixLen":25, + "network":"193.163.146.128\/25", + "version":43592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.147.0", + "prefixLen":25, + "network":"193.163.147.0\/25", + "version":43591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.147.128", + "prefixLen":25, + "network":"193.163.147.128\/25", + "version":43590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.160.0", + "prefixLen":25, + "network":"193.163.160.0\/25", + "version":43589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.160.128", + "prefixLen":25, + "network":"193.163.160.128\/25", + "version":43588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.161.0", + "prefixLen":25, + "network":"193.163.161.0\/25", + "version":43587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.161.128", + "prefixLen":25, + "network":"193.163.161.128\/25", + "version":43586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.162.0", + "prefixLen":25, + "network":"193.163.162.0\/25", + "version":43585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.162.128", + "prefixLen":25, + "network":"193.163.162.128\/25", + "version":43584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.163.0", + "prefixLen":25, + "network":"193.163.163.0\/25", + "version":43583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.163.128", + "prefixLen":25, + "network":"193.163.163.128\/25", + "version":43582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.176.0", + "prefixLen":25, + "network":"193.163.176.0\/25", + "version":43581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.176.128", + "prefixLen":25, + "network":"193.163.176.128\/25", + "version":43580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.177.0", + "prefixLen":25, + "network":"193.163.177.0\/25", + "version":43579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.177.128", + "prefixLen":25, + "network":"193.163.177.128\/25", + "version":43578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.178.0", + "prefixLen":25, + "network":"193.163.178.0\/25", + "version":43577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.178.128", + "prefixLen":25, + "network":"193.163.178.128\/25", + "version":43576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.179.0", + "prefixLen":25, + "network":"193.163.179.0\/25", + "version":43575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.179.128", + "prefixLen":25, + "network":"193.163.179.128\/25", + "version":43574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.192.0", + "prefixLen":25, + "network":"193.163.192.0\/25", + "version":43573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.192.128", + "prefixLen":25, + "network":"193.163.192.128\/25", + "version":43572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.193.0", + "prefixLen":25, + "network":"193.163.193.0\/25", + "version":43571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.193.128", + "prefixLen":25, + "network":"193.163.193.128\/25", + "version":43570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.194.0", + "prefixLen":25, + "network":"193.163.194.0\/25", + "version":43569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.194.128", + "prefixLen":25, + "network":"193.163.194.128\/25", + "version":43568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.195.0", + "prefixLen":25, + "network":"193.163.195.0\/25", + "version":43567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.195.128", + "prefixLen":25, + "network":"193.163.195.128\/25", + "version":43566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.208.0", + "prefixLen":25, + "network":"193.163.208.0\/25", + "version":43565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.208.128", + "prefixLen":25, + "network":"193.163.208.128\/25", + "version":43564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.209.0", + "prefixLen":25, + "network":"193.163.209.0\/25", + "version":43563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.209.128", + "prefixLen":25, + "network":"193.163.209.128\/25", + "version":43562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.210.0", + "prefixLen":25, + "network":"193.163.210.0\/25", + "version":43561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.210.128", + "prefixLen":25, + "network":"193.163.210.128\/25", + "version":43560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.211.0", + "prefixLen":25, + "network":"193.163.211.0\/25", + "version":43559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.211.128", + "prefixLen":25, + "network":"193.163.211.128\/25", + "version":43558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.224.0", + "prefixLen":25, + "network":"193.163.224.0\/25", + "version":43557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.224.128", + "prefixLen":25, + "network":"193.163.224.128\/25", + "version":43556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.225.0", + "prefixLen":25, + "network":"193.163.225.0\/25", + "version":43555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.225.128", + "prefixLen":25, + "network":"193.163.225.128\/25", + "version":43554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.226.0", + "prefixLen":25, + "network":"193.163.226.0\/25", + "version":43553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.226.128", + "prefixLen":25, + "network":"193.163.226.128\/25", + "version":43552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.227.0", + "prefixLen":25, + "network":"193.163.227.0\/25", + "version":43551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.227.128", + "prefixLen":25, + "network":"193.163.227.128\/25", + "version":43550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.240.0", + "prefixLen":25, + "network":"193.163.240.0\/25", + "version":43549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.240.128", + "prefixLen":25, + "network":"193.163.240.128\/25", + "version":43548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.241.0", + "prefixLen":25, + "network":"193.163.241.0\/25", + "version":43547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.241.128", + "prefixLen":25, + "network":"193.163.241.128\/25", + "version":43546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.242.0", + "prefixLen":25, + "network":"193.163.242.0\/25", + "version":43545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.242.128", + "prefixLen":25, + "network":"193.163.242.128\/25", + "version":43544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.243.0", + "prefixLen":25, + "network":"193.163.243.0\/25", + "version":43543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.163.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.163.243.128", + "prefixLen":25, + "network":"193.163.243.128\/25", + "version":43542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64851 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.0.0", + "prefixLen":25, + "network":"193.164.0.0\/25", + "version":43669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.0.128", + "prefixLen":25, + "network":"193.164.0.128\/25", + "version":43796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.1.0", + "prefixLen":25, + "network":"193.164.1.0\/25", + "version":43795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.1.128", + "prefixLen":25, + "network":"193.164.1.128\/25", + "version":43794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.2.0", + "prefixLen":25, + "network":"193.164.2.0\/25", + "version":43793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.2.128", + "prefixLen":25, + "network":"193.164.2.128\/25", + "version":43792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.3.0", + "prefixLen":25, + "network":"193.164.3.0\/25", + "version":43791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.3.128", + "prefixLen":25, + "network":"193.164.3.128\/25", + "version":43790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.16.0", + "prefixLen":25, + "network":"193.164.16.0\/25", + "version":43789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.16.128", + "prefixLen":25, + "network":"193.164.16.128\/25", + "version":43788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.17.0", + "prefixLen":25, + "network":"193.164.17.0\/25", + "version":43787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.17.128", + "prefixLen":25, + "network":"193.164.17.128\/25", + "version":43786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.18.0", + "prefixLen":25, + "network":"193.164.18.0\/25", + "version":43785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.18.128", + "prefixLen":25, + "network":"193.164.18.128\/25", + "version":43784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.19.0", + "prefixLen":25, + "network":"193.164.19.0\/25", + "version":43783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.19.128", + "prefixLen":25, + "network":"193.164.19.128\/25", + "version":43782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.32.0", + "prefixLen":25, + "network":"193.164.32.0\/25", + "version":43781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.32.128", + "prefixLen":25, + "network":"193.164.32.128\/25", + "version":43780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.33.0", + "prefixLen":25, + "network":"193.164.33.0\/25", + "version":43779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.33.128", + "prefixLen":25, + "network":"193.164.33.128\/25", + "version":43778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.34.0", + "prefixLen":25, + "network":"193.164.34.0\/25", + "version":43777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.34.128", + "prefixLen":25, + "network":"193.164.34.128\/25", + "version":43776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.35.0", + "prefixLen":25, + "network":"193.164.35.0\/25", + "version":43775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.35.128", + "prefixLen":25, + "network":"193.164.35.128\/25", + "version":43774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.48.0", + "prefixLen":25, + "network":"193.164.48.0\/25", + "version":43773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.48.128", + "prefixLen":25, + "network":"193.164.48.128\/25", + "version":43772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.49.0", + "prefixLen":25, + "network":"193.164.49.0\/25", + "version":43771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.49.128", + "prefixLen":25, + "network":"193.164.49.128\/25", + "version":43770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.50.0", + "prefixLen":25, + "network":"193.164.50.0\/25", + "version":43769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.50.128", + "prefixLen":25, + "network":"193.164.50.128\/25", + "version":43768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.51.0", + "prefixLen":25, + "network":"193.164.51.0\/25", + "version":43767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.51.128", + "prefixLen":25, + "network":"193.164.51.128\/25", + "version":43766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.64.0", + "prefixLen":25, + "network":"193.164.64.0\/25", + "version":43765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.64.128", + "prefixLen":25, + "network":"193.164.64.128\/25", + "version":43764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.65.0", + "prefixLen":25, + "network":"193.164.65.0\/25", + "version":43763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.65.128", + "prefixLen":25, + "network":"193.164.65.128\/25", + "version":43762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.66.0", + "prefixLen":25, + "network":"193.164.66.0\/25", + "version":43761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.66.128", + "prefixLen":25, + "network":"193.164.66.128\/25", + "version":43760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.67.0", + "prefixLen":25, + "network":"193.164.67.0\/25", + "version":43759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.67.128", + "prefixLen":25, + "network":"193.164.67.128\/25", + "version":43758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.80.0", + "prefixLen":25, + "network":"193.164.80.0\/25", + "version":43757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.80.128", + "prefixLen":25, + "network":"193.164.80.128\/25", + "version":43756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.81.0", + "prefixLen":25, + "network":"193.164.81.0\/25", + "version":43755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.81.128", + "prefixLen":25, + "network":"193.164.81.128\/25", + "version":43754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.82.0", + "prefixLen":25, + "network":"193.164.82.0\/25", + "version":43753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.82.128", + "prefixLen":25, + "network":"193.164.82.128\/25", + "version":43752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.83.0", + "prefixLen":25, + "network":"193.164.83.0\/25", + "version":43751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.83.128", + "prefixLen":25, + "network":"193.164.83.128\/25", + "version":43750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.96.0", + "prefixLen":25, + "network":"193.164.96.0\/25", + "version":43749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.96.128", + "prefixLen":25, + "network":"193.164.96.128\/25", + "version":43748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.97.0", + "prefixLen":25, + "network":"193.164.97.0\/25", + "version":43747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.97.128", + "prefixLen":25, + "network":"193.164.97.128\/25", + "version":43746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.98.0", + "prefixLen":25, + "network":"193.164.98.0\/25", + "version":43745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.98.128", + "prefixLen":25, + "network":"193.164.98.128\/25", + "version":43744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.99.0", + "prefixLen":25, + "network":"193.164.99.0\/25", + "version":43743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.99.128", + "prefixLen":25, + "network":"193.164.99.128\/25", + "version":43742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.112.0", + "prefixLen":25, + "network":"193.164.112.0\/25", + "version":43741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.112.128", + "prefixLen":25, + "network":"193.164.112.128\/25", + "version":43740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.113.0", + "prefixLen":25, + "network":"193.164.113.0\/25", + "version":43739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.113.128", + "prefixLen":25, + "network":"193.164.113.128\/25", + "version":43738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.114.0", + "prefixLen":25, + "network":"193.164.114.0\/25", + "version":43737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.114.128", + "prefixLen":25, + "network":"193.164.114.128\/25", + "version":43736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.115.0", + "prefixLen":25, + "network":"193.164.115.0\/25", + "version":43735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.115.128", + "prefixLen":25, + "network":"193.164.115.128\/25", + "version":43734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.128.0", + "prefixLen":25, + "network":"193.164.128.0\/25", + "version":43733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.128.128", + "prefixLen":25, + "network":"193.164.128.128\/25", + "version":43732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.129.0", + "prefixLen":25, + "network":"193.164.129.0\/25", + "version":43731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.129.128", + "prefixLen":25, + "network":"193.164.129.128\/25", + "version":43730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.130.0", + "prefixLen":25, + "network":"193.164.130.0\/25", + "version":43729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.130.128", + "prefixLen":25, + "network":"193.164.130.128\/25", + "version":43728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.131.0", + "prefixLen":25, + "network":"193.164.131.0\/25", + "version":43727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.131.128", + "prefixLen":25, + "network":"193.164.131.128\/25", + "version":43726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.144.0", + "prefixLen":25, + "network":"193.164.144.0\/25", + "version":43725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.144.128", + "prefixLen":25, + "network":"193.164.144.128\/25", + "version":43724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.145.0", + "prefixLen":25, + "network":"193.164.145.0\/25", + "version":43723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.145.128", + "prefixLen":25, + "network":"193.164.145.128\/25", + "version":43722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.146.0", + "prefixLen":25, + "network":"193.164.146.0\/25", + "version":43721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.146.128", + "prefixLen":25, + "network":"193.164.146.128\/25", + "version":43720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.147.0", + "prefixLen":25, + "network":"193.164.147.0\/25", + "version":43719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.147.128", + "prefixLen":25, + "network":"193.164.147.128\/25", + "version":43718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.160.0", + "prefixLen":25, + "network":"193.164.160.0\/25", + "version":43717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.160.128", + "prefixLen":25, + "network":"193.164.160.128\/25", + "version":43716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.161.0", + "prefixLen":25, + "network":"193.164.161.0\/25", + "version":43715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.161.128", + "prefixLen":25, + "network":"193.164.161.128\/25", + "version":43714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.162.0", + "prefixLen":25, + "network":"193.164.162.0\/25", + "version":43713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.162.128", + "prefixLen":25, + "network":"193.164.162.128\/25", + "version":43712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.163.0", + "prefixLen":25, + "network":"193.164.163.0\/25", + "version":43711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.163.128", + "prefixLen":25, + "network":"193.164.163.128\/25", + "version":43710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.176.0", + "prefixLen":25, + "network":"193.164.176.0\/25", + "version":43709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.176.128", + "prefixLen":25, + "network":"193.164.176.128\/25", + "version":43708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.177.0", + "prefixLen":25, + "network":"193.164.177.0\/25", + "version":43707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.177.128", + "prefixLen":25, + "network":"193.164.177.128\/25", + "version":43706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.178.0", + "prefixLen":25, + "network":"193.164.178.0\/25", + "version":43705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.178.128", + "prefixLen":25, + "network":"193.164.178.128\/25", + "version":43704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.179.0", + "prefixLen":25, + "network":"193.164.179.0\/25", + "version":43703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.179.128", + "prefixLen":25, + "network":"193.164.179.128\/25", + "version":43702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.192.0", + "prefixLen":25, + "network":"193.164.192.0\/25", + "version":43701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.192.128", + "prefixLen":25, + "network":"193.164.192.128\/25", + "version":43700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.193.0", + "prefixLen":25, + "network":"193.164.193.0\/25", + "version":43699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.193.128", + "prefixLen":25, + "network":"193.164.193.128\/25", + "version":43698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.194.0", + "prefixLen":25, + "network":"193.164.194.0\/25", + "version":43697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.194.128", + "prefixLen":25, + "network":"193.164.194.128\/25", + "version":43696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.195.0", + "prefixLen":25, + "network":"193.164.195.0\/25", + "version":43695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.195.128", + "prefixLen":25, + "network":"193.164.195.128\/25", + "version":43694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.208.0", + "prefixLen":25, + "network":"193.164.208.0\/25", + "version":43693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.208.128", + "prefixLen":25, + "network":"193.164.208.128\/25", + "version":43692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.209.0", + "prefixLen":25, + "network":"193.164.209.0\/25", + "version":43691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.209.128", + "prefixLen":25, + "network":"193.164.209.128\/25", + "version":43690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.210.0", + "prefixLen":25, + "network":"193.164.210.0\/25", + "version":43689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.210.128", + "prefixLen":25, + "network":"193.164.210.128\/25", + "version":43688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.211.0", + "prefixLen":25, + "network":"193.164.211.0\/25", + "version":43687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.211.128", + "prefixLen":25, + "network":"193.164.211.128\/25", + "version":43686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.224.0", + "prefixLen":25, + "network":"193.164.224.0\/25", + "version":43685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.224.128", + "prefixLen":25, + "network":"193.164.224.128\/25", + "version":43684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.225.0", + "prefixLen":25, + "network":"193.164.225.0\/25", + "version":43683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.225.128", + "prefixLen":25, + "network":"193.164.225.128\/25", + "version":43682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.226.0", + "prefixLen":25, + "network":"193.164.226.0\/25", + "version":43681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.226.128", + "prefixLen":25, + "network":"193.164.226.128\/25", + "version":43680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.227.0", + "prefixLen":25, + "network":"193.164.227.0\/25", + "version":43679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.227.128", + "prefixLen":25, + "network":"193.164.227.128\/25", + "version":43678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.240.0", + "prefixLen":25, + "network":"193.164.240.0\/25", + "version":43677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.240.128", + "prefixLen":25, + "network":"193.164.240.128\/25", + "version":43676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.241.0", + "prefixLen":25, + "network":"193.164.241.0\/25", + "version":43675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.241.128", + "prefixLen":25, + "network":"193.164.241.128\/25", + "version":43674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.242.0", + "prefixLen":25, + "network":"193.164.242.0\/25", + "version":43673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.242.128", + "prefixLen":25, + "network":"193.164.242.128\/25", + "version":43672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.243.0", + "prefixLen":25, + "network":"193.164.243.0\/25", + "version":43671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.164.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.164.243.128", + "prefixLen":25, + "network":"193.164.243.128\/25", + "version":43670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64852 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.0.0", + "prefixLen":25, + "network":"193.165.0.0\/25", + "version":43797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.0.128", + "prefixLen":25, + "network":"193.165.0.128\/25", + "version":43924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.1.0", + "prefixLen":25, + "network":"193.165.1.0\/25", + "version":43923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.1.128", + "prefixLen":25, + "network":"193.165.1.128\/25", + "version":43922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.2.0", + "prefixLen":25, + "network":"193.165.2.0\/25", + "version":43921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.2.128", + "prefixLen":25, + "network":"193.165.2.128\/25", + "version":43920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.3.0", + "prefixLen":25, + "network":"193.165.3.0\/25", + "version":43919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.3.128", + "prefixLen":25, + "network":"193.165.3.128\/25", + "version":43918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.16.0", + "prefixLen":25, + "network":"193.165.16.0\/25", + "version":43917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.16.128", + "prefixLen":25, + "network":"193.165.16.128\/25", + "version":43916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.17.0", + "prefixLen":25, + "network":"193.165.17.0\/25", + "version":43915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.17.128", + "prefixLen":25, + "network":"193.165.17.128\/25", + "version":43914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.18.0", + "prefixLen":25, + "network":"193.165.18.0\/25", + "version":43913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.18.128", + "prefixLen":25, + "network":"193.165.18.128\/25", + "version":43912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.19.0", + "prefixLen":25, + "network":"193.165.19.0\/25", + "version":43911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.19.128", + "prefixLen":25, + "network":"193.165.19.128\/25", + "version":43910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.32.0", + "prefixLen":25, + "network":"193.165.32.0\/25", + "version":43909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.32.128", + "prefixLen":25, + "network":"193.165.32.128\/25", + "version":43908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.33.0", + "prefixLen":25, + "network":"193.165.33.0\/25", + "version":43907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.33.128", + "prefixLen":25, + "network":"193.165.33.128\/25", + "version":43906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.34.0", + "prefixLen":25, + "network":"193.165.34.0\/25", + "version":43905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.34.128", + "prefixLen":25, + "network":"193.165.34.128\/25", + "version":43904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.35.0", + "prefixLen":25, + "network":"193.165.35.0\/25", + "version":43903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.35.128", + "prefixLen":25, + "network":"193.165.35.128\/25", + "version":43902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.48.0", + "prefixLen":25, + "network":"193.165.48.0\/25", + "version":43901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.48.128", + "prefixLen":25, + "network":"193.165.48.128\/25", + "version":43900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.49.0", + "prefixLen":25, + "network":"193.165.49.0\/25", + "version":43899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.49.128", + "prefixLen":25, + "network":"193.165.49.128\/25", + "version":43898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.50.0", + "prefixLen":25, + "network":"193.165.50.0\/25", + "version":43897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.50.128", + "prefixLen":25, + "network":"193.165.50.128\/25", + "version":43896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.51.0", + "prefixLen":25, + "network":"193.165.51.0\/25", + "version":43895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.51.128", + "prefixLen":25, + "network":"193.165.51.128\/25", + "version":43894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.64.0", + "prefixLen":25, + "network":"193.165.64.0\/25", + "version":43893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.64.128", + "prefixLen":25, + "network":"193.165.64.128\/25", + "version":43892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.65.0", + "prefixLen":25, + "network":"193.165.65.0\/25", + "version":43891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.65.128", + "prefixLen":25, + "network":"193.165.65.128\/25", + "version":43890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.66.0", + "prefixLen":25, + "network":"193.165.66.0\/25", + "version":43889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.66.128", + "prefixLen":25, + "network":"193.165.66.128\/25", + "version":43888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.67.0", + "prefixLen":25, + "network":"193.165.67.0\/25", + "version":43887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.67.128", + "prefixLen":25, + "network":"193.165.67.128\/25", + "version":43886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.80.0", + "prefixLen":25, + "network":"193.165.80.0\/25", + "version":43885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.80.128", + "prefixLen":25, + "network":"193.165.80.128\/25", + "version":43884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.81.0", + "prefixLen":25, + "network":"193.165.81.0\/25", + "version":43883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.81.128", + "prefixLen":25, + "network":"193.165.81.128\/25", + "version":43882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.82.0", + "prefixLen":25, + "network":"193.165.82.0\/25", + "version":43881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.82.128", + "prefixLen":25, + "network":"193.165.82.128\/25", + "version":43880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.83.0", + "prefixLen":25, + "network":"193.165.83.0\/25", + "version":43879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.83.128", + "prefixLen":25, + "network":"193.165.83.128\/25", + "version":43878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.96.0", + "prefixLen":25, + "network":"193.165.96.0\/25", + "version":43877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.96.128", + "prefixLen":25, + "network":"193.165.96.128\/25", + "version":43876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.97.0", + "prefixLen":25, + "network":"193.165.97.0\/25", + "version":43875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.97.128", + "prefixLen":25, + "network":"193.165.97.128\/25", + "version":43874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.98.0", + "prefixLen":25, + "network":"193.165.98.0\/25", + "version":43873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.98.128", + "prefixLen":25, + "network":"193.165.98.128\/25", + "version":43872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.99.0", + "prefixLen":25, + "network":"193.165.99.0\/25", + "version":43871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.99.128", + "prefixLen":25, + "network":"193.165.99.128\/25", + "version":43870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.112.0", + "prefixLen":25, + "network":"193.165.112.0\/25", + "version":43869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.112.128", + "prefixLen":25, + "network":"193.165.112.128\/25", + "version":43868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.113.0", + "prefixLen":25, + "network":"193.165.113.0\/25", + "version":43867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.113.128", + "prefixLen":25, + "network":"193.165.113.128\/25", + "version":43866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.114.0", + "prefixLen":25, + "network":"193.165.114.0\/25", + "version":43865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.114.128", + "prefixLen":25, + "network":"193.165.114.128\/25", + "version":43864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.115.0", + "prefixLen":25, + "network":"193.165.115.0\/25", + "version":43863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.115.128", + "prefixLen":25, + "network":"193.165.115.128\/25", + "version":43862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.128.0", + "prefixLen":25, + "network":"193.165.128.0\/25", + "version":43861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.128.128", + "prefixLen":25, + "network":"193.165.128.128\/25", + "version":43860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.129.0", + "prefixLen":25, + "network":"193.165.129.0\/25", + "version":43859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.129.128", + "prefixLen":25, + "network":"193.165.129.128\/25", + "version":43858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.130.0", + "prefixLen":25, + "network":"193.165.130.0\/25", + "version":43857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.130.128", + "prefixLen":25, + "network":"193.165.130.128\/25", + "version":43856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.131.0", + "prefixLen":25, + "network":"193.165.131.0\/25", + "version":43855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.131.128", + "prefixLen":25, + "network":"193.165.131.128\/25", + "version":43854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.144.0", + "prefixLen":25, + "network":"193.165.144.0\/25", + "version":43853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.144.128", + "prefixLen":25, + "network":"193.165.144.128\/25", + "version":43852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.145.0", + "prefixLen":25, + "network":"193.165.145.0\/25", + "version":43851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.145.128", + "prefixLen":25, + "network":"193.165.145.128\/25", + "version":43850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.146.0", + "prefixLen":25, + "network":"193.165.146.0\/25", + "version":43849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.146.128", + "prefixLen":25, + "network":"193.165.146.128\/25", + "version":43848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.147.0", + "prefixLen":25, + "network":"193.165.147.0\/25", + "version":43847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.147.128", + "prefixLen":25, + "network":"193.165.147.128\/25", + "version":43846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.160.0", + "prefixLen":25, + "network":"193.165.160.0\/25", + "version":43845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.160.128", + "prefixLen":25, + "network":"193.165.160.128\/25", + "version":43844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.161.0", + "prefixLen":25, + "network":"193.165.161.0\/25", + "version":43843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.161.128", + "prefixLen":25, + "network":"193.165.161.128\/25", + "version":43842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.162.0", + "prefixLen":25, + "network":"193.165.162.0\/25", + "version":43841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.162.128", + "prefixLen":25, + "network":"193.165.162.128\/25", + "version":43840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.163.0", + "prefixLen":25, + "network":"193.165.163.0\/25", + "version":43839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.163.128", + "prefixLen":25, + "network":"193.165.163.128\/25", + "version":43838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.176.0", + "prefixLen":25, + "network":"193.165.176.0\/25", + "version":43837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.176.128", + "prefixLen":25, + "network":"193.165.176.128\/25", + "version":43836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.177.0", + "prefixLen":25, + "network":"193.165.177.0\/25", + "version":43835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.177.128", + "prefixLen":25, + "network":"193.165.177.128\/25", + "version":43834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.178.0", + "prefixLen":25, + "network":"193.165.178.0\/25", + "version":43833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.178.128", + "prefixLen":25, + "network":"193.165.178.128\/25", + "version":43832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.179.0", + "prefixLen":25, + "network":"193.165.179.0\/25", + "version":43831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.179.128", + "prefixLen":25, + "network":"193.165.179.128\/25", + "version":43830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.192.0", + "prefixLen":25, + "network":"193.165.192.0\/25", + "version":43829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.192.128", + "prefixLen":25, + "network":"193.165.192.128\/25", + "version":43828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.193.0", + "prefixLen":25, + "network":"193.165.193.0\/25", + "version":43827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.193.128", + "prefixLen":25, + "network":"193.165.193.128\/25", + "version":43826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.194.0", + "prefixLen":25, + "network":"193.165.194.0\/25", + "version":43825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.194.128", + "prefixLen":25, + "network":"193.165.194.128\/25", + "version":43824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.195.0", + "prefixLen":25, + "network":"193.165.195.0\/25", + "version":43823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.195.128", + "prefixLen":25, + "network":"193.165.195.128\/25", + "version":43822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.208.0", + "prefixLen":25, + "network":"193.165.208.0\/25", + "version":43821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.208.128", + "prefixLen":25, + "network":"193.165.208.128\/25", + "version":43820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.209.0", + "prefixLen":25, + "network":"193.165.209.0\/25", + "version":43819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.209.128", + "prefixLen":25, + "network":"193.165.209.128\/25", + "version":43818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.210.0", + "prefixLen":25, + "network":"193.165.210.0\/25", + "version":43817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.210.128", + "prefixLen":25, + "network":"193.165.210.128\/25", + "version":43816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.211.0", + "prefixLen":25, + "network":"193.165.211.0\/25", + "version":43815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.211.128", + "prefixLen":25, + "network":"193.165.211.128\/25", + "version":43814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.224.0", + "prefixLen":25, + "network":"193.165.224.0\/25", + "version":43813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.224.128", + "prefixLen":25, + "network":"193.165.224.128\/25", + "version":43812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.225.0", + "prefixLen":25, + "network":"193.165.225.0\/25", + "version":43811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.225.128", + "prefixLen":25, + "network":"193.165.225.128\/25", + "version":43810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.226.0", + "prefixLen":25, + "network":"193.165.226.0\/25", + "version":43809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.226.128", + "prefixLen":25, + "network":"193.165.226.128\/25", + "version":43808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.227.0", + "prefixLen":25, + "network":"193.165.227.0\/25", + "version":43807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.227.128", + "prefixLen":25, + "network":"193.165.227.128\/25", + "version":43806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.240.0", + "prefixLen":25, + "network":"193.165.240.0\/25", + "version":43805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.240.128", + "prefixLen":25, + "network":"193.165.240.128\/25", + "version":43804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.241.0", + "prefixLen":25, + "network":"193.165.241.0\/25", + "version":43803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.241.128", + "prefixLen":25, + "network":"193.165.241.128\/25", + "version":43802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.242.0", + "prefixLen":25, + "network":"193.165.242.0\/25", + "version":43801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.242.128", + "prefixLen":25, + "network":"193.165.242.128\/25", + "version":43800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.243.0", + "prefixLen":25, + "network":"193.165.243.0\/25", + "version":43799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.165.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.165.243.128", + "prefixLen":25, + "network":"193.165.243.128\/25", + "version":43798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64853 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.0.0", + "prefixLen":25, + "network":"193.166.0.0\/25", + "version":43925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.0.128", + "prefixLen":25, + "network":"193.166.0.128\/25", + "version":44052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.1.0", + "prefixLen":25, + "network":"193.166.1.0\/25", + "version":44051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.1.128", + "prefixLen":25, + "network":"193.166.1.128\/25", + "version":44050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.2.0", + "prefixLen":25, + "network":"193.166.2.0\/25", + "version":44049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.2.128", + "prefixLen":25, + "network":"193.166.2.128\/25", + "version":44048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.3.0", + "prefixLen":25, + "network":"193.166.3.0\/25", + "version":44047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.3.128", + "prefixLen":25, + "network":"193.166.3.128\/25", + "version":44046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.16.0", + "prefixLen":25, + "network":"193.166.16.0\/25", + "version":44045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.16.128", + "prefixLen":25, + "network":"193.166.16.128\/25", + "version":44044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.17.0", + "prefixLen":25, + "network":"193.166.17.0\/25", + "version":44043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.17.128", + "prefixLen":25, + "network":"193.166.17.128\/25", + "version":44042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.18.0", + "prefixLen":25, + "network":"193.166.18.0\/25", + "version":44041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.18.128", + "prefixLen":25, + "network":"193.166.18.128\/25", + "version":44040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.19.0", + "prefixLen":25, + "network":"193.166.19.0\/25", + "version":44039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.19.128", + "prefixLen":25, + "network":"193.166.19.128\/25", + "version":44038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.32.0", + "prefixLen":25, + "network":"193.166.32.0\/25", + "version":44037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.32.128", + "prefixLen":25, + "network":"193.166.32.128\/25", + "version":44036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.33.0", + "prefixLen":25, + "network":"193.166.33.0\/25", + "version":44035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.33.128", + "prefixLen":25, + "network":"193.166.33.128\/25", + "version":44034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.34.0", + "prefixLen":25, + "network":"193.166.34.0\/25", + "version":44033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.34.128", + "prefixLen":25, + "network":"193.166.34.128\/25", + "version":44032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.35.0", + "prefixLen":25, + "network":"193.166.35.0\/25", + "version":44031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.35.128", + "prefixLen":25, + "network":"193.166.35.128\/25", + "version":44030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.48.0", + "prefixLen":25, + "network":"193.166.48.0\/25", + "version":44029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.48.128", + "prefixLen":25, + "network":"193.166.48.128\/25", + "version":44028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.49.0", + "prefixLen":25, + "network":"193.166.49.0\/25", + "version":44027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.49.128", + "prefixLen":25, + "network":"193.166.49.128\/25", + "version":44026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.50.0", + "prefixLen":25, + "network":"193.166.50.0\/25", + "version":44025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.50.128", + "prefixLen":25, + "network":"193.166.50.128\/25", + "version":44024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.51.0", + "prefixLen":25, + "network":"193.166.51.0\/25", + "version":44023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.51.128", + "prefixLen":25, + "network":"193.166.51.128\/25", + "version":44022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.64.0", + "prefixLen":25, + "network":"193.166.64.0\/25", + "version":44021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.64.128", + "prefixLen":25, + "network":"193.166.64.128\/25", + "version":44020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.65.0", + "prefixLen":25, + "network":"193.166.65.0\/25", + "version":44019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.65.128", + "prefixLen":25, + "network":"193.166.65.128\/25", + "version":44018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.66.0", + "prefixLen":25, + "network":"193.166.66.0\/25", + "version":44017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.66.128", + "prefixLen":25, + "network":"193.166.66.128\/25", + "version":44016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.67.0", + "prefixLen":25, + "network":"193.166.67.0\/25", + "version":44015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.67.128", + "prefixLen":25, + "network":"193.166.67.128\/25", + "version":44014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.80.0", + "prefixLen":25, + "network":"193.166.80.0\/25", + "version":44013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.80.128", + "prefixLen":25, + "network":"193.166.80.128\/25", + "version":44012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.81.0", + "prefixLen":25, + "network":"193.166.81.0\/25", + "version":44011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.81.128", + "prefixLen":25, + "network":"193.166.81.128\/25", + "version":44010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.82.0", + "prefixLen":25, + "network":"193.166.82.0\/25", + "version":44009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.82.128", + "prefixLen":25, + "network":"193.166.82.128\/25", + "version":44008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.83.0", + "prefixLen":25, + "network":"193.166.83.0\/25", + "version":44007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.83.128", + "prefixLen":25, + "network":"193.166.83.128\/25", + "version":44006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.96.0", + "prefixLen":25, + "network":"193.166.96.0\/25", + "version":44005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.96.128", + "prefixLen":25, + "network":"193.166.96.128\/25", + "version":44004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.97.0", + "prefixLen":25, + "network":"193.166.97.0\/25", + "version":44003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.97.128", + "prefixLen":25, + "network":"193.166.97.128\/25", + "version":44002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.98.0", + "prefixLen":25, + "network":"193.166.98.0\/25", + "version":44001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.98.128", + "prefixLen":25, + "network":"193.166.98.128\/25", + "version":44000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.99.0", + "prefixLen":25, + "network":"193.166.99.0\/25", + "version":43999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.99.128", + "prefixLen":25, + "network":"193.166.99.128\/25", + "version":43998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.112.0", + "prefixLen":25, + "network":"193.166.112.0\/25", + "version":43997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.112.128", + "prefixLen":25, + "network":"193.166.112.128\/25", + "version":43996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.113.0", + "prefixLen":25, + "network":"193.166.113.0\/25", + "version":43995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.113.128", + "prefixLen":25, + "network":"193.166.113.128\/25", + "version":43994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.114.0", + "prefixLen":25, + "network":"193.166.114.0\/25", + "version":43993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.114.128", + "prefixLen":25, + "network":"193.166.114.128\/25", + "version":43992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.115.0", + "prefixLen":25, + "network":"193.166.115.0\/25", + "version":43991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.115.128", + "prefixLen":25, + "network":"193.166.115.128\/25", + "version":43990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.128.0", + "prefixLen":25, + "network":"193.166.128.0\/25", + "version":43989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.128.128", + "prefixLen":25, + "network":"193.166.128.128\/25", + "version":43988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.129.0", + "prefixLen":25, + "network":"193.166.129.0\/25", + "version":43987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.129.128", + "prefixLen":25, + "network":"193.166.129.128\/25", + "version":43986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.130.0", + "prefixLen":25, + "network":"193.166.130.0\/25", + "version":43985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.130.128", + "prefixLen":25, + "network":"193.166.130.128\/25", + "version":43984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.131.0", + "prefixLen":25, + "network":"193.166.131.0\/25", + "version":43983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.131.128", + "prefixLen":25, + "network":"193.166.131.128\/25", + "version":43982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.144.0", + "prefixLen":25, + "network":"193.166.144.0\/25", + "version":43981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.144.128", + "prefixLen":25, + "network":"193.166.144.128\/25", + "version":43980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.145.0", + "prefixLen":25, + "network":"193.166.145.0\/25", + "version":43979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.145.128", + "prefixLen":25, + "network":"193.166.145.128\/25", + "version":43978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.146.0", + "prefixLen":25, + "network":"193.166.146.0\/25", + "version":43977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.146.128", + "prefixLen":25, + "network":"193.166.146.128\/25", + "version":43976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.147.0", + "prefixLen":25, + "network":"193.166.147.0\/25", + "version":43975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.147.128", + "prefixLen":25, + "network":"193.166.147.128\/25", + "version":43974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.160.0", + "prefixLen":25, + "network":"193.166.160.0\/25", + "version":43973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.160.128", + "prefixLen":25, + "network":"193.166.160.128\/25", + "version":43972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.161.0", + "prefixLen":25, + "network":"193.166.161.0\/25", + "version":43971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.161.128", + "prefixLen":25, + "network":"193.166.161.128\/25", + "version":43970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.162.0", + "prefixLen":25, + "network":"193.166.162.0\/25", + "version":43969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.162.128", + "prefixLen":25, + "network":"193.166.162.128\/25", + "version":43968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.163.0", + "prefixLen":25, + "network":"193.166.163.0\/25", + "version":43967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.163.128", + "prefixLen":25, + "network":"193.166.163.128\/25", + "version":43966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.176.0", + "prefixLen":25, + "network":"193.166.176.0\/25", + "version":43965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.176.128", + "prefixLen":25, + "network":"193.166.176.128\/25", + "version":43964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.177.0", + "prefixLen":25, + "network":"193.166.177.0\/25", + "version":43963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.177.128", + "prefixLen":25, + "network":"193.166.177.128\/25", + "version":43962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.178.0", + "prefixLen":25, + "network":"193.166.178.0\/25", + "version":43961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.178.128", + "prefixLen":25, + "network":"193.166.178.128\/25", + "version":43960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.179.0", + "prefixLen":25, + "network":"193.166.179.0\/25", + "version":43959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.179.128", + "prefixLen":25, + "network":"193.166.179.128\/25", + "version":43958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.192.0", + "prefixLen":25, + "network":"193.166.192.0\/25", + "version":43957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.192.128", + "prefixLen":25, + "network":"193.166.192.128\/25", + "version":43956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.193.0", + "prefixLen":25, + "network":"193.166.193.0\/25", + "version":43955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.193.128", + "prefixLen":25, + "network":"193.166.193.128\/25", + "version":43954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.194.0", + "prefixLen":25, + "network":"193.166.194.0\/25", + "version":43953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.194.128", + "prefixLen":25, + "network":"193.166.194.128\/25", + "version":43952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.195.0", + "prefixLen":25, + "network":"193.166.195.0\/25", + "version":43951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.195.128", + "prefixLen":25, + "network":"193.166.195.128\/25", + "version":43950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.208.0", + "prefixLen":25, + "network":"193.166.208.0\/25", + "version":43949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.208.128", + "prefixLen":25, + "network":"193.166.208.128\/25", + "version":43948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.209.0", + "prefixLen":25, + "network":"193.166.209.0\/25", + "version":43947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.209.128", + "prefixLen":25, + "network":"193.166.209.128\/25", + "version":43946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.210.0", + "prefixLen":25, + "network":"193.166.210.0\/25", + "version":43945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.210.128", + "prefixLen":25, + "network":"193.166.210.128\/25", + "version":43944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.211.0", + "prefixLen":25, + "network":"193.166.211.0\/25", + "version":43943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.211.128", + "prefixLen":25, + "network":"193.166.211.128\/25", + "version":43942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.224.0", + "prefixLen":25, + "network":"193.166.224.0\/25", + "version":43941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.224.128", + "prefixLen":25, + "network":"193.166.224.128\/25", + "version":43940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.225.0", + "prefixLen":25, + "network":"193.166.225.0\/25", + "version":43939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.225.128", + "prefixLen":25, + "network":"193.166.225.128\/25", + "version":43938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.226.0", + "prefixLen":25, + "network":"193.166.226.0\/25", + "version":43937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.226.128", + "prefixLen":25, + "network":"193.166.226.128\/25", + "version":43936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.227.0", + "prefixLen":25, + "network":"193.166.227.0\/25", + "version":43935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.227.128", + "prefixLen":25, + "network":"193.166.227.128\/25", + "version":43934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.240.0", + "prefixLen":25, + "network":"193.166.240.0\/25", + "version":43933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.240.128", + "prefixLen":25, + "network":"193.166.240.128\/25", + "version":43932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.241.0", + "prefixLen":25, + "network":"193.166.241.0\/25", + "version":43931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.241.128", + "prefixLen":25, + "network":"193.166.241.128\/25", + "version":43930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.242.0", + "prefixLen":25, + "network":"193.166.242.0\/25", + "version":43929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.242.128", + "prefixLen":25, + "network":"193.166.242.128\/25", + "version":43928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.243.0", + "prefixLen":25, + "network":"193.166.243.0\/25", + "version":43927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.166.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.166.243.128", + "prefixLen":25, + "network":"193.166.243.128\/25", + "version":43926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64854 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.0.0", + "prefixLen":25, + "network":"193.167.0.0\/25", + "version":44053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.0.128", + "prefixLen":25, + "network":"193.167.0.128\/25", + "version":44180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.1.0", + "prefixLen":25, + "network":"193.167.1.0\/25", + "version":44179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.1.128", + "prefixLen":25, + "network":"193.167.1.128\/25", + "version":44178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.2.0", + "prefixLen":25, + "network":"193.167.2.0\/25", + "version":44177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.2.128", + "prefixLen":25, + "network":"193.167.2.128\/25", + "version":44176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.3.0", + "prefixLen":25, + "network":"193.167.3.0\/25", + "version":44175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.3.128", + "prefixLen":25, + "network":"193.167.3.128\/25", + "version":44174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.16.0", + "prefixLen":25, + "network":"193.167.16.0\/25", + "version":44173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.16.128", + "prefixLen":25, + "network":"193.167.16.128\/25", + "version":44172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.17.0", + "prefixLen":25, + "network":"193.167.17.0\/25", + "version":44171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.17.128", + "prefixLen":25, + "network":"193.167.17.128\/25", + "version":44170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.18.0", + "prefixLen":25, + "network":"193.167.18.0\/25", + "version":44169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.18.128", + "prefixLen":25, + "network":"193.167.18.128\/25", + "version":44168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.19.0", + "prefixLen":25, + "network":"193.167.19.0\/25", + "version":44167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.19.128", + "prefixLen":25, + "network":"193.167.19.128\/25", + "version":44166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.32.0", + "prefixLen":25, + "network":"193.167.32.0\/25", + "version":44165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.32.128", + "prefixLen":25, + "network":"193.167.32.128\/25", + "version":44164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.33.0", + "prefixLen":25, + "network":"193.167.33.0\/25", + "version":44163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.33.128", + "prefixLen":25, + "network":"193.167.33.128\/25", + "version":44162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.34.0", + "prefixLen":25, + "network":"193.167.34.0\/25", + "version":44161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.34.128", + "prefixLen":25, + "network":"193.167.34.128\/25", + "version":44160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.35.0", + "prefixLen":25, + "network":"193.167.35.0\/25", + "version":44159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.35.128", + "prefixLen":25, + "network":"193.167.35.128\/25", + "version":44158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.48.0", + "prefixLen":25, + "network":"193.167.48.0\/25", + "version":44157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.48.128", + "prefixLen":25, + "network":"193.167.48.128\/25", + "version":44156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.49.0", + "prefixLen":25, + "network":"193.167.49.0\/25", + "version":44155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.49.128", + "prefixLen":25, + "network":"193.167.49.128\/25", + "version":44154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.50.0", + "prefixLen":25, + "network":"193.167.50.0\/25", + "version":44153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.50.128", + "prefixLen":25, + "network":"193.167.50.128\/25", + "version":44152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.51.0", + "prefixLen":25, + "network":"193.167.51.0\/25", + "version":44151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.51.128", + "prefixLen":25, + "network":"193.167.51.128\/25", + "version":44150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.64.0", + "prefixLen":25, + "network":"193.167.64.0\/25", + "version":44149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.64.128", + "prefixLen":25, + "network":"193.167.64.128\/25", + "version":44148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.65.0", + "prefixLen":25, + "network":"193.167.65.0\/25", + "version":44147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.65.128", + "prefixLen":25, + "network":"193.167.65.128\/25", + "version":44146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.66.0", + "prefixLen":25, + "network":"193.167.66.0\/25", + "version":44145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.66.128", + "prefixLen":25, + "network":"193.167.66.128\/25", + "version":44144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.67.0", + "prefixLen":25, + "network":"193.167.67.0\/25", + "version":44143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.67.128", + "prefixLen":25, + "network":"193.167.67.128\/25", + "version":44142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.80.0", + "prefixLen":25, + "network":"193.167.80.0\/25", + "version":44141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.80.128", + "prefixLen":25, + "network":"193.167.80.128\/25", + "version":44140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.81.0", + "prefixLen":25, + "network":"193.167.81.0\/25", + "version":44139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.81.128", + "prefixLen":25, + "network":"193.167.81.128\/25", + "version":44138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.82.0", + "prefixLen":25, + "network":"193.167.82.0\/25", + "version":44137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.82.128", + "prefixLen":25, + "network":"193.167.82.128\/25", + "version":44136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.83.0", + "prefixLen":25, + "network":"193.167.83.0\/25", + "version":44135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.83.128", + "prefixLen":25, + "network":"193.167.83.128\/25", + "version":44134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.96.0", + "prefixLen":25, + "network":"193.167.96.0\/25", + "version":44133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.96.128", + "prefixLen":25, + "network":"193.167.96.128\/25", + "version":44132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.97.0", + "prefixLen":25, + "network":"193.167.97.0\/25", + "version":44131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.97.128", + "prefixLen":25, + "network":"193.167.97.128\/25", + "version":44130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.98.0", + "prefixLen":25, + "network":"193.167.98.0\/25", + "version":44129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.98.128", + "prefixLen":25, + "network":"193.167.98.128\/25", + "version":44128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.99.0", + "prefixLen":25, + "network":"193.167.99.0\/25", + "version":44127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.99.128", + "prefixLen":25, + "network":"193.167.99.128\/25", + "version":44126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.112.0", + "prefixLen":25, + "network":"193.167.112.0\/25", + "version":44125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.112.128", + "prefixLen":25, + "network":"193.167.112.128\/25", + "version":44124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.113.0", + "prefixLen":25, + "network":"193.167.113.0\/25", + "version":44123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.113.128", + "prefixLen":25, + "network":"193.167.113.128\/25", + "version":44122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.114.0", + "prefixLen":25, + "network":"193.167.114.0\/25", + "version":44121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.114.128", + "prefixLen":25, + "network":"193.167.114.128\/25", + "version":44120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.115.0", + "prefixLen":25, + "network":"193.167.115.0\/25", + "version":44119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.115.128", + "prefixLen":25, + "network":"193.167.115.128\/25", + "version":44118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.128.0", + "prefixLen":25, + "network":"193.167.128.0\/25", + "version":44117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.128.128", + "prefixLen":25, + "network":"193.167.128.128\/25", + "version":44116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.129.0", + "prefixLen":25, + "network":"193.167.129.0\/25", + "version":44115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.129.128", + "prefixLen":25, + "network":"193.167.129.128\/25", + "version":44114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.130.0", + "prefixLen":25, + "network":"193.167.130.0\/25", + "version":44113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.130.128", + "prefixLen":25, + "network":"193.167.130.128\/25", + "version":44112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.131.0", + "prefixLen":25, + "network":"193.167.131.0\/25", + "version":44111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.131.128", + "prefixLen":25, + "network":"193.167.131.128\/25", + "version":44110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.144.0", + "prefixLen":25, + "network":"193.167.144.0\/25", + "version":44109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.144.128", + "prefixLen":25, + "network":"193.167.144.128\/25", + "version":44108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.145.0", + "prefixLen":25, + "network":"193.167.145.0\/25", + "version":44107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.145.128", + "prefixLen":25, + "network":"193.167.145.128\/25", + "version":44106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.146.0", + "prefixLen":25, + "network":"193.167.146.0\/25", + "version":44105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.146.128", + "prefixLen":25, + "network":"193.167.146.128\/25", + "version":44104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.147.0", + "prefixLen":25, + "network":"193.167.147.0\/25", + "version":44103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.147.128", + "prefixLen":25, + "network":"193.167.147.128\/25", + "version":44102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.160.0", + "prefixLen":25, + "network":"193.167.160.0\/25", + "version":44101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.160.128", + "prefixLen":25, + "network":"193.167.160.128\/25", + "version":44100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.161.0", + "prefixLen":25, + "network":"193.167.161.0\/25", + "version":44099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.161.128", + "prefixLen":25, + "network":"193.167.161.128\/25", + "version":44098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.162.0", + "prefixLen":25, + "network":"193.167.162.0\/25", + "version":44097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.162.128", + "prefixLen":25, + "network":"193.167.162.128\/25", + "version":44096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.163.0", + "prefixLen":25, + "network":"193.167.163.0\/25", + "version":44095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.163.128", + "prefixLen":25, + "network":"193.167.163.128\/25", + "version":44094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.176.0", + "prefixLen":25, + "network":"193.167.176.0\/25", + "version":44093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.176.128", + "prefixLen":25, + "network":"193.167.176.128\/25", + "version":44092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.177.0", + "prefixLen":25, + "network":"193.167.177.0\/25", + "version":44091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.177.128", + "prefixLen":25, + "network":"193.167.177.128\/25", + "version":44090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.178.0", + "prefixLen":25, + "network":"193.167.178.0\/25", + "version":44089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.178.128", + "prefixLen":25, + "network":"193.167.178.128\/25", + "version":44088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.179.0", + "prefixLen":25, + "network":"193.167.179.0\/25", + "version":44087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.179.128", + "prefixLen":25, + "network":"193.167.179.128\/25", + "version":44086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.192.0", + "prefixLen":25, + "network":"193.167.192.0\/25", + "version":44085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.192.128", + "prefixLen":25, + "network":"193.167.192.128\/25", + "version":44084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.193.0", + "prefixLen":25, + "network":"193.167.193.0\/25", + "version":44083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.193.128", + "prefixLen":25, + "network":"193.167.193.128\/25", + "version":44082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.194.0", + "prefixLen":25, + "network":"193.167.194.0\/25", + "version":44081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.194.128", + "prefixLen":25, + "network":"193.167.194.128\/25", + "version":44080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.195.0", + "prefixLen":25, + "network":"193.167.195.0\/25", + "version":44079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.195.128", + "prefixLen":25, + "network":"193.167.195.128\/25", + "version":44078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.208.0", + "prefixLen":25, + "network":"193.167.208.0\/25", + "version":44077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.208.128", + "prefixLen":25, + "network":"193.167.208.128\/25", + "version":44076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.209.0", + "prefixLen":25, + "network":"193.167.209.0\/25", + "version":44075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.209.128", + "prefixLen":25, + "network":"193.167.209.128\/25", + "version":44074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.210.0", + "prefixLen":25, + "network":"193.167.210.0\/25", + "version":44073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.210.128", + "prefixLen":25, + "network":"193.167.210.128\/25", + "version":44072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.211.0", + "prefixLen":25, + "network":"193.167.211.0\/25", + "version":44071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.211.128", + "prefixLen":25, + "network":"193.167.211.128\/25", + "version":44070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.224.0", + "prefixLen":25, + "network":"193.167.224.0\/25", + "version":44069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.224.128", + "prefixLen":25, + "network":"193.167.224.128\/25", + "version":44068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.225.0", + "prefixLen":25, + "network":"193.167.225.0\/25", + "version":44067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.225.128", + "prefixLen":25, + "network":"193.167.225.128\/25", + "version":44066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.226.0", + "prefixLen":25, + "network":"193.167.226.0\/25", + "version":44065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.226.128", + "prefixLen":25, + "network":"193.167.226.128\/25", + "version":44064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.227.0", + "prefixLen":25, + "network":"193.167.227.0\/25", + "version":44063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.227.128", + "prefixLen":25, + "network":"193.167.227.128\/25", + "version":44062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.240.0", + "prefixLen":25, + "network":"193.167.240.0\/25", + "version":44061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.240.128", + "prefixLen":25, + "network":"193.167.240.128\/25", + "version":44060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.241.0", + "prefixLen":25, + "network":"193.167.241.0\/25", + "version":44059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.241.128", + "prefixLen":25, + "network":"193.167.241.128\/25", + "version":44058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.242.0", + "prefixLen":25, + "network":"193.167.242.0\/25", + "version":44057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.242.128", + "prefixLen":25, + "network":"193.167.242.128\/25", + "version":44056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.243.0", + "prefixLen":25, + "network":"193.167.243.0\/25", + "version":44055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.167.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.167.243.128", + "prefixLen":25, + "network":"193.167.243.128\/25", + "version":44054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64855 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.0.0", + "prefixLen":25, + "network":"193.168.0.0\/25", + "version":44181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.0.128", + "prefixLen":25, + "network":"193.168.0.128\/25", + "version":44308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.1.0", + "prefixLen":25, + "network":"193.168.1.0\/25", + "version":44307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.1.128", + "prefixLen":25, + "network":"193.168.1.128\/25", + "version":44306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.2.0", + "prefixLen":25, + "network":"193.168.2.0\/25", + "version":44305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.2.128", + "prefixLen":25, + "network":"193.168.2.128\/25", + "version":44304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.3.0", + "prefixLen":25, + "network":"193.168.3.0\/25", + "version":44303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.3.128", + "prefixLen":25, + "network":"193.168.3.128\/25", + "version":44302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.16.0", + "prefixLen":25, + "network":"193.168.16.0\/25", + "version":44301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.16.128", + "prefixLen":25, + "network":"193.168.16.128\/25", + "version":44300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.17.0", + "prefixLen":25, + "network":"193.168.17.0\/25", + "version":44299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.17.128", + "prefixLen":25, + "network":"193.168.17.128\/25", + "version":44298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.18.0", + "prefixLen":25, + "network":"193.168.18.0\/25", + "version":44297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.18.128", + "prefixLen":25, + "network":"193.168.18.128\/25", + "version":44296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.19.0", + "prefixLen":25, + "network":"193.168.19.0\/25", + "version":44295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.19.128", + "prefixLen":25, + "network":"193.168.19.128\/25", + "version":44294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.32.0", + "prefixLen":25, + "network":"193.168.32.0\/25", + "version":44293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.32.128", + "prefixLen":25, + "network":"193.168.32.128\/25", + "version":44292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.33.0", + "prefixLen":25, + "network":"193.168.33.0\/25", + "version":44291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.33.128", + "prefixLen":25, + "network":"193.168.33.128\/25", + "version":44290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.34.0", + "prefixLen":25, + "network":"193.168.34.0\/25", + "version":44289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.34.128", + "prefixLen":25, + "network":"193.168.34.128\/25", + "version":44288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.35.0", + "prefixLen":25, + "network":"193.168.35.0\/25", + "version":44287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.35.128", + "prefixLen":25, + "network":"193.168.35.128\/25", + "version":44286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.48.0", + "prefixLen":25, + "network":"193.168.48.0\/25", + "version":44285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.48.128", + "prefixLen":25, + "network":"193.168.48.128\/25", + "version":44284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.49.0", + "prefixLen":25, + "network":"193.168.49.0\/25", + "version":44283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.49.128", + "prefixLen":25, + "network":"193.168.49.128\/25", + "version":44282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.50.0", + "prefixLen":25, + "network":"193.168.50.0\/25", + "version":44281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.50.128", + "prefixLen":25, + "network":"193.168.50.128\/25", + "version":44280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.51.0", + "prefixLen":25, + "network":"193.168.51.0\/25", + "version":44279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.51.128", + "prefixLen":25, + "network":"193.168.51.128\/25", + "version":44278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.64.0", + "prefixLen":25, + "network":"193.168.64.0\/25", + "version":44277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.64.128", + "prefixLen":25, + "network":"193.168.64.128\/25", + "version":44276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.65.0", + "prefixLen":25, + "network":"193.168.65.0\/25", + "version":44275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.65.128", + "prefixLen":25, + "network":"193.168.65.128\/25", + "version":44274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.66.0", + "prefixLen":25, + "network":"193.168.66.0\/25", + "version":44273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.66.128", + "prefixLen":25, + "network":"193.168.66.128\/25", + "version":44272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.67.0", + "prefixLen":25, + "network":"193.168.67.0\/25", + "version":44271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.67.128", + "prefixLen":25, + "network":"193.168.67.128\/25", + "version":44270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.80.0", + "prefixLen":25, + "network":"193.168.80.0\/25", + "version":44269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.80.128", + "prefixLen":25, + "network":"193.168.80.128\/25", + "version":44268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.81.0", + "prefixLen":25, + "network":"193.168.81.0\/25", + "version":44267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.81.128", + "prefixLen":25, + "network":"193.168.81.128\/25", + "version":44266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.82.0", + "prefixLen":25, + "network":"193.168.82.0\/25", + "version":44265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.82.128", + "prefixLen":25, + "network":"193.168.82.128\/25", + "version":44264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.83.0", + "prefixLen":25, + "network":"193.168.83.0\/25", + "version":44263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.83.128", + "prefixLen":25, + "network":"193.168.83.128\/25", + "version":44262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.96.0", + "prefixLen":25, + "network":"193.168.96.0\/25", + "version":44261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.96.128", + "prefixLen":25, + "network":"193.168.96.128\/25", + "version":44260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.97.0", + "prefixLen":25, + "network":"193.168.97.0\/25", + "version":44259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.97.128", + "prefixLen":25, + "network":"193.168.97.128\/25", + "version":44258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.98.0", + "prefixLen":25, + "network":"193.168.98.0\/25", + "version":44257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.98.128", + "prefixLen":25, + "network":"193.168.98.128\/25", + "version":44256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.99.0", + "prefixLen":25, + "network":"193.168.99.0\/25", + "version":44255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.99.128", + "prefixLen":25, + "network":"193.168.99.128\/25", + "version":44254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.112.0", + "prefixLen":25, + "network":"193.168.112.0\/25", + "version":44253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.112.128", + "prefixLen":25, + "network":"193.168.112.128\/25", + "version":44252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.113.0", + "prefixLen":25, + "network":"193.168.113.0\/25", + "version":44251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.113.128", + "prefixLen":25, + "network":"193.168.113.128\/25", + "version":44250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.114.0", + "prefixLen":25, + "network":"193.168.114.0\/25", + "version":44249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.114.128", + "prefixLen":25, + "network":"193.168.114.128\/25", + "version":44248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.115.0", + "prefixLen":25, + "network":"193.168.115.0\/25", + "version":44247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.115.128", + "prefixLen":25, + "network":"193.168.115.128\/25", + "version":44246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.128.0", + "prefixLen":25, + "network":"193.168.128.0\/25", + "version":44245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.128.128", + "prefixLen":25, + "network":"193.168.128.128\/25", + "version":44244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.129.0", + "prefixLen":25, + "network":"193.168.129.0\/25", + "version":44243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.129.128", + "prefixLen":25, + "network":"193.168.129.128\/25", + "version":44242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.130.0", + "prefixLen":25, + "network":"193.168.130.0\/25", + "version":44241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.130.128", + "prefixLen":25, + "network":"193.168.130.128\/25", + "version":44240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.131.0", + "prefixLen":25, + "network":"193.168.131.0\/25", + "version":44239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.131.128", + "prefixLen":25, + "network":"193.168.131.128\/25", + "version":44238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.144.0", + "prefixLen":25, + "network":"193.168.144.0\/25", + "version":44237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.144.128", + "prefixLen":25, + "network":"193.168.144.128\/25", + "version":44236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.145.0", + "prefixLen":25, + "network":"193.168.145.0\/25", + "version":44235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.145.128", + "prefixLen":25, + "network":"193.168.145.128\/25", + "version":44234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.146.0", + "prefixLen":25, + "network":"193.168.146.0\/25", + "version":44233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.146.128", + "prefixLen":25, + "network":"193.168.146.128\/25", + "version":44232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.147.0", + "prefixLen":25, + "network":"193.168.147.0\/25", + "version":44231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.147.128", + "prefixLen":25, + "network":"193.168.147.128\/25", + "version":44230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.160.0", + "prefixLen":25, + "network":"193.168.160.0\/25", + "version":44229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.160.128", + "prefixLen":25, + "network":"193.168.160.128\/25", + "version":44228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.161.0", + "prefixLen":25, + "network":"193.168.161.0\/25", + "version":44227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.161.128", + "prefixLen":25, + "network":"193.168.161.128\/25", + "version":44226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.162.0", + "prefixLen":25, + "network":"193.168.162.0\/25", + "version":44225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.162.128", + "prefixLen":25, + "network":"193.168.162.128\/25", + "version":44224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.163.0", + "prefixLen":25, + "network":"193.168.163.0\/25", + "version":44223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.163.128", + "prefixLen":25, + "network":"193.168.163.128\/25", + "version":44222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.176.0", + "prefixLen":25, + "network":"193.168.176.0\/25", + "version":44221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.176.128", + "prefixLen":25, + "network":"193.168.176.128\/25", + "version":44220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.177.0", + "prefixLen":25, + "network":"193.168.177.0\/25", + "version":44219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.177.128", + "prefixLen":25, + "network":"193.168.177.128\/25", + "version":44218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.178.0", + "prefixLen":25, + "network":"193.168.178.0\/25", + "version":44217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.178.128", + "prefixLen":25, + "network":"193.168.178.128\/25", + "version":44216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.179.0", + "prefixLen":25, + "network":"193.168.179.0\/25", + "version":44215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.179.128", + "prefixLen":25, + "network":"193.168.179.128\/25", + "version":44214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.192.0", + "prefixLen":25, + "network":"193.168.192.0\/25", + "version":44213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.192.128", + "prefixLen":25, + "network":"193.168.192.128\/25", + "version":44212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.193.0", + "prefixLen":25, + "network":"193.168.193.0\/25", + "version":44211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.193.128", + "prefixLen":25, + "network":"193.168.193.128\/25", + "version":44210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.194.0", + "prefixLen":25, + "network":"193.168.194.0\/25", + "version":44209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.194.128", + "prefixLen":25, + "network":"193.168.194.128\/25", + "version":44208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.195.0", + "prefixLen":25, + "network":"193.168.195.0\/25", + "version":44207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.195.128", + "prefixLen":25, + "network":"193.168.195.128\/25", + "version":44206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.208.0", + "prefixLen":25, + "network":"193.168.208.0\/25", + "version":44205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.208.128", + "prefixLen":25, + "network":"193.168.208.128\/25", + "version":44204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.209.0", + "prefixLen":25, + "network":"193.168.209.0\/25", + "version":44203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.209.128", + "prefixLen":25, + "network":"193.168.209.128\/25", + "version":44202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.210.0", + "prefixLen":25, + "network":"193.168.210.0\/25", + "version":44201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.210.128", + "prefixLen":25, + "network":"193.168.210.128\/25", + "version":44200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.211.0", + "prefixLen":25, + "network":"193.168.211.0\/25", + "version":44199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.211.128", + "prefixLen":25, + "network":"193.168.211.128\/25", + "version":44198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.224.0", + "prefixLen":25, + "network":"193.168.224.0\/25", + "version":44197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.224.128", + "prefixLen":25, + "network":"193.168.224.128\/25", + "version":44196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.225.0", + "prefixLen":25, + "network":"193.168.225.0\/25", + "version":44195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.225.128", + "prefixLen":25, + "network":"193.168.225.128\/25", + "version":44194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.226.0", + "prefixLen":25, + "network":"193.168.226.0\/25", + "version":44193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.226.128", + "prefixLen":25, + "network":"193.168.226.128\/25", + "version":44192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.227.0", + "prefixLen":25, + "network":"193.168.227.0\/25", + "version":44191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.227.128", + "prefixLen":25, + "network":"193.168.227.128\/25", + "version":44190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.240.0", + "prefixLen":25, + "network":"193.168.240.0\/25", + "version":44189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.240.128", + "prefixLen":25, + "network":"193.168.240.128\/25", + "version":44188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.241.0", + "prefixLen":25, + "network":"193.168.241.0\/25", + "version":44187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.241.128", + "prefixLen":25, + "network":"193.168.241.128\/25", + "version":44186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.242.0", + "prefixLen":25, + "network":"193.168.242.0\/25", + "version":44185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.242.128", + "prefixLen":25, + "network":"193.168.242.128\/25", + "version":44184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.243.0", + "prefixLen":25, + "network":"193.168.243.0\/25", + "version":44183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.168.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.168.243.128", + "prefixLen":25, + "network":"193.168.243.128\/25", + "version":44182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64856 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.0.0", + "prefixLen":25, + "network":"193.169.0.0\/25", + "version":45589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.0.128", + "prefixLen":25, + "network":"193.169.0.128\/25", + "version":45716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.1.0", + "prefixLen":25, + "network":"193.169.1.0\/25", + "version":45715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.1.128", + "prefixLen":25, + "network":"193.169.1.128\/25", + "version":45714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.2.0", + "prefixLen":25, + "network":"193.169.2.0\/25", + "version":45713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.2.128", + "prefixLen":25, + "network":"193.169.2.128\/25", + "version":45712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.3.0", + "prefixLen":25, + "network":"193.169.3.0\/25", + "version":45711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.3.128", + "prefixLen":25, + "network":"193.169.3.128\/25", + "version":45710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.16.0", + "prefixLen":25, + "network":"193.169.16.0\/25", + "version":45709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.16.128", + "prefixLen":25, + "network":"193.169.16.128\/25", + "version":45708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.17.0", + "prefixLen":25, + "network":"193.169.17.0\/25", + "version":45707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.17.128", + "prefixLen":25, + "network":"193.169.17.128\/25", + "version":45706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.18.0", + "prefixLen":25, + "network":"193.169.18.0\/25", + "version":45705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.18.128", + "prefixLen":25, + "network":"193.169.18.128\/25", + "version":45704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.19.0", + "prefixLen":25, + "network":"193.169.19.0\/25", + "version":45703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.19.128", + "prefixLen":25, + "network":"193.169.19.128\/25", + "version":45702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.32.0", + "prefixLen":25, + "network":"193.169.32.0\/25", + "version":45701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.32.128", + "prefixLen":25, + "network":"193.169.32.128\/25", + "version":45700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.33.0", + "prefixLen":25, + "network":"193.169.33.0\/25", + "version":45699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.33.128", + "prefixLen":25, + "network":"193.169.33.128\/25", + "version":45698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.34.0", + "prefixLen":25, + "network":"193.169.34.0\/25", + "version":45697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.34.128", + "prefixLen":25, + "network":"193.169.34.128\/25", + "version":45696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.35.0", + "prefixLen":25, + "network":"193.169.35.0\/25", + "version":45695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.35.128", + "prefixLen":25, + "network":"193.169.35.128\/25", + "version":45694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.48.0", + "prefixLen":25, + "network":"193.169.48.0\/25", + "version":45693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.48.128", + "prefixLen":25, + "network":"193.169.48.128\/25", + "version":45692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.49.0", + "prefixLen":25, + "network":"193.169.49.0\/25", + "version":45691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.49.128", + "prefixLen":25, + "network":"193.169.49.128\/25", + "version":45690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.50.0", + "prefixLen":25, + "network":"193.169.50.0\/25", + "version":45689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.50.128", + "prefixLen":25, + "network":"193.169.50.128\/25", + "version":45688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.51.0", + "prefixLen":25, + "network":"193.169.51.0\/25", + "version":45687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.51.128", + "prefixLen":25, + "network":"193.169.51.128\/25", + "version":45686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.64.0", + "prefixLen":25, + "network":"193.169.64.0\/25", + "version":45685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.64.128", + "prefixLen":25, + "network":"193.169.64.128\/25", + "version":45684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.65.0", + "prefixLen":25, + "network":"193.169.65.0\/25", + "version":45683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.65.128", + "prefixLen":25, + "network":"193.169.65.128\/25", + "version":45682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.66.0", + "prefixLen":25, + "network":"193.169.66.0\/25", + "version":45681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.66.128", + "prefixLen":25, + "network":"193.169.66.128\/25", + "version":45680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.67.0", + "prefixLen":25, + "network":"193.169.67.0\/25", + "version":45679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.67.128", + "prefixLen":25, + "network":"193.169.67.128\/25", + "version":45678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.80.0", + "prefixLen":25, + "network":"193.169.80.0\/25", + "version":45677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.80.128", + "prefixLen":25, + "network":"193.169.80.128\/25", + "version":45676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.81.0", + "prefixLen":25, + "network":"193.169.81.0\/25", + "version":45675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.81.128", + "prefixLen":25, + "network":"193.169.81.128\/25", + "version":45674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.82.0", + "prefixLen":25, + "network":"193.169.82.0\/25", + "version":45673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.82.128", + "prefixLen":25, + "network":"193.169.82.128\/25", + "version":45672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.83.0", + "prefixLen":25, + "network":"193.169.83.0\/25", + "version":45671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.83.128", + "prefixLen":25, + "network":"193.169.83.128\/25", + "version":45670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.96.0", + "prefixLen":25, + "network":"193.169.96.0\/25", + "version":45669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.96.128", + "prefixLen":25, + "network":"193.169.96.128\/25", + "version":45668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.97.0", + "prefixLen":25, + "network":"193.169.97.0\/25", + "version":45667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.97.128", + "prefixLen":25, + "network":"193.169.97.128\/25", + "version":45666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.98.0", + "prefixLen":25, + "network":"193.169.98.0\/25", + "version":45665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.98.128", + "prefixLen":25, + "network":"193.169.98.128\/25", + "version":45664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.99.0", + "prefixLen":25, + "network":"193.169.99.0\/25", + "version":45663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.99.128", + "prefixLen":25, + "network":"193.169.99.128\/25", + "version":45662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.112.0", + "prefixLen":25, + "network":"193.169.112.0\/25", + "version":45661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.112.128", + "prefixLen":25, + "network":"193.169.112.128\/25", + "version":45660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.113.0", + "prefixLen":25, + "network":"193.169.113.0\/25", + "version":45659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.113.128", + "prefixLen":25, + "network":"193.169.113.128\/25", + "version":45658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.114.0", + "prefixLen":25, + "network":"193.169.114.0\/25", + "version":45657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.114.128", + "prefixLen":25, + "network":"193.169.114.128\/25", + "version":45656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.115.0", + "prefixLen":25, + "network":"193.169.115.0\/25", + "version":45655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.115.128", + "prefixLen":25, + "network":"193.169.115.128\/25", + "version":45654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.128.0", + "prefixLen":25, + "network":"193.169.128.0\/25", + "version":45653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.128.128", + "prefixLen":25, + "network":"193.169.128.128\/25", + "version":45652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.129.0", + "prefixLen":25, + "network":"193.169.129.0\/25", + "version":45651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.129.128", + "prefixLen":25, + "network":"193.169.129.128\/25", + "version":45650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.130.0", + "prefixLen":25, + "network":"193.169.130.0\/25", + "version":45649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.130.128", + "prefixLen":25, + "network":"193.169.130.128\/25", + "version":45648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.131.0", + "prefixLen":25, + "network":"193.169.131.0\/25", + "version":45647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.131.128", + "prefixLen":25, + "network":"193.169.131.128\/25", + "version":45646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.144.0", + "prefixLen":25, + "network":"193.169.144.0\/25", + "version":45645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.144.128", + "prefixLen":25, + "network":"193.169.144.128\/25", + "version":45644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.145.0", + "prefixLen":25, + "network":"193.169.145.0\/25", + "version":45643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.145.128", + "prefixLen":25, + "network":"193.169.145.128\/25", + "version":45642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.146.0", + "prefixLen":25, + "network":"193.169.146.0\/25", + "version":45641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.146.128", + "prefixLen":25, + "network":"193.169.146.128\/25", + "version":45640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.147.0", + "prefixLen":25, + "network":"193.169.147.0\/25", + "version":45639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.147.128", + "prefixLen":25, + "network":"193.169.147.128\/25", + "version":45638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.160.0", + "prefixLen":25, + "network":"193.169.160.0\/25", + "version":45637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.160.128", + "prefixLen":25, + "network":"193.169.160.128\/25", + "version":45636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.161.0", + "prefixLen":25, + "network":"193.169.161.0\/25", + "version":45635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.161.128", + "prefixLen":25, + "network":"193.169.161.128\/25", + "version":45634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.162.0", + "prefixLen":25, + "network":"193.169.162.0\/25", + "version":45633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.162.128", + "prefixLen":25, + "network":"193.169.162.128\/25", + "version":45632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.163.0", + "prefixLen":25, + "network":"193.169.163.0\/25", + "version":45631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.163.128", + "prefixLen":25, + "network":"193.169.163.128\/25", + "version":45630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.176.0", + "prefixLen":25, + "network":"193.169.176.0\/25", + "version":45629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.176.128", + "prefixLen":25, + "network":"193.169.176.128\/25", + "version":45628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.177.0", + "prefixLen":25, + "network":"193.169.177.0\/25", + "version":45627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.177.128", + "prefixLen":25, + "network":"193.169.177.128\/25", + "version":45626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.178.0", + "prefixLen":25, + "network":"193.169.178.0\/25", + "version":45625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.178.128", + "prefixLen":25, + "network":"193.169.178.128\/25", + "version":45624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.179.0", + "prefixLen":25, + "network":"193.169.179.0\/25", + "version":45623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.179.128", + "prefixLen":25, + "network":"193.169.179.128\/25", + "version":45622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.192.0", + "prefixLen":25, + "network":"193.169.192.0\/25", + "version":45621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.192.128", + "prefixLen":25, + "network":"193.169.192.128\/25", + "version":45620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.193.0", + "prefixLen":25, + "network":"193.169.193.0\/25", + "version":45619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.193.128", + "prefixLen":25, + "network":"193.169.193.128\/25", + "version":45618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.194.0", + "prefixLen":25, + "network":"193.169.194.0\/25", + "version":45617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.194.128", + "prefixLen":25, + "network":"193.169.194.128\/25", + "version":45616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.195.0", + "prefixLen":25, + "network":"193.169.195.0\/25", + "version":45615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.195.128", + "prefixLen":25, + "network":"193.169.195.128\/25", + "version":45614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.208.0", + "prefixLen":25, + "network":"193.169.208.0\/25", + "version":45613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.208.128", + "prefixLen":25, + "network":"193.169.208.128\/25", + "version":45612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.209.0", + "prefixLen":25, + "network":"193.169.209.0\/25", + "version":45611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.209.128", + "prefixLen":25, + "network":"193.169.209.128\/25", + "version":45610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.210.0", + "prefixLen":25, + "network":"193.169.210.0\/25", + "version":45609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.210.128", + "prefixLen":25, + "network":"193.169.210.128\/25", + "version":45608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.211.0", + "prefixLen":25, + "network":"193.169.211.0\/25", + "version":45607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.211.128", + "prefixLen":25, + "network":"193.169.211.128\/25", + "version":45606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.224.0", + "prefixLen":25, + "network":"193.169.224.0\/25", + "version":45605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.224.128", + "prefixLen":25, + "network":"193.169.224.128\/25", + "version":45604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.225.0", + "prefixLen":25, + "network":"193.169.225.0\/25", + "version":45603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.225.128", + "prefixLen":25, + "network":"193.169.225.128\/25", + "version":45602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.226.0", + "prefixLen":25, + "network":"193.169.226.0\/25", + "version":45601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.226.128", + "prefixLen":25, + "network":"193.169.226.128\/25", + "version":45600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.227.0", + "prefixLen":25, + "network":"193.169.227.0\/25", + "version":45599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.227.128", + "prefixLen":25, + "network":"193.169.227.128\/25", + "version":45598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.240.0", + "prefixLen":25, + "network":"193.169.240.0\/25", + "version":45597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.240.128", + "prefixLen":25, + "network":"193.169.240.128\/25", + "version":45596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.241.0", + "prefixLen":25, + "network":"193.169.241.0\/25", + "version":45595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.241.128", + "prefixLen":25, + "network":"193.169.241.128\/25", + "version":45594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.242.0", + "prefixLen":25, + "network":"193.169.242.0\/25", + "version":45593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.242.128", + "prefixLen":25, + "network":"193.169.242.128\/25", + "version":45592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.243.0", + "prefixLen":25, + "network":"193.169.243.0\/25", + "version":45591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.169.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.169.243.128", + "prefixLen":25, + "network":"193.169.243.128\/25", + "version":45590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64857 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.0.0", + "prefixLen":25, + "network":"193.170.0.0\/25", + "version":45717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.0.128", + "prefixLen":25, + "network":"193.170.0.128\/25", + "version":45844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.1.0", + "prefixLen":25, + "network":"193.170.1.0\/25", + "version":45843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.1.128", + "prefixLen":25, + "network":"193.170.1.128\/25", + "version":45842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.2.0", + "prefixLen":25, + "network":"193.170.2.0\/25", + "version":45841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.2.128", + "prefixLen":25, + "network":"193.170.2.128\/25", + "version":45840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.3.0", + "prefixLen":25, + "network":"193.170.3.0\/25", + "version":45839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.3.128", + "prefixLen":25, + "network":"193.170.3.128\/25", + "version":45838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.16.0", + "prefixLen":25, + "network":"193.170.16.0\/25", + "version":45837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.16.128", + "prefixLen":25, + "network":"193.170.16.128\/25", + "version":45836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.17.0", + "prefixLen":25, + "network":"193.170.17.0\/25", + "version":45835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.17.128", + "prefixLen":25, + "network":"193.170.17.128\/25", + "version":45834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.18.0", + "prefixLen":25, + "network":"193.170.18.0\/25", + "version":45833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.18.128", + "prefixLen":25, + "network":"193.170.18.128\/25", + "version":45832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.19.0", + "prefixLen":25, + "network":"193.170.19.0\/25", + "version":45831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.19.128", + "prefixLen":25, + "network":"193.170.19.128\/25", + "version":45830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.32.0", + "prefixLen":25, + "network":"193.170.32.0\/25", + "version":45829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.32.128", + "prefixLen":25, + "network":"193.170.32.128\/25", + "version":45828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.33.0", + "prefixLen":25, + "network":"193.170.33.0\/25", + "version":45827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.33.128", + "prefixLen":25, + "network":"193.170.33.128\/25", + "version":45826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.34.0", + "prefixLen":25, + "network":"193.170.34.0\/25", + "version":45825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.34.128", + "prefixLen":25, + "network":"193.170.34.128\/25", + "version":45824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.35.0", + "prefixLen":25, + "network":"193.170.35.0\/25", + "version":45823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.35.128", + "prefixLen":25, + "network":"193.170.35.128\/25", + "version":45822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.48.0", + "prefixLen":25, + "network":"193.170.48.0\/25", + "version":45821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.48.128", + "prefixLen":25, + "network":"193.170.48.128\/25", + "version":45820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.49.0", + "prefixLen":25, + "network":"193.170.49.0\/25", + "version":45819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.49.128", + "prefixLen":25, + "network":"193.170.49.128\/25", + "version":45818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.50.0", + "prefixLen":25, + "network":"193.170.50.0\/25", + "version":45817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.50.128", + "prefixLen":25, + "network":"193.170.50.128\/25", + "version":45816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.51.0", + "prefixLen":25, + "network":"193.170.51.0\/25", + "version":45815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.51.128", + "prefixLen":25, + "network":"193.170.51.128\/25", + "version":45814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.64.0", + "prefixLen":25, + "network":"193.170.64.0\/25", + "version":45813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.64.128", + "prefixLen":25, + "network":"193.170.64.128\/25", + "version":45812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.65.0", + "prefixLen":25, + "network":"193.170.65.0\/25", + "version":45811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.65.128", + "prefixLen":25, + "network":"193.170.65.128\/25", + "version":45810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.66.0", + "prefixLen":25, + "network":"193.170.66.0\/25", + "version":45809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.66.128", + "prefixLen":25, + "network":"193.170.66.128\/25", + "version":45808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.67.0", + "prefixLen":25, + "network":"193.170.67.0\/25", + "version":45807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.67.128", + "prefixLen":25, + "network":"193.170.67.128\/25", + "version":45806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.80.0", + "prefixLen":25, + "network":"193.170.80.0\/25", + "version":45805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.80.128", + "prefixLen":25, + "network":"193.170.80.128\/25", + "version":45804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.81.0", + "prefixLen":25, + "network":"193.170.81.0\/25", + "version":45803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.81.128", + "prefixLen":25, + "network":"193.170.81.128\/25", + "version":45802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.82.0", + "prefixLen":25, + "network":"193.170.82.0\/25", + "version":45801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.82.128", + "prefixLen":25, + "network":"193.170.82.128\/25", + "version":45800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.83.0", + "prefixLen":25, + "network":"193.170.83.0\/25", + "version":45799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.83.128", + "prefixLen":25, + "network":"193.170.83.128\/25", + "version":45798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.96.0", + "prefixLen":25, + "network":"193.170.96.0\/25", + "version":45797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.96.128", + "prefixLen":25, + "network":"193.170.96.128\/25", + "version":45796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.97.0", + "prefixLen":25, + "network":"193.170.97.0\/25", + "version":45795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.97.128", + "prefixLen":25, + "network":"193.170.97.128\/25", + "version":45794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.98.0", + "prefixLen":25, + "network":"193.170.98.0\/25", + "version":45793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.98.128", + "prefixLen":25, + "network":"193.170.98.128\/25", + "version":45792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.99.0", + "prefixLen":25, + "network":"193.170.99.0\/25", + "version":45791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.99.128", + "prefixLen":25, + "network":"193.170.99.128\/25", + "version":45790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.112.0", + "prefixLen":25, + "network":"193.170.112.0\/25", + "version":45789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.112.128", + "prefixLen":25, + "network":"193.170.112.128\/25", + "version":45788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.113.0", + "prefixLen":25, + "network":"193.170.113.0\/25", + "version":45787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.113.128", + "prefixLen":25, + "network":"193.170.113.128\/25", + "version":45786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.114.0", + "prefixLen":25, + "network":"193.170.114.0\/25", + "version":45785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.114.128", + "prefixLen":25, + "network":"193.170.114.128\/25", + "version":45784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.115.0", + "prefixLen":25, + "network":"193.170.115.0\/25", + "version":45783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.115.128", + "prefixLen":25, + "network":"193.170.115.128\/25", + "version":45782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.128.0", + "prefixLen":25, + "network":"193.170.128.0\/25", + "version":45781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.128.128", + "prefixLen":25, + "network":"193.170.128.128\/25", + "version":45780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.129.0", + "prefixLen":25, + "network":"193.170.129.0\/25", + "version":45779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.129.128", + "prefixLen":25, + "network":"193.170.129.128\/25", + "version":45778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.130.0", + "prefixLen":25, + "network":"193.170.130.0\/25", + "version":45777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.130.128", + "prefixLen":25, + "network":"193.170.130.128\/25", + "version":45776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.131.0", + "prefixLen":25, + "network":"193.170.131.0\/25", + "version":45775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.131.128", + "prefixLen":25, + "network":"193.170.131.128\/25", + "version":45774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.144.0", + "prefixLen":25, + "network":"193.170.144.0\/25", + "version":45773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.144.128", + "prefixLen":25, + "network":"193.170.144.128\/25", + "version":45772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.145.0", + "prefixLen":25, + "network":"193.170.145.0\/25", + "version":45771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.145.128", + "prefixLen":25, + "network":"193.170.145.128\/25", + "version":45770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.146.0", + "prefixLen":25, + "network":"193.170.146.0\/25", + "version":45769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.146.128", + "prefixLen":25, + "network":"193.170.146.128\/25", + "version":45768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.147.0", + "prefixLen":25, + "network":"193.170.147.0\/25", + "version":45767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.147.128", + "prefixLen":25, + "network":"193.170.147.128\/25", + "version":45766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.160.0", + "prefixLen":25, + "network":"193.170.160.0\/25", + "version":45765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.160.128", + "prefixLen":25, + "network":"193.170.160.128\/25", + "version":45764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.161.0", + "prefixLen":25, + "network":"193.170.161.0\/25", + "version":45763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.161.128", + "prefixLen":25, + "network":"193.170.161.128\/25", + "version":45762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.162.0", + "prefixLen":25, + "network":"193.170.162.0\/25", + "version":45761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.162.128", + "prefixLen":25, + "network":"193.170.162.128\/25", + "version":45760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.163.0", + "prefixLen":25, + "network":"193.170.163.0\/25", + "version":45759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.163.128", + "prefixLen":25, + "network":"193.170.163.128\/25", + "version":45758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.176.0", + "prefixLen":25, + "network":"193.170.176.0\/25", + "version":45757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.176.128", + "prefixLen":25, + "network":"193.170.176.128\/25", + "version":45756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.177.0", + "prefixLen":25, + "network":"193.170.177.0\/25", + "version":45755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.177.128", + "prefixLen":25, + "network":"193.170.177.128\/25", + "version":45754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.178.0", + "prefixLen":25, + "network":"193.170.178.0\/25", + "version":45753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.178.128", + "prefixLen":25, + "network":"193.170.178.128\/25", + "version":45752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.179.0", + "prefixLen":25, + "network":"193.170.179.0\/25", + "version":45751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.179.128", + "prefixLen":25, + "network":"193.170.179.128\/25", + "version":45750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.192.0", + "prefixLen":25, + "network":"193.170.192.0\/25", + "version":45749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.192.128", + "prefixLen":25, + "network":"193.170.192.128\/25", + "version":45748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.193.0", + "prefixLen":25, + "network":"193.170.193.0\/25", + "version":45747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.193.128", + "prefixLen":25, + "network":"193.170.193.128\/25", + "version":45746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.194.0", + "prefixLen":25, + "network":"193.170.194.0\/25", + "version":45745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.194.128", + "prefixLen":25, + "network":"193.170.194.128\/25", + "version":45744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.195.0", + "prefixLen":25, + "network":"193.170.195.0\/25", + "version":45743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.195.128", + "prefixLen":25, + "network":"193.170.195.128\/25", + "version":45742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.208.0", + "prefixLen":25, + "network":"193.170.208.0\/25", + "version":45741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.208.128", + "prefixLen":25, + "network":"193.170.208.128\/25", + "version":45740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.209.0", + "prefixLen":25, + "network":"193.170.209.0\/25", + "version":45739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.209.128", + "prefixLen":25, + "network":"193.170.209.128\/25", + "version":45738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.210.0", + "prefixLen":25, + "network":"193.170.210.0\/25", + "version":45737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.210.128", + "prefixLen":25, + "network":"193.170.210.128\/25", + "version":45736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.211.0", + "prefixLen":25, + "network":"193.170.211.0\/25", + "version":45735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.211.128", + "prefixLen":25, + "network":"193.170.211.128\/25", + "version":45734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.224.0", + "prefixLen":25, + "network":"193.170.224.0\/25", + "version":45733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.224.128", + "prefixLen":25, + "network":"193.170.224.128\/25", + "version":45732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.225.0", + "prefixLen":25, + "network":"193.170.225.0\/25", + "version":45731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.225.128", + "prefixLen":25, + "network":"193.170.225.128\/25", + "version":45730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.226.0", + "prefixLen":25, + "network":"193.170.226.0\/25", + "version":45729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.226.128", + "prefixLen":25, + "network":"193.170.226.128\/25", + "version":45728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.227.0", + "prefixLen":25, + "network":"193.170.227.0\/25", + "version":45727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.227.128", + "prefixLen":25, + "network":"193.170.227.128\/25", + "version":45726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.240.0", + "prefixLen":25, + "network":"193.170.240.0\/25", + "version":45725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.240.128", + "prefixLen":25, + "network":"193.170.240.128\/25", + "version":45724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.241.0", + "prefixLen":25, + "network":"193.170.241.0\/25", + "version":45723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.241.128", + "prefixLen":25, + "network":"193.170.241.128\/25", + "version":45722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.242.0", + "prefixLen":25, + "network":"193.170.242.0\/25", + "version":45721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.242.128", + "prefixLen":25, + "network":"193.170.242.128\/25", + "version":45720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.243.0", + "prefixLen":25, + "network":"193.170.243.0\/25", + "version":45719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.170.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.170.243.128", + "prefixLen":25, + "network":"193.170.243.128\/25", + "version":45718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64858 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.0.0", + "prefixLen":25, + "network":"193.171.0.0\/25", + "version":45845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.0.128", + "prefixLen":25, + "network":"193.171.0.128\/25", + "version":45972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.1.0", + "prefixLen":25, + "network":"193.171.1.0\/25", + "version":45971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.1.128", + "prefixLen":25, + "network":"193.171.1.128\/25", + "version":45970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.2.0", + "prefixLen":25, + "network":"193.171.2.0\/25", + "version":45969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.2.128", + "prefixLen":25, + "network":"193.171.2.128\/25", + "version":45968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.3.0", + "prefixLen":25, + "network":"193.171.3.0\/25", + "version":45967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.3.128", + "prefixLen":25, + "network":"193.171.3.128\/25", + "version":45966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.16.0", + "prefixLen":25, + "network":"193.171.16.0\/25", + "version":45965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.16.128", + "prefixLen":25, + "network":"193.171.16.128\/25", + "version":45964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.17.0", + "prefixLen":25, + "network":"193.171.17.0\/25", + "version":45963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.17.128", + "prefixLen":25, + "network":"193.171.17.128\/25", + "version":45962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.18.0", + "prefixLen":25, + "network":"193.171.18.0\/25", + "version":45961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.18.128", + "prefixLen":25, + "network":"193.171.18.128\/25", + "version":45960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.19.0", + "prefixLen":25, + "network":"193.171.19.0\/25", + "version":45959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.19.128", + "prefixLen":25, + "network":"193.171.19.128\/25", + "version":45958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.32.0", + "prefixLen":25, + "network":"193.171.32.0\/25", + "version":45957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.32.128", + "prefixLen":25, + "network":"193.171.32.128\/25", + "version":45956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.33.0", + "prefixLen":25, + "network":"193.171.33.0\/25", + "version":45955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.33.128", + "prefixLen":25, + "network":"193.171.33.128\/25", + "version":45954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.34.0", + "prefixLen":25, + "network":"193.171.34.0\/25", + "version":45953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.34.128", + "prefixLen":25, + "network":"193.171.34.128\/25", + "version":45952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.35.0", + "prefixLen":25, + "network":"193.171.35.0\/25", + "version":45951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.35.128", + "prefixLen":25, + "network":"193.171.35.128\/25", + "version":45950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.48.0", + "prefixLen":25, + "network":"193.171.48.0\/25", + "version":45949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.48.128", + "prefixLen":25, + "network":"193.171.48.128\/25", + "version":45948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.49.0", + "prefixLen":25, + "network":"193.171.49.0\/25", + "version":45947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.49.128", + "prefixLen":25, + "network":"193.171.49.128\/25", + "version":45946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.50.0", + "prefixLen":25, + "network":"193.171.50.0\/25", + "version":45945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.50.128", + "prefixLen":25, + "network":"193.171.50.128\/25", + "version":45944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.51.0", + "prefixLen":25, + "network":"193.171.51.0\/25", + "version":45943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.51.128", + "prefixLen":25, + "network":"193.171.51.128\/25", + "version":45942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.64.0", + "prefixLen":25, + "network":"193.171.64.0\/25", + "version":45941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.64.128", + "prefixLen":25, + "network":"193.171.64.128\/25", + "version":45940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.65.0", + "prefixLen":25, + "network":"193.171.65.0\/25", + "version":45939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.65.128", + "prefixLen":25, + "network":"193.171.65.128\/25", + "version":45938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.66.0", + "prefixLen":25, + "network":"193.171.66.0\/25", + "version":45937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.66.128", + "prefixLen":25, + "network":"193.171.66.128\/25", + "version":45936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.67.0", + "prefixLen":25, + "network":"193.171.67.0\/25", + "version":45935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.67.128", + "prefixLen":25, + "network":"193.171.67.128\/25", + "version":45934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.80.0", + "prefixLen":25, + "network":"193.171.80.0\/25", + "version":45933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.80.128", + "prefixLen":25, + "network":"193.171.80.128\/25", + "version":45932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.81.0", + "prefixLen":25, + "network":"193.171.81.0\/25", + "version":45931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.81.128", + "prefixLen":25, + "network":"193.171.81.128\/25", + "version":45930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.82.0", + "prefixLen":25, + "network":"193.171.82.0\/25", + "version":45929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.82.128", + "prefixLen":25, + "network":"193.171.82.128\/25", + "version":45928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.83.0", + "prefixLen":25, + "network":"193.171.83.0\/25", + "version":45927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.83.128", + "prefixLen":25, + "network":"193.171.83.128\/25", + "version":45926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.96.0", + "prefixLen":25, + "network":"193.171.96.0\/25", + "version":45925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.96.128", + "prefixLen":25, + "network":"193.171.96.128\/25", + "version":45924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.97.0", + "prefixLen":25, + "network":"193.171.97.0\/25", + "version":45923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.97.128", + "prefixLen":25, + "network":"193.171.97.128\/25", + "version":45922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.98.0", + "prefixLen":25, + "network":"193.171.98.0\/25", + "version":45921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.98.128", + "prefixLen":25, + "network":"193.171.98.128\/25", + "version":45920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.99.0", + "prefixLen":25, + "network":"193.171.99.0\/25", + "version":45919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.99.128", + "prefixLen":25, + "network":"193.171.99.128\/25", + "version":45918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.112.0", + "prefixLen":25, + "network":"193.171.112.0\/25", + "version":45917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.112.128", + "prefixLen":25, + "network":"193.171.112.128\/25", + "version":45916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.113.0", + "prefixLen":25, + "network":"193.171.113.0\/25", + "version":45915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.113.128", + "prefixLen":25, + "network":"193.171.113.128\/25", + "version":45914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.114.0", + "prefixLen":25, + "network":"193.171.114.0\/25", + "version":45913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.114.128", + "prefixLen":25, + "network":"193.171.114.128\/25", + "version":45912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.115.0", + "prefixLen":25, + "network":"193.171.115.0\/25", + "version":45911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.115.128", + "prefixLen":25, + "network":"193.171.115.128\/25", + "version":45910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.128.0", + "prefixLen":25, + "network":"193.171.128.0\/25", + "version":45909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.128.128", + "prefixLen":25, + "network":"193.171.128.128\/25", + "version":45908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.129.0", + "prefixLen":25, + "network":"193.171.129.0\/25", + "version":45907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.129.128", + "prefixLen":25, + "network":"193.171.129.128\/25", + "version":45906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.130.0", + "prefixLen":25, + "network":"193.171.130.0\/25", + "version":45905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.130.128", + "prefixLen":25, + "network":"193.171.130.128\/25", + "version":45904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.131.0", + "prefixLen":25, + "network":"193.171.131.0\/25", + "version":45903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.131.128", + "prefixLen":25, + "network":"193.171.131.128\/25", + "version":45902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.144.0", + "prefixLen":25, + "network":"193.171.144.0\/25", + "version":45901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.144.128", + "prefixLen":25, + "network":"193.171.144.128\/25", + "version":45900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.145.0", + "prefixLen":25, + "network":"193.171.145.0\/25", + "version":45899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.145.128", + "prefixLen":25, + "network":"193.171.145.128\/25", + "version":45898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.146.0", + "prefixLen":25, + "network":"193.171.146.0\/25", + "version":45897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.146.128", + "prefixLen":25, + "network":"193.171.146.128\/25", + "version":45896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.147.0", + "prefixLen":25, + "network":"193.171.147.0\/25", + "version":45895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.147.128", + "prefixLen":25, + "network":"193.171.147.128\/25", + "version":45894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.160.0", + "prefixLen":25, + "network":"193.171.160.0\/25", + "version":45893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.160.128", + "prefixLen":25, + "network":"193.171.160.128\/25", + "version":45892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.161.0", + "prefixLen":25, + "network":"193.171.161.0\/25", + "version":45891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.161.128", + "prefixLen":25, + "network":"193.171.161.128\/25", + "version":45890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.162.0", + "prefixLen":25, + "network":"193.171.162.0\/25", + "version":45889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.162.128", + "prefixLen":25, + "network":"193.171.162.128\/25", + "version":45888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.163.0", + "prefixLen":25, + "network":"193.171.163.0\/25", + "version":45887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.163.128", + "prefixLen":25, + "network":"193.171.163.128\/25", + "version":45886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.176.0", + "prefixLen":25, + "network":"193.171.176.0\/25", + "version":45885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.176.128", + "prefixLen":25, + "network":"193.171.176.128\/25", + "version":45884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.177.0", + "prefixLen":25, + "network":"193.171.177.0\/25", + "version":45883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.177.128", + "prefixLen":25, + "network":"193.171.177.128\/25", + "version":45882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.178.0", + "prefixLen":25, + "network":"193.171.178.0\/25", + "version":45881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.178.128", + "prefixLen":25, + "network":"193.171.178.128\/25", + "version":45880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.179.0", + "prefixLen":25, + "network":"193.171.179.0\/25", + "version":45879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.179.128", + "prefixLen":25, + "network":"193.171.179.128\/25", + "version":45878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.192.0", + "prefixLen":25, + "network":"193.171.192.0\/25", + "version":45877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.192.128", + "prefixLen":25, + "network":"193.171.192.128\/25", + "version":45876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.193.0", + "prefixLen":25, + "network":"193.171.193.0\/25", + "version":45875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.193.128", + "prefixLen":25, + "network":"193.171.193.128\/25", + "version":45874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.194.0", + "prefixLen":25, + "network":"193.171.194.0\/25", + "version":45873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.194.128", + "prefixLen":25, + "network":"193.171.194.128\/25", + "version":45872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.195.0", + "prefixLen":25, + "network":"193.171.195.0\/25", + "version":45871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.195.128", + "prefixLen":25, + "network":"193.171.195.128\/25", + "version":45870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.208.0", + "prefixLen":25, + "network":"193.171.208.0\/25", + "version":45869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.208.128", + "prefixLen":25, + "network":"193.171.208.128\/25", + "version":45868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.209.0", + "prefixLen":25, + "network":"193.171.209.0\/25", + "version":45867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.209.128", + "prefixLen":25, + "network":"193.171.209.128\/25", + "version":45866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.210.0", + "prefixLen":25, + "network":"193.171.210.0\/25", + "version":45865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.210.128", + "prefixLen":25, + "network":"193.171.210.128\/25", + "version":45864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.211.0", + "prefixLen":25, + "network":"193.171.211.0\/25", + "version":45863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.211.128", + "prefixLen":25, + "network":"193.171.211.128\/25", + "version":45862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.224.0", + "prefixLen":25, + "network":"193.171.224.0\/25", + "version":45861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.224.128", + "prefixLen":25, + "network":"193.171.224.128\/25", + "version":45860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.225.0", + "prefixLen":25, + "network":"193.171.225.0\/25", + "version":45859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.225.128", + "prefixLen":25, + "network":"193.171.225.128\/25", + "version":45858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.226.0", + "prefixLen":25, + "network":"193.171.226.0\/25", + "version":45857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.226.128", + "prefixLen":25, + "network":"193.171.226.128\/25", + "version":45856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.227.0", + "prefixLen":25, + "network":"193.171.227.0\/25", + "version":45855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.227.128", + "prefixLen":25, + "network":"193.171.227.128\/25", + "version":45854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.240.0", + "prefixLen":25, + "network":"193.171.240.0\/25", + "version":45853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.240.128", + "prefixLen":25, + "network":"193.171.240.128\/25", + "version":45852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.241.0", + "prefixLen":25, + "network":"193.171.241.0\/25", + "version":45851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.241.128", + "prefixLen":25, + "network":"193.171.241.128\/25", + "version":45850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.242.0", + "prefixLen":25, + "network":"193.171.242.0\/25", + "version":45849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.242.128", + "prefixLen":25, + "network":"193.171.242.128\/25", + "version":45848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.243.0", + "prefixLen":25, + "network":"193.171.243.0\/25", + "version":45847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.171.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.171.243.128", + "prefixLen":25, + "network":"193.171.243.128\/25", + "version":45846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64859 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.0.0", + "prefixLen":25, + "network":"193.172.0.0\/25", + "version":45973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.0.128", + "prefixLen":25, + "network":"193.172.0.128\/25", + "version":46100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.1.0", + "prefixLen":25, + "network":"193.172.1.0\/25", + "version":46099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.1.128", + "prefixLen":25, + "network":"193.172.1.128\/25", + "version":46098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.2.0", + "prefixLen":25, + "network":"193.172.2.0\/25", + "version":46097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.2.128", + "prefixLen":25, + "network":"193.172.2.128\/25", + "version":46096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.3.0", + "prefixLen":25, + "network":"193.172.3.0\/25", + "version":46095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.3.128", + "prefixLen":25, + "network":"193.172.3.128\/25", + "version":46094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.16.0", + "prefixLen":25, + "network":"193.172.16.0\/25", + "version":46093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.16.128", + "prefixLen":25, + "network":"193.172.16.128\/25", + "version":46092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.17.0", + "prefixLen":25, + "network":"193.172.17.0\/25", + "version":46091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.17.128", + "prefixLen":25, + "network":"193.172.17.128\/25", + "version":46090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.18.0", + "prefixLen":25, + "network":"193.172.18.0\/25", + "version":46089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.18.128", + "prefixLen":25, + "network":"193.172.18.128\/25", + "version":46088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.19.0", + "prefixLen":25, + "network":"193.172.19.0\/25", + "version":46087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.19.128", + "prefixLen":25, + "network":"193.172.19.128\/25", + "version":46086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.32.0", + "prefixLen":25, + "network":"193.172.32.0\/25", + "version":46085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.32.128", + "prefixLen":25, + "network":"193.172.32.128\/25", + "version":46084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.33.0", + "prefixLen":25, + "network":"193.172.33.0\/25", + "version":46083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.33.128", + "prefixLen":25, + "network":"193.172.33.128\/25", + "version":46082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.34.0", + "prefixLen":25, + "network":"193.172.34.0\/25", + "version":46081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.34.128", + "prefixLen":25, + "network":"193.172.34.128\/25", + "version":46080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.35.0", + "prefixLen":25, + "network":"193.172.35.0\/25", + "version":46079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.35.128", + "prefixLen":25, + "network":"193.172.35.128\/25", + "version":46078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.48.0", + "prefixLen":25, + "network":"193.172.48.0\/25", + "version":46077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.48.128", + "prefixLen":25, + "network":"193.172.48.128\/25", + "version":46076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.49.0", + "prefixLen":25, + "network":"193.172.49.0\/25", + "version":46075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.49.128", + "prefixLen":25, + "network":"193.172.49.128\/25", + "version":46074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.50.0", + "prefixLen":25, + "network":"193.172.50.0\/25", + "version":46073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.50.128", + "prefixLen":25, + "network":"193.172.50.128\/25", + "version":46072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.51.0", + "prefixLen":25, + "network":"193.172.51.0\/25", + "version":46071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.51.128", + "prefixLen":25, + "network":"193.172.51.128\/25", + "version":46070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.64.0", + "prefixLen":25, + "network":"193.172.64.0\/25", + "version":46069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.64.128", + "prefixLen":25, + "network":"193.172.64.128\/25", + "version":46068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.65.0", + "prefixLen":25, + "network":"193.172.65.0\/25", + "version":46067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.65.128", + "prefixLen":25, + "network":"193.172.65.128\/25", + "version":46066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.66.0", + "prefixLen":25, + "network":"193.172.66.0\/25", + "version":46065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.66.128", + "prefixLen":25, + "network":"193.172.66.128\/25", + "version":46064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.67.0", + "prefixLen":25, + "network":"193.172.67.0\/25", + "version":46063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.67.128", + "prefixLen":25, + "network":"193.172.67.128\/25", + "version":46062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.80.0", + "prefixLen":25, + "network":"193.172.80.0\/25", + "version":46061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.80.128", + "prefixLen":25, + "network":"193.172.80.128\/25", + "version":46060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.81.0", + "prefixLen":25, + "network":"193.172.81.0\/25", + "version":46059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.81.128", + "prefixLen":25, + "network":"193.172.81.128\/25", + "version":46058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.82.0", + "prefixLen":25, + "network":"193.172.82.0\/25", + "version":46057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.82.128", + "prefixLen":25, + "network":"193.172.82.128\/25", + "version":46056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.83.0", + "prefixLen":25, + "network":"193.172.83.0\/25", + "version":46055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.83.128", + "prefixLen":25, + "network":"193.172.83.128\/25", + "version":46054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.96.0", + "prefixLen":25, + "network":"193.172.96.0\/25", + "version":46053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.96.128", + "prefixLen":25, + "network":"193.172.96.128\/25", + "version":46052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.97.0", + "prefixLen":25, + "network":"193.172.97.0\/25", + "version":46051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.97.128", + "prefixLen":25, + "network":"193.172.97.128\/25", + "version":46050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.98.0", + "prefixLen":25, + "network":"193.172.98.0\/25", + "version":46049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.98.128", + "prefixLen":25, + "network":"193.172.98.128\/25", + "version":46048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.99.0", + "prefixLen":25, + "network":"193.172.99.0\/25", + "version":46047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.99.128", + "prefixLen":25, + "network":"193.172.99.128\/25", + "version":46046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.112.0", + "prefixLen":25, + "network":"193.172.112.0\/25", + "version":46045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.112.128", + "prefixLen":25, + "network":"193.172.112.128\/25", + "version":46044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.113.0", + "prefixLen":25, + "network":"193.172.113.0\/25", + "version":46043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.113.128", + "prefixLen":25, + "network":"193.172.113.128\/25", + "version":46042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.114.0", + "prefixLen":25, + "network":"193.172.114.0\/25", + "version":46041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.114.128", + "prefixLen":25, + "network":"193.172.114.128\/25", + "version":46040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.115.0", + "prefixLen":25, + "network":"193.172.115.0\/25", + "version":46039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.115.128", + "prefixLen":25, + "network":"193.172.115.128\/25", + "version":46038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.128.0", + "prefixLen":25, + "network":"193.172.128.0\/25", + "version":46037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.128.128", + "prefixLen":25, + "network":"193.172.128.128\/25", + "version":46036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.129.0", + "prefixLen":25, + "network":"193.172.129.0\/25", + "version":46035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.129.128", + "prefixLen":25, + "network":"193.172.129.128\/25", + "version":46034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.130.0", + "prefixLen":25, + "network":"193.172.130.0\/25", + "version":46033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.130.128", + "prefixLen":25, + "network":"193.172.130.128\/25", + "version":46032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.131.0", + "prefixLen":25, + "network":"193.172.131.0\/25", + "version":46031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.131.128", + "prefixLen":25, + "network":"193.172.131.128\/25", + "version":46030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.144.0", + "prefixLen":25, + "network":"193.172.144.0\/25", + "version":46029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.144.128", + "prefixLen":25, + "network":"193.172.144.128\/25", + "version":46028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.145.0", + "prefixLen":25, + "network":"193.172.145.0\/25", + "version":46027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.145.128", + "prefixLen":25, + "network":"193.172.145.128\/25", + "version":46026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.146.0", + "prefixLen":25, + "network":"193.172.146.0\/25", + "version":46025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.146.128", + "prefixLen":25, + "network":"193.172.146.128\/25", + "version":46024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.147.0", + "prefixLen":25, + "network":"193.172.147.0\/25", + "version":46023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.147.128", + "prefixLen":25, + "network":"193.172.147.128\/25", + "version":46022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.160.0", + "prefixLen":25, + "network":"193.172.160.0\/25", + "version":46021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.160.128", + "prefixLen":25, + "network":"193.172.160.128\/25", + "version":46020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.161.0", + "prefixLen":25, + "network":"193.172.161.0\/25", + "version":46019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.161.128", + "prefixLen":25, + "network":"193.172.161.128\/25", + "version":46018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.162.0", + "prefixLen":25, + "network":"193.172.162.0\/25", + "version":46017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.162.128", + "prefixLen":25, + "network":"193.172.162.128\/25", + "version":46016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.163.0", + "prefixLen":25, + "network":"193.172.163.0\/25", + "version":46015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.163.128", + "prefixLen":25, + "network":"193.172.163.128\/25", + "version":46014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.176.0", + "prefixLen":25, + "network":"193.172.176.0\/25", + "version":46013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.176.128", + "prefixLen":25, + "network":"193.172.176.128\/25", + "version":46012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.177.0", + "prefixLen":25, + "network":"193.172.177.0\/25", + "version":46011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.177.128", + "prefixLen":25, + "network":"193.172.177.128\/25", + "version":46010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.178.0", + "prefixLen":25, + "network":"193.172.178.0\/25", + "version":46009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.178.128", + "prefixLen":25, + "network":"193.172.178.128\/25", + "version":46008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.179.0", + "prefixLen":25, + "network":"193.172.179.0\/25", + "version":46007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.179.128", + "prefixLen":25, + "network":"193.172.179.128\/25", + "version":46006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.192.0", + "prefixLen":25, + "network":"193.172.192.0\/25", + "version":46005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.192.128", + "prefixLen":25, + "network":"193.172.192.128\/25", + "version":46004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.193.0", + "prefixLen":25, + "network":"193.172.193.0\/25", + "version":46003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.193.128", + "prefixLen":25, + "network":"193.172.193.128\/25", + "version":46002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.194.0", + "prefixLen":25, + "network":"193.172.194.0\/25", + "version":46001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.194.128", + "prefixLen":25, + "network":"193.172.194.128\/25", + "version":46000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.195.0", + "prefixLen":25, + "network":"193.172.195.0\/25", + "version":45999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.195.128", + "prefixLen":25, + "network":"193.172.195.128\/25", + "version":45998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.208.0", + "prefixLen":25, + "network":"193.172.208.0\/25", + "version":45997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.208.128", + "prefixLen":25, + "network":"193.172.208.128\/25", + "version":45996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.209.0", + "prefixLen":25, + "network":"193.172.209.0\/25", + "version":45995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.209.128", + "prefixLen":25, + "network":"193.172.209.128\/25", + "version":45994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.210.0", + "prefixLen":25, + "network":"193.172.210.0\/25", + "version":45993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.210.128", + "prefixLen":25, + "network":"193.172.210.128\/25", + "version":45992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.211.0", + "prefixLen":25, + "network":"193.172.211.0\/25", + "version":45991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.211.128", + "prefixLen":25, + "network":"193.172.211.128\/25", + "version":45990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.224.0", + "prefixLen":25, + "network":"193.172.224.0\/25", + "version":45989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.224.128", + "prefixLen":25, + "network":"193.172.224.128\/25", + "version":45988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.225.0", + "prefixLen":25, + "network":"193.172.225.0\/25", + "version":45987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.225.128", + "prefixLen":25, + "network":"193.172.225.128\/25", + "version":45986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.226.0", + "prefixLen":25, + "network":"193.172.226.0\/25", + "version":45985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.226.128", + "prefixLen":25, + "network":"193.172.226.128\/25", + "version":45984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.227.0", + "prefixLen":25, + "network":"193.172.227.0\/25", + "version":45983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.227.128", + "prefixLen":25, + "network":"193.172.227.128\/25", + "version":45982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.240.0", + "prefixLen":25, + "network":"193.172.240.0\/25", + "version":45981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.240.128", + "prefixLen":25, + "network":"193.172.240.128\/25", + "version":45980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.241.0", + "prefixLen":25, + "network":"193.172.241.0\/25", + "version":45979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.241.128", + "prefixLen":25, + "network":"193.172.241.128\/25", + "version":45978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.242.0", + "prefixLen":25, + "network":"193.172.242.0\/25", + "version":45977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.242.128", + "prefixLen":25, + "network":"193.172.242.128\/25", + "version":45976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.243.0", + "prefixLen":25, + "network":"193.172.243.0\/25", + "version":45975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.172.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.172.243.128", + "prefixLen":25, + "network":"193.172.243.128\/25", + "version":45974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64860 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.0.0", + "prefixLen":25, + "network":"193.173.0.0\/25", + "version":46101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.0.128", + "prefixLen":25, + "network":"193.173.0.128\/25", + "version":46228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.1.0", + "prefixLen":25, + "network":"193.173.1.0\/25", + "version":46227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.1.128", + "prefixLen":25, + "network":"193.173.1.128\/25", + "version":46226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.2.0", + "prefixLen":25, + "network":"193.173.2.0\/25", + "version":46225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.2.128", + "prefixLen":25, + "network":"193.173.2.128\/25", + "version":46224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.3.0", + "prefixLen":25, + "network":"193.173.3.0\/25", + "version":46223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.3.128", + "prefixLen":25, + "network":"193.173.3.128\/25", + "version":46222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.16.0", + "prefixLen":25, + "network":"193.173.16.0\/25", + "version":46221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.16.128", + "prefixLen":25, + "network":"193.173.16.128\/25", + "version":46220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.17.0", + "prefixLen":25, + "network":"193.173.17.0\/25", + "version":46219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.17.128", + "prefixLen":25, + "network":"193.173.17.128\/25", + "version":46218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.18.0", + "prefixLen":25, + "network":"193.173.18.0\/25", + "version":46217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.18.128", + "prefixLen":25, + "network":"193.173.18.128\/25", + "version":46216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.19.0", + "prefixLen":25, + "network":"193.173.19.0\/25", + "version":46215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.19.128", + "prefixLen":25, + "network":"193.173.19.128\/25", + "version":46214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.32.0", + "prefixLen":25, + "network":"193.173.32.0\/25", + "version":46213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.32.128", + "prefixLen":25, + "network":"193.173.32.128\/25", + "version":46212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.33.0", + "prefixLen":25, + "network":"193.173.33.0\/25", + "version":46211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.33.128", + "prefixLen":25, + "network":"193.173.33.128\/25", + "version":46210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.34.0", + "prefixLen":25, + "network":"193.173.34.0\/25", + "version":46209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.34.128", + "prefixLen":25, + "network":"193.173.34.128\/25", + "version":46208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.35.0", + "prefixLen":25, + "network":"193.173.35.0\/25", + "version":46207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.35.128", + "prefixLen":25, + "network":"193.173.35.128\/25", + "version":46206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.48.0", + "prefixLen":25, + "network":"193.173.48.0\/25", + "version":46205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.48.128", + "prefixLen":25, + "network":"193.173.48.128\/25", + "version":46204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.49.0", + "prefixLen":25, + "network":"193.173.49.0\/25", + "version":46203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.49.128", + "prefixLen":25, + "network":"193.173.49.128\/25", + "version":46202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.50.0", + "prefixLen":25, + "network":"193.173.50.0\/25", + "version":46201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.50.128", + "prefixLen":25, + "network":"193.173.50.128\/25", + "version":46200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.51.0", + "prefixLen":25, + "network":"193.173.51.0\/25", + "version":46199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.51.128", + "prefixLen":25, + "network":"193.173.51.128\/25", + "version":46198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.64.0", + "prefixLen":25, + "network":"193.173.64.0\/25", + "version":46197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.64.128", + "prefixLen":25, + "network":"193.173.64.128\/25", + "version":46196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.65.0", + "prefixLen":25, + "network":"193.173.65.0\/25", + "version":46195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.65.128", + "prefixLen":25, + "network":"193.173.65.128\/25", + "version":46194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.66.0", + "prefixLen":25, + "network":"193.173.66.0\/25", + "version":46193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.66.128", + "prefixLen":25, + "network":"193.173.66.128\/25", + "version":46192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.67.0", + "prefixLen":25, + "network":"193.173.67.0\/25", + "version":46191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.67.128", + "prefixLen":25, + "network":"193.173.67.128\/25", + "version":46190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.80.0", + "prefixLen":25, + "network":"193.173.80.0\/25", + "version":46189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.80.128", + "prefixLen":25, + "network":"193.173.80.128\/25", + "version":46188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.81.0", + "prefixLen":25, + "network":"193.173.81.0\/25", + "version":46187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.81.128", + "prefixLen":25, + "network":"193.173.81.128\/25", + "version":46186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.82.0", + "prefixLen":25, + "network":"193.173.82.0\/25", + "version":46185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.82.128", + "prefixLen":25, + "network":"193.173.82.128\/25", + "version":46184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.83.0", + "prefixLen":25, + "network":"193.173.83.0\/25", + "version":46183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.83.128", + "prefixLen":25, + "network":"193.173.83.128\/25", + "version":46182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.96.0", + "prefixLen":25, + "network":"193.173.96.0\/25", + "version":46181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.96.128", + "prefixLen":25, + "network":"193.173.96.128\/25", + "version":46180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.97.0", + "prefixLen":25, + "network":"193.173.97.0\/25", + "version":46179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.97.128", + "prefixLen":25, + "network":"193.173.97.128\/25", + "version":46178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.98.0", + "prefixLen":25, + "network":"193.173.98.0\/25", + "version":46177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.98.128", + "prefixLen":25, + "network":"193.173.98.128\/25", + "version":46176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.99.0", + "prefixLen":25, + "network":"193.173.99.0\/25", + "version":46175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.99.128", + "prefixLen":25, + "network":"193.173.99.128\/25", + "version":46174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.112.0", + "prefixLen":25, + "network":"193.173.112.0\/25", + "version":46173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.112.128", + "prefixLen":25, + "network":"193.173.112.128\/25", + "version":46172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.113.0", + "prefixLen":25, + "network":"193.173.113.0\/25", + "version":46171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.113.128", + "prefixLen":25, + "network":"193.173.113.128\/25", + "version":46170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.114.0", + "prefixLen":25, + "network":"193.173.114.0\/25", + "version":46169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.114.128", + "prefixLen":25, + "network":"193.173.114.128\/25", + "version":46168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.115.0", + "prefixLen":25, + "network":"193.173.115.0\/25", + "version":46167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.115.128", + "prefixLen":25, + "network":"193.173.115.128\/25", + "version":46166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.128.0", + "prefixLen":25, + "network":"193.173.128.0\/25", + "version":46165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.128.128", + "prefixLen":25, + "network":"193.173.128.128\/25", + "version":46164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.129.0", + "prefixLen":25, + "network":"193.173.129.0\/25", + "version":46163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.129.128", + "prefixLen":25, + "network":"193.173.129.128\/25", + "version":46162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.130.0", + "prefixLen":25, + "network":"193.173.130.0\/25", + "version":46161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.130.128", + "prefixLen":25, + "network":"193.173.130.128\/25", + "version":46160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.131.0", + "prefixLen":25, + "network":"193.173.131.0\/25", + "version":46159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.131.128", + "prefixLen":25, + "network":"193.173.131.128\/25", + "version":46158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.144.0", + "prefixLen":25, + "network":"193.173.144.0\/25", + "version":46157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.144.128", + "prefixLen":25, + "network":"193.173.144.128\/25", + "version":46156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.145.0", + "prefixLen":25, + "network":"193.173.145.0\/25", + "version":46155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.145.128", + "prefixLen":25, + "network":"193.173.145.128\/25", + "version":46154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.146.0", + "prefixLen":25, + "network":"193.173.146.0\/25", + "version":46153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.146.128", + "prefixLen":25, + "network":"193.173.146.128\/25", + "version":46152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.147.0", + "prefixLen":25, + "network":"193.173.147.0\/25", + "version":46151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.147.128", + "prefixLen":25, + "network":"193.173.147.128\/25", + "version":46150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.160.0", + "prefixLen":25, + "network":"193.173.160.0\/25", + "version":46149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.160.128", + "prefixLen":25, + "network":"193.173.160.128\/25", + "version":46148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.161.0", + "prefixLen":25, + "network":"193.173.161.0\/25", + "version":46147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.161.128", + "prefixLen":25, + "network":"193.173.161.128\/25", + "version":46146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.162.0", + "prefixLen":25, + "network":"193.173.162.0\/25", + "version":46145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.162.128", + "prefixLen":25, + "network":"193.173.162.128\/25", + "version":46144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.163.0", + "prefixLen":25, + "network":"193.173.163.0\/25", + "version":46143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.163.128", + "prefixLen":25, + "network":"193.173.163.128\/25", + "version":46142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.176.0", + "prefixLen":25, + "network":"193.173.176.0\/25", + "version":46141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.176.128", + "prefixLen":25, + "network":"193.173.176.128\/25", + "version":46140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.177.0", + "prefixLen":25, + "network":"193.173.177.0\/25", + "version":46139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.177.128", + "prefixLen":25, + "network":"193.173.177.128\/25", + "version":46138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.178.0", + "prefixLen":25, + "network":"193.173.178.0\/25", + "version":46137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.178.128", + "prefixLen":25, + "network":"193.173.178.128\/25", + "version":46136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.179.0", + "prefixLen":25, + "network":"193.173.179.0\/25", + "version":46135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.179.128", + "prefixLen":25, + "network":"193.173.179.128\/25", + "version":46134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.192.0", + "prefixLen":25, + "network":"193.173.192.0\/25", + "version":46133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.192.128", + "prefixLen":25, + "network":"193.173.192.128\/25", + "version":46132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.193.0", + "prefixLen":25, + "network":"193.173.193.0\/25", + "version":46131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.193.128", + "prefixLen":25, + "network":"193.173.193.128\/25", + "version":46130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.194.0", + "prefixLen":25, + "network":"193.173.194.0\/25", + "version":46129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.194.128", + "prefixLen":25, + "network":"193.173.194.128\/25", + "version":46128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.195.0", + "prefixLen":25, + "network":"193.173.195.0\/25", + "version":46127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.195.128", + "prefixLen":25, + "network":"193.173.195.128\/25", + "version":46126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.208.0", + "prefixLen":25, + "network":"193.173.208.0\/25", + "version":46125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.208.128", + "prefixLen":25, + "network":"193.173.208.128\/25", + "version":46124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.209.0", + "prefixLen":25, + "network":"193.173.209.0\/25", + "version":46123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.209.128", + "prefixLen":25, + "network":"193.173.209.128\/25", + "version":46122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.210.0", + "prefixLen":25, + "network":"193.173.210.0\/25", + "version":46121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.210.128", + "prefixLen":25, + "network":"193.173.210.128\/25", + "version":46120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.211.0", + "prefixLen":25, + "network":"193.173.211.0\/25", + "version":46119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.211.128", + "prefixLen":25, + "network":"193.173.211.128\/25", + "version":46118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.224.0", + "prefixLen":25, + "network":"193.173.224.0\/25", + "version":46117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.224.128", + "prefixLen":25, + "network":"193.173.224.128\/25", + "version":46116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.225.0", + "prefixLen":25, + "network":"193.173.225.0\/25", + "version":46115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.225.128", + "prefixLen":25, + "network":"193.173.225.128\/25", + "version":46114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.226.0", + "prefixLen":25, + "network":"193.173.226.0\/25", + "version":46113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.226.128", + "prefixLen":25, + "network":"193.173.226.128\/25", + "version":46112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.227.0", + "prefixLen":25, + "network":"193.173.227.0\/25", + "version":46111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.227.128", + "prefixLen":25, + "network":"193.173.227.128\/25", + "version":46110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.240.0", + "prefixLen":25, + "network":"193.173.240.0\/25", + "version":46109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.240.128", + "prefixLen":25, + "network":"193.173.240.128\/25", + "version":46108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.241.0", + "prefixLen":25, + "network":"193.173.241.0\/25", + "version":46107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.241.128", + "prefixLen":25, + "network":"193.173.241.128\/25", + "version":46106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.242.0", + "prefixLen":25, + "network":"193.173.242.0\/25", + "version":46105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.242.128", + "prefixLen":25, + "network":"193.173.242.128\/25", + "version":46104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.243.0", + "prefixLen":25, + "network":"193.173.243.0\/25", + "version":46103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.173.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.173.243.128", + "prefixLen":25, + "network":"193.173.243.128\/25", + "version":46102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64861 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.0.0", + "prefixLen":25, + "network":"193.174.0.0\/25", + "version":46229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.0.128", + "prefixLen":25, + "network":"193.174.0.128\/25", + "version":46356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.1.0", + "prefixLen":25, + "network":"193.174.1.0\/25", + "version":46355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.1.128", + "prefixLen":25, + "network":"193.174.1.128\/25", + "version":46354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.2.0", + "prefixLen":25, + "network":"193.174.2.0\/25", + "version":46353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.2.128", + "prefixLen":25, + "network":"193.174.2.128\/25", + "version":46352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.3.0", + "prefixLen":25, + "network":"193.174.3.0\/25", + "version":46351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.3.128", + "prefixLen":25, + "network":"193.174.3.128\/25", + "version":46350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.16.0", + "prefixLen":25, + "network":"193.174.16.0\/25", + "version":46349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.16.128", + "prefixLen":25, + "network":"193.174.16.128\/25", + "version":46348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.17.0", + "prefixLen":25, + "network":"193.174.17.0\/25", + "version":46347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.17.128", + "prefixLen":25, + "network":"193.174.17.128\/25", + "version":46346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.18.0", + "prefixLen":25, + "network":"193.174.18.0\/25", + "version":46345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.18.128", + "prefixLen":25, + "network":"193.174.18.128\/25", + "version":46344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.19.0", + "prefixLen":25, + "network":"193.174.19.0\/25", + "version":46343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.19.128", + "prefixLen":25, + "network":"193.174.19.128\/25", + "version":46342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.32.0", + "prefixLen":25, + "network":"193.174.32.0\/25", + "version":46341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.32.128", + "prefixLen":25, + "network":"193.174.32.128\/25", + "version":46340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.33.0", + "prefixLen":25, + "network":"193.174.33.0\/25", + "version":46339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.33.128", + "prefixLen":25, + "network":"193.174.33.128\/25", + "version":46338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.34.0", + "prefixLen":25, + "network":"193.174.34.0\/25", + "version":46337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.34.128", + "prefixLen":25, + "network":"193.174.34.128\/25", + "version":46336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.35.0", + "prefixLen":25, + "network":"193.174.35.0\/25", + "version":46335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.35.128", + "prefixLen":25, + "network":"193.174.35.128\/25", + "version":46334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.48.0", + "prefixLen":25, + "network":"193.174.48.0\/25", + "version":46333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.48.128", + "prefixLen":25, + "network":"193.174.48.128\/25", + "version":46332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.49.0", + "prefixLen":25, + "network":"193.174.49.0\/25", + "version":46331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.49.128", + "prefixLen":25, + "network":"193.174.49.128\/25", + "version":46330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.50.0", + "prefixLen":25, + "network":"193.174.50.0\/25", + "version":46329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.50.128", + "prefixLen":25, + "network":"193.174.50.128\/25", + "version":46328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.51.0", + "prefixLen":25, + "network":"193.174.51.0\/25", + "version":46327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.51.128", + "prefixLen":25, + "network":"193.174.51.128\/25", + "version":46326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.64.0", + "prefixLen":25, + "network":"193.174.64.0\/25", + "version":46325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.64.128", + "prefixLen":25, + "network":"193.174.64.128\/25", + "version":46324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.65.0", + "prefixLen":25, + "network":"193.174.65.0\/25", + "version":46323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.65.128", + "prefixLen":25, + "network":"193.174.65.128\/25", + "version":46322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.66.0", + "prefixLen":25, + "network":"193.174.66.0\/25", + "version":46321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.66.128", + "prefixLen":25, + "network":"193.174.66.128\/25", + "version":46320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.67.0", + "prefixLen":25, + "network":"193.174.67.0\/25", + "version":46319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.67.128", + "prefixLen":25, + "network":"193.174.67.128\/25", + "version":46318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.80.0", + "prefixLen":25, + "network":"193.174.80.0\/25", + "version":46317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.80.128", + "prefixLen":25, + "network":"193.174.80.128\/25", + "version":46316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.81.0", + "prefixLen":25, + "network":"193.174.81.0\/25", + "version":46315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.81.128", + "prefixLen":25, + "network":"193.174.81.128\/25", + "version":46314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.82.0", + "prefixLen":25, + "network":"193.174.82.0\/25", + "version":46313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.82.128", + "prefixLen":25, + "network":"193.174.82.128\/25", + "version":46312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.83.0", + "prefixLen":25, + "network":"193.174.83.0\/25", + "version":46311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.83.128", + "prefixLen":25, + "network":"193.174.83.128\/25", + "version":46310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.96.0", + "prefixLen":25, + "network":"193.174.96.0\/25", + "version":46309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.96.128", + "prefixLen":25, + "network":"193.174.96.128\/25", + "version":46308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.97.0", + "prefixLen":25, + "network":"193.174.97.0\/25", + "version":46307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.97.128", + "prefixLen":25, + "network":"193.174.97.128\/25", + "version":46306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.98.0", + "prefixLen":25, + "network":"193.174.98.0\/25", + "version":46305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.98.128", + "prefixLen":25, + "network":"193.174.98.128\/25", + "version":46304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.99.0", + "prefixLen":25, + "network":"193.174.99.0\/25", + "version":46303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.99.128", + "prefixLen":25, + "network":"193.174.99.128\/25", + "version":46302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.112.0", + "prefixLen":25, + "network":"193.174.112.0\/25", + "version":46301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.112.128", + "prefixLen":25, + "network":"193.174.112.128\/25", + "version":46300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.113.0", + "prefixLen":25, + "network":"193.174.113.0\/25", + "version":46299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.113.128", + "prefixLen":25, + "network":"193.174.113.128\/25", + "version":46298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.114.0", + "prefixLen":25, + "network":"193.174.114.0\/25", + "version":46297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.114.128", + "prefixLen":25, + "network":"193.174.114.128\/25", + "version":46296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.115.0", + "prefixLen":25, + "network":"193.174.115.0\/25", + "version":46295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.115.128", + "prefixLen":25, + "network":"193.174.115.128\/25", + "version":46294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.128.0", + "prefixLen":25, + "network":"193.174.128.0\/25", + "version":46293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.128.128", + "prefixLen":25, + "network":"193.174.128.128\/25", + "version":46292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.129.0", + "prefixLen":25, + "network":"193.174.129.0\/25", + "version":46291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.129.128", + "prefixLen":25, + "network":"193.174.129.128\/25", + "version":46290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.130.0", + "prefixLen":25, + "network":"193.174.130.0\/25", + "version":46289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.130.128", + "prefixLen":25, + "network":"193.174.130.128\/25", + "version":46288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.131.0", + "prefixLen":25, + "network":"193.174.131.0\/25", + "version":46287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.131.128", + "prefixLen":25, + "network":"193.174.131.128\/25", + "version":46286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.144.0", + "prefixLen":25, + "network":"193.174.144.0\/25", + "version":46285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.144.128", + "prefixLen":25, + "network":"193.174.144.128\/25", + "version":46284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.145.0", + "prefixLen":25, + "network":"193.174.145.0\/25", + "version":46283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.145.128", + "prefixLen":25, + "network":"193.174.145.128\/25", + "version":46282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.146.0", + "prefixLen":25, + "network":"193.174.146.0\/25", + "version":46281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.146.128", + "prefixLen":25, + "network":"193.174.146.128\/25", + "version":46280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.147.0", + "prefixLen":25, + "network":"193.174.147.0\/25", + "version":46279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.147.128", + "prefixLen":25, + "network":"193.174.147.128\/25", + "version":46278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.160.0", + "prefixLen":25, + "network":"193.174.160.0\/25", + "version":46277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.160.128", + "prefixLen":25, + "network":"193.174.160.128\/25", + "version":46276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.161.0", + "prefixLen":25, + "network":"193.174.161.0\/25", + "version":46275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.161.128", + "prefixLen":25, + "network":"193.174.161.128\/25", + "version":46274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.162.0", + "prefixLen":25, + "network":"193.174.162.0\/25", + "version":46273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.162.128", + "prefixLen":25, + "network":"193.174.162.128\/25", + "version":46272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.163.0", + "prefixLen":25, + "network":"193.174.163.0\/25", + "version":46271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.163.128", + "prefixLen":25, + "network":"193.174.163.128\/25", + "version":46270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.176.0", + "prefixLen":25, + "network":"193.174.176.0\/25", + "version":46269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.176.128", + "prefixLen":25, + "network":"193.174.176.128\/25", + "version":46268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.177.0", + "prefixLen":25, + "network":"193.174.177.0\/25", + "version":46267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.177.128", + "prefixLen":25, + "network":"193.174.177.128\/25", + "version":46266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.178.0", + "prefixLen":25, + "network":"193.174.178.0\/25", + "version":46265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.178.128", + "prefixLen":25, + "network":"193.174.178.128\/25", + "version":46264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.179.0", + "prefixLen":25, + "network":"193.174.179.0\/25", + "version":46263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.179.128", + "prefixLen":25, + "network":"193.174.179.128\/25", + "version":46262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.192.0", + "prefixLen":25, + "network":"193.174.192.0\/25", + "version":46261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.192.128", + "prefixLen":25, + "network":"193.174.192.128\/25", + "version":46260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.193.0", + "prefixLen":25, + "network":"193.174.193.0\/25", + "version":46259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.193.128", + "prefixLen":25, + "network":"193.174.193.128\/25", + "version":46258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.194.0", + "prefixLen":25, + "network":"193.174.194.0\/25", + "version":46257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.194.128", + "prefixLen":25, + "network":"193.174.194.128\/25", + "version":46256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.195.0", + "prefixLen":25, + "network":"193.174.195.0\/25", + "version":46255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.195.128", + "prefixLen":25, + "network":"193.174.195.128\/25", + "version":46254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.208.0", + "prefixLen":25, + "network":"193.174.208.0\/25", + "version":46253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.208.128", + "prefixLen":25, + "network":"193.174.208.128\/25", + "version":46252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.209.0", + "prefixLen":25, + "network":"193.174.209.0\/25", + "version":46251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.209.128", + "prefixLen":25, + "network":"193.174.209.128\/25", + "version":46250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.210.0", + "prefixLen":25, + "network":"193.174.210.0\/25", + "version":46249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.210.128", + "prefixLen":25, + "network":"193.174.210.128\/25", + "version":46248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.211.0", + "prefixLen":25, + "network":"193.174.211.0\/25", + "version":46247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.211.128", + "prefixLen":25, + "network":"193.174.211.128\/25", + "version":46246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.224.0", + "prefixLen":25, + "network":"193.174.224.0\/25", + "version":46245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.224.128", + "prefixLen":25, + "network":"193.174.224.128\/25", + "version":46244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.225.0", + "prefixLen":25, + "network":"193.174.225.0\/25", + "version":46243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.225.128", + "prefixLen":25, + "network":"193.174.225.128\/25", + "version":46242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.226.0", + "prefixLen":25, + "network":"193.174.226.0\/25", + "version":46241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.226.128", + "prefixLen":25, + "network":"193.174.226.128\/25", + "version":46240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.227.0", + "prefixLen":25, + "network":"193.174.227.0\/25", + "version":46239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.227.128", + "prefixLen":25, + "network":"193.174.227.128\/25", + "version":46238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.240.0", + "prefixLen":25, + "network":"193.174.240.0\/25", + "version":46237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.240.128", + "prefixLen":25, + "network":"193.174.240.128\/25", + "version":46236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.241.0", + "prefixLen":25, + "network":"193.174.241.0\/25", + "version":46235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.241.128", + "prefixLen":25, + "network":"193.174.241.128\/25", + "version":46234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.242.0", + "prefixLen":25, + "network":"193.174.242.0\/25", + "version":46233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.242.128", + "prefixLen":25, + "network":"193.174.242.128\/25", + "version":46232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.243.0", + "prefixLen":25, + "network":"193.174.243.0\/25", + "version":46231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.174.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.174.243.128", + "prefixLen":25, + "network":"193.174.243.128\/25", + "version":46230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64862 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.0.0", + "prefixLen":25, + "network":"193.175.0.0\/25", + "version":46357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.0.128", + "prefixLen":25, + "network":"193.175.0.128\/25", + "version":46484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.1.0", + "prefixLen":25, + "network":"193.175.1.0\/25", + "version":46483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.1.128", + "prefixLen":25, + "network":"193.175.1.128\/25", + "version":46482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.2.0", + "prefixLen":25, + "network":"193.175.2.0\/25", + "version":46481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.2.128", + "prefixLen":25, + "network":"193.175.2.128\/25", + "version":46480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.3.0", + "prefixLen":25, + "network":"193.175.3.0\/25", + "version":46479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.3.128", + "prefixLen":25, + "network":"193.175.3.128\/25", + "version":46478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.16.0", + "prefixLen":25, + "network":"193.175.16.0\/25", + "version":46477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.16.128", + "prefixLen":25, + "network":"193.175.16.128\/25", + "version":46476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.17.0", + "prefixLen":25, + "network":"193.175.17.0\/25", + "version":46475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.17.128", + "prefixLen":25, + "network":"193.175.17.128\/25", + "version":46474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.18.0", + "prefixLen":25, + "network":"193.175.18.0\/25", + "version":46473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.18.128", + "prefixLen":25, + "network":"193.175.18.128\/25", + "version":46472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.19.0", + "prefixLen":25, + "network":"193.175.19.0\/25", + "version":46471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.19.128", + "prefixLen":25, + "network":"193.175.19.128\/25", + "version":46470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.32.0", + "prefixLen":25, + "network":"193.175.32.0\/25", + "version":46469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.32.128", + "prefixLen":25, + "network":"193.175.32.128\/25", + "version":46468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.33.0", + "prefixLen":25, + "network":"193.175.33.0\/25", + "version":46467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.33.128", + "prefixLen":25, + "network":"193.175.33.128\/25", + "version":46466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.34.0", + "prefixLen":25, + "network":"193.175.34.0\/25", + "version":46465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.34.128", + "prefixLen":25, + "network":"193.175.34.128\/25", + "version":46464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.35.0", + "prefixLen":25, + "network":"193.175.35.0\/25", + "version":46463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.35.128", + "prefixLen":25, + "network":"193.175.35.128\/25", + "version":46462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.48.0", + "prefixLen":25, + "network":"193.175.48.0\/25", + "version":46461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.48.128", + "prefixLen":25, + "network":"193.175.48.128\/25", + "version":46460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.49.0", + "prefixLen":25, + "network":"193.175.49.0\/25", + "version":46459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.49.128", + "prefixLen":25, + "network":"193.175.49.128\/25", + "version":46458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.50.0", + "prefixLen":25, + "network":"193.175.50.0\/25", + "version":46457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.50.128", + "prefixLen":25, + "network":"193.175.50.128\/25", + "version":46456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.51.0", + "prefixLen":25, + "network":"193.175.51.0\/25", + "version":46455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.51.128", + "prefixLen":25, + "network":"193.175.51.128\/25", + "version":46454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.64.0", + "prefixLen":25, + "network":"193.175.64.0\/25", + "version":46453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.64.128", + "prefixLen":25, + "network":"193.175.64.128\/25", + "version":46452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.65.0", + "prefixLen":25, + "network":"193.175.65.0\/25", + "version":46451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.65.128", + "prefixLen":25, + "network":"193.175.65.128\/25", + "version":46450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.66.0", + "prefixLen":25, + "network":"193.175.66.0\/25", + "version":46449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.66.128", + "prefixLen":25, + "network":"193.175.66.128\/25", + "version":46448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.67.0", + "prefixLen":25, + "network":"193.175.67.0\/25", + "version":46447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.67.128", + "prefixLen":25, + "network":"193.175.67.128\/25", + "version":46446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.80.0", + "prefixLen":25, + "network":"193.175.80.0\/25", + "version":46445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.80.128", + "prefixLen":25, + "network":"193.175.80.128\/25", + "version":46444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.81.0", + "prefixLen":25, + "network":"193.175.81.0\/25", + "version":46443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.81.128", + "prefixLen":25, + "network":"193.175.81.128\/25", + "version":46442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.82.0", + "prefixLen":25, + "network":"193.175.82.0\/25", + "version":46441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.82.128", + "prefixLen":25, + "network":"193.175.82.128\/25", + "version":46440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.83.0", + "prefixLen":25, + "network":"193.175.83.0\/25", + "version":46439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.83.128", + "prefixLen":25, + "network":"193.175.83.128\/25", + "version":46438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.96.0", + "prefixLen":25, + "network":"193.175.96.0\/25", + "version":46437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.96.128", + "prefixLen":25, + "network":"193.175.96.128\/25", + "version":46436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.97.0", + "prefixLen":25, + "network":"193.175.97.0\/25", + "version":46435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.97.128", + "prefixLen":25, + "network":"193.175.97.128\/25", + "version":46434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.98.0", + "prefixLen":25, + "network":"193.175.98.0\/25", + "version":46433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.98.128", + "prefixLen":25, + "network":"193.175.98.128\/25", + "version":46432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.99.0", + "prefixLen":25, + "network":"193.175.99.0\/25", + "version":46431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.99.128", + "prefixLen":25, + "network":"193.175.99.128\/25", + "version":46430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.112.0", + "prefixLen":25, + "network":"193.175.112.0\/25", + "version":46429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.112.128", + "prefixLen":25, + "network":"193.175.112.128\/25", + "version":46428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.113.0", + "prefixLen":25, + "network":"193.175.113.0\/25", + "version":46427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.113.128", + "prefixLen":25, + "network":"193.175.113.128\/25", + "version":46426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.114.0", + "prefixLen":25, + "network":"193.175.114.0\/25", + "version":46425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.114.128", + "prefixLen":25, + "network":"193.175.114.128\/25", + "version":46424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.115.0", + "prefixLen":25, + "network":"193.175.115.0\/25", + "version":46423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.115.128", + "prefixLen":25, + "network":"193.175.115.128\/25", + "version":46422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.128.0", + "prefixLen":25, + "network":"193.175.128.0\/25", + "version":46421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.128.128", + "prefixLen":25, + "network":"193.175.128.128\/25", + "version":46420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.129.0", + "prefixLen":25, + "network":"193.175.129.0\/25", + "version":46419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.129.128", + "prefixLen":25, + "network":"193.175.129.128\/25", + "version":46418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.130.0", + "prefixLen":25, + "network":"193.175.130.0\/25", + "version":46417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.130.128", + "prefixLen":25, + "network":"193.175.130.128\/25", + "version":46416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.131.0", + "prefixLen":25, + "network":"193.175.131.0\/25", + "version":46415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.131.128", + "prefixLen":25, + "network":"193.175.131.128\/25", + "version":46414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.144.0", + "prefixLen":25, + "network":"193.175.144.0\/25", + "version":46413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.144.128", + "prefixLen":25, + "network":"193.175.144.128\/25", + "version":46412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.145.0", + "prefixLen":25, + "network":"193.175.145.0\/25", + "version":46411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.145.128", + "prefixLen":25, + "network":"193.175.145.128\/25", + "version":46410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.146.0", + "prefixLen":25, + "network":"193.175.146.0\/25", + "version":46409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.146.128", + "prefixLen":25, + "network":"193.175.146.128\/25", + "version":46408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.147.0", + "prefixLen":25, + "network":"193.175.147.0\/25", + "version":46407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.147.128", + "prefixLen":25, + "network":"193.175.147.128\/25", + "version":46406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.160.0", + "prefixLen":25, + "network":"193.175.160.0\/25", + "version":46405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.160.128", + "prefixLen":25, + "network":"193.175.160.128\/25", + "version":46404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.161.0", + "prefixLen":25, + "network":"193.175.161.0\/25", + "version":46403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.161.128", + "prefixLen":25, + "network":"193.175.161.128\/25", + "version":46402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.162.0", + "prefixLen":25, + "network":"193.175.162.0\/25", + "version":46401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.162.128", + "prefixLen":25, + "network":"193.175.162.128\/25", + "version":46400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.163.0", + "prefixLen":25, + "network":"193.175.163.0\/25", + "version":46399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.163.128", + "prefixLen":25, + "network":"193.175.163.128\/25", + "version":46398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.176.0", + "prefixLen":25, + "network":"193.175.176.0\/25", + "version":46397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.176.128", + "prefixLen":25, + "network":"193.175.176.128\/25", + "version":46396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.177.0", + "prefixLen":25, + "network":"193.175.177.0\/25", + "version":46395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.177.128", + "prefixLen":25, + "network":"193.175.177.128\/25", + "version":46394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.178.0", + "prefixLen":25, + "network":"193.175.178.0\/25", + "version":46393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.178.128", + "prefixLen":25, + "network":"193.175.178.128\/25", + "version":46392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.179.0", + "prefixLen":25, + "network":"193.175.179.0\/25", + "version":46391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.179.128", + "prefixLen":25, + "network":"193.175.179.128\/25", + "version":46390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.192.0", + "prefixLen":25, + "network":"193.175.192.0\/25", + "version":46389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.192.128", + "prefixLen":25, + "network":"193.175.192.128\/25", + "version":46388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.193.0", + "prefixLen":25, + "network":"193.175.193.0\/25", + "version":46387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.193.128", + "prefixLen":25, + "network":"193.175.193.128\/25", + "version":46386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.194.0", + "prefixLen":25, + "network":"193.175.194.0\/25", + "version":46385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.194.128", + "prefixLen":25, + "network":"193.175.194.128\/25", + "version":46384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.195.0", + "prefixLen":25, + "network":"193.175.195.0\/25", + "version":46383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.195.128", + "prefixLen":25, + "network":"193.175.195.128\/25", + "version":46382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.208.0", + "prefixLen":25, + "network":"193.175.208.0\/25", + "version":46381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.208.128", + "prefixLen":25, + "network":"193.175.208.128\/25", + "version":46380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.209.0", + "prefixLen":25, + "network":"193.175.209.0\/25", + "version":46379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.209.128", + "prefixLen":25, + "network":"193.175.209.128\/25", + "version":46378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.210.0", + "prefixLen":25, + "network":"193.175.210.0\/25", + "version":46377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.210.128", + "prefixLen":25, + "network":"193.175.210.128\/25", + "version":46376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.211.0", + "prefixLen":25, + "network":"193.175.211.0\/25", + "version":46375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.211.128", + "prefixLen":25, + "network":"193.175.211.128\/25", + "version":46374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.224.0", + "prefixLen":25, + "network":"193.175.224.0\/25", + "version":46373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.224.128", + "prefixLen":25, + "network":"193.175.224.128\/25", + "version":46372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.225.0", + "prefixLen":25, + "network":"193.175.225.0\/25", + "version":46371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.225.128", + "prefixLen":25, + "network":"193.175.225.128\/25", + "version":46370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.226.0", + "prefixLen":25, + "network":"193.175.226.0\/25", + "version":46369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.226.128", + "prefixLen":25, + "network":"193.175.226.128\/25", + "version":46368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.227.0", + "prefixLen":25, + "network":"193.175.227.0\/25", + "version":46367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.227.128", + "prefixLen":25, + "network":"193.175.227.128\/25", + "version":46366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.240.0", + "prefixLen":25, + "network":"193.175.240.0\/25", + "version":46365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.240.128", + "prefixLen":25, + "network":"193.175.240.128\/25", + "version":46364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.241.0", + "prefixLen":25, + "network":"193.175.241.0\/25", + "version":46363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.241.128", + "prefixLen":25, + "network":"193.175.241.128\/25", + "version":46362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.242.0", + "prefixLen":25, + "network":"193.175.242.0\/25", + "version":46361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.242.128", + "prefixLen":25, + "network":"193.175.242.128\/25", + "version":46360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.243.0", + "prefixLen":25, + "network":"193.175.243.0\/25", + "version":46359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.175.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.175.243.128", + "prefixLen":25, + "network":"193.175.243.128\/25", + "version":46358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64863 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.0.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.0.0", + "prefixLen":25, + "network":"193.176.0.0\/25", + "version":46485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.0.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.0.128", + "prefixLen":25, + "network":"193.176.0.128\/25", + "version":46612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.1.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.1.0", + "prefixLen":25, + "network":"193.176.1.0\/25", + "version":46611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.1.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.1.128", + "prefixLen":25, + "network":"193.176.1.128\/25", + "version":46610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.2.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.2.0", + "prefixLen":25, + "network":"193.176.2.0\/25", + "version":46609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.2.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.2.128", + "prefixLen":25, + "network":"193.176.2.128\/25", + "version":46608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.3.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.3.0", + "prefixLen":25, + "network":"193.176.3.0\/25", + "version":46607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.3.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.3.128", + "prefixLen":25, + "network":"193.176.3.128\/25", + "version":46606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.16.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.16.0", + "prefixLen":25, + "network":"193.176.16.0\/25", + "version":46605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.16.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.16.128", + "prefixLen":25, + "network":"193.176.16.128\/25", + "version":46604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.17.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.17.0", + "prefixLen":25, + "network":"193.176.17.0\/25", + "version":46603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.17.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.17.128", + "prefixLen":25, + "network":"193.176.17.128\/25", + "version":46602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.18.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.18.0", + "prefixLen":25, + "network":"193.176.18.0\/25", + "version":46601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.18.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.18.128", + "prefixLen":25, + "network":"193.176.18.128\/25", + "version":46600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.19.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.19.0", + "prefixLen":25, + "network":"193.176.19.0\/25", + "version":46599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.19.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.19.128", + "prefixLen":25, + "network":"193.176.19.128\/25", + "version":46598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.32.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.32.0", + "prefixLen":25, + "network":"193.176.32.0\/25", + "version":46597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.32.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.32.128", + "prefixLen":25, + "network":"193.176.32.128\/25", + "version":46596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.33.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.33.0", + "prefixLen":25, + "network":"193.176.33.0\/25", + "version":46595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.33.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.33.128", + "prefixLen":25, + "network":"193.176.33.128\/25", + "version":46594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.34.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.34.0", + "prefixLen":25, + "network":"193.176.34.0\/25", + "version":46593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.34.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.34.128", + "prefixLen":25, + "network":"193.176.34.128\/25", + "version":46592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.35.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.35.0", + "prefixLen":25, + "network":"193.176.35.0\/25", + "version":46591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.35.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.35.128", + "prefixLen":25, + "network":"193.176.35.128\/25", + "version":46590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.48.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.48.0", + "prefixLen":25, + "network":"193.176.48.0\/25", + "version":46589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.48.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.48.128", + "prefixLen":25, + "network":"193.176.48.128\/25", + "version":46588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.49.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.49.0", + "prefixLen":25, + "network":"193.176.49.0\/25", + "version":46587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.49.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.49.128", + "prefixLen":25, + "network":"193.176.49.128\/25", + "version":46586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.50.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.50.0", + "prefixLen":25, + "network":"193.176.50.0\/25", + "version":46585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.50.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.50.128", + "prefixLen":25, + "network":"193.176.50.128\/25", + "version":46584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.51.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.51.0", + "prefixLen":25, + "network":"193.176.51.0\/25", + "version":46583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.51.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.51.128", + "prefixLen":25, + "network":"193.176.51.128\/25", + "version":46582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.64.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.64.0", + "prefixLen":25, + "network":"193.176.64.0\/25", + "version":46581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.64.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.64.128", + "prefixLen":25, + "network":"193.176.64.128\/25", + "version":46580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.65.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.65.0", + "prefixLen":25, + "network":"193.176.65.0\/25", + "version":46579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.65.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.65.128", + "prefixLen":25, + "network":"193.176.65.128\/25", + "version":46578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.66.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.66.0", + "prefixLen":25, + "network":"193.176.66.0\/25", + "version":46577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.66.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.66.128", + "prefixLen":25, + "network":"193.176.66.128\/25", + "version":46576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.67.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.67.0", + "prefixLen":25, + "network":"193.176.67.0\/25", + "version":46575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.67.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.67.128", + "prefixLen":25, + "network":"193.176.67.128\/25", + "version":46574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.80.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.80.0", + "prefixLen":25, + "network":"193.176.80.0\/25", + "version":46573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.80.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.80.128", + "prefixLen":25, + "network":"193.176.80.128\/25", + "version":46572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.81.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.81.0", + "prefixLen":25, + "network":"193.176.81.0\/25", + "version":46571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.81.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.81.128", + "prefixLen":25, + "network":"193.176.81.128\/25", + "version":46570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.82.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.82.0", + "prefixLen":25, + "network":"193.176.82.0\/25", + "version":46569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.82.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.82.128", + "prefixLen":25, + "network":"193.176.82.128\/25", + "version":46568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.83.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.83.0", + "prefixLen":25, + "network":"193.176.83.0\/25", + "version":46567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.83.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.83.128", + "prefixLen":25, + "network":"193.176.83.128\/25", + "version":46566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.96.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.96.0", + "prefixLen":25, + "network":"193.176.96.0\/25", + "version":46565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.96.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.96.128", + "prefixLen":25, + "network":"193.176.96.128\/25", + "version":46564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.97.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.97.0", + "prefixLen":25, + "network":"193.176.97.0\/25", + "version":46563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.97.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.97.128", + "prefixLen":25, + "network":"193.176.97.128\/25", + "version":46562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.98.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.98.0", + "prefixLen":25, + "network":"193.176.98.0\/25", + "version":46561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.98.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.98.128", + "prefixLen":25, + "network":"193.176.98.128\/25", + "version":46560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.99.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.99.0", + "prefixLen":25, + "network":"193.176.99.0\/25", + "version":46559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.99.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.99.128", + "prefixLen":25, + "network":"193.176.99.128\/25", + "version":46558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.112.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.112.0", + "prefixLen":25, + "network":"193.176.112.0\/25", + "version":46557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.112.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.112.128", + "prefixLen":25, + "network":"193.176.112.128\/25", + "version":46556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.113.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.113.0", + "prefixLen":25, + "network":"193.176.113.0\/25", + "version":46555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.113.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.113.128", + "prefixLen":25, + "network":"193.176.113.128\/25", + "version":46554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.114.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.114.0", + "prefixLen":25, + "network":"193.176.114.0\/25", + "version":46553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.114.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.114.128", + "prefixLen":25, + "network":"193.176.114.128\/25", + "version":46552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.115.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.115.0", + "prefixLen":25, + "network":"193.176.115.0\/25", + "version":46551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.115.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.115.128", + "prefixLen":25, + "network":"193.176.115.128\/25", + "version":46550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.128.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.128.0", + "prefixLen":25, + "network":"193.176.128.0\/25", + "version":46549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.128.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.128.128", + "prefixLen":25, + "network":"193.176.128.128\/25", + "version":46548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.129.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.129.0", + "prefixLen":25, + "network":"193.176.129.0\/25", + "version":46547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.129.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.129.128", + "prefixLen":25, + "network":"193.176.129.128\/25", + "version":46546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.130.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.130.0", + "prefixLen":25, + "network":"193.176.130.0\/25", + "version":46545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.130.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.130.128", + "prefixLen":25, + "network":"193.176.130.128\/25", + "version":46544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.131.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.131.0", + "prefixLen":25, + "network":"193.176.131.0\/25", + "version":46543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.131.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.131.128", + "prefixLen":25, + "network":"193.176.131.128\/25", + "version":46542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.144.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.144.0", + "prefixLen":25, + "network":"193.176.144.0\/25", + "version":46541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.144.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.144.128", + "prefixLen":25, + "network":"193.176.144.128\/25", + "version":46540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.145.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.145.0", + "prefixLen":25, + "network":"193.176.145.0\/25", + "version":46539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.145.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.145.128", + "prefixLen":25, + "network":"193.176.145.128\/25", + "version":46538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.146.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.146.0", + "prefixLen":25, + "network":"193.176.146.0\/25", + "version":46537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.146.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.146.128", + "prefixLen":25, + "network":"193.176.146.128\/25", + "version":46536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.147.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.147.0", + "prefixLen":25, + "network":"193.176.147.0\/25", + "version":46535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.147.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.147.128", + "prefixLen":25, + "network":"193.176.147.128\/25", + "version":46534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.160.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.160.0", + "prefixLen":25, + "network":"193.176.160.0\/25", + "version":46533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.160.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.160.128", + "prefixLen":25, + "network":"193.176.160.128\/25", + "version":46532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.161.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.161.0", + "prefixLen":25, + "network":"193.176.161.0\/25", + "version":46531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.161.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.161.128", + "prefixLen":25, + "network":"193.176.161.128\/25", + "version":46530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.162.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.162.0", + "prefixLen":25, + "network":"193.176.162.0\/25", + "version":46529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.162.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.162.128", + "prefixLen":25, + "network":"193.176.162.128\/25", + "version":46528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.163.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.163.0", + "prefixLen":25, + "network":"193.176.163.0\/25", + "version":46527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.163.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.163.128", + "prefixLen":25, + "network":"193.176.163.128\/25", + "version":46526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.176.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.176.0", + "prefixLen":25, + "network":"193.176.176.0\/25", + "version":46525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.176.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.176.128", + "prefixLen":25, + "network":"193.176.176.128\/25", + "version":46524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.177.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.177.0", + "prefixLen":25, + "network":"193.176.177.0\/25", + "version":46523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.177.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.177.128", + "prefixLen":25, + "network":"193.176.177.128\/25", + "version":46522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.178.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.178.0", + "prefixLen":25, + "network":"193.176.178.0\/25", + "version":46521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.178.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.178.128", + "prefixLen":25, + "network":"193.176.178.128\/25", + "version":46520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.179.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.179.0", + "prefixLen":25, + "network":"193.176.179.0\/25", + "version":46519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.179.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.179.128", + "prefixLen":25, + "network":"193.176.179.128\/25", + "version":46518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.192.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.192.0", + "prefixLen":25, + "network":"193.176.192.0\/25", + "version":46517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.192.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.192.128", + "prefixLen":25, + "network":"193.176.192.128\/25", + "version":46516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.193.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.193.0", + "prefixLen":25, + "network":"193.176.193.0\/25", + "version":46515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.193.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.193.128", + "prefixLen":25, + "network":"193.176.193.128\/25", + "version":46514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.194.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.194.0", + "prefixLen":25, + "network":"193.176.194.0\/25", + "version":46513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.194.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.194.128", + "prefixLen":25, + "network":"193.176.194.128\/25", + "version":46512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.195.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.195.0", + "prefixLen":25, + "network":"193.176.195.0\/25", + "version":46511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.195.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.195.128", + "prefixLen":25, + "network":"193.176.195.128\/25", + "version":46510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.208.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.208.0", + "prefixLen":25, + "network":"193.176.208.0\/25", + "version":46509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.208.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.208.128", + "prefixLen":25, + "network":"193.176.208.128\/25", + "version":46508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.209.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.209.0", + "prefixLen":25, + "network":"193.176.209.0\/25", + "version":46507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.209.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.209.128", + "prefixLen":25, + "network":"193.176.209.128\/25", + "version":46506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.210.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.210.0", + "prefixLen":25, + "network":"193.176.210.0\/25", + "version":46505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.210.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.210.128", + "prefixLen":25, + "network":"193.176.210.128\/25", + "version":46504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.211.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.211.0", + "prefixLen":25, + "network":"193.176.211.0\/25", + "version":46503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.211.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.211.128", + "prefixLen":25, + "network":"193.176.211.128\/25", + "version":46502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.224.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.224.0", + "prefixLen":25, + "network":"193.176.224.0\/25", + "version":46501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.224.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.224.128", + "prefixLen":25, + "network":"193.176.224.128\/25", + "version":46500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.225.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.225.0", + "prefixLen":25, + "network":"193.176.225.0\/25", + "version":46499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.225.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.225.128", + "prefixLen":25, + "network":"193.176.225.128\/25", + "version":46498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.226.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.226.0", + "prefixLen":25, + "network":"193.176.226.0\/25", + "version":46497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.226.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.226.128", + "prefixLen":25, + "network":"193.176.226.128\/25", + "version":46496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.227.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.227.0", + "prefixLen":25, + "network":"193.176.227.0\/25", + "version":46495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.227.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.227.128", + "prefixLen":25, + "network":"193.176.227.128\/25", + "version":46494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.240.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.240.0", + "prefixLen":25, + "network":"193.176.240.0\/25", + "version":46493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.240.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.240.128", + "prefixLen":25, + "network":"193.176.240.128\/25", + "version":46492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.241.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.241.0", + "prefixLen":25, + "network":"193.176.241.0\/25", + "version":46491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.241.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.241.128", + "prefixLen":25, + "network":"193.176.241.128\/25", + "version":46490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.242.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.242.0", + "prefixLen":25, + "network":"193.176.242.0\/25", + "version":46489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.242.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.242.128", + "prefixLen":25, + "network":"193.176.242.128\/25", + "version":46488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.243.0/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.243.0", + "prefixLen":25, + "network":"193.176.243.0\/25", + "version":46487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.176.243.128/25": [ + { + "valid":true, + "bestpath":true, + "selectionReason":"First path received", + "pathFrom":"internal", + "prefix":"193.176.243.128", + "prefixLen":25, + "network":"193.176.243.128\/25", + "version":46486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64864 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.0.0", + "prefixLen":25, + "network":"193.177.0.0\/25", + "version":46613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.0.0", + "prefixLen":25, + "network":"193.177.0.0\/25", + "version":46613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.0.128", + "prefixLen":25, + "network":"193.177.0.128\/25", + "version":46740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.0.128", + "prefixLen":25, + "network":"193.177.0.128\/25", + "version":46740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.1.0", + "prefixLen":25, + "network":"193.177.1.0\/25", + "version":46739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.1.0", + "prefixLen":25, + "network":"193.177.1.0\/25", + "version":46739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.1.128", + "prefixLen":25, + "network":"193.177.1.128\/25", + "version":46738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.1.128", + "prefixLen":25, + "network":"193.177.1.128\/25", + "version":46738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.2.0", + "prefixLen":25, + "network":"193.177.2.0\/25", + "version":46737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.2.0", + "prefixLen":25, + "network":"193.177.2.0\/25", + "version":46737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.2.128", + "prefixLen":25, + "network":"193.177.2.128\/25", + "version":46736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.2.128", + "prefixLen":25, + "network":"193.177.2.128\/25", + "version":46736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.3.0", + "prefixLen":25, + "network":"193.177.3.0\/25", + "version":46735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.3.0", + "prefixLen":25, + "network":"193.177.3.0\/25", + "version":46735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.3.128", + "prefixLen":25, + "network":"193.177.3.128\/25", + "version":46734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.3.128", + "prefixLen":25, + "network":"193.177.3.128\/25", + "version":46734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.16.0", + "prefixLen":25, + "network":"193.177.16.0\/25", + "version":46733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.16.0", + "prefixLen":25, + "network":"193.177.16.0\/25", + "version":46733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.16.128", + "prefixLen":25, + "network":"193.177.16.128\/25", + "version":46732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.16.128", + "prefixLen":25, + "network":"193.177.16.128\/25", + "version":46732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.17.0", + "prefixLen":25, + "network":"193.177.17.0\/25", + "version":46731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.17.0", + "prefixLen":25, + "network":"193.177.17.0\/25", + "version":46731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.17.128", + "prefixLen":25, + "network":"193.177.17.128\/25", + "version":46730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.17.128", + "prefixLen":25, + "network":"193.177.17.128\/25", + "version":46730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.18.0", + "prefixLen":25, + "network":"193.177.18.0\/25", + "version":46729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.18.0", + "prefixLen":25, + "network":"193.177.18.0\/25", + "version":46729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.18.128", + "prefixLen":25, + "network":"193.177.18.128\/25", + "version":46728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.18.128", + "prefixLen":25, + "network":"193.177.18.128\/25", + "version":46728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.19.0", + "prefixLen":25, + "network":"193.177.19.0\/25", + "version":46727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.19.0", + "prefixLen":25, + "network":"193.177.19.0\/25", + "version":46727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.19.128", + "prefixLen":25, + "network":"193.177.19.128\/25", + "version":46726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.19.128", + "prefixLen":25, + "network":"193.177.19.128\/25", + "version":46726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.32.0", + "prefixLen":25, + "network":"193.177.32.0\/25", + "version":46725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.32.0", + "prefixLen":25, + "network":"193.177.32.0\/25", + "version":46725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.32.128", + "prefixLen":25, + "network":"193.177.32.128\/25", + "version":46724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.32.128", + "prefixLen":25, + "network":"193.177.32.128\/25", + "version":46724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.33.0", + "prefixLen":25, + "network":"193.177.33.0\/25", + "version":46723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.33.0", + "prefixLen":25, + "network":"193.177.33.0\/25", + "version":46723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.33.128", + "prefixLen":25, + "network":"193.177.33.128\/25", + "version":46722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.33.128", + "prefixLen":25, + "network":"193.177.33.128\/25", + "version":46722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.34.0", + "prefixLen":25, + "network":"193.177.34.0\/25", + "version":46721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.34.0", + "prefixLen":25, + "network":"193.177.34.0\/25", + "version":46721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.34.128", + "prefixLen":25, + "network":"193.177.34.128\/25", + "version":46720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.34.128", + "prefixLen":25, + "network":"193.177.34.128\/25", + "version":46720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.35.0", + "prefixLen":25, + "network":"193.177.35.0\/25", + "version":46719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.35.0", + "prefixLen":25, + "network":"193.177.35.0\/25", + "version":46719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.35.128", + "prefixLen":25, + "network":"193.177.35.128\/25", + "version":46718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.35.128", + "prefixLen":25, + "network":"193.177.35.128\/25", + "version":46718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.48.0", + "prefixLen":25, + "network":"193.177.48.0\/25", + "version":46717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.48.0", + "prefixLen":25, + "network":"193.177.48.0\/25", + "version":46717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.48.128", + "prefixLen":25, + "network":"193.177.48.128\/25", + "version":46716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.48.128", + "prefixLen":25, + "network":"193.177.48.128\/25", + "version":46716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.49.0", + "prefixLen":25, + "network":"193.177.49.0\/25", + "version":46715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.49.0", + "prefixLen":25, + "network":"193.177.49.0\/25", + "version":46715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.49.128", + "prefixLen":25, + "network":"193.177.49.128\/25", + "version":46714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.49.128", + "prefixLen":25, + "network":"193.177.49.128\/25", + "version":46714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.50.0", + "prefixLen":25, + "network":"193.177.50.0\/25", + "version":46713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.50.0", + "prefixLen":25, + "network":"193.177.50.0\/25", + "version":46713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.50.128", + "prefixLen":25, + "network":"193.177.50.128\/25", + "version":46712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.50.128", + "prefixLen":25, + "network":"193.177.50.128\/25", + "version":46712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.51.0", + "prefixLen":25, + "network":"193.177.51.0\/25", + "version":46711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.51.0", + "prefixLen":25, + "network":"193.177.51.0\/25", + "version":46711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.51.128", + "prefixLen":25, + "network":"193.177.51.128\/25", + "version":46710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.51.128", + "prefixLen":25, + "network":"193.177.51.128\/25", + "version":46710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.64.0", + "prefixLen":25, + "network":"193.177.64.0\/25", + "version":46709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.64.0", + "prefixLen":25, + "network":"193.177.64.0\/25", + "version":46709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.64.128", + "prefixLen":25, + "network":"193.177.64.128\/25", + "version":46708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.64.128", + "prefixLen":25, + "network":"193.177.64.128\/25", + "version":46708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.65.0", + "prefixLen":25, + "network":"193.177.65.0\/25", + "version":46707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.65.0", + "prefixLen":25, + "network":"193.177.65.0\/25", + "version":46707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.65.128", + "prefixLen":25, + "network":"193.177.65.128\/25", + "version":46706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.65.128", + "prefixLen":25, + "network":"193.177.65.128\/25", + "version":46706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.66.0", + "prefixLen":25, + "network":"193.177.66.0\/25", + "version":46705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.66.0", + "prefixLen":25, + "network":"193.177.66.0\/25", + "version":46705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.66.128", + "prefixLen":25, + "network":"193.177.66.128\/25", + "version":46704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.66.128", + "prefixLen":25, + "network":"193.177.66.128\/25", + "version":46704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.67.0", + "prefixLen":25, + "network":"193.177.67.0\/25", + "version":46703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.67.0", + "prefixLen":25, + "network":"193.177.67.0\/25", + "version":46703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.67.128", + "prefixLen":25, + "network":"193.177.67.128\/25", + "version":46702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.67.128", + "prefixLen":25, + "network":"193.177.67.128\/25", + "version":46702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.80.0", + "prefixLen":25, + "network":"193.177.80.0\/25", + "version":46701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.80.0", + "prefixLen":25, + "network":"193.177.80.0\/25", + "version":46701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.80.128", + "prefixLen":25, + "network":"193.177.80.128\/25", + "version":46700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.80.128", + "prefixLen":25, + "network":"193.177.80.128\/25", + "version":46700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.81.0", + "prefixLen":25, + "network":"193.177.81.0\/25", + "version":46699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.81.0", + "prefixLen":25, + "network":"193.177.81.0\/25", + "version":46699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.81.128", + "prefixLen":25, + "network":"193.177.81.128\/25", + "version":46698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.81.128", + "prefixLen":25, + "network":"193.177.81.128\/25", + "version":46698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.82.0", + "prefixLen":25, + "network":"193.177.82.0\/25", + "version":46697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.82.0", + "prefixLen":25, + "network":"193.177.82.0\/25", + "version":46697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.82.128", + "prefixLen":25, + "network":"193.177.82.128\/25", + "version":46696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.82.128", + "prefixLen":25, + "network":"193.177.82.128\/25", + "version":46696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.83.0", + "prefixLen":25, + "network":"193.177.83.0\/25", + "version":46695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.83.0", + "prefixLen":25, + "network":"193.177.83.0\/25", + "version":46695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.83.128", + "prefixLen":25, + "network":"193.177.83.128\/25", + "version":46694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.83.128", + "prefixLen":25, + "network":"193.177.83.128\/25", + "version":46694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.96.0", + "prefixLen":25, + "network":"193.177.96.0\/25", + "version":46693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.96.0", + "prefixLen":25, + "network":"193.177.96.0\/25", + "version":46693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.96.128", + "prefixLen":25, + "network":"193.177.96.128\/25", + "version":46692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.96.128", + "prefixLen":25, + "network":"193.177.96.128\/25", + "version":46692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.97.0", + "prefixLen":25, + "network":"193.177.97.0\/25", + "version":46691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.97.0", + "prefixLen":25, + "network":"193.177.97.0\/25", + "version":46691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.97.128", + "prefixLen":25, + "network":"193.177.97.128\/25", + "version":46690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.97.128", + "prefixLen":25, + "network":"193.177.97.128\/25", + "version":46690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.98.0", + "prefixLen":25, + "network":"193.177.98.0\/25", + "version":46689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.98.0", + "prefixLen":25, + "network":"193.177.98.0\/25", + "version":46689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.98.128", + "prefixLen":25, + "network":"193.177.98.128\/25", + "version":46688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.98.128", + "prefixLen":25, + "network":"193.177.98.128\/25", + "version":46688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.99.0", + "prefixLen":25, + "network":"193.177.99.0\/25", + "version":46687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.99.0", + "prefixLen":25, + "network":"193.177.99.0\/25", + "version":46687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.99.128", + "prefixLen":25, + "network":"193.177.99.128\/25", + "version":46686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.99.128", + "prefixLen":25, + "network":"193.177.99.128\/25", + "version":46686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.112.0", + "prefixLen":25, + "network":"193.177.112.0\/25", + "version":46685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.112.0", + "prefixLen":25, + "network":"193.177.112.0\/25", + "version":46685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.112.128", + "prefixLen":25, + "network":"193.177.112.128\/25", + "version":46684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.112.128", + "prefixLen":25, + "network":"193.177.112.128\/25", + "version":46684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.113.0", + "prefixLen":25, + "network":"193.177.113.0\/25", + "version":46683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.113.0", + "prefixLen":25, + "network":"193.177.113.0\/25", + "version":46683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.113.128", + "prefixLen":25, + "network":"193.177.113.128\/25", + "version":46682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.113.128", + "prefixLen":25, + "network":"193.177.113.128\/25", + "version":46682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.114.0", + "prefixLen":25, + "network":"193.177.114.0\/25", + "version":46681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.114.0", + "prefixLen":25, + "network":"193.177.114.0\/25", + "version":46681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.114.128", + "prefixLen":25, + "network":"193.177.114.128\/25", + "version":46680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.114.128", + "prefixLen":25, + "network":"193.177.114.128\/25", + "version":46680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.115.0", + "prefixLen":25, + "network":"193.177.115.0\/25", + "version":46679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.115.0", + "prefixLen":25, + "network":"193.177.115.0\/25", + "version":46679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.115.128", + "prefixLen":25, + "network":"193.177.115.128\/25", + "version":46678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.115.128", + "prefixLen":25, + "network":"193.177.115.128\/25", + "version":46678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.128.0", + "prefixLen":25, + "network":"193.177.128.0\/25", + "version":46677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.128.0", + "prefixLen":25, + "network":"193.177.128.0\/25", + "version":46677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.128.128", + "prefixLen":25, + "network":"193.177.128.128\/25", + "version":46676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.128.128", + "prefixLen":25, + "network":"193.177.128.128\/25", + "version":46676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.129.0", + "prefixLen":25, + "network":"193.177.129.0\/25", + "version":46675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.129.0", + "prefixLen":25, + "network":"193.177.129.0\/25", + "version":46675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.129.128", + "prefixLen":25, + "network":"193.177.129.128\/25", + "version":46674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.129.128", + "prefixLen":25, + "network":"193.177.129.128\/25", + "version":46674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.130.0", + "prefixLen":25, + "network":"193.177.130.0\/25", + "version":46673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.130.0", + "prefixLen":25, + "network":"193.177.130.0\/25", + "version":46673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.130.128", + "prefixLen":25, + "network":"193.177.130.128\/25", + "version":46672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.130.128", + "prefixLen":25, + "network":"193.177.130.128\/25", + "version":46672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.131.0", + "prefixLen":25, + "network":"193.177.131.0\/25", + "version":46671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.131.0", + "prefixLen":25, + "network":"193.177.131.0\/25", + "version":46671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.131.128", + "prefixLen":25, + "network":"193.177.131.128\/25", + "version":46670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.131.128", + "prefixLen":25, + "network":"193.177.131.128\/25", + "version":46670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.144.0", + "prefixLen":25, + "network":"193.177.144.0\/25", + "version":46669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.144.0", + "prefixLen":25, + "network":"193.177.144.0\/25", + "version":46669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.144.128", + "prefixLen":25, + "network":"193.177.144.128\/25", + "version":46668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.144.128", + "prefixLen":25, + "network":"193.177.144.128\/25", + "version":46668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.145.0", + "prefixLen":25, + "network":"193.177.145.0\/25", + "version":46667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.145.0", + "prefixLen":25, + "network":"193.177.145.0\/25", + "version":46667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.145.128", + "prefixLen":25, + "network":"193.177.145.128\/25", + "version":46666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.145.128", + "prefixLen":25, + "network":"193.177.145.128\/25", + "version":46666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.146.0", + "prefixLen":25, + "network":"193.177.146.0\/25", + "version":46665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.146.0", + "prefixLen":25, + "network":"193.177.146.0\/25", + "version":46665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.146.128", + "prefixLen":25, + "network":"193.177.146.128\/25", + "version":46664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.146.128", + "prefixLen":25, + "network":"193.177.146.128\/25", + "version":46664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.147.0", + "prefixLen":25, + "network":"193.177.147.0\/25", + "version":46663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.147.0", + "prefixLen":25, + "network":"193.177.147.0\/25", + "version":46663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.147.128", + "prefixLen":25, + "network":"193.177.147.128\/25", + "version":46662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.147.128", + "prefixLen":25, + "network":"193.177.147.128\/25", + "version":46662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.160.0", + "prefixLen":25, + "network":"193.177.160.0\/25", + "version":46661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.160.0", + "prefixLen":25, + "network":"193.177.160.0\/25", + "version":46661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.160.128", + "prefixLen":25, + "network":"193.177.160.128\/25", + "version":46660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.160.128", + "prefixLen":25, + "network":"193.177.160.128\/25", + "version":46660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.161.0", + "prefixLen":25, + "network":"193.177.161.0\/25", + "version":46659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.161.0", + "prefixLen":25, + "network":"193.177.161.0\/25", + "version":46659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.161.128", + "prefixLen":25, + "network":"193.177.161.128\/25", + "version":46658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.161.128", + "prefixLen":25, + "network":"193.177.161.128\/25", + "version":46658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.162.0", + "prefixLen":25, + "network":"193.177.162.0\/25", + "version":46657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.162.0", + "prefixLen":25, + "network":"193.177.162.0\/25", + "version":46657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.162.128", + "prefixLen":25, + "network":"193.177.162.128\/25", + "version":46656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.162.128", + "prefixLen":25, + "network":"193.177.162.128\/25", + "version":46656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.163.0", + "prefixLen":25, + "network":"193.177.163.0\/25", + "version":46655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.163.0", + "prefixLen":25, + "network":"193.177.163.0\/25", + "version":46655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.163.128", + "prefixLen":25, + "network":"193.177.163.128\/25", + "version":46654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.163.128", + "prefixLen":25, + "network":"193.177.163.128\/25", + "version":46654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.176.0", + "prefixLen":25, + "network":"193.177.176.0\/25", + "version":46653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.176.0", + "prefixLen":25, + "network":"193.177.176.0\/25", + "version":46653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.176.128", + "prefixLen":25, + "network":"193.177.176.128\/25", + "version":46652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.176.128", + "prefixLen":25, + "network":"193.177.176.128\/25", + "version":46652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.177.0", + "prefixLen":25, + "network":"193.177.177.0\/25", + "version":46651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.177.0", + "prefixLen":25, + "network":"193.177.177.0\/25", + "version":46651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.177.128", + "prefixLen":25, + "network":"193.177.177.128\/25", + "version":46650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.177.128", + "prefixLen":25, + "network":"193.177.177.128\/25", + "version":46650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.178.0", + "prefixLen":25, + "network":"193.177.178.0\/25", + "version":46649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.178.0", + "prefixLen":25, + "network":"193.177.178.0\/25", + "version":46649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.178.128", + "prefixLen":25, + "network":"193.177.178.128\/25", + "version":46648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.178.128", + "prefixLen":25, + "network":"193.177.178.128\/25", + "version":46648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.179.0", + "prefixLen":25, + "network":"193.177.179.0\/25", + "version":46647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.179.0", + "prefixLen":25, + "network":"193.177.179.0\/25", + "version":46647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.179.128", + "prefixLen":25, + "network":"193.177.179.128\/25", + "version":46646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.179.128", + "prefixLen":25, + "network":"193.177.179.128\/25", + "version":46646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.192.0", + "prefixLen":25, + "network":"193.177.192.0\/25", + "version":46645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.192.0", + "prefixLen":25, + "network":"193.177.192.0\/25", + "version":46645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.192.128", + "prefixLen":25, + "network":"193.177.192.128\/25", + "version":46644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.192.128", + "prefixLen":25, + "network":"193.177.192.128\/25", + "version":46644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.193.0", + "prefixLen":25, + "network":"193.177.193.0\/25", + "version":46643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.193.0", + "prefixLen":25, + "network":"193.177.193.0\/25", + "version":46643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.193.128", + "prefixLen":25, + "network":"193.177.193.128\/25", + "version":46642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.193.128", + "prefixLen":25, + "network":"193.177.193.128\/25", + "version":46642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.194.0", + "prefixLen":25, + "network":"193.177.194.0\/25", + "version":46641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.194.0", + "prefixLen":25, + "network":"193.177.194.0\/25", + "version":46641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.194.128", + "prefixLen":25, + "network":"193.177.194.128\/25", + "version":46640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.194.128", + "prefixLen":25, + "network":"193.177.194.128\/25", + "version":46640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.195.0", + "prefixLen":25, + "network":"193.177.195.0\/25", + "version":46639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.195.0", + "prefixLen":25, + "network":"193.177.195.0\/25", + "version":46639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.195.128", + "prefixLen":25, + "network":"193.177.195.128\/25", + "version":46638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.195.128", + "prefixLen":25, + "network":"193.177.195.128\/25", + "version":46638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.208.0", + "prefixLen":25, + "network":"193.177.208.0\/25", + "version":46637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.208.0", + "prefixLen":25, + "network":"193.177.208.0\/25", + "version":46637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.208.128", + "prefixLen":25, + "network":"193.177.208.128\/25", + "version":46636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.208.128", + "prefixLen":25, + "network":"193.177.208.128\/25", + "version":46636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.209.0", + "prefixLen":25, + "network":"193.177.209.0\/25", + "version":46635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.209.0", + "prefixLen":25, + "network":"193.177.209.0\/25", + "version":46635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.209.128", + "prefixLen":25, + "network":"193.177.209.128\/25", + "version":46634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.209.128", + "prefixLen":25, + "network":"193.177.209.128\/25", + "version":46634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.210.0", + "prefixLen":25, + "network":"193.177.210.0\/25", + "version":46633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.210.0", + "prefixLen":25, + "network":"193.177.210.0\/25", + "version":46633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.210.128", + "prefixLen":25, + "network":"193.177.210.128\/25", + "version":46632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.210.128", + "prefixLen":25, + "network":"193.177.210.128\/25", + "version":46632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.211.0", + "prefixLen":25, + "network":"193.177.211.0\/25", + "version":46631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.211.0", + "prefixLen":25, + "network":"193.177.211.0\/25", + "version":46631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.211.128", + "prefixLen":25, + "network":"193.177.211.128\/25", + "version":46630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.211.128", + "prefixLen":25, + "network":"193.177.211.128\/25", + "version":46630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.224.0", + "prefixLen":25, + "network":"193.177.224.0\/25", + "version":46629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.224.0", + "prefixLen":25, + "network":"193.177.224.0\/25", + "version":46629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.224.128", + "prefixLen":25, + "network":"193.177.224.128\/25", + "version":46628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.224.128", + "prefixLen":25, + "network":"193.177.224.128\/25", + "version":46628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.225.0", + "prefixLen":25, + "network":"193.177.225.0\/25", + "version":46627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.225.0", + "prefixLen":25, + "network":"193.177.225.0\/25", + "version":46627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.225.128", + "prefixLen":25, + "network":"193.177.225.128\/25", + "version":46626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.225.128", + "prefixLen":25, + "network":"193.177.225.128\/25", + "version":46626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.226.0", + "prefixLen":25, + "network":"193.177.226.0\/25", + "version":46625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.226.0", + "prefixLen":25, + "network":"193.177.226.0\/25", + "version":46625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.226.128", + "prefixLen":25, + "network":"193.177.226.128\/25", + "version":46624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.226.128", + "prefixLen":25, + "network":"193.177.226.128\/25", + "version":46624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.227.0", + "prefixLen":25, + "network":"193.177.227.0\/25", + "version":46623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.227.0", + "prefixLen":25, + "network":"193.177.227.0\/25", + "version":46623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.227.128", + "prefixLen":25, + "network":"193.177.227.128\/25", + "version":46622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.227.128", + "prefixLen":25, + "network":"193.177.227.128\/25", + "version":46622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.240.0", + "prefixLen":25, + "network":"193.177.240.0\/25", + "version":46621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.240.0", + "prefixLen":25, + "network":"193.177.240.0\/25", + "version":46621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.240.128", + "prefixLen":25, + "network":"193.177.240.128\/25", + "version":46620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.240.128", + "prefixLen":25, + "network":"193.177.240.128\/25", + "version":46620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.241.0", + "prefixLen":25, + "network":"193.177.241.0\/25", + "version":46619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.241.0", + "prefixLen":25, + "network":"193.177.241.0\/25", + "version":46619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.241.128", + "prefixLen":25, + "network":"193.177.241.128\/25", + "version":46618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.241.128", + "prefixLen":25, + "network":"193.177.241.128\/25", + "version":46618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.242.0", + "prefixLen":25, + "network":"193.177.242.0\/25", + "version":46617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.242.0", + "prefixLen":25, + "network":"193.177.242.0\/25", + "version":46617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.242.128", + "prefixLen":25, + "network":"193.177.242.128\/25", + "version":46616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.242.128", + "prefixLen":25, + "network":"193.177.242.128\/25", + "version":46616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.243.0", + "prefixLen":25, + "network":"193.177.243.0\/25", + "version":46615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.243.0", + "prefixLen":25, + "network":"193.177.243.0\/25", + "version":46615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.177.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.177.243.128", + "prefixLen":25, + "network":"193.177.243.128\/25", + "version":46614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.177.243.128", + "prefixLen":25, + "network":"193.177.243.128\/25", + "version":46614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64865 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.0.0", + "prefixLen":25, + "network":"193.178.0.0\/25", + "version":46741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.0.0", + "prefixLen":25, + "network":"193.178.0.0\/25", + "version":46741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.0.128", + "prefixLen":25, + "network":"193.178.0.128\/25", + "version":46868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.0.128", + "prefixLen":25, + "network":"193.178.0.128\/25", + "version":46868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.1.0", + "prefixLen":25, + "network":"193.178.1.0\/25", + "version":46867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.1.0", + "prefixLen":25, + "network":"193.178.1.0\/25", + "version":46867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.1.128", + "prefixLen":25, + "network":"193.178.1.128\/25", + "version":46866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.1.128", + "prefixLen":25, + "network":"193.178.1.128\/25", + "version":46866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.2.0", + "prefixLen":25, + "network":"193.178.2.0\/25", + "version":46865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.2.0", + "prefixLen":25, + "network":"193.178.2.0\/25", + "version":46865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.2.128", + "prefixLen":25, + "network":"193.178.2.128\/25", + "version":46864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.2.128", + "prefixLen":25, + "network":"193.178.2.128\/25", + "version":46864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.3.0", + "prefixLen":25, + "network":"193.178.3.0\/25", + "version":46863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.3.0", + "prefixLen":25, + "network":"193.178.3.0\/25", + "version":46863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.3.128", + "prefixLen":25, + "network":"193.178.3.128\/25", + "version":46862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.3.128", + "prefixLen":25, + "network":"193.178.3.128\/25", + "version":46862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.16.0", + "prefixLen":25, + "network":"193.178.16.0\/25", + "version":46861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.16.0", + "prefixLen":25, + "network":"193.178.16.0\/25", + "version":46861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.16.128", + "prefixLen":25, + "network":"193.178.16.128\/25", + "version":46860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.16.128", + "prefixLen":25, + "network":"193.178.16.128\/25", + "version":46860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.17.0", + "prefixLen":25, + "network":"193.178.17.0\/25", + "version":46859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.17.0", + "prefixLen":25, + "network":"193.178.17.0\/25", + "version":46859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.17.128", + "prefixLen":25, + "network":"193.178.17.128\/25", + "version":46858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.17.128", + "prefixLen":25, + "network":"193.178.17.128\/25", + "version":46858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.18.0", + "prefixLen":25, + "network":"193.178.18.0\/25", + "version":46857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.18.0", + "prefixLen":25, + "network":"193.178.18.0\/25", + "version":46857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.18.128", + "prefixLen":25, + "network":"193.178.18.128\/25", + "version":46856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.18.128", + "prefixLen":25, + "network":"193.178.18.128\/25", + "version":46856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.19.0", + "prefixLen":25, + "network":"193.178.19.0\/25", + "version":46855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.19.0", + "prefixLen":25, + "network":"193.178.19.0\/25", + "version":46855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.19.128", + "prefixLen":25, + "network":"193.178.19.128\/25", + "version":46854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.19.128", + "prefixLen":25, + "network":"193.178.19.128\/25", + "version":46854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.32.0", + "prefixLen":25, + "network":"193.178.32.0\/25", + "version":46853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.32.0", + "prefixLen":25, + "network":"193.178.32.0\/25", + "version":46853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.32.128", + "prefixLen":25, + "network":"193.178.32.128\/25", + "version":46852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.32.128", + "prefixLen":25, + "network":"193.178.32.128\/25", + "version":46852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.33.0", + "prefixLen":25, + "network":"193.178.33.0\/25", + "version":46851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.33.0", + "prefixLen":25, + "network":"193.178.33.0\/25", + "version":46851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.33.128", + "prefixLen":25, + "network":"193.178.33.128\/25", + "version":46850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.33.128", + "prefixLen":25, + "network":"193.178.33.128\/25", + "version":46850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.34.0", + "prefixLen":25, + "network":"193.178.34.0\/25", + "version":46849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.34.0", + "prefixLen":25, + "network":"193.178.34.0\/25", + "version":46849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.34.128", + "prefixLen":25, + "network":"193.178.34.128\/25", + "version":46848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.34.128", + "prefixLen":25, + "network":"193.178.34.128\/25", + "version":46848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.35.0", + "prefixLen":25, + "network":"193.178.35.0\/25", + "version":46847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.35.0", + "prefixLen":25, + "network":"193.178.35.0\/25", + "version":46847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.35.128", + "prefixLen":25, + "network":"193.178.35.128\/25", + "version":46846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.35.128", + "prefixLen":25, + "network":"193.178.35.128\/25", + "version":46846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.48.0", + "prefixLen":25, + "network":"193.178.48.0\/25", + "version":46845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.48.0", + "prefixLen":25, + "network":"193.178.48.0\/25", + "version":46845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.48.128", + "prefixLen":25, + "network":"193.178.48.128\/25", + "version":46844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.48.128", + "prefixLen":25, + "network":"193.178.48.128\/25", + "version":46844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.49.0", + "prefixLen":25, + "network":"193.178.49.0\/25", + "version":46843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.49.0", + "prefixLen":25, + "network":"193.178.49.0\/25", + "version":46843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.49.128", + "prefixLen":25, + "network":"193.178.49.128\/25", + "version":46842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.49.128", + "prefixLen":25, + "network":"193.178.49.128\/25", + "version":46842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.50.0", + "prefixLen":25, + "network":"193.178.50.0\/25", + "version":46841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.50.0", + "prefixLen":25, + "network":"193.178.50.0\/25", + "version":46841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.50.128", + "prefixLen":25, + "network":"193.178.50.128\/25", + "version":46840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.50.128", + "prefixLen":25, + "network":"193.178.50.128\/25", + "version":46840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.51.0", + "prefixLen":25, + "network":"193.178.51.0\/25", + "version":46839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.51.0", + "prefixLen":25, + "network":"193.178.51.0\/25", + "version":46839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.51.128", + "prefixLen":25, + "network":"193.178.51.128\/25", + "version":46838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.51.128", + "prefixLen":25, + "network":"193.178.51.128\/25", + "version":46838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.64.0", + "prefixLen":25, + "network":"193.178.64.0\/25", + "version":46837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.64.0", + "prefixLen":25, + "network":"193.178.64.0\/25", + "version":46837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.64.128", + "prefixLen":25, + "network":"193.178.64.128\/25", + "version":46836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.64.128", + "prefixLen":25, + "network":"193.178.64.128\/25", + "version":46836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.65.0", + "prefixLen":25, + "network":"193.178.65.0\/25", + "version":46835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.65.0", + "prefixLen":25, + "network":"193.178.65.0\/25", + "version":46835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.65.128", + "prefixLen":25, + "network":"193.178.65.128\/25", + "version":46834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.65.128", + "prefixLen":25, + "network":"193.178.65.128\/25", + "version":46834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.66.0", + "prefixLen":25, + "network":"193.178.66.0\/25", + "version":46833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.66.0", + "prefixLen":25, + "network":"193.178.66.0\/25", + "version":46833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.66.128", + "prefixLen":25, + "network":"193.178.66.128\/25", + "version":46832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.66.128", + "prefixLen":25, + "network":"193.178.66.128\/25", + "version":46832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.67.0", + "prefixLen":25, + "network":"193.178.67.0\/25", + "version":46831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.67.0", + "prefixLen":25, + "network":"193.178.67.0\/25", + "version":46831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.67.128", + "prefixLen":25, + "network":"193.178.67.128\/25", + "version":46830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.67.128", + "prefixLen":25, + "network":"193.178.67.128\/25", + "version":46830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.80.0", + "prefixLen":25, + "network":"193.178.80.0\/25", + "version":46829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.80.0", + "prefixLen":25, + "network":"193.178.80.0\/25", + "version":46829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.80.128", + "prefixLen":25, + "network":"193.178.80.128\/25", + "version":46828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.80.128", + "prefixLen":25, + "network":"193.178.80.128\/25", + "version":46828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.81.0", + "prefixLen":25, + "network":"193.178.81.0\/25", + "version":46827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.81.0", + "prefixLen":25, + "network":"193.178.81.0\/25", + "version":46827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.81.128", + "prefixLen":25, + "network":"193.178.81.128\/25", + "version":46826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.81.128", + "prefixLen":25, + "network":"193.178.81.128\/25", + "version":46826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.82.0", + "prefixLen":25, + "network":"193.178.82.0\/25", + "version":46825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.82.0", + "prefixLen":25, + "network":"193.178.82.0\/25", + "version":46825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.82.128", + "prefixLen":25, + "network":"193.178.82.128\/25", + "version":46824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.82.128", + "prefixLen":25, + "network":"193.178.82.128\/25", + "version":46824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.83.0", + "prefixLen":25, + "network":"193.178.83.0\/25", + "version":46823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.83.0", + "prefixLen":25, + "network":"193.178.83.0\/25", + "version":46823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.83.128", + "prefixLen":25, + "network":"193.178.83.128\/25", + "version":46822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.83.128", + "prefixLen":25, + "network":"193.178.83.128\/25", + "version":46822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.96.0", + "prefixLen":25, + "network":"193.178.96.0\/25", + "version":46821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.96.0", + "prefixLen":25, + "network":"193.178.96.0\/25", + "version":46821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.96.128", + "prefixLen":25, + "network":"193.178.96.128\/25", + "version":46820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.96.128", + "prefixLen":25, + "network":"193.178.96.128\/25", + "version":46820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.97.0", + "prefixLen":25, + "network":"193.178.97.0\/25", + "version":46819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.97.0", + "prefixLen":25, + "network":"193.178.97.0\/25", + "version":46819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.97.128", + "prefixLen":25, + "network":"193.178.97.128\/25", + "version":46818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.97.128", + "prefixLen":25, + "network":"193.178.97.128\/25", + "version":46818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.98.0", + "prefixLen":25, + "network":"193.178.98.0\/25", + "version":46817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.98.0", + "prefixLen":25, + "network":"193.178.98.0\/25", + "version":46817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.98.128", + "prefixLen":25, + "network":"193.178.98.128\/25", + "version":46816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.98.128", + "prefixLen":25, + "network":"193.178.98.128\/25", + "version":46816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.99.0", + "prefixLen":25, + "network":"193.178.99.0\/25", + "version":46815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.99.0", + "prefixLen":25, + "network":"193.178.99.0\/25", + "version":46815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.99.128", + "prefixLen":25, + "network":"193.178.99.128\/25", + "version":46814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.99.128", + "prefixLen":25, + "network":"193.178.99.128\/25", + "version":46814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.112.0", + "prefixLen":25, + "network":"193.178.112.0\/25", + "version":46813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.112.0", + "prefixLen":25, + "network":"193.178.112.0\/25", + "version":46813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.112.128", + "prefixLen":25, + "network":"193.178.112.128\/25", + "version":46812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.112.128", + "prefixLen":25, + "network":"193.178.112.128\/25", + "version":46812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.113.0", + "prefixLen":25, + "network":"193.178.113.0\/25", + "version":46811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.113.0", + "prefixLen":25, + "network":"193.178.113.0\/25", + "version":46811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.113.128", + "prefixLen":25, + "network":"193.178.113.128\/25", + "version":46810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.113.128", + "prefixLen":25, + "network":"193.178.113.128\/25", + "version":46810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.114.0", + "prefixLen":25, + "network":"193.178.114.0\/25", + "version":46809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.114.0", + "prefixLen":25, + "network":"193.178.114.0\/25", + "version":46809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.114.128", + "prefixLen":25, + "network":"193.178.114.128\/25", + "version":46808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.114.128", + "prefixLen":25, + "network":"193.178.114.128\/25", + "version":46808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.115.0", + "prefixLen":25, + "network":"193.178.115.0\/25", + "version":46807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.115.0", + "prefixLen":25, + "network":"193.178.115.0\/25", + "version":46807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.115.128", + "prefixLen":25, + "network":"193.178.115.128\/25", + "version":46806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.115.128", + "prefixLen":25, + "network":"193.178.115.128\/25", + "version":46806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.128.0", + "prefixLen":25, + "network":"193.178.128.0\/25", + "version":46805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.128.0", + "prefixLen":25, + "network":"193.178.128.0\/25", + "version":46805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.128.128", + "prefixLen":25, + "network":"193.178.128.128\/25", + "version":46804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.128.128", + "prefixLen":25, + "network":"193.178.128.128\/25", + "version":46804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.129.0", + "prefixLen":25, + "network":"193.178.129.0\/25", + "version":46803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.129.0", + "prefixLen":25, + "network":"193.178.129.0\/25", + "version":46803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.129.128", + "prefixLen":25, + "network":"193.178.129.128\/25", + "version":46802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.129.128", + "prefixLen":25, + "network":"193.178.129.128\/25", + "version":46802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.130.0", + "prefixLen":25, + "network":"193.178.130.0\/25", + "version":46801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.130.0", + "prefixLen":25, + "network":"193.178.130.0\/25", + "version":46801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.130.128", + "prefixLen":25, + "network":"193.178.130.128\/25", + "version":46800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.130.128", + "prefixLen":25, + "network":"193.178.130.128\/25", + "version":46800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.131.0", + "prefixLen":25, + "network":"193.178.131.0\/25", + "version":46799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.131.0", + "prefixLen":25, + "network":"193.178.131.0\/25", + "version":46799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.131.128", + "prefixLen":25, + "network":"193.178.131.128\/25", + "version":46798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.131.128", + "prefixLen":25, + "network":"193.178.131.128\/25", + "version":46798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.144.0", + "prefixLen":25, + "network":"193.178.144.0\/25", + "version":46797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.144.0", + "prefixLen":25, + "network":"193.178.144.0\/25", + "version":46797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.144.128", + "prefixLen":25, + "network":"193.178.144.128\/25", + "version":46796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.144.128", + "prefixLen":25, + "network":"193.178.144.128\/25", + "version":46796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.145.0", + "prefixLen":25, + "network":"193.178.145.0\/25", + "version":46795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.145.0", + "prefixLen":25, + "network":"193.178.145.0\/25", + "version":46795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.145.128", + "prefixLen":25, + "network":"193.178.145.128\/25", + "version":46794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.145.128", + "prefixLen":25, + "network":"193.178.145.128\/25", + "version":46794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.146.0", + "prefixLen":25, + "network":"193.178.146.0\/25", + "version":46793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.146.0", + "prefixLen":25, + "network":"193.178.146.0\/25", + "version":46793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.146.128", + "prefixLen":25, + "network":"193.178.146.128\/25", + "version":46792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.146.128", + "prefixLen":25, + "network":"193.178.146.128\/25", + "version":46792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.147.0", + "prefixLen":25, + "network":"193.178.147.0\/25", + "version":46791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.147.0", + "prefixLen":25, + "network":"193.178.147.0\/25", + "version":46791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.147.128", + "prefixLen":25, + "network":"193.178.147.128\/25", + "version":46790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.147.128", + "prefixLen":25, + "network":"193.178.147.128\/25", + "version":46790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.160.0", + "prefixLen":25, + "network":"193.178.160.0\/25", + "version":46789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.160.0", + "prefixLen":25, + "network":"193.178.160.0\/25", + "version":46789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.160.128", + "prefixLen":25, + "network":"193.178.160.128\/25", + "version":46788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.160.128", + "prefixLen":25, + "network":"193.178.160.128\/25", + "version":46788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.161.0", + "prefixLen":25, + "network":"193.178.161.0\/25", + "version":46787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.161.0", + "prefixLen":25, + "network":"193.178.161.0\/25", + "version":46787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.161.128", + "prefixLen":25, + "network":"193.178.161.128\/25", + "version":46786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.161.128", + "prefixLen":25, + "network":"193.178.161.128\/25", + "version":46786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.162.0", + "prefixLen":25, + "network":"193.178.162.0\/25", + "version":46785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.162.0", + "prefixLen":25, + "network":"193.178.162.0\/25", + "version":46785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.162.128", + "prefixLen":25, + "network":"193.178.162.128\/25", + "version":46784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.162.128", + "prefixLen":25, + "network":"193.178.162.128\/25", + "version":46784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.163.0", + "prefixLen":25, + "network":"193.178.163.0\/25", + "version":46783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.163.0", + "prefixLen":25, + "network":"193.178.163.0\/25", + "version":46783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.163.128", + "prefixLen":25, + "network":"193.178.163.128\/25", + "version":46782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.163.128", + "prefixLen":25, + "network":"193.178.163.128\/25", + "version":46782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.176.0", + "prefixLen":25, + "network":"193.178.176.0\/25", + "version":46781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.176.0", + "prefixLen":25, + "network":"193.178.176.0\/25", + "version":46781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.176.128", + "prefixLen":25, + "network":"193.178.176.128\/25", + "version":46780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.176.128", + "prefixLen":25, + "network":"193.178.176.128\/25", + "version":46780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.177.0", + "prefixLen":25, + "network":"193.178.177.0\/25", + "version":46779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.177.0", + "prefixLen":25, + "network":"193.178.177.0\/25", + "version":46779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.177.128", + "prefixLen":25, + "network":"193.178.177.128\/25", + "version":46778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.177.128", + "prefixLen":25, + "network":"193.178.177.128\/25", + "version":46778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.178.0", + "prefixLen":25, + "network":"193.178.178.0\/25", + "version":46777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.178.0", + "prefixLen":25, + "network":"193.178.178.0\/25", + "version":46777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.178.128", + "prefixLen":25, + "network":"193.178.178.128\/25", + "version":46776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.178.128", + "prefixLen":25, + "network":"193.178.178.128\/25", + "version":46776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.179.0", + "prefixLen":25, + "network":"193.178.179.0\/25", + "version":46775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.179.0", + "prefixLen":25, + "network":"193.178.179.0\/25", + "version":46775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.179.128", + "prefixLen":25, + "network":"193.178.179.128\/25", + "version":46774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.179.128", + "prefixLen":25, + "network":"193.178.179.128\/25", + "version":46774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.192.0", + "prefixLen":25, + "network":"193.178.192.0\/25", + "version":46773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.192.0", + "prefixLen":25, + "network":"193.178.192.0\/25", + "version":46773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.192.128", + "prefixLen":25, + "network":"193.178.192.128\/25", + "version":46772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.192.128", + "prefixLen":25, + "network":"193.178.192.128\/25", + "version":46772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.193.0", + "prefixLen":25, + "network":"193.178.193.0\/25", + "version":46771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.193.0", + "prefixLen":25, + "network":"193.178.193.0\/25", + "version":46771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.193.128", + "prefixLen":25, + "network":"193.178.193.128\/25", + "version":46770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.193.128", + "prefixLen":25, + "network":"193.178.193.128\/25", + "version":46770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.194.0", + "prefixLen":25, + "network":"193.178.194.0\/25", + "version":46769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.194.0", + "prefixLen":25, + "network":"193.178.194.0\/25", + "version":46769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.194.128", + "prefixLen":25, + "network":"193.178.194.128\/25", + "version":46768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.194.128", + "prefixLen":25, + "network":"193.178.194.128\/25", + "version":46768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.195.0", + "prefixLen":25, + "network":"193.178.195.0\/25", + "version":46767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.195.0", + "prefixLen":25, + "network":"193.178.195.0\/25", + "version":46767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.195.128", + "prefixLen":25, + "network":"193.178.195.128\/25", + "version":46766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.195.128", + "prefixLen":25, + "network":"193.178.195.128\/25", + "version":46766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.208.0", + "prefixLen":25, + "network":"193.178.208.0\/25", + "version":46765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.208.0", + "prefixLen":25, + "network":"193.178.208.0\/25", + "version":46765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.208.128", + "prefixLen":25, + "network":"193.178.208.128\/25", + "version":46764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.208.128", + "prefixLen":25, + "network":"193.178.208.128\/25", + "version":46764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.209.0", + "prefixLen":25, + "network":"193.178.209.0\/25", + "version":46763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.209.0", + "prefixLen":25, + "network":"193.178.209.0\/25", + "version":46763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.209.128", + "prefixLen":25, + "network":"193.178.209.128\/25", + "version":46762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.209.128", + "prefixLen":25, + "network":"193.178.209.128\/25", + "version":46762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.210.0", + "prefixLen":25, + "network":"193.178.210.0\/25", + "version":46761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.210.0", + "prefixLen":25, + "network":"193.178.210.0\/25", + "version":46761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.210.128", + "prefixLen":25, + "network":"193.178.210.128\/25", + "version":46760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.210.128", + "prefixLen":25, + "network":"193.178.210.128\/25", + "version":46760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.211.0", + "prefixLen":25, + "network":"193.178.211.0\/25", + "version":46759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.211.0", + "prefixLen":25, + "network":"193.178.211.0\/25", + "version":46759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.211.128", + "prefixLen":25, + "network":"193.178.211.128\/25", + "version":46758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.211.128", + "prefixLen":25, + "network":"193.178.211.128\/25", + "version":46758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.224.0", + "prefixLen":25, + "network":"193.178.224.0\/25", + "version":46757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.224.0", + "prefixLen":25, + "network":"193.178.224.0\/25", + "version":46757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.224.128", + "prefixLen":25, + "network":"193.178.224.128\/25", + "version":46756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.224.128", + "prefixLen":25, + "network":"193.178.224.128\/25", + "version":46756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.225.0", + "prefixLen":25, + "network":"193.178.225.0\/25", + "version":46755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.225.0", + "prefixLen":25, + "network":"193.178.225.0\/25", + "version":46755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.225.128", + "prefixLen":25, + "network":"193.178.225.128\/25", + "version":46754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.225.128", + "prefixLen":25, + "network":"193.178.225.128\/25", + "version":46754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.226.0", + "prefixLen":25, + "network":"193.178.226.0\/25", + "version":46753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.226.0", + "prefixLen":25, + "network":"193.178.226.0\/25", + "version":46753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.226.128", + "prefixLen":25, + "network":"193.178.226.128\/25", + "version":46752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.226.128", + "prefixLen":25, + "network":"193.178.226.128\/25", + "version":46752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.227.0", + "prefixLen":25, + "network":"193.178.227.0\/25", + "version":46751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.227.0", + "prefixLen":25, + "network":"193.178.227.0\/25", + "version":46751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.227.128", + "prefixLen":25, + "network":"193.178.227.128\/25", + "version":46750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.227.128", + "prefixLen":25, + "network":"193.178.227.128\/25", + "version":46750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.240.0", + "prefixLen":25, + "network":"193.178.240.0\/25", + "version":46749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.240.0", + "prefixLen":25, + "network":"193.178.240.0\/25", + "version":46749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.240.128", + "prefixLen":25, + "network":"193.178.240.128\/25", + "version":46748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.240.128", + "prefixLen":25, + "network":"193.178.240.128\/25", + "version":46748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.241.0", + "prefixLen":25, + "network":"193.178.241.0\/25", + "version":46747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.241.0", + "prefixLen":25, + "network":"193.178.241.0\/25", + "version":46747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.241.128", + "prefixLen":25, + "network":"193.178.241.128\/25", + "version":46746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.241.128", + "prefixLen":25, + "network":"193.178.241.128\/25", + "version":46746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.242.0", + "prefixLen":25, + "network":"193.178.242.0\/25", + "version":46745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.242.0", + "prefixLen":25, + "network":"193.178.242.0\/25", + "version":46745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.242.128", + "prefixLen":25, + "network":"193.178.242.128\/25", + "version":46744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.242.128", + "prefixLen":25, + "network":"193.178.242.128\/25", + "version":46744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.243.0", + "prefixLen":25, + "network":"193.178.243.0\/25", + "version":46743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.243.0", + "prefixLen":25, + "network":"193.178.243.0\/25", + "version":46743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.178.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.178.243.128", + "prefixLen":25, + "network":"193.178.243.128\/25", + "version":46742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.178.243.128", + "prefixLen":25, + "network":"193.178.243.128\/25", + "version":46742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64866 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.0.0", + "prefixLen":25, + "network":"193.179.0.0\/25", + "version":48149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.0.0", + "prefixLen":25, + "network":"193.179.0.0\/25", + "version":48149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.0.128", + "prefixLen":25, + "network":"193.179.0.128\/25", + "version":48276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.0.128", + "prefixLen":25, + "network":"193.179.0.128\/25", + "version":48276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.1.0", + "prefixLen":25, + "network":"193.179.1.0\/25", + "version":48275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.1.0", + "prefixLen":25, + "network":"193.179.1.0\/25", + "version":48275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.1.128", + "prefixLen":25, + "network":"193.179.1.128\/25", + "version":48274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.1.128", + "prefixLen":25, + "network":"193.179.1.128\/25", + "version":48274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.2.0", + "prefixLen":25, + "network":"193.179.2.0\/25", + "version":48273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.2.0", + "prefixLen":25, + "network":"193.179.2.0\/25", + "version":48273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.2.128", + "prefixLen":25, + "network":"193.179.2.128\/25", + "version":48272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.2.128", + "prefixLen":25, + "network":"193.179.2.128\/25", + "version":48272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.3.0", + "prefixLen":25, + "network":"193.179.3.0\/25", + "version":48271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.3.0", + "prefixLen":25, + "network":"193.179.3.0\/25", + "version":48271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.3.128", + "prefixLen":25, + "network":"193.179.3.128\/25", + "version":48270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.3.128", + "prefixLen":25, + "network":"193.179.3.128\/25", + "version":48270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.16.0", + "prefixLen":25, + "network":"193.179.16.0\/25", + "version":48269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.16.0", + "prefixLen":25, + "network":"193.179.16.0\/25", + "version":48269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.16.128", + "prefixLen":25, + "network":"193.179.16.128\/25", + "version":48268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.16.128", + "prefixLen":25, + "network":"193.179.16.128\/25", + "version":48268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.17.0", + "prefixLen":25, + "network":"193.179.17.0\/25", + "version":48267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.17.0", + "prefixLen":25, + "network":"193.179.17.0\/25", + "version":48267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.17.128", + "prefixLen":25, + "network":"193.179.17.128\/25", + "version":48266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.17.128", + "prefixLen":25, + "network":"193.179.17.128\/25", + "version":48266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.18.0", + "prefixLen":25, + "network":"193.179.18.0\/25", + "version":48265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.18.0", + "prefixLen":25, + "network":"193.179.18.0\/25", + "version":48265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.18.128", + "prefixLen":25, + "network":"193.179.18.128\/25", + "version":48264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.18.128", + "prefixLen":25, + "network":"193.179.18.128\/25", + "version":48264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.19.0", + "prefixLen":25, + "network":"193.179.19.0\/25", + "version":48263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.19.0", + "prefixLen":25, + "network":"193.179.19.0\/25", + "version":48263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.19.128", + "prefixLen":25, + "network":"193.179.19.128\/25", + "version":48262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.19.128", + "prefixLen":25, + "network":"193.179.19.128\/25", + "version":48262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.32.0", + "prefixLen":25, + "network":"193.179.32.0\/25", + "version":48261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.32.0", + "prefixLen":25, + "network":"193.179.32.0\/25", + "version":48261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.32.128", + "prefixLen":25, + "network":"193.179.32.128\/25", + "version":48260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.32.128", + "prefixLen":25, + "network":"193.179.32.128\/25", + "version":48260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.33.0", + "prefixLen":25, + "network":"193.179.33.0\/25", + "version":48259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.33.0", + "prefixLen":25, + "network":"193.179.33.0\/25", + "version":48259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.33.128", + "prefixLen":25, + "network":"193.179.33.128\/25", + "version":48258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.33.128", + "prefixLen":25, + "network":"193.179.33.128\/25", + "version":48258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.34.0", + "prefixLen":25, + "network":"193.179.34.0\/25", + "version":48257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.34.0", + "prefixLen":25, + "network":"193.179.34.0\/25", + "version":48257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.34.128", + "prefixLen":25, + "network":"193.179.34.128\/25", + "version":48256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.34.128", + "prefixLen":25, + "network":"193.179.34.128\/25", + "version":48256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.35.0", + "prefixLen":25, + "network":"193.179.35.0\/25", + "version":48255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.35.0", + "prefixLen":25, + "network":"193.179.35.0\/25", + "version":48255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.35.128", + "prefixLen":25, + "network":"193.179.35.128\/25", + "version":48254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.35.128", + "prefixLen":25, + "network":"193.179.35.128\/25", + "version":48254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.48.0", + "prefixLen":25, + "network":"193.179.48.0\/25", + "version":48253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.48.0", + "prefixLen":25, + "network":"193.179.48.0\/25", + "version":48253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.48.128", + "prefixLen":25, + "network":"193.179.48.128\/25", + "version":48252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.48.128", + "prefixLen":25, + "network":"193.179.48.128\/25", + "version":48252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.49.0", + "prefixLen":25, + "network":"193.179.49.0\/25", + "version":48251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.49.0", + "prefixLen":25, + "network":"193.179.49.0\/25", + "version":48251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.49.128", + "prefixLen":25, + "network":"193.179.49.128\/25", + "version":48250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.49.128", + "prefixLen":25, + "network":"193.179.49.128\/25", + "version":48250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.50.0", + "prefixLen":25, + "network":"193.179.50.0\/25", + "version":48249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.50.0", + "prefixLen":25, + "network":"193.179.50.0\/25", + "version":48249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.50.128", + "prefixLen":25, + "network":"193.179.50.128\/25", + "version":48248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.50.128", + "prefixLen":25, + "network":"193.179.50.128\/25", + "version":48248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.51.0", + "prefixLen":25, + "network":"193.179.51.0\/25", + "version":48247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.51.0", + "prefixLen":25, + "network":"193.179.51.0\/25", + "version":48247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.51.128", + "prefixLen":25, + "network":"193.179.51.128\/25", + "version":48246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.51.128", + "prefixLen":25, + "network":"193.179.51.128\/25", + "version":48246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.64.0", + "prefixLen":25, + "network":"193.179.64.0\/25", + "version":48245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.64.0", + "prefixLen":25, + "network":"193.179.64.0\/25", + "version":48245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.64.128", + "prefixLen":25, + "network":"193.179.64.128\/25", + "version":48244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.64.128", + "prefixLen":25, + "network":"193.179.64.128\/25", + "version":48244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.65.0", + "prefixLen":25, + "network":"193.179.65.0\/25", + "version":48243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.65.0", + "prefixLen":25, + "network":"193.179.65.0\/25", + "version":48243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.65.128", + "prefixLen":25, + "network":"193.179.65.128\/25", + "version":48242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.65.128", + "prefixLen":25, + "network":"193.179.65.128\/25", + "version":48242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.66.0", + "prefixLen":25, + "network":"193.179.66.0\/25", + "version":48241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.66.0", + "prefixLen":25, + "network":"193.179.66.0\/25", + "version":48241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.66.128", + "prefixLen":25, + "network":"193.179.66.128\/25", + "version":48240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.66.128", + "prefixLen":25, + "network":"193.179.66.128\/25", + "version":48240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.67.0", + "prefixLen":25, + "network":"193.179.67.0\/25", + "version":48239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.67.0", + "prefixLen":25, + "network":"193.179.67.0\/25", + "version":48239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.67.128", + "prefixLen":25, + "network":"193.179.67.128\/25", + "version":48238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.67.128", + "prefixLen":25, + "network":"193.179.67.128\/25", + "version":48238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.80.0", + "prefixLen":25, + "network":"193.179.80.0\/25", + "version":48237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.80.0", + "prefixLen":25, + "network":"193.179.80.0\/25", + "version":48237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.80.128", + "prefixLen":25, + "network":"193.179.80.128\/25", + "version":48236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.80.128", + "prefixLen":25, + "network":"193.179.80.128\/25", + "version":48236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.81.0", + "prefixLen":25, + "network":"193.179.81.0\/25", + "version":48235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.81.0", + "prefixLen":25, + "network":"193.179.81.0\/25", + "version":48235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.81.128", + "prefixLen":25, + "network":"193.179.81.128\/25", + "version":48234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.81.128", + "prefixLen":25, + "network":"193.179.81.128\/25", + "version":48234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.82.0", + "prefixLen":25, + "network":"193.179.82.0\/25", + "version":48233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.82.0", + "prefixLen":25, + "network":"193.179.82.0\/25", + "version":48233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.82.128", + "prefixLen":25, + "network":"193.179.82.128\/25", + "version":48232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.82.128", + "prefixLen":25, + "network":"193.179.82.128\/25", + "version":48232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.83.0", + "prefixLen":25, + "network":"193.179.83.0\/25", + "version":48231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.83.0", + "prefixLen":25, + "network":"193.179.83.0\/25", + "version":48231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.83.128", + "prefixLen":25, + "network":"193.179.83.128\/25", + "version":48230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.83.128", + "prefixLen":25, + "network":"193.179.83.128\/25", + "version":48230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.96.0", + "prefixLen":25, + "network":"193.179.96.0\/25", + "version":48229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.96.0", + "prefixLen":25, + "network":"193.179.96.0\/25", + "version":48229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.96.128", + "prefixLen":25, + "network":"193.179.96.128\/25", + "version":48228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.96.128", + "prefixLen":25, + "network":"193.179.96.128\/25", + "version":48228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.97.0", + "prefixLen":25, + "network":"193.179.97.0\/25", + "version":48227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.97.0", + "prefixLen":25, + "network":"193.179.97.0\/25", + "version":48227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.97.128", + "prefixLen":25, + "network":"193.179.97.128\/25", + "version":48226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.97.128", + "prefixLen":25, + "network":"193.179.97.128\/25", + "version":48226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.98.0", + "prefixLen":25, + "network":"193.179.98.0\/25", + "version":48225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.98.0", + "prefixLen":25, + "network":"193.179.98.0\/25", + "version":48225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.98.128", + "prefixLen":25, + "network":"193.179.98.128\/25", + "version":48224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.98.128", + "prefixLen":25, + "network":"193.179.98.128\/25", + "version":48224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.99.0", + "prefixLen":25, + "network":"193.179.99.0\/25", + "version":48223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.99.0", + "prefixLen":25, + "network":"193.179.99.0\/25", + "version":48223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.99.128", + "prefixLen":25, + "network":"193.179.99.128\/25", + "version":48222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.99.128", + "prefixLen":25, + "network":"193.179.99.128\/25", + "version":48222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.112.0", + "prefixLen":25, + "network":"193.179.112.0\/25", + "version":48221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.112.0", + "prefixLen":25, + "network":"193.179.112.0\/25", + "version":48221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.112.128", + "prefixLen":25, + "network":"193.179.112.128\/25", + "version":48220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.112.128", + "prefixLen":25, + "network":"193.179.112.128\/25", + "version":48220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.113.0", + "prefixLen":25, + "network":"193.179.113.0\/25", + "version":48219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.113.0", + "prefixLen":25, + "network":"193.179.113.0\/25", + "version":48219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.113.128", + "prefixLen":25, + "network":"193.179.113.128\/25", + "version":48218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.113.128", + "prefixLen":25, + "network":"193.179.113.128\/25", + "version":48218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.114.0", + "prefixLen":25, + "network":"193.179.114.0\/25", + "version":48217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.114.0", + "prefixLen":25, + "network":"193.179.114.0\/25", + "version":48217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.114.128", + "prefixLen":25, + "network":"193.179.114.128\/25", + "version":48216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.114.128", + "prefixLen":25, + "network":"193.179.114.128\/25", + "version":48216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.115.0", + "prefixLen":25, + "network":"193.179.115.0\/25", + "version":48215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.115.0", + "prefixLen":25, + "network":"193.179.115.0\/25", + "version":48215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.115.128", + "prefixLen":25, + "network":"193.179.115.128\/25", + "version":48214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.115.128", + "prefixLen":25, + "network":"193.179.115.128\/25", + "version":48214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.128.0", + "prefixLen":25, + "network":"193.179.128.0\/25", + "version":48213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.128.0", + "prefixLen":25, + "network":"193.179.128.0\/25", + "version":48213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.128.128", + "prefixLen":25, + "network":"193.179.128.128\/25", + "version":48212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.128.128", + "prefixLen":25, + "network":"193.179.128.128\/25", + "version":48212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.129.0", + "prefixLen":25, + "network":"193.179.129.0\/25", + "version":48211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.129.0", + "prefixLen":25, + "network":"193.179.129.0\/25", + "version":48211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.129.128", + "prefixLen":25, + "network":"193.179.129.128\/25", + "version":48210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.129.128", + "prefixLen":25, + "network":"193.179.129.128\/25", + "version":48210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.130.0", + "prefixLen":25, + "network":"193.179.130.0\/25", + "version":48209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.130.0", + "prefixLen":25, + "network":"193.179.130.0\/25", + "version":48209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.130.128", + "prefixLen":25, + "network":"193.179.130.128\/25", + "version":48208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.130.128", + "prefixLen":25, + "network":"193.179.130.128\/25", + "version":48208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.131.0", + "prefixLen":25, + "network":"193.179.131.0\/25", + "version":48207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.131.0", + "prefixLen":25, + "network":"193.179.131.0\/25", + "version":48207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.131.128", + "prefixLen":25, + "network":"193.179.131.128\/25", + "version":48206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.131.128", + "prefixLen":25, + "network":"193.179.131.128\/25", + "version":48206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.144.0", + "prefixLen":25, + "network":"193.179.144.0\/25", + "version":48205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.144.0", + "prefixLen":25, + "network":"193.179.144.0\/25", + "version":48205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.144.128", + "prefixLen":25, + "network":"193.179.144.128\/25", + "version":48204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.144.128", + "prefixLen":25, + "network":"193.179.144.128\/25", + "version":48204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.145.0", + "prefixLen":25, + "network":"193.179.145.0\/25", + "version":48203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.145.0", + "prefixLen":25, + "network":"193.179.145.0\/25", + "version":48203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.145.128", + "prefixLen":25, + "network":"193.179.145.128\/25", + "version":48202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.145.128", + "prefixLen":25, + "network":"193.179.145.128\/25", + "version":48202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.146.0", + "prefixLen":25, + "network":"193.179.146.0\/25", + "version":48201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.146.0", + "prefixLen":25, + "network":"193.179.146.0\/25", + "version":48201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.146.128", + "prefixLen":25, + "network":"193.179.146.128\/25", + "version":48200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.146.128", + "prefixLen":25, + "network":"193.179.146.128\/25", + "version":48200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.147.0", + "prefixLen":25, + "network":"193.179.147.0\/25", + "version":48199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.147.0", + "prefixLen":25, + "network":"193.179.147.0\/25", + "version":48199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.147.128", + "prefixLen":25, + "network":"193.179.147.128\/25", + "version":48198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.147.128", + "prefixLen":25, + "network":"193.179.147.128\/25", + "version":48198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.160.0", + "prefixLen":25, + "network":"193.179.160.0\/25", + "version":48197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.160.0", + "prefixLen":25, + "network":"193.179.160.0\/25", + "version":48197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.160.128", + "prefixLen":25, + "network":"193.179.160.128\/25", + "version":48196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.160.128", + "prefixLen":25, + "network":"193.179.160.128\/25", + "version":48196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.161.0", + "prefixLen":25, + "network":"193.179.161.0\/25", + "version":48195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.161.0", + "prefixLen":25, + "network":"193.179.161.0\/25", + "version":48195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.161.128", + "prefixLen":25, + "network":"193.179.161.128\/25", + "version":48194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.161.128", + "prefixLen":25, + "network":"193.179.161.128\/25", + "version":48194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.162.0", + "prefixLen":25, + "network":"193.179.162.0\/25", + "version":48193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.162.0", + "prefixLen":25, + "network":"193.179.162.0\/25", + "version":48193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.162.128", + "prefixLen":25, + "network":"193.179.162.128\/25", + "version":48192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.162.128", + "prefixLen":25, + "network":"193.179.162.128\/25", + "version":48192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.163.0", + "prefixLen":25, + "network":"193.179.163.0\/25", + "version":48191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.163.0", + "prefixLen":25, + "network":"193.179.163.0\/25", + "version":48191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.163.128", + "prefixLen":25, + "network":"193.179.163.128\/25", + "version":48190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.163.128", + "prefixLen":25, + "network":"193.179.163.128\/25", + "version":48190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.176.0", + "prefixLen":25, + "network":"193.179.176.0\/25", + "version":48189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.176.0", + "prefixLen":25, + "network":"193.179.176.0\/25", + "version":48189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.176.128", + "prefixLen":25, + "network":"193.179.176.128\/25", + "version":48188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.176.128", + "prefixLen":25, + "network":"193.179.176.128\/25", + "version":48188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.177.0", + "prefixLen":25, + "network":"193.179.177.0\/25", + "version":48187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.177.0", + "prefixLen":25, + "network":"193.179.177.0\/25", + "version":48187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.177.128", + "prefixLen":25, + "network":"193.179.177.128\/25", + "version":48186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.177.128", + "prefixLen":25, + "network":"193.179.177.128\/25", + "version":48186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.178.0", + "prefixLen":25, + "network":"193.179.178.0\/25", + "version":48185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.178.0", + "prefixLen":25, + "network":"193.179.178.0\/25", + "version":48185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.178.128", + "prefixLen":25, + "network":"193.179.178.128\/25", + "version":48184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.178.128", + "prefixLen":25, + "network":"193.179.178.128\/25", + "version":48184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.179.0", + "prefixLen":25, + "network":"193.179.179.0\/25", + "version":48183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.179.0", + "prefixLen":25, + "network":"193.179.179.0\/25", + "version":48183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.179.128", + "prefixLen":25, + "network":"193.179.179.128\/25", + "version":48182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.179.128", + "prefixLen":25, + "network":"193.179.179.128\/25", + "version":48182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.192.0", + "prefixLen":25, + "network":"193.179.192.0\/25", + "version":48181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.192.0", + "prefixLen":25, + "network":"193.179.192.0\/25", + "version":48181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.192.128", + "prefixLen":25, + "network":"193.179.192.128\/25", + "version":48180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.192.128", + "prefixLen":25, + "network":"193.179.192.128\/25", + "version":48180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.193.0", + "prefixLen":25, + "network":"193.179.193.0\/25", + "version":48179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.193.0", + "prefixLen":25, + "network":"193.179.193.0\/25", + "version":48179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.193.128", + "prefixLen":25, + "network":"193.179.193.128\/25", + "version":48178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.193.128", + "prefixLen":25, + "network":"193.179.193.128\/25", + "version":48178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.194.0", + "prefixLen":25, + "network":"193.179.194.0\/25", + "version":48177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.194.0", + "prefixLen":25, + "network":"193.179.194.0\/25", + "version":48177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.194.128", + "prefixLen":25, + "network":"193.179.194.128\/25", + "version":48176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.194.128", + "prefixLen":25, + "network":"193.179.194.128\/25", + "version":48176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.195.0", + "prefixLen":25, + "network":"193.179.195.0\/25", + "version":48175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.195.0", + "prefixLen":25, + "network":"193.179.195.0\/25", + "version":48175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.195.128", + "prefixLen":25, + "network":"193.179.195.128\/25", + "version":48174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.195.128", + "prefixLen":25, + "network":"193.179.195.128\/25", + "version":48174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.208.0", + "prefixLen":25, + "network":"193.179.208.0\/25", + "version":48173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.208.0", + "prefixLen":25, + "network":"193.179.208.0\/25", + "version":48173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.208.128", + "prefixLen":25, + "network":"193.179.208.128\/25", + "version":48172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.208.128", + "prefixLen":25, + "network":"193.179.208.128\/25", + "version":48172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.209.0", + "prefixLen":25, + "network":"193.179.209.0\/25", + "version":48171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.209.0", + "prefixLen":25, + "network":"193.179.209.0\/25", + "version":48171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.209.128", + "prefixLen":25, + "network":"193.179.209.128\/25", + "version":48170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.209.128", + "prefixLen":25, + "network":"193.179.209.128\/25", + "version":48170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.210.0", + "prefixLen":25, + "network":"193.179.210.0\/25", + "version":48169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.210.0", + "prefixLen":25, + "network":"193.179.210.0\/25", + "version":48169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.210.128", + "prefixLen":25, + "network":"193.179.210.128\/25", + "version":48168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.210.128", + "prefixLen":25, + "network":"193.179.210.128\/25", + "version":48168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.211.0", + "prefixLen":25, + "network":"193.179.211.0\/25", + "version":48167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.211.0", + "prefixLen":25, + "network":"193.179.211.0\/25", + "version":48167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.211.128", + "prefixLen":25, + "network":"193.179.211.128\/25", + "version":48166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.211.128", + "prefixLen":25, + "network":"193.179.211.128\/25", + "version":48166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.224.0", + "prefixLen":25, + "network":"193.179.224.0\/25", + "version":48165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.224.0", + "prefixLen":25, + "network":"193.179.224.0\/25", + "version":48165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.224.128", + "prefixLen":25, + "network":"193.179.224.128\/25", + "version":48164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.224.128", + "prefixLen":25, + "network":"193.179.224.128\/25", + "version":48164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.225.0", + "prefixLen":25, + "network":"193.179.225.0\/25", + "version":48163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.225.0", + "prefixLen":25, + "network":"193.179.225.0\/25", + "version":48163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.225.128", + "prefixLen":25, + "network":"193.179.225.128\/25", + "version":48162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.225.128", + "prefixLen":25, + "network":"193.179.225.128\/25", + "version":48162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.226.0", + "prefixLen":25, + "network":"193.179.226.0\/25", + "version":48161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.226.0", + "prefixLen":25, + "network":"193.179.226.0\/25", + "version":48161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.226.128", + "prefixLen":25, + "network":"193.179.226.128\/25", + "version":48160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.226.128", + "prefixLen":25, + "network":"193.179.226.128\/25", + "version":48160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.227.0", + "prefixLen":25, + "network":"193.179.227.0\/25", + "version":48159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.227.0", + "prefixLen":25, + "network":"193.179.227.0\/25", + "version":48159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.227.128", + "prefixLen":25, + "network":"193.179.227.128\/25", + "version":48158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.227.128", + "prefixLen":25, + "network":"193.179.227.128\/25", + "version":48158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.240.0", + "prefixLen":25, + "network":"193.179.240.0\/25", + "version":48157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.240.0", + "prefixLen":25, + "network":"193.179.240.0\/25", + "version":48157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.240.128", + "prefixLen":25, + "network":"193.179.240.128\/25", + "version":48156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.240.128", + "prefixLen":25, + "network":"193.179.240.128\/25", + "version":48156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.241.0", + "prefixLen":25, + "network":"193.179.241.0\/25", + "version":48155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.241.0", + "prefixLen":25, + "network":"193.179.241.0\/25", + "version":48155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.241.128", + "prefixLen":25, + "network":"193.179.241.128\/25", + "version":48154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.241.128", + "prefixLen":25, + "network":"193.179.241.128\/25", + "version":48154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.242.0", + "prefixLen":25, + "network":"193.179.242.0\/25", + "version":48153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.242.0", + "prefixLen":25, + "network":"193.179.242.0\/25", + "version":48153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.242.128", + "prefixLen":25, + "network":"193.179.242.128\/25", + "version":48152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.242.128", + "prefixLen":25, + "network":"193.179.242.128\/25", + "version":48152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.243.0", + "prefixLen":25, + "network":"193.179.243.0\/25", + "version":48151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.243.0", + "prefixLen":25, + "network":"193.179.243.0\/25", + "version":48151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.179.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.179.243.128", + "prefixLen":25, + "network":"193.179.243.128\/25", + "version":48150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.179.243.128", + "prefixLen":25, + "network":"193.179.243.128\/25", + "version":48150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64867 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.0.0", + "prefixLen":25, + "network":"193.180.0.0\/25", + "version":48277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.0.0", + "prefixLen":25, + "network":"193.180.0.0\/25", + "version":48277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.0.128", + "prefixLen":25, + "network":"193.180.0.128\/25", + "version":48404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.0.128", + "prefixLen":25, + "network":"193.180.0.128\/25", + "version":48404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.1.0", + "prefixLen":25, + "network":"193.180.1.0\/25", + "version":48403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.1.0", + "prefixLen":25, + "network":"193.180.1.0\/25", + "version":48403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.1.128", + "prefixLen":25, + "network":"193.180.1.128\/25", + "version":48402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.1.128", + "prefixLen":25, + "network":"193.180.1.128\/25", + "version":48402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.2.0", + "prefixLen":25, + "network":"193.180.2.0\/25", + "version":48401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.2.0", + "prefixLen":25, + "network":"193.180.2.0\/25", + "version":48401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.2.128", + "prefixLen":25, + "network":"193.180.2.128\/25", + "version":48400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.2.128", + "prefixLen":25, + "network":"193.180.2.128\/25", + "version":48400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.3.0", + "prefixLen":25, + "network":"193.180.3.0\/25", + "version":48399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.3.0", + "prefixLen":25, + "network":"193.180.3.0\/25", + "version":48399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.3.128", + "prefixLen":25, + "network":"193.180.3.128\/25", + "version":48398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.3.128", + "prefixLen":25, + "network":"193.180.3.128\/25", + "version":48398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.16.0", + "prefixLen":25, + "network":"193.180.16.0\/25", + "version":48397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.16.0", + "prefixLen":25, + "network":"193.180.16.0\/25", + "version":48397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.16.128", + "prefixLen":25, + "network":"193.180.16.128\/25", + "version":48396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.16.128", + "prefixLen":25, + "network":"193.180.16.128\/25", + "version":48396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.17.0", + "prefixLen":25, + "network":"193.180.17.0\/25", + "version":48395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.17.0", + "prefixLen":25, + "network":"193.180.17.0\/25", + "version":48395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.17.128", + "prefixLen":25, + "network":"193.180.17.128\/25", + "version":48394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.17.128", + "prefixLen":25, + "network":"193.180.17.128\/25", + "version":48394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.18.0", + "prefixLen":25, + "network":"193.180.18.0\/25", + "version":48393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.18.0", + "prefixLen":25, + "network":"193.180.18.0\/25", + "version":48393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.18.128", + "prefixLen":25, + "network":"193.180.18.128\/25", + "version":48392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.18.128", + "prefixLen":25, + "network":"193.180.18.128\/25", + "version":48392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.19.0", + "prefixLen":25, + "network":"193.180.19.0\/25", + "version":48391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.19.0", + "prefixLen":25, + "network":"193.180.19.0\/25", + "version":48391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.19.128", + "prefixLen":25, + "network":"193.180.19.128\/25", + "version":48390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.19.128", + "prefixLen":25, + "network":"193.180.19.128\/25", + "version":48390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.32.0", + "prefixLen":25, + "network":"193.180.32.0\/25", + "version":48389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.32.0", + "prefixLen":25, + "network":"193.180.32.0\/25", + "version":48389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.32.128", + "prefixLen":25, + "network":"193.180.32.128\/25", + "version":48388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.32.128", + "prefixLen":25, + "network":"193.180.32.128\/25", + "version":48388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.33.0", + "prefixLen":25, + "network":"193.180.33.0\/25", + "version":48387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.33.0", + "prefixLen":25, + "network":"193.180.33.0\/25", + "version":48387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.33.128", + "prefixLen":25, + "network":"193.180.33.128\/25", + "version":48386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.33.128", + "prefixLen":25, + "network":"193.180.33.128\/25", + "version":48386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.34.0", + "prefixLen":25, + "network":"193.180.34.0\/25", + "version":48385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.34.0", + "prefixLen":25, + "network":"193.180.34.0\/25", + "version":48385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.34.128", + "prefixLen":25, + "network":"193.180.34.128\/25", + "version":48384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.34.128", + "prefixLen":25, + "network":"193.180.34.128\/25", + "version":48384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.35.0", + "prefixLen":25, + "network":"193.180.35.0\/25", + "version":48383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.35.0", + "prefixLen":25, + "network":"193.180.35.0\/25", + "version":48383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.35.128", + "prefixLen":25, + "network":"193.180.35.128\/25", + "version":48382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.35.128", + "prefixLen":25, + "network":"193.180.35.128\/25", + "version":48382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.48.0", + "prefixLen":25, + "network":"193.180.48.0\/25", + "version":48381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.48.0", + "prefixLen":25, + "network":"193.180.48.0\/25", + "version":48381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.48.128", + "prefixLen":25, + "network":"193.180.48.128\/25", + "version":48380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.48.128", + "prefixLen":25, + "network":"193.180.48.128\/25", + "version":48380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.49.0", + "prefixLen":25, + "network":"193.180.49.0\/25", + "version":48379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.49.0", + "prefixLen":25, + "network":"193.180.49.0\/25", + "version":48379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.49.128", + "prefixLen":25, + "network":"193.180.49.128\/25", + "version":48378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.49.128", + "prefixLen":25, + "network":"193.180.49.128\/25", + "version":48378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.50.0", + "prefixLen":25, + "network":"193.180.50.0\/25", + "version":48377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.50.0", + "prefixLen":25, + "network":"193.180.50.0\/25", + "version":48377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.50.128", + "prefixLen":25, + "network":"193.180.50.128\/25", + "version":48376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.50.128", + "prefixLen":25, + "network":"193.180.50.128\/25", + "version":48376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.51.0", + "prefixLen":25, + "network":"193.180.51.0\/25", + "version":48375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.51.0", + "prefixLen":25, + "network":"193.180.51.0\/25", + "version":48375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.51.128", + "prefixLen":25, + "network":"193.180.51.128\/25", + "version":48374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.51.128", + "prefixLen":25, + "network":"193.180.51.128\/25", + "version":48374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.64.0", + "prefixLen":25, + "network":"193.180.64.0\/25", + "version":48373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.64.0", + "prefixLen":25, + "network":"193.180.64.0\/25", + "version":48373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.64.128", + "prefixLen":25, + "network":"193.180.64.128\/25", + "version":48372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.64.128", + "prefixLen":25, + "network":"193.180.64.128\/25", + "version":48372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.65.0", + "prefixLen":25, + "network":"193.180.65.0\/25", + "version":48371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.65.0", + "prefixLen":25, + "network":"193.180.65.0\/25", + "version":48371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.65.128", + "prefixLen":25, + "network":"193.180.65.128\/25", + "version":48370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.65.128", + "prefixLen":25, + "network":"193.180.65.128\/25", + "version":48370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.66.0", + "prefixLen":25, + "network":"193.180.66.0\/25", + "version":48369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.66.0", + "prefixLen":25, + "network":"193.180.66.0\/25", + "version":48369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.66.128", + "prefixLen":25, + "network":"193.180.66.128\/25", + "version":48368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.66.128", + "prefixLen":25, + "network":"193.180.66.128\/25", + "version":48368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.67.0", + "prefixLen":25, + "network":"193.180.67.0\/25", + "version":48367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.67.0", + "prefixLen":25, + "network":"193.180.67.0\/25", + "version":48367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.67.128", + "prefixLen":25, + "network":"193.180.67.128\/25", + "version":48366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.67.128", + "prefixLen":25, + "network":"193.180.67.128\/25", + "version":48366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.80.0", + "prefixLen":25, + "network":"193.180.80.0\/25", + "version":48365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.80.0", + "prefixLen":25, + "network":"193.180.80.0\/25", + "version":48365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.80.128", + "prefixLen":25, + "network":"193.180.80.128\/25", + "version":48364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.80.128", + "prefixLen":25, + "network":"193.180.80.128\/25", + "version":48364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.81.0", + "prefixLen":25, + "network":"193.180.81.0\/25", + "version":48363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.81.0", + "prefixLen":25, + "network":"193.180.81.0\/25", + "version":48363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.81.128", + "prefixLen":25, + "network":"193.180.81.128\/25", + "version":48362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.81.128", + "prefixLen":25, + "network":"193.180.81.128\/25", + "version":48362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.82.0", + "prefixLen":25, + "network":"193.180.82.0\/25", + "version":48361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.82.0", + "prefixLen":25, + "network":"193.180.82.0\/25", + "version":48361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.82.128", + "prefixLen":25, + "network":"193.180.82.128\/25", + "version":48360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.82.128", + "prefixLen":25, + "network":"193.180.82.128\/25", + "version":48360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.83.0", + "prefixLen":25, + "network":"193.180.83.0\/25", + "version":48359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.83.0", + "prefixLen":25, + "network":"193.180.83.0\/25", + "version":48359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.83.128", + "prefixLen":25, + "network":"193.180.83.128\/25", + "version":48358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.83.128", + "prefixLen":25, + "network":"193.180.83.128\/25", + "version":48358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.96.0", + "prefixLen":25, + "network":"193.180.96.0\/25", + "version":48357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.96.0", + "prefixLen":25, + "network":"193.180.96.0\/25", + "version":48357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.96.128", + "prefixLen":25, + "network":"193.180.96.128\/25", + "version":48356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.96.128", + "prefixLen":25, + "network":"193.180.96.128\/25", + "version":48356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.97.0", + "prefixLen":25, + "network":"193.180.97.0\/25", + "version":48355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.97.0", + "prefixLen":25, + "network":"193.180.97.0\/25", + "version":48355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.97.128", + "prefixLen":25, + "network":"193.180.97.128\/25", + "version":48354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.97.128", + "prefixLen":25, + "network":"193.180.97.128\/25", + "version":48354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.98.0", + "prefixLen":25, + "network":"193.180.98.0\/25", + "version":48353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.98.0", + "prefixLen":25, + "network":"193.180.98.0\/25", + "version":48353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.98.128", + "prefixLen":25, + "network":"193.180.98.128\/25", + "version":48352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.98.128", + "prefixLen":25, + "network":"193.180.98.128\/25", + "version":48352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.99.0", + "prefixLen":25, + "network":"193.180.99.0\/25", + "version":48351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.99.0", + "prefixLen":25, + "network":"193.180.99.0\/25", + "version":48351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.99.128", + "prefixLen":25, + "network":"193.180.99.128\/25", + "version":48350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.99.128", + "prefixLen":25, + "network":"193.180.99.128\/25", + "version":48350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.112.0", + "prefixLen":25, + "network":"193.180.112.0\/25", + "version":48349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.112.0", + "prefixLen":25, + "network":"193.180.112.0\/25", + "version":48349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.112.128", + "prefixLen":25, + "network":"193.180.112.128\/25", + "version":48348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.112.128", + "prefixLen":25, + "network":"193.180.112.128\/25", + "version":48348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.113.0", + "prefixLen":25, + "network":"193.180.113.0\/25", + "version":48347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.113.0", + "prefixLen":25, + "network":"193.180.113.0\/25", + "version":48347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.113.128", + "prefixLen":25, + "network":"193.180.113.128\/25", + "version":48346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.113.128", + "prefixLen":25, + "network":"193.180.113.128\/25", + "version":48346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.114.0", + "prefixLen":25, + "network":"193.180.114.0\/25", + "version":48345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.114.0", + "prefixLen":25, + "network":"193.180.114.0\/25", + "version":48345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.114.128", + "prefixLen":25, + "network":"193.180.114.128\/25", + "version":48344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.114.128", + "prefixLen":25, + "network":"193.180.114.128\/25", + "version":48344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.115.0", + "prefixLen":25, + "network":"193.180.115.0\/25", + "version":48343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.115.0", + "prefixLen":25, + "network":"193.180.115.0\/25", + "version":48343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.115.128", + "prefixLen":25, + "network":"193.180.115.128\/25", + "version":48342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.115.128", + "prefixLen":25, + "network":"193.180.115.128\/25", + "version":48342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.128.0", + "prefixLen":25, + "network":"193.180.128.0\/25", + "version":48341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.128.0", + "prefixLen":25, + "network":"193.180.128.0\/25", + "version":48341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.128.128", + "prefixLen":25, + "network":"193.180.128.128\/25", + "version":48340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.128.128", + "prefixLen":25, + "network":"193.180.128.128\/25", + "version":48340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.129.0", + "prefixLen":25, + "network":"193.180.129.0\/25", + "version":48339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.129.0", + "prefixLen":25, + "network":"193.180.129.0\/25", + "version":48339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.129.128", + "prefixLen":25, + "network":"193.180.129.128\/25", + "version":48338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.129.128", + "prefixLen":25, + "network":"193.180.129.128\/25", + "version":48338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.130.0", + "prefixLen":25, + "network":"193.180.130.0\/25", + "version":48337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.130.0", + "prefixLen":25, + "network":"193.180.130.0\/25", + "version":48337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.130.128", + "prefixLen":25, + "network":"193.180.130.128\/25", + "version":48336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.130.128", + "prefixLen":25, + "network":"193.180.130.128\/25", + "version":48336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.131.0", + "prefixLen":25, + "network":"193.180.131.0\/25", + "version":48335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.131.0", + "prefixLen":25, + "network":"193.180.131.0\/25", + "version":48335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.131.128", + "prefixLen":25, + "network":"193.180.131.128\/25", + "version":48334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.131.128", + "prefixLen":25, + "network":"193.180.131.128\/25", + "version":48334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.144.0", + "prefixLen":25, + "network":"193.180.144.0\/25", + "version":48333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.144.0", + "prefixLen":25, + "network":"193.180.144.0\/25", + "version":48333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.144.128", + "prefixLen":25, + "network":"193.180.144.128\/25", + "version":48332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.144.128", + "prefixLen":25, + "network":"193.180.144.128\/25", + "version":48332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.145.0", + "prefixLen":25, + "network":"193.180.145.0\/25", + "version":48331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.145.0", + "prefixLen":25, + "network":"193.180.145.0\/25", + "version":48331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.145.128", + "prefixLen":25, + "network":"193.180.145.128\/25", + "version":48330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.145.128", + "prefixLen":25, + "network":"193.180.145.128\/25", + "version":48330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.146.0", + "prefixLen":25, + "network":"193.180.146.0\/25", + "version":48329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.146.0", + "prefixLen":25, + "network":"193.180.146.0\/25", + "version":48329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.146.128", + "prefixLen":25, + "network":"193.180.146.128\/25", + "version":48328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.146.128", + "prefixLen":25, + "network":"193.180.146.128\/25", + "version":48328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.147.0", + "prefixLen":25, + "network":"193.180.147.0\/25", + "version":48327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.147.0", + "prefixLen":25, + "network":"193.180.147.0\/25", + "version":48327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.147.128", + "prefixLen":25, + "network":"193.180.147.128\/25", + "version":48326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.147.128", + "prefixLen":25, + "network":"193.180.147.128\/25", + "version":48326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.160.0", + "prefixLen":25, + "network":"193.180.160.0\/25", + "version":48325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.160.0", + "prefixLen":25, + "network":"193.180.160.0\/25", + "version":48325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.160.128", + "prefixLen":25, + "network":"193.180.160.128\/25", + "version":48324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.160.128", + "prefixLen":25, + "network":"193.180.160.128\/25", + "version":48324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.161.0", + "prefixLen":25, + "network":"193.180.161.0\/25", + "version":48323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.161.0", + "prefixLen":25, + "network":"193.180.161.0\/25", + "version":48323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.161.128", + "prefixLen":25, + "network":"193.180.161.128\/25", + "version":48322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.161.128", + "prefixLen":25, + "network":"193.180.161.128\/25", + "version":48322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.162.0", + "prefixLen":25, + "network":"193.180.162.0\/25", + "version":48321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.162.0", + "prefixLen":25, + "network":"193.180.162.0\/25", + "version":48321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.162.128", + "prefixLen":25, + "network":"193.180.162.128\/25", + "version":48320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.162.128", + "prefixLen":25, + "network":"193.180.162.128\/25", + "version":48320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.163.0", + "prefixLen":25, + "network":"193.180.163.0\/25", + "version":48319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.163.0", + "prefixLen":25, + "network":"193.180.163.0\/25", + "version":48319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.163.128", + "prefixLen":25, + "network":"193.180.163.128\/25", + "version":48318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.163.128", + "prefixLen":25, + "network":"193.180.163.128\/25", + "version":48318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.176.0", + "prefixLen":25, + "network":"193.180.176.0\/25", + "version":48317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.176.0", + "prefixLen":25, + "network":"193.180.176.0\/25", + "version":48317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.176.128", + "prefixLen":25, + "network":"193.180.176.128\/25", + "version":48316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.176.128", + "prefixLen":25, + "network":"193.180.176.128\/25", + "version":48316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.177.0", + "prefixLen":25, + "network":"193.180.177.0\/25", + "version":48315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.177.0", + "prefixLen":25, + "network":"193.180.177.0\/25", + "version":48315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.177.128", + "prefixLen":25, + "network":"193.180.177.128\/25", + "version":48314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.177.128", + "prefixLen":25, + "network":"193.180.177.128\/25", + "version":48314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.178.0", + "prefixLen":25, + "network":"193.180.178.0\/25", + "version":48313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.178.0", + "prefixLen":25, + "network":"193.180.178.0\/25", + "version":48313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.178.128", + "prefixLen":25, + "network":"193.180.178.128\/25", + "version":48312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.178.128", + "prefixLen":25, + "network":"193.180.178.128\/25", + "version":48312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.179.0", + "prefixLen":25, + "network":"193.180.179.0\/25", + "version":48311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.179.0", + "prefixLen":25, + "network":"193.180.179.0\/25", + "version":48311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.179.128", + "prefixLen":25, + "network":"193.180.179.128\/25", + "version":48310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.179.128", + "prefixLen":25, + "network":"193.180.179.128\/25", + "version":48310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.192.0", + "prefixLen":25, + "network":"193.180.192.0\/25", + "version":48309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.192.0", + "prefixLen":25, + "network":"193.180.192.0\/25", + "version":48309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.192.128", + "prefixLen":25, + "network":"193.180.192.128\/25", + "version":48308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.192.128", + "prefixLen":25, + "network":"193.180.192.128\/25", + "version":48308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.193.0", + "prefixLen":25, + "network":"193.180.193.0\/25", + "version":48307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.193.0", + "prefixLen":25, + "network":"193.180.193.0\/25", + "version":48307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.193.128", + "prefixLen":25, + "network":"193.180.193.128\/25", + "version":48306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.193.128", + "prefixLen":25, + "network":"193.180.193.128\/25", + "version":48306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.194.0", + "prefixLen":25, + "network":"193.180.194.0\/25", + "version":48305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.194.0", + "prefixLen":25, + "network":"193.180.194.0\/25", + "version":48305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.194.128", + "prefixLen":25, + "network":"193.180.194.128\/25", + "version":48304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.194.128", + "prefixLen":25, + "network":"193.180.194.128\/25", + "version":48304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.195.0", + "prefixLen":25, + "network":"193.180.195.0\/25", + "version":48303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.195.0", + "prefixLen":25, + "network":"193.180.195.0\/25", + "version":48303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.195.128", + "prefixLen":25, + "network":"193.180.195.128\/25", + "version":48302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.195.128", + "prefixLen":25, + "network":"193.180.195.128\/25", + "version":48302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.208.0", + "prefixLen":25, + "network":"193.180.208.0\/25", + "version":48301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.208.0", + "prefixLen":25, + "network":"193.180.208.0\/25", + "version":48301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.208.128", + "prefixLen":25, + "network":"193.180.208.128\/25", + "version":48300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.208.128", + "prefixLen":25, + "network":"193.180.208.128\/25", + "version":48300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.209.0", + "prefixLen":25, + "network":"193.180.209.0\/25", + "version":48299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.209.0", + "prefixLen":25, + "network":"193.180.209.0\/25", + "version":48299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.209.128", + "prefixLen":25, + "network":"193.180.209.128\/25", + "version":48298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.209.128", + "prefixLen":25, + "network":"193.180.209.128\/25", + "version":48298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.210.0", + "prefixLen":25, + "network":"193.180.210.0\/25", + "version":48297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.210.0", + "prefixLen":25, + "network":"193.180.210.0\/25", + "version":48297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.210.128", + "prefixLen":25, + "network":"193.180.210.128\/25", + "version":48296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.210.128", + "prefixLen":25, + "network":"193.180.210.128\/25", + "version":48296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.211.0", + "prefixLen":25, + "network":"193.180.211.0\/25", + "version":48295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.211.0", + "prefixLen":25, + "network":"193.180.211.0\/25", + "version":48295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.211.128", + "prefixLen":25, + "network":"193.180.211.128\/25", + "version":48294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.211.128", + "prefixLen":25, + "network":"193.180.211.128\/25", + "version":48294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.224.0", + "prefixLen":25, + "network":"193.180.224.0\/25", + "version":48293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.224.0", + "prefixLen":25, + "network":"193.180.224.0\/25", + "version":48293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.224.128", + "prefixLen":25, + "network":"193.180.224.128\/25", + "version":48292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.224.128", + "prefixLen":25, + "network":"193.180.224.128\/25", + "version":48292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.225.0", + "prefixLen":25, + "network":"193.180.225.0\/25", + "version":48291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.225.0", + "prefixLen":25, + "network":"193.180.225.0\/25", + "version":48291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.225.128", + "prefixLen":25, + "network":"193.180.225.128\/25", + "version":48290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.225.128", + "prefixLen":25, + "network":"193.180.225.128\/25", + "version":48290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.226.0", + "prefixLen":25, + "network":"193.180.226.0\/25", + "version":48289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.226.0", + "prefixLen":25, + "network":"193.180.226.0\/25", + "version":48289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.226.128", + "prefixLen":25, + "network":"193.180.226.128\/25", + "version":48288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.226.128", + "prefixLen":25, + "network":"193.180.226.128\/25", + "version":48288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.227.0", + "prefixLen":25, + "network":"193.180.227.0\/25", + "version":48287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.227.0", + "prefixLen":25, + "network":"193.180.227.0\/25", + "version":48287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.227.128", + "prefixLen":25, + "network":"193.180.227.128\/25", + "version":48286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.227.128", + "prefixLen":25, + "network":"193.180.227.128\/25", + "version":48286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.240.0", + "prefixLen":25, + "network":"193.180.240.0\/25", + "version":48285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.240.0", + "prefixLen":25, + "network":"193.180.240.0\/25", + "version":48285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.240.128", + "prefixLen":25, + "network":"193.180.240.128\/25", + "version":48284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.240.128", + "prefixLen":25, + "network":"193.180.240.128\/25", + "version":48284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.241.0", + "prefixLen":25, + "network":"193.180.241.0\/25", + "version":48283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.241.0", + "prefixLen":25, + "network":"193.180.241.0\/25", + "version":48283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.241.128", + "prefixLen":25, + "network":"193.180.241.128\/25", + "version":48282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.241.128", + "prefixLen":25, + "network":"193.180.241.128\/25", + "version":48282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.242.0", + "prefixLen":25, + "network":"193.180.242.0\/25", + "version":48281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.242.0", + "prefixLen":25, + "network":"193.180.242.0\/25", + "version":48281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.242.128", + "prefixLen":25, + "network":"193.180.242.128\/25", + "version":48280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.242.128", + "prefixLen":25, + "network":"193.180.242.128\/25", + "version":48280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.243.0", + "prefixLen":25, + "network":"193.180.243.0\/25", + "version":48279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.243.0", + "prefixLen":25, + "network":"193.180.243.0\/25", + "version":48279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.180.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.180.243.128", + "prefixLen":25, + "network":"193.180.243.128\/25", + "version":48278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.180.243.128", + "prefixLen":25, + "network":"193.180.243.128\/25", + "version":48278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64868 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.0.0", + "prefixLen":25, + "network":"193.181.0.0\/25", + "version":48405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.0.0", + "prefixLen":25, + "network":"193.181.0.0\/25", + "version":48405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.0.128", + "prefixLen":25, + "network":"193.181.0.128\/25", + "version":48532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.0.128", + "prefixLen":25, + "network":"193.181.0.128\/25", + "version":48532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.1.0", + "prefixLen":25, + "network":"193.181.1.0\/25", + "version":48531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.1.0", + "prefixLen":25, + "network":"193.181.1.0\/25", + "version":48531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.1.128", + "prefixLen":25, + "network":"193.181.1.128\/25", + "version":48530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.1.128", + "prefixLen":25, + "network":"193.181.1.128\/25", + "version":48530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.2.0", + "prefixLen":25, + "network":"193.181.2.0\/25", + "version":48529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.2.0", + "prefixLen":25, + "network":"193.181.2.0\/25", + "version":48529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.2.128", + "prefixLen":25, + "network":"193.181.2.128\/25", + "version":48528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.2.128", + "prefixLen":25, + "network":"193.181.2.128\/25", + "version":48528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.3.0", + "prefixLen":25, + "network":"193.181.3.0\/25", + "version":48527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.3.0", + "prefixLen":25, + "network":"193.181.3.0\/25", + "version":48527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.3.128", + "prefixLen":25, + "network":"193.181.3.128\/25", + "version":48526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.3.128", + "prefixLen":25, + "network":"193.181.3.128\/25", + "version":48526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.16.0", + "prefixLen":25, + "network":"193.181.16.0\/25", + "version":48525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.16.0", + "prefixLen":25, + "network":"193.181.16.0\/25", + "version":48525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.16.128", + "prefixLen":25, + "network":"193.181.16.128\/25", + "version":48524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.16.128", + "prefixLen":25, + "network":"193.181.16.128\/25", + "version":48524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.17.0", + "prefixLen":25, + "network":"193.181.17.0\/25", + "version":48523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.17.0", + "prefixLen":25, + "network":"193.181.17.0\/25", + "version":48523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.17.128", + "prefixLen":25, + "network":"193.181.17.128\/25", + "version":48522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.17.128", + "prefixLen":25, + "network":"193.181.17.128\/25", + "version":48522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.18.0", + "prefixLen":25, + "network":"193.181.18.0\/25", + "version":48521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.18.0", + "prefixLen":25, + "network":"193.181.18.0\/25", + "version":48521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.18.128", + "prefixLen":25, + "network":"193.181.18.128\/25", + "version":48520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.18.128", + "prefixLen":25, + "network":"193.181.18.128\/25", + "version":48520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.19.0", + "prefixLen":25, + "network":"193.181.19.0\/25", + "version":48519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.19.0", + "prefixLen":25, + "network":"193.181.19.0\/25", + "version":48519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.19.128", + "prefixLen":25, + "network":"193.181.19.128\/25", + "version":48518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.19.128", + "prefixLen":25, + "network":"193.181.19.128\/25", + "version":48518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.32.0", + "prefixLen":25, + "network":"193.181.32.0\/25", + "version":48517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.32.0", + "prefixLen":25, + "network":"193.181.32.0\/25", + "version":48517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.32.128", + "prefixLen":25, + "network":"193.181.32.128\/25", + "version":48516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.32.128", + "prefixLen":25, + "network":"193.181.32.128\/25", + "version":48516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.33.0", + "prefixLen":25, + "network":"193.181.33.0\/25", + "version":48515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.33.0", + "prefixLen":25, + "network":"193.181.33.0\/25", + "version":48515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.33.128", + "prefixLen":25, + "network":"193.181.33.128\/25", + "version":48514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.33.128", + "prefixLen":25, + "network":"193.181.33.128\/25", + "version":48514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.34.0", + "prefixLen":25, + "network":"193.181.34.0\/25", + "version":48513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.34.0", + "prefixLen":25, + "network":"193.181.34.0\/25", + "version":48513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.34.128", + "prefixLen":25, + "network":"193.181.34.128\/25", + "version":48512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.34.128", + "prefixLen":25, + "network":"193.181.34.128\/25", + "version":48512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.35.0", + "prefixLen":25, + "network":"193.181.35.0\/25", + "version":48511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.35.0", + "prefixLen":25, + "network":"193.181.35.0\/25", + "version":48511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.35.128", + "prefixLen":25, + "network":"193.181.35.128\/25", + "version":48510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.35.128", + "prefixLen":25, + "network":"193.181.35.128\/25", + "version":48510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.48.0", + "prefixLen":25, + "network":"193.181.48.0\/25", + "version":48509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.48.0", + "prefixLen":25, + "network":"193.181.48.0\/25", + "version":48509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.48.128", + "prefixLen":25, + "network":"193.181.48.128\/25", + "version":48508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.48.128", + "prefixLen":25, + "network":"193.181.48.128\/25", + "version":48508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.49.0", + "prefixLen":25, + "network":"193.181.49.0\/25", + "version":48507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.49.0", + "prefixLen":25, + "network":"193.181.49.0\/25", + "version":48507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.49.128", + "prefixLen":25, + "network":"193.181.49.128\/25", + "version":48506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.49.128", + "prefixLen":25, + "network":"193.181.49.128\/25", + "version":48506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.50.0", + "prefixLen":25, + "network":"193.181.50.0\/25", + "version":48505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.50.0", + "prefixLen":25, + "network":"193.181.50.0\/25", + "version":48505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.50.128", + "prefixLen":25, + "network":"193.181.50.128\/25", + "version":48504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.50.128", + "prefixLen":25, + "network":"193.181.50.128\/25", + "version":48504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.51.0", + "prefixLen":25, + "network":"193.181.51.0\/25", + "version":48503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.51.0", + "prefixLen":25, + "network":"193.181.51.0\/25", + "version":48503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.51.128", + "prefixLen":25, + "network":"193.181.51.128\/25", + "version":48502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.51.128", + "prefixLen":25, + "network":"193.181.51.128\/25", + "version":48502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.64.0", + "prefixLen":25, + "network":"193.181.64.0\/25", + "version":48501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.64.0", + "prefixLen":25, + "network":"193.181.64.0\/25", + "version":48501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.64.128", + "prefixLen":25, + "network":"193.181.64.128\/25", + "version":48500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.64.128", + "prefixLen":25, + "network":"193.181.64.128\/25", + "version":48500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.65.0", + "prefixLen":25, + "network":"193.181.65.0\/25", + "version":48499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.65.0", + "prefixLen":25, + "network":"193.181.65.0\/25", + "version":48499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.65.128", + "prefixLen":25, + "network":"193.181.65.128\/25", + "version":48498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.65.128", + "prefixLen":25, + "network":"193.181.65.128\/25", + "version":48498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.66.0", + "prefixLen":25, + "network":"193.181.66.0\/25", + "version":48497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.66.0", + "prefixLen":25, + "network":"193.181.66.0\/25", + "version":48497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.66.128", + "prefixLen":25, + "network":"193.181.66.128\/25", + "version":48496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.66.128", + "prefixLen":25, + "network":"193.181.66.128\/25", + "version":48496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.67.0", + "prefixLen":25, + "network":"193.181.67.0\/25", + "version":48495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.67.0", + "prefixLen":25, + "network":"193.181.67.0\/25", + "version":48495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.67.128", + "prefixLen":25, + "network":"193.181.67.128\/25", + "version":48494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.67.128", + "prefixLen":25, + "network":"193.181.67.128\/25", + "version":48494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.80.0", + "prefixLen":25, + "network":"193.181.80.0\/25", + "version":48493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.80.0", + "prefixLen":25, + "network":"193.181.80.0\/25", + "version":48493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.80.128", + "prefixLen":25, + "network":"193.181.80.128\/25", + "version":48492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.80.128", + "prefixLen":25, + "network":"193.181.80.128\/25", + "version":48492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.81.0", + "prefixLen":25, + "network":"193.181.81.0\/25", + "version":48491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.81.0", + "prefixLen":25, + "network":"193.181.81.0\/25", + "version":48491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.81.128", + "prefixLen":25, + "network":"193.181.81.128\/25", + "version":48490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.81.128", + "prefixLen":25, + "network":"193.181.81.128\/25", + "version":48490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.82.0", + "prefixLen":25, + "network":"193.181.82.0\/25", + "version":48489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.82.0", + "prefixLen":25, + "network":"193.181.82.0\/25", + "version":48489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.82.128", + "prefixLen":25, + "network":"193.181.82.128\/25", + "version":48488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.82.128", + "prefixLen":25, + "network":"193.181.82.128\/25", + "version":48488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.83.0", + "prefixLen":25, + "network":"193.181.83.0\/25", + "version":48487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.83.0", + "prefixLen":25, + "network":"193.181.83.0\/25", + "version":48487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.83.128", + "prefixLen":25, + "network":"193.181.83.128\/25", + "version":48486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.83.128", + "prefixLen":25, + "network":"193.181.83.128\/25", + "version":48486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.96.0", + "prefixLen":25, + "network":"193.181.96.0\/25", + "version":48485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.96.0", + "prefixLen":25, + "network":"193.181.96.0\/25", + "version":48485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.96.128", + "prefixLen":25, + "network":"193.181.96.128\/25", + "version":48484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.96.128", + "prefixLen":25, + "network":"193.181.96.128\/25", + "version":48484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.97.0", + "prefixLen":25, + "network":"193.181.97.0\/25", + "version":48483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.97.0", + "prefixLen":25, + "network":"193.181.97.0\/25", + "version":48483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.97.128", + "prefixLen":25, + "network":"193.181.97.128\/25", + "version":48482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.97.128", + "prefixLen":25, + "network":"193.181.97.128\/25", + "version":48482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.98.0", + "prefixLen":25, + "network":"193.181.98.0\/25", + "version":48481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.98.0", + "prefixLen":25, + "network":"193.181.98.0\/25", + "version":48481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.98.128", + "prefixLen":25, + "network":"193.181.98.128\/25", + "version":48480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.98.128", + "prefixLen":25, + "network":"193.181.98.128\/25", + "version":48480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.99.0", + "prefixLen":25, + "network":"193.181.99.0\/25", + "version":48479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.99.0", + "prefixLen":25, + "network":"193.181.99.0\/25", + "version":48479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.99.128", + "prefixLen":25, + "network":"193.181.99.128\/25", + "version":48478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.99.128", + "prefixLen":25, + "network":"193.181.99.128\/25", + "version":48478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.112.0", + "prefixLen":25, + "network":"193.181.112.0\/25", + "version":48477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.112.0", + "prefixLen":25, + "network":"193.181.112.0\/25", + "version":48477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.112.128", + "prefixLen":25, + "network":"193.181.112.128\/25", + "version":48476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.112.128", + "prefixLen":25, + "network":"193.181.112.128\/25", + "version":48476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.113.0", + "prefixLen":25, + "network":"193.181.113.0\/25", + "version":48475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.113.0", + "prefixLen":25, + "network":"193.181.113.0\/25", + "version":48475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.113.128", + "prefixLen":25, + "network":"193.181.113.128\/25", + "version":48474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.113.128", + "prefixLen":25, + "network":"193.181.113.128\/25", + "version":48474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.114.0", + "prefixLen":25, + "network":"193.181.114.0\/25", + "version":48473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.114.0", + "prefixLen":25, + "network":"193.181.114.0\/25", + "version":48473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.114.128", + "prefixLen":25, + "network":"193.181.114.128\/25", + "version":48472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.114.128", + "prefixLen":25, + "network":"193.181.114.128\/25", + "version":48472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.115.0", + "prefixLen":25, + "network":"193.181.115.0\/25", + "version":48471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.115.0", + "prefixLen":25, + "network":"193.181.115.0\/25", + "version":48471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.115.128", + "prefixLen":25, + "network":"193.181.115.128\/25", + "version":48470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.115.128", + "prefixLen":25, + "network":"193.181.115.128\/25", + "version":48470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.128.0", + "prefixLen":25, + "network":"193.181.128.0\/25", + "version":48469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.128.0", + "prefixLen":25, + "network":"193.181.128.0\/25", + "version":48469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.128.128", + "prefixLen":25, + "network":"193.181.128.128\/25", + "version":48468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.128.128", + "prefixLen":25, + "network":"193.181.128.128\/25", + "version":48468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.129.0", + "prefixLen":25, + "network":"193.181.129.0\/25", + "version":48467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.129.0", + "prefixLen":25, + "network":"193.181.129.0\/25", + "version":48467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.129.128", + "prefixLen":25, + "network":"193.181.129.128\/25", + "version":48466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.129.128", + "prefixLen":25, + "network":"193.181.129.128\/25", + "version":48466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.130.0", + "prefixLen":25, + "network":"193.181.130.0\/25", + "version":48465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.130.0", + "prefixLen":25, + "network":"193.181.130.0\/25", + "version":48465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.130.128", + "prefixLen":25, + "network":"193.181.130.128\/25", + "version":48464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.130.128", + "prefixLen":25, + "network":"193.181.130.128\/25", + "version":48464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.131.0", + "prefixLen":25, + "network":"193.181.131.0\/25", + "version":48463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.131.0", + "prefixLen":25, + "network":"193.181.131.0\/25", + "version":48463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.131.128", + "prefixLen":25, + "network":"193.181.131.128\/25", + "version":48462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.131.128", + "prefixLen":25, + "network":"193.181.131.128\/25", + "version":48462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.144.0", + "prefixLen":25, + "network":"193.181.144.0\/25", + "version":48461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.144.0", + "prefixLen":25, + "network":"193.181.144.0\/25", + "version":48461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.144.128", + "prefixLen":25, + "network":"193.181.144.128\/25", + "version":48460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.144.128", + "prefixLen":25, + "network":"193.181.144.128\/25", + "version":48460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.145.0", + "prefixLen":25, + "network":"193.181.145.0\/25", + "version":48459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.145.0", + "prefixLen":25, + "network":"193.181.145.0\/25", + "version":48459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.145.128", + "prefixLen":25, + "network":"193.181.145.128\/25", + "version":48458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.145.128", + "prefixLen":25, + "network":"193.181.145.128\/25", + "version":48458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.146.0", + "prefixLen":25, + "network":"193.181.146.0\/25", + "version":48457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.146.0", + "prefixLen":25, + "network":"193.181.146.0\/25", + "version":48457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.146.128", + "prefixLen":25, + "network":"193.181.146.128\/25", + "version":48456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.146.128", + "prefixLen":25, + "network":"193.181.146.128\/25", + "version":48456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.147.0", + "prefixLen":25, + "network":"193.181.147.0\/25", + "version":48455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.147.0", + "prefixLen":25, + "network":"193.181.147.0\/25", + "version":48455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.147.128", + "prefixLen":25, + "network":"193.181.147.128\/25", + "version":48454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.147.128", + "prefixLen":25, + "network":"193.181.147.128\/25", + "version":48454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.160.0", + "prefixLen":25, + "network":"193.181.160.0\/25", + "version":48453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.160.0", + "prefixLen":25, + "network":"193.181.160.0\/25", + "version":48453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.160.128", + "prefixLen":25, + "network":"193.181.160.128\/25", + "version":48452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.160.128", + "prefixLen":25, + "network":"193.181.160.128\/25", + "version":48452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.161.0", + "prefixLen":25, + "network":"193.181.161.0\/25", + "version":48451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.161.0", + "prefixLen":25, + "network":"193.181.161.0\/25", + "version":48451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.161.128", + "prefixLen":25, + "network":"193.181.161.128\/25", + "version":48450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.161.128", + "prefixLen":25, + "network":"193.181.161.128\/25", + "version":48450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.162.0", + "prefixLen":25, + "network":"193.181.162.0\/25", + "version":48449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.162.0", + "prefixLen":25, + "network":"193.181.162.0\/25", + "version":48449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.162.128", + "prefixLen":25, + "network":"193.181.162.128\/25", + "version":48448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.162.128", + "prefixLen":25, + "network":"193.181.162.128\/25", + "version":48448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.163.0", + "prefixLen":25, + "network":"193.181.163.0\/25", + "version":48447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.163.0", + "prefixLen":25, + "network":"193.181.163.0\/25", + "version":48447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.163.128", + "prefixLen":25, + "network":"193.181.163.128\/25", + "version":48446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.163.128", + "prefixLen":25, + "network":"193.181.163.128\/25", + "version":48446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.176.0", + "prefixLen":25, + "network":"193.181.176.0\/25", + "version":48445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.176.0", + "prefixLen":25, + "network":"193.181.176.0\/25", + "version":48445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.176.128", + "prefixLen":25, + "network":"193.181.176.128\/25", + "version":48444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.176.128", + "prefixLen":25, + "network":"193.181.176.128\/25", + "version":48444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.177.0", + "prefixLen":25, + "network":"193.181.177.0\/25", + "version":48443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.177.0", + "prefixLen":25, + "network":"193.181.177.0\/25", + "version":48443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.177.128", + "prefixLen":25, + "network":"193.181.177.128\/25", + "version":48442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.177.128", + "prefixLen":25, + "network":"193.181.177.128\/25", + "version":48442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.178.0", + "prefixLen":25, + "network":"193.181.178.0\/25", + "version":48441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.178.0", + "prefixLen":25, + "network":"193.181.178.0\/25", + "version":48441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.178.128", + "prefixLen":25, + "network":"193.181.178.128\/25", + "version":48440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.178.128", + "prefixLen":25, + "network":"193.181.178.128\/25", + "version":48440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.179.0", + "prefixLen":25, + "network":"193.181.179.0\/25", + "version":48439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.179.0", + "prefixLen":25, + "network":"193.181.179.0\/25", + "version":48439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.179.128", + "prefixLen":25, + "network":"193.181.179.128\/25", + "version":48438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.179.128", + "prefixLen":25, + "network":"193.181.179.128\/25", + "version":48438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.192.0", + "prefixLen":25, + "network":"193.181.192.0\/25", + "version":48437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.192.0", + "prefixLen":25, + "network":"193.181.192.0\/25", + "version":48437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.192.128", + "prefixLen":25, + "network":"193.181.192.128\/25", + "version":48436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.192.128", + "prefixLen":25, + "network":"193.181.192.128\/25", + "version":48436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.193.0", + "prefixLen":25, + "network":"193.181.193.0\/25", + "version":48435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.193.0", + "prefixLen":25, + "network":"193.181.193.0\/25", + "version":48435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.193.128", + "prefixLen":25, + "network":"193.181.193.128\/25", + "version":48434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.193.128", + "prefixLen":25, + "network":"193.181.193.128\/25", + "version":48434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.194.0", + "prefixLen":25, + "network":"193.181.194.0\/25", + "version":48433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.194.0", + "prefixLen":25, + "network":"193.181.194.0\/25", + "version":48433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.194.128", + "prefixLen":25, + "network":"193.181.194.128\/25", + "version":48432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.194.128", + "prefixLen":25, + "network":"193.181.194.128\/25", + "version":48432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.195.0", + "prefixLen":25, + "network":"193.181.195.0\/25", + "version":48431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.195.0", + "prefixLen":25, + "network":"193.181.195.0\/25", + "version":48431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.195.128", + "prefixLen":25, + "network":"193.181.195.128\/25", + "version":48430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.195.128", + "prefixLen":25, + "network":"193.181.195.128\/25", + "version":48430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.208.0", + "prefixLen":25, + "network":"193.181.208.0\/25", + "version":48429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.208.0", + "prefixLen":25, + "network":"193.181.208.0\/25", + "version":48429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.208.128", + "prefixLen":25, + "network":"193.181.208.128\/25", + "version":48428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.208.128", + "prefixLen":25, + "network":"193.181.208.128\/25", + "version":48428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.209.0", + "prefixLen":25, + "network":"193.181.209.0\/25", + "version":48427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.209.0", + "prefixLen":25, + "network":"193.181.209.0\/25", + "version":48427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.209.128", + "prefixLen":25, + "network":"193.181.209.128\/25", + "version":48426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.209.128", + "prefixLen":25, + "network":"193.181.209.128\/25", + "version":48426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.210.0", + "prefixLen":25, + "network":"193.181.210.0\/25", + "version":48425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.210.0", + "prefixLen":25, + "network":"193.181.210.0\/25", + "version":48425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.210.128", + "prefixLen":25, + "network":"193.181.210.128\/25", + "version":48424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.210.128", + "prefixLen":25, + "network":"193.181.210.128\/25", + "version":48424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.211.0", + "prefixLen":25, + "network":"193.181.211.0\/25", + "version":48423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.211.0", + "prefixLen":25, + "network":"193.181.211.0\/25", + "version":48423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.211.128", + "prefixLen":25, + "network":"193.181.211.128\/25", + "version":48422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.211.128", + "prefixLen":25, + "network":"193.181.211.128\/25", + "version":48422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.224.0", + "prefixLen":25, + "network":"193.181.224.0\/25", + "version":48421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.224.0", + "prefixLen":25, + "network":"193.181.224.0\/25", + "version":48421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.224.128", + "prefixLen":25, + "network":"193.181.224.128\/25", + "version":48420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.224.128", + "prefixLen":25, + "network":"193.181.224.128\/25", + "version":48420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.225.0", + "prefixLen":25, + "network":"193.181.225.0\/25", + "version":48419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.225.0", + "prefixLen":25, + "network":"193.181.225.0\/25", + "version":48419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.225.128", + "prefixLen":25, + "network":"193.181.225.128\/25", + "version":48418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.225.128", + "prefixLen":25, + "network":"193.181.225.128\/25", + "version":48418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.226.0", + "prefixLen":25, + "network":"193.181.226.0\/25", + "version":48417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.226.0", + "prefixLen":25, + "network":"193.181.226.0\/25", + "version":48417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.226.128", + "prefixLen":25, + "network":"193.181.226.128\/25", + "version":48416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.226.128", + "prefixLen":25, + "network":"193.181.226.128\/25", + "version":48416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.227.0", + "prefixLen":25, + "network":"193.181.227.0\/25", + "version":48415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.227.0", + "prefixLen":25, + "network":"193.181.227.0\/25", + "version":48415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.227.128", + "prefixLen":25, + "network":"193.181.227.128\/25", + "version":48414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.227.128", + "prefixLen":25, + "network":"193.181.227.128\/25", + "version":48414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.240.0", + "prefixLen":25, + "network":"193.181.240.0\/25", + "version":48413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.240.0", + "prefixLen":25, + "network":"193.181.240.0\/25", + "version":48413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.240.128", + "prefixLen":25, + "network":"193.181.240.128\/25", + "version":48412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.240.128", + "prefixLen":25, + "network":"193.181.240.128\/25", + "version":48412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.241.0", + "prefixLen":25, + "network":"193.181.241.0\/25", + "version":48411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.241.0", + "prefixLen":25, + "network":"193.181.241.0\/25", + "version":48411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.241.128", + "prefixLen":25, + "network":"193.181.241.128\/25", + "version":48410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.241.128", + "prefixLen":25, + "network":"193.181.241.128\/25", + "version":48410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.242.0", + "prefixLen":25, + "network":"193.181.242.0\/25", + "version":48409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.242.0", + "prefixLen":25, + "network":"193.181.242.0\/25", + "version":48409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.242.128", + "prefixLen":25, + "network":"193.181.242.128\/25", + "version":48408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.242.128", + "prefixLen":25, + "network":"193.181.242.128\/25", + "version":48408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.243.0", + "prefixLen":25, + "network":"193.181.243.0\/25", + "version":48407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.243.0", + "prefixLen":25, + "network":"193.181.243.0\/25", + "version":48407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.181.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.181.243.128", + "prefixLen":25, + "network":"193.181.243.128\/25", + "version":48406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.181.243.128", + "prefixLen":25, + "network":"193.181.243.128\/25", + "version":48406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64869 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.0.0", + "prefixLen":25, + "network":"193.182.0.0\/25", + "version":48533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.0.0", + "prefixLen":25, + "network":"193.182.0.0\/25", + "version":48533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.0.128", + "prefixLen":25, + "network":"193.182.0.128\/25", + "version":48660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.0.128", + "prefixLen":25, + "network":"193.182.0.128\/25", + "version":48660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.1.0", + "prefixLen":25, + "network":"193.182.1.0\/25", + "version":48659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.1.0", + "prefixLen":25, + "network":"193.182.1.0\/25", + "version":48659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.1.128", + "prefixLen":25, + "network":"193.182.1.128\/25", + "version":48658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.1.128", + "prefixLen":25, + "network":"193.182.1.128\/25", + "version":48658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.2.0", + "prefixLen":25, + "network":"193.182.2.0\/25", + "version":48657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.2.0", + "prefixLen":25, + "network":"193.182.2.0\/25", + "version":48657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.2.128", + "prefixLen":25, + "network":"193.182.2.128\/25", + "version":48656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.2.128", + "prefixLen":25, + "network":"193.182.2.128\/25", + "version":48656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.3.0", + "prefixLen":25, + "network":"193.182.3.0\/25", + "version":48655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.3.0", + "prefixLen":25, + "network":"193.182.3.0\/25", + "version":48655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.3.128", + "prefixLen":25, + "network":"193.182.3.128\/25", + "version":48654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.3.128", + "prefixLen":25, + "network":"193.182.3.128\/25", + "version":48654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.16.0", + "prefixLen":25, + "network":"193.182.16.0\/25", + "version":48653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.16.0", + "prefixLen":25, + "network":"193.182.16.0\/25", + "version":48653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.16.128", + "prefixLen":25, + "network":"193.182.16.128\/25", + "version":48652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.16.128", + "prefixLen":25, + "network":"193.182.16.128\/25", + "version":48652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.17.0", + "prefixLen":25, + "network":"193.182.17.0\/25", + "version":48651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.17.0", + "prefixLen":25, + "network":"193.182.17.0\/25", + "version":48651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.17.128", + "prefixLen":25, + "network":"193.182.17.128\/25", + "version":48650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.17.128", + "prefixLen":25, + "network":"193.182.17.128\/25", + "version":48650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.18.0", + "prefixLen":25, + "network":"193.182.18.0\/25", + "version":48649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.18.0", + "prefixLen":25, + "network":"193.182.18.0\/25", + "version":48649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.18.128", + "prefixLen":25, + "network":"193.182.18.128\/25", + "version":48648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.18.128", + "prefixLen":25, + "network":"193.182.18.128\/25", + "version":48648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.19.0", + "prefixLen":25, + "network":"193.182.19.0\/25", + "version":48647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.19.0", + "prefixLen":25, + "network":"193.182.19.0\/25", + "version":48647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.19.128", + "prefixLen":25, + "network":"193.182.19.128\/25", + "version":48646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.19.128", + "prefixLen":25, + "network":"193.182.19.128\/25", + "version":48646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.32.0", + "prefixLen":25, + "network":"193.182.32.0\/25", + "version":48645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.32.0", + "prefixLen":25, + "network":"193.182.32.0\/25", + "version":48645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.32.128", + "prefixLen":25, + "network":"193.182.32.128\/25", + "version":48644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.32.128", + "prefixLen":25, + "network":"193.182.32.128\/25", + "version":48644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.33.0", + "prefixLen":25, + "network":"193.182.33.0\/25", + "version":48643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.33.0", + "prefixLen":25, + "network":"193.182.33.0\/25", + "version":48643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.33.128", + "prefixLen":25, + "network":"193.182.33.128\/25", + "version":48642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.33.128", + "prefixLen":25, + "network":"193.182.33.128\/25", + "version":48642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.34.0", + "prefixLen":25, + "network":"193.182.34.0\/25", + "version":48641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.34.0", + "prefixLen":25, + "network":"193.182.34.0\/25", + "version":48641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.34.128", + "prefixLen":25, + "network":"193.182.34.128\/25", + "version":48640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.34.128", + "prefixLen":25, + "network":"193.182.34.128\/25", + "version":48640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.35.0", + "prefixLen":25, + "network":"193.182.35.0\/25", + "version":48639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.35.0", + "prefixLen":25, + "network":"193.182.35.0\/25", + "version":48639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.35.128", + "prefixLen":25, + "network":"193.182.35.128\/25", + "version":48638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.35.128", + "prefixLen":25, + "network":"193.182.35.128\/25", + "version":48638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.48.0", + "prefixLen":25, + "network":"193.182.48.0\/25", + "version":48637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.48.0", + "prefixLen":25, + "network":"193.182.48.0\/25", + "version":48637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.48.128", + "prefixLen":25, + "network":"193.182.48.128\/25", + "version":48636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.48.128", + "prefixLen":25, + "network":"193.182.48.128\/25", + "version":48636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.49.0", + "prefixLen":25, + "network":"193.182.49.0\/25", + "version":48635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.49.0", + "prefixLen":25, + "network":"193.182.49.0\/25", + "version":48635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.49.128", + "prefixLen":25, + "network":"193.182.49.128\/25", + "version":48634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.49.128", + "prefixLen":25, + "network":"193.182.49.128\/25", + "version":48634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.50.0", + "prefixLen":25, + "network":"193.182.50.0\/25", + "version":48633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.50.0", + "prefixLen":25, + "network":"193.182.50.0\/25", + "version":48633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.50.128", + "prefixLen":25, + "network":"193.182.50.128\/25", + "version":48632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.50.128", + "prefixLen":25, + "network":"193.182.50.128\/25", + "version":48632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.51.0", + "prefixLen":25, + "network":"193.182.51.0\/25", + "version":48631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.51.0", + "prefixLen":25, + "network":"193.182.51.0\/25", + "version":48631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.51.128", + "prefixLen":25, + "network":"193.182.51.128\/25", + "version":48630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.51.128", + "prefixLen":25, + "network":"193.182.51.128\/25", + "version":48630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.64.0", + "prefixLen":25, + "network":"193.182.64.0\/25", + "version":48629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.64.0", + "prefixLen":25, + "network":"193.182.64.0\/25", + "version":48629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.64.128", + "prefixLen":25, + "network":"193.182.64.128\/25", + "version":48628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.64.128", + "prefixLen":25, + "network":"193.182.64.128\/25", + "version":48628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.65.0", + "prefixLen":25, + "network":"193.182.65.0\/25", + "version":48627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.65.0", + "prefixLen":25, + "network":"193.182.65.0\/25", + "version":48627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.65.128", + "prefixLen":25, + "network":"193.182.65.128\/25", + "version":48626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.65.128", + "prefixLen":25, + "network":"193.182.65.128\/25", + "version":48626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.66.0", + "prefixLen":25, + "network":"193.182.66.0\/25", + "version":48625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.66.0", + "prefixLen":25, + "network":"193.182.66.0\/25", + "version":48625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.66.128", + "prefixLen":25, + "network":"193.182.66.128\/25", + "version":48624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.66.128", + "prefixLen":25, + "network":"193.182.66.128\/25", + "version":48624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.67.0", + "prefixLen":25, + "network":"193.182.67.0\/25", + "version":48623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.67.0", + "prefixLen":25, + "network":"193.182.67.0\/25", + "version":48623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.67.128", + "prefixLen":25, + "network":"193.182.67.128\/25", + "version":48622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.67.128", + "prefixLen":25, + "network":"193.182.67.128\/25", + "version":48622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.80.0", + "prefixLen":25, + "network":"193.182.80.0\/25", + "version":48621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.80.0", + "prefixLen":25, + "network":"193.182.80.0\/25", + "version":48621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.80.128", + "prefixLen":25, + "network":"193.182.80.128\/25", + "version":48620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.80.128", + "prefixLen":25, + "network":"193.182.80.128\/25", + "version":48620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.81.0", + "prefixLen":25, + "network":"193.182.81.0\/25", + "version":48619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.81.0", + "prefixLen":25, + "network":"193.182.81.0\/25", + "version":48619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.81.128", + "prefixLen":25, + "network":"193.182.81.128\/25", + "version":48618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.81.128", + "prefixLen":25, + "network":"193.182.81.128\/25", + "version":48618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.82.0", + "prefixLen":25, + "network":"193.182.82.0\/25", + "version":48617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.82.0", + "prefixLen":25, + "network":"193.182.82.0\/25", + "version":48617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.82.128", + "prefixLen":25, + "network":"193.182.82.128\/25", + "version":48616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.82.128", + "prefixLen":25, + "network":"193.182.82.128\/25", + "version":48616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.83.0", + "prefixLen":25, + "network":"193.182.83.0\/25", + "version":48615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.83.0", + "prefixLen":25, + "network":"193.182.83.0\/25", + "version":48615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.83.128", + "prefixLen":25, + "network":"193.182.83.128\/25", + "version":48614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.83.128", + "prefixLen":25, + "network":"193.182.83.128\/25", + "version":48614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.96.0", + "prefixLen":25, + "network":"193.182.96.0\/25", + "version":48613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.96.0", + "prefixLen":25, + "network":"193.182.96.0\/25", + "version":48613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.96.128", + "prefixLen":25, + "network":"193.182.96.128\/25", + "version":48612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.96.128", + "prefixLen":25, + "network":"193.182.96.128\/25", + "version":48612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.97.0", + "prefixLen":25, + "network":"193.182.97.0\/25", + "version":48611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.97.0", + "prefixLen":25, + "network":"193.182.97.0\/25", + "version":48611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.97.128", + "prefixLen":25, + "network":"193.182.97.128\/25", + "version":48610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.97.128", + "prefixLen":25, + "network":"193.182.97.128\/25", + "version":48610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.98.0", + "prefixLen":25, + "network":"193.182.98.0\/25", + "version":48609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.98.0", + "prefixLen":25, + "network":"193.182.98.0\/25", + "version":48609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.98.128", + "prefixLen":25, + "network":"193.182.98.128\/25", + "version":48608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.98.128", + "prefixLen":25, + "network":"193.182.98.128\/25", + "version":48608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.99.0", + "prefixLen":25, + "network":"193.182.99.0\/25", + "version":48607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.99.0", + "prefixLen":25, + "network":"193.182.99.0\/25", + "version":48607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.99.128", + "prefixLen":25, + "network":"193.182.99.128\/25", + "version":48606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.99.128", + "prefixLen":25, + "network":"193.182.99.128\/25", + "version":48606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.112.0", + "prefixLen":25, + "network":"193.182.112.0\/25", + "version":48605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.112.0", + "prefixLen":25, + "network":"193.182.112.0\/25", + "version":48605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.112.128", + "prefixLen":25, + "network":"193.182.112.128\/25", + "version":48604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.112.128", + "prefixLen":25, + "network":"193.182.112.128\/25", + "version":48604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.113.0", + "prefixLen":25, + "network":"193.182.113.0\/25", + "version":48603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.113.0", + "prefixLen":25, + "network":"193.182.113.0\/25", + "version":48603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.113.128", + "prefixLen":25, + "network":"193.182.113.128\/25", + "version":48602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.113.128", + "prefixLen":25, + "network":"193.182.113.128\/25", + "version":48602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.114.0", + "prefixLen":25, + "network":"193.182.114.0\/25", + "version":48601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.114.0", + "prefixLen":25, + "network":"193.182.114.0\/25", + "version":48601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.114.128", + "prefixLen":25, + "network":"193.182.114.128\/25", + "version":48600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.114.128", + "prefixLen":25, + "network":"193.182.114.128\/25", + "version":48600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.115.0", + "prefixLen":25, + "network":"193.182.115.0\/25", + "version":48599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.115.0", + "prefixLen":25, + "network":"193.182.115.0\/25", + "version":48599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.115.128", + "prefixLen":25, + "network":"193.182.115.128\/25", + "version":48598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.115.128", + "prefixLen":25, + "network":"193.182.115.128\/25", + "version":48598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.128.0", + "prefixLen":25, + "network":"193.182.128.0\/25", + "version":48597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.128.0", + "prefixLen":25, + "network":"193.182.128.0\/25", + "version":48597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.128.128", + "prefixLen":25, + "network":"193.182.128.128\/25", + "version":48596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.128.128", + "prefixLen":25, + "network":"193.182.128.128\/25", + "version":48596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.129.0", + "prefixLen":25, + "network":"193.182.129.0\/25", + "version":48595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.129.0", + "prefixLen":25, + "network":"193.182.129.0\/25", + "version":48595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.129.128", + "prefixLen":25, + "network":"193.182.129.128\/25", + "version":48594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.129.128", + "prefixLen":25, + "network":"193.182.129.128\/25", + "version":48594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.130.0", + "prefixLen":25, + "network":"193.182.130.0\/25", + "version":48593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.130.0", + "prefixLen":25, + "network":"193.182.130.0\/25", + "version":48593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.130.128", + "prefixLen":25, + "network":"193.182.130.128\/25", + "version":48592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.130.128", + "prefixLen":25, + "network":"193.182.130.128\/25", + "version":48592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.131.0", + "prefixLen":25, + "network":"193.182.131.0\/25", + "version":48591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.131.0", + "prefixLen":25, + "network":"193.182.131.0\/25", + "version":48591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.131.128", + "prefixLen":25, + "network":"193.182.131.128\/25", + "version":48590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.131.128", + "prefixLen":25, + "network":"193.182.131.128\/25", + "version":48590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.144.0", + "prefixLen":25, + "network":"193.182.144.0\/25", + "version":48589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.144.0", + "prefixLen":25, + "network":"193.182.144.0\/25", + "version":48589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.144.128", + "prefixLen":25, + "network":"193.182.144.128\/25", + "version":48588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.144.128", + "prefixLen":25, + "network":"193.182.144.128\/25", + "version":48588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.145.0", + "prefixLen":25, + "network":"193.182.145.0\/25", + "version":48587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.145.0", + "prefixLen":25, + "network":"193.182.145.0\/25", + "version":48587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.145.128", + "prefixLen":25, + "network":"193.182.145.128\/25", + "version":48586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.145.128", + "prefixLen":25, + "network":"193.182.145.128\/25", + "version":48586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.146.0", + "prefixLen":25, + "network":"193.182.146.0\/25", + "version":48585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.146.0", + "prefixLen":25, + "network":"193.182.146.0\/25", + "version":48585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.146.128", + "prefixLen":25, + "network":"193.182.146.128\/25", + "version":48584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.146.128", + "prefixLen":25, + "network":"193.182.146.128\/25", + "version":48584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.147.0", + "prefixLen":25, + "network":"193.182.147.0\/25", + "version":48583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.147.0", + "prefixLen":25, + "network":"193.182.147.0\/25", + "version":48583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.147.128", + "prefixLen":25, + "network":"193.182.147.128\/25", + "version":48582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.147.128", + "prefixLen":25, + "network":"193.182.147.128\/25", + "version":48582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.160.0", + "prefixLen":25, + "network":"193.182.160.0\/25", + "version":48581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.160.0", + "prefixLen":25, + "network":"193.182.160.0\/25", + "version":48581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.160.128", + "prefixLen":25, + "network":"193.182.160.128\/25", + "version":48580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.160.128", + "prefixLen":25, + "network":"193.182.160.128\/25", + "version":48580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.161.0", + "prefixLen":25, + "network":"193.182.161.0\/25", + "version":48579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.161.0", + "prefixLen":25, + "network":"193.182.161.0\/25", + "version":48579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.161.128", + "prefixLen":25, + "network":"193.182.161.128\/25", + "version":48578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.161.128", + "prefixLen":25, + "network":"193.182.161.128\/25", + "version":48578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.162.0", + "prefixLen":25, + "network":"193.182.162.0\/25", + "version":48577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.162.0", + "prefixLen":25, + "network":"193.182.162.0\/25", + "version":48577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.162.128", + "prefixLen":25, + "network":"193.182.162.128\/25", + "version":48576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.162.128", + "prefixLen":25, + "network":"193.182.162.128\/25", + "version":48576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.163.0", + "prefixLen":25, + "network":"193.182.163.0\/25", + "version":48575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.163.0", + "prefixLen":25, + "network":"193.182.163.0\/25", + "version":48575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.163.128", + "prefixLen":25, + "network":"193.182.163.128\/25", + "version":48574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.163.128", + "prefixLen":25, + "network":"193.182.163.128\/25", + "version":48574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.176.0", + "prefixLen":25, + "network":"193.182.176.0\/25", + "version":48573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.176.0", + "prefixLen":25, + "network":"193.182.176.0\/25", + "version":48573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.176.128", + "prefixLen":25, + "network":"193.182.176.128\/25", + "version":48572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.176.128", + "prefixLen":25, + "network":"193.182.176.128\/25", + "version":48572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.177.0", + "prefixLen":25, + "network":"193.182.177.0\/25", + "version":48571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.177.0", + "prefixLen":25, + "network":"193.182.177.0\/25", + "version":48571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.177.128", + "prefixLen":25, + "network":"193.182.177.128\/25", + "version":48570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.177.128", + "prefixLen":25, + "network":"193.182.177.128\/25", + "version":48570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.178.0", + "prefixLen":25, + "network":"193.182.178.0\/25", + "version":48569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.178.0", + "prefixLen":25, + "network":"193.182.178.0\/25", + "version":48569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.178.128", + "prefixLen":25, + "network":"193.182.178.128\/25", + "version":48568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.178.128", + "prefixLen":25, + "network":"193.182.178.128\/25", + "version":48568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.179.0", + "prefixLen":25, + "network":"193.182.179.0\/25", + "version":48567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.179.0", + "prefixLen":25, + "network":"193.182.179.0\/25", + "version":48567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.179.128", + "prefixLen":25, + "network":"193.182.179.128\/25", + "version":48566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.179.128", + "prefixLen":25, + "network":"193.182.179.128\/25", + "version":48566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.192.0", + "prefixLen":25, + "network":"193.182.192.0\/25", + "version":48565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.192.0", + "prefixLen":25, + "network":"193.182.192.0\/25", + "version":48565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.192.128", + "prefixLen":25, + "network":"193.182.192.128\/25", + "version":48564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.192.128", + "prefixLen":25, + "network":"193.182.192.128\/25", + "version":48564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.193.0", + "prefixLen":25, + "network":"193.182.193.0\/25", + "version":48563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.193.0", + "prefixLen":25, + "network":"193.182.193.0\/25", + "version":48563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.193.128", + "prefixLen":25, + "network":"193.182.193.128\/25", + "version":48562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.193.128", + "prefixLen":25, + "network":"193.182.193.128\/25", + "version":48562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.194.0", + "prefixLen":25, + "network":"193.182.194.0\/25", + "version":48561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.194.0", + "prefixLen":25, + "network":"193.182.194.0\/25", + "version":48561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.194.128", + "prefixLen":25, + "network":"193.182.194.128\/25", + "version":48560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.194.128", + "prefixLen":25, + "network":"193.182.194.128\/25", + "version":48560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.195.0", + "prefixLen":25, + "network":"193.182.195.0\/25", + "version":48559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.195.0", + "prefixLen":25, + "network":"193.182.195.0\/25", + "version":48559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.195.128", + "prefixLen":25, + "network":"193.182.195.128\/25", + "version":48558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.195.128", + "prefixLen":25, + "network":"193.182.195.128\/25", + "version":48558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.208.0", + "prefixLen":25, + "network":"193.182.208.0\/25", + "version":48557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.208.0", + "prefixLen":25, + "network":"193.182.208.0\/25", + "version":48557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.208.128", + "prefixLen":25, + "network":"193.182.208.128\/25", + "version":48556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.208.128", + "prefixLen":25, + "network":"193.182.208.128\/25", + "version":48556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.209.0", + "prefixLen":25, + "network":"193.182.209.0\/25", + "version":48555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.209.0", + "prefixLen":25, + "network":"193.182.209.0\/25", + "version":48555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.209.128", + "prefixLen":25, + "network":"193.182.209.128\/25", + "version":48554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.209.128", + "prefixLen":25, + "network":"193.182.209.128\/25", + "version":48554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.210.0", + "prefixLen":25, + "network":"193.182.210.0\/25", + "version":48553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.210.0", + "prefixLen":25, + "network":"193.182.210.0\/25", + "version":48553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.210.128", + "prefixLen":25, + "network":"193.182.210.128\/25", + "version":48552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.210.128", + "prefixLen":25, + "network":"193.182.210.128\/25", + "version":48552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.211.0", + "prefixLen":25, + "network":"193.182.211.0\/25", + "version":48551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.211.0", + "prefixLen":25, + "network":"193.182.211.0\/25", + "version":48551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.211.128", + "prefixLen":25, + "network":"193.182.211.128\/25", + "version":48550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.211.128", + "prefixLen":25, + "network":"193.182.211.128\/25", + "version":48550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.224.0", + "prefixLen":25, + "network":"193.182.224.0\/25", + "version":48549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.224.0", + "prefixLen":25, + "network":"193.182.224.0\/25", + "version":48549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.224.128", + "prefixLen":25, + "network":"193.182.224.128\/25", + "version":48548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.224.128", + "prefixLen":25, + "network":"193.182.224.128\/25", + "version":48548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.225.0", + "prefixLen":25, + "network":"193.182.225.0\/25", + "version":48547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.225.0", + "prefixLen":25, + "network":"193.182.225.0\/25", + "version":48547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.225.128", + "prefixLen":25, + "network":"193.182.225.128\/25", + "version":48546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.225.128", + "prefixLen":25, + "network":"193.182.225.128\/25", + "version":48546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.226.0", + "prefixLen":25, + "network":"193.182.226.0\/25", + "version":48545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.226.0", + "prefixLen":25, + "network":"193.182.226.0\/25", + "version":48545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.226.128", + "prefixLen":25, + "network":"193.182.226.128\/25", + "version":48544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.226.128", + "prefixLen":25, + "network":"193.182.226.128\/25", + "version":48544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.227.0", + "prefixLen":25, + "network":"193.182.227.0\/25", + "version":48543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.227.0", + "prefixLen":25, + "network":"193.182.227.0\/25", + "version":48543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.227.128", + "prefixLen":25, + "network":"193.182.227.128\/25", + "version":48542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.227.128", + "prefixLen":25, + "network":"193.182.227.128\/25", + "version":48542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.240.0", + "prefixLen":25, + "network":"193.182.240.0\/25", + "version":48541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.240.0", + "prefixLen":25, + "network":"193.182.240.0\/25", + "version":48541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.240.128", + "prefixLen":25, + "network":"193.182.240.128\/25", + "version":48540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.240.128", + "prefixLen":25, + "network":"193.182.240.128\/25", + "version":48540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.241.0", + "prefixLen":25, + "network":"193.182.241.0\/25", + "version":48539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.241.0", + "prefixLen":25, + "network":"193.182.241.0\/25", + "version":48539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.241.128", + "prefixLen":25, + "network":"193.182.241.128\/25", + "version":48538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.241.128", + "prefixLen":25, + "network":"193.182.241.128\/25", + "version":48538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.242.0", + "prefixLen":25, + "network":"193.182.242.0\/25", + "version":48537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.242.0", + "prefixLen":25, + "network":"193.182.242.0\/25", + "version":48537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.242.128", + "prefixLen":25, + "network":"193.182.242.128\/25", + "version":48536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.242.128", + "prefixLen":25, + "network":"193.182.242.128\/25", + "version":48536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.243.0", + "prefixLen":25, + "network":"193.182.243.0\/25", + "version":48535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.243.0", + "prefixLen":25, + "network":"193.182.243.0\/25", + "version":48535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.182.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.182.243.128", + "prefixLen":25, + "network":"193.182.243.128\/25", + "version":48534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.182.243.128", + "prefixLen":25, + "network":"193.182.243.128\/25", + "version":48534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64870 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.0.0", + "prefixLen":25, + "network":"193.183.0.0\/25", + "version":48661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.0.0", + "prefixLen":25, + "network":"193.183.0.0\/25", + "version":48661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.0.128", + "prefixLen":25, + "network":"193.183.0.128\/25", + "version":48788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.0.128", + "prefixLen":25, + "network":"193.183.0.128\/25", + "version":48788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.1.0", + "prefixLen":25, + "network":"193.183.1.0\/25", + "version":48787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.1.0", + "prefixLen":25, + "network":"193.183.1.0\/25", + "version":48787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.1.128", + "prefixLen":25, + "network":"193.183.1.128\/25", + "version":48786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.1.128", + "prefixLen":25, + "network":"193.183.1.128\/25", + "version":48786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.2.0", + "prefixLen":25, + "network":"193.183.2.0\/25", + "version":48785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.2.0", + "prefixLen":25, + "network":"193.183.2.0\/25", + "version":48785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.2.128", + "prefixLen":25, + "network":"193.183.2.128\/25", + "version":48784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.2.128", + "prefixLen":25, + "network":"193.183.2.128\/25", + "version":48784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.3.0", + "prefixLen":25, + "network":"193.183.3.0\/25", + "version":48783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.3.0", + "prefixLen":25, + "network":"193.183.3.0\/25", + "version":48783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.3.128", + "prefixLen":25, + "network":"193.183.3.128\/25", + "version":48782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.3.128", + "prefixLen":25, + "network":"193.183.3.128\/25", + "version":48782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.16.0", + "prefixLen":25, + "network":"193.183.16.0\/25", + "version":48781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.16.0", + "prefixLen":25, + "network":"193.183.16.0\/25", + "version":48781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.16.128", + "prefixLen":25, + "network":"193.183.16.128\/25", + "version":48780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.16.128", + "prefixLen":25, + "network":"193.183.16.128\/25", + "version":48780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.17.0", + "prefixLen":25, + "network":"193.183.17.0\/25", + "version":48779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.17.0", + "prefixLen":25, + "network":"193.183.17.0\/25", + "version":48779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.17.128", + "prefixLen":25, + "network":"193.183.17.128\/25", + "version":48778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.17.128", + "prefixLen":25, + "network":"193.183.17.128\/25", + "version":48778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.18.0", + "prefixLen":25, + "network":"193.183.18.0\/25", + "version":48777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.18.0", + "prefixLen":25, + "network":"193.183.18.0\/25", + "version":48777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.18.128", + "prefixLen":25, + "network":"193.183.18.128\/25", + "version":48776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.18.128", + "prefixLen":25, + "network":"193.183.18.128\/25", + "version":48776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.19.0", + "prefixLen":25, + "network":"193.183.19.0\/25", + "version":48775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.19.0", + "prefixLen":25, + "network":"193.183.19.0\/25", + "version":48775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.19.128", + "prefixLen":25, + "network":"193.183.19.128\/25", + "version":48774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.19.128", + "prefixLen":25, + "network":"193.183.19.128\/25", + "version":48774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.32.0", + "prefixLen":25, + "network":"193.183.32.0\/25", + "version":48773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.32.0", + "prefixLen":25, + "network":"193.183.32.0\/25", + "version":48773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.32.128", + "prefixLen":25, + "network":"193.183.32.128\/25", + "version":48772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.32.128", + "prefixLen":25, + "network":"193.183.32.128\/25", + "version":48772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.33.0", + "prefixLen":25, + "network":"193.183.33.0\/25", + "version":48771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.33.0", + "prefixLen":25, + "network":"193.183.33.0\/25", + "version":48771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.33.128", + "prefixLen":25, + "network":"193.183.33.128\/25", + "version":48770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.33.128", + "prefixLen":25, + "network":"193.183.33.128\/25", + "version":48770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.34.0", + "prefixLen":25, + "network":"193.183.34.0\/25", + "version":48769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.34.0", + "prefixLen":25, + "network":"193.183.34.0\/25", + "version":48769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.34.128", + "prefixLen":25, + "network":"193.183.34.128\/25", + "version":48768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.34.128", + "prefixLen":25, + "network":"193.183.34.128\/25", + "version":48768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.35.0", + "prefixLen":25, + "network":"193.183.35.0\/25", + "version":48767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.35.0", + "prefixLen":25, + "network":"193.183.35.0\/25", + "version":48767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.35.128", + "prefixLen":25, + "network":"193.183.35.128\/25", + "version":48766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.35.128", + "prefixLen":25, + "network":"193.183.35.128\/25", + "version":48766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.48.0", + "prefixLen":25, + "network":"193.183.48.0\/25", + "version":48765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.48.0", + "prefixLen":25, + "network":"193.183.48.0\/25", + "version":48765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.48.128", + "prefixLen":25, + "network":"193.183.48.128\/25", + "version":48764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.48.128", + "prefixLen":25, + "network":"193.183.48.128\/25", + "version":48764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.49.0", + "prefixLen":25, + "network":"193.183.49.0\/25", + "version":48763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.49.0", + "prefixLen":25, + "network":"193.183.49.0\/25", + "version":48763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.49.128", + "prefixLen":25, + "network":"193.183.49.128\/25", + "version":48762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.49.128", + "prefixLen":25, + "network":"193.183.49.128\/25", + "version":48762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.50.0", + "prefixLen":25, + "network":"193.183.50.0\/25", + "version":48761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.50.0", + "prefixLen":25, + "network":"193.183.50.0\/25", + "version":48761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.50.128", + "prefixLen":25, + "network":"193.183.50.128\/25", + "version":48760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.50.128", + "prefixLen":25, + "network":"193.183.50.128\/25", + "version":48760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.51.0", + "prefixLen":25, + "network":"193.183.51.0\/25", + "version":48759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.51.0", + "prefixLen":25, + "network":"193.183.51.0\/25", + "version":48759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.51.128", + "prefixLen":25, + "network":"193.183.51.128\/25", + "version":48758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.51.128", + "prefixLen":25, + "network":"193.183.51.128\/25", + "version":48758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.64.0", + "prefixLen":25, + "network":"193.183.64.0\/25", + "version":48757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.64.0", + "prefixLen":25, + "network":"193.183.64.0\/25", + "version":48757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.64.128", + "prefixLen":25, + "network":"193.183.64.128\/25", + "version":48756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.64.128", + "prefixLen":25, + "network":"193.183.64.128\/25", + "version":48756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.65.0", + "prefixLen":25, + "network":"193.183.65.0\/25", + "version":48755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.65.0", + "prefixLen":25, + "network":"193.183.65.0\/25", + "version":48755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.65.128", + "prefixLen":25, + "network":"193.183.65.128\/25", + "version":48754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.65.128", + "prefixLen":25, + "network":"193.183.65.128\/25", + "version":48754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.66.0", + "prefixLen":25, + "network":"193.183.66.0\/25", + "version":48753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.66.0", + "prefixLen":25, + "network":"193.183.66.0\/25", + "version":48753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.66.128", + "prefixLen":25, + "network":"193.183.66.128\/25", + "version":48752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.66.128", + "prefixLen":25, + "network":"193.183.66.128\/25", + "version":48752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.67.0", + "prefixLen":25, + "network":"193.183.67.0\/25", + "version":48751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.67.0", + "prefixLen":25, + "network":"193.183.67.0\/25", + "version":48751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.67.128", + "prefixLen":25, + "network":"193.183.67.128\/25", + "version":48750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.67.128", + "prefixLen":25, + "network":"193.183.67.128\/25", + "version":48750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.80.0", + "prefixLen":25, + "network":"193.183.80.0\/25", + "version":48749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.80.0", + "prefixLen":25, + "network":"193.183.80.0\/25", + "version":48749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.80.128", + "prefixLen":25, + "network":"193.183.80.128\/25", + "version":48748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.80.128", + "prefixLen":25, + "network":"193.183.80.128\/25", + "version":48748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.81.0", + "prefixLen":25, + "network":"193.183.81.0\/25", + "version":48747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.81.0", + "prefixLen":25, + "network":"193.183.81.0\/25", + "version":48747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.81.128", + "prefixLen":25, + "network":"193.183.81.128\/25", + "version":48746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.81.128", + "prefixLen":25, + "network":"193.183.81.128\/25", + "version":48746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.82.0", + "prefixLen":25, + "network":"193.183.82.0\/25", + "version":48745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.82.0", + "prefixLen":25, + "network":"193.183.82.0\/25", + "version":48745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.82.128", + "prefixLen":25, + "network":"193.183.82.128\/25", + "version":48744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.82.128", + "prefixLen":25, + "network":"193.183.82.128\/25", + "version":48744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.83.0", + "prefixLen":25, + "network":"193.183.83.0\/25", + "version":48743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.83.0", + "prefixLen":25, + "network":"193.183.83.0\/25", + "version":48743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.83.128", + "prefixLen":25, + "network":"193.183.83.128\/25", + "version":48742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.83.128", + "prefixLen":25, + "network":"193.183.83.128\/25", + "version":48742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.96.0", + "prefixLen":25, + "network":"193.183.96.0\/25", + "version":48741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.96.0", + "prefixLen":25, + "network":"193.183.96.0\/25", + "version":48741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.96.128", + "prefixLen":25, + "network":"193.183.96.128\/25", + "version":48740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.96.128", + "prefixLen":25, + "network":"193.183.96.128\/25", + "version":48740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.97.0", + "prefixLen":25, + "network":"193.183.97.0\/25", + "version":48739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.97.0", + "prefixLen":25, + "network":"193.183.97.0\/25", + "version":48739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.97.128", + "prefixLen":25, + "network":"193.183.97.128\/25", + "version":48738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.97.128", + "prefixLen":25, + "network":"193.183.97.128\/25", + "version":48738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.98.0", + "prefixLen":25, + "network":"193.183.98.0\/25", + "version":48737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.98.0", + "prefixLen":25, + "network":"193.183.98.0\/25", + "version":48737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.98.128", + "prefixLen":25, + "network":"193.183.98.128\/25", + "version":48736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.98.128", + "prefixLen":25, + "network":"193.183.98.128\/25", + "version":48736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.99.0", + "prefixLen":25, + "network":"193.183.99.0\/25", + "version":48735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.99.0", + "prefixLen":25, + "network":"193.183.99.0\/25", + "version":48735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.99.128", + "prefixLen":25, + "network":"193.183.99.128\/25", + "version":48734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.99.128", + "prefixLen":25, + "network":"193.183.99.128\/25", + "version":48734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.112.0", + "prefixLen":25, + "network":"193.183.112.0\/25", + "version":48733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.112.0", + "prefixLen":25, + "network":"193.183.112.0\/25", + "version":48733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.112.128", + "prefixLen":25, + "network":"193.183.112.128\/25", + "version":48732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.112.128", + "prefixLen":25, + "network":"193.183.112.128\/25", + "version":48732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.113.0", + "prefixLen":25, + "network":"193.183.113.0\/25", + "version":48731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.113.0", + "prefixLen":25, + "network":"193.183.113.0\/25", + "version":48731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.113.128", + "prefixLen":25, + "network":"193.183.113.128\/25", + "version":48730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.113.128", + "prefixLen":25, + "network":"193.183.113.128\/25", + "version":48730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.114.0", + "prefixLen":25, + "network":"193.183.114.0\/25", + "version":48729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.114.0", + "prefixLen":25, + "network":"193.183.114.0\/25", + "version":48729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.114.128", + "prefixLen":25, + "network":"193.183.114.128\/25", + "version":48728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.114.128", + "prefixLen":25, + "network":"193.183.114.128\/25", + "version":48728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.115.0", + "prefixLen":25, + "network":"193.183.115.0\/25", + "version":48727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.115.0", + "prefixLen":25, + "network":"193.183.115.0\/25", + "version":48727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.115.128", + "prefixLen":25, + "network":"193.183.115.128\/25", + "version":48726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.115.128", + "prefixLen":25, + "network":"193.183.115.128\/25", + "version":48726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.128.0", + "prefixLen":25, + "network":"193.183.128.0\/25", + "version":48725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.128.0", + "prefixLen":25, + "network":"193.183.128.0\/25", + "version":48725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.128.128", + "prefixLen":25, + "network":"193.183.128.128\/25", + "version":48724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.128.128", + "prefixLen":25, + "network":"193.183.128.128\/25", + "version":48724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.129.0", + "prefixLen":25, + "network":"193.183.129.0\/25", + "version":48723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.129.0", + "prefixLen":25, + "network":"193.183.129.0\/25", + "version":48723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.129.128", + "prefixLen":25, + "network":"193.183.129.128\/25", + "version":48722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.129.128", + "prefixLen":25, + "network":"193.183.129.128\/25", + "version":48722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.130.0", + "prefixLen":25, + "network":"193.183.130.0\/25", + "version":48721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.130.0", + "prefixLen":25, + "network":"193.183.130.0\/25", + "version":48721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.130.128", + "prefixLen":25, + "network":"193.183.130.128\/25", + "version":48720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.130.128", + "prefixLen":25, + "network":"193.183.130.128\/25", + "version":48720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.131.0", + "prefixLen":25, + "network":"193.183.131.0\/25", + "version":48719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.131.0", + "prefixLen":25, + "network":"193.183.131.0\/25", + "version":48719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.131.128", + "prefixLen":25, + "network":"193.183.131.128\/25", + "version":48718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.131.128", + "prefixLen":25, + "network":"193.183.131.128\/25", + "version":48718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.144.0", + "prefixLen":25, + "network":"193.183.144.0\/25", + "version":48717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.144.0", + "prefixLen":25, + "network":"193.183.144.0\/25", + "version":48717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.144.128", + "prefixLen":25, + "network":"193.183.144.128\/25", + "version":48716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.144.128", + "prefixLen":25, + "network":"193.183.144.128\/25", + "version":48716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.145.0", + "prefixLen":25, + "network":"193.183.145.0\/25", + "version":48715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.145.0", + "prefixLen":25, + "network":"193.183.145.0\/25", + "version":48715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.145.128", + "prefixLen":25, + "network":"193.183.145.128\/25", + "version":48714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.145.128", + "prefixLen":25, + "network":"193.183.145.128\/25", + "version":48714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.146.0", + "prefixLen":25, + "network":"193.183.146.0\/25", + "version":48713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.146.0", + "prefixLen":25, + "network":"193.183.146.0\/25", + "version":48713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.146.128", + "prefixLen":25, + "network":"193.183.146.128\/25", + "version":48712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.146.128", + "prefixLen":25, + "network":"193.183.146.128\/25", + "version":48712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.147.0", + "prefixLen":25, + "network":"193.183.147.0\/25", + "version":48711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.147.0", + "prefixLen":25, + "network":"193.183.147.0\/25", + "version":48711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.147.128", + "prefixLen":25, + "network":"193.183.147.128\/25", + "version":48710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.147.128", + "prefixLen":25, + "network":"193.183.147.128\/25", + "version":48710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.160.0", + "prefixLen":25, + "network":"193.183.160.0\/25", + "version":48709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.160.0", + "prefixLen":25, + "network":"193.183.160.0\/25", + "version":48709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.160.128", + "prefixLen":25, + "network":"193.183.160.128\/25", + "version":48708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.160.128", + "prefixLen":25, + "network":"193.183.160.128\/25", + "version":48708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.161.0", + "prefixLen":25, + "network":"193.183.161.0\/25", + "version":48707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.161.0", + "prefixLen":25, + "network":"193.183.161.0\/25", + "version":48707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.161.128", + "prefixLen":25, + "network":"193.183.161.128\/25", + "version":48706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.161.128", + "prefixLen":25, + "network":"193.183.161.128\/25", + "version":48706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.162.0", + "prefixLen":25, + "network":"193.183.162.0\/25", + "version":48705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.162.0", + "prefixLen":25, + "network":"193.183.162.0\/25", + "version":48705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.162.128", + "prefixLen":25, + "network":"193.183.162.128\/25", + "version":48704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.162.128", + "prefixLen":25, + "network":"193.183.162.128\/25", + "version":48704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.163.0", + "prefixLen":25, + "network":"193.183.163.0\/25", + "version":48703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.163.0", + "prefixLen":25, + "network":"193.183.163.0\/25", + "version":48703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.163.128", + "prefixLen":25, + "network":"193.183.163.128\/25", + "version":48702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.163.128", + "prefixLen":25, + "network":"193.183.163.128\/25", + "version":48702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.176.0", + "prefixLen":25, + "network":"193.183.176.0\/25", + "version":48701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.176.0", + "prefixLen":25, + "network":"193.183.176.0\/25", + "version":48701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.176.128", + "prefixLen":25, + "network":"193.183.176.128\/25", + "version":48700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.176.128", + "prefixLen":25, + "network":"193.183.176.128\/25", + "version":48700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.177.0", + "prefixLen":25, + "network":"193.183.177.0\/25", + "version":48699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.177.0", + "prefixLen":25, + "network":"193.183.177.0\/25", + "version":48699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.177.128", + "prefixLen":25, + "network":"193.183.177.128\/25", + "version":48698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.177.128", + "prefixLen":25, + "network":"193.183.177.128\/25", + "version":48698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.178.0", + "prefixLen":25, + "network":"193.183.178.0\/25", + "version":48697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.178.0", + "prefixLen":25, + "network":"193.183.178.0\/25", + "version":48697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.178.128", + "prefixLen":25, + "network":"193.183.178.128\/25", + "version":48696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.178.128", + "prefixLen":25, + "network":"193.183.178.128\/25", + "version":48696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.179.0", + "prefixLen":25, + "network":"193.183.179.0\/25", + "version":48695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.179.0", + "prefixLen":25, + "network":"193.183.179.0\/25", + "version":48695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.179.128", + "prefixLen":25, + "network":"193.183.179.128\/25", + "version":48694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.179.128", + "prefixLen":25, + "network":"193.183.179.128\/25", + "version":48694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.192.0", + "prefixLen":25, + "network":"193.183.192.0\/25", + "version":48693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.192.0", + "prefixLen":25, + "network":"193.183.192.0\/25", + "version":48693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.192.128", + "prefixLen":25, + "network":"193.183.192.128\/25", + "version":48692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.192.128", + "prefixLen":25, + "network":"193.183.192.128\/25", + "version":48692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.193.0", + "prefixLen":25, + "network":"193.183.193.0\/25", + "version":48691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.193.0", + "prefixLen":25, + "network":"193.183.193.0\/25", + "version":48691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.193.128", + "prefixLen":25, + "network":"193.183.193.128\/25", + "version":48690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.193.128", + "prefixLen":25, + "network":"193.183.193.128\/25", + "version":48690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.194.0", + "prefixLen":25, + "network":"193.183.194.0\/25", + "version":48689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.194.0", + "prefixLen":25, + "network":"193.183.194.0\/25", + "version":48689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.194.128", + "prefixLen":25, + "network":"193.183.194.128\/25", + "version":48688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.194.128", + "prefixLen":25, + "network":"193.183.194.128\/25", + "version":48688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.195.0", + "prefixLen":25, + "network":"193.183.195.0\/25", + "version":48687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.195.0", + "prefixLen":25, + "network":"193.183.195.0\/25", + "version":48687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.195.128", + "prefixLen":25, + "network":"193.183.195.128\/25", + "version":48686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.195.128", + "prefixLen":25, + "network":"193.183.195.128\/25", + "version":48686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.208.0", + "prefixLen":25, + "network":"193.183.208.0\/25", + "version":48685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.208.0", + "prefixLen":25, + "network":"193.183.208.0\/25", + "version":48685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.208.128", + "prefixLen":25, + "network":"193.183.208.128\/25", + "version":48684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.208.128", + "prefixLen":25, + "network":"193.183.208.128\/25", + "version":48684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.209.0", + "prefixLen":25, + "network":"193.183.209.0\/25", + "version":48683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.209.0", + "prefixLen":25, + "network":"193.183.209.0\/25", + "version":48683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.209.128", + "prefixLen":25, + "network":"193.183.209.128\/25", + "version":48682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.209.128", + "prefixLen":25, + "network":"193.183.209.128\/25", + "version":48682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.210.0", + "prefixLen":25, + "network":"193.183.210.0\/25", + "version":48681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.210.0", + "prefixLen":25, + "network":"193.183.210.0\/25", + "version":48681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.210.128", + "prefixLen":25, + "network":"193.183.210.128\/25", + "version":48680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.210.128", + "prefixLen":25, + "network":"193.183.210.128\/25", + "version":48680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.211.0", + "prefixLen":25, + "network":"193.183.211.0\/25", + "version":48679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.211.0", + "prefixLen":25, + "network":"193.183.211.0\/25", + "version":48679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.211.128", + "prefixLen":25, + "network":"193.183.211.128\/25", + "version":48678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.211.128", + "prefixLen":25, + "network":"193.183.211.128\/25", + "version":48678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.224.0", + "prefixLen":25, + "network":"193.183.224.0\/25", + "version":48677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.224.0", + "prefixLen":25, + "network":"193.183.224.0\/25", + "version":48677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.224.128", + "prefixLen":25, + "network":"193.183.224.128\/25", + "version":48676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.224.128", + "prefixLen":25, + "network":"193.183.224.128\/25", + "version":48676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.225.0", + "prefixLen":25, + "network":"193.183.225.0\/25", + "version":48675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.225.0", + "prefixLen":25, + "network":"193.183.225.0\/25", + "version":48675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.225.128", + "prefixLen":25, + "network":"193.183.225.128\/25", + "version":48674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.225.128", + "prefixLen":25, + "network":"193.183.225.128\/25", + "version":48674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.226.0", + "prefixLen":25, + "network":"193.183.226.0\/25", + "version":48673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.226.0", + "prefixLen":25, + "network":"193.183.226.0\/25", + "version":48673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.226.128", + "prefixLen":25, + "network":"193.183.226.128\/25", + "version":48672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.226.128", + "prefixLen":25, + "network":"193.183.226.128\/25", + "version":48672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.227.0", + "prefixLen":25, + "network":"193.183.227.0\/25", + "version":48671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.227.0", + "prefixLen":25, + "network":"193.183.227.0\/25", + "version":48671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.227.128", + "prefixLen":25, + "network":"193.183.227.128\/25", + "version":48670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.227.128", + "prefixLen":25, + "network":"193.183.227.128\/25", + "version":48670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.240.0", + "prefixLen":25, + "network":"193.183.240.0\/25", + "version":48669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.240.0", + "prefixLen":25, + "network":"193.183.240.0\/25", + "version":48669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.240.128", + "prefixLen":25, + "network":"193.183.240.128\/25", + "version":48668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.240.128", + "prefixLen":25, + "network":"193.183.240.128\/25", + "version":48668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.241.0", + "prefixLen":25, + "network":"193.183.241.0\/25", + "version":48667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.241.0", + "prefixLen":25, + "network":"193.183.241.0\/25", + "version":48667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.241.128", + "prefixLen":25, + "network":"193.183.241.128\/25", + "version":48666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.241.128", + "prefixLen":25, + "network":"193.183.241.128\/25", + "version":48666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.242.0", + "prefixLen":25, + "network":"193.183.242.0\/25", + "version":48665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.242.0", + "prefixLen":25, + "network":"193.183.242.0\/25", + "version":48665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.242.128", + "prefixLen":25, + "network":"193.183.242.128\/25", + "version":48664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.242.128", + "prefixLen":25, + "network":"193.183.242.128\/25", + "version":48664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.243.0", + "prefixLen":25, + "network":"193.183.243.0\/25", + "version":48663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.243.0", + "prefixLen":25, + "network":"193.183.243.0\/25", + "version":48663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.183.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.183.243.128", + "prefixLen":25, + "network":"193.183.243.128\/25", + "version":48662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.183.243.128", + "prefixLen":25, + "network":"193.183.243.128\/25", + "version":48662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64871 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.0.0", + "prefixLen":25, + "network":"193.184.0.0\/25", + "version":48789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.0.0", + "prefixLen":25, + "network":"193.184.0.0\/25", + "version":48789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.0.128", + "prefixLen":25, + "network":"193.184.0.128\/25", + "version":48916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.0.128", + "prefixLen":25, + "network":"193.184.0.128\/25", + "version":48916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.1.0", + "prefixLen":25, + "network":"193.184.1.0\/25", + "version":48915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.1.0", + "prefixLen":25, + "network":"193.184.1.0\/25", + "version":48915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.1.128", + "prefixLen":25, + "network":"193.184.1.128\/25", + "version":48914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.1.128", + "prefixLen":25, + "network":"193.184.1.128\/25", + "version":48914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.2.0", + "prefixLen":25, + "network":"193.184.2.0\/25", + "version":48913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.2.0", + "prefixLen":25, + "network":"193.184.2.0\/25", + "version":48913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.2.128", + "prefixLen":25, + "network":"193.184.2.128\/25", + "version":48912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.2.128", + "prefixLen":25, + "network":"193.184.2.128\/25", + "version":48912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.3.0", + "prefixLen":25, + "network":"193.184.3.0\/25", + "version":48911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.3.0", + "prefixLen":25, + "network":"193.184.3.0\/25", + "version":48911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.3.128", + "prefixLen":25, + "network":"193.184.3.128\/25", + "version":48910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.3.128", + "prefixLen":25, + "network":"193.184.3.128\/25", + "version":48910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.16.0", + "prefixLen":25, + "network":"193.184.16.0\/25", + "version":48909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.16.0", + "prefixLen":25, + "network":"193.184.16.0\/25", + "version":48909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.16.128", + "prefixLen":25, + "network":"193.184.16.128\/25", + "version":48908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.16.128", + "prefixLen":25, + "network":"193.184.16.128\/25", + "version":48908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.17.0", + "prefixLen":25, + "network":"193.184.17.0\/25", + "version":48907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.17.0", + "prefixLen":25, + "network":"193.184.17.0\/25", + "version":48907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.17.128", + "prefixLen":25, + "network":"193.184.17.128\/25", + "version":48906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.17.128", + "prefixLen":25, + "network":"193.184.17.128\/25", + "version":48906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.18.0", + "prefixLen":25, + "network":"193.184.18.0\/25", + "version":48905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.18.0", + "prefixLen":25, + "network":"193.184.18.0\/25", + "version":48905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.18.128", + "prefixLen":25, + "network":"193.184.18.128\/25", + "version":48904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.18.128", + "prefixLen":25, + "network":"193.184.18.128\/25", + "version":48904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.19.0", + "prefixLen":25, + "network":"193.184.19.0\/25", + "version":48903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.19.0", + "prefixLen":25, + "network":"193.184.19.0\/25", + "version":48903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.19.128", + "prefixLen":25, + "network":"193.184.19.128\/25", + "version":48902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.19.128", + "prefixLen":25, + "network":"193.184.19.128\/25", + "version":48902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.32.0", + "prefixLen":25, + "network":"193.184.32.0\/25", + "version":48901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.32.0", + "prefixLen":25, + "network":"193.184.32.0\/25", + "version":48901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.32.128", + "prefixLen":25, + "network":"193.184.32.128\/25", + "version":48900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.32.128", + "prefixLen":25, + "network":"193.184.32.128\/25", + "version":48900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.33.0", + "prefixLen":25, + "network":"193.184.33.0\/25", + "version":48899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.33.0", + "prefixLen":25, + "network":"193.184.33.0\/25", + "version":48899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.33.128", + "prefixLen":25, + "network":"193.184.33.128\/25", + "version":48898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.33.128", + "prefixLen":25, + "network":"193.184.33.128\/25", + "version":48898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.34.0", + "prefixLen":25, + "network":"193.184.34.0\/25", + "version":48897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.34.0", + "prefixLen":25, + "network":"193.184.34.0\/25", + "version":48897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.34.128", + "prefixLen":25, + "network":"193.184.34.128\/25", + "version":48896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.34.128", + "prefixLen":25, + "network":"193.184.34.128\/25", + "version":48896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.35.0", + "prefixLen":25, + "network":"193.184.35.0\/25", + "version":48895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.35.0", + "prefixLen":25, + "network":"193.184.35.0\/25", + "version":48895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.35.128", + "prefixLen":25, + "network":"193.184.35.128\/25", + "version":48894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.35.128", + "prefixLen":25, + "network":"193.184.35.128\/25", + "version":48894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.48.0", + "prefixLen":25, + "network":"193.184.48.0\/25", + "version":48893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.48.0", + "prefixLen":25, + "network":"193.184.48.0\/25", + "version":48893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.48.128", + "prefixLen":25, + "network":"193.184.48.128\/25", + "version":48892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.48.128", + "prefixLen":25, + "network":"193.184.48.128\/25", + "version":48892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.49.0", + "prefixLen":25, + "network":"193.184.49.0\/25", + "version":48891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.49.0", + "prefixLen":25, + "network":"193.184.49.0\/25", + "version":48891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.49.128", + "prefixLen":25, + "network":"193.184.49.128\/25", + "version":48890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.49.128", + "prefixLen":25, + "network":"193.184.49.128\/25", + "version":48890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.50.0", + "prefixLen":25, + "network":"193.184.50.0\/25", + "version":48889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.50.0", + "prefixLen":25, + "network":"193.184.50.0\/25", + "version":48889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.50.128", + "prefixLen":25, + "network":"193.184.50.128\/25", + "version":48888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.50.128", + "prefixLen":25, + "network":"193.184.50.128\/25", + "version":48888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.51.0", + "prefixLen":25, + "network":"193.184.51.0\/25", + "version":48887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.51.0", + "prefixLen":25, + "network":"193.184.51.0\/25", + "version":48887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.51.128", + "prefixLen":25, + "network":"193.184.51.128\/25", + "version":48886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.51.128", + "prefixLen":25, + "network":"193.184.51.128\/25", + "version":48886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.64.0", + "prefixLen":25, + "network":"193.184.64.0\/25", + "version":48885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.64.0", + "prefixLen":25, + "network":"193.184.64.0\/25", + "version":48885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.64.128", + "prefixLen":25, + "network":"193.184.64.128\/25", + "version":48884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.64.128", + "prefixLen":25, + "network":"193.184.64.128\/25", + "version":48884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.65.0", + "prefixLen":25, + "network":"193.184.65.0\/25", + "version":48883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.65.0", + "prefixLen":25, + "network":"193.184.65.0\/25", + "version":48883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.65.128", + "prefixLen":25, + "network":"193.184.65.128\/25", + "version":48882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.65.128", + "prefixLen":25, + "network":"193.184.65.128\/25", + "version":48882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.66.0", + "prefixLen":25, + "network":"193.184.66.0\/25", + "version":48881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.66.0", + "prefixLen":25, + "network":"193.184.66.0\/25", + "version":48881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.66.128", + "prefixLen":25, + "network":"193.184.66.128\/25", + "version":48880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.66.128", + "prefixLen":25, + "network":"193.184.66.128\/25", + "version":48880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.67.0", + "prefixLen":25, + "network":"193.184.67.0\/25", + "version":48879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.67.0", + "prefixLen":25, + "network":"193.184.67.0\/25", + "version":48879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.67.128", + "prefixLen":25, + "network":"193.184.67.128\/25", + "version":48878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.67.128", + "prefixLen":25, + "network":"193.184.67.128\/25", + "version":48878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.80.0", + "prefixLen":25, + "network":"193.184.80.0\/25", + "version":48877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.80.0", + "prefixLen":25, + "network":"193.184.80.0\/25", + "version":48877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.80.128", + "prefixLen":25, + "network":"193.184.80.128\/25", + "version":48876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.80.128", + "prefixLen":25, + "network":"193.184.80.128\/25", + "version":48876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.81.0", + "prefixLen":25, + "network":"193.184.81.0\/25", + "version":48875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.81.0", + "prefixLen":25, + "network":"193.184.81.0\/25", + "version":48875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.81.128", + "prefixLen":25, + "network":"193.184.81.128\/25", + "version":48874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.81.128", + "prefixLen":25, + "network":"193.184.81.128\/25", + "version":48874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.82.0", + "prefixLen":25, + "network":"193.184.82.0\/25", + "version":48873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.82.0", + "prefixLen":25, + "network":"193.184.82.0\/25", + "version":48873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.82.128", + "prefixLen":25, + "network":"193.184.82.128\/25", + "version":48872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.82.128", + "prefixLen":25, + "network":"193.184.82.128\/25", + "version":48872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.83.0", + "prefixLen":25, + "network":"193.184.83.0\/25", + "version":48871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.83.0", + "prefixLen":25, + "network":"193.184.83.0\/25", + "version":48871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.83.128", + "prefixLen":25, + "network":"193.184.83.128\/25", + "version":48870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.83.128", + "prefixLen":25, + "network":"193.184.83.128\/25", + "version":48870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.96.0", + "prefixLen":25, + "network":"193.184.96.0\/25", + "version":48869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.96.0", + "prefixLen":25, + "network":"193.184.96.0\/25", + "version":48869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.96.128", + "prefixLen":25, + "network":"193.184.96.128\/25", + "version":48868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.96.128", + "prefixLen":25, + "network":"193.184.96.128\/25", + "version":48868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.97.0", + "prefixLen":25, + "network":"193.184.97.0\/25", + "version":48867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.97.0", + "prefixLen":25, + "network":"193.184.97.0\/25", + "version":48867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.97.128", + "prefixLen":25, + "network":"193.184.97.128\/25", + "version":48866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.97.128", + "prefixLen":25, + "network":"193.184.97.128\/25", + "version":48866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.98.0", + "prefixLen":25, + "network":"193.184.98.0\/25", + "version":48865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.98.0", + "prefixLen":25, + "network":"193.184.98.0\/25", + "version":48865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.98.128", + "prefixLen":25, + "network":"193.184.98.128\/25", + "version":48864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.98.128", + "prefixLen":25, + "network":"193.184.98.128\/25", + "version":48864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.99.0", + "prefixLen":25, + "network":"193.184.99.0\/25", + "version":48863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.99.0", + "prefixLen":25, + "network":"193.184.99.0\/25", + "version":48863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.99.128", + "prefixLen":25, + "network":"193.184.99.128\/25", + "version":48862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.99.128", + "prefixLen":25, + "network":"193.184.99.128\/25", + "version":48862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.112.0", + "prefixLen":25, + "network":"193.184.112.0\/25", + "version":48861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.112.0", + "prefixLen":25, + "network":"193.184.112.0\/25", + "version":48861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.112.128", + "prefixLen":25, + "network":"193.184.112.128\/25", + "version":48860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.112.128", + "prefixLen":25, + "network":"193.184.112.128\/25", + "version":48860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.113.0", + "prefixLen":25, + "network":"193.184.113.0\/25", + "version":48859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.113.0", + "prefixLen":25, + "network":"193.184.113.0\/25", + "version":48859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.113.128", + "prefixLen":25, + "network":"193.184.113.128\/25", + "version":48858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.113.128", + "prefixLen":25, + "network":"193.184.113.128\/25", + "version":48858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.114.0", + "prefixLen":25, + "network":"193.184.114.0\/25", + "version":48857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.114.0", + "prefixLen":25, + "network":"193.184.114.0\/25", + "version":48857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.114.128", + "prefixLen":25, + "network":"193.184.114.128\/25", + "version":48856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.114.128", + "prefixLen":25, + "network":"193.184.114.128\/25", + "version":48856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.115.0", + "prefixLen":25, + "network":"193.184.115.0\/25", + "version":48855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.115.0", + "prefixLen":25, + "network":"193.184.115.0\/25", + "version":48855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.115.128", + "prefixLen":25, + "network":"193.184.115.128\/25", + "version":48854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.115.128", + "prefixLen":25, + "network":"193.184.115.128\/25", + "version":48854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.128.0", + "prefixLen":25, + "network":"193.184.128.0\/25", + "version":48853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.128.0", + "prefixLen":25, + "network":"193.184.128.0\/25", + "version":48853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.128.128", + "prefixLen":25, + "network":"193.184.128.128\/25", + "version":48852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.128.128", + "prefixLen":25, + "network":"193.184.128.128\/25", + "version":48852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.129.0", + "prefixLen":25, + "network":"193.184.129.0\/25", + "version":48851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.129.0", + "prefixLen":25, + "network":"193.184.129.0\/25", + "version":48851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.129.128", + "prefixLen":25, + "network":"193.184.129.128\/25", + "version":48850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.129.128", + "prefixLen":25, + "network":"193.184.129.128\/25", + "version":48850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.130.0", + "prefixLen":25, + "network":"193.184.130.0\/25", + "version":48849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.130.0", + "prefixLen":25, + "network":"193.184.130.0\/25", + "version":48849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.130.128", + "prefixLen":25, + "network":"193.184.130.128\/25", + "version":48848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.130.128", + "prefixLen":25, + "network":"193.184.130.128\/25", + "version":48848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.131.0", + "prefixLen":25, + "network":"193.184.131.0\/25", + "version":48847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.131.0", + "prefixLen":25, + "network":"193.184.131.0\/25", + "version":48847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.131.128", + "prefixLen":25, + "network":"193.184.131.128\/25", + "version":48846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.131.128", + "prefixLen":25, + "network":"193.184.131.128\/25", + "version":48846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.144.0", + "prefixLen":25, + "network":"193.184.144.0\/25", + "version":48845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.144.0", + "prefixLen":25, + "network":"193.184.144.0\/25", + "version":48845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.144.128", + "prefixLen":25, + "network":"193.184.144.128\/25", + "version":48844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.144.128", + "prefixLen":25, + "network":"193.184.144.128\/25", + "version":48844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.145.0", + "prefixLen":25, + "network":"193.184.145.0\/25", + "version":48843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.145.0", + "prefixLen":25, + "network":"193.184.145.0\/25", + "version":48843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.145.128", + "prefixLen":25, + "network":"193.184.145.128\/25", + "version":48842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.145.128", + "prefixLen":25, + "network":"193.184.145.128\/25", + "version":48842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.146.0", + "prefixLen":25, + "network":"193.184.146.0\/25", + "version":48841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.146.0", + "prefixLen":25, + "network":"193.184.146.0\/25", + "version":48841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.146.128", + "prefixLen":25, + "network":"193.184.146.128\/25", + "version":48840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.146.128", + "prefixLen":25, + "network":"193.184.146.128\/25", + "version":48840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.147.0", + "prefixLen":25, + "network":"193.184.147.0\/25", + "version":48839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.147.0", + "prefixLen":25, + "network":"193.184.147.0\/25", + "version":48839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.147.128", + "prefixLen":25, + "network":"193.184.147.128\/25", + "version":48838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.147.128", + "prefixLen":25, + "network":"193.184.147.128\/25", + "version":48838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.160.0", + "prefixLen":25, + "network":"193.184.160.0\/25", + "version":48837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.160.0", + "prefixLen":25, + "network":"193.184.160.0\/25", + "version":48837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.160.128", + "prefixLen":25, + "network":"193.184.160.128\/25", + "version":48836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.160.128", + "prefixLen":25, + "network":"193.184.160.128\/25", + "version":48836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.161.0", + "prefixLen":25, + "network":"193.184.161.0\/25", + "version":48835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.161.0", + "prefixLen":25, + "network":"193.184.161.0\/25", + "version":48835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.161.128", + "prefixLen":25, + "network":"193.184.161.128\/25", + "version":48834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.161.128", + "prefixLen":25, + "network":"193.184.161.128\/25", + "version":48834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.162.0", + "prefixLen":25, + "network":"193.184.162.0\/25", + "version":48833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.162.0", + "prefixLen":25, + "network":"193.184.162.0\/25", + "version":48833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.162.128", + "prefixLen":25, + "network":"193.184.162.128\/25", + "version":48832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.162.128", + "prefixLen":25, + "network":"193.184.162.128\/25", + "version":48832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.163.0", + "prefixLen":25, + "network":"193.184.163.0\/25", + "version":48831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.163.0", + "prefixLen":25, + "network":"193.184.163.0\/25", + "version":48831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.163.128", + "prefixLen":25, + "network":"193.184.163.128\/25", + "version":48830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.163.128", + "prefixLen":25, + "network":"193.184.163.128\/25", + "version":48830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.176.0", + "prefixLen":25, + "network":"193.184.176.0\/25", + "version":48829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.176.0", + "prefixLen":25, + "network":"193.184.176.0\/25", + "version":48829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.176.128", + "prefixLen":25, + "network":"193.184.176.128\/25", + "version":48828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.176.128", + "prefixLen":25, + "network":"193.184.176.128\/25", + "version":48828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.177.0", + "prefixLen":25, + "network":"193.184.177.0\/25", + "version":48827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.177.0", + "prefixLen":25, + "network":"193.184.177.0\/25", + "version":48827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.177.128", + "prefixLen":25, + "network":"193.184.177.128\/25", + "version":48826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.177.128", + "prefixLen":25, + "network":"193.184.177.128\/25", + "version":48826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.178.0", + "prefixLen":25, + "network":"193.184.178.0\/25", + "version":48825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.178.0", + "prefixLen":25, + "network":"193.184.178.0\/25", + "version":48825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.178.128", + "prefixLen":25, + "network":"193.184.178.128\/25", + "version":48824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.178.128", + "prefixLen":25, + "network":"193.184.178.128\/25", + "version":48824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.179.0", + "prefixLen":25, + "network":"193.184.179.0\/25", + "version":48823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.179.0", + "prefixLen":25, + "network":"193.184.179.0\/25", + "version":48823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.179.128", + "prefixLen":25, + "network":"193.184.179.128\/25", + "version":48822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.179.128", + "prefixLen":25, + "network":"193.184.179.128\/25", + "version":48822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.192.0", + "prefixLen":25, + "network":"193.184.192.0\/25", + "version":48821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.192.0", + "prefixLen":25, + "network":"193.184.192.0\/25", + "version":48821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.192.128", + "prefixLen":25, + "network":"193.184.192.128\/25", + "version":48820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.192.128", + "prefixLen":25, + "network":"193.184.192.128\/25", + "version":48820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.193.0", + "prefixLen":25, + "network":"193.184.193.0\/25", + "version":48819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.193.0", + "prefixLen":25, + "network":"193.184.193.0\/25", + "version":48819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.193.128", + "prefixLen":25, + "network":"193.184.193.128\/25", + "version":48818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.193.128", + "prefixLen":25, + "network":"193.184.193.128\/25", + "version":48818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.194.0", + "prefixLen":25, + "network":"193.184.194.0\/25", + "version":48817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.194.0", + "prefixLen":25, + "network":"193.184.194.0\/25", + "version":48817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.194.128", + "prefixLen":25, + "network":"193.184.194.128\/25", + "version":48816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.194.128", + "prefixLen":25, + "network":"193.184.194.128\/25", + "version":48816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.195.0", + "prefixLen":25, + "network":"193.184.195.0\/25", + "version":48815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.195.0", + "prefixLen":25, + "network":"193.184.195.0\/25", + "version":48815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.195.128", + "prefixLen":25, + "network":"193.184.195.128\/25", + "version":48814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.195.128", + "prefixLen":25, + "network":"193.184.195.128\/25", + "version":48814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.208.0", + "prefixLen":25, + "network":"193.184.208.0\/25", + "version":48813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.208.0", + "prefixLen":25, + "network":"193.184.208.0\/25", + "version":48813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.208.128", + "prefixLen":25, + "network":"193.184.208.128\/25", + "version":48812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.208.128", + "prefixLen":25, + "network":"193.184.208.128\/25", + "version":48812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.209.0", + "prefixLen":25, + "network":"193.184.209.0\/25", + "version":48811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.209.0", + "prefixLen":25, + "network":"193.184.209.0\/25", + "version":48811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.209.128", + "prefixLen":25, + "network":"193.184.209.128\/25", + "version":48810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.209.128", + "prefixLen":25, + "network":"193.184.209.128\/25", + "version":48810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.210.0", + "prefixLen":25, + "network":"193.184.210.0\/25", + "version":48809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.210.0", + "prefixLen":25, + "network":"193.184.210.0\/25", + "version":48809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.210.128", + "prefixLen":25, + "network":"193.184.210.128\/25", + "version":48808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.210.128", + "prefixLen":25, + "network":"193.184.210.128\/25", + "version":48808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.211.0", + "prefixLen":25, + "network":"193.184.211.0\/25", + "version":48807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.211.0", + "prefixLen":25, + "network":"193.184.211.0\/25", + "version":48807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.211.128", + "prefixLen":25, + "network":"193.184.211.128\/25", + "version":48806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.211.128", + "prefixLen":25, + "network":"193.184.211.128\/25", + "version":48806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.224.0", + "prefixLen":25, + "network":"193.184.224.0\/25", + "version":48805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.224.0", + "prefixLen":25, + "network":"193.184.224.0\/25", + "version":48805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.224.128", + "prefixLen":25, + "network":"193.184.224.128\/25", + "version":48804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.224.128", + "prefixLen":25, + "network":"193.184.224.128\/25", + "version":48804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.225.0", + "prefixLen":25, + "network":"193.184.225.0\/25", + "version":48803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.225.0", + "prefixLen":25, + "network":"193.184.225.0\/25", + "version":48803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.225.128", + "prefixLen":25, + "network":"193.184.225.128\/25", + "version":48802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.225.128", + "prefixLen":25, + "network":"193.184.225.128\/25", + "version":48802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.226.0", + "prefixLen":25, + "network":"193.184.226.0\/25", + "version":48801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.226.0", + "prefixLen":25, + "network":"193.184.226.0\/25", + "version":48801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.226.128", + "prefixLen":25, + "network":"193.184.226.128\/25", + "version":48800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.226.128", + "prefixLen":25, + "network":"193.184.226.128\/25", + "version":48800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.227.0", + "prefixLen":25, + "network":"193.184.227.0\/25", + "version":48799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.227.0", + "prefixLen":25, + "network":"193.184.227.0\/25", + "version":48799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.227.128", + "prefixLen":25, + "network":"193.184.227.128\/25", + "version":48798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.227.128", + "prefixLen":25, + "network":"193.184.227.128\/25", + "version":48798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.240.0", + "prefixLen":25, + "network":"193.184.240.0\/25", + "version":48797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.240.0", + "prefixLen":25, + "network":"193.184.240.0\/25", + "version":48797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.240.128", + "prefixLen":25, + "network":"193.184.240.128\/25", + "version":48796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.240.128", + "prefixLen":25, + "network":"193.184.240.128\/25", + "version":48796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.241.0", + "prefixLen":25, + "network":"193.184.241.0\/25", + "version":48795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.241.0", + "prefixLen":25, + "network":"193.184.241.0\/25", + "version":48795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.241.128", + "prefixLen":25, + "network":"193.184.241.128\/25", + "version":48794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.241.128", + "prefixLen":25, + "network":"193.184.241.128\/25", + "version":48794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.242.0", + "prefixLen":25, + "network":"193.184.242.0\/25", + "version":48793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.242.0", + "prefixLen":25, + "network":"193.184.242.0\/25", + "version":48793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.242.128", + "prefixLen":25, + "network":"193.184.242.128\/25", + "version":48792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.242.128", + "prefixLen":25, + "network":"193.184.242.128\/25", + "version":48792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.243.0", + "prefixLen":25, + "network":"193.184.243.0\/25", + "version":48791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.243.0", + "prefixLen":25, + "network":"193.184.243.0\/25", + "version":48791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.184.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.184.243.128", + "prefixLen":25, + "network":"193.184.243.128\/25", + "version":48790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.184.243.128", + "prefixLen":25, + "network":"193.184.243.128\/25", + "version":48790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64872 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.0.0", + "prefixLen":25, + "network":"193.185.0.0\/25", + "version":48917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.0.0", + "prefixLen":25, + "network":"193.185.0.0\/25", + "version":48917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.0.128", + "prefixLen":25, + "network":"193.185.0.128\/25", + "version":49044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.0.128", + "prefixLen":25, + "network":"193.185.0.128\/25", + "version":49044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.1.0", + "prefixLen":25, + "network":"193.185.1.0\/25", + "version":49043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.1.0", + "prefixLen":25, + "network":"193.185.1.0\/25", + "version":49043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.1.128", + "prefixLen":25, + "network":"193.185.1.128\/25", + "version":49042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.1.128", + "prefixLen":25, + "network":"193.185.1.128\/25", + "version":49042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.2.0", + "prefixLen":25, + "network":"193.185.2.0\/25", + "version":49041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.2.0", + "prefixLen":25, + "network":"193.185.2.0\/25", + "version":49041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.2.128", + "prefixLen":25, + "network":"193.185.2.128\/25", + "version":49040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.2.128", + "prefixLen":25, + "network":"193.185.2.128\/25", + "version":49040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.3.0", + "prefixLen":25, + "network":"193.185.3.0\/25", + "version":49039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.3.0", + "prefixLen":25, + "network":"193.185.3.0\/25", + "version":49039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.3.128", + "prefixLen":25, + "network":"193.185.3.128\/25", + "version":49038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.3.128", + "prefixLen":25, + "network":"193.185.3.128\/25", + "version":49038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.16.0", + "prefixLen":25, + "network":"193.185.16.0\/25", + "version":49037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.16.0", + "prefixLen":25, + "network":"193.185.16.0\/25", + "version":49037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.16.128", + "prefixLen":25, + "network":"193.185.16.128\/25", + "version":49036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.16.128", + "prefixLen":25, + "network":"193.185.16.128\/25", + "version":49036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.17.0", + "prefixLen":25, + "network":"193.185.17.0\/25", + "version":49035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.17.0", + "prefixLen":25, + "network":"193.185.17.0\/25", + "version":49035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.17.128", + "prefixLen":25, + "network":"193.185.17.128\/25", + "version":49034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.17.128", + "prefixLen":25, + "network":"193.185.17.128\/25", + "version":49034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.18.0", + "prefixLen":25, + "network":"193.185.18.0\/25", + "version":49033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.18.0", + "prefixLen":25, + "network":"193.185.18.0\/25", + "version":49033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.18.128", + "prefixLen":25, + "network":"193.185.18.128\/25", + "version":49032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.18.128", + "prefixLen":25, + "network":"193.185.18.128\/25", + "version":49032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.19.0", + "prefixLen":25, + "network":"193.185.19.0\/25", + "version":49031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.19.0", + "prefixLen":25, + "network":"193.185.19.0\/25", + "version":49031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.19.128", + "prefixLen":25, + "network":"193.185.19.128\/25", + "version":49030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.19.128", + "prefixLen":25, + "network":"193.185.19.128\/25", + "version":49030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.32.0", + "prefixLen":25, + "network":"193.185.32.0\/25", + "version":49029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.32.0", + "prefixLen":25, + "network":"193.185.32.0\/25", + "version":49029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.32.128", + "prefixLen":25, + "network":"193.185.32.128\/25", + "version":49028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.32.128", + "prefixLen":25, + "network":"193.185.32.128\/25", + "version":49028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.33.0", + "prefixLen":25, + "network":"193.185.33.0\/25", + "version":49027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.33.0", + "prefixLen":25, + "network":"193.185.33.0\/25", + "version":49027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.33.128", + "prefixLen":25, + "network":"193.185.33.128\/25", + "version":49026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.33.128", + "prefixLen":25, + "network":"193.185.33.128\/25", + "version":49026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.34.0", + "prefixLen":25, + "network":"193.185.34.0\/25", + "version":49025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.34.0", + "prefixLen":25, + "network":"193.185.34.0\/25", + "version":49025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.34.128", + "prefixLen":25, + "network":"193.185.34.128\/25", + "version":49024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.34.128", + "prefixLen":25, + "network":"193.185.34.128\/25", + "version":49024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.35.0", + "prefixLen":25, + "network":"193.185.35.0\/25", + "version":49023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.35.0", + "prefixLen":25, + "network":"193.185.35.0\/25", + "version":49023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.35.128", + "prefixLen":25, + "network":"193.185.35.128\/25", + "version":49022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.35.128", + "prefixLen":25, + "network":"193.185.35.128\/25", + "version":49022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.48.0", + "prefixLen":25, + "network":"193.185.48.0\/25", + "version":49021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.48.0", + "prefixLen":25, + "network":"193.185.48.0\/25", + "version":49021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.48.128", + "prefixLen":25, + "network":"193.185.48.128\/25", + "version":49020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.48.128", + "prefixLen":25, + "network":"193.185.48.128\/25", + "version":49020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.49.0", + "prefixLen":25, + "network":"193.185.49.0\/25", + "version":49019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.49.0", + "prefixLen":25, + "network":"193.185.49.0\/25", + "version":49019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.49.128", + "prefixLen":25, + "network":"193.185.49.128\/25", + "version":49018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.49.128", + "prefixLen":25, + "network":"193.185.49.128\/25", + "version":49018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.50.0", + "prefixLen":25, + "network":"193.185.50.0\/25", + "version":49017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.50.0", + "prefixLen":25, + "network":"193.185.50.0\/25", + "version":49017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.50.128", + "prefixLen":25, + "network":"193.185.50.128\/25", + "version":49016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.50.128", + "prefixLen":25, + "network":"193.185.50.128\/25", + "version":49016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.51.0", + "prefixLen":25, + "network":"193.185.51.0\/25", + "version":49015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.51.0", + "prefixLen":25, + "network":"193.185.51.0\/25", + "version":49015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.51.128", + "prefixLen":25, + "network":"193.185.51.128\/25", + "version":49014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.51.128", + "prefixLen":25, + "network":"193.185.51.128\/25", + "version":49014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.64.0", + "prefixLen":25, + "network":"193.185.64.0\/25", + "version":49013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.64.0", + "prefixLen":25, + "network":"193.185.64.0\/25", + "version":49013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.64.128", + "prefixLen":25, + "network":"193.185.64.128\/25", + "version":49012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.64.128", + "prefixLen":25, + "network":"193.185.64.128\/25", + "version":49012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.65.0", + "prefixLen":25, + "network":"193.185.65.0\/25", + "version":49011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.65.0", + "prefixLen":25, + "network":"193.185.65.0\/25", + "version":49011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.65.128", + "prefixLen":25, + "network":"193.185.65.128\/25", + "version":49010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.65.128", + "prefixLen":25, + "network":"193.185.65.128\/25", + "version":49010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.66.0", + "prefixLen":25, + "network":"193.185.66.0\/25", + "version":49009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.66.0", + "prefixLen":25, + "network":"193.185.66.0\/25", + "version":49009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.66.128", + "prefixLen":25, + "network":"193.185.66.128\/25", + "version":49008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.66.128", + "prefixLen":25, + "network":"193.185.66.128\/25", + "version":49008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.67.0", + "prefixLen":25, + "network":"193.185.67.0\/25", + "version":49007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.67.0", + "prefixLen":25, + "network":"193.185.67.0\/25", + "version":49007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.67.128", + "prefixLen":25, + "network":"193.185.67.128\/25", + "version":49006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.67.128", + "prefixLen":25, + "network":"193.185.67.128\/25", + "version":49006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.80.0", + "prefixLen":25, + "network":"193.185.80.0\/25", + "version":49005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.80.0", + "prefixLen":25, + "network":"193.185.80.0\/25", + "version":49005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.80.128", + "prefixLen":25, + "network":"193.185.80.128\/25", + "version":49004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.80.128", + "prefixLen":25, + "network":"193.185.80.128\/25", + "version":49004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.81.0", + "prefixLen":25, + "network":"193.185.81.0\/25", + "version":49003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.81.0", + "prefixLen":25, + "network":"193.185.81.0\/25", + "version":49003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.81.128", + "prefixLen":25, + "network":"193.185.81.128\/25", + "version":49002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.81.128", + "prefixLen":25, + "network":"193.185.81.128\/25", + "version":49002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.82.0", + "prefixLen":25, + "network":"193.185.82.0\/25", + "version":49001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.82.0", + "prefixLen":25, + "network":"193.185.82.0\/25", + "version":49001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.82.128", + "prefixLen":25, + "network":"193.185.82.128\/25", + "version":49000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.82.128", + "prefixLen":25, + "network":"193.185.82.128\/25", + "version":49000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.83.0", + "prefixLen":25, + "network":"193.185.83.0\/25", + "version":48999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.83.0", + "prefixLen":25, + "network":"193.185.83.0\/25", + "version":48999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.83.128", + "prefixLen":25, + "network":"193.185.83.128\/25", + "version":48998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.83.128", + "prefixLen":25, + "network":"193.185.83.128\/25", + "version":48998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.96.0", + "prefixLen":25, + "network":"193.185.96.0\/25", + "version":48997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.96.0", + "prefixLen":25, + "network":"193.185.96.0\/25", + "version":48997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.96.128", + "prefixLen":25, + "network":"193.185.96.128\/25", + "version":48996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.96.128", + "prefixLen":25, + "network":"193.185.96.128\/25", + "version":48996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.97.0", + "prefixLen":25, + "network":"193.185.97.0\/25", + "version":48995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.97.0", + "prefixLen":25, + "network":"193.185.97.0\/25", + "version":48995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.97.128", + "prefixLen":25, + "network":"193.185.97.128\/25", + "version":48994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.97.128", + "prefixLen":25, + "network":"193.185.97.128\/25", + "version":48994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.98.0", + "prefixLen":25, + "network":"193.185.98.0\/25", + "version":48993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.98.0", + "prefixLen":25, + "network":"193.185.98.0\/25", + "version":48993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.98.128", + "prefixLen":25, + "network":"193.185.98.128\/25", + "version":48992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.98.128", + "prefixLen":25, + "network":"193.185.98.128\/25", + "version":48992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.99.0", + "prefixLen":25, + "network":"193.185.99.0\/25", + "version":48991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.99.0", + "prefixLen":25, + "network":"193.185.99.0\/25", + "version":48991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.99.128", + "prefixLen":25, + "network":"193.185.99.128\/25", + "version":48990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.99.128", + "prefixLen":25, + "network":"193.185.99.128\/25", + "version":48990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.112.0", + "prefixLen":25, + "network":"193.185.112.0\/25", + "version":48989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.112.0", + "prefixLen":25, + "network":"193.185.112.0\/25", + "version":48989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.112.128", + "prefixLen":25, + "network":"193.185.112.128\/25", + "version":48988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.112.128", + "prefixLen":25, + "network":"193.185.112.128\/25", + "version":48988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.113.0", + "prefixLen":25, + "network":"193.185.113.0\/25", + "version":48987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.113.0", + "prefixLen":25, + "network":"193.185.113.0\/25", + "version":48987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.113.128", + "prefixLen":25, + "network":"193.185.113.128\/25", + "version":48986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.113.128", + "prefixLen":25, + "network":"193.185.113.128\/25", + "version":48986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.114.0", + "prefixLen":25, + "network":"193.185.114.0\/25", + "version":48985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.114.0", + "prefixLen":25, + "network":"193.185.114.0\/25", + "version":48985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.114.128", + "prefixLen":25, + "network":"193.185.114.128\/25", + "version":48984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.114.128", + "prefixLen":25, + "network":"193.185.114.128\/25", + "version":48984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.115.0", + "prefixLen":25, + "network":"193.185.115.0\/25", + "version":48983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.115.0", + "prefixLen":25, + "network":"193.185.115.0\/25", + "version":48983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.115.128", + "prefixLen":25, + "network":"193.185.115.128\/25", + "version":48982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.115.128", + "prefixLen":25, + "network":"193.185.115.128\/25", + "version":48982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.128.0", + "prefixLen":25, + "network":"193.185.128.0\/25", + "version":48981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.128.0", + "prefixLen":25, + "network":"193.185.128.0\/25", + "version":48981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.128.128", + "prefixLen":25, + "network":"193.185.128.128\/25", + "version":48980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.128.128", + "prefixLen":25, + "network":"193.185.128.128\/25", + "version":48980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.129.0", + "prefixLen":25, + "network":"193.185.129.0\/25", + "version":48979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.129.0", + "prefixLen":25, + "network":"193.185.129.0\/25", + "version":48979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.129.128", + "prefixLen":25, + "network":"193.185.129.128\/25", + "version":48978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.129.128", + "prefixLen":25, + "network":"193.185.129.128\/25", + "version":48978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.130.0", + "prefixLen":25, + "network":"193.185.130.0\/25", + "version":48977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.130.0", + "prefixLen":25, + "network":"193.185.130.0\/25", + "version":48977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.130.128", + "prefixLen":25, + "network":"193.185.130.128\/25", + "version":48976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.130.128", + "prefixLen":25, + "network":"193.185.130.128\/25", + "version":48976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.131.0", + "prefixLen":25, + "network":"193.185.131.0\/25", + "version":48975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.131.0", + "prefixLen":25, + "network":"193.185.131.0\/25", + "version":48975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.131.128", + "prefixLen":25, + "network":"193.185.131.128\/25", + "version":48974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.131.128", + "prefixLen":25, + "network":"193.185.131.128\/25", + "version":48974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.144.0", + "prefixLen":25, + "network":"193.185.144.0\/25", + "version":48973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.144.0", + "prefixLen":25, + "network":"193.185.144.0\/25", + "version":48973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.144.128", + "prefixLen":25, + "network":"193.185.144.128\/25", + "version":48972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.144.128", + "prefixLen":25, + "network":"193.185.144.128\/25", + "version":48972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.145.0", + "prefixLen":25, + "network":"193.185.145.0\/25", + "version":48971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.145.0", + "prefixLen":25, + "network":"193.185.145.0\/25", + "version":48971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.145.128", + "prefixLen":25, + "network":"193.185.145.128\/25", + "version":48970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.145.128", + "prefixLen":25, + "network":"193.185.145.128\/25", + "version":48970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.146.0", + "prefixLen":25, + "network":"193.185.146.0\/25", + "version":48969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.146.0", + "prefixLen":25, + "network":"193.185.146.0\/25", + "version":48969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.146.128", + "prefixLen":25, + "network":"193.185.146.128\/25", + "version":48968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.146.128", + "prefixLen":25, + "network":"193.185.146.128\/25", + "version":48968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.147.0", + "prefixLen":25, + "network":"193.185.147.0\/25", + "version":48967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.147.0", + "prefixLen":25, + "network":"193.185.147.0\/25", + "version":48967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.147.128", + "prefixLen":25, + "network":"193.185.147.128\/25", + "version":48966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.147.128", + "prefixLen":25, + "network":"193.185.147.128\/25", + "version":48966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.160.0", + "prefixLen":25, + "network":"193.185.160.0\/25", + "version":48965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.160.0", + "prefixLen":25, + "network":"193.185.160.0\/25", + "version":48965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.160.128", + "prefixLen":25, + "network":"193.185.160.128\/25", + "version":48964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.160.128", + "prefixLen":25, + "network":"193.185.160.128\/25", + "version":48964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.161.0", + "prefixLen":25, + "network":"193.185.161.0\/25", + "version":48963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.161.0", + "prefixLen":25, + "network":"193.185.161.0\/25", + "version":48963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.161.128", + "prefixLen":25, + "network":"193.185.161.128\/25", + "version":48962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.161.128", + "prefixLen":25, + "network":"193.185.161.128\/25", + "version":48962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.162.0", + "prefixLen":25, + "network":"193.185.162.0\/25", + "version":48961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.162.0", + "prefixLen":25, + "network":"193.185.162.0\/25", + "version":48961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.162.128", + "prefixLen":25, + "network":"193.185.162.128\/25", + "version":48960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.162.128", + "prefixLen":25, + "network":"193.185.162.128\/25", + "version":48960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.163.0", + "prefixLen":25, + "network":"193.185.163.0\/25", + "version":48959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.163.0", + "prefixLen":25, + "network":"193.185.163.0\/25", + "version":48959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.163.128", + "prefixLen":25, + "network":"193.185.163.128\/25", + "version":48958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.163.128", + "prefixLen":25, + "network":"193.185.163.128\/25", + "version":48958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.176.0", + "prefixLen":25, + "network":"193.185.176.0\/25", + "version":48957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.176.0", + "prefixLen":25, + "network":"193.185.176.0\/25", + "version":48957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.176.128", + "prefixLen":25, + "network":"193.185.176.128\/25", + "version":48956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.176.128", + "prefixLen":25, + "network":"193.185.176.128\/25", + "version":48956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.177.0", + "prefixLen":25, + "network":"193.185.177.0\/25", + "version":48955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.177.0", + "prefixLen":25, + "network":"193.185.177.0\/25", + "version":48955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.177.128", + "prefixLen":25, + "network":"193.185.177.128\/25", + "version":48954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.177.128", + "prefixLen":25, + "network":"193.185.177.128\/25", + "version":48954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.178.0", + "prefixLen":25, + "network":"193.185.178.0\/25", + "version":48953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.178.0", + "prefixLen":25, + "network":"193.185.178.0\/25", + "version":48953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.178.128", + "prefixLen":25, + "network":"193.185.178.128\/25", + "version":48952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.178.128", + "prefixLen":25, + "network":"193.185.178.128\/25", + "version":48952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.179.0", + "prefixLen":25, + "network":"193.185.179.0\/25", + "version":48951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.179.0", + "prefixLen":25, + "network":"193.185.179.0\/25", + "version":48951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.179.128", + "prefixLen":25, + "network":"193.185.179.128\/25", + "version":48950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.179.128", + "prefixLen":25, + "network":"193.185.179.128\/25", + "version":48950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.192.0", + "prefixLen":25, + "network":"193.185.192.0\/25", + "version":48949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.192.0", + "prefixLen":25, + "network":"193.185.192.0\/25", + "version":48949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.192.128", + "prefixLen":25, + "network":"193.185.192.128\/25", + "version":48948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.192.128", + "prefixLen":25, + "network":"193.185.192.128\/25", + "version":48948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.193.0", + "prefixLen":25, + "network":"193.185.193.0\/25", + "version":48947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.193.0", + "prefixLen":25, + "network":"193.185.193.0\/25", + "version":48947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.193.128", + "prefixLen":25, + "network":"193.185.193.128\/25", + "version":48946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.193.128", + "prefixLen":25, + "network":"193.185.193.128\/25", + "version":48946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.194.0", + "prefixLen":25, + "network":"193.185.194.0\/25", + "version":48945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.194.0", + "prefixLen":25, + "network":"193.185.194.0\/25", + "version":48945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.194.128", + "prefixLen":25, + "network":"193.185.194.128\/25", + "version":48944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.194.128", + "prefixLen":25, + "network":"193.185.194.128\/25", + "version":48944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.195.0", + "prefixLen":25, + "network":"193.185.195.0\/25", + "version":48943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.195.0", + "prefixLen":25, + "network":"193.185.195.0\/25", + "version":48943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.195.128", + "prefixLen":25, + "network":"193.185.195.128\/25", + "version":48942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.195.128", + "prefixLen":25, + "network":"193.185.195.128\/25", + "version":48942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.208.0", + "prefixLen":25, + "network":"193.185.208.0\/25", + "version":48941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.208.0", + "prefixLen":25, + "network":"193.185.208.0\/25", + "version":48941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.208.128", + "prefixLen":25, + "network":"193.185.208.128\/25", + "version":48940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.208.128", + "prefixLen":25, + "network":"193.185.208.128\/25", + "version":48940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.209.0", + "prefixLen":25, + "network":"193.185.209.0\/25", + "version":48939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.209.0", + "prefixLen":25, + "network":"193.185.209.0\/25", + "version":48939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.209.128", + "prefixLen":25, + "network":"193.185.209.128\/25", + "version":48938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.209.128", + "prefixLen":25, + "network":"193.185.209.128\/25", + "version":48938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.210.0", + "prefixLen":25, + "network":"193.185.210.0\/25", + "version":48937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.210.0", + "prefixLen":25, + "network":"193.185.210.0\/25", + "version":48937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.210.128", + "prefixLen":25, + "network":"193.185.210.128\/25", + "version":48936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.210.128", + "prefixLen":25, + "network":"193.185.210.128\/25", + "version":48936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.211.0", + "prefixLen":25, + "network":"193.185.211.0\/25", + "version":48935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.211.0", + "prefixLen":25, + "network":"193.185.211.0\/25", + "version":48935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.211.128", + "prefixLen":25, + "network":"193.185.211.128\/25", + "version":48934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.211.128", + "prefixLen":25, + "network":"193.185.211.128\/25", + "version":48934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.224.0", + "prefixLen":25, + "network":"193.185.224.0\/25", + "version":48933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.224.0", + "prefixLen":25, + "network":"193.185.224.0\/25", + "version":48933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.224.128", + "prefixLen":25, + "network":"193.185.224.128\/25", + "version":48932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.224.128", + "prefixLen":25, + "network":"193.185.224.128\/25", + "version":48932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.225.0", + "prefixLen":25, + "network":"193.185.225.0\/25", + "version":48931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.225.0", + "prefixLen":25, + "network":"193.185.225.0\/25", + "version":48931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.225.128", + "prefixLen":25, + "network":"193.185.225.128\/25", + "version":48930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.225.128", + "prefixLen":25, + "network":"193.185.225.128\/25", + "version":48930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.226.0", + "prefixLen":25, + "network":"193.185.226.0\/25", + "version":48929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.226.0", + "prefixLen":25, + "network":"193.185.226.0\/25", + "version":48929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.226.128", + "prefixLen":25, + "network":"193.185.226.128\/25", + "version":48928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.226.128", + "prefixLen":25, + "network":"193.185.226.128\/25", + "version":48928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.227.0", + "prefixLen":25, + "network":"193.185.227.0\/25", + "version":48927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.227.0", + "prefixLen":25, + "network":"193.185.227.0\/25", + "version":48927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.227.128", + "prefixLen":25, + "network":"193.185.227.128\/25", + "version":48926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.227.128", + "prefixLen":25, + "network":"193.185.227.128\/25", + "version":48926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.240.0", + "prefixLen":25, + "network":"193.185.240.0\/25", + "version":48925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.240.0", + "prefixLen":25, + "network":"193.185.240.0\/25", + "version":48925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.240.128", + "prefixLen":25, + "network":"193.185.240.128\/25", + "version":48924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.240.128", + "prefixLen":25, + "network":"193.185.240.128\/25", + "version":48924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.241.0", + "prefixLen":25, + "network":"193.185.241.0\/25", + "version":48923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.241.0", + "prefixLen":25, + "network":"193.185.241.0\/25", + "version":48923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.241.128", + "prefixLen":25, + "network":"193.185.241.128\/25", + "version":48922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.241.128", + "prefixLen":25, + "network":"193.185.241.128\/25", + "version":48922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.242.0", + "prefixLen":25, + "network":"193.185.242.0\/25", + "version":48921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.242.0", + "prefixLen":25, + "network":"193.185.242.0\/25", + "version":48921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.242.128", + "prefixLen":25, + "network":"193.185.242.128\/25", + "version":48920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.242.128", + "prefixLen":25, + "network":"193.185.242.128\/25", + "version":48920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.243.0", + "prefixLen":25, + "network":"193.185.243.0\/25", + "version":48919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.243.0", + "prefixLen":25, + "network":"193.185.243.0\/25", + "version":48919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.185.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.185.243.128", + "prefixLen":25, + "network":"193.185.243.128\/25", + "version":48918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.185.243.128", + "prefixLen":25, + "network":"193.185.243.128\/25", + "version":48918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64873 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.0.0", + "prefixLen":25, + "network":"193.186.0.0\/25", + "version":49045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.0.0", + "prefixLen":25, + "network":"193.186.0.0\/25", + "version":49045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.0.128", + "prefixLen":25, + "network":"193.186.0.128\/25", + "version":49172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.0.128", + "prefixLen":25, + "network":"193.186.0.128\/25", + "version":49172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.1.0", + "prefixLen":25, + "network":"193.186.1.0\/25", + "version":49171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.1.0", + "prefixLen":25, + "network":"193.186.1.0\/25", + "version":49171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.1.128", + "prefixLen":25, + "network":"193.186.1.128\/25", + "version":49170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.1.128", + "prefixLen":25, + "network":"193.186.1.128\/25", + "version":49170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.2.0", + "prefixLen":25, + "network":"193.186.2.0\/25", + "version":49169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.2.0", + "prefixLen":25, + "network":"193.186.2.0\/25", + "version":49169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.2.128", + "prefixLen":25, + "network":"193.186.2.128\/25", + "version":49168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.2.128", + "prefixLen":25, + "network":"193.186.2.128\/25", + "version":49168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.3.0", + "prefixLen":25, + "network":"193.186.3.0\/25", + "version":49167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.3.0", + "prefixLen":25, + "network":"193.186.3.0\/25", + "version":49167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.3.128", + "prefixLen":25, + "network":"193.186.3.128\/25", + "version":49166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.3.128", + "prefixLen":25, + "network":"193.186.3.128\/25", + "version":49166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.16.0", + "prefixLen":25, + "network":"193.186.16.0\/25", + "version":49165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.16.0", + "prefixLen":25, + "network":"193.186.16.0\/25", + "version":49165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.16.128", + "prefixLen":25, + "network":"193.186.16.128\/25", + "version":49164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.16.128", + "prefixLen":25, + "network":"193.186.16.128\/25", + "version":49164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.17.0", + "prefixLen":25, + "network":"193.186.17.0\/25", + "version":49163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.17.0", + "prefixLen":25, + "network":"193.186.17.0\/25", + "version":49163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.17.128", + "prefixLen":25, + "network":"193.186.17.128\/25", + "version":49162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.17.128", + "prefixLen":25, + "network":"193.186.17.128\/25", + "version":49162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.18.0", + "prefixLen":25, + "network":"193.186.18.0\/25", + "version":49161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.18.0", + "prefixLen":25, + "network":"193.186.18.0\/25", + "version":49161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.18.128", + "prefixLen":25, + "network":"193.186.18.128\/25", + "version":49160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.18.128", + "prefixLen":25, + "network":"193.186.18.128\/25", + "version":49160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.19.0", + "prefixLen":25, + "network":"193.186.19.0\/25", + "version":49159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.19.0", + "prefixLen":25, + "network":"193.186.19.0\/25", + "version":49159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.19.128", + "prefixLen":25, + "network":"193.186.19.128\/25", + "version":49158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.19.128", + "prefixLen":25, + "network":"193.186.19.128\/25", + "version":49158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.32.0", + "prefixLen":25, + "network":"193.186.32.0\/25", + "version":49157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.32.0", + "prefixLen":25, + "network":"193.186.32.0\/25", + "version":49157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.32.128", + "prefixLen":25, + "network":"193.186.32.128\/25", + "version":49156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.32.128", + "prefixLen":25, + "network":"193.186.32.128\/25", + "version":49156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.33.0", + "prefixLen":25, + "network":"193.186.33.0\/25", + "version":49155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.33.0", + "prefixLen":25, + "network":"193.186.33.0\/25", + "version":49155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.33.128", + "prefixLen":25, + "network":"193.186.33.128\/25", + "version":49154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.33.128", + "prefixLen":25, + "network":"193.186.33.128\/25", + "version":49154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.34.0", + "prefixLen":25, + "network":"193.186.34.0\/25", + "version":49153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.34.0", + "prefixLen":25, + "network":"193.186.34.0\/25", + "version":49153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.34.128", + "prefixLen":25, + "network":"193.186.34.128\/25", + "version":49152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.34.128", + "prefixLen":25, + "network":"193.186.34.128\/25", + "version":49152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.35.0", + "prefixLen":25, + "network":"193.186.35.0\/25", + "version":49151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.35.0", + "prefixLen":25, + "network":"193.186.35.0\/25", + "version":49151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.35.128", + "prefixLen":25, + "network":"193.186.35.128\/25", + "version":49150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.35.128", + "prefixLen":25, + "network":"193.186.35.128\/25", + "version":49150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.48.0", + "prefixLen":25, + "network":"193.186.48.0\/25", + "version":49149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.48.0", + "prefixLen":25, + "network":"193.186.48.0\/25", + "version":49149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.48.128", + "prefixLen":25, + "network":"193.186.48.128\/25", + "version":49148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.48.128", + "prefixLen":25, + "network":"193.186.48.128\/25", + "version":49148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.49.0", + "prefixLen":25, + "network":"193.186.49.0\/25", + "version":49147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.49.0", + "prefixLen":25, + "network":"193.186.49.0\/25", + "version":49147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.49.128", + "prefixLen":25, + "network":"193.186.49.128\/25", + "version":49146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.49.128", + "prefixLen":25, + "network":"193.186.49.128\/25", + "version":49146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.50.0", + "prefixLen":25, + "network":"193.186.50.0\/25", + "version":49145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.50.0", + "prefixLen":25, + "network":"193.186.50.0\/25", + "version":49145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.50.128", + "prefixLen":25, + "network":"193.186.50.128\/25", + "version":49144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.50.128", + "prefixLen":25, + "network":"193.186.50.128\/25", + "version":49144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.51.0", + "prefixLen":25, + "network":"193.186.51.0\/25", + "version":49143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.51.0", + "prefixLen":25, + "network":"193.186.51.0\/25", + "version":49143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.51.128", + "prefixLen":25, + "network":"193.186.51.128\/25", + "version":49142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.51.128", + "prefixLen":25, + "network":"193.186.51.128\/25", + "version":49142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.64.0", + "prefixLen":25, + "network":"193.186.64.0\/25", + "version":49141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.64.0", + "prefixLen":25, + "network":"193.186.64.0\/25", + "version":49141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.64.128", + "prefixLen":25, + "network":"193.186.64.128\/25", + "version":49140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.64.128", + "prefixLen":25, + "network":"193.186.64.128\/25", + "version":49140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.65.0", + "prefixLen":25, + "network":"193.186.65.0\/25", + "version":49139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.65.0", + "prefixLen":25, + "network":"193.186.65.0\/25", + "version":49139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.65.128", + "prefixLen":25, + "network":"193.186.65.128\/25", + "version":49138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.65.128", + "prefixLen":25, + "network":"193.186.65.128\/25", + "version":49138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.66.0", + "prefixLen":25, + "network":"193.186.66.0\/25", + "version":49137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.66.0", + "prefixLen":25, + "network":"193.186.66.0\/25", + "version":49137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.66.128", + "prefixLen":25, + "network":"193.186.66.128\/25", + "version":49136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.66.128", + "prefixLen":25, + "network":"193.186.66.128\/25", + "version":49136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.67.0", + "prefixLen":25, + "network":"193.186.67.0\/25", + "version":49135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.67.0", + "prefixLen":25, + "network":"193.186.67.0\/25", + "version":49135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.67.128", + "prefixLen":25, + "network":"193.186.67.128\/25", + "version":49134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.67.128", + "prefixLen":25, + "network":"193.186.67.128\/25", + "version":49134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.80.0", + "prefixLen":25, + "network":"193.186.80.0\/25", + "version":49133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.80.0", + "prefixLen":25, + "network":"193.186.80.0\/25", + "version":49133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.80.128", + "prefixLen":25, + "network":"193.186.80.128\/25", + "version":49132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.80.128", + "prefixLen":25, + "network":"193.186.80.128\/25", + "version":49132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.81.0", + "prefixLen":25, + "network":"193.186.81.0\/25", + "version":49131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.81.0", + "prefixLen":25, + "network":"193.186.81.0\/25", + "version":49131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.81.128", + "prefixLen":25, + "network":"193.186.81.128\/25", + "version":49130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.81.128", + "prefixLen":25, + "network":"193.186.81.128\/25", + "version":49130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.82.0", + "prefixLen":25, + "network":"193.186.82.0\/25", + "version":49129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.82.0", + "prefixLen":25, + "network":"193.186.82.0\/25", + "version":49129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.82.128", + "prefixLen":25, + "network":"193.186.82.128\/25", + "version":49128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.82.128", + "prefixLen":25, + "network":"193.186.82.128\/25", + "version":49128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.83.0", + "prefixLen":25, + "network":"193.186.83.0\/25", + "version":49127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.83.0", + "prefixLen":25, + "network":"193.186.83.0\/25", + "version":49127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.83.128", + "prefixLen":25, + "network":"193.186.83.128\/25", + "version":49126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.83.128", + "prefixLen":25, + "network":"193.186.83.128\/25", + "version":49126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.96.0", + "prefixLen":25, + "network":"193.186.96.0\/25", + "version":49125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.96.0", + "prefixLen":25, + "network":"193.186.96.0\/25", + "version":49125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.96.128", + "prefixLen":25, + "network":"193.186.96.128\/25", + "version":49124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.96.128", + "prefixLen":25, + "network":"193.186.96.128\/25", + "version":49124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.97.0", + "prefixLen":25, + "network":"193.186.97.0\/25", + "version":49123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.97.0", + "prefixLen":25, + "network":"193.186.97.0\/25", + "version":49123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.97.128", + "prefixLen":25, + "network":"193.186.97.128\/25", + "version":49122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.97.128", + "prefixLen":25, + "network":"193.186.97.128\/25", + "version":49122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.98.0", + "prefixLen":25, + "network":"193.186.98.0\/25", + "version":49121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.98.0", + "prefixLen":25, + "network":"193.186.98.0\/25", + "version":49121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.98.128", + "prefixLen":25, + "network":"193.186.98.128\/25", + "version":49120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.98.128", + "prefixLen":25, + "network":"193.186.98.128\/25", + "version":49120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.99.0", + "prefixLen":25, + "network":"193.186.99.0\/25", + "version":49119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.99.0", + "prefixLen":25, + "network":"193.186.99.0\/25", + "version":49119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.99.128", + "prefixLen":25, + "network":"193.186.99.128\/25", + "version":49118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.99.128", + "prefixLen":25, + "network":"193.186.99.128\/25", + "version":49118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.112.0", + "prefixLen":25, + "network":"193.186.112.0\/25", + "version":49117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.112.0", + "prefixLen":25, + "network":"193.186.112.0\/25", + "version":49117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.112.128", + "prefixLen":25, + "network":"193.186.112.128\/25", + "version":49116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.112.128", + "prefixLen":25, + "network":"193.186.112.128\/25", + "version":49116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.113.0", + "prefixLen":25, + "network":"193.186.113.0\/25", + "version":49115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.113.0", + "prefixLen":25, + "network":"193.186.113.0\/25", + "version":49115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.113.128", + "prefixLen":25, + "network":"193.186.113.128\/25", + "version":49114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.113.128", + "prefixLen":25, + "network":"193.186.113.128\/25", + "version":49114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.114.0", + "prefixLen":25, + "network":"193.186.114.0\/25", + "version":49113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.114.0", + "prefixLen":25, + "network":"193.186.114.0\/25", + "version":49113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.114.128", + "prefixLen":25, + "network":"193.186.114.128\/25", + "version":49112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.114.128", + "prefixLen":25, + "network":"193.186.114.128\/25", + "version":49112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.115.0", + "prefixLen":25, + "network":"193.186.115.0\/25", + "version":49111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.115.0", + "prefixLen":25, + "network":"193.186.115.0\/25", + "version":49111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.115.128", + "prefixLen":25, + "network":"193.186.115.128\/25", + "version":49110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.115.128", + "prefixLen":25, + "network":"193.186.115.128\/25", + "version":49110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.128.0", + "prefixLen":25, + "network":"193.186.128.0\/25", + "version":49109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.128.0", + "prefixLen":25, + "network":"193.186.128.0\/25", + "version":49109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.128.128", + "prefixLen":25, + "network":"193.186.128.128\/25", + "version":49108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.128.128", + "prefixLen":25, + "network":"193.186.128.128\/25", + "version":49108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.129.0", + "prefixLen":25, + "network":"193.186.129.0\/25", + "version":49107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.129.0", + "prefixLen":25, + "network":"193.186.129.0\/25", + "version":49107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.129.128", + "prefixLen":25, + "network":"193.186.129.128\/25", + "version":49106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.129.128", + "prefixLen":25, + "network":"193.186.129.128\/25", + "version":49106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.130.0", + "prefixLen":25, + "network":"193.186.130.0\/25", + "version":49105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.130.0", + "prefixLen":25, + "network":"193.186.130.0\/25", + "version":49105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.130.128", + "prefixLen":25, + "network":"193.186.130.128\/25", + "version":49104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.130.128", + "prefixLen":25, + "network":"193.186.130.128\/25", + "version":49104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.131.0", + "prefixLen":25, + "network":"193.186.131.0\/25", + "version":49103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.131.0", + "prefixLen":25, + "network":"193.186.131.0\/25", + "version":49103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.131.128", + "prefixLen":25, + "network":"193.186.131.128\/25", + "version":49102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.131.128", + "prefixLen":25, + "network":"193.186.131.128\/25", + "version":49102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.144.0", + "prefixLen":25, + "network":"193.186.144.0\/25", + "version":49101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.144.0", + "prefixLen":25, + "network":"193.186.144.0\/25", + "version":49101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.144.128", + "prefixLen":25, + "network":"193.186.144.128\/25", + "version":49100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.144.128", + "prefixLen":25, + "network":"193.186.144.128\/25", + "version":49100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.145.0", + "prefixLen":25, + "network":"193.186.145.0\/25", + "version":49099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.145.0", + "prefixLen":25, + "network":"193.186.145.0\/25", + "version":49099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.145.128", + "prefixLen":25, + "network":"193.186.145.128\/25", + "version":49098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.145.128", + "prefixLen":25, + "network":"193.186.145.128\/25", + "version":49098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.146.0", + "prefixLen":25, + "network":"193.186.146.0\/25", + "version":49097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.146.0", + "prefixLen":25, + "network":"193.186.146.0\/25", + "version":49097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.146.128", + "prefixLen":25, + "network":"193.186.146.128\/25", + "version":49096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.146.128", + "prefixLen":25, + "network":"193.186.146.128\/25", + "version":49096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.147.0", + "prefixLen":25, + "network":"193.186.147.0\/25", + "version":49095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.147.0", + "prefixLen":25, + "network":"193.186.147.0\/25", + "version":49095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.147.128", + "prefixLen":25, + "network":"193.186.147.128\/25", + "version":49094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.147.128", + "prefixLen":25, + "network":"193.186.147.128\/25", + "version":49094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.160.0", + "prefixLen":25, + "network":"193.186.160.0\/25", + "version":49093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.160.0", + "prefixLen":25, + "network":"193.186.160.0\/25", + "version":49093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.160.128", + "prefixLen":25, + "network":"193.186.160.128\/25", + "version":49092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.160.128", + "prefixLen":25, + "network":"193.186.160.128\/25", + "version":49092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.161.0", + "prefixLen":25, + "network":"193.186.161.0\/25", + "version":49091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.161.0", + "prefixLen":25, + "network":"193.186.161.0\/25", + "version":49091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.161.128", + "prefixLen":25, + "network":"193.186.161.128\/25", + "version":49090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.161.128", + "prefixLen":25, + "network":"193.186.161.128\/25", + "version":49090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.162.0", + "prefixLen":25, + "network":"193.186.162.0\/25", + "version":49089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.162.0", + "prefixLen":25, + "network":"193.186.162.0\/25", + "version":49089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.162.128", + "prefixLen":25, + "network":"193.186.162.128\/25", + "version":49088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.162.128", + "prefixLen":25, + "network":"193.186.162.128\/25", + "version":49088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.163.0", + "prefixLen":25, + "network":"193.186.163.0\/25", + "version":49087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.163.0", + "prefixLen":25, + "network":"193.186.163.0\/25", + "version":49087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.163.128", + "prefixLen":25, + "network":"193.186.163.128\/25", + "version":49086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.163.128", + "prefixLen":25, + "network":"193.186.163.128\/25", + "version":49086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.176.0", + "prefixLen":25, + "network":"193.186.176.0\/25", + "version":49085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.176.0", + "prefixLen":25, + "network":"193.186.176.0\/25", + "version":49085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.176.128", + "prefixLen":25, + "network":"193.186.176.128\/25", + "version":49084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.176.128", + "prefixLen":25, + "network":"193.186.176.128\/25", + "version":49084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.177.0", + "prefixLen":25, + "network":"193.186.177.0\/25", + "version":49083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.177.0", + "prefixLen":25, + "network":"193.186.177.0\/25", + "version":49083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.177.128", + "prefixLen":25, + "network":"193.186.177.128\/25", + "version":49082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.177.128", + "prefixLen":25, + "network":"193.186.177.128\/25", + "version":49082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.178.0", + "prefixLen":25, + "network":"193.186.178.0\/25", + "version":49081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.178.0", + "prefixLen":25, + "network":"193.186.178.0\/25", + "version":49081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.178.128", + "prefixLen":25, + "network":"193.186.178.128\/25", + "version":49080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.178.128", + "prefixLen":25, + "network":"193.186.178.128\/25", + "version":49080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.179.0", + "prefixLen":25, + "network":"193.186.179.0\/25", + "version":49079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.179.0", + "prefixLen":25, + "network":"193.186.179.0\/25", + "version":49079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.179.128", + "prefixLen":25, + "network":"193.186.179.128\/25", + "version":49078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.179.128", + "prefixLen":25, + "network":"193.186.179.128\/25", + "version":49078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.192.0", + "prefixLen":25, + "network":"193.186.192.0\/25", + "version":49077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.192.0", + "prefixLen":25, + "network":"193.186.192.0\/25", + "version":49077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.192.128", + "prefixLen":25, + "network":"193.186.192.128\/25", + "version":49076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.192.128", + "prefixLen":25, + "network":"193.186.192.128\/25", + "version":49076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.193.0", + "prefixLen":25, + "network":"193.186.193.0\/25", + "version":49075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.193.0", + "prefixLen":25, + "network":"193.186.193.0\/25", + "version":49075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.193.128", + "prefixLen":25, + "network":"193.186.193.128\/25", + "version":49074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.193.128", + "prefixLen":25, + "network":"193.186.193.128\/25", + "version":49074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.194.0", + "prefixLen":25, + "network":"193.186.194.0\/25", + "version":49073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.194.0", + "prefixLen":25, + "network":"193.186.194.0\/25", + "version":49073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.194.128", + "prefixLen":25, + "network":"193.186.194.128\/25", + "version":49072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.194.128", + "prefixLen":25, + "network":"193.186.194.128\/25", + "version":49072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.195.0", + "prefixLen":25, + "network":"193.186.195.0\/25", + "version":49071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.195.0", + "prefixLen":25, + "network":"193.186.195.0\/25", + "version":49071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.195.128", + "prefixLen":25, + "network":"193.186.195.128\/25", + "version":49070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.195.128", + "prefixLen":25, + "network":"193.186.195.128\/25", + "version":49070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.208.0", + "prefixLen":25, + "network":"193.186.208.0\/25", + "version":49069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.208.0", + "prefixLen":25, + "network":"193.186.208.0\/25", + "version":49069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.208.128", + "prefixLen":25, + "network":"193.186.208.128\/25", + "version":49068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.208.128", + "prefixLen":25, + "network":"193.186.208.128\/25", + "version":49068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.209.0", + "prefixLen":25, + "network":"193.186.209.0\/25", + "version":49067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.209.0", + "prefixLen":25, + "network":"193.186.209.0\/25", + "version":49067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.209.128", + "prefixLen":25, + "network":"193.186.209.128\/25", + "version":49066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.209.128", + "prefixLen":25, + "network":"193.186.209.128\/25", + "version":49066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.210.0", + "prefixLen":25, + "network":"193.186.210.0\/25", + "version":49065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.210.0", + "prefixLen":25, + "network":"193.186.210.0\/25", + "version":49065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.210.128", + "prefixLen":25, + "network":"193.186.210.128\/25", + "version":49064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.210.128", + "prefixLen":25, + "network":"193.186.210.128\/25", + "version":49064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.211.0", + "prefixLen":25, + "network":"193.186.211.0\/25", + "version":49063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.211.0", + "prefixLen":25, + "network":"193.186.211.0\/25", + "version":49063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.211.128", + "prefixLen":25, + "network":"193.186.211.128\/25", + "version":49062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.211.128", + "prefixLen":25, + "network":"193.186.211.128\/25", + "version":49062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.224.0", + "prefixLen":25, + "network":"193.186.224.0\/25", + "version":49061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.224.0", + "prefixLen":25, + "network":"193.186.224.0\/25", + "version":49061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.224.128", + "prefixLen":25, + "network":"193.186.224.128\/25", + "version":49060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.224.128", + "prefixLen":25, + "network":"193.186.224.128\/25", + "version":49060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.225.0", + "prefixLen":25, + "network":"193.186.225.0\/25", + "version":49059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.225.0", + "prefixLen":25, + "network":"193.186.225.0\/25", + "version":49059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.225.128", + "prefixLen":25, + "network":"193.186.225.128\/25", + "version":49058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.225.128", + "prefixLen":25, + "network":"193.186.225.128\/25", + "version":49058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.226.0", + "prefixLen":25, + "network":"193.186.226.0\/25", + "version":49057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.226.0", + "prefixLen":25, + "network":"193.186.226.0\/25", + "version":49057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.226.128", + "prefixLen":25, + "network":"193.186.226.128\/25", + "version":49056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.226.128", + "prefixLen":25, + "network":"193.186.226.128\/25", + "version":49056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.227.0", + "prefixLen":25, + "network":"193.186.227.0\/25", + "version":49055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.227.0", + "prefixLen":25, + "network":"193.186.227.0\/25", + "version":49055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.227.128", + "prefixLen":25, + "network":"193.186.227.128\/25", + "version":49054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.227.128", + "prefixLen":25, + "network":"193.186.227.128\/25", + "version":49054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.240.0", + "prefixLen":25, + "network":"193.186.240.0\/25", + "version":49053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.240.0", + "prefixLen":25, + "network":"193.186.240.0\/25", + "version":49053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.240.128", + "prefixLen":25, + "network":"193.186.240.128\/25", + "version":49052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.240.128", + "prefixLen":25, + "network":"193.186.240.128\/25", + "version":49052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.241.0", + "prefixLen":25, + "network":"193.186.241.0\/25", + "version":49051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.241.0", + "prefixLen":25, + "network":"193.186.241.0\/25", + "version":49051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.241.128", + "prefixLen":25, + "network":"193.186.241.128\/25", + "version":49050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.241.128", + "prefixLen":25, + "network":"193.186.241.128\/25", + "version":49050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.242.0", + "prefixLen":25, + "network":"193.186.242.0\/25", + "version":49049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.242.0", + "prefixLen":25, + "network":"193.186.242.0\/25", + "version":49049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.242.128", + "prefixLen":25, + "network":"193.186.242.128\/25", + "version":49048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.242.128", + "prefixLen":25, + "network":"193.186.242.128\/25", + "version":49048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.243.0", + "prefixLen":25, + "network":"193.186.243.0\/25", + "version":49047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.243.0", + "prefixLen":25, + "network":"193.186.243.0\/25", + "version":49047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.186.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.186.243.128", + "prefixLen":25, + "network":"193.186.243.128\/25", + "version":49046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.186.243.128", + "prefixLen":25, + "network":"193.186.243.128\/25", + "version":49046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64874 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.0.0", + "prefixLen":25, + "network":"193.187.0.0\/25", + "version":49173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.0.0", + "prefixLen":25, + "network":"193.187.0.0\/25", + "version":49173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.0.128", + "prefixLen":25, + "network":"193.187.0.128\/25", + "version":49300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.0.128", + "prefixLen":25, + "network":"193.187.0.128\/25", + "version":49300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.1.0", + "prefixLen":25, + "network":"193.187.1.0\/25", + "version":49299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.1.0", + "prefixLen":25, + "network":"193.187.1.0\/25", + "version":49299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.1.128", + "prefixLen":25, + "network":"193.187.1.128\/25", + "version":49298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.1.128", + "prefixLen":25, + "network":"193.187.1.128\/25", + "version":49298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.2.0", + "prefixLen":25, + "network":"193.187.2.0\/25", + "version":49297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.2.0", + "prefixLen":25, + "network":"193.187.2.0\/25", + "version":49297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.2.128", + "prefixLen":25, + "network":"193.187.2.128\/25", + "version":49296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.2.128", + "prefixLen":25, + "network":"193.187.2.128\/25", + "version":49296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.3.0", + "prefixLen":25, + "network":"193.187.3.0\/25", + "version":49295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.3.0", + "prefixLen":25, + "network":"193.187.3.0\/25", + "version":49295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.3.128", + "prefixLen":25, + "network":"193.187.3.128\/25", + "version":49294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.3.128", + "prefixLen":25, + "network":"193.187.3.128\/25", + "version":49294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.16.0", + "prefixLen":25, + "network":"193.187.16.0\/25", + "version":49293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.16.0", + "prefixLen":25, + "network":"193.187.16.0\/25", + "version":49293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.16.128", + "prefixLen":25, + "network":"193.187.16.128\/25", + "version":49292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.16.128", + "prefixLen":25, + "network":"193.187.16.128\/25", + "version":49292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.17.0", + "prefixLen":25, + "network":"193.187.17.0\/25", + "version":49291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.17.0", + "prefixLen":25, + "network":"193.187.17.0\/25", + "version":49291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.17.128", + "prefixLen":25, + "network":"193.187.17.128\/25", + "version":49290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.17.128", + "prefixLen":25, + "network":"193.187.17.128\/25", + "version":49290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.18.0", + "prefixLen":25, + "network":"193.187.18.0\/25", + "version":49289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.18.0", + "prefixLen":25, + "network":"193.187.18.0\/25", + "version":49289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.18.128", + "prefixLen":25, + "network":"193.187.18.128\/25", + "version":49288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.18.128", + "prefixLen":25, + "network":"193.187.18.128\/25", + "version":49288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.19.0", + "prefixLen":25, + "network":"193.187.19.0\/25", + "version":49287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.19.0", + "prefixLen":25, + "network":"193.187.19.0\/25", + "version":49287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.19.128", + "prefixLen":25, + "network":"193.187.19.128\/25", + "version":49286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.19.128", + "prefixLen":25, + "network":"193.187.19.128\/25", + "version":49286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.32.0", + "prefixLen":25, + "network":"193.187.32.0\/25", + "version":49285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.32.0", + "prefixLen":25, + "network":"193.187.32.0\/25", + "version":49285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.32.128", + "prefixLen":25, + "network":"193.187.32.128\/25", + "version":49284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.32.128", + "prefixLen":25, + "network":"193.187.32.128\/25", + "version":49284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.33.0", + "prefixLen":25, + "network":"193.187.33.0\/25", + "version":49283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.33.0", + "prefixLen":25, + "network":"193.187.33.0\/25", + "version":49283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.33.128", + "prefixLen":25, + "network":"193.187.33.128\/25", + "version":49282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.33.128", + "prefixLen":25, + "network":"193.187.33.128\/25", + "version":49282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.34.0", + "prefixLen":25, + "network":"193.187.34.0\/25", + "version":49281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.34.0", + "prefixLen":25, + "network":"193.187.34.0\/25", + "version":49281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.34.128", + "prefixLen":25, + "network":"193.187.34.128\/25", + "version":49280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.34.128", + "prefixLen":25, + "network":"193.187.34.128\/25", + "version":49280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.35.0", + "prefixLen":25, + "network":"193.187.35.0\/25", + "version":49279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.35.0", + "prefixLen":25, + "network":"193.187.35.0\/25", + "version":49279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.35.128", + "prefixLen":25, + "network":"193.187.35.128\/25", + "version":49278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.35.128", + "prefixLen":25, + "network":"193.187.35.128\/25", + "version":49278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.48.0", + "prefixLen":25, + "network":"193.187.48.0\/25", + "version":49277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.48.0", + "prefixLen":25, + "network":"193.187.48.0\/25", + "version":49277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.48.128", + "prefixLen":25, + "network":"193.187.48.128\/25", + "version":49276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.48.128", + "prefixLen":25, + "network":"193.187.48.128\/25", + "version":49276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.49.0", + "prefixLen":25, + "network":"193.187.49.0\/25", + "version":49275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.49.0", + "prefixLen":25, + "network":"193.187.49.0\/25", + "version":49275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.49.128", + "prefixLen":25, + "network":"193.187.49.128\/25", + "version":49274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.49.128", + "prefixLen":25, + "network":"193.187.49.128\/25", + "version":49274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.50.0", + "prefixLen":25, + "network":"193.187.50.0\/25", + "version":49273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.50.0", + "prefixLen":25, + "network":"193.187.50.0\/25", + "version":49273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.50.128", + "prefixLen":25, + "network":"193.187.50.128\/25", + "version":49272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.50.128", + "prefixLen":25, + "network":"193.187.50.128\/25", + "version":49272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.51.0", + "prefixLen":25, + "network":"193.187.51.0\/25", + "version":49271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.51.0", + "prefixLen":25, + "network":"193.187.51.0\/25", + "version":49271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.51.128", + "prefixLen":25, + "network":"193.187.51.128\/25", + "version":49270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.51.128", + "prefixLen":25, + "network":"193.187.51.128\/25", + "version":49270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.64.0", + "prefixLen":25, + "network":"193.187.64.0\/25", + "version":49269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.64.0", + "prefixLen":25, + "network":"193.187.64.0\/25", + "version":49269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.64.128", + "prefixLen":25, + "network":"193.187.64.128\/25", + "version":49268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.64.128", + "prefixLen":25, + "network":"193.187.64.128\/25", + "version":49268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.65.0", + "prefixLen":25, + "network":"193.187.65.0\/25", + "version":49267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.65.0", + "prefixLen":25, + "network":"193.187.65.0\/25", + "version":49267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.65.128", + "prefixLen":25, + "network":"193.187.65.128\/25", + "version":49266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.65.128", + "prefixLen":25, + "network":"193.187.65.128\/25", + "version":49266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.66.0", + "prefixLen":25, + "network":"193.187.66.0\/25", + "version":49265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.66.0", + "prefixLen":25, + "network":"193.187.66.0\/25", + "version":49265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.66.128", + "prefixLen":25, + "network":"193.187.66.128\/25", + "version":49264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.66.128", + "prefixLen":25, + "network":"193.187.66.128\/25", + "version":49264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.67.0", + "prefixLen":25, + "network":"193.187.67.0\/25", + "version":49263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.67.0", + "prefixLen":25, + "network":"193.187.67.0\/25", + "version":49263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.67.128", + "prefixLen":25, + "network":"193.187.67.128\/25", + "version":49262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.67.128", + "prefixLen":25, + "network":"193.187.67.128\/25", + "version":49262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.80.0", + "prefixLen":25, + "network":"193.187.80.0\/25", + "version":49261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.80.0", + "prefixLen":25, + "network":"193.187.80.0\/25", + "version":49261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.80.128", + "prefixLen":25, + "network":"193.187.80.128\/25", + "version":49260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.80.128", + "prefixLen":25, + "network":"193.187.80.128\/25", + "version":49260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.81.0", + "prefixLen":25, + "network":"193.187.81.0\/25", + "version":49259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.81.0", + "prefixLen":25, + "network":"193.187.81.0\/25", + "version":49259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.81.128", + "prefixLen":25, + "network":"193.187.81.128\/25", + "version":49258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.81.128", + "prefixLen":25, + "network":"193.187.81.128\/25", + "version":49258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.82.0", + "prefixLen":25, + "network":"193.187.82.0\/25", + "version":49257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.82.0", + "prefixLen":25, + "network":"193.187.82.0\/25", + "version":49257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.82.128", + "prefixLen":25, + "network":"193.187.82.128\/25", + "version":49256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.82.128", + "prefixLen":25, + "network":"193.187.82.128\/25", + "version":49256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.83.0", + "prefixLen":25, + "network":"193.187.83.0\/25", + "version":49255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.83.0", + "prefixLen":25, + "network":"193.187.83.0\/25", + "version":49255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.83.128", + "prefixLen":25, + "network":"193.187.83.128\/25", + "version":49254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.83.128", + "prefixLen":25, + "network":"193.187.83.128\/25", + "version":49254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.96.0", + "prefixLen":25, + "network":"193.187.96.0\/25", + "version":49253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.96.0", + "prefixLen":25, + "network":"193.187.96.0\/25", + "version":49253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.96.128", + "prefixLen":25, + "network":"193.187.96.128\/25", + "version":49252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.96.128", + "prefixLen":25, + "network":"193.187.96.128\/25", + "version":49252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.97.0", + "prefixLen":25, + "network":"193.187.97.0\/25", + "version":49251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.97.0", + "prefixLen":25, + "network":"193.187.97.0\/25", + "version":49251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.97.128", + "prefixLen":25, + "network":"193.187.97.128\/25", + "version":49250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.97.128", + "prefixLen":25, + "network":"193.187.97.128\/25", + "version":49250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.98.0", + "prefixLen":25, + "network":"193.187.98.0\/25", + "version":49249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.98.0", + "prefixLen":25, + "network":"193.187.98.0\/25", + "version":49249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.98.128", + "prefixLen":25, + "network":"193.187.98.128\/25", + "version":49248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.98.128", + "prefixLen":25, + "network":"193.187.98.128\/25", + "version":49248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.99.0", + "prefixLen":25, + "network":"193.187.99.0\/25", + "version":49247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.99.0", + "prefixLen":25, + "network":"193.187.99.0\/25", + "version":49247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.99.128", + "prefixLen":25, + "network":"193.187.99.128\/25", + "version":49246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.99.128", + "prefixLen":25, + "network":"193.187.99.128\/25", + "version":49246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.112.0", + "prefixLen":25, + "network":"193.187.112.0\/25", + "version":49245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.112.0", + "prefixLen":25, + "network":"193.187.112.0\/25", + "version":49245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.112.128", + "prefixLen":25, + "network":"193.187.112.128\/25", + "version":49244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.112.128", + "prefixLen":25, + "network":"193.187.112.128\/25", + "version":49244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.113.0", + "prefixLen":25, + "network":"193.187.113.0\/25", + "version":49243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.113.0", + "prefixLen":25, + "network":"193.187.113.0\/25", + "version":49243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.113.128", + "prefixLen":25, + "network":"193.187.113.128\/25", + "version":49242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.113.128", + "prefixLen":25, + "network":"193.187.113.128\/25", + "version":49242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.114.0", + "prefixLen":25, + "network":"193.187.114.0\/25", + "version":49241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.114.0", + "prefixLen":25, + "network":"193.187.114.0\/25", + "version":49241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.114.128", + "prefixLen":25, + "network":"193.187.114.128\/25", + "version":49240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.114.128", + "prefixLen":25, + "network":"193.187.114.128\/25", + "version":49240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.115.0", + "prefixLen":25, + "network":"193.187.115.0\/25", + "version":49239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.115.0", + "prefixLen":25, + "network":"193.187.115.0\/25", + "version":49239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.115.128", + "prefixLen":25, + "network":"193.187.115.128\/25", + "version":49238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.115.128", + "prefixLen":25, + "network":"193.187.115.128\/25", + "version":49238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.128.0", + "prefixLen":25, + "network":"193.187.128.0\/25", + "version":49237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.128.0", + "prefixLen":25, + "network":"193.187.128.0\/25", + "version":49237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.128.128", + "prefixLen":25, + "network":"193.187.128.128\/25", + "version":49236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.128.128", + "prefixLen":25, + "network":"193.187.128.128\/25", + "version":49236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.129.0", + "prefixLen":25, + "network":"193.187.129.0\/25", + "version":49235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.129.0", + "prefixLen":25, + "network":"193.187.129.0\/25", + "version":49235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.129.128", + "prefixLen":25, + "network":"193.187.129.128\/25", + "version":49234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.129.128", + "prefixLen":25, + "network":"193.187.129.128\/25", + "version":49234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.130.0", + "prefixLen":25, + "network":"193.187.130.0\/25", + "version":49233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.130.0", + "prefixLen":25, + "network":"193.187.130.0\/25", + "version":49233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.130.128", + "prefixLen":25, + "network":"193.187.130.128\/25", + "version":49232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.130.128", + "prefixLen":25, + "network":"193.187.130.128\/25", + "version":49232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.131.0", + "prefixLen":25, + "network":"193.187.131.0\/25", + "version":49231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.131.0", + "prefixLen":25, + "network":"193.187.131.0\/25", + "version":49231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.131.128", + "prefixLen":25, + "network":"193.187.131.128\/25", + "version":49230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.131.128", + "prefixLen":25, + "network":"193.187.131.128\/25", + "version":49230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.144.0", + "prefixLen":25, + "network":"193.187.144.0\/25", + "version":49229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.144.0", + "prefixLen":25, + "network":"193.187.144.0\/25", + "version":49229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.144.128", + "prefixLen":25, + "network":"193.187.144.128\/25", + "version":49228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.144.128", + "prefixLen":25, + "network":"193.187.144.128\/25", + "version":49228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.145.0", + "prefixLen":25, + "network":"193.187.145.0\/25", + "version":49227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.145.0", + "prefixLen":25, + "network":"193.187.145.0\/25", + "version":49227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.145.128", + "prefixLen":25, + "network":"193.187.145.128\/25", + "version":49226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.145.128", + "prefixLen":25, + "network":"193.187.145.128\/25", + "version":49226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.146.0", + "prefixLen":25, + "network":"193.187.146.0\/25", + "version":49225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.146.0", + "prefixLen":25, + "network":"193.187.146.0\/25", + "version":49225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.146.128", + "prefixLen":25, + "network":"193.187.146.128\/25", + "version":49224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.146.128", + "prefixLen":25, + "network":"193.187.146.128\/25", + "version":49224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.147.0", + "prefixLen":25, + "network":"193.187.147.0\/25", + "version":49223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.147.0", + "prefixLen":25, + "network":"193.187.147.0\/25", + "version":49223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.147.128", + "prefixLen":25, + "network":"193.187.147.128\/25", + "version":49222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.147.128", + "prefixLen":25, + "network":"193.187.147.128\/25", + "version":49222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.160.0", + "prefixLen":25, + "network":"193.187.160.0\/25", + "version":49221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.160.0", + "prefixLen":25, + "network":"193.187.160.0\/25", + "version":49221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.160.128", + "prefixLen":25, + "network":"193.187.160.128\/25", + "version":49220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.160.128", + "prefixLen":25, + "network":"193.187.160.128\/25", + "version":49220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.161.0", + "prefixLen":25, + "network":"193.187.161.0\/25", + "version":49219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.161.0", + "prefixLen":25, + "network":"193.187.161.0\/25", + "version":49219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.161.128", + "prefixLen":25, + "network":"193.187.161.128\/25", + "version":49218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.161.128", + "prefixLen":25, + "network":"193.187.161.128\/25", + "version":49218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.162.0", + "prefixLen":25, + "network":"193.187.162.0\/25", + "version":49217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.162.0", + "prefixLen":25, + "network":"193.187.162.0\/25", + "version":49217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.162.128", + "prefixLen":25, + "network":"193.187.162.128\/25", + "version":49216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.162.128", + "prefixLen":25, + "network":"193.187.162.128\/25", + "version":49216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.163.0", + "prefixLen":25, + "network":"193.187.163.0\/25", + "version":49215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.163.0", + "prefixLen":25, + "network":"193.187.163.0\/25", + "version":49215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.163.128", + "prefixLen":25, + "network":"193.187.163.128\/25", + "version":49214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.163.128", + "prefixLen":25, + "network":"193.187.163.128\/25", + "version":49214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.176.0", + "prefixLen":25, + "network":"193.187.176.0\/25", + "version":49213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.176.0", + "prefixLen":25, + "network":"193.187.176.0\/25", + "version":49213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.176.128", + "prefixLen":25, + "network":"193.187.176.128\/25", + "version":49212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.176.128", + "prefixLen":25, + "network":"193.187.176.128\/25", + "version":49212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.177.0", + "prefixLen":25, + "network":"193.187.177.0\/25", + "version":49211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.177.0", + "prefixLen":25, + "network":"193.187.177.0\/25", + "version":49211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.177.128", + "prefixLen":25, + "network":"193.187.177.128\/25", + "version":49210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.177.128", + "prefixLen":25, + "network":"193.187.177.128\/25", + "version":49210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.178.0", + "prefixLen":25, + "network":"193.187.178.0\/25", + "version":49209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.178.0", + "prefixLen":25, + "network":"193.187.178.0\/25", + "version":49209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.178.128", + "prefixLen":25, + "network":"193.187.178.128\/25", + "version":49208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.178.128", + "prefixLen":25, + "network":"193.187.178.128\/25", + "version":49208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.179.0", + "prefixLen":25, + "network":"193.187.179.0\/25", + "version":49207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.179.0", + "prefixLen":25, + "network":"193.187.179.0\/25", + "version":49207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.179.128", + "prefixLen":25, + "network":"193.187.179.128\/25", + "version":49206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.179.128", + "prefixLen":25, + "network":"193.187.179.128\/25", + "version":49206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.192.0", + "prefixLen":25, + "network":"193.187.192.0\/25", + "version":49205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.192.0", + "prefixLen":25, + "network":"193.187.192.0\/25", + "version":49205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.192.128", + "prefixLen":25, + "network":"193.187.192.128\/25", + "version":49204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.192.128", + "prefixLen":25, + "network":"193.187.192.128\/25", + "version":49204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.193.0", + "prefixLen":25, + "network":"193.187.193.0\/25", + "version":49203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.193.0", + "prefixLen":25, + "network":"193.187.193.0\/25", + "version":49203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.193.128", + "prefixLen":25, + "network":"193.187.193.128\/25", + "version":49202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.193.128", + "prefixLen":25, + "network":"193.187.193.128\/25", + "version":49202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.194.0", + "prefixLen":25, + "network":"193.187.194.0\/25", + "version":49201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.194.0", + "prefixLen":25, + "network":"193.187.194.0\/25", + "version":49201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.194.128", + "prefixLen":25, + "network":"193.187.194.128\/25", + "version":49200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.194.128", + "prefixLen":25, + "network":"193.187.194.128\/25", + "version":49200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.195.0", + "prefixLen":25, + "network":"193.187.195.0\/25", + "version":49199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.195.0", + "prefixLen":25, + "network":"193.187.195.0\/25", + "version":49199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.195.128", + "prefixLen":25, + "network":"193.187.195.128\/25", + "version":49198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.195.128", + "prefixLen":25, + "network":"193.187.195.128\/25", + "version":49198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.208.0", + "prefixLen":25, + "network":"193.187.208.0\/25", + "version":49197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.208.0", + "prefixLen":25, + "network":"193.187.208.0\/25", + "version":49197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.208.128", + "prefixLen":25, + "network":"193.187.208.128\/25", + "version":49196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.208.128", + "prefixLen":25, + "network":"193.187.208.128\/25", + "version":49196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.209.0", + "prefixLen":25, + "network":"193.187.209.0\/25", + "version":49195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.209.0", + "prefixLen":25, + "network":"193.187.209.0\/25", + "version":49195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.209.128", + "prefixLen":25, + "network":"193.187.209.128\/25", + "version":49194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.209.128", + "prefixLen":25, + "network":"193.187.209.128\/25", + "version":49194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.210.0", + "prefixLen":25, + "network":"193.187.210.0\/25", + "version":49193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.210.0", + "prefixLen":25, + "network":"193.187.210.0\/25", + "version":49193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.210.128", + "prefixLen":25, + "network":"193.187.210.128\/25", + "version":49192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.210.128", + "prefixLen":25, + "network":"193.187.210.128\/25", + "version":49192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.211.0", + "prefixLen":25, + "network":"193.187.211.0\/25", + "version":49191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.211.0", + "prefixLen":25, + "network":"193.187.211.0\/25", + "version":49191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.211.128", + "prefixLen":25, + "network":"193.187.211.128\/25", + "version":49190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.211.128", + "prefixLen":25, + "network":"193.187.211.128\/25", + "version":49190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.224.0", + "prefixLen":25, + "network":"193.187.224.0\/25", + "version":49189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.224.0", + "prefixLen":25, + "network":"193.187.224.0\/25", + "version":49189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.224.128", + "prefixLen":25, + "network":"193.187.224.128\/25", + "version":49188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.224.128", + "prefixLen":25, + "network":"193.187.224.128\/25", + "version":49188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.225.0", + "prefixLen":25, + "network":"193.187.225.0\/25", + "version":49187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.225.0", + "prefixLen":25, + "network":"193.187.225.0\/25", + "version":49187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.225.128", + "prefixLen":25, + "network":"193.187.225.128\/25", + "version":49186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.225.128", + "prefixLen":25, + "network":"193.187.225.128\/25", + "version":49186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.226.0", + "prefixLen":25, + "network":"193.187.226.0\/25", + "version":49185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.226.0", + "prefixLen":25, + "network":"193.187.226.0\/25", + "version":49185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.226.128", + "prefixLen":25, + "network":"193.187.226.128\/25", + "version":49184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.226.128", + "prefixLen":25, + "network":"193.187.226.128\/25", + "version":49184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.227.0", + "prefixLen":25, + "network":"193.187.227.0\/25", + "version":49183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.227.0", + "prefixLen":25, + "network":"193.187.227.0\/25", + "version":49183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.227.128", + "prefixLen":25, + "network":"193.187.227.128\/25", + "version":49182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.227.128", + "prefixLen":25, + "network":"193.187.227.128\/25", + "version":49182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.240.0", + "prefixLen":25, + "network":"193.187.240.0\/25", + "version":49181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.240.0", + "prefixLen":25, + "network":"193.187.240.0\/25", + "version":49181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.240.128", + "prefixLen":25, + "network":"193.187.240.128\/25", + "version":49180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.240.128", + "prefixLen":25, + "network":"193.187.240.128\/25", + "version":49180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.241.0", + "prefixLen":25, + "network":"193.187.241.0\/25", + "version":49179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.241.0", + "prefixLen":25, + "network":"193.187.241.0\/25", + "version":49179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.241.128", + "prefixLen":25, + "network":"193.187.241.128\/25", + "version":49178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.241.128", + "prefixLen":25, + "network":"193.187.241.128\/25", + "version":49178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.242.0", + "prefixLen":25, + "network":"193.187.242.0\/25", + "version":49177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.242.0", + "prefixLen":25, + "network":"193.187.242.0\/25", + "version":49177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.242.128", + "prefixLen":25, + "network":"193.187.242.128\/25", + "version":49176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.242.128", + "prefixLen":25, + "network":"193.187.242.128\/25", + "version":49176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.243.0", + "prefixLen":25, + "network":"193.187.243.0\/25", + "version":49175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.243.0", + "prefixLen":25, + "network":"193.187.243.0\/25", + "version":49175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.187.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.187.243.128", + "prefixLen":25, + "network":"193.187.243.128\/25", + "version":49174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.187.243.128", + "prefixLen":25, + "network":"193.187.243.128\/25", + "version":49174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64875 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.0.0", + "prefixLen":25, + "network":"193.188.0.0\/25", + "version":49301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.0.0", + "prefixLen":25, + "network":"193.188.0.0\/25", + "version":49301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.0.128", + "prefixLen":25, + "network":"193.188.0.128\/25", + "version":49428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.0.128", + "prefixLen":25, + "network":"193.188.0.128\/25", + "version":49428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.1.0", + "prefixLen":25, + "network":"193.188.1.0\/25", + "version":49427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.1.0", + "prefixLen":25, + "network":"193.188.1.0\/25", + "version":49427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.1.128", + "prefixLen":25, + "network":"193.188.1.128\/25", + "version":49426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.1.128", + "prefixLen":25, + "network":"193.188.1.128\/25", + "version":49426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.2.0", + "prefixLen":25, + "network":"193.188.2.0\/25", + "version":49425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.2.0", + "prefixLen":25, + "network":"193.188.2.0\/25", + "version":49425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.2.128", + "prefixLen":25, + "network":"193.188.2.128\/25", + "version":49424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.2.128", + "prefixLen":25, + "network":"193.188.2.128\/25", + "version":49424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.3.0", + "prefixLen":25, + "network":"193.188.3.0\/25", + "version":49423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.3.0", + "prefixLen":25, + "network":"193.188.3.0\/25", + "version":49423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.3.128", + "prefixLen":25, + "network":"193.188.3.128\/25", + "version":49422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.3.128", + "prefixLen":25, + "network":"193.188.3.128\/25", + "version":49422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.16.0", + "prefixLen":25, + "network":"193.188.16.0\/25", + "version":49421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.16.0", + "prefixLen":25, + "network":"193.188.16.0\/25", + "version":49421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.16.128", + "prefixLen":25, + "network":"193.188.16.128\/25", + "version":49420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.16.128", + "prefixLen":25, + "network":"193.188.16.128\/25", + "version":49420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.17.0", + "prefixLen":25, + "network":"193.188.17.0\/25", + "version":49419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.17.0", + "prefixLen":25, + "network":"193.188.17.0\/25", + "version":49419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.17.128", + "prefixLen":25, + "network":"193.188.17.128\/25", + "version":49418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.17.128", + "prefixLen":25, + "network":"193.188.17.128\/25", + "version":49418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.18.0", + "prefixLen":25, + "network":"193.188.18.0\/25", + "version":49417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.18.0", + "prefixLen":25, + "network":"193.188.18.0\/25", + "version":49417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.18.128", + "prefixLen":25, + "network":"193.188.18.128\/25", + "version":49416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.18.128", + "prefixLen":25, + "network":"193.188.18.128\/25", + "version":49416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.19.0", + "prefixLen":25, + "network":"193.188.19.0\/25", + "version":49415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.19.0", + "prefixLen":25, + "network":"193.188.19.0\/25", + "version":49415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.19.128", + "prefixLen":25, + "network":"193.188.19.128\/25", + "version":49414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.19.128", + "prefixLen":25, + "network":"193.188.19.128\/25", + "version":49414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.32.0", + "prefixLen":25, + "network":"193.188.32.0\/25", + "version":49413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.32.0", + "prefixLen":25, + "network":"193.188.32.0\/25", + "version":49413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.32.128", + "prefixLen":25, + "network":"193.188.32.128\/25", + "version":49412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.32.128", + "prefixLen":25, + "network":"193.188.32.128\/25", + "version":49412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.33.0", + "prefixLen":25, + "network":"193.188.33.0\/25", + "version":49411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.33.0", + "prefixLen":25, + "network":"193.188.33.0\/25", + "version":49411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.33.128", + "prefixLen":25, + "network":"193.188.33.128\/25", + "version":49410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.33.128", + "prefixLen":25, + "network":"193.188.33.128\/25", + "version":49410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.34.0", + "prefixLen":25, + "network":"193.188.34.0\/25", + "version":49409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.34.0", + "prefixLen":25, + "network":"193.188.34.0\/25", + "version":49409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.34.128", + "prefixLen":25, + "network":"193.188.34.128\/25", + "version":49408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.34.128", + "prefixLen":25, + "network":"193.188.34.128\/25", + "version":49408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.35.0", + "prefixLen":25, + "network":"193.188.35.0\/25", + "version":49407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.35.0", + "prefixLen":25, + "network":"193.188.35.0\/25", + "version":49407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.35.128", + "prefixLen":25, + "network":"193.188.35.128\/25", + "version":49406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.35.128", + "prefixLen":25, + "network":"193.188.35.128\/25", + "version":49406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.48.0", + "prefixLen":25, + "network":"193.188.48.0\/25", + "version":49405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.48.0", + "prefixLen":25, + "network":"193.188.48.0\/25", + "version":49405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.48.128", + "prefixLen":25, + "network":"193.188.48.128\/25", + "version":49404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.48.128", + "prefixLen":25, + "network":"193.188.48.128\/25", + "version":49404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.49.0", + "prefixLen":25, + "network":"193.188.49.0\/25", + "version":49403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.49.0", + "prefixLen":25, + "network":"193.188.49.0\/25", + "version":49403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.49.128", + "prefixLen":25, + "network":"193.188.49.128\/25", + "version":49402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.49.128", + "prefixLen":25, + "network":"193.188.49.128\/25", + "version":49402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.50.0", + "prefixLen":25, + "network":"193.188.50.0\/25", + "version":49401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.50.0", + "prefixLen":25, + "network":"193.188.50.0\/25", + "version":49401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.50.128", + "prefixLen":25, + "network":"193.188.50.128\/25", + "version":49400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.50.128", + "prefixLen":25, + "network":"193.188.50.128\/25", + "version":49400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.51.0", + "prefixLen":25, + "network":"193.188.51.0\/25", + "version":49399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.51.0", + "prefixLen":25, + "network":"193.188.51.0\/25", + "version":49399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.51.128", + "prefixLen":25, + "network":"193.188.51.128\/25", + "version":49398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.51.128", + "prefixLen":25, + "network":"193.188.51.128\/25", + "version":49398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.64.0", + "prefixLen":25, + "network":"193.188.64.0\/25", + "version":49397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.64.0", + "prefixLen":25, + "network":"193.188.64.0\/25", + "version":49397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.64.128", + "prefixLen":25, + "network":"193.188.64.128\/25", + "version":49396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.64.128", + "prefixLen":25, + "network":"193.188.64.128\/25", + "version":49396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.65.0", + "prefixLen":25, + "network":"193.188.65.0\/25", + "version":49395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.65.0", + "prefixLen":25, + "network":"193.188.65.0\/25", + "version":49395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.65.128", + "prefixLen":25, + "network":"193.188.65.128\/25", + "version":49394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.65.128", + "prefixLen":25, + "network":"193.188.65.128\/25", + "version":49394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.66.0", + "prefixLen":25, + "network":"193.188.66.0\/25", + "version":49393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.66.0", + "prefixLen":25, + "network":"193.188.66.0\/25", + "version":49393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.66.128", + "prefixLen":25, + "network":"193.188.66.128\/25", + "version":49392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.66.128", + "prefixLen":25, + "network":"193.188.66.128\/25", + "version":49392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.67.0", + "prefixLen":25, + "network":"193.188.67.0\/25", + "version":49391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.67.0", + "prefixLen":25, + "network":"193.188.67.0\/25", + "version":49391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.67.128", + "prefixLen":25, + "network":"193.188.67.128\/25", + "version":49390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.67.128", + "prefixLen":25, + "network":"193.188.67.128\/25", + "version":49390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.80.0", + "prefixLen":25, + "network":"193.188.80.0\/25", + "version":49389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.80.0", + "prefixLen":25, + "network":"193.188.80.0\/25", + "version":49389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.80.128", + "prefixLen":25, + "network":"193.188.80.128\/25", + "version":49388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.80.128", + "prefixLen":25, + "network":"193.188.80.128\/25", + "version":49388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.81.0", + "prefixLen":25, + "network":"193.188.81.0\/25", + "version":49387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.81.0", + "prefixLen":25, + "network":"193.188.81.0\/25", + "version":49387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.81.128", + "prefixLen":25, + "network":"193.188.81.128\/25", + "version":49386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.81.128", + "prefixLen":25, + "network":"193.188.81.128\/25", + "version":49386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.82.0", + "prefixLen":25, + "network":"193.188.82.0\/25", + "version":49385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.82.0", + "prefixLen":25, + "network":"193.188.82.0\/25", + "version":49385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.82.128", + "prefixLen":25, + "network":"193.188.82.128\/25", + "version":49384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.82.128", + "prefixLen":25, + "network":"193.188.82.128\/25", + "version":49384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.83.0", + "prefixLen":25, + "network":"193.188.83.0\/25", + "version":49383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.83.0", + "prefixLen":25, + "network":"193.188.83.0\/25", + "version":49383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.83.128", + "prefixLen":25, + "network":"193.188.83.128\/25", + "version":49382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.83.128", + "prefixLen":25, + "network":"193.188.83.128\/25", + "version":49382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.96.0", + "prefixLen":25, + "network":"193.188.96.0\/25", + "version":49381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.96.0", + "prefixLen":25, + "network":"193.188.96.0\/25", + "version":49381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.96.128", + "prefixLen":25, + "network":"193.188.96.128\/25", + "version":49380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.96.128", + "prefixLen":25, + "network":"193.188.96.128\/25", + "version":49380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.97.0", + "prefixLen":25, + "network":"193.188.97.0\/25", + "version":49379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.97.0", + "prefixLen":25, + "network":"193.188.97.0\/25", + "version":49379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.97.128", + "prefixLen":25, + "network":"193.188.97.128\/25", + "version":49378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.97.128", + "prefixLen":25, + "network":"193.188.97.128\/25", + "version":49378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.98.0", + "prefixLen":25, + "network":"193.188.98.0\/25", + "version":49377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.98.0", + "prefixLen":25, + "network":"193.188.98.0\/25", + "version":49377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.98.128", + "prefixLen":25, + "network":"193.188.98.128\/25", + "version":49376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.98.128", + "prefixLen":25, + "network":"193.188.98.128\/25", + "version":49376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.99.0", + "prefixLen":25, + "network":"193.188.99.0\/25", + "version":49375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.99.0", + "prefixLen":25, + "network":"193.188.99.0\/25", + "version":49375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.99.128", + "prefixLen":25, + "network":"193.188.99.128\/25", + "version":49374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.99.128", + "prefixLen":25, + "network":"193.188.99.128\/25", + "version":49374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.112.0", + "prefixLen":25, + "network":"193.188.112.0\/25", + "version":49373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.112.0", + "prefixLen":25, + "network":"193.188.112.0\/25", + "version":49373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.112.128", + "prefixLen":25, + "network":"193.188.112.128\/25", + "version":49372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.112.128", + "prefixLen":25, + "network":"193.188.112.128\/25", + "version":49372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.113.0", + "prefixLen":25, + "network":"193.188.113.0\/25", + "version":49371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.113.0", + "prefixLen":25, + "network":"193.188.113.0\/25", + "version":49371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.113.128", + "prefixLen":25, + "network":"193.188.113.128\/25", + "version":49370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.113.128", + "prefixLen":25, + "network":"193.188.113.128\/25", + "version":49370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.114.0", + "prefixLen":25, + "network":"193.188.114.0\/25", + "version":49369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.114.0", + "prefixLen":25, + "network":"193.188.114.0\/25", + "version":49369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.114.128", + "prefixLen":25, + "network":"193.188.114.128\/25", + "version":49368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.114.128", + "prefixLen":25, + "network":"193.188.114.128\/25", + "version":49368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.115.0", + "prefixLen":25, + "network":"193.188.115.0\/25", + "version":49367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.115.0", + "prefixLen":25, + "network":"193.188.115.0\/25", + "version":49367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.115.128", + "prefixLen":25, + "network":"193.188.115.128\/25", + "version":49366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.115.128", + "prefixLen":25, + "network":"193.188.115.128\/25", + "version":49366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.128.0", + "prefixLen":25, + "network":"193.188.128.0\/25", + "version":49365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.128.0", + "prefixLen":25, + "network":"193.188.128.0\/25", + "version":49365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.128.128", + "prefixLen":25, + "network":"193.188.128.128\/25", + "version":49364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.128.128", + "prefixLen":25, + "network":"193.188.128.128\/25", + "version":49364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.129.0", + "prefixLen":25, + "network":"193.188.129.0\/25", + "version":49363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.129.0", + "prefixLen":25, + "network":"193.188.129.0\/25", + "version":49363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.129.128", + "prefixLen":25, + "network":"193.188.129.128\/25", + "version":49362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.129.128", + "prefixLen":25, + "network":"193.188.129.128\/25", + "version":49362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.130.0", + "prefixLen":25, + "network":"193.188.130.0\/25", + "version":49361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.130.0", + "prefixLen":25, + "network":"193.188.130.0\/25", + "version":49361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.130.128", + "prefixLen":25, + "network":"193.188.130.128\/25", + "version":49360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.130.128", + "prefixLen":25, + "network":"193.188.130.128\/25", + "version":49360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.131.0", + "prefixLen":25, + "network":"193.188.131.0\/25", + "version":49359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.131.0", + "prefixLen":25, + "network":"193.188.131.0\/25", + "version":49359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.131.128", + "prefixLen":25, + "network":"193.188.131.128\/25", + "version":49358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.131.128", + "prefixLen":25, + "network":"193.188.131.128\/25", + "version":49358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.144.0", + "prefixLen":25, + "network":"193.188.144.0\/25", + "version":49357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.144.0", + "prefixLen":25, + "network":"193.188.144.0\/25", + "version":49357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.144.128", + "prefixLen":25, + "network":"193.188.144.128\/25", + "version":49356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.144.128", + "prefixLen":25, + "network":"193.188.144.128\/25", + "version":49356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.145.0", + "prefixLen":25, + "network":"193.188.145.0\/25", + "version":49355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.145.0", + "prefixLen":25, + "network":"193.188.145.0\/25", + "version":49355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.145.128", + "prefixLen":25, + "network":"193.188.145.128\/25", + "version":49354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.145.128", + "prefixLen":25, + "network":"193.188.145.128\/25", + "version":49354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.146.0", + "prefixLen":25, + "network":"193.188.146.0\/25", + "version":49353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.146.0", + "prefixLen":25, + "network":"193.188.146.0\/25", + "version":49353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.146.128", + "prefixLen":25, + "network":"193.188.146.128\/25", + "version":49352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.146.128", + "prefixLen":25, + "network":"193.188.146.128\/25", + "version":49352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.147.0", + "prefixLen":25, + "network":"193.188.147.0\/25", + "version":49351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.147.0", + "prefixLen":25, + "network":"193.188.147.0\/25", + "version":49351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.147.128", + "prefixLen":25, + "network":"193.188.147.128\/25", + "version":49350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.147.128", + "prefixLen":25, + "network":"193.188.147.128\/25", + "version":49350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.160.0", + "prefixLen":25, + "network":"193.188.160.0\/25", + "version":49349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.160.0", + "prefixLen":25, + "network":"193.188.160.0\/25", + "version":49349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.160.128", + "prefixLen":25, + "network":"193.188.160.128\/25", + "version":49348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.160.128", + "prefixLen":25, + "network":"193.188.160.128\/25", + "version":49348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.161.0", + "prefixLen":25, + "network":"193.188.161.0\/25", + "version":49347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.161.0", + "prefixLen":25, + "network":"193.188.161.0\/25", + "version":49347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.161.128", + "prefixLen":25, + "network":"193.188.161.128\/25", + "version":49346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.161.128", + "prefixLen":25, + "network":"193.188.161.128\/25", + "version":49346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.162.0", + "prefixLen":25, + "network":"193.188.162.0\/25", + "version":49345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.162.0", + "prefixLen":25, + "network":"193.188.162.0\/25", + "version":49345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.162.128", + "prefixLen":25, + "network":"193.188.162.128\/25", + "version":49344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.162.128", + "prefixLen":25, + "network":"193.188.162.128\/25", + "version":49344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.163.0", + "prefixLen":25, + "network":"193.188.163.0\/25", + "version":49343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.163.0", + "prefixLen":25, + "network":"193.188.163.0\/25", + "version":49343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.163.128", + "prefixLen":25, + "network":"193.188.163.128\/25", + "version":49342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.163.128", + "prefixLen":25, + "network":"193.188.163.128\/25", + "version":49342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.176.0", + "prefixLen":25, + "network":"193.188.176.0\/25", + "version":49341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.176.0", + "prefixLen":25, + "network":"193.188.176.0\/25", + "version":49341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.176.128", + "prefixLen":25, + "network":"193.188.176.128\/25", + "version":49340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.176.128", + "prefixLen":25, + "network":"193.188.176.128\/25", + "version":49340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.177.0", + "prefixLen":25, + "network":"193.188.177.0\/25", + "version":49339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.177.0", + "prefixLen":25, + "network":"193.188.177.0\/25", + "version":49339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.177.128", + "prefixLen":25, + "network":"193.188.177.128\/25", + "version":49338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.177.128", + "prefixLen":25, + "network":"193.188.177.128\/25", + "version":49338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.178.0", + "prefixLen":25, + "network":"193.188.178.0\/25", + "version":49337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.178.0", + "prefixLen":25, + "network":"193.188.178.0\/25", + "version":49337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.178.128", + "prefixLen":25, + "network":"193.188.178.128\/25", + "version":49336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.178.128", + "prefixLen":25, + "network":"193.188.178.128\/25", + "version":49336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.179.0", + "prefixLen":25, + "network":"193.188.179.0\/25", + "version":49335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.179.0", + "prefixLen":25, + "network":"193.188.179.0\/25", + "version":49335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.179.128", + "prefixLen":25, + "network":"193.188.179.128\/25", + "version":49334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.179.128", + "prefixLen":25, + "network":"193.188.179.128\/25", + "version":49334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.192.0", + "prefixLen":25, + "network":"193.188.192.0\/25", + "version":49333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.192.0", + "prefixLen":25, + "network":"193.188.192.0\/25", + "version":49333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.192.128", + "prefixLen":25, + "network":"193.188.192.128\/25", + "version":49332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.192.128", + "prefixLen":25, + "network":"193.188.192.128\/25", + "version":49332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.193.0", + "prefixLen":25, + "network":"193.188.193.0\/25", + "version":49331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.193.0", + "prefixLen":25, + "network":"193.188.193.0\/25", + "version":49331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.193.128", + "prefixLen":25, + "network":"193.188.193.128\/25", + "version":49330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.193.128", + "prefixLen":25, + "network":"193.188.193.128\/25", + "version":49330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.194.0", + "prefixLen":25, + "network":"193.188.194.0\/25", + "version":49329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.194.0", + "prefixLen":25, + "network":"193.188.194.0\/25", + "version":49329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.194.128", + "prefixLen":25, + "network":"193.188.194.128\/25", + "version":49328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.194.128", + "prefixLen":25, + "network":"193.188.194.128\/25", + "version":49328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.195.0", + "prefixLen":25, + "network":"193.188.195.0\/25", + "version":49327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.195.0", + "prefixLen":25, + "network":"193.188.195.0\/25", + "version":49327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.195.128", + "prefixLen":25, + "network":"193.188.195.128\/25", + "version":49326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.195.128", + "prefixLen":25, + "network":"193.188.195.128\/25", + "version":49326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.208.0", + "prefixLen":25, + "network":"193.188.208.0\/25", + "version":49325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.208.0", + "prefixLen":25, + "network":"193.188.208.0\/25", + "version":49325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.208.128", + "prefixLen":25, + "network":"193.188.208.128\/25", + "version":49324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.208.128", + "prefixLen":25, + "network":"193.188.208.128\/25", + "version":49324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.209.0", + "prefixLen":25, + "network":"193.188.209.0\/25", + "version":49323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.209.0", + "prefixLen":25, + "network":"193.188.209.0\/25", + "version":49323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.209.128", + "prefixLen":25, + "network":"193.188.209.128\/25", + "version":49322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.209.128", + "prefixLen":25, + "network":"193.188.209.128\/25", + "version":49322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.210.0", + "prefixLen":25, + "network":"193.188.210.0\/25", + "version":49321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.210.0", + "prefixLen":25, + "network":"193.188.210.0\/25", + "version":49321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.210.128", + "prefixLen":25, + "network":"193.188.210.128\/25", + "version":49320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.210.128", + "prefixLen":25, + "network":"193.188.210.128\/25", + "version":49320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.211.0", + "prefixLen":25, + "network":"193.188.211.0\/25", + "version":49319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.211.0", + "prefixLen":25, + "network":"193.188.211.0\/25", + "version":49319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.211.128", + "prefixLen":25, + "network":"193.188.211.128\/25", + "version":49318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.211.128", + "prefixLen":25, + "network":"193.188.211.128\/25", + "version":49318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.224.0", + "prefixLen":25, + "network":"193.188.224.0\/25", + "version":49317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.224.0", + "prefixLen":25, + "network":"193.188.224.0\/25", + "version":49317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.224.128", + "prefixLen":25, + "network":"193.188.224.128\/25", + "version":49316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.224.128", + "prefixLen":25, + "network":"193.188.224.128\/25", + "version":49316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.225.0", + "prefixLen":25, + "network":"193.188.225.0\/25", + "version":49315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.225.0", + "prefixLen":25, + "network":"193.188.225.0\/25", + "version":49315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.225.128", + "prefixLen":25, + "network":"193.188.225.128\/25", + "version":49314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.225.128", + "prefixLen":25, + "network":"193.188.225.128\/25", + "version":49314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.226.0", + "prefixLen":25, + "network":"193.188.226.0\/25", + "version":49313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.226.0", + "prefixLen":25, + "network":"193.188.226.0\/25", + "version":49313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.226.128", + "prefixLen":25, + "network":"193.188.226.128\/25", + "version":49312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.226.128", + "prefixLen":25, + "network":"193.188.226.128\/25", + "version":49312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.227.0", + "prefixLen":25, + "network":"193.188.227.0\/25", + "version":49311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.227.0", + "prefixLen":25, + "network":"193.188.227.0\/25", + "version":49311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.227.128", + "prefixLen":25, + "network":"193.188.227.128\/25", + "version":49310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.227.128", + "prefixLen":25, + "network":"193.188.227.128\/25", + "version":49310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.240.0", + "prefixLen":25, + "network":"193.188.240.0\/25", + "version":49309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.240.0", + "prefixLen":25, + "network":"193.188.240.0\/25", + "version":49309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.240.128", + "prefixLen":25, + "network":"193.188.240.128\/25", + "version":49308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.240.128", + "prefixLen":25, + "network":"193.188.240.128\/25", + "version":49308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.241.0", + "prefixLen":25, + "network":"193.188.241.0\/25", + "version":49307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.241.0", + "prefixLen":25, + "network":"193.188.241.0\/25", + "version":49307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.241.128", + "prefixLen":25, + "network":"193.188.241.128\/25", + "version":49306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.241.128", + "prefixLen":25, + "network":"193.188.241.128\/25", + "version":49306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.242.0", + "prefixLen":25, + "network":"193.188.242.0\/25", + "version":49305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.242.0", + "prefixLen":25, + "network":"193.188.242.0\/25", + "version":49305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.242.128", + "prefixLen":25, + "network":"193.188.242.128\/25", + "version":49304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.242.128", + "prefixLen":25, + "network":"193.188.242.128\/25", + "version":49304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.243.0", + "prefixLen":25, + "network":"193.188.243.0\/25", + "version":49303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.243.0", + "prefixLen":25, + "network":"193.188.243.0\/25", + "version":49303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.188.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.188.243.128", + "prefixLen":25, + "network":"193.188.243.128\/25", + "version":49302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.188.243.128", + "prefixLen":25, + "network":"193.188.243.128\/25", + "version":49302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64876 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.0.0", + "prefixLen":25, + "network":"193.189.0.0\/25", + "version":50709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.0.0", + "prefixLen":25, + "network":"193.189.0.0\/25", + "version":50709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.0.128", + "prefixLen":25, + "network":"193.189.0.128\/25", + "version":50836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.0.128", + "prefixLen":25, + "network":"193.189.0.128\/25", + "version":50836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.1.0", + "prefixLen":25, + "network":"193.189.1.0\/25", + "version":50835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.1.0", + "prefixLen":25, + "network":"193.189.1.0\/25", + "version":50835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.1.128", + "prefixLen":25, + "network":"193.189.1.128\/25", + "version":50834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.1.128", + "prefixLen":25, + "network":"193.189.1.128\/25", + "version":50834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.2.0", + "prefixLen":25, + "network":"193.189.2.0\/25", + "version":50833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.2.0", + "prefixLen":25, + "network":"193.189.2.0\/25", + "version":50833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.2.128", + "prefixLen":25, + "network":"193.189.2.128\/25", + "version":50832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.2.128", + "prefixLen":25, + "network":"193.189.2.128\/25", + "version":50832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.3.0", + "prefixLen":25, + "network":"193.189.3.0\/25", + "version":50831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.3.0", + "prefixLen":25, + "network":"193.189.3.0\/25", + "version":50831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.3.128", + "prefixLen":25, + "network":"193.189.3.128\/25", + "version":50830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.3.128", + "prefixLen":25, + "network":"193.189.3.128\/25", + "version":50830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.16.0", + "prefixLen":25, + "network":"193.189.16.0\/25", + "version":50829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.16.0", + "prefixLen":25, + "network":"193.189.16.0\/25", + "version":50829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.16.128", + "prefixLen":25, + "network":"193.189.16.128\/25", + "version":50828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.16.128", + "prefixLen":25, + "network":"193.189.16.128\/25", + "version":50828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.17.0", + "prefixLen":25, + "network":"193.189.17.0\/25", + "version":50827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.17.0", + "prefixLen":25, + "network":"193.189.17.0\/25", + "version":50827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.17.128", + "prefixLen":25, + "network":"193.189.17.128\/25", + "version":50826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.17.128", + "prefixLen":25, + "network":"193.189.17.128\/25", + "version":50826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.18.0", + "prefixLen":25, + "network":"193.189.18.0\/25", + "version":50825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.18.0", + "prefixLen":25, + "network":"193.189.18.0\/25", + "version":50825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.18.128", + "prefixLen":25, + "network":"193.189.18.128\/25", + "version":50824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.18.128", + "prefixLen":25, + "network":"193.189.18.128\/25", + "version":50824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.19.0", + "prefixLen":25, + "network":"193.189.19.0\/25", + "version":50823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.19.0", + "prefixLen":25, + "network":"193.189.19.0\/25", + "version":50823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.19.128", + "prefixLen":25, + "network":"193.189.19.128\/25", + "version":50822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.19.128", + "prefixLen":25, + "network":"193.189.19.128\/25", + "version":50822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.32.0", + "prefixLen":25, + "network":"193.189.32.0\/25", + "version":50821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.32.0", + "prefixLen":25, + "network":"193.189.32.0\/25", + "version":50821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.32.128", + "prefixLen":25, + "network":"193.189.32.128\/25", + "version":50820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.32.128", + "prefixLen":25, + "network":"193.189.32.128\/25", + "version":50820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.33.0", + "prefixLen":25, + "network":"193.189.33.0\/25", + "version":50819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.33.0", + "prefixLen":25, + "network":"193.189.33.0\/25", + "version":50819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.33.128", + "prefixLen":25, + "network":"193.189.33.128\/25", + "version":50818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.33.128", + "prefixLen":25, + "network":"193.189.33.128\/25", + "version":50818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.34.0", + "prefixLen":25, + "network":"193.189.34.0\/25", + "version":50817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.34.0", + "prefixLen":25, + "network":"193.189.34.0\/25", + "version":50817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.34.128", + "prefixLen":25, + "network":"193.189.34.128\/25", + "version":50816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.34.128", + "prefixLen":25, + "network":"193.189.34.128\/25", + "version":50816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.35.0", + "prefixLen":25, + "network":"193.189.35.0\/25", + "version":50815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.35.0", + "prefixLen":25, + "network":"193.189.35.0\/25", + "version":50815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.35.128", + "prefixLen":25, + "network":"193.189.35.128\/25", + "version":50814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.35.128", + "prefixLen":25, + "network":"193.189.35.128\/25", + "version":50814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.48.0", + "prefixLen":25, + "network":"193.189.48.0\/25", + "version":50813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.48.0", + "prefixLen":25, + "network":"193.189.48.0\/25", + "version":50813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.48.128", + "prefixLen":25, + "network":"193.189.48.128\/25", + "version":50812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.48.128", + "prefixLen":25, + "network":"193.189.48.128\/25", + "version":50812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.49.0", + "prefixLen":25, + "network":"193.189.49.0\/25", + "version":50811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.49.0", + "prefixLen":25, + "network":"193.189.49.0\/25", + "version":50811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.49.128", + "prefixLen":25, + "network":"193.189.49.128\/25", + "version":50810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.49.128", + "prefixLen":25, + "network":"193.189.49.128\/25", + "version":50810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.50.0", + "prefixLen":25, + "network":"193.189.50.0\/25", + "version":50809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.50.0", + "prefixLen":25, + "network":"193.189.50.0\/25", + "version":50809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.50.128", + "prefixLen":25, + "network":"193.189.50.128\/25", + "version":50808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.50.128", + "prefixLen":25, + "network":"193.189.50.128\/25", + "version":50808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.51.0", + "prefixLen":25, + "network":"193.189.51.0\/25", + "version":50807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.51.0", + "prefixLen":25, + "network":"193.189.51.0\/25", + "version":50807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.51.128", + "prefixLen":25, + "network":"193.189.51.128\/25", + "version":50806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.51.128", + "prefixLen":25, + "network":"193.189.51.128\/25", + "version":50806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.64.0", + "prefixLen":25, + "network":"193.189.64.0\/25", + "version":50805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.64.0", + "prefixLen":25, + "network":"193.189.64.0\/25", + "version":50805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.64.128", + "prefixLen":25, + "network":"193.189.64.128\/25", + "version":50804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.64.128", + "prefixLen":25, + "network":"193.189.64.128\/25", + "version":50804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.65.0", + "prefixLen":25, + "network":"193.189.65.0\/25", + "version":50803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.65.0", + "prefixLen":25, + "network":"193.189.65.0\/25", + "version":50803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.65.128", + "prefixLen":25, + "network":"193.189.65.128\/25", + "version":50802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.65.128", + "prefixLen":25, + "network":"193.189.65.128\/25", + "version":50802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.66.0", + "prefixLen":25, + "network":"193.189.66.0\/25", + "version":50801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.66.0", + "prefixLen":25, + "network":"193.189.66.0\/25", + "version":50801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.66.128", + "prefixLen":25, + "network":"193.189.66.128\/25", + "version":50800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.66.128", + "prefixLen":25, + "network":"193.189.66.128\/25", + "version":50800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.67.0", + "prefixLen":25, + "network":"193.189.67.0\/25", + "version":50799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.67.0", + "prefixLen":25, + "network":"193.189.67.0\/25", + "version":50799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.67.128", + "prefixLen":25, + "network":"193.189.67.128\/25", + "version":50798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.67.128", + "prefixLen":25, + "network":"193.189.67.128\/25", + "version":50798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.80.0", + "prefixLen":25, + "network":"193.189.80.0\/25", + "version":50797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.80.0", + "prefixLen":25, + "network":"193.189.80.0\/25", + "version":50797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.80.128", + "prefixLen":25, + "network":"193.189.80.128\/25", + "version":50796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.80.128", + "prefixLen":25, + "network":"193.189.80.128\/25", + "version":50796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.81.0", + "prefixLen":25, + "network":"193.189.81.0\/25", + "version":50795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.81.0", + "prefixLen":25, + "network":"193.189.81.0\/25", + "version":50795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.81.128", + "prefixLen":25, + "network":"193.189.81.128\/25", + "version":50794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.81.128", + "prefixLen":25, + "network":"193.189.81.128\/25", + "version":50794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.82.0", + "prefixLen":25, + "network":"193.189.82.0\/25", + "version":50793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.82.0", + "prefixLen":25, + "network":"193.189.82.0\/25", + "version":50793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.82.128", + "prefixLen":25, + "network":"193.189.82.128\/25", + "version":50792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.82.128", + "prefixLen":25, + "network":"193.189.82.128\/25", + "version":50792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.83.0", + "prefixLen":25, + "network":"193.189.83.0\/25", + "version":50791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.83.0", + "prefixLen":25, + "network":"193.189.83.0\/25", + "version":50791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.83.128", + "prefixLen":25, + "network":"193.189.83.128\/25", + "version":50790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.83.128", + "prefixLen":25, + "network":"193.189.83.128\/25", + "version":50790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.96.0", + "prefixLen":25, + "network":"193.189.96.0\/25", + "version":50789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.96.0", + "prefixLen":25, + "network":"193.189.96.0\/25", + "version":50789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.96.128", + "prefixLen":25, + "network":"193.189.96.128\/25", + "version":50788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.96.128", + "prefixLen":25, + "network":"193.189.96.128\/25", + "version":50788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.97.0", + "prefixLen":25, + "network":"193.189.97.0\/25", + "version":50787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.97.0", + "prefixLen":25, + "network":"193.189.97.0\/25", + "version":50787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.97.128", + "prefixLen":25, + "network":"193.189.97.128\/25", + "version":50786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.97.128", + "prefixLen":25, + "network":"193.189.97.128\/25", + "version":50786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.98.0", + "prefixLen":25, + "network":"193.189.98.0\/25", + "version":50785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.98.0", + "prefixLen":25, + "network":"193.189.98.0\/25", + "version":50785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.98.128", + "prefixLen":25, + "network":"193.189.98.128\/25", + "version":50784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.98.128", + "prefixLen":25, + "network":"193.189.98.128\/25", + "version":50784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.99.0", + "prefixLen":25, + "network":"193.189.99.0\/25", + "version":50783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.99.0", + "prefixLen":25, + "network":"193.189.99.0\/25", + "version":50783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.99.128", + "prefixLen":25, + "network":"193.189.99.128\/25", + "version":50782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.99.128", + "prefixLen":25, + "network":"193.189.99.128\/25", + "version":50782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.112.0", + "prefixLen":25, + "network":"193.189.112.0\/25", + "version":50781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.112.0", + "prefixLen":25, + "network":"193.189.112.0\/25", + "version":50781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.112.128", + "prefixLen":25, + "network":"193.189.112.128\/25", + "version":50780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.112.128", + "prefixLen":25, + "network":"193.189.112.128\/25", + "version":50780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.113.0", + "prefixLen":25, + "network":"193.189.113.0\/25", + "version":50779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.113.0", + "prefixLen":25, + "network":"193.189.113.0\/25", + "version":50779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.113.128", + "prefixLen":25, + "network":"193.189.113.128\/25", + "version":50778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.113.128", + "prefixLen":25, + "network":"193.189.113.128\/25", + "version":50778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.114.0", + "prefixLen":25, + "network":"193.189.114.0\/25", + "version":50777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.114.0", + "prefixLen":25, + "network":"193.189.114.0\/25", + "version":50777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.114.128", + "prefixLen":25, + "network":"193.189.114.128\/25", + "version":50776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.114.128", + "prefixLen":25, + "network":"193.189.114.128\/25", + "version":50776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.115.0", + "prefixLen":25, + "network":"193.189.115.0\/25", + "version":50775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.115.0", + "prefixLen":25, + "network":"193.189.115.0\/25", + "version":50775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.115.128", + "prefixLen":25, + "network":"193.189.115.128\/25", + "version":50774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.115.128", + "prefixLen":25, + "network":"193.189.115.128\/25", + "version":50774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.128.0", + "prefixLen":25, + "network":"193.189.128.0\/25", + "version":50773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.128.0", + "prefixLen":25, + "network":"193.189.128.0\/25", + "version":50773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.128.128", + "prefixLen":25, + "network":"193.189.128.128\/25", + "version":50772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.128.128", + "prefixLen":25, + "network":"193.189.128.128\/25", + "version":50772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.129.0", + "prefixLen":25, + "network":"193.189.129.0\/25", + "version":50771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.129.0", + "prefixLen":25, + "network":"193.189.129.0\/25", + "version":50771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.129.128", + "prefixLen":25, + "network":"193.189.129.128\/25", + "version":50770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.129.128", + "prefixLen":25, + "network":"193.189.129.128\/25", + "version":50770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.130.0", + "prefixLen":25, + "network":"193.189.130.0\/25", + "version":50769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.130.0", + "prefixLen":25, + "network":"193.189.130.0\/25", + "version":50769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.130.128", + "prefixLen":25, + "network":"193.189.130.128\/25", + "version":50768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.130.128", + "prefixLen":25, + "network":"193.189.130.128\/25", + "version":50768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.131.0", + "prefixLen":25, + "network":"193.189.131.0\/25", + "version":50767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.131.0", + "prefixLen":25, + "network":"193.189.131.0\/25", + "version":50767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.131.128", + "prefixLen":25, + "network":"193.189.131.128\/25", + "version":50766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.131.128", + "prefixLen":25, + "network":"193.189.131.128\/25", + "version":50766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.144.0", + "prefixLen":25, + "network":"193.189.144.0\/25", + "version":50765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.144.0", + "prefixLen":25, + "network":"193.189.144.0\/25", + "version":50765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.144.128", + "prefixLen":25, + "network":"193.189.144.128\/25", + "version":50764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.144.128", + "prefixLen":25, + "network":"193.189.144.128\/25", + "version":50764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.145.0", + "prefixLen":25, + "network":"193.189.145.0\/25", + "version":50763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.145.0", + "prefixLen":25, + "network":"193.189.145.0\/25", + "version":50763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.145.128", + "prefixLen":25, + "network":"193.189.145.128\/25", + "version":50762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.145.128", + "prefixLen":25, + "network":"193.189.145.128\/25", + "version":50762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.146.0", + "prefixLen":25, + "network":"193.189.146.0\/25", + "version":50761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.146.0", + "prefixLen":25, + "network":"193.189.146.0\/25", + "version":50761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.146.128", + "prefixLen":25, + "network":"193.189.146.128\/25", + "version":50760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.146.128", + "prefixLen":25, + "network":"193.189.146.128\/25", + "version":50760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.147.0", + "prefixLen":25, + "network":"193.189.147.0\/25", + "version":50759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.147.0", + "prefixLen":25, + "network":"193.189.147.0\/25", + "version":50759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.147.128", + "prefixLen":25, + "network":"193.189.147.128\/25", + "version":50758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.147.128", + "prefixLen":25, + "network":"193.189.147.128\/25", + "version":50758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.160.0", + "prefixLen":25, + "network":"193.189.160.0\/25", + "version":50757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.160.0", + "prefixLen":25, + "network":"193.189.160.0\/25", + "version":50757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.160.128", + "prefixLen":25, + "network":"193.189.160.128\/25", + "version":50756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.160.128", + "prefixLen":25, + "network":"193.189.160.128\/25", + "version":50756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.161.0", + "prefixLen":25, + "network":"193.189.161.0\/25", + "version":50755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.161.0", + "prefixLen":25, + "network":"193.189.161.0\/25", + "version":50755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.161.128", + "prefixLen":25, + "network":"193.189.161.128\/25", + "version":50754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.161.128", + "prefixLen":25, + "network":"193.189.161.128\/25", + "version":50754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.162.0", + "prefixLen":25, + "network":"193.189.162.0\/25", + "version":50753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.162.0", + "prefixLen":25, + "network":"193.189.162.0\/25", + "version":50753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.162.128", + "prefixLen":25, + "network":"193.189.162.128\/25", + "version":50752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.162.128", + "prefixLen":25, + "network":"193.189.162.128\/25", + "version":50752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.163.0", + "prefixLen":25, + "network":"193.189.163.0\/25", + "version":50751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.163.0", + "prefixLen":25, + "network":"193.189.163.0\/25", + "version":50751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.163.128", + "prefixLen":25, + "network":"193.189.163.128\/25", + "version":50750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.163.128", + "prefixLen":25, + "network":"193.189.163.128\/25", + "version":50750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.176.0", + "prefixLen":25, + "network":"193.189.176.0\/25", + "version":50749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.176.0", + "prefixLen":25, + "network":"193.189.176.0\/25", + "version":50749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.176.128", + "prefixLen":25, + "network":"193.189.176.128\/25", + "version":50748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.176.128", + "prefixLen":25, + "network":"193.189.176.128\/25", + "version":50748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.177.0", + "prefixLen":25, + "network":"193.189.177.0\/25", + "version":50747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.177.0", + "prefixLen":25, + "network":"193.189.177.0\/25", + "version":50747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.177.128", + "prefixLen":25, + "network":"193.189.177.128\/25", + "version":50746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.177.128", + "prefixLen":25, + "network":"193.189.177.128\/25", + "version":50746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.178.0", + "prefixLen":25, + "network":"193.189.178.0\/25", + "version":50745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.178.0", + "prefixLen":25, + "network":"193.189.178.0\/25", + "version":50745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.178.128", + "prefixLen":25, + "network":"193.189.178.128\/25", + "version":50744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.178.128", + "prefixLen":25, + "network":"193.189.178.128\/25", + "version":50744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.179.0", + "prefixLen":25, + "network":"193.189.179.0\/25", + "version":50743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.179.0", + "prefixLen":25, + "network":"193.189.179.0\/25", + "version":50743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.179.128", + "prefixLen":25, + "network":"193.189.179.128\/25", + "version":50742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.179.128", + "prefixLen":25, + "network":"193.189.179.128\/25", + "version":50742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.192.0", + "prefixLen":25, + "network":"193.189.192.0\/25", + "version":50741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.192.0", + "prefixLen":25, + "network":"193.189.192.0\/25", + "version":50741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.192.128", + "prefixLen":25, + "network":"193.189.192.128\/25", + "version":50740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.192.128", + "prefixLen":25, + "network":"193.189.192.128\/25", + "version":50740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.193.0", + "prefixLen":25, + "network":"193.189.193.0\/25", + "version":50739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.193.0", + "prefixLen":25, + "network":"193.189.193.0\/25", + "version":50739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.193.128", + "prefixLen":25, + "network":"193.189.193.128\/25", + "version":50738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.193.128", + "prefixLen":25, + "network":"193.189.193.128\/25", + "version":50738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.194.0", + "prefixLen":25, + "network":"193.189.194.0\/25", + "version":50737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.194.0", + "prefixLen":25, + "network":"193.189.194.0\/25", + "version":50737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.194.128", + "prefixLen":25, + "network":"193.189.194.128\/25", + "version":50736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.194.128", + "prefixLen":25, + "network":"193.189.194.128\/25", + "version":50736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.195.0", + "prefixLen":25, + "network":"193.189.195.0\/25", + "version":50735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.195.0", + "prefixLen":25, + "network":"193.189.195.0\/25", + "version":50735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.195.128", + "prefixLen":25, + "network":"193.189.195.128\/25", + "version":50734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.195.128", + "prefixLen":25, + "network":"193.189.195.128\/25", + "version":50734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.208.0", + "prefixLen":25, + "network":"193.189.208.0\/25", + "version":50733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.208.0", + "prefixLen":25, + "network":"193.189.208.0\/25", + "version":50733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.208.128", + "prefixLen":25, + "network":"193.189.208.128\/25", + "version":50732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.208.128", + "prefixLen":25, + "network":"193.189.208.128\/25", + "version":50732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.209.0", + "prefixLen":25, + "network":"193.189.209.0\/25", + "version":50731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.209.0", + "prefixLen":25, + "network":"193.189.209.0\/25", + "version":50731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.209.128", + "prefixLen":25, + "network":"193.189.209.128\/25", + "version":50730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.209.128", + "prefixLen":25, + "network":"193.189.209.128\/25", + "version":50730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.210.0", + "prefixLen":25, + "network":"193.189.210.0\/25", + "version":50729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.210.0", + "prefixLen":25, + "network":"193.189.210.0\/25", + "version":50729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.210.128", + "prefixLen":25, + "network":"193.189.210.128\/25", + "version":50728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.210.128", + "prefixLen":25, + "network":"193.189.210.128\/25", + "version":50728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.211.0", + "prefixLen":25, + "network":"193.189.211.0\/25", + "version":50727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.211.0", + "prefixLen":25, + "network":"193.189.211.0\/25", + "version":50727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.211.128", + "prefixLen":25, + "network":"193.189.211.128\/25", + "version":50726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.211.128", + "prefixLen":25, + "network":"193.189.211.128\/25", + "version":50726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.224.0", + "prefixLen":25, + "network":"193.189.224.0\/25", + "version":50725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.224.0", + "prefixLen":25, + "network":"193.189.224.0\/25", + "version":50725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.224.128", + "prefixLen":25, + "network":"193.189.224.128\/25", + "version":50724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.224.128", + "prefixLen":25, + "network":"193.189.224.128\/25", + "version":50724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.225.0", + "prefixLen":25, + "network":"193.189.225.0\/25", + "version":50723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.225.0", + "prefixLen":25, + "network":"193.189.225.0\/25", + "version":50723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.225.128", + "prefixLen":25, + "network":"193.189.225.128\/25", + "version":50722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.225.128", + "prefixLen":25, + "network":"193.189.225.128\/25", + "version":50722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.226.0", + "prefixLen":25, + "network":"193.189.226.0\/25", + "version":50721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.226.0", + "prefixLen":25, + "network":"193.189.226.0\/25", + "version":50721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.226.128", + "prefixLen":25, + "network":"193.189.226.128\/25", + "version":50720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.226.128", + "prefixLen":25, + "network":"193.189.226.128\/25", + "version":50720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.227.0", + "prefixLen":25, + "network":"193.189.227.0\/25", + "version":50719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.227.0", + "prefixLen":25, + "network":"193.189.227.0\/25", + "version":50719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.227.128", + "prefixLen":25, + "network":"193.189.227.128\/25", + "version":50718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.227.128", + "prefixLen":25, + "network":"193.189.227.128\/25", + "version":50718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.240.0", + "prefixLen":25, + "network":"193.189.240.0\/25", + "version":50717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.240.0", + "prefixLen":25, + "network":"193.189.240.0\/25", + "version":50717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.240.128", + "prefixLen":25, + "network":"193.189.240.128\/25", + "version":50716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.240.128", + "prefixLen":25, + "network":"193.189.240.128\/25", + "version":50716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.241.0", + "prefixLen":25, + "network":"193.189.241.0\/25", + "version":50715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.241.0", + "prefixLen":25, + "network":"193.189.241.0\/25", + "version":50715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.241.128", + "prefixLen":25, + "network":"193.189.241.128\/25", + "version":50714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.241.128", + "prefixLen":25, + "network":"193.189.241.128\/25", + "version":50714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.242.0", + "prefixLen":25, + "network":"193.189.242.0\/25", + "version":50713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.242.0", + "prefixLen":25, + "network":"193.189.242.0\/25", + "version":50713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.242.128", + "prefixLen":25, + "network":"193.189.242.128\/25", + "version":50712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.242.128", + "prefixLen":25, + "network":"193.189.242.128\/25", + "version":50712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.243.0", + "prefixLen":25, + "network":"193.189.243.0\/25", + "version":50711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.243.0", + "prefixLen":25, + "network":"193.189.243.0\/25", + "version":50711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.189.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.189.243.128", + "prefixLen":25, + "network":"193.189.243.128\/25", + "version":50710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.189.243.128", + "prefixLen":25, + "network":"193.189.243.128\/25", + "version":50710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64877 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.0.0", + "prefixLen":25, + "network":"193.190.0.0\/25", + "version":50837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.0.0", + "prefixLen":25, + "network":"193.190.0.0\/25", + "version":50837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.0.128", + "prefixLen":25, + "network":"193.190.0.128\/25", + "version":50964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.0.128", + "prefixLen":25, + "network":"193.190.0.128\/25", + "version":50964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.1.0", + "prefixLen":25, + "network":"193.190.1.0\/25", + "version":50963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.1.0", + "prefixLen":25, + "network":"193.190.1.0\/25", + "version":50963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.1.128", + "prefixLen":25, + "network":"193.190.1.128\/25", + "version":50962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.1.128", + "prefixLen":25, + "network":"193.190.1.128\/25", + "version":50962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.2.0", + "prefixLen":25, + "network":"193.190.2.0\/25", + "version":50961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.2.0", + "prefixLen":25, + "network":"193.190.2.0\/25", + "version":50961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.2.128", + "prefixLen":25, + "network":"193.190.2.128\/25", + "version":50960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.2.128", + "prefixLen":25, + "network":"193.190.2.128\/25", + "version":50960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.3.0", + "prefixLen":25, + "network":"193.190.3.0\/25", + "version":50959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.3.0", + "prefixLen":25, + "network":"193.190.3.0\/25", + "version":50959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.3.128", + "prefixLen":25, + "network":"193.190.3.128\/25", + "version":50958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.3.128", + "prefixLen":25, + "network":"193.190.3.128\/25", + "version":50958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.16.0", + "prefixLen":25, + "network":"193.190.16.0\/25", + "version":50957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.16.0", + "prefixLen":25, + "network":"193.190.16.0\/25", + "version":50957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.16.128", + "prefixLen":25, + "network":"193.190.16.128\/25", + "version":50956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.16.128", + "prefixLen":25, + "network":"193.190.16.128\/25", + "version":50956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.17.0", + "prefixLen":25, + "network":"193.190.17.0\/25", + "version":50955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.17.0", + "prefixLen":25, + "network":"193.190.17.0\/25", + "version":50955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.17.128", + "prefixLen":25, + "network":"193.190.17.128\/25", + "version":50954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.17.128", + "prefixLen":25, + "network":"193.190.17.128\/25", + "version":50954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.18.0", + "prefixLen":25, + "network":"193.190.18.0\/25", + "version":50953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.18.0", + "prefixLen":25, + "network":"193.190.18.0\/25", + "version":50953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.18.128", + "prefixLen":25, + "network":"193.190.18.128\/25", + "version":50952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.18.128", + "prefixLen":25, + "network":"193.190.18.128\/25", + "version":50952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.19.0", + "prefixLen":25, + "network":"193.190.19.0\/25", + "version":50951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.19.0", + "prefixLen":25, + "network":"193.190.19.0\/25", + "version":50951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.19.128", + "prefixLen":25, + "network":"193.190.19.128\/25", + "version":50950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.19.128", + "prefixLen":25, + "network":"193.190.19.128\/25", + "version":50950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.32.0", + "prefixLen":25, + "network":"193.190.32.0\/25", + "version":50949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.32.0", + "prefixLen":25, + "network":"193.190.32.0\/25", + "version":50949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.32.128", + "prefixLen":25, + "network":"193.190.32.128\/25", + "version":50948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.32.128", + "prefixLen":25, + "network":"193.190.32.128\/25", + "version":50948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.33.0", + "prefixLen":25, + "network":"193.190.33.0\/25", + "version":50947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.33.0", + "prefixLen":25, + "network":"193.190.33.0\/25", + "version":50947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.33.128", + "prefixLen":25, + "network":"193.190.33.128\/25", + "version":50946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.33.128", + "prefixLen":25, + "network":"193.190.33.128\/25", + "version":50946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.34.0", + "prefixLen":25, + "network":"193.190.34.0\/25", + "version":50945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.34.0", + "prefixLen":25, + "network":"193.190.34.0\/25", + "version":50945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.34.128", + "prefixLen":25, + "network":"193.190.34.128\/25", + "version":50944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.34.128", + "prefixLen":25, + "network":"193.190.34.128\/25", + "version":50944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.35.0", + "prefixLen":25, + "network":"193.190.35.0\/25", + "version":50943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.35.0", + "prefixLen":25, + "network":"193.190.35.0\/25", + "version":50943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.35.128", + "prefixLen":25, + "network":"193.190.35.128\/25", + "version":50942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.35.128", + "prefixLen":25, + "network":"193.190.35.128\/25", + "version":50942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.48.0", + "prefixLen":25, + "network":"193.190.48.0\/25", + "version":50941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.48.0", + "prefixLen":25, + "network":"193.190.48.0\/25", + "version":50941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.48.128", + "prefixLen":25, + "network":"193.190.48.128\/25", + "version":50940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.48.128", + "prefixLen":25, + "network":"193.190.48.128\/25", + "version":50940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.49.0", + "prefixLen":25, + "network":"193.190.49.0\/25", + "version":50939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.49.0", + "prefixLen":25, + "network":"193.190.49.0\/25", + "version":50939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.49.128", + "prefixLen":25, + "network":"193.190.49.128\/25", + "version":50938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.49.128", + "prefixLen":25, + "network":"193.190.49.128\/25", + "version":50938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.50.0", + "prefixLen":25, + "network":"193.190.50.0\/25", + "version":50937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.50.0", + "prefixLen":25, + "network":"193.190.50.0\/25", + "version":50937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.50.128", + "prefixLen":25, + "network":"193.190.50.128\/25", + "version":50936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.50.128", + "prefixLen":25, + "network":"193.190.50.128\/25", + "version":50936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.51.0", + "prefixLen":25, + "network":"193.190.51.0\/25", + "version":50935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.51.0", + "prefixLen":25, + "network":"193.190.51.0\/25", + "version":50935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.51.128", + "prefixLen":25, + "network":"193.190.51.128\/25", + "version":50934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.51.128", + "prefixLen":25, + "network":"193.190.51.128\/25", + "version":50934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.64.0", + "prefixLen":25, + "network":"193.190.64.0\/25", + "version":50933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.64.0", + "prefixLen":25, + "network":"193.190.64.0\/25", + "version":50933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.64.128", + "prefixLen":25, + "network":"193.190.64.128\/25", + "version":50932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.64.128", + "prefixLen":25, + "network":"193.190.64.128\/25", + "version":50932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.65.0", + "prefixLen":25, + "network":"193.190.65.0\/25", + "version":50931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.65.0", + "prefixLen":25, + "network":"193.190.65.0\/25", + "version":50931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.65.128", + "prefixLen":25, + "network":"193.190.65.128\/25", + "version":50930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.65.128", + "prefixLen":25, + "network":"193.190.65.128\/25", + "version":50930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.66.0", + "prefixLen":25, + "network":"193.190.66.0\/25", + "version":50929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.66.0", + "prefixLen":25, + "network":"193.190.66.0\/25", + "version":50929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.66.128", + "prefixLen":25, + "network":"193.190.66.128\/25", + "version":50928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.66.128", + "prefixLen":25, + "network":"193.190.66.128\/25", + "version":50928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.67.0", + "prefixLen":25, + "network":"193.190.67.0\/25", + "version":50927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.67.0", + "prefixLen":25, + "network":"193.190.67.0\/25", + "version":50927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.67.128", + "prefixLen":25, + "network":"193.190.67.128\/25", + "version":50926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.67.128", + "prefixLen":25, + "network":"193.190.67.128\/25", + "version":50926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.80.0", + "prefixLen":25, + "network":"193.190.80.0\/25", + "version":50925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.80.0", + "prefixLen":25, + "network":"193.190.80.0\/25", + "version":50925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.80.128", + "prefixLen":25, + "network":"193.190.80.128\/25", + "version":50924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.80.128", + "prefixLen":25, + "network":"193.190.80.128\/25", + "version":50924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.81.0", + "prefixLen":25, + "network":"193.190.81.0\/25", + "version":50923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.81.0", + "prefixLen":25, + "network":"193.190.81.0\/25", + "version":50923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.81.128", + "prefixLen":25, + "network":"193.190.81.128\/25", + "version":50922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.81.128", + "prefixLen":25, + "network":"193.190.81.128\/25", + "version":50922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.82.0", + "prefixLen":25, + "network":"193.190.82.0\/25", + "version":50921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.82.0", + "prefixLen":25, + "network":"193.190.82.0\/25", + "version":50921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.82.128", + "prefixLen":25, + "network":"193.190.82.128\/25", + "version":50920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.82.128", + "prefixLen":25, + "network":"193.190.82.128\/25", + "version":50920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.83.0", + "prefixLen":25, + "network":"193.190.83.0\/25", + "version":50919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.83.0", + "prefixLen":25, + "network":"193.190.83.0\/25", + "version":50919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.83.128", + "prefixLen":25, + "network":"193.190.83.128\/25", + "version":50918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.83.128", + "prefixLen":25, + "network":"193.190.83.128\/25", + "version":50918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.96.0", + "prefixLen":25, + "network":"193.190.96.0\/25", + "version":50917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.96.0", + "prefixLen":25, + "network":"193.190.96.0\/25", + "version":50917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.96.128", + "prefixLen":25, + "network":"193.190.96.128\/25", + "version":50916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.96.128", + "prefixLen":25, + "network":"193.190.96.128\/25", + "version":50916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.97.0", + "prefixLen":25, + "network":"193.190.97.0\/25", + "version":50915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.97.0", + "prefixLen":25, + "network":"193.190.97.0\/25", + "version":50915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.97.128", + "prefixLen":25, + "network":"193.190.97.128\/25", + "version":50914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.97.128", + "prefixLen":25, + "network":"193.190.97.128\/25", + "version":50914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.98.0", + "prefixLen":25, + "network":"193.190.98.0\/25", + "version":50913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.98.0", + "prefixLen":25, + "network":"193.190.98.0\/25", + "version":50913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.98.128", + "prefixLen":25, + "network":"193.190.98.128\/25", + "version":50912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.98.128", + "prefixLen":25, + "network":"193.190.98.128\/25", + "version":50912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.99.0", + "prefixLen":25, + "network":"193.190.99.0\/25", + "version":50911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.99.0", + "prefixLen":25, + "network":"193.190.99.0\/25", + "version":50911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.99.128", + "prefixLen":25, + "network":"193.190.99.128\/25", + "version":50910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.99.128", + "prefixLen":25, + "network":"193.190.99.128\/25", + "version":50910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.112.0", + "prefixLen":25, + "network":"193.190.112.0\/25", + "version":50909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.112.0", + "prefixLen":25, + "network":"193.190.112.0\/25", + "version":50909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.112.128", + "prefixLen":25, + "network":"193.190.112.128\/25", + "version":50908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.112.128", + "prefixLen":25, + "network":"193.190.112.128\/25", + "version":50908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.113.0", + "prefixLen":25, + "network":"193.190.113.0\/25", + "version":50907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.113.0", + "prefixLen":25, + "network":"193.190.113.0\/25", + "version":50907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.113.128", + "prefixLen":25, + "network":"193.190.113.128\/25", + "version":50906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.113.128", + "prefixLen":25, + "network":"193.190.113.128\/25", + "version":50906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.114.0", + "prefixLen":25, + "network":"193.190.114.0\/25", + "version":50905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.114.0", + "prefixLen":25, + "network":"193.190.114.0\/25", + "version":50905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.114.128", + "prefixLen":25, + "network":"193.190.114.128\/25", + "version":50904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.114.128", + "prefixLen":25, + "network":"193.190.114.128\/25", + "version":50904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.115.0", + "prefixLen":25, + "network":"193.190.115.0\/25", + "version":50903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.115.0", + "prefixLen":25, + "network":"193.190.115.0\/25", + "version":50903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.115.128", + "prefixLen":25, + "network":"193.190.115.128\/25", + "version":50902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.115.128", + "prefixLen":25, + "network":"193.190.115.128\/25", + "version":50902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.128.0", + "prefixLen":25, + "network":"193.190.128.0\/25", + "version":50901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.128.0", + "prefixLen":25, + "network":"193.190.128.0\/25", + "version":50901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.128.128", + "prefixLen":25, + "network":"193.190.128.128\/25", + "version":50900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.128.128", + "prefixLen":25, + "network":"193.190.128.128\/25", + "version":50900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.129.0", + "prefixLen":25, + "network":"193.190.129.0\/25", + "version":50899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.129.0", + "prefixLen":25, + "network":"193.190.129.0\/25", + "version":50899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.129.128", + "prefixLen":25, + "network":"193.190.129.128\/25", + "version":50898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.129.128", + "prefixLen":25, + "network":"193.190.129.128\/25", + "version":50898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.130.0", + "prefixLen":25, + "network":"193.190.130.0\/25", + "version":50897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.130.0", + "prefixLen":25, + "network":"193.190.130.0\/25", + "version":50897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.130.128", + "prefixLen":25, + "network":"193.190.130.128\/25", + "version":50896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.130.128", + "prefixLen":25, + "network":"193.190.130.128\/25", + "version":50896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.131.0", + "prefixLen":25, + "network":"193.190.131.0\/25", + "version":50895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.131.0", + "prefixLen":25, + "network":"193.190.131.0\/25", + "version":50895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.131.128", + "prefixLen":25, + "network":"193.190.131.128\/25", + "version":50894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.131.128", + "prefixLen":25, + "network":"193.190.131.128\/25", + "version":50894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.144.0", + "prefixLen":25, + "network":"193.190.144.0\/25", + "version":50893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.144.0", + "prefixLen":25, + "network":"193.190.144.0\/25", + "version":50893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.144.128", + "prefixLen":25, + "network":"193.190.144.128\/25", + "version":50892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.144.128", + "prefixLen":25, + "network":"193.190.144.128\/25", + "version":50892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.145.0", + "prefixLen":25, + "network":"193.190.145.0\/25", + "version":50891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.145.0", + "prefixLen":25, + "network":"193.190.145.0\/25", + "version":50891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.145.128", + "prefixLen":25, + "network":"193.190.145.128\/25", + "version":50890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.145.128", + "prefixLen":25, + "network":"193.190.145.128\/25", + "version":50890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.146.0", + "prefixLen":25, + "network":"193.190.146.0\/25", + "version":50889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.146.0", + "prefixLen":25, + "network":"193.190.146.0\/25", + "version":50889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.146.128", + "prefixLen":25, + "network":"193.190.146.128\/25", + "version":50888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.146.128", + "prefixLen":25, + "network":"193.190.146.128\/25", + "version":50888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.147.0", + "prefixLen":25, + "network":"193.190.147.0\/25", + "version":50887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.147.0", + "prefixLen":25, + "network":"193.190.147.0\/25", + "version":50887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.147.128", + "prefixLen":25, + "network":"193.190.147.128\/25", + "version":50886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.147.128", + "prefixLen":25, + "network":"193.190.147.128\/25", + "version":50886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.160.0", + "prefixLen":25, + "network":"193.190.160.0\/25", + "version":50885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.160.0", + "prefixLen":25, + "network":"193.190.160.0\/25", + "version":50885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.160.128", + "prefixLen":25, + "network":"193.190.160.128\/25", + "version":50884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.160.128", + "prefixLen":25, + "network":"193.190.160.128\/25", + "version":50884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.161.0", + "prefixLen":25, + "network":"193.190.161.0\/25", + "version":50883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.161.0", + "prefixLen":25, + "network":"193.190.161.0\/25", + "version":50883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.161.128", + "prefixLen":25, + "network":"193.190.161.128\/25", + "version":50882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.161.128", + "prefixLen":25, + "network":"193.190.161.128\/25", + "version":50882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.162.0", + "prefixLen":25, + "network":"193.190.162.0\/25", + "version":50881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.162.0", + "prefixLen":25, + "network":"193.190.162.0\/25", + "version":50881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.162.128", + "prefixLen":25, + "network":"193.190.162.128\/25", + "version":50880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.162.128", + "prefixLen":25, + "network":"193.190.162.128\/25", + "version":50880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.163.0", + "prefixLen":25, + "network":"193.190.163.0\/25", + "version":50879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.163.0", + "prefixLen":25, + "network":"193.190.163.0\/25", + "version":50879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.163.128", + "prefixLen":25, + "network":"193.190.163.128\/25", + "version":50878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.163.128", + "prefixLen":25, + "network":"193.190.163.128\/25", + "version":50878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.176.0", + "prefixLen":25, + "network":"193.190.176.0\/25", + "version":50877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.176.0", + "prefixLen":25, + "network":"193.190.176.0\/25", + "version":50877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.176.128", + "prefixLen":25, + "network":"193.190.176.128\/25", + "version":50876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.176.128", + "prefixLen":25, + "network":"193.190.176.128\/25", + "version":50876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.177.0", + "prefixLen":25, + "network":"193.190.177.0\/25", + "version":50875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.177.0", + "prefixLen":25, + "network":"193.190.177.0\/25", + "version":50875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.177.128", + "prefixLen":25, + "network":"193.190.177.128\/25", + "version":50874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.177.128", + "prefixLen":25, + "network":"193.190.177.128\/25", + "version":50874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.178.0", + "prefixLen":25, + "network":"193.190.178.0\/25", + "version":50873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.178.0", + "prefixLen":25, + "network":"193.190.178.0\/25", + "version":50873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.178.128", + "prefixLen":25, + "network":"193.190.178.128\/25", + "version":50872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.178.128", + "prefixLen":25, + "network":"193.190.178.128\/25", + "version":50872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.179.0", + "prefixLen":25, + "network":"193.190.179.0\/25", + "version":50871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.179.0", + "prefixLen":25, + "network":"193.190.179.0\/25", + "version":50871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.179.128", + "prefixLen":25, + "network":"193.190.179.128\/25", + "version":50870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.179.128", + "prefixLen":25, + "network":"193.190.179.128\/25", + "version":50870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.192.0", + "prefixLen":25, + "network":"193.190.192.0\/25", + "version":50869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.192.0", + "prefixLen":25, + "network":"193.190.192.0\/25", + "version":50869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.192.128", + "prefixLen":25, + "network":"193.190.192.128\/25", + "version":50868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.192.128", + "prefixLen":25, + "network":"193.190.192.128\/25", + "version":50868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.193.0", + "prefixLen":25, + "network":"193.190.193.0\/25", + "version":50867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.193.0", + "prefixLen":25, + "network":"193.190.193.0\/25", + "version":50867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.193.128", + "prefixLen":25, + "network":"193.190.193.128\/25", + "version":50866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.193.128", + "prefixLen":25, + "network":"193.190.193.128\/25", + "version":50866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.194.0", + "prefixLen":25, + "network":"193.190.194.0\/25", + "version":50865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.194.0", + "prefixLen":25, + "network":"193.190.194.0\/25", + "version":50865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.194.128", + "prefixLen":25, + "network":"193.190.194.128\/25", + "version":50864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.194.128", + "prefixLen":25, + "network":"193.190.194.128\/25", + "version":50864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.195.0", + "prefixLen":25, + "network":"193.190.195.0\/25", + "version":50863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.195.0", + "prefixLen":25, + "network":"193.190.195.0\/25", + "version":50863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.195.128", + "prefixLen":25, + "network":"193.190.195.128\/25", + "version":50862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.195.128", + "prefixLen":25, + "network":"193.190.195.128\/25", + "version":50862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.208.0", + "prefixLen":25, + "network":"193.190.208.0\/25", + "version":50861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.208.0", + "prefixLen":25, + "network":"193.190.208.0\/25", + "version":50861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.208.128", + "prefixLen":25, + "network":"193.190.208.128\/25", + "version":50860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.208.128", + "prefixLen":25, + "network":"193.190.208.128\/25", + "version":50860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.209.0", + "prefixLen":25, + "network":"193.190.209.0\/25", + "version":50859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.209.0", + "prefixLen":25, + "network":"193.190.209.0\/25", + "version":50859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.209.128", + "prefixLen":25, + "network":"193.190.209.128\/25", + "version":50858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.209.128", + "prefixLen":25, + "network":"193.190.209.128\/25", + "version":50858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.210.0", + "prefixLen":25, + "network":"193.190.210.0\/25", + "version":50857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.210.0", + "prefixLen":25, + "network":"193.190.210.0\/25", + "version":50857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.210.128", + "prefixLen":25, + "network":"193.190.210.128\/25", + "version":50856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.210.128", + "prefixLen":25, + "network":"193.190.210.128\/25", + "version":50856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.211.0", + "prefixLen":25, + "network":"193.190.211.0\/25", + "version":50855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.211.0", + "prefixLen":25, + "network":"193.190.211.0\/25", + "version":50855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.211.128", + "prefixLen":25, + "network":"193.190.211.128\/25", + "version":50854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.211.128", + "prefixLen":25, + "network":"193.190.211.128\/25", + "version":50854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.224.0", + "prefixLen":25, + "network":"193.190.224.0\/25", + "version":50853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.224.0", + "prefixLen":25, + "network":"193.190.224.0\/25", + "version":50853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.224.128", + "prefixLen":25, + "network":"193.190.224.128\/25", + "version":50852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.224.128", + "prefixLen":25, + "network":"193.190.224.128\/25", + "version":50852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.225.0", + "prefixLen":25, + "network":"193.190.225.0\/25", + "version":50851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.225.0", + "prefixLen":25, + "network":"193.190.225.0\/25", + "version":50851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.225.128", + "prefixLen":25, + "network":"193.190.225.128\/25", + "version":50850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.225.128", + "prefixLen":25, + "network":"193.190.225.128\/25", + "version":50850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.226.0", + "prefixLen":25, + "network":"193.190.226.0\/25", + "version":50849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.226.0", + "prefixLen":25, + "network":"193.190.226.0\/25", + "version":50849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.226.128", + "prefixLen":25, + "network":"193.190.226.128\/25", + "version":50848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.226.128", + "prefixLen":25, + "network":"193.190.226.128\/25", + "version":50848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.227.0", + "prefixLen":25, + "network":"193.190.227.0\/25", + "version":50847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.227.0", + "prefixLen":25, + "network":"193.190.227.0\/25", + "version":50847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.227.128", + "prefixLen":25, + "network":"193.190.227.128\/25", + "version":50846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.227.128", + "prefixLen":25, + "network":"193.190.227.128\/25", + "version":50846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.240.0", + "prefixLen":25, + "network":"193.190.240.0\/25", + "version":50845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.240.0", + "prefixLen":25, + "network":"193.190.240.0\/25", + "version":50845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.240.128", + "prefixLen":25, + "network":"193.190.240.128\/25", + "version":50844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.240.128", + "prefixLen":25, + "network":"193.190.240.128\/25", + "version":50844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.241.0", + "prefixLen":25, + "network":"193.190.241.0\/25", + "version":50843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.241.0", + "prefixLen":25, + "network":"193.190.241.0\/25", + "version":50843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.241.128", + "prefixLen":25, + "network":"193.190.241.128\/25", + "version":50842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.241.128", + "prefixLen":25, + "network":"193.190.241.128\/25", + "version":50842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.242.0", + "prefixLen":25, + "network":"193.190.242.0\/25", + "version":50841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.242.0", + "prefixLen":25, + "network":"193.190.242.0\/25", + "version":50841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.242.128", + "prefixLen":25, + "network":"193.190.242.128\/25", + "version":50840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.242.128", + "prefixLen":25, + "network":"193.190.242.128\/25", + "version":50840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.243.0", + "prefixLen":25, + "network":"193.190.243.0\/25", + "version":50839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.243.0", + "prefixLen":25, + "network":"193.190.243.0\/25", + "version":50839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.190.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.190.243.128", + "prefixLen":25, + "network":"193.190.243.128\/25", + "version":50838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.190.243.128", + "prefixLen":25, + "network":"193.190.243.128\/25", + "version":50838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64878 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.0.0", + "prefixLen":25, + "network":"193.191.0.0\/25", + "version":50965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.0.0", + "prefixLen":25, + "network":"193.191.0.0\/25", + "version":50965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.0.128", + "prefixLen":25, + "network":"193.191.0.128\/25", + "version":51092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.0.128", + "prefixLen":25, + "network":"193.191.0.128\/25", + "version":51092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.1.0", + "prefixLen":25, + "network":"193.191.1.0\/25", + "version":51091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.1.0", + "prefixLen":25, + "network":"193.191.1.0\/25", + "version":51091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.1.128", + "prefixLen":25, + "network":"193.191.1.128\/25", + "version":51090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.1.128", + "prefixLen":25, + "network":"193.191.1.128\/25", + "version":51090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.2.0", + "prefixLen":25, + "network":"193.191.2.0\/25", + "version":51089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.2.0", + "prefixLen":25, + "network":"193.191.2.0\/25", + "version":51089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.2.128", + "prefixLen":25, + "network":"193.191.2.128\/25", + "version":51088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.2.128", + "prefixLen":25, + "network":"193.191.2.128\/25", + "version":51088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.3.0", + "prefixLen":25, + "network":"193.191.3.0\/25", + "version":51087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.3.0", + "prefixLen":25, + "network":"193.191.3.0\/25", + "version":51087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.3.128", + "prefixLen":25, + "network":"193.191.3.128\/25", + "version":51086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.3.128", + "prefixLen":25, + "network":"193.191.3.128\/25", + "version":51086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.16.0", + "prefixLen":25, + "network":"193.191.16.0\/25", + "version":51085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.16.0", + "prefixLen":25, + "network":"193.191.16.0\/25", + "version":51085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.16.128", + "prefixLen":25, + "network":"193.191.16.128\/25", + "version":51084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.16.128", + "prefixLen":25, + "network":"193.191.16.128\/25", + "version":51084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.17.0", + "prefixLen":25, + "network":"193.191.17.0\/25", + "version":51083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.17.0", + "prefixLen":25, + "network":"193.191.17.0\/25", + "version":51083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.17.128", + "prefixLen":25, + "network":"193.191.17.128\/25", + "version":51082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.17.128", + "prefixLen":25, + "network":"193.191.17.128\/25", + "version":51082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.18.0", + "prefixLen":25, + "network":"193.191.18.0\/25", + "version":51081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.18.0", + "prefixLen":25, + "network":"193.191.18.0\/25", + "version":51081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.18.128", + "prefixLen":25, + "network":"193.191.18.128\/25", + "version":51080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.18.128", + "prefixLen":25, + "network":"193.191.18.128\/25", + "version":51080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.19.0", + "prefixLen":25, + "network":"193.191.19.0\/25", + "version":51079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.19.0", + "prefixLen":25, + "network":"193.191.19.0\/25", + "version":51079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.19.128", + "prefixLen":25, + "network":"193.191.19.128\/25", + "version":51078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.19.128", + "prefixLen":25, + "network":"193.191.19.128\/25", + "version":51078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.32.0", + "prefixLen":25, + "network":"193.191.32.0\/25", + "version":51077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.32.0", + "prefixLen":25, + "network":"193.191.32.0\/25", + "version":51077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.32.128", + "prefixLen":25, + "network":"193.191.32.128\/25", + "version":51076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.32.128", + "prefixLen":25, + "network":"193.191.32.128\/25", + "version":51076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.33.0", + "prefixLen":25, + "network":"193.191.33.0\/25", + "version":51075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.33.0", + "prefixLen":25, + "network":"193.191.33.0\/25", + "version":51075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.33.128", + "prefixLen":25, + "network":"193.191.33.128\/25", + "version":51074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.33.128", + "prefixLen":25, + "network":"193.191.33.128\/25", + "version":51074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.34.0", + "prefixLen":25, + "network":"193.191.34.0\/25", + "version":51073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.34.0", + "prefixLen":25, + "network":"193.191.34.0\/25", + "version":51073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.34.128", + "prefixLen":25, + "network":"193.191.34.128\/25", + "version":51072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.34.128", + "prefixLen":25, + "network":"193.191.34.128\/25", + "version":51072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.35.0", + "prefixLen":25, + "network":"193.191.35.0\/25", + "version":51071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.35.0", + "prefixLen":25, + "network":"193.191.35.0\/25", + "version":51071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.35.128", + "prefixLen":25, + "network":"193.191.35.128\/25", + "version":51070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.35.128", + "prefixLen":25, + "network":"193.191.35.128\/25", + "version":51070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.48.0", + "prefixLen":25, + "network":"193.191.48.0\/25", + "version":51069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.48.0", + "prefixLen":25, + "network":"193.191.48.0\/25", + "version":51069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.48.128", + "prefixLen":25, + "network":"193.191.48.128\/25", + "version":51068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.48.128", + "prefixLen":25, + "network":"193.191.48.128\/25", + "version":51068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.49.0", + "prefixLen":25, + "network":"193.191.49.0\/25", + "version":51067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.49.0", + "prefixLen":25, + "network":"193.191.49.0\/25", + "version":51067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.49.128", + "prefixLen":25, + "network":"193.191.49.128\/25", + "version":51066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.49.128", + "prefixLen":25, + "network":"193.191.49.128\/25", + "version":51066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.50.0", + "prefixLen":25, + "network":"193.191.50.0\/25", + "version":51065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.50.0", + "prefixLen":25, + "network":"193.191.50.0\/25", + "version":51065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.50.128", + "prefixLen":25, + "network":"193.191.50.128\/25", + "version":51064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.50.128", + "prefixLen":25, + "network":"193.191.50.128\/25", + "version":51064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.51.0", + "prefixLen":25, + "network":"193.191.51.0\/25", + "version":51063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.51.0", + "prefixLen":25, + "network":"193.191.51.0\/25", + "version":51063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.51.128", + "prefixLen":25, + "network":"193.191.51.128\/25", + "version":51062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.51.128", + "prefixLen":25, + "network":"193.191.51.128\/25", + "version":51062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.64.0", + "prefixLen":25, + "network":"193.191.64.0\/25", + "version":51061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.64.0", + "prefixLen":25, + "network":"193.191.64.0\/25", + "version":51061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.64.128", + "prefixLen":25, + "network":"193.191.64.128\/25", + "version":51060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.64.128", + "prefixLen":25, + "network":"193.191.64.128\/25", + "version":51060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.65.0", + "prefixLen":25, + "network":"193.191.65.0\/25", + "version":51059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.65.0", + "prefixLen":25, + "network":"193.191.65.0\/25", + "version":51059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.65.128", + "prefixLen":25, + "network":"193.191.65.128\/25", + "version":51058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.65.128", + "prefixLen":25, + "network":"193.191.65.128\/25", + "version":51058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.66.0", + "prefixLen":25, + "network":"193.191.66.0\/25", + "version":51057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.66.0", + "prefixLen":25, + "network":"193.191.66.0\/25", + "version":51057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.66.128", + "prefixLen":25, + "network":"193.191.66.128\/25", + "version":51056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.66.128", + "prefixLen":25, + "network":"193.191.66.128\/25", + "version":51056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.67.0", + "prefixLen":25, + "network":"193.191.67.0\/25", + "version":51055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.67.0", + "prefixLen":25, + "network":"193.191.67.0\/25", + "version":51055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.67.128", + "prefixLen":25, + "network":"193.191.67.128\/25", + "version":51054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.67.128", + "prefixLen":25, + "network":"193.191.67.128\/25", + "version":51054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.80.0", + "prefixLen":25, + "network":"193.191.80.0\/25", + "version":51053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.80.0", + "prefixLen":25, + "network":"193.191.80.0\/25", + "version":51053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.80.128", + "prefixLen":25, + "network":"193.191.80.128\/25", + "version":51052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.80.128", + "prefixLen":25, + "network":"193.191.80.128\/25", + "version":51052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.81.0", + "prefixLen":25, + "network":"193.191.81.0\/25", + "version":51051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.81.0", + "prefixLen":25, + "network":"193.191.81.0\/25", + "version":51051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.81.128", + "prefixLen":25, + "network":"193.191.81.128\/25", + "version":51050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.81.128", + "prefixLen":25, + "network":"193.191.81.128\/25", + "version":51050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.82.0", + "prefixLen":25, + "network":"193.191.82.0\/25", + "version":51049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.82.0", + "prefixLen":25, + "network":"193.191.82.0\/25", + "version":51049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.82.128", + "prefixLen":25, + "network":"193.191.82.128\/25", + "version":51048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.82.128", + "prefixLen":25, + "network":"193.191.82.128\/25", + "version":51048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.83.0", + "prefixLen":25, + "network":"193.191.83.0\/25", + "version":51047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.83.0", + "prefixLen":25, + "network":"193.191.83.0\/25", + "version":51047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.83.128", + "prefixLen":25, + "network":"193.191.83.128\/25", + "version":51046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.83.128", + "prefixLen":25, + "network":"193.191.83.128\/25", + "version":51046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.96.0", + "prefixLen":25, + "network":"193.191.96.0\/25", + "version":51045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.96.0", + "prefixLen":25, + "network":"193.191.96.0\/25", + "version":51045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.96.128", + "prefixLen":25, + "network":"193.191.96.128\/25", + "version":51044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.96.128", + "prefixLen":25, + "network":"193.191.96.128\/25", + "version":51044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.97.0", + "prefixLen":25, + "network":"193.191.97.0\/25", + "version":51043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.97.0", + "prefixLen":25, + "network":"193.191.97.0\/25", + "version":51043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.97.128", + "prefixLen":25, + "network":"193.191.97.128\/25", + "version":51042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.97.128", + "prefixLen":25, + "network":"193.191.97.128\/25", + "version":51042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.98.0", + "prefixLen":25, + "network":"193.191.98.0\/25", + "version":51041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.98.0", + "prefixLen":25, + "network":"193.191.98.0\/25", + "version":51041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.98.128", + "prefixLen":25, + "network":"193.191.98.128\/25", + "version":51040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.98.128", + "prefixLen":25, + "network":"193.191.98.128\/25", + "version":51040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.99.0", + "prefixLen":25, + "network":"193.191.99.0\/25", + "version":51039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.99.0", + "prefixLen":25, + "network":"193.191.99.0\/25", + "version":51039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.99.128", + "prefixLen":25, + "network":"193.191.99.128\/25", + "version":51038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.99.128", + "prefixLen":25, + "network":"193.191.99.128\/25", + "version":51038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.112.0", + "prefixLen":25, + "network":"193.191.112.0\/25", + "version":51037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.112.0", + "prefixLen":25, + "network":"193.191.112.0\/25", + "version":51037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.112.128", + "prefixLen":25, + "network":"193.191.112.128\/25", + "version":51036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.112.128", + "prefixLen":25, + "network":"193.191.112.128\/25", + "version":51036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.113.0", + "prefixLen":25, + "network":"193.191.113.0\/25", + "version":51035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.113.0", + "prefixLen":25, + "network":"193.191.113.0\/25", + "version":51035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.113.128", + "prefixLen":25, + "network":"193.191.113.128\/25", + "version":51034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.113.128", + "prefixLen":25, + "network":"193.191.113.128\/25", + "version":51034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.114.0", + "prefixLen":25, + "network":"193.191.114.0\/25", + "version":51033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.114.0", + "prefixLen":25, + "network":"193.191.114.0\/25", + "version":51033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.114.128", + "prefixLen":25, + "network":"193.191.114.128\/25", + "version":51032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.114.128", + "prefixLen":25, + "network":"193.191.114.128\/25", + "version":51032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.115.0", + "prefixLen":25, + "network":"193.191.115.0\/25", + "version":51031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.115.0", + "prefixLen":25, + "network":"193.191.115.0\/25", + "version":51031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.115.128", + "prefixLen":25, + "network":"193.191.115.128\/25", + "version":51030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.115.128", + "prefixLen":25, + "network":"193.191.115.128\/25", + "version":51030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.128.0", + "prefixLen":25, + "network":"193.191.128.0\/25", + "version":51029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.128.0", + "prefixLen":25, + "network":"193.191.128.0\/25", + "version":51029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.128.128", + "prefixLen":25, + "network":"193.191.128.128\/25", + "version":51028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.128.128", + "prefixLen":25, + "network":"193.191.128.128\/25", + "version":51028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.129.0", + "prefixLen":25, + "network":"193.191.129.0\/25", + "version":51027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.129.0", + "prefixLen":25, + "network":"193.191.129.0\/25", + "version":51027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.129.128", + "prefixLen":25, + "network":"193.191.129.128\/25", + "version":51026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.129.128", + "prefixLen":25, + "network":"193.191.129.128\/25", + "version":51026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.130.0", + "prefixLen":25, + "network":"193.191.130.0\/25", + "version":51025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.130.0", + "prefixLen":25, + "network":"193.191.130.0\/25", + "version":51025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.130.128", + "prefixLen":25, + "network":"193.191.130.128\/25", + "version":51024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.130.128", + "prefixLen":25, + "network":"193.191.130.128\/25", + "version":51024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.131.0", + "prefixLen":25, + "network":"193.191.131.0\/25", + "version":51023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.131.0", + "prefixLen":25, + "network":"193.191.131.0\/25", + "version":51023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.131.128", + "prefixLen":25, + "network":"193.191.131.128\/25", + "version":51022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.131.128", + "prefixLen":25, + "network":"193.191.131.128\/25", + "version":51022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.144.0", + "prefixLen":25, + "network":"193.191.144.0\/25", + "version":51021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.144.0", + "prefixLen":25, + "network":"193.191.144.0\/25", + "version":51021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.144.128", + "prefixLen":25, + "network":"193.191.144.128\/25", + "version":51020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.144.128", + "prefixLen":25, + "network":"193.191.144.128\/25", + "version":51020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.145.0", + "prefixLen":25, + "network":"193.191.145.0\/25", + "version":51019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.145.0", + "prefixLen":25, + "network":"193.191.145.0\/25", + "version":51019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.145.128", + "prefixLen":25, + "network":"193.191.145.128\/25", + "version":51018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.145.128", + "prefixLen":25, + "network":"193.191.145.128\/25", + "version":51018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.146.0", + "prefixLen":25, + "network":"193.191.146.0\/25", + "version":51017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.146.0", + "prefixLen":25, + "network":"193.191.146.0\/25", + "version":51017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.146.128", + "prefixLen":25, + "network":"193.191.146.128\/25", + "version":51016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.146.128", + "prefixLen":25, + "network":"193.191.146.128\/25", + "version":51016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.147.0", + "prefixLen":25, + "network":"193.191.147.0\/25", + "version":51015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.147.0", + "prefixLen":25, + "network":"193.191.147.0\/25", + "version":51015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.147.128", + "prefixLen":25, + "network":"193.191.147.128\/25", + "version":51014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.147.128", + "prefixLen":25, + "network":"193.191.147.128\/25", + "version":51014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.160.0", + "prefixLen":25, + "network":"193.191.160.0\/25", + "version":51013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.160.0", + "prefixLen":25, + "network":"193.191.160.0\/25", + "version":51013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.160.128", + "prefixLen":25, + "network":"193.191.160.128\/25", + "version":51012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.160.128", + "prefixLen":25, + "network":"193.191.160.128\/25", + "version":51012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.161.0", + "prefixLen":25, + "network":"193.191.161.0\/25", + "version":51011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.161.0", + "prefixLen":25, + "network":"193.191.161.0\/25", + "version":51011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.161.128", + "prefixLen":25, + "network":"193.191.161.128\/25", + "version":51010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.161.128", + "prefixLen":25, + "network":"193.191.161.128\/25", + "version":51010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.162.0", + "prefixLen":25, + "network":"193.191.162.0\/25", + "version":51009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.162.0", + "prefixLen":25, + "network":"193.191.162.0\/25", + "version":51009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.162.128", + "prefixLen":25, + "network":"193.191.162.128\/25", + "version":51008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.162.128", + "prefixLen":25, + "network":"193.191.162.128\/25", + "version":51008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.163.0", + "prefixLen":25, + "network":"193.191.163.0\/25", + "version":51007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.163.0", + "prefixLen":25, + "network":"193.191.163.0\/25", + "version":51007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.163.128", + "prefixLen":25, + "network":"193.191.163.128\/25", + "version":51006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.163.128", + "prefixLen":25, + "network":"193.191.163.128\/25", + "version":51006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.176.0", + "prefixLen":25, + "network":"193.191.176.0\/25", + "version":51005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.176.0", + "prefixLen":25, + "network":"193.191.176.0\/25", + "version":51005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.176.128", + "prefixLen":25, + "network":"193.191.176.128\/25", + "version":51004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.176.128", + "prefixLen":25, + "network":"193.191.176.128\/25", + "version":51004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.177.0", + "prefixLen":25, + "network":"193.191.177.0\/25", + "version":51003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.177.0", + "prefixLen":25, + "network":"193.191.177.0\/25", + "version":51003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.177.128", + "prefixLen":25, + "network":"193.191.177.128\/25", + "version":51002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.177.128", + "prefixLen":25, + "network":"193.191.177.128\/25", + "version":51002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.178.0", + "prefixLen":25, + "network":"193.191.178.0\/25", + "version":51001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.178.0", + "prefixLen":25, + "network":"193.191.178.0\/25", + "version":51001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.178.128", + "prefixLen":25, + "network":"193.191.178.128\/25", + "version":51000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.178.128", + "prefixLen":25, + "network":"193.191.178.128\/25", + "version":51000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.179.0", + "prefixLen":25, + "network":"193.191.179.0\/25", + "version":50999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.179.0", + "prefixLen":25, + "network":"193.191.179.0\/25", + "version":50999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.179.128", + "prefixLen":25, + "network":"193.191.179.128\/25", + "version":50998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.179.128", + "prefixLen":25, + "network":"193.191.179.128\/25", + "version":50998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.192.0", + "prefixLen":25, + "network":"193.191.192.0\/25", + "version":50997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.192.0", + "prefixLen":25, + "network":"193.191.192.0\/25", + "version":50997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.192.128", + "prefixLen":25, + "network":"193.191.192.128\/25", + "version":50996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.192.128", + "prefixLen":25, + "network":"193.191.192.128\/25", + "version":50996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.193.0", + "prefixLen":25, + "network":"193.191.193.0\/25", + "version":50995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.193.0", + "prefixLen":25, + "network":"193.191.193.0\/25", + "version":50995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.193.128", + "prefixLen":25, + "network":"193.191.193.128\/25", + "version":50994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.193.128", + "prefixLen":25, + "network":"193.191.193.128\/25", + "version":50994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.194.0", + "prefixLen":25, + "network":"193.191.194.0\/25", + "version":50993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.194.0", + "prefixLen":25, + "network":"193.191.194.0\/25", + "version":50993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.194.128", + "prefixLen":25, + "network":"193.191.194.128\/25", + "version":50992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.194.128", + "prefixLen":25, + "network":"193.191.194.128\/25", + "version":50992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.195.0", + "prefixLen":25, + "network":"193.191.195.0\/25", + "version":50991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.195.0", + "prefixLen":25, + "network":"193.191.195.0\/25", + "version":50991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.195.128", + "prefixLen":25, + "network":"193.191.195.128\/25", + "version":50990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.195.128", + "prefixLen":25, + "network":"193.191.195.128\/25", + "version":50990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.208.0", + "prefixLen":25, + "network":"193.191.208.0\/25", + "version":50989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.208.0", + "prefixLen":25, + "network":"193.191.208.0\/25", + "version":50989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.208.128", + "prefixLen":25, + "network":"193.191.208.128\/25", + "version":50988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.208.128", + "prefixLen":25, + "network":"193.191.208.128\/25", + "version":50988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.209.0", + "prefixLen":25, + "network":"193.191.209.0\/25", + "version":50987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.209.0", + "prefixLen":25, + "network":"193.191.209.0\/25", + "version":50987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.209.128", + "prefixLen":25, + "network":"193.191.209.128\/25", + "version":50986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.209.128", + "prefixLen":25, + "network":"193.191.209.128\/25", + "version":50986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.210.0", + "prefixLen":25, + "network":"193.191.210.0\/25", + "version":50985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.210.0", + "prefixLen":25, + "network":"193.191.210.0\/25", + "version":50985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.210.128", + "prefixLen":25, + "network":"193.191.210.128\/25", + "version":50984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.210.128", + "prefixLen":25, + "network":"193.191.210.128\/25", + "version":50984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.211.0", + "prefixLen":25, + "network":"193.191.211.0\/25", + "version":50983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.211.0", + "prefixLen":25, + "network":"193.191.211.0\/25", + "version":50983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.211.128", + "prefixLen":25, + "network":"193.191.211.128\/25", + "version":50982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.211.128", + "prefixLen":25, + "network":"193.191.211.128\/25", + "version":50982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.224.0", + "prefixLen":25, + "network":"193.191.224.0\/25", + "version":50981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.224.0", + "prefixLen":25, + "network":"193.191.224.0\/25", + "version":50981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.224.128", + "prefixLen":25, + "network":"193.191.224.128\/25", + "version":50980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.224.128", + "prefixLen":25, + "network":"193.191.224.128\/25", + "version":50980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.225.0", + "prefixLen":25, + "network":"193.191.225.0\/25", + "version":50979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.225.0", + "prefixLen":25, + "network":"193.191.225.0\/25", + "version":50979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.225.128", + "prefixLen":25, + "network":"193.191.225.128\/25", + "version":50978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.225.128", + "prefixLen":25, + "network":"193.191.225.128\/25", + "version":50978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.226.0", + "prefixLen":25, + "network":"193.191.226.0\/25", + "version":50977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.226.0", + "prefixLen":25, + "network":"193.191.226.0\/25", + "version":50977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.226.128", + "prefixLen":25, + "network":"193.191.226.128\/25", + "version":50976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.226.128", + "prefixLen":25, + "network":"193.191.226.128\/25", + "version":50976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.227.0", + "prefixLen":25, + "network":"193.191.227.0\/25", + "version":50975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.227.0", + "prefixLen":25, + "network":"193.191.227.0\/25", + "version":50975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.227.128", + "prefixLen":25, + "network":"193.191.227.128\/25", + "version":50974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.227.128", + "prefixLen":25, + "network":"193.191.227.128\/25", + "version":50974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.240.0", + "prefixLen":25, + "network":"193.191.240.0\/25", + "version":50973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.240.0", + "prefixLen":25, + "network":"193.191.240.0\/25", + "version":50973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.240.128", + "prefixLen":25, + "network":"193.191.240.128\/25", + "version":50972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.240.128", + "prefixLen":25, + "network":"193.191.240.128\/25", + "version":50972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.241.0", + "prefixLen":25, + "network":"193.191.241.0\/25", + "version":50971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.241.0", + "prefixLen":25, + "network":"193.191.241.0\/25", + "version":50971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.241.128", + "prefixLen":25, + "network":"193.191.241.128\/25", + "version":50970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.241.128", + "prefixLen":25, + "network":"193.191.241.128\/25", + "version":50970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.242.0", + "prefixLen":25, + "network":"193.191.242.0\/25", + "version":50969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.242.0", + "prefixLen":25, + "network":"193.191.242.0\/25", + "version":50969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.242.128", + "prefixLen":25, + "network":"193.191.242.128\/25", + "version":50968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.242.128", + "prefixLen":25, + "network":"193.191.242.128\/25", + "version":50968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.243.0", + "prefixLen":25, + "network":"193.191.243.0\/25", + "version":50967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.243.0", + "prefixLen":25, + "network":"193.191.243.0\/25", + "version":50967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.191.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.191.243.128", + "prefixLen":25, + "network":"193.191.243.128\/25", + "version":50966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.191.243.128", + "prefixLen":25, + "network":"193.191.243.128\/25", + "version":50966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64879 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.0.0", + "prefixLen":25, + "network":"193.192.0.0\/25", + "version":51093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.0.0", + "prefixLen":25, + "network":"193.192.0.0\/25", + "version":51093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.0.128", + "prefixLen":25, + "network":"193.192.0.128\/25", + "version":51220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.0.128", + "prefixLen":25, + "network":"193.192.0.128\/25", + "version":51220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.1.0", + "prefixLen":25, + "network":"193.192.1.0\/25", + "version":51219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.1.0", + "prefixLen":25, + "network":"193.192.1.0\/25", + "version":51219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.1.128", + "prefixLen":25, + "network":"193.192.1.128\/25", + "version":51218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.1.128", + "prefixLen":25, + "network":"193.192.1.128\/25", + "version":51218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.2.0", + "prefixLen":25, + "network":"193.192.2.0\/25", + "version":51217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.2.0", + "prefixLen":25, + "network":"193.192.2.0\/25", + "version":51217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.2.128", + "prefixLen":25, + "network":"193.192.2.128\/25", + "version":51216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.2.128", + "prefixLen":25, + "network":"193.192.2.128\/25", + "version":51216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.3.0", + "prefixLen":25, + "network":"193.192.3.0\/25", + "version":51215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.3.0", + "prefixLen":25, + "network":"193.192.3.0\/25", + "version":51215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.3.128", + "prefixLen":25, + "network":"193.192.3.128\/25", + "version":51214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.3.128", + "prefixLen":25, + "network":"193.192.3.128\/25", + "version":51214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.16.0", + "prefixLen":25, + "network":"193.192.16.0\/25", + "version":51213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.16.0", + "prefixLen":25, + "network":"193.192.16.0\/25", + "version":51213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.16.128", + "prefixLen":25, + "network":"193.192.16.128\/25", + "version":51212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.16.128", + "prefixLen":25, + "network":"193.192.16.128\/25", + "version":51212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.17.0", + "prefixLen":25, + "network":"193.192.17.0\/25", + "version":51211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.17.0", + "prefixLen":25, + "network":"193.192.17.0\/25", + "version":51211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.17.128", + "prefixLen":25, + "network":"193.192.17.128\/25", + "version":51210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.17.128", + "prefixLen":25, + "network":"193.192.17.128\/25", + "version":51210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.18.0", + "prefixLen":25, + "network":"193.192.18.0\/25", + "version":51209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.18.0", + "prefixLen":25, + "network":"193.192.18.0\/25", + "version":51209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.18.128", + "prefixLen":25, + "network":"193.192.18.128\/25", + "version":51208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.18.128", + "prefixLen":25, + "network":"193.192.18.128\/25", + "version":51208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.19.0", + "prefixLen":25, + "network":"193.192.19.0\/25", + "version":51207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.19.0", + "prefixLen":25, + "network":"193.192.19.0\/25", + "version":51207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.19.128", + "prefixLen":25, + "network":"193.192.19.128\/25", + "version":51206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.19.128", + "prefixLen":25, + "network":"193.192.19.128\/25", + "version":51206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.32.0", + "prefixLen":25, + "network":"193.192.32.0\/25", + "version":51205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.32.0", + "prefixLen":25, + "network":"193.192.32.0\/25", + "version":51205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.32.128", + "prefixLen":25, + "network":"193.192.32.128\/25", + "version":51204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.32.128", + "prefixLen":25, + "network":"193.192.32.128\/25", + "version":51204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.33.0", + "prefixLen":25, + "network":"193.192.33.0\/25", + "version":51203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.33.0", + "prefixLen":25, + "network":"193.192.33.0\/25", + "version":51203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.33.128", + "prefixLen":25, + "network":"193.192.33.128\/25", + "version":51202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.33.128", + "prefixLen":25, + "network":"193.192.33.128\/25", + "version":51202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.34.0", + "prefixLen":25, + "network":"193.192.34.0\/25", + "version":51201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.34.0", + "prefixLen":25, + "network":"193.192.34.0\/25", + "version":51201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.34.128", + "prefixLen":25, + "network":"193.192.34.128\/25", + "version":51200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.34.128", + "prefixLen":25, + "network":"193.192.34.128\/25", + "version":51200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.35.0", + "prefixLen":25, + "network":"193.192.35.0\/25", + "version":51199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.35.0", + "prefixLen":25, + "network":"193.192.35.0\/25", + "version":51199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.35.128", + "prefixLen":25, + "network":"193.192.35.128\/25", + "version":51198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.35.128", + "prefixLen":25, + "network":"193.192.35.128\/25", + "version":51198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.48.0", + "prefixLen":25, + "network":"193.192.48.0\/25", + "version":51197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.48.0", + "prefixLen":25, + "network":"193.192.48.0\/25", + "version":51197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.48.128", + "prefixLen":25, + "network":"193.192.48.128\/25", + "version":51196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.48.128", + "prefixLen":25, + "network":"193.192.48.128\/25", + "version":51196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.49.0", + "prefixLen":25, + "network":"193.192.49.0\/25", + "version":51195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.49.0", + "prefixLen":25, + "network":"193.192.49.0\/25", + "version":51195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.49.128", + "prefixLen":25, + "network":"193.192.49.128\/25", + "version":51194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.49.128", + "prefixLen":25, + "network":"193.192.49.128\/25", + "version":51194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.50.0", + "prefixLen":25, + "network":"193.192.50.0\/25", + "version":51193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.50.0", + "prefixLen":25, + "network":"193.192.50.0\/25", + "version":51193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.50.128", + "prefixLen":25, + "network":"193.192.50.128\/25", + "version":51192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.50.128", + "prefixLen":25, + "network":"193.192.50.128\/25", + "version":51192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.51.0", + "prefixLen":25, + "network":"193.192.51.0\/25", + "version":51191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.51.0", + "prefixLen":25, + "network":"193.192.51.0\/25", + "version":51191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.51.128", + "prefixLen":25, + "network":"193.192.51.128\/25", + "version":51190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.51.128", + "prefixLen":25, + "network":"193.192.51.128\/25", + "version":51190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.64.0", + "prefixLen":25, + "network":"193.192.64.0\/25", + "version":51189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.64.0", + "prefixLen":25, + "network":"193.192.64.0\/25", + "version":51189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.64.128", + "prefixLen":25, + "network":"193.192.64.128\/25", + "version":51188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.64.128", + "prefixLen":25, + "network":"193.192.64.128\/25", + "version":51188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.65.0", + "prefixLen":25, + "network":"193.192.65.0\/25", + "version":51187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.65.0", + "prefixLen":25, + "network":"193.192.65.0\/25", + "version":51187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.65.128", + "prefixLen":25, + "network":"193.192.65.128\/25", + "version":51186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.65.128", + "prefixLen":25, + "network":"193.192.65.128\/25", + "version":51186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.66.0", + "prefixLen":25, + "network":"193.192.66.0\/25", + "version":51185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.66.0", + "prefixLen":25, + "network":"193.192.66.0\/25", + "version":51185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.66.128", + "prefixLen":25, + "network":"193.192.66.128\/25", + "version":51184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.66.128", + "prefixLen":25, + "network":"193.192.66.128\/25", + "version":51184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.67.0", + "prefixLen":25, + "network":"193.192.67.0\/25", + "version":51183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.67.0", + "prefixLen":25, + "network":"193.192.67.0\/25", + "version":51183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.67.128", + "prefixLen":25, + "network":"193.192.67.128\/25", + "version":51182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.67.128", + "prefixLen":25, + "network":"193.192.67.128\/25", + "version":51182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.80.0", + "prefixLen":25, + "network":"193.192.80.0\/25", + "version":51181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.80.0", + "prefixLen":25, + "network":"193.192.80.0\/25", + "version":51181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.80.128", + "prefixLen":25, + "network":"193.192.80.128\/25", + "version":51180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.80.128", + "prefixLen":25, + "network":"193.192.80.128\/25", + "version":51180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.81.0", + "prefixLen":25, + "network":"193.192.81.0\/25", + "version":51179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.81.0", + "prefixLen":25, + "network":"193.192.81.0\/25", + "version":51179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.81.128", + "prefixLen":25, + "network":"193.192.81.128\/25", + "version":51178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.81.128", + "prefixLen":25, + "network":"193.192.81.128\/25", + "version":51178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.82.0", + "prefixLen":25, + "network":"193.192.82.0\/25", + "version":51177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.82.0", + "prefixLen":25, + "network":"193.192.82.0\/25", + "version":51177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.82.128", + "prefixLen":25, + "network":"193.192.82.128\/25", + "version":51176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.82.128", + "prefixLen":25, + "network":"193.192.82.128\/25", + "version":51176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.83.0", + "prefixLen":25, + "network":"193.192.83.0\/25", + "version":51175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.83.0", + "prefixLen":25, + "network":"193.192.83.0\/25", + "version":51175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.83.128", + "prefixLen":25, + "network":"193.192.83.128\/25", + "version":51174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.83.128", + "prefixLen":25, + "network":"193.192.83.128\/25", + "version":51174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.96.0", + "prefixLen":25, + "network":"193.192.96.0\/25", + "version":51173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.96.0", + "prefixLen":25, + "network":"193.192.96.0\/25", + "version":51173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.96.128", + "prefixLen":25, + "network":"193.192.96.128\/25", + "version":51172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.96.128", + "prefixLen":25, + "network":"193.192.96.128\/25", + "version":51172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.97.0", + "prefixLen":25, + "network":"193.192.97.0\/25", + "version":51171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.97.0", + "prefixLen":25, + "network":"193.192.97.0\/25", + "version":51171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.97.128", + "prefixLen":25, + "network":"193.192.97.128\/25", + "version":51170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.97.128", + "prefixLen":25, + "network":"193.192.97.128\/25", + "version":51170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.98.0", + "prefixLen":25, + "network":"193.192.98.0\/25", + "version":51169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.98.0", + "prefixLen":25, + "network":"193.192.98.0\/25", + "version":51169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.98.128", + "prefixLen":25, + "network":"193.192.98.128\/25", + "version":51168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.98.128", + "prefixLen":25, + "network":"193.192.98.128\/25", + "version":51168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.99.0", + "prefixLen":25, + "network":"193.192.99.0\/25", + "version":51167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.99.0", + "prefixLen":25, + "network":"193.192.99.0\/25", + "version":51167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.99.128", + "prefixLen":25, + "network":"193.192.99.128\/25", + "version":51166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.99.128", + "prefixLen":25, + "network":"193.192.99.128\/25", + "version":51166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.112.0", + "prefixLen":25, + "network":"193.192.112.0\/25", + "version":51165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.112.0", + "prefixLen":25, + "network":"193.192.112.0\/25", + "version":51165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.112.128", + "prefixLen":25, + "network":"193.192.112.128\/25", + "version":51164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.112.128", + "prefixLen":25, + "network":"193.192.112.128\/25", + "version":51164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.113.0", + "prefixLen":25, + "network":"193.192.113.0\/25", + "version":51163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.113.0", + "prefixLen":25, + "network":"193.192.113.0\/25", + "version":51163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.113.128", + "prefixLen":25, + "network":"193.192.113.128\/25", + "version":51162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.113.128", + "prefixLen":25, + "network":"193.192.113.128\/25", + "version":51162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.114.0", + "prefixLen":25, + "network":"193.192.114.0\/25", + "version":51161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.114.0", + "prefixLen":25, + "network":"193.192.114.0\/25", + "version":51161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.114.128", + "prefixLen":25, + "network":"193.192.114.128\/25", + "version":51160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.114.128", + "prefixLen":25, + "network":"193.192.114.128\/25", + "version":51160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.115.0", + "prefixLen":25, + "network":"193.192.115.0\/25", + "version":51159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.115.0", + "prefixLen":25, + "network":"193.192.115.0\/25", + "version":51159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.115.128", + "prefixLen":25, + "network":"193.192.115.128\/25", + "version":51158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.115.128", + "prefixLen":25, + "network":"193.192.115.128\/25", + "version":51158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.128.0", + "prefixLen":25, + "network":"193.192.128.0\/25", + "version":51157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.128.0", + "prefixLen":25, + "network":"193.192.128.0\/25", + "version":51157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.128.128", + "prefixLen":25, + "network":"193.192.128.128\/25", + "version":51156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.128.128", + "prefixLen":25, + "network":"193.192.128.128\/25", + "version":51156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.129.0", + "prefixLen":25, + "network":"193.192.129.0\/25", + "version":51155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.129.0", + "prefixLen":25, + "network":"193.192.129.0\/25", + "version":51155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.129.128", + "prefixLen":25, + "network":"193.192.129.128\/25", + "version":51154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.129.128", + "prefixLen":25, + "network":"193.192.129.128\/25", + "version":51154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.130.0", + "prefixLen":25, + "network":"193.192.130.0\/25", + "version":51153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.130.0", + "prefixLen":25, + "network":"193.192.130.0\/25", + "version":51153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.130.128", + "prefixLen":25, + "network":"193.192.130.128\/25", + "version":51152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.130.128", + "prefixLen":25, + "network":"193.192.130.128\/25", + "version":51152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.131.0", + "prefixLen":25, + "network":"193.192.131.0\/25", + "version":51151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.131.0", + "prefixLen":25, + "network":"193.192.131.0\/25", + "version":51151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.131.128", + "prefixLen":25, + "network":"193.192.131.128\/25", + "version":51150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.131.128", + "prefixLen":25, + "network":"193.192.131.128\/25", + "version":51150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.144.0", + "prefixLen":25, + "network":"193.192.144.0\/25", + "version":51149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.144.0", + "prefixLen":25, + "network":"193.192.144.0\/25", + "version":51149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.144.128", + "prefixLen":25, + "network":"193.192.144.128\/25", + "version":51148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.144.128", + "prefixLen":25, + "network":"193.192.144.128\/25", + "version":51148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.145.0", + "prefixLen":25, + "network":"193.192.145.0\/25", + "version":51147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.145.0", + "prefixLen":25, + "network":"193.192.145.0\/25", + "version":51147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.145.128", + "prefixLen":25, + "network":"193.192.145.128\/25", + "version":51146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.145.128", + "prefixLen":25, + "network":"193.192.145.128\/25", + "version":51146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.146.0", + "prefixLen":25, + "network":"193.192.146.0\/25", + "version":51145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.146.0", + "prefixLen":25, + "network":"193.192.146.0\/25", + "version":51145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.146.128", + "prefixLen":25, + "network":"193.192.146.128\/25", + "version":51144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.146.128", + "prefixLen":25, + "network":"193.192.146.128\/25", + "version":51144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.147.0", + "prefixLen":25, + "network":"193.192.147.0\/25", + "version":51143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.147.0", + "prefixLen":25, + "network":"193.192.147.0\/25", + "version":51143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.147.128", + "prefixLen":25, + "network":"193.192.147.128\/25", + "version":51142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.147.128", + "prefixLen":25, + "network":"193.192.147.128\/25", + "version":51142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.160.0", + "prefixLen":25, + "network":"193.192.160.0\/25", + "version":51141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.160.0", + "prefixLen":25, + "network":"193.192.160.0\/25", + "version":51141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.160.128", + "prefixLen":25, + "network":"193.192.160.128\/25", + "version":51140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.160.128", + "prefixLen":25, + "network":"193.192.160.128\/25", + "version":51140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.161.0", + "prefixLen":25, + "network":"193.192.161.0\/25", + "version":51139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.161.0", + "prefixLen":25, + "network":"193.192.161.0\/25", + "version":51139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.161.128", + "prefixLen":25, + "network":"193.192.161.128\/25", + "version":51138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.161.128", + "prefixLen":25, + "network":"193.192.161.128\/25", + "version":51138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.162.0", + "prefixLen":25, + "network":"193.192.162.0\/25", + "version":51137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.162.0", + "prefixLen":25, + "network":"193.192.162.0\/25", + "version":51137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.162.128", + "prefixLen":25, + "network":"193.192.162.128\/25", + "version":51136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.162.128", + "prefixLen":25, + "network":"193.192.162.128\/25", + "version":51136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.163.0", + "prefixLen":25, + "network":"193.192.163.0\/25", + "version":51135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.163.0", + "prefixLen":25, + "network":"193.192.163.0\/25", + "version":51135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.163.128", + "prefixLen":25, + "network":"193.192.163.128\/25", + "version":51134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.163.128", + "prefixLen":25, + "network":"193.192.163.128\/25", + "version":51134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.176.0", + "prefixLen":25, + "network":"193.192.176.0\/25", + "version":51133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.176.0", + "prefixLen":25, + "network":"193.192.176.0\/25", + "version":51133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.176.128", + "prefixLen":25, + "network":"193.192.176.128\/25", + "version":51132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.176.128", + "prefixLen":25, + "network":"193.192.176.128\/25", + "version":51132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.177.0", + "prefixLen":25, + "network":"193.192.177.0\/25", + "version":51131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.177.0", + "prefixLen":25, + "network":"193.192.177.0\/25", + "version":51131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.177.128", + "prefixLen":25, + "network":"193.192.177.128\/25", + "version":51130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.177.128", + "prefixLen":25, + "network":"193.192.177.128\/25", + "version":51130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.178.0", + "prefixLen":25, + "network":"193.192.178.0\/25", + "version":51129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.178.0", + "prefixLen":25, + "network":"193.192.178.0\/25", + "version":51129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.178.128", + "prefixLen":25, + "network":"193.192.178.128\/25", + "version":51128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.178.128", + "prefixLen":25, + "network":"193.192.178.128\/25", + "version":51128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.179.0", + "prefixLen":25, + "network":"193.192.179.0\/25", + "version":51127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.179.0", + "prefixLen":25, + "network":"193.192.179.0\/25", + "version":51127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.179.128", + "prefixLen":25, + "network":"193.192.179.128\/25", + "version":51126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.179.128", + "prefixLen":25, + "network":"193.192.179.128\/25", + "version":51126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.192.0", + "prefixLen":25, + "network":"193.192.192.0\/25", + "version":51125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.192.0", + "prefixLen":25, + "network":"193.192.192.0\/25", + "version":51125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.192.128", + "prefixLen":25, + "network":"193.192.192.128\/25", + "version":51124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.192.128", + "prefixLen":25, + "network":"193.192.192.128\/25", + "version":51124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.193.0", + "prefixLen":25, + "network":"193.192.193.0\/25", + "version":51123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.193.0", + "prefixLen":25, + "network":"193.192.193.0\/25", + "version":51123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.193.128", + "prefixLen":25, + "network":"193.192.193.128\/25", + "version":51122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.193.128", + "prefixLen":25, + "network":"193.192.193.128\/25", + "version":51122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.194.0", + "prefixLen":25, + "network":"193.192.194.0\/25", + "version":51121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.194.0", + "prefixLen":25, + "network":"193.192.194.0\/25", + "version":51121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.194.128", + "prefixLen":25, + "network":"193.192.194.128\/25", + "version":51120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.194.128", + "prefixLen":25, + "network":"193.192.194.128\/25", + "version":51120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.195.0", + "prefixLen":25, + "network":"193.192.195.0\/25", + "version":51119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.195.0", + "prefixLen":25, + "network":"193.192.195.0\/25", + "version":51119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.195.128", + "prefixLen":25, + "network":"193.192.195.128\/25", + "version":51118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.195.128", + "prefixLen":25, + "network":"193.192.195.128\/25", + "version":51118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.208.0", + "prefixLen":25, + "network":"193.192.208.0\/25", + "version":51117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.208.0", + "prefixLen":25, + "network":"193.192.208.0\/25", + "version":51117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.208.128", + "prefixLen":25, + "network":"193.192.208.128\/25", + "version":51116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.208.128", + "prefixLen":25, + "network":"193.192.208.128\/25", + "version":51116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.209.0", + "prefixLen":25, + "network":"193.192.209.0\/25", + "version":51115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.209.0", + "prefixLen":25, + "network":"193.192.209.0\/25", + "version":51115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.209.128", + "prefixLen":25, + "network":"193.192.209.128\/25", + "version":51114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.209.128", + "prefixLen":25, + "network":"193.192.209.128\/25", + "version":51114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.210.0", + "prefixLen":25, + "network":"193.192.210.0\/25", + "version":51113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.210.0", + "prefixLen":25, + "network":"193.192.210.0\/25", + "version":51113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.210.128", + "prefixLen":25, + "network":"193.192.210.128\/25", + "version":51112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.210.128", + "prefixLen":25, + "network":"193.192.210.128\/25", + "version":51112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.211.0", + "prefixLen":25, + "network":"193.192.211.0\/25", + "version":51111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.211.0", + "prefixLen":25, + "network":"193.192.211.0\/25", + "version":51111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.211.128", + "prefixLen":25, + "network":"193.192.211.128\/25", + "version":51110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.211.128", + "prefixLen":25, + "network":"193.192.211.128\/25", + "version":51110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.224.0", + "prefixLen":25, + "network":"193.192.224.0\/25", + "version":51109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.224.0", + "prefixLen":25, + "network":"193.192.224.0\/25", + "version":51109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.224.128", + "prefixLen":25, + "network":"193.192.224.128\/25", + "version":51108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.224.128", + "prefixLen":25, + "network":"193.192.224.128\/25", + "version":51108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.225.0", + "prefixLen":25, + "network":"193.192.225.0\/25", + "version":51107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.225.0", + "prefixLen":25, + "network":"193.192.225.0\/25", + "version":51107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.225.128", + "prefixLen":25, + "network":"193.192.225.128\/25", + "version":51106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.225.128", + "prefixLen":25, + "network":"193.192.225.128\/25", + "version":51106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.226.0", + "prefixLen":25, + "network":"193.192.226.0\/25", + "version":51105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.226.0", + "prefixLen":25, + "network":"193.192.226.0\/25", + "version":51105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.226.128", + "prefixLen":25, + "network":"193.192.226.128\/25", + "version":51104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.226.128", + "prefixLen":25, + "network":"193.192.226.128\/25", + "version":51104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.227.0", + "prefixLen":25, + "network":"193.192.227.0\/25", + "version":51103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.227.0", + "prefixLen":25, + "network":"193.192.227.0\/25", + "version":51103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.227.128", + "prefixLen":25, + "network":"193.192.227.128\/25", + "version":51102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.227.128", + "prefixLen":25, + "network":"193.192.227.128\/25", + "version":51102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.240.0", + "prefixLen":25, + "network":"193.192.240.0\/25", + "version":51101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.240.0", + "prefixLen":25, + "network":"193.192.240.0\/25", + "version":51101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.240.128", + "prefixLen":25, + "network":"193.192.240.128\/25", + "version":51100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.240.128", + "prefixLen":25, + "network":"193.192.240.128\/25", + "version":51100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.241.0", + "prefixLen":25, + "network":"193.192.241.0\/25", + "version":51099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.241.0", + "prefixLen":25, + "network":"193.192.241.0\/25", + "version":51099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.241.128", + "prefixLen":25, + "network":"193.192.241.128\/25", + "version":51098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.241.128", + "prefixLen":25, + "network":"193.192.241.128\/25", + "version":51098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.242.0", + "prefixLen":25, + "network":"193.192.242.0\/25", + "version":51097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.242.0", + "prefixLen":25, + "network":"193.192.242.0\/25", + "version":51097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.242.128", + "prefixLen":25, + "network":"193.192.242.128\/25", + "version":51096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.242.128", + "prefixLen":25, + "network":"193.192.242.128\/25", + "version":51096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.243.0", + "prefixLen":25, + "network":"193.192.243.0\/25", + "version":51095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.243.0", + "prefixLen":25, + "network":"193.192.243.0\/25", + "version":51095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.192.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.192.243.128", + "prefixLen":25, + "network":"193.192.243.128\/25", + "version":51094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.192.243.128", + "prefixLen":25, + "network":"193.192.243.128\/25", + "version":51094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64880 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.0.0", + "prefixLen":25, + "network":"193.193.0.0\/25", + "version":51221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.0.0", + "prefixLen":25, + "network":"193.193.0.0\/25", + "version":51221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.0.128", + "prefixLen":25, + "network":"193.193.0.128\/25", + "version":51348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.0.128", + "prefixLen":25, + "network":"193.193.0.128\/25", + "version":51348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.1.0", + "prefixLen":25, + "network":"193.193.1.0\/25", + "version":51347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.1.0", + "prefixLen":25, + "network":"193.193.1.0\/25", + "version":51347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.1.128", + "prefixLen":25, + "network":"193.193.1.128\/25", + "version":51346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.1.128", + "prefixLen":25, + "network":"193.193.1.128\/25", + "version":51346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.2.0", + "prefixLen":25, + "network":"193.193.2.0\/25", + "version":51345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.2.0", + "prefixLen":25, + "network":"193.193.2.0\/25", + "version":51345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.2.128", + "prefixLen":25, + "network":"193.193.2.128\/25", + "version":51344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.2.128", + "prefixLen":25, + "network":"193.193.2.128\/25", + "version":51344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.3.0", + "prefixLen":25, + "network":"193.193.3.0\/25", + "version":51343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.3.0", + "prefixLen":25, + "network":"193.193.3.0\/25", + "version":51343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.3.128", + "prefixLen":25, + "network":"193.193.3.128\/25", + "version":51342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.3.128", + "prefixLen":25, + "network":"193.193.3.128\/25", + "version":51342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.16.0", + "prefixLen":25, + "network":"193.193.16.0\/25", + "version":51341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.16.0", + "prefixLen":25, + "network":"193.193.16.0\/25", + "version":51341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.16.128", + "prefixLen":25, + "network":"193.193.16.128\/25", + "version":51340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.16.128", + "prefixLen":25, + "network":"193.193.16.128\/25", + "version":51340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.17.0", + "prefixLen":25, + "network":"193.193.17.0\/25", + "version":51339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.17.0", + "prefixLen":25, + "network":"193.193.17.0\/25", + "version":51339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.17.128", + "prefixLen":25, + "network":"193.193.17.128\/25", + "version":51338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.17.128", + "prefixLen":25, + "network":"193.193.17.128\/25", + "version":51338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.18.0", + "prefixLen":25, + "network":"193.193.18.0\/25", + "version":51337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.18.0", + "prefixLen":25, + "network":"193.193.18.0\/25", + "version":51337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.18.128", + "prefixLen":25, + "network":"193.193.18.128\/25", + "version":51336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.18.128", + "prefixLen":25, + "network":"193.193.18.128\/25", + "version":51336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.19.0", + "prefixLen":25, + "network":"193.193.19.0\/25", + "version":51335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.19.0", + "prefixLen":25, + "network":"193.193.19.0\/25", + "version":51335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.19.128", + "prefixLen":25, + "network":"193.193.19.128\/25", + "version":51334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.19.128", + "prefixLen":25, + "network":"193.193.19.128\/25", + "version":51334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.32.0", + "prefixLen":25, + "network":"193.193.32.0\/25", + "version":51333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.32.0", + "prefixLen":25, + "network":"193.193.32.0\/25", + "version":51333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.32.128", + "prefixLen":25, + "network":"193.193.32.128\/25", + "version":51332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.32.128", + "prefixLen":25, + "network":"193.193.32.128\/25", + "version":51332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.33.0", + "prefixLen":25, + "network":"193.193.33.0\/25", + "version":51331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.33.0", + "prefixLen":25, + "network":"193.193.33.0\/25", + "version":51331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.33.128", + "prefixLen":25, + "network":"193.193.33.128\/25", + "version":51330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.33.128", + "prefixLen":25, + "network":"193.193.33.128\/25", + "version":51330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.34.0", + "prefixLen":25, + "network":"193.193.34.0\/25", + "version":51329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.34.0", + "prefixLen":25, + "network":"193.193.34.0\/25", + "version":51329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.34.128", + "prefixLen":25, + "network":"193.193.34.128\/25", + "version":51328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.34.128", + "prefixLen":25, + "network":"193.193.34.128\/25", + "version":51328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.35.0", + "prefixLen":25, + "network":"193.193.35.0\/25", + "version":51327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.35.0", + "prefixLen":25, + "network":"193.193.35.0\/25", + "version":51327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.35.128", + "prefixLen":25, + "network":"193.193.35.128\/25", + "version":51326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.35.128", + "prefixLen":25, + "network":"193.193.35.128\/25", + "version":51326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.48.0", + "prefixLen":25, + "network":"193.193.48.0\/25", + "version":51325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.48.0", + "prefixLen":25, + "network":"193.193.48.0\/25", + "version":51325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.48.128", + "prefixLen":25, + "network":"193.193.48.128\/25", + "version":51324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.48.128", + "prefixLen":25, + "network":"193.193.48.128\/25", + "version":51324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.49.0", + "prefixLen":25, + "network":"193.193.49.0\/25", + "version":51323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.49.0", + "prefixLen":25, + "network":"193.193.49.0\/25", + "version":51323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.49.128", + "prefixLen":25, + "network":"193.193.49.128\/25", + "version":51322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.49.128", + "prefixLen":25, + "network":"193.193.49.128\/25", + "version":51322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.50.0", + "prefixLen":25, + "network":"193.193.50.0\/25", + "version":51321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.50.0", + "prefixLen":25, + "network":"193.193.50.0\/25", + "version":51321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.50.128", + "prefixLen":25, + "network":"193.193.50.128\/25", + "version":51320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.50.128", + "prefixLen":25, + "network":"193.193.50.128\/25", + "version":51320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.51.0", + "prefixLen":25, + "network":"193.193.51.0\/25", + "version":51319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.51.0", + "prefixLen":25, + "network":"193.193.51.0\/25", + "version":51319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.51.128", + "prefixLen":25, + "network":"193.193.51.128\/25", + "version":51318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.51.128", + "prefixLen":25, + "network":"193.193.51.128\/25", + "version":51318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.64.0", + "prefixLen":25, + "network":"193.193.64.0\/25", + "version":51317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.64.0", + "prefixLen":25, + "network":"193.193.64.0\/25", + "version":51317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.64.128", + "prefixLen":25, + "network":"193.193.64.128\/25", + "version":51316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.64.128", + "prefixLen":25, + "network":"193.193.64.128\/25", + "version":51316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.65.0", + "prefixLen":25, + "network":"193.193.65.0\/25", + "version":51315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.65.0", + "prefixLen":25, + "network":"193.193.65.0\/25", + "version":51315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.65.128", + "prefixLen":25, + "network":"193.193.65.128\/25", + "version":51314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.65.128", + "prefixLen":25, + "network":"193.193.65.128\/25", + "version":51314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.66.0", + "prefixLen":25, + "network":"193.193.66.0\/25", + "version":51313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.66.0", + "prefixLen":25, + "network":"193.193.66.0\/25", + "version":51313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.66.128", + "prefixLen":25, + "network":"193.193.66.128\/25", + "version":51312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.66.128", + "prefixLen":25, + "network":"193.193.66.128\/25", + "version":51312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.67.0", + "prefixLen":25, + "network":"193.193.67.0\/25", + "version":51311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.67.0", + "prefixLen":25, + "network":"193.193.67.0\/25", + "version":51311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.67.128", + "prefixLen":25, + "network":"193.193.67.128\/25", + "version":51310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.67.128", + "prefixLen":25, + "network":"193.193.67.128\/25", + "version":51310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.80.0", + "prefixLen":25, + "network":"193.193.80.0\/25", + "version":51309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.80.0", + "prefixLen":25, + "network":"193.193.80.0\/25", + "version":51309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.80.128", + "prefixLen":25, + "network":"193.193.80.128\/25", + "version":51308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.80.128", + "prefixLen":25, + "network":"193.193.80.128\/25", + "version":51308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.81.0", + "prefixLen":25, + "network":"193.193.81.0\/25", + "version":51307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.81.0", + "prefixLen":25, + "network":"193.193.81.0\/25", + "version":51307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.81.128", + "prefixLen":25, + "network":"193.193.81.128\/25", + "version":51306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.81.128", + "prefixLen":25, + "network":"193.193.81.128\/25", + "version":51306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.82.0", + "prefixLen":25, + "network":"193.193.82.0\/25", + "version":51305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.82.0", + "prefixLen":25, + "network":"193.193.82.0\/25", + "version":51305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.82.128", + "prefixLen":25, + "network":"193.193.82.128\/25", + "version":51304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.82.128", + "prefixLen":25, + "network":"193.193.82.128\/25", + "version":51304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.83.0", + "prefixLen":25, + "network":"193.193.83.0\/25", + "version":51303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.83.0", + "prefixLen":25, + "network":"193.193.83.0\/25", + "version":51303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.83.128", + "prefixLen":25, + "network":"193.193.83.128\/25", + "version":51302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.83.128", + "prefixLen":25, + "network":"193.193.83.128\/25", + "version":51302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.96.0", + "prefixLen":25, + "network":"193.193.96.0\/25", + "version":51301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.96.0", + "prefixLen":25, + "network":"193.193.96.0\/25", + "version":51301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.96.128", + "prefixLen":25, + "network":"193.193.96.128\/25", + "version":51300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.96.128", + "prefixLen":25, + "network":"193.193.96.128\/25", + "version":51300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.97.0", + "prefixLen":25, + "network":"193.193.97.0\/25", + "version":51299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.97.0", + "prefixLen":25, + "network":"193.193.97.0\/25", + "version":51299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.97.128", + "prefixLen":25, + "network":"193.193.97.128\/25", + "version":51298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.97.128", + "prefixLen":25, + "network":"193.193.97.128\/25", + "version":51298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.98.0", + "prefixLen":25, + "network":"193.193.98.0\/25", + "version":51297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.98.0", + "prefixLen":25, + "network":"193.193.98.0\/25", + "version":51297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.98.128", + "prefixLen":25, + "network":"193.193.98.128\/25", + "version":51296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.98.128", + "prefixLen":25, + "network":"193.193.98.128\/25", + "version":51296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.99.0", + "prefixLen":25, + "network":"193.193.99.0\/25", + "version":51295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.99.0", + "prefixLen":25, + "network":"193.193.99.0\/25", + "version":51295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.99.128", + "prefixLen":25, + "network":"193.193.99.128\/25", + "version":51294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.99.128", + "prefixLen":25, + "network":"193.193.99.128\/25", + "version":51294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.112.0", + "prefixLen":25, + "network":"193.193.112.0\/25", + "version":51293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.112.0", + "prefixLen":25, + "network":"193.193.112.0\/25", + "version":51293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.112.128", + "prefixLen":25, + "network":"193.193.112.128\/25", + "version":51292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.112.128", + "prefixLen":25, + "network":"193.193.112.128\/25", + "version":51292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.113.0", + "prefixLen":25, + "network":"193.193.113.0\/25", + "version":51291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.113.0", + "prefixLen":25, + "network":"193.193.113.0\/25", + "version":51291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.113.128", + "prefixLen":25, + "network":"193.193.113.128\/25", + "version":51290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.113.128", + "prefixLen":25, + "network":"193.193.113.128\/25", + "version":51290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.114.0", + "prefixLen":25, + "network":"193.193.114.0\/25", + "version":51289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.114.0", + "prefixLen":25, + "network":"193.193.114.0\/25", + "version":51289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.114.128", + "prefixLen":25, + "network":"193.193.114.128\/25", + "version":51288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.114.128", + "prefixLen":25, + "network":"193.193.114.128\/25", + "version":51288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.115.0", + "prefixLen":25, + "network":"193.193.115.0\/25", + "version":51287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.115.0", + "prefixLen":25, + "network":"193.193.115.0\/25", + "version":51287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.115.128", + "prefixLen":25, + "network":"193.193.115.128\/25", + "version":51286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.115.128", + "prefixLen":25, + "network":"193.193.115.128\/25", + "version":51286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.128.0", + "prefixLen":25, + "network":"193.193.128.0\/25", + "version":51285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.128.0", + "prefixLen":25, + "network":"193.193.128.0\/25", + "version":51285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.128.128", + "prefixLen":25, + "network":"193.193.128.128\/25", + "version":51284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.128.128", + "prefixLen":25, + "network":"193.193.128.128\/25", + "version":51284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.129.0", + "prefixLen":25, + "network":"193.193.129.0\/25", + "version":51283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.129.0", + "prefixLen":25, + "network":"193.193.129.0\/25", + "version":51283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.129.128", + "prefixLen":25, + "network":"193.193.129.128\/25", + "version":51282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.129.128", + "prefixLen":25, + "network":"193.193.129.128\/25", + "version":51282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.130.0", + "prefixLen":25, + "network":"193.193.130.0\/25", + "version":51281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.130.0", + "prefixLen":25, + "network":"193.193.130.0\/25", + "version":51281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.130.128", + "prefixLen":25, + "network":"193.193.130.128\/25", + "version":51280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.130.128", + "prefixLen":25, + "network":"193.193.130.128\/25", + "version":51280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.131.0", + "prefixLen":25, + "network":"193.193.131.0\/25", + "version":51279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.131.0", + "prefixLen":25, + "network":"193.193.131.0\/25", + "version":51279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.131.128", + "prefixLen":25, + "network":"193.193.131.128\/25", + "version":51278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.131.128", + "prefixLen":25, + "network":"193.193.131.128\/25", + "version":51278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.144.0", + "prefixLen":25, + "network":"193.193.144.0\/25", + "version":51277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.144.0", + "prefixLen":25, + "network":"193.193.144.0\/25", + "version":51277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.144.128", + "prefixLen":25, + "network":"193.193.144.128\/25", + "version":51276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.144.128", + "prefixLen":25, + "network":"193.193.144.128\/25", + "version":51276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.145.0", + "prefixLen":25, + "network":"193.193.145.0\/25", + "version":51275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.145.0", + "prefixLen":25, + "network":"193.193.145.0\/25", + "version":51275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.145.128", + "prefixLen":25, + "network":"193.193.145.128\/25", + "version":51274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.145.128", + "prefixLen":25, + "network":"193.193.145.128\/25", + "version":51274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.146.0", + "prefixLen":25, + "network":"193.193.146.0\/25", + "version":51273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.146.0", + "prefixLen":25, + "network":"193.193.146.0\/25", + "version":51273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.146.128", + "prefixLen":25, + "network":"193.193.146.128\/25", + "version":51272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.146.128", + "prefixLen":25, + "network":"193.193.146.128\/25", + "version":51272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.147.0", + "prefixLen":25, + "network":"193.193.147.0\/25", + "version":51271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.147.0", + "prefixLen":25, + "network":"193.193.147.0\/25", + "version":51271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.147.128", + "prefixLen":25, + "network":"193.193.147.128\/25", + "version":51270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.147.128", + "prefixLen":25, + "network":"193.193.147.128\/25", + "version":51270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.160.0", + "prefixLen":25, + "network":"193.193.160.0\/25", + "version":51269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.160.0", + "prefixLen":25, + "network":"193.193.160.0\/25", + "version":51269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.160.128", + "prefixLen":25, + "network":"193.193.160.128\/25", + "version":51268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.160.128", + "prefixLen":25, + "network":"193.193.160.128\/25", + "version":51268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.161.0", + "prefixLen":25, + "network":"193.193.161.0\/25", + "version":51267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.161.0", + "prefixLen":25, + "network":"193.193.161.0\/25", + "version":51267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.161.128", + "prefixLen":25, + "network":"193.193.161.128\/25", + "version":51266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.161.128", + "prefixLen":25, + "network":"193.193.161.128\/25", + "version":51266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.162.0", + "prefixLen":25, + "network":"193.193.162.0\/25", + "version":51265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.162.0", + "prefixLen":25, + "network":"193.193.162.0\/25", + "version":51265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.162.128", + "prefixLen":25, + "network":"193.193.162.128\/25", + "version":51264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.162.128", + "prefixLen":25, + "network":"193.193.162.128\/25", + "version":51264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.163.0", + "prefixLen":25, + "network":"193.193.163.0\/25", + "version":51263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.163.0", + "prefixLen":25, + "network":"193.193.163.0\/25", + "version":51263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.163.128", + "prefixLen":25, + "network":"193.193.163.128\/25", + "version":51262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.163.128", + "prefixLen":25, + "network":"193.193.163.128\/25", + "version":51262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.176.0", + "prefixLen":25, + "network":"193.193.176.0\/25", + "version":51261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.176.0", + "prefixLen":25, + "network":"193.193.176.0\/25", + "version":51261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.176.128", + "prefixLen":25, + "network":"193.193.176.128\/25", + "version":51260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.176.128", + "prefixLen":25, + "network":"193.193.176.128\/25", + "version":51260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.177.0", + "prefixLen":25, + "network":"193.193.177.0\/25", + "version":51259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.177.0", + "prefixLen":25, + "network":"193.193.177.0\/25", + "version":51259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.177.128", + "prefixLen":25, + "network":"193.193.177.128\/25", + "version":51258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.177.128", + "prefixLen":25, + "network":"193.193.177.128\/25", + "version":51258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.178.0", + "prefixLen":25, + "network":"193.193.178.0\/25", + "version":51257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.178.0", + "prefixLen":25, + "network":"193.193.178.0\/25", + "version":51257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.178.128", + "prefixLen":25, + "network":"193.193.178.128\/25", + "version":51256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.178.128", + "prefixLen":25, + "network":"193.193.178.128\/25", + "version":51256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.179.0", + "prefixLen":25, + "network":"193.193.179.0\/25", + "version":51255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.179.0", + "prefixLen":25, + "network":"193.193.179.0\/25", + "version":51255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.179.128", + "prefixLen":25, + "network":"193.193.179.128\/25", + "version":51254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.179.128", + "prefixLen":25, + "network":"193.193.179.128\/25", + "version":51254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.192.0", + "prefixLen":25, + "network":"193.193.192.0\/25", + "version":51253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.192.0", + "prefixLen":25, + "network":"193.193.192.0\/25", + "version":51253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.192.128", + "prefixLen":25, + "network":"193.193.192.128\/25", + "version":51252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.192.128", + "prefixLen":25, + "network":"193.193.192.128\/25", + "version":51252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.193.0", + "prefixLen":25, + "network":"193.193.193.0\/25", + "version":51251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.193.0", + "prefixLen":25, + "network":"193.193.193.0\/25", + "version":51251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.193.128", + "prefixLen":25, + "network":"193.193.193.128\/25", + "version":51250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.193.128", + "prefixLen":25, + "network":"193.193.193.128\/25", + "version":51250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.194.0", + "prefixLen":25, + "network":"193.193.194.0\/25", + "version":51249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.194.0", + "prefixLen":25, + "network":"193.193.194.0\/25", + "version":51249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.194.128", + "prefixLen":25, + "network":"193.193.194.128\/25", + "version":51248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.194.128", + "prefixLen":25, + "network":"193.193.194.128\/25", + "version":51248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.195.0", + "prefixLen":25, + "network":"193.193.195.0\/25", + "version":51247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.195.0", + "prefixLen":25, + "network":"193.193.195.0\/25", + "version":51247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.195.128", + "prefixLen":25, + "network":"193.193.195.128\/25", + "version":51246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.195.128", + "prefixLen":25, + "network":"193.193.195.128\/25", + "version":51246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.208.0", + "prefixLen":25, + "network":"193.193.208.0\/25", + "version":51245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.208.0", + "prefixLen":25, + "network":"193.193.208.0\/25", + "version":51245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.208.128", + "prefixLen":25, + "network":"193.193.208.128\/25", + "version":51244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.208.128", + "prefixLen":25, + "network":"193.193.208.128\/25", + "version":51244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.209.0", + "prefixLen":25, + "network":"193.193.209.0\/25", + "version":51243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.209.0", + "prefixLen":25, + "network":"193.193.209.0\/25", + "version":51243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.209.128", + "prefixLen":25, + "network":"193.193.209.128\/25", + "version":51242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.209.128", + "prefixLen":25, + "network":"193.193.209.128\/25", + "version":51242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.210.0", + "prefixLen":25, + "network":"193.193.210.0\/25", + "version":51241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.210.0", + "prefixLen":25, + "network":"193.193.210.0\/25", + "version":51241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.210.128", + "prefixLen":25, + "network":"193.193.210.128\/25", + "version":51240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.210.128", + "prefixLen":25, + "network":"193.193.210.128\/25", + "version":51240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.211.0", + "prefixLen":25, + "network":"193.193.211.0\/25", + "version":51239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.211.0", + "prefixLen":25, + "network":"193.193.211.0\/25", + "version":51239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.211.128", + "prefixLen":25, + "network":"193.193.211.128\/25", + "version":51238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.211.128", + "prefixLen":25, + "network":"193.193.211.128\/25", + "version":51238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.224.0", + "prefixLen":25, + "network":"193.193.224.0\/25", + "version":51237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.224.0", + "prefixLen":25, + "network":"193.193.224.0\/25", + "version":51237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.224.128", + "prefixLen":25, + "network":"193.193.224.128\/25", + "version":51236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.224.128", + "prefixLen":25, + "network":"193.193.224.128\/25", + "version":51236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.225.0", + "prefixLen":25, + "network":"193.193.225.0\/25", + "version":51235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.225.0", + "prefixLen":25, + "network":"193.193.225.0\/25", + "version":51235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.225.128", + "prefixLen":25, + "network":"193.193.225.128\/25", + "version":51234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.225.128", + "prefixLen":25, + "network":"193.193.225.128\/25", + "version":51234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.226.0", + "prefixLen":25, + "network":"193.193.226.0\/25", + "version":51233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.226.0", + "prefixLen":25, + "network":"193.193.226.0\/25", + "version":51233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.226.128", + "prefixLen":25, + "network":"193.193.226.128\/25", + "version":51232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.226.128", + "prefixLen":25, + "network":"193.193.226.128\/25", + "version":51232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.227.0", + "prefixLen":25, + "network":"193.193.227.0\/25", + "version":51231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.227.0", + "prefixLen":25, + "network":"193.193.227.0\/25", + "version":51231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.227.128", + "prefixLen":25, + "network":"193.193.227.128\/25", + "version":51230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.227.128", + "prefixLen":25, + "network":"193.193.227.128\/25", + "version":51230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.240.0", + "prefixLen":25, + "network":"193.193.240.0\/25", + "version":51229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.240.0", + "prefixLen":25, + "network":"193.193.240.0\/25", + "version":51229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.240.128", + "prefixLen":25, + "network":"193.193.240.128\/25", + "version":51228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.240.128", + "prefixLen":25, + "network":"193.193.240.128\/25", + "version":51228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.241.0", + "prefixLen":25, + "network":"193.193.241.0\/25", + "version":51227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.241.0", + "prefixLen":25, + "network":"193.193.241.0\/25", + "version":51227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.241.128", + "prefixLen":25, + "network":"193.193.241.128\/25", + "version":51226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.241.128", + "prefixLen":25, + "network":"193.193.241.128\/25", + "version":51226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.242.0", + "prefixLen":25, + "network":"193.193.242.0\/25", + "version":51225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.242.0", + "prefixLen":25, + "network":"193.193.242.0\/25", + "version":51225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.242.128", + "prefixLen":25, + "network":"193.193.242.128\/25", + "version":51224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.242.128", + "prefixLen":25, + "network":"193.193.242.128\/25", + "version":51224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.243.0", + "prefixLen":25, + "network":"193.193.243.0\/25", + "version":51223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.243.0", + "prefixLen":25, + "network":"193.193.243.0\/25", + "version":51223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.193.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.193.243.128", + "prefixLen":25, + "network":"193.193.243.128\/25", + "version":51222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.193.243.128", + "prefixLen":25, + "network":"193.193.243.128\/25", + "version":51222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64881 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.0.0", + "prefixLen":25, + "network":"193.194.0.0\/25", + "version":51349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.0.0", + "prefixLen":25, + "network":"193.194.0.0\/25", + "version":51349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.0.128", + "prefixLen":25, + "network":"193.194.0.128\/25", + "version":51476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.0.128", + "prefixLen":25, + "network":"193.194.0.128\/25", + "version":51476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.1.0", + "prefixLen":25, + "network":"193.194.1.0\/25", + "version":51475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.1.0", + "prefixLen":25, + "network":"193.194.1.0\/25", + "version":51475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.1.128", + "prefixLen":25, + "network":"193.194.1.128\/25", + "version":51474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.1.128", + "prefixLen":25, + "network":"193.194.1.128\/25", + "version":51474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.2.0", + "prefixLen":25, + "network":"193.194.2.0\/25", + "version":51473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.2.0", + "prefixLen":25, + "network":"193.194.2.0\/25", + "version":51473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.2.128", + "prefixLen":25, + "network":"193.194.2.128\/25", + "version":51472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.2.128", + "prefixLen":25, + "network":"193.194.2.128\/25", + "version":51472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.3.0", + "prefixLen":25, + "network":"193.194.3.0\/25", + "version":51471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.3.0", + "prefixLen":25, + "network":"193.194.3.0\/25", + "version":51471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.3.128", + "prefixLen":25, + "network":"193.194.3.128\/25", + "version":51470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.3.128", + "prefixLen":25, + "network":"193.194.3.128\/25", + "version":51470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.16.0", + "prefixLen":25, + "network":"193.194.16.0\/25", + "version":51469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.16.0", + "prefixLen":25, + "network":"193.194.16.0\/25", + "version":51469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.16.128", + "prefixLen":25, + "network":"193.194.16.128\/25", + "version":51468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.16.128", + "prefixLen":25, + "network":"193.194.16.128\/25", + "version":51468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.17.0", + "prefixLen":25, + "network":"193.194.17.0\/25", + "version":51467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.17.0", + "prefixLen":25, + "network":"193.194.17.0\/25", + "version":51467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.17.128", + "prefixLen":25, + "network":"193.194.17.128\/25", + "version":51466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.17.128", + "prefixLen":25, + "network":"193.194.17.128\/25", + "version":51466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.18.0", + "prefixLen":25, + "network":"193.194.18.0\/25", + "version":51465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.18.0", + "prefixLen":25, + "network":"193.194.18.0\/25", + "version":51465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.18.128", + "prefixLen":25, + "network":"193.194.18.128\/25", + "version":51464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.18.128", + "prefixLen":25, + "network":"193.194.18.128\/25", + "version":51464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.19.0", + "prefixLen":25, + "network":"193.194.19.0\/25", + "version":51463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.19.0", + "prefixLen":25, + "network":"193.194.19.0\/25", + "version":51463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.19.128", + "prefixLen":25, + "network":"193.194.19.128\/25", + "version":51462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.19.128", + "prefixLen":25, + "network":"193.194.19.128\/25", + "version":51462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.32.0", + "prefixLen":25, + "network":"193.194.32.0\/25", + "version":51461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.32.0", + "prefixLen":25, + "network":"193.194.32.0\/25", + "version":51461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.32.128", + "prefixLen":25, + "network":"193.194.32.128\/25", + "version":51460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.32.128", + "prefixLen":25, + "network":"193.194.32.128\/25", + "version":51460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.33.0", + "prefixLen":25, + "network":"193.194.33.0\/25", + "version":51459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.33.0", + "prefixLen":25, + "network":"193.194.33.0\/25", + "version":51459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.33.128", + "prefixLen":25, + "network":"193.194.33.128\/25", + "version":51458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.33.128", + "prefixLen":25, + "network":"193.194.33.128\/25", + "version":51458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.34.0", + "prefixLen":25, + "network":"193.194.34.0\/25", + "version":51457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.34.0", + "prefixLen":25, + "network":"193.194.34.0\/25", + "version":51457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.34.128", + "prefixLen":25, + "network":"193.194.34.128\/25", + "version":51456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.34.128", + "prefixLen":25, + "network":"193.194.34.128\/25", + "version":51456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.35.0", + "prefixLen":25, + "network":"193.194.35.0\/25", + "version":51455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.35.0", + "prefixLen":25, + "network":"193.194.35.0\/25", + "version":51455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.35.128", + "prefixLen":25, + "network":"193.194.35.128\/25", + "version":51454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.35.128", + "prefixLen":25, + "network":"193.194.35.128\/25", + "version":51454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.48.0", + "prefixLen":25, + "network":"193.194.48.0\/25", + "version":51453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.48.0", + "prefixLen":25, + "network":"193.194.48.0\/25", + "version":51453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.48.128", + "prefixLen":25, + "network":"193.194.48.128\/25", + "version":51452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.48.128", + "prefixLen":25, + "network":"193.194.48.128\/25", + "version":51452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.49.0", + "prefixLen":25, + "network":"193.194.49.0\/25", + "version":51451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.49.0", + "prefixLen":25, + "network":"193.194.49.0\/25", + "version":51451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.49.128", + "prefixLen":25, + "network":"193.194.49.128\/25", + "version":51450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.49.128", + "prefixLen":25, + "network":"193.194.49.128\/25", + "version":51450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.50.0", + "prefixLen":25, + "network":"193.194.50.0\/25", + "version":51449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.50.0", + "prefixLen":25, + "network":"193.194.50.0\/25", + "version":51449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.50.128", + "prefixLen":25, + "network":"193.194.50.128\/25", + "version":51448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.50.128", + "prefixLen":25, + "network":"193.194.50.128\/25", + "version":51448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.51.0", + "prefixLen":25, + "network":"193.194.51.0\/25", + "version":51447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.51.0", + "prefixLen":25, + "network":"193.194.51.0\/25", + "version":51447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.51.128", + "prefixLen":25, + "network":"193.194.51.128\/25", + "version":51446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.51.128", + "prefixLen":25, + "network":"193.194.51.128\/25", + "version":51446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.64.0", + "prefixLen":25, + "network":"193.194.64.0\/25", + "version":51445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.64.0", + "prefixLen":25, + "network":"193.194.64.0\/25", + "version":51445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.64.128", + "prefixLen":25, + "network":"193.194.64.128\/25", + "version":51444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.64.128", + "prefixLen":25, + "network":"193.194.64.128\/25", + "version":51444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.65.0", + "prefixLen":25, + "network":"193.194.65.0\/25", + "version":51443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.65.0", + "prefixLen":25, + "network":"193.194.65.0\/25", + "version":51443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.65.128", + "prefixLen":25, + "network":"193.194.65.128\/25", + "version":51442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.65.128", + "prefixLen":25, + "network":"193.194.65.128\/25", + "version":51442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.66.0", + "prefixLen":25, + "network":"193.194.66.0\/25", + "version":51441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.66.0", + "prefixLen":25, + "network":"193.194.66.0\/25", + "version":51441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.66.128", + "prefixLen":25, + "network":"193.194.66.128\/25", + "version":51440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.66.128", + "prefixLen":25, + "network":"193.194.66.128\/25", + "version":51440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.67.0", + "prefixLen":25, + "network":"193.194.67.0\/25", + "version":51439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.67.0", + "prefixLen":25, + "network":"193.194.67.0\/25", + "version":51439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.67.128", + "prefixLen":25, + "network":"193.194.67.128\/25", + "version":51438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.67.128", + "prefixLen":25, + "network":"193.194.67.128\/25", + "version":51438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.80.0", + "prefixLen":25, + "network":"193.194.80.0\/25", + "version":51437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.80.0", + "prefixLen":25, + "network":"193.194.80.0\/25", + "version":51437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.80.128", + "prefixLen":25, + "network":"193.194.80.128\/25", + "version":51436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.80.128", + "prefixLen":25, + "network":"193.194.80.128\/25", + "version":51436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.81.0", + "prefixLen":25, + "network":"193.194.81.0\/25", + "version":51435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.81.0", + "prefixLen":25, + "network":"193.194.81.0\/25", + "version":51435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.81.128", + "prefixLen":25, + "network":"193.194.81.128\/25", + "version":51434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.81.128", + "prefixLen":25, + "network":"193.194.81.128\/25", + "version":51434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.82.0", + "prefixLen":25, + "network":"193.194.82.0\/25", + "version":51433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.82.0", + "prefixLen":25, + "network":"193.194.82.0\/25", + "version":51433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.82.128", + "prefixLen":25, + "network":"193.194.82.128\/25", + "version":51432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.82.128", + "prefixLen":25, + "network":"193.194.82.128\/25", + "version":51432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.83.0", + "prefixLen":25, + "network":"193.194.83.0\/25", + "version":51431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.83.0", + "prefixLen":25, + "network":"193.194.83.0\/25", + "version":51431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.83.128", + "prefixLen":25, + "network":"193.194.83.128\/25", + "version":51430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.83.128", + "prefixLen":25, + "network":"193.194.83.128\/25", + "version":51430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.96.0", + "prefixLen":25, + "network":"193.194.96.0\/25", + "version":51429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.96.0", + "prefixLen":25, + "network":"193.194.96.0\/25", + "version":51429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.96.128", + "prefixLen":25, + "network":"193.194.96.128\/25", + "version":51428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.96.128", + "prefixLen":25, + "network":"193.194.96.128\/25", + "version":51428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.97.0", + "prefixLen":25, + "network":"193.194.97.0\/25", + "version":51427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.97.0", + "prefixLen":25, + "network":"193.194.97.0\/25", + "version":51427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.97.128", + "prefixLen":25, + "network":"193.194.97.128\/25", + "version":51426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.97.128", + "prefixLen":25, + "network":"193.194.97.128\/25", + "version":51426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.98.0", + "prefixLen":25, + "network":"193.194.98.0\/25", + "version":51425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.98.0", + "prefixLen":25, + "network":"193.194.98.0\/25", + "version":51425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.98.128", + "prefixLen":25, + "network":"193.194.98.128\/25", + "version":51424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.98.128", + "prefixLen":25, + "network":"193.194.98.128\/25", + "version":51424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.99.0", + "prefixLen":25, + "network":"193.194.99.0\/25", + "version":51423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.99.0", + "prefixLen":25, + "network":"193.194.99.0\/25", + "version":51423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.99.128", + "prefixLen":25, + "network":"193.194.99.128\/25", + "version":51422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.99.128", + "prefixLen":25, + "network":"193.194.99.128\/25", + "version":51422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.112.0", + "prefixLen":25, + "network":"193.194.112.0\/25", + "version":51421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.112.0", + "prefixLen":25, + "network":"193.194.112.0\/25", + "version":51421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.112.128", + "prefixLen":25, + "network":"193.194.112.128\/25", + "version":51420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.112.128", + "prefixLen":25, + "network":"193.194.112.128\/25", + "version":51420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.113.0", + "prefixLen":25, + "network":"193.194.113.0\/25", + "version":51419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.113.0", + "prefixLen":25, + "network":"193.194.113.0\/25", + "version":51419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.113.128", + "prefixLen":25, + "network":"193.194.113.128\/25", + "version":51418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.113.128", + "prefixLen":25, + "network":"193.194.113.128\/25", + "version":51418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.114.0", + "prefixLen":25, + "network":"193.194.114.0\/25", + "version":51417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.114.0", + "prefixLen":25, + "network":"193.194.114.0\/25", + "version":51417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.114.128", + "prefixLen":25, + "network":"193.194.114.128\/25", + "version":51416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.114.128", + "prefixLen":25, + "network":"193.194.114.128\/25", + "version":51416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.115.0", + "prefixLen":25, + "network":"193.194.115.0\/25", + "version":51415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.115.0", + "prefixLen":25, + "network":"193.194.115.0\/25", + "version":51415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.115.128", + "prefixLen":25, + "network":"193.194.115.128\/25", + "version":51414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.115.128", + "prefixLen":25, + "network":"193.194.115.128\/25", + "version":51414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.128.0", + "prefixLen":25, + "network":"193.194.128.0\/25", + "version":51413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.128.0", + "prefixLen":25, + "network":"193.194.128.0\/25", + "version":51413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.128.128", + "prefixLen":25, + "network":"193.194.128.128\/25", + "version":51412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.128.128", + "prefixLen":25, + "network":"193.194.128.128\/25", + "version":51412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.129.0", + "prefixLen":25, + "network":"193.194.129.0\/25", + "version":51411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.129.0", + "prefixLen":25, + "network":"193.194.129.0\/25", + "version":51411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.129.128", + "prefixLen":25, + "network":"193.194.129.128\/25", + "version":51410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.129.128", + "prefixLen":25, + "network":"193.194.129.128\/25", + "version":51410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.130.0", + "prefixLen":25, + "network":"193.194.130.0\/25", + "version":51409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.130.0", + "prefixLen":25, + "network":"193.194.130.0\/25", + "version":51409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.130.128", + "prefixLen":25, + "network":"193.194.130.128\/25", + "version":51408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.130.128", + "prefixLen":25, + "network":"193.194.130.128\/25", + "version":51408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.131.0", + "prefixLen":25, + "network":"193.194.131.0\/25", + "version":51407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.131.0", + "prefixLen":25, + "network":"193.194.131.0\/25", + "version":51407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.131.128", + "prefixLen":25, + "network":"193.194.131.128\/25", + "version":51406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.131.128", + "prefixLen":25, + "network":"193.194.131.128\/25", + "version":51406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.144.0", + "prefixLen":25, + "network":"193.194.144.0\/25", + "version":51405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.144.0", + "prefixLen":25, + "network":"193.194.144.0\/25", + "version":51405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.144.128", + "prefixLen":25, + "network":"193.194.144.128\/25", + "version":51404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.144.128", + "prefixLen":25, + "network":"193.194.144.128\/25", + "version":51404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.145.0", + "prefixLen":25, + "network":"193.194.145.0\/25", + "version":51403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.145.0", + "prefixLen":25, + "network":"193.194.145.0\/25", + "version":51403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.145.128", + "prefixLen":25, + "network":"193.194.145.128\/25", + "version":51402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.145.128", + "prefixLen":25, + "network":"193.194.145.128\/25", + "version":51402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.146.0", + "prefixLen":25, + "network":"193.194.146.0\/25", + "version":51401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.146.0", + "prefixLen":25, + "network":"193.194.146.0\/25", + "version":51401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.146.128", + "prefixLen":25, + "network":"193.194.146.128\/25", + "version":51400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.146.128", + "prefixLen":25, + "network":"193.194.146.128\/25", + "version":51400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.147.0", + "prefixLen":25, + "network":"193.194.147.0\/25", + "version":51399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.147.0", + "prefixLen":25, + "network":"193.194.147.0\/25", + "version":51399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.147.128", + "prefixLen":25, + "network":"193.194.147.128\/25", + "version":51398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.147.128", + "prefixLen":25, + "network":"193.194.147.128\/25", + "version":51398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.160.0", + "prefixLen":25, + "network":"193.194.160.0\/25", + "version":51397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.160.0", + "prefixLen":25, + "network":"193.194.160.0\/25", + "version":51397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.160.128", + "prefixLen":25, + "network":"193.194.160.128\/25", + "version":51396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.160.128", + "prefixLen":25, + "network":"193.194.160.128\/25", + "version":51396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.161.0", + "prefixLen":25, + "network":"193.194.161.0\/25", + "version":51395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.161.0", + "prefixLen":25, + "network":"193.194.161.0\/25", + "version":51395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.161.128", + "prefixLen":25, + "network":"193.194.161.128\/25", + "version":51394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.161.128", + "prefixLen":25, + "network":"193.194.161.128\/25", + "version":51394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.162.0", + "prefixLen":25, + "network":"193.194.162.0\/25", + "version":51393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.162.0", + "prefixLen":25, + "network":"193.194.162.0\/25", + "version":51393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.162.128", + "prefixLen":25, + "network":"193.194.162.128\/25", + "version":51392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.162.128", + "prefixLen":25, + "network":"193.194.162.128\/25", + "version":51392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.163.0", + "prefixLen":25, + "network":"193.194.163.0\/25", + "version":51391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.163.0", + "prefixLen":25, + "network":"193.194.163.0\/25", + "version":51391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.163.128", + "prefixLen":25, + "network":"193.194.163.128\/25", + "version":51390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.163.128", + "prefixLen":25, + "network":"193.194.163.128\/25", + "version":51390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.176.0", + "prefixLen":25, + "network":"193.194.176.0\/25", + "version":51389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.176.0", + "prefixLen":25, + "network":"193.194.176.0\/25", + "version":51389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.176.128", + "prefixLen":25, + "network":"193.194.176.128\/25", + "version":51388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.176.128", + "prefixLen":25, + "network":"193.194.176.128\/25", + "version":51388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.177.0", + "prefixLen":25, + "network":"193.194.177.0\/25", + "version":51387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.177.0", + "prefixLen":25, + "network":"193.194.177.0\/25", + "version":51387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.177.128", + "prefixLen":25, + "network":"193.194.177.128\/25", + "version":51386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.177.128", + "prefixLen":25, + "network":"193.194.177.128\/25", + "version":51386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.178.0", + "prefixLen":25, + "network":"193.194.178.0\/25", + "version":51385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.178.0", + "prefixLen":25, + "network":"193.194.178.0\/25", + "version":51385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.178.128", + "prefixLen":25, + "network":"193.194.178.128\/25", + "version":51384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.178.128", + "prefixLen":25, + "network":"193.194.178.128\/25", + "version":51384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.179.0", + "prefixLen":25, + "network":"193.194.179.0\/25", + "version":51383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.179.0", + "prefixLen":25, + "network":"193.194.179.0\/25", + "version":51383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.179.128", + "prefixLen":25, + "network":"193.194.179.128\/25", + "version":51382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.179.128", + "prefixLen":25, + "network":"193.194.179.128\/25", + "version":51382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.192.0", + "prefixLen":25, + "network":"193.194.192.0\/25", + "version":51381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.192.0", + "prefixLen":25, + "network":"193.194.192.0\/25", + "version":51381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.192.128", + "prefixLen":25, + "network":"193.194.192.128\/25", + "version":51380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.192.128", + "prefixLen":25, + "network":"193.194.192.128\/25", + "version":51380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.193.0", + "prefixLen":25, + "network":"193.194.193.0\/25", + "version":51379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.193.0", + "prefixLen":25, + "network":"193.194.193.0\/25", + "version":51379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.193.128", + "prefixLen":25, + "network":"193.194.193.128\/25", + "version":51378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.193.128", + "prefixLen":25, + "network":"193.194.193.128\/25", + "version":51378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.194.0", + "prefixLen":25, + "network":"193.194.194.0\/25", + "version":51377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.194.0", + "prefixLen":25, + "network":"193.194.194.0\/25", + "version":51377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.194.128", + "prefixLen":25, + "network":"193.194.194.128\/25", + "version":51376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.194.128", + "prefixLen":25, + "network":"193.194.194.128\/25", + "version":51376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.195.0", + "prefixLen":25, + "network":"193.194.195.0\/25", + "version":51375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.195.0", + "prefixLen":25, + "network":"193.194.195.0\/25", + "version":51375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.195.128", + "prefixLen":25, + "network":"193.194.195.128\/25", + "version":51374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.195.128", + "prefixLen":25, + "network":"193.194.195.128\/25", + "version":51374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.208.0", + "prefixLen":25, + "network":"193.194.208.0\/25", + "version":51373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.208.0", + "prefixLen":25, + "network":"193.194.208.0\/25", + "version":51373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.208.128", + "prefixLen":25, + "network":"193.194.208.128\/25", + "version":51372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.208.128", + "prefixLen":25, + "network":"193.194.208.128\/25", + "version":51372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.209.0", + "prefixLen":25, + "network":"193.194.209.0\/25", + "version":51371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.209.0", + "prefixLen":25, + "network":"193.194.209.0\/25", + "version":51371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.209.128", + "prefixLen":25, + "network":"193.194.209.128\/25", + "version":51370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.209.128", + "prefixLen":25, + "network":"193.194.209.128\/25", + "version":51370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.210.0", + "prefixLen":25, + "network":"193.194.210.0\/25", + "version":51369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.210.0", + "prefixLen":25, + "network":"193.194.210.0\/25", + "version":51369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.210.128", + "prefixLen":25, + "network":"193.194.210.128\/25", + "version":51368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.210.128", + "prefixLen":25, + "network":"193.194.210.128\/25", + "version":51368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.211.0", + "prefixLen":25, + "network":"193.194.211.0\/25", + "version":51367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.211.0", + "prefixLen":25, + "network":"193.194.211.0\/25", + "version":51367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.211.128", + "prefixLen":25, + "network":"193.194.211.128\/25", + "version":51366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.211.128", + "prefixLen":25, + "network":"193.194.211.128\/25", + "version":51366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.224.0", + "prefixLen":25, + "network":"193.194.224.0\/25", + "version":51365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.224.0", + "prefixLen":25, + "network":"193.194.224.0\/25", + "version":51365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.224.128", + "prefixLen":25, + "network":"193.194.224.128\/25", + "version":51364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.224.128", + "prefixLen":25, + "network":"193.194.224.128\/25", + "version":51364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.225.0", + "prefixLen":25, + "network":"193.194.225.0\/25", + "version":51363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.225.0", + "prefixLen":25, + "network":"193.194.225.0\/25", + "version":51363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.225.128", + "prefixLen":25, + "network":"193.194.225.128\/25", + "version":51362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.225.128", + "prefixLen":25, + "network":"193.194.225.128\/25", + "version":51362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.226.0", + "prefixLen":25, + "network":"193.194.226.0\/25", + "version":51361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.226.0", + "prefixLen":25, + "network":"193.194.226.0\/25", + "version":51361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.226.128", + "prefixLen":25, + "network":"193.194.226.128\/25", + "version":51360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.226.128", + "prefixLen":25, + "network":"193.194.226.128\/25", + "version":51360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.227.0", + "prefixLen":25, + "network":"193.194.227.0\/25", + "version":51359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.227.0", + "prefixLen":25, + "network":"193.194.227.0\/25", + "version":51359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.227.128", + "prefixLen":25, + "network":"193.194.227.128\/25", + "version":51358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.227.128", + "prefixLen":25, + "network":"193.194.227.128\/25", + "version":51358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.240.0", + "prefixLen":25, + "network":"193.194.240.0\/25", + "version":51357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.240.0", + "prefixLen":25, + "network":"193.194.240.0\/25", + "version":51357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.240.128", + "prefixLen":25, + "network":"193.194.240.128\/25", + "version":51356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.240.128", + "prefixLen":25, + "network":"193.194.240.128\/25", + "version":51356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.241.0", + "prefixLen":25, + "network":"193.194.241.0\/25", + "version":51355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.241.0", + "prefixLen":25, + "network":"193.194.241.0\/25", + "version":51355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.241.128", + "prefixLen":25, + "network":"193.194.241.128\/25", + "version":51354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.241.128", + "prefixLen":25, + "network":"193.194.241.128\/25", + "version":51354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.242.0", + "prefixLen":25, + "network":"193.194.242.0\/25", + "version":51353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.242.0", + "prefixLen":25, + "network":"193.194.242.0\/25", + "version":51353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.242.128", + "prefixLen":25, + "network":"193.194.242.128\/25", + "version":51352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.242.128", + "prefixLen":25, + "network":"193.194.242.128\/25", + "version":51352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.243.0", + "prefixLen":25, + "network":"193.194.243.0\/25", + "version":51351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.243.0", + "prefixLen":25, + "network":"193.194.243.0\/25", + "version":51351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.194.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.194.243.128", + "prefixLen":25, + "network":"193.194.243.128\/25", + "version":51350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.194.243.128", + "prefixLen":25, + "network":"193.194.243.128\/25", + "version":51350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64882 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.0.0", + "prefixLen":25, + "network":"193.195.0.0\/25", + "version":51477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.0.0", + "prefixLen":25, + "network":"193.195.0.0\/25", + "version":51477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.0.128", + "prefixLen":25, + "network":"193.195.0.128\/25", + "version":51604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.0.128", + "prefixLen":25, + "network":"193.195.0.128\/25", + "version":51604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.1.0", + "prefixLen":25, + "network":"193.195.1.0\/25", + "version":51603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.1.0", + "prefixLen":25, + "network":"193.195.1.0\/25", + "version":51603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.1.128", + "prefixLen":25, + "network":"193.195.1.128\/25", + "version":51602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.1.128", + "prefixLen":25, + "network":"193.195.1.128\/25", + "version":51602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.2.0", + "prefixLen":25, + "network":"193.195.2.0\/25", + "version":51601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.2.0", + "prefixLen":25, + "network":"193.195.2.0\/25", + "version":51601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.2.128", + "prefixLen":25, + "network":"193.195.2.128\/25", + "version":51600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.2.128", + "prefixLen":25, + "network":"193.195.2.128\/25", + "version":51600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.3.0", + "prefixLen":25, + "network":"193.195.3.0\/25", + "version":51599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.3.0", + "prefixLen":25, + "network":"193.195.3.0\/25", + "version":51599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.3.128", + "prefixLen":25, + "network":"193.195.3.128\/25", + "version":51598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.3.128", + "prefixLen":25, + "network":"193.195.3.128\/25", + "version":51598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.16.0", + "prefixLen":25, + "network":"193.195.16.0\/25", + "version":51597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.16.0", + "prefixLen":25, + "network":"193.195.16.0\/25", + "version":51597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.16.128", + "prefixLen":25, + "network":"193.195.16.128\/25", + "version":51596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.16.128", + "prefixLen":25, + "network":"193.195.16.128\/25", + "version":51596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.17.0", + "prefixLen":25, + "network":"193.195.17.0\/25", + "version":51595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.17.0", + "prefixLen":25, + "network":"193.195.17.0\/25", + "version":51595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.17.128", + "prefixLen":25, + "network":"193.195.17.128\/25", + "version":51594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.17.128", + "prefixLen":25, + "network":"193.195.17.128\/25", + "version":51594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.18.0", + "prefixLen":25, + "network":"193.195.18.0\/25", + "version":51593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.18.0", + "prefixLen":25, + "network":"193.195.18.0\/25", + "version":51593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.18.128", + "prefixLen":25, + "network":"193.195.18.128\/25", + "version":51592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.18.128", + "prefixLen":25, + "network":"193.195.18.128\/25", + "version":51592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.19.0", + "prefixLen":25, + "network":"193.195.19.0\/25", + "version":51591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.19.0", + "prefixLen":25, + "network":"193.195.19.0\/25", + "version":51591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.19.128", + "prefixLen":25, + "network":"193.195.19.128\/25", + "version":51590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.19.128", + "prefixLen":25, + "network":"193.195.19.128\/25", + "version":51590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.32.0", + "prefixLen":25, + "network":"193.195.32.0\/25", + "version":51589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.32.0", + "prefixLen":25, + "network":"193.195.32.0\/25", + "version":51589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.32.128", + "prefixLen":25, + "network":"193.195.32.128\/25", + "version":51588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.32.128", + "prefixLen":25, + "network":"193.195.32.128\/25", + "version":51588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.33.0", + "prefixLen":25, + "network":"193.195.33.0\/25", + "version":51587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.33.0", + "prefixLen":25, + "network":"193.195.33.0\/25", + "version":51587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.33.128", + "prefixLen":25, + "network":"193.195.33.128\/25", + "version":51586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.33.128", + "prefixLen":25, + "network":"193.195.33.128\/25", + "version":51586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.34.0", + "prefixLen":25, + "network":"193.195.34.0\/25", + "version":51585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.34.0", + "prefixLen":25, + "network":"193.195.34.0\/25", + "version":51585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.34.128", + "prefixLen":25, + "network":"193.195.34.128\/25", + "version":51584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.34.128", + "prefixLen":25, + "network":"193.195.34.128\/25", + "version":51584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.35.0", + "prefixLen":25, + "network":"193.195.35.0\/25", + "version":51583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.35.0", + "prefixLen":25, + "network":"193.195.35.0\/25", + "version":51583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.35.128", + "prefixLen":25, + "network":"193.195.35.128\/25", + "version":51582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.35.128", + "prefixLen":25, + "network":"193.195.35.128\/25", + "version":51582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.48.0", + "prefixLen":25, + "network":"193.195.48.0\/25", + "version":51581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.48.0", + "prefixLen":25, + "network":"193.195.48.0\/25", + "version":51581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.48.128", + "prefixLen":25, + "network":"193.195.48.128\/25", + "version":51580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.48.128", + "prefixLen":25, + "network":"193.195.48.128\/25", + "version":51580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.49.0", + "prefixLen":25, + "network":"193.195.49.0\/25", + "version":51579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.49.0", + "prefixLen":25, + "network":"193.195.49.0\/25", + "version":51579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.49.128", + "prefixLen":25, + "network":"193.195.49.128\/25", + "version":51578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.49.128", + "prefixLen":25, + "network":"193.195.49.128\/25", + "version":51578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.50.0", + "prefixLen":25, + "network":"193.195.50.0\/25", + "version":51577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.50.0", + "prefixLen":25, + "network":"193.195.50.0\/25", + "version":51577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.50.128", + "prefixLen":25, + "network":"193.195.50.128\/25", + "version":51576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.50.128", + "prefixLen":25, + "network":"193.195.50.128\/25", + "version":51576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.51.0", + "prefixLen":25, + "network":"193.195.51.0\/25", + "version":51575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.51.0", + "prefixLen":25, + "network":"193.195.51.0\/25", + "version":51575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.51.128", + "prefixLen":25, + "network":"193.195.51.128\/25", + "version":51574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.51.128", + "prefixLen":25, + "network":"193.195.51.128\/25", + "version":51574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.64.0", + "prefixLen":25, + "network":"193.195.64.0\/25", + "version":51573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.64.0", + "prefixLen":25, + "network":"193.195.64.0\/25", + "version":51573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.64.128", + "prefixLen":25, + "network":"193.195.64.128\/25", + "version":51572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.64.128", + "prefixLen":25, + "network":"193.195.64.128\/25", + "version":51572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.65.0", + "prefixLen":25, + "network":"193.195.65.0\/25", + "version":51571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.65.0", + "prefixLen":25, + "network":"193.195.65.0\/25", + "version":51571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.65.128", + "prefixLen":25, + "network":"193.195.65.128\/25", + "version":51570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.65.128", + "prefixLen":25, + "network":"193.195.65.128\/25", + "version":51570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.66.0", + "prefixLen":25, + "network":"193.195.66.0\/25", + "version":51569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.66.0", + "prefixLen":25, + "network":"193.195.66.0\/25", + "version":51569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.66.128", + "prefixLen":25, + "network":"193.195.66.128\/25", + "version":51568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.66.128", + "prefixLen":25, + "network":"193.195.66.128\/25", + "version":51568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.67.0", + "prefixLen":25, + "network":"193.195.67.0\/25", + "version":51567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.67.0", + "prefixLen":25, + "network":"193.195.67.0\/25", + "version":51567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.67.128", + "prefixLen":25, + "network":"193.195.67.128\/25", + "version":51566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.67.128", + "prefixLen":25, + "network":"193.195.67.128\/25", + "version":51566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.80.0", + "prefixLen":25, + "network":"193.195.80.0\/25", + "version":51565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.80.0", + "prefixLen":25, + "network":"193.195.80.0\/25", + "version":51565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.80.128", + "prefixLen":25, + "network":"193.195.80.128\/25", + "version":51564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.80.128", + "prefixLen":25, + "network":"193.195.80.128\/25", + "version":51564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.81.0", + "prefixLen":25, + "network":"193.195.81.0\/25", + "version":51563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.81.0", + "prefixLen":25, + "network":"193.195.81.0\/25", + "version":51563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.81.128", + "prefixLen":25, + "network":"193.195.81.128\/25", + "version":51562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.81.128", + "prefixLen":25, + "network":"193.195.81.128\/25", + "version":51562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.82.0", + "prefixLen":25, + "network":"193.195.82.0\/25", + "version":51561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.82.0", + "prefixLen":25, + "network":"193.195.82.0\/25", + "version":51561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.82.128", + "prefixLen":25, + "network":"193.195.82.128\/25", + "version":51560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.82.128", + "prefixLen":25, + "network":"193.195.82.128\/25", + "version":51560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.83.0", + "prefixLen":25, + "network":"193.195.83.0\/25", + "version":51559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.83.0", + "prefixLen":25, + "network":"193.195.83.0\/25", + "version":51559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.83.128", + "prefixLen":25, + "network":"193.195.83.128\/25", + "version":51558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.83.128", + "prefixLen":25, + "network":"193.195.83.128\/25", + "version":51558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.96.0", + "prefixLen":25, + "network":"193.195.96.0\/25", + "version":51557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.96.0", + "prefixLen":25, + "network":"193.195.96.0\/25", + "version":51557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.96.128", + "prefixLen":25, + "network":"193.195.96.128\/25", + "version":51556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.96.128", + "prefixLen":25, + "network":"193.195.96.128\/25", + "version":51556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.97.0", + "prefixLen":25, + "network":"193.195.97.0\/25", + "version":51555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.97.0", + "prefixLen":25, + "network":"193.195.97.0\/25", + "version":51555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.97.128", + "prefixLen":25, + "network":"193.195.97.128\/25", + "version":51554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.97.128", + "prefixLen":25, + "network":"193.195.97.128\/25", + "version":51554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.98.0", + "prefixLen":25, + "network":"193.195.98.0\/25", + "version":51553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.98.0", + "prefixLen":25, + "network":"193.195.98.0\/25", + "version":51553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.98.128", + "prefixLen":25, + "network":"193.195.98.128\/25", + "version":51552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.98.128", + "prefixLen":25, + "network":"193.195.98.128\/25", + "version":51552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.99.0", + "prefixLen":25, + "network":"193.195.99.0\/25", + "version":51551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.99.0", + "prefixLen":25, + "network":"193.195.99.0\/25", + "version":51551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.99.128", + "prefixLen":25, + "network":"193.195.99.128\/25", + "version":51550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.99.128", + "prefixLen":25, + "network":"193.195.99.128\/25", + "version":51550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.112.0", + "prefixLen":25, + "network":"193.195.112.0\/25", + "version":51549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.112.0", + "prefixLen":25, + "network":"193.195.112.0\/25", + "version":51549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.112.128", + "prefixLen":25, + "network":"193.195.112.128\/25", + "version":51548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.112.128", + "prefixLen":25, + "network":"193.195.112.128\/25", + "version":51548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.113.0", + "prefixLen":25, + "network":"193.195.113.0\/25", + "version":51547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.113.0", + "prefixLen":25, + "network":"193.195.113.0\/25", + "version":51547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.113.128", + "prefixLen":25, + "network":"193.195.113.128\/25", + "version":51546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.113.128", + "prefixLen":25, + "network":"193.195.113.128\/25", + "version":51546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.114.0", + "prefixLen":25, + "network":"193.195.114.0\/25", + "version":51545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.114.0", + "prefixLen":25, + "network":"193.195.114.0\/25", + "version":51545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.114.128", + "prefixLen":25, + "network":"193.195.114.128\/25", + "version":51544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.114.128", + "prefixLen":25, + "network":"193.195.114.128\/25", + "version":51544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.115.0", + "prefixLen":25, + "network":"193.195.115.0\/25", + "version":51543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.115.0", + "prefixLen":25, + "network":"193.195.115.0\/25", + "version":51543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.115.128", + "prefixLen":25, + "network":"193.195.115.128\/25", + "version":51542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.115.128", + "prefixLen":25, + "network":"193.195.115.128\/25", + "version":51542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.128.0", + "prefixLen":25, + "network":"193.195.128.0\/25", + "version":51541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.128.0", + "prefixLen":25, + "network":"193.195.128.0\/25", + "version":51541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.128.128", + "prefixLen":25, + "network":"193.195.128.128\/25", + "version":51540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.128.128", + "prefixLen":25, + "network":"193.195.128.128\/25", + "version":51540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.129.0", + "prefixLen":25, + "network":"193.195.129.0\/25", + "version":51539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.129.0", + "prefixLen":25, + "network":"193.195.129.0\/25", + "version":51539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.129.128", + "prefixLen":25, + "network":"193.195.129.128\/25", + "version":51538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.129.128", + "prefixLen":25, + "network":"193.195.129.128\/25", + "version":51538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.130.0", + "prefixLen":25, + "network":"193.195.130.0\/25", + "version":51537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.130.0", + "prefixLen":25, + "network":"193.195.130.0\/25", + "version":51537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.130.128", + "prefixLen":25, + "network":"193.195.130.128\/25", + "version":51536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.130.128", + "prefixLen":25, + "network":"193.195.130.128\/25", + "version":51536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.131.0", + "prefixLen":25, + "network":"193.195.131.0\/25", + "version":51535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.131.0", + "prefixLen":25, + "network":"193.195.131.0\/25", + "version":51535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.131.128", + "prefixLen":25, + "network":"193.195.131.128\/25", + "version":51534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.131.128", + "prefixLen":25, + "network":"193.195.131.128\/25", + "version":51534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.144.0", + "prefixLen":25, + "network":"193.195.144.0\/25", + "version":51533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.144.0", + "prefixLen":25, + "network":"193.195.144.0\/25", + "version":51533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.144.128", + "prefixLen":25, + "network":"193.195.144.128\/25", + "version":51532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.144.128", + "prefixLen":25, + "network":"193.195.144.128\/25", + "version":51532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.145.0", + "prefixLen":25, + "network":"193.195.145.0\/25", + "version":51531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.145.0", + "prefixLen":25, + "network":"193.195.145.0\/25", + "version":51531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.145.128", + "prefixLen":25, + "network":"193.195.145.128\/25", + "version":51530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.145.128", + "prefixLen":25, + "network":"193.195.145.128\/25", + "version":51530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.146.0", + "prefixLen":25, + "network":"193.195.146.0\/25", + "version":51529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.146.0", + "prefixLen":25, + "network":"193.195.146.0\/25", + "version":51529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.146.128", + "prefixLen":25, + "network":"193.195.146.128\/25", + "version":51528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.146.128", + "prefixLen":25, + "network":"193.195.146.128\/25", + "version":51528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.147.0", + "prefixLen":25, + "network":"193.195.147.0\/25", + "version":51527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.147.0", + "prefixLen":25, + "network":"193.195.147.0\/25", + "version":51527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.147.128", + "prefixLen":25, + "network":"193.195.147.128\/25", + "version":51526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.147.128", + "prefixLen":25, + "network":"193.195.147.128\/25", + "version":51526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.160.0", + "prefixLen":25, + "network":"193.195.160.0\/25", + "version":51525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.160.0", + "prefixLen":25, + "network":"193.195.160.0\/25", + "version":51525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.160.128", + "prefixLen":25, + "network":"193.195.160.128\/25", + "version":51524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.160.128", + "prefixLen":25, + "network":"193.195.160.128\/25", + "version":51524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.161.0", + "prefixLen":25, + "network":"193.195.161.0\/25", + "version":51523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.161.0", + "prefixLen":25, + "network":"193.195.161.0\/25", + "version":51523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.161.128", + "prefixLen":25, + "network":"193.195.161.128\/25", + "version":51522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.161.128", + "prefixLen":25, + "network":"193.195.161.128\/25", + "version":51522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.162.0", + "prefixLen":25, + "network":"193.195.162.0\/25", + "version":51521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.162.0", + "prefixLen":25, + "network":"193.195.162.0\/25", + "version":51521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.162.128", + "prefixLen":25, + "network":"193.195.162.128\/25", + "version":51520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.162.128", + "prefixLen":25, + "network":"193.195.162.128\/25", + "version":51520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.163.0", + "prefixLen":25, + "network":"193.195.163.0\/25", + "version":51519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.163.0", + "prefixLen":25, + "network":"193.195.163.0\/25", + "version":51519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.163.128", + "prefixLen":25, + "network":"193.195.163.128\/25", + "version":51518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.163.128", + "prefixLen":25, + "network":"193.195.163.128\/25", + "version":51518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.176.0", + "prefixLen":25, + "network":"193.195.176.0\/25", + "version":51517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.176.0", + "prefixLen":25, + "network":"193.195.176.0\/25", + "version":51517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.176.128", + "prefixLen":25, + "network":"193.195.176.128\/25", + "version":51516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.176.128", + "prefixLen":25, + "network":"193.195.176.128\/25", + "version":51516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.177.0", + "prefixLen":25, + "network":"193.195.177.0\/25", + "version":51515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.177.0", + "prefixLen":25, + "network":"193.195.177.0\/25", + "version":51515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.177.128", + "prefixLen":25, + "network":"193.195.177.128\/25", + "version":51514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.177.128", + "prefixLen":25, + "network":"193.195.177.128\/25", + "version":51514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.178.0", + "prefixLen":25, + "network":"193.195.178.0\/25", + "version":51513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.178.0", + "prefixLen":25, + "network":"193.195.178.0\/25", + "version":51513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.178.128", + "prefixLen":25, + "network":"193.195.178.128\/25", + "version":51512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.178.128", + "prefixLen":25, + "network":"193.195.178.128\/25", + "version":51512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.179.0", + "prefixLen":25, + "network":"193.195.179.0\/25", + "version":51511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.179.0", + "prefixLen":25, + "network":"193.195.179.0\/25", + "version":51511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.179.128", + "prefixLen":25, + "network":"193.195.179.128\/25", + "version":51510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.179.128", + "prefixLen":25, + "network":"193.195.179.128\/25", + "version":51510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.192.0", + "prefixLen":25, + "network":"193.195.192.0\/25", + "version":51509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.192.0", + "prefixLen":25, + "network":"193.195.192.0\/25", + "version":51509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.192.128", + "prefixLen":25, + "network":"193.195.192.128\/25", + "version":51508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.192.128", + "prefixLen":25, + "network":"193.195.192.128\/25", + "version":51508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.193.0", + "prefixLen":25, + "network":"193.195.193.0\/25", + "version":51507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.193.0", + "prefixLen":25, + "network":"193.195.193.0\/25", + "version":51507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.193.128", + "prefixLen":25, + "network":"193.195.193.128\/25", + "version":51506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.193.128", + "prefixLen":25, + "network":"193.195.193.128\/25", + "version":51506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.194.0", + "prefixLen":25, + "network":"193.195.194.0\/25", + "version":51505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.194.0", + "prefixLen":25, + "network":"193.195.194.0\/25", + "version":51505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.194.128", + "prefixLen":25, + "network":"193.195.194.128\/25", + "version":51504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.194.128", + "prefixLen":25, + "network":"193.195.194.128\/25", + "version":51504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.195.0", + "prefixLen":25, + "network":"193.195.195.0\/25", + "version":51503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.195.0", + "prefixLen":25, + "network":"193.195.195.0\/25", + "version":51503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.195.128", + "prefixLen":25, + "network":"193.195.195.128\/25", + "version":51502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.195.128", + "prefixLen":25, + "network":"193.195.195.128\/25", + "version":51502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.208.0", + "prefixLen":25, + "network":"193.195.208.0\/25", + "version":51501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.208.0", + "prefixLen":25, + "network":"193.195.208.0\/25", + "version":51501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.208.128", + "prefixLen":25, + "network":"193.195.208.128\/25", + "version":51500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.208.128", + "prefixLen":25, + "network":"193.195.208.128\/25", + "version":51500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.209.0", + "prefixLen":25, + "network":"193.195.209.0\/25", + "version":51499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.209.0", + "prefixLen":25, + "network":"193.195.209.0\/25", + "version":51499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.209.128", + "prefixLen":25, + "network":"193.195.209.128\/25", + "version":51498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.209.128", + "prefixLen":25, + "network":"193.195.209.128\/25", + "version":51498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.210.0", + "prefixLen":25, + "network":"193.195.210.0\/25", + "version":51497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.210.0", + "prefixLen":25, + "network":"193.195.210.0\/25", + "version":51497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.210.128", + "prefixLen":25, + "network":"193.195.210.128\/25", + "version":51496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.210.128", + "prefixLen":25, + "network":"193.195.210.128\/25", + "version":51496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.211.0", + "prefixLen":25, + "network":"193.195.211.0\/25", + "version":51495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.211.0", + "prefixLen":25, + "network":"193.195.211.0\/25", + "version":51495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.211.128", + "prefixLen":25, + "network":"193.195.211.128\/25", + "version":51494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.211.128", + "prefixLen":25, + "network":"193.195.211.128\/25", + "version":51494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.224.0", + "prefixLen":25, + "network":"193.195.224.0\/25", + "version":51493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.224.0", + "prefixLen":25, + "network":"193.195.224.0\/25", + "version":51493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.224.128", + "prefixLen":25, + "network":"193.195.224.128\/25", + "version":51492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.224.128", + "prefixLen":25, + "network":"193.195.224.128\/25", + "version":51492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.225.0", + "prefixLen":25, + "network":"193.195.225.0\/25", + "version":51491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.225.0", + "prefixLen":25, + "network":"193.195.225.0\/25", + "version":51491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.225.128", + "prefixLen":25, + "network":"193.195.225.128\/25", + "version":51490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.225.128", + "prefixLen":25, + "network":"193.195.225.128\/25", + "version":51490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.226.0", + "prefixLen":25, + "network":"193.195.226.0\/25", + "version":51489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.226.0", + "prefixLen":25, + "network":"193.195.226.0\/25", + "version":51489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.226.128", + "prefixLen":25, + "network":"193.195.226.128\/25", + "version":51488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.226.128", + "prefixLen":25, + "network":"193.195.226.128\/25", + "version":51488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.227.0", + "prefixLen":25, + "network":"193.195.227.0\/25", + "version":51487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.227.0", + "prefixLen":25, + "network":"193.195.227.0\/25", + "version":51487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.227.128", + "prefixLen":25, + "network":"193.195.227.128\/25", + "version":51486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.227.128", + "prefixLen":25, + "network":"193.195.227.128\/25", + "version":51486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.240.0", + "prefixLen":25, + "network":"193.195.240.0\/25", + "version":51485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.240.0", + "prefixLen":25, + "network":"193.195.240.0\/25", + "version":51485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.240.128", + "prefixLen":25, + "network":"193.195.240.128\/25", + "version":51484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.240.128", + "prefixLen":25, + "network":"193.195.240.128\/25", + "version":51484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.241.0", + "prefixLen":25, + "network":"193.195.241.0\/25", + "version":51483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.241.0", + "prefixLen":25, + "network":"193.195.241.0\/25", + "version":51483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.241.128", + "prefixLen":25, + "network":"193.195.241.128\/25", + "version":51482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.241.128", + "prefixLen":25, + "network":"193.195.241.128\/25", + "version":51482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.242.0", + "prefixLen":25, + "network":"193.195.242.0\/25", + "version":51481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.242.0", + "prefixLen":25, + "network":"193.195.242.0\/25", + "version":51481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.242.128", + "prefixLen":25, + "network":"193.195.242.128\/25", + "version":51480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.242.128", + "prefixLen":25, + "network":"193.195.242.128\/25", + "version":51480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.243.0", + "prefixLen":25, + "network":"193.195.243.0\/25", + "version":51479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.243.0", + "prefixLen":25, + "network":"193.195.243.0\/25", + "version":51479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.195.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.195.243.128", + "prefixLen":25, + "network":"193.195.243.128\/25", + "version":51478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.195.243.128", + "prefixLen":25, + "network":"193.195.243.128\/25", + "version":51478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64883 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.0.0", + "prefixLen":25, + "network":"193.196.0.0\/25", + "version":51605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.0.0", + "prefixLen":25, + "network":"193.196.0.0\/25", + "version":51605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.0.128", + "prefixLen":25, + "network":"193.196.0.128\/25", + "version":51732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.0.128", + "prefixLen":25, + "network":"193.196.0.128\/25", + "version":51732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.1.0", + "prefixLen":25, + "network":"193.196.1.0\/25", + "version":51731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.1.0", + "prefixLen":25, + "network":"193.196.1.0\/25", + "version":51731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.1.128", + "prefixLen":25, + "network":"193.196.1.128\/25", + "version":51730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.1.128", + "prefixLen":25, + "network":"193.196.1.128\/25", + "version":51730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.2.0", + "prefixLen":25, + "network":"193.196.2.0\/25", + "version":51729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.2.0", + "prefixLen":25, + "network":"193.196.2.0\/25", + "version":51729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.2.128", + "prefixLen":25, + "network":"193.196.2.128\/25", + "version":51728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.2.128", + "prefixLen":25, + "network":"193.196.2.128\/25", + "version":51728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.3.0", + "prefixLen":25, + "network":"193.196.3.0\/25", + "version":51727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.3.0", + "prefixLen":25, + "network":"193.196.3.0\/25", + "version":51727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.3.128", + "prefixLen":25, + "network":"193.196.3.128\/25", + "version":51726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.3.128", + "prefixLen":25, + "network":"193.196.3.128\/25", + "version":51726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.16.0", + "prefixLen":25, + "network":"193.196.16.0\/25", + "version":51725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.16.0", + "prefixLen":25, + "network":"193.196.16.0\/25", + "version":51725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.16.128", + "prefixLen":25, + "network":"193.196.16.128\/25", + "version":51724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.16.128", + "prefixLen":25, + "network":"193.196.16.128\/25", + "version":51724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.17.0", + "prefixLen":25, + "network":"193.196.17.0\/25", + "version":51723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.17.0", + "prefixLen":25, + "network":"193.196.17.0\/25", + "version":51723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.17.128", + "prefixLen":25, + "network":"193.196.17.128\/25", + "version":51722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.17.128", + "prefixLen":25, + "network":"193.196.17.128\/25", + "version":51722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.18.0", + "prefixLen":25, + "network":"193.196.18.0\/25", + "version":51721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.18.0", + "prefixLen":25, + "network":"193.196.18.0\/25", + "version":51721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.18.128", + "prefixLen":25, + "network":"193.196.18.128\/25", + "version":51720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.18.128", + "prefixLen":25, + "network":"193.196.18.128\/25", + "version":51720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.19.0", + "prefixLen":25, + "network":"193.196.19.0\/25", + "version":51719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.19.0", + "prefixLen":25, + "network":"193.196.19.0\/25", + "version":51719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.19.128", + "prefixLen":25, + "network":"193.196.19.128\/25", + "version":51718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.19.128", + "prefixLen":25, + "network":"193.196.19.128\/25", + "version":51718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.32.0", + "prefixLen":25, + "network":"193.196.32.0\/25", + "version":51717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.32.0", + "prefixLen":25, + "network":"193.196.32.0\/25", + "version":51717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.32.128", + "prefixLen":25, + "network":"193.196.32.128\/25", + "version":51716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.32.128", + "prefixLen":25, + "network":"193.196.32.128\/25", + "version":51716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.33.0", + "prefixLen":25, + "network":"193.196.33.0\/25", + "version":51715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.33.0", + "prefixLen":25, + "network":"193.196.33.0\/25", + "version":51715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.33.128", + "prefixLen":25, + "network":"193.196.33.128\/25", + "version":51714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.33.128", + "prefixLen":25, + "network":"193.196.33.128\/25", + "version":51714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.34.0", + "prefixLen":25, + "network":"193.196.34.0\/25", + "version":51713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.34.0", + "prefixLen":25, + "network":"193.196.34.0\/25", + "version":51713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.34.128", + "prefixLen":25, + "network":"193.196.34.128\/25", + "version":51712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.34.128", + "prefixLen":25, + "network":"193.196.34.128\/25", + "version":51712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.35.0", + "prefixLen":25, + "network":"193.196.35.0\/25", + "version":51711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.35.0", + "prefixLen":25, + "network":"193.196.35.0\/25", + "version":51711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.35.128", + "prefixLen":25, + "network":"193.196.35.128\/25", + "version":51710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.35.128", + "prefixLen":25, + "network":"193.196.35.128\/25", + "version":51710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.48.0", + "prefixLen":25, + "network":"193.196.48.0\/25", + "version":51709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.48.0", + "prefixLen":25, + "network":"193.196.48.0\/25", + "version":51709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.48.128", + "prefixLen":25, + "network":"193.196.48.128\/25", + "version":51708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.48.128", + "prefixLen":25, + "network":"193.196.48.128\/25", + "version":51708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.49.0", + "prefixLen":25, + "network":"193.196.49.0\/25", + "version":51707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.49.0", + "prefixLen":25, + "network":"193.196.49.0\/25", + "version":51707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.49.128", + "prefixLen":25, + "network":"193.196.49.128\/25", + "version":51706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.49.128", + "prefixLen":25, + "network":"193.196.49.128\/25", + "version":51706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.50.0", + "prefixLen":25, + "network":"193.196.50.0\/25", + "version":51705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.50.0", + "prefixLen":25, + "network":"193.196.50.0\/25", + "version":51705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.50.128", + "prefixLen":25, + "network":"193.196.50.128\/25", + "version":51704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.50.128", + "prefixLen":25, + "network":"193.196.50.128\/25", + "version":51704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.51.0", + "prefixLen":25, + "network":"193.196.51.0\/25", + "version":51703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.51.0", + "prefixLen":25, + "network":"193.196.51.0\/25", + "version":51703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.51.128", + "prefixLen":25, + "network":"193.196.51.128\/25", + "version":51702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.51.128", + "prefixLen":25, + "network":"193.196.51.128\/25", + "version":51702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.64.0", + "prefixLen":25, + "network":"193.196.64.0\/25", + "version":51701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.64.0", + "prefixLen":25, + "network":"193.196.64.0\/25", + "version":51701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.64.128", + "prefixLen":25, + "network":"193.196.64.128\/25", + "version":51700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.64.128", + "prefixLen":25, + "network":"193.196.64.128\/25", + "version":51700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.65.0", + "prefixLen":25, + "network":"193.196.65.0\/25", + "version":51699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.65.0", + "prefixLen":25, + "network":"193.196.65.0\/25", + "version":51699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.65.128", + "prefixLen":25, + "network":"193.196.65.128\/25", + "version":51698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.65.128", + "prefixLen":25, + "network":"193.196.65.128\/25", + "version":51698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.66.0", + "prefixLen":25, + "network":"193.196.66.0\/25", + "version":51697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.66.0", + "prefixLen":25, + "network":"193.196.66.0\/25", + "version":51697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.66.128", + "prefixLen":25, + "network":"193.196.66.128\/25", + "version":51696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.66.128", + "prefixLen":25, + "network":"193.196.66.128\/25", + "version":51696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.67.0", + "prefixLen":25, + "network":"193.196.67.0\/25", + "version":51695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.67.0", + "prefixLen":25, + "network":"193.196.67.0\/25", + "version":51695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.67.128", + "prefixLen":25, + "network":"193.196.67.128\/25", + "version":51694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.67.128", + "prefixLen":25, + "network":"193.196.67.128\/25", + "version":51694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.80.0", + "prefixLen":25, + "network":"193.196.80.0\/25", + "version":51693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.80.0", + "prefixLen":25, + "network":"193.196.80.0\/25", + "version":51693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.80.128", + "prefixLen":25, + "network":"193.196.80.128\/25", + "version":51692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.80.128", + "prefixLen":25, + "network":"193.196.80.128\/25", + "version":51692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.81.0", + "prefixLen":25, + "network":"193.196.81.0\/25", + "version":51691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.81.0", + "prefixLen":25, + "network":"193.196.81.0\/25", + "version":51691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.81.128", + "prefixLen":25, + "network":"193.196.81.128\/25", + "version":51690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.81.128", + "prefixLen":25, + "network":"193.196.81.128\/25", + "version":51690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.82.0", + "prefixLen":25, + "network":"193.196.82.0\/25", + "version":51689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.82.0", + "prefixLen":25, + "network":"193.196.82.0\/25", + "version":51689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.82.128", + "prefixLen":25, + "network":"193.196.82.128\/25", + "version":51688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.82.128", + "prefixLen":25, + "network":"193.196.82.128\/25", + "version":51688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.83.0", + "prefixLen":25, + "network":"193.196.83.0\/25", + "version":51687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.83.0", + "prefixLen":25, + "network":"193.196.83.0\/25", + "version":51687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.83.128", + "prefixLen":25, + "network":"193.196.83.128\/25", + "version":51686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.83.128", + "prefixLen":25, + "network":"193.196.83.128\/25", + "version":51686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.96.0", + "prefixLen":25, + "network":"193.196.96.0\/25", + "version":51685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.96.0", + "prefixLen":25, + "network":"193.196.96.0\/25", + "version":51685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.96.128", + "prefixLen":25, + "network":"193.196.96.128\/25", + "version":51684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.96.128", + "prefixLen":25, + "network":"193.196.96.128\/25", + "version":51684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.97.0", + "prefixLen":25, + "network":"193.196.97.0\/25", + "version":51683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.97.0", + "prefixLen":25, + "network":"193.196.97.0\/25", + "version":51683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.97.128", + "prefixLen":25, + "network":"193.196.97.128\/25", + "version":51682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.97.128", + "prefixLen":25, + "network":"193.196.97.128\/25", + "version":51682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.98.0", + "prefixLen":25, + "network":"193.196.98.0\/25", + "version":51681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.98.0", + "prefixLen":25, + "network":"193.196.98.0\/25", + "version":51681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.98.128", + "prefixLen":25, + "network":"193.196.98.128\/25", + "version":51680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.98.128", + "prefixLen":25, + "network":"193.196.98.128\/25", + "version":51680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.99.0", + "prefixLen":25, + "network":"193.196.99.0\/25", + "version":51679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.99.0", + "prefixLen":25, + "network":"193.196.99.0\/25", + "version":51679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.99.128", + "prefixLen":25, + "network":"193.196.99.128\/25", + "version":51678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.99.128", + "prefixLen":25, + "network":"193.196.99.128\/25", + "version":51678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.112.0", + "prefixLen":25, + "network":"193.196.112.0\/25", + "version":51677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.112.0", + "prefixLen":25, + "network":"193.196.112.0\/25", + "version":51677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.112.128", + "prefixLen":25, + "network":"193.196.112.128\/25", + "version":51676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.112.128", + "prefixLen":25, + "network":"193.196.112.128\/25", + "version":51676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.113.0", + "prefixLen":25, + "network":"193.196.113.0\/25", + "version":51675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.113.0", + "prefixLen":25, + "network":"193.196.113.0\/25", + "version":51675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.113.128", + "prefixLen":25, + "network":"193.196.113.128\/25", + "version":51674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.113.128", + "prefixLen":25, + "network":"193.196.113.128\/25", + "version":51674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.114.0", + "prefixLen":25, + "network":"193.196.114.0\/25", + "version":51673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.114.0", + "prefixLen":25, + "network":"193.196.114.0\/25", + "version":51673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.114.128", + "prefixLen":25, + "network":"193.196.114.128\/25", + "version":51672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.114.128", + "prefixLen":25, + "network":"193.196.114.128\/25", + "version":51672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.115.0", + "prefixLen":25, + "network":"193.196.115.0\/25", + "version":51671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.115.0", + "prefixLen":25, + "network":"193.196.115.0\/25", + "version":51671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.115.128", + "prefixLen":25, + "network":"193.196.115.128\/25", + "version":51670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.115.128", + "prefixLen":25, + "network":"193.196.115.128\/25", + "version":51670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.128.0", + "prefixLen":25, + "network":"193.196.128.0\/25", + "version":51669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.128.0", + "prefixLen":25, + "network":"193.196.128.0\/25", + "version":51669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.128.128", + "prefixLen":25, + "network":"193.196.128.128\/25", + "version":51668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.128.128", + "prefixLen":25, + "network":"193.196.128.128\/25", + "version":51668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.129.0", + "prefixLen":25, + "network":"193.196.129.0\/25", + "version":51667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.129.0", + "prefixLen":25, + "network":"193.196.129.0\/25", + "version":51667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.129.128", + "prefixLen":25, + "network":"193.196.129.128\/25", + "version":51666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.129.128", + "prefixLen":25, + "network":"193.196.129.128\/25", + "version":51666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.130.0", + "prefixLen":25, + "network":"193.196.130.0\/25", + "version":51665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.130.0", + "prefixLen":25, + "network":"193.196.130.0\/25", + "version":51665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.130.128", + "prefixLen":25, + "network":"193.196.130.128\/25", + "version":51664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.130.128", + "prefixLen":25, + "network":"193.196.130.128\/25", + "version":51664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.131.0", + "prefixLen":25, + "network":"193.196.131.0\/25", + "version":51663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.131.0", + "prefixLen":25, + "network":"193.196.131.0\/25", + "version":51663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.131.128", + "prefixLen":25, + "network":"193.196.131.128\/25", + "version":51662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.131.128", + "prefixLen":25, + "network":"193.196.131.128\/25", + "version":51662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.144.0", + "prefixLen":25, + "network":"193.196.144.0\/25", + "version":51661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.144.0", + "prefixLen":25, + "network":"193.196.144.0\/25", + "version":51661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.144.128", + "prefixLen":25, + "network":"193.196.144.128\/25", + "version":51660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.144.128", + "prefixLen":25, + "network":"193.196.144.128\/25", + "version":51660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.145.0", + "prefixLen":25, + "network":"193.196.145.0\/25", + "version":51659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.145.0", + "prefixLen":25, + "network":"193.196.145.0\/25", + "version":51659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.145.128", + "prefixLen":25, + "network":"193.196.145.128\/25", + "version":51658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.145.128", + "prefixLen":25, + "network":"193.196.145.128\/25", + "version":51658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.146.0", + "prefixLen":25, + "network":"193.196.146.0\/25", + "version":51657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.146.0", + "prefixLen":25, + "network":"193.196.146.0\/25", + "version":51657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.146.128", + "prefixLen":25, + "network":"193.196.146.128\/25", + "version":51656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.146.128", + "prefixLen":25, + "network":"193.196.146.128\/25", + "version":51656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.147.0", + "prefixLen":25, + "network":"193.196.147.0\/25", + "version":51655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.147.0", + "prefixLen":25, + "network":"193.196.147.0\/25", + "version":51655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.147.128", + "prefixLen":25, + "network":"193.196.147.128\/25", + "version":51654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.147.128", + "prefixLen":25, + "network":"193.196.147.128\/25", + "version":51654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.160.0", + "prefixLen":25, + "network":"193.196.160.0\/25", + "version":51653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.160.0", + "prefixLen":25, + "network":"193.196.160.0\/25", + "version":51653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.160.128", + "prefixLen":25, + "network":"193.196.160.128\/25", + "version":51652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.160.128", + "prefixLen":25, + "network":"193.196.160.128\/25", + "version":51652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.161.0", + "prefixLen":25, + "network":"193.196.161.0\/25", + "version":51651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.161.0", + "prefixLen":25, + "network":"193.196.161.0\/25", + "version":51651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.161.128", + "prefixLen":25, + "network":"193.196.161.128\/25", + "version":51650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.161.128", + "prefixLen":25, + "network":"193.196.161.128\/25", + "version":51650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.162.0", + "prefixLen":25, + "network":"193.196.162.0\/25", + "version":51649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.162.0", + "prefixLen":25, + "network":"193.196.162.0\/25", + "version":51649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.162.128", + "prefixLen":25, + "network":"193.196.162.128\/25", + "version":51648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.162.128", + "prefixLen":25, + "network":"193.196.162.128\/25", + "version":51648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.163.0", + "prefixLen":25, + "network":"193.196.163.0\/25", + "version":51647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.163.0", + "prefixLen":25, + "network":"193.196.163.0\/25", + "version":51647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.163.128", + "prefixLen":25, + "network":"193.196.163.128\/25", + "version":51646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.163.128", + "prefixLen":25, + "network":"193.196.163.128\/25", + "version":51646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.176.0", + "prefixLen":25, + "network":"193.196.176.0\/25", + "version":51645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.176.0", + "prefixLen":25, + "network":"193.196.176.0\/25", + "version":51645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.176.128", + "prefixLen":25, + "network":"193.196.176.128\/25", + "version":51644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.176.128", + "prefixLen":25, + "network":"193.196.176.128\/25", + "version":51644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.177.0", + "prefixLen":25, + "network":"193.196.177.0\/25", + "version":51643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.177.0", + "prefixLen":25, + "network":"193.196.177.0\/25", + "version":51643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.177.128", + "prefixLen":25, + "network":"193.196.177.128\/25", + "version":51642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.177.128", + "prefixLen":25, + "network":"193.196.177.128\/25", + "version":51642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.178.0", + "prefixLen":25, + "network":"193.196.178.0\/25", + "version":51641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.178.0", + "prefixLen":25, + "network":"193.196.178.0\/25", + "version":51641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.178.128", + "prefixLen":25, + "network":"193.196.178.128\/25", + "version":51640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.178.128", + "prefixLen":25, + "network":"193.196.178.128\/25", + "version":51640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.179.0", + "prefixLen":25, + "network":"193.196.179.0\/25", + "version":51639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.179.0", + "prefixLen":25, + "network":"193.196.179.0\/25", + "version":51639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.179.128", + "prefixLen":25, + "network":"193.196.179.128\/25", + "version":51638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.179.128", + "prefixLen":25, + "network":"193.196.179.128\/25", + "version":51638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.192.0", + "prefixLen":25, + "network":"193.196.192.0\/25", + "version":51637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.192.0", + "prefixLen":25, + "network":"193.196.192.0\/25", + "version":51637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.192.128", + "prefixLen":25, + "network":"193.196.192.128\/25", + "version":51636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.192.128", + "prefixLen":25, + "network":"193.196.192.128\/25", + "version":51636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.193.0", + "prefixLen":25, + "network":"193.196.193.0\/25", + "version":51635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.193.0", + "prefixLen":25, + "network":"193.196.193.0\/25", + "version":51635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.193.128", + "prefixLen":25, + "network":"193.196.193.128\/25", + "version":51634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.193.128", + "prefixLen":25, + "network":"193.196.193.128\/25", + "version":51634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.194.0", + "prefixLen":25, + "network":"193.196.194.0\/25", + "version":51633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.194.0", + "prefixLen":25, + "network":"193.196.194.0\/25", + "version":51633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.194.128", + "prefixLen":25, + "network":"193.196.194.128\/25", + "version":51632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.194.128", + "prefixLen":25, + "network":"193.196.194.128\/25", + "version":51632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.195.0", + "prefixLen":25, + "network":"193.196.195.0\/25", + "version":51631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.195.0", + "prefixLen":25, + "network":"193.196.195.0\/25", + "version":51631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.195.128", + "prefixLen":25, + "network":"193.196.195.128\/25", + "version":51630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.195.128", + "prefixLen":25, + "network":"193.196.195.128\/25", + "version":51630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.208.0", + "prefixLen":25, + "network":"193.196.208.0\/25", + "version":51629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.208.0", + "prefixLen":25, + "network":"193.196.208.0\/25", + "version":51629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.208.128", + "prefixLen":25, + "network":"193.196.208.128\/25", + "version":51628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.208.128", + "prefixLen":25, + "network":"193.196.208.128\/25", + "version":51628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.209.0", + "prefixLen":25, + "network":"193.196.209.0\/25", + "version":51627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.209.0", + "prefixLen":25, + "network":"193.196.209.0\/25", + "version":51627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.209.128", + "prefixLen":25, + "network":"193.196.209.128\/25", + "version":51626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.209.128", + "prefixLen":25, + "network":"193.196.209.128\/25", + "version":51626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.210.0", + "prefixLen":25, + "network":"193.196.210.0\/25", + "version":51625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.210.0", + "prefixLen":25, + "network":"193.196.210.0\/25", + "version":51625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.210.128", + "prefixLen":25, + "network":"193.196.210.128\/25", + "version":51624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.210.128", + "prefixLen":25, + "network":"193.196.210.128\/25", + "version":51624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.211.0", + "prefixLen":25, + "network":"193.196.211.0\/25", + "version":51623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.211.0", + "prefixLen":25, + "network":"193.196.211.0\/25", + "version":51623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.211.128", + "prefixLen":25, + "network":"193.196.211.128\/25", + "version":51622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.211.128", + "prefixLen":25, + "network":"193.196.211.128\/25", + "version":51622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.224.0", + "prefixLen":25, + "network":"193.196.224.0\/25", + "version":51621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.224.0", + "prefixLen":25, + "network":"193.196.224.0\/25", + "version":51621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.224.128", + "prefixLen":25, + "network":"193.196.224.128\/25", + "version":51620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.224.128", + "prefixLen":25, + "network":"193.196.224.128\/25", + "version":51620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.225.0", + "prefixLen":25, + "network":"193.196.225.0\/25", + "version":51619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.225.0", + "prefixLen":25, + "network":"193.196.225.0\/25", + "version":51619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.225.128", + "prefixLen":25, + "network":"193.196.225.128\/25", + "version":51618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.225.128", + "prefixLen":25, + "network":"193.196.225.128\/25", + "version":51618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.226.0", + "prefixLen":25, + "network":"193.196.226.0\/25", + "version":51617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.226.0", + "prefixLen":25, + "network":"193.196.226.0\/25", + "version":51617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.226.128", + "prefixLen":25, + "network":"193.196.226.128\/25", + "version":51616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.226.128", + "prefixLen":25, + "network":"193.196.226.128\/25", + "version":51616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.227.0", + "prefixLen":25, + "network":"193.196.227.0\/25", + "version":51615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.227.0", + "prefixLen":25, + "network":"193.196.227.0\/25", + "version":51615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.227.128", + "prefixLen":25, + "network":"193.196.227.128\/25", + "version":51614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.227.128", + "prefixLen":25, + "network":"193.196.227.128\/25", + "version":51614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.240.0", + "prefixLen":25, + "network":"193.196.240.0\/25", + "version":51613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.240.0", + "prefixLen":25, + "network":"193.196.240.0\/25", + "version":51613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.240.128", + "prefixLen":25, + "network":"193.196.240.128\/25", + "version":51612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.240.128", + "prefixLen":25, + "network":"193.196.240.128\/25", + "version":51612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.241.0", + "prefixLen":25, + "network":"193.196.241.0\/25", + "version":51611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.241.0", + "prefixLen":25, + "network":"193.196.241.0\/25", + "version":51611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.241.128", + "prefixLen":25, + "network":"193.196.241.128\/25", + "version":51610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.241.128", + "prefixLen":25, + "network":"193.196.241.128\/25", + "version":51610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.242.0", + "prefixLen":25, + "network":"193.196.242.0\/25", + "version":51609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.242.0", + "prefixLen":25, + "network":"193.196.242.0\/25", + "version":51609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.242.128", + "prefixLen":25, + "network":"193.196.242.128\/25", + "version":51608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.242.128", + "prefixLen":25, + "network":"193.196.242.128\/25", + "version":51608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.243.0", + "prefixLen":25, + "network":"193.196.243.0\/25", + "version":51607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.243.0", + "prefixLen":25, + "network":"193.196.243.0\/25", + "version":51607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.196.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.196.243.128", + "prefixLen":25, + "network":"193.196.243.128\/25", + "version":51606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.196.243.128", + "prefixLen":25, + "network":"193.196.243.128\/25", + "version":51606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64884 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.0.0", + "prefixLen":25, + "network":"193.197.0.0\/25", + "version":51733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.0.0", + "prefixLen":25, + "network":"193.197.0.0\/25", + "version":51733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.0.128", + "prefixLen":25, + "network":"193.197.0.128\/25", + "version":51860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.0.128", + "prefixLen":25, + "network":"193.197.0.128\/25", + "version":51860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.1.0", + "prefixLen":25, + "network":"193.197.1.0\/25", + "version":51859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.1.0", + "prefixLen":25, + "network":"193.197.1.0\/25", + "version":51859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.1.128", + "prefixLen":25, + "network":"193.197.1.128\/25", + "version":51858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.1.128", + "prefixLen":25, + "network":"193.197.1.128\/25", + "version":51858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.2.0", + "prefixLen":25, + "network":"193.197.2.0\/25", + "version":51857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.2.0", + "prefixLen":25, + "network":"193.197.2.0\/25", + "version":51857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.2.128", + "prefixLen":25, + "network":"193.197.2.128\/25", + "version":51856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.2.128", + "prefixLen":25, + "network":"193.197.2.128\/25", + "version":51856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.3.0", + "prefixLen":25, + "network":"193.197.3.0\/25", + "version":51855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.3.0", + "prefixLen":25, + "network":"193.197.3.0\/25", + "version":51855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.3.128", + "prefixLen":25, + "network":"193.197.3.128\/25", + "version":51854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.3.128", + "prefixLen":25, + "network":"193.197.3.128\/25", + "version":51854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.16.0", + "prefixLen":25, + "network":"193.197.16.0\/25", + "version":51853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.16.0", + "prefixLen":25, + "network":"193.197.16.0\/25", + "version":51853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.16.128", + "prefixLen":25, + "network":"193.197.16.128\/25", + "version":51852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.16.128", + "prefixLen":25, + "network":"193.197.16.128\/25", + "version":51852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.17.0", + "prefixLen":25, + "network":"193.197.17.0\/25", + "version":51851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.17.0", + "prefixLen":25, + "network":"193.197.17.0\/25", + "version":51851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.17.128", + "prefixLen":25, + "network":"193.197.17.128\/25", + "version":51850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.17.128", + "prefixLen":25, + "network":"193.197.17.128\/25", + "version":51850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.18.0", + "prefixLen":25, + "network":"193.197.18.0\/25", + "version":51849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.18.0", + "prefixLen":25, + "network":"193.197.18.0\/25", + "version":51849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.18.128", + "prefixLen":25, + "network":"193.197.18.128\/25", + "version":51848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.18.128", + "prefixLen":25, + "network":"193.197.18.128\/25", + "version":51848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.19.0", + "prefixLen":25, + "network":"193.197.19.0\/25", + "version":51847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.19.0", + "prefixLen":25, + "network":"193.197.19.0\/25", + "version":51847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.19.128", + "prefixLen":25, + "network":"193.197.19.128\/25", + "version":51846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.19.128", + "prefixLen":25, + "network":"193.197.19.128\/25", + "version":51846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.32.0", + "prefixLen":25, + "network":"193.197.32.0\/25", + "version":51845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.32.0", + "prefixLen":25, + "network":"193.197.32.0\/25", + "version":51845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.32.128", + "prefixLen":25, + "network":"193.197.32.128\/25", + "version":51844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.32.128", + "prefixLen":25, + "network":"193.197.32.128\/25", + "version":51844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.33.0", + "prefixLen":25, + "network":"193.197.33.0\/25", + "version":51843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.33.0", + "prefixLen":25, + "network":"193.197.33.0\/25", + "version":51843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.33.128", + "prefixLen":25, + "network":"193.197.33.128\/25", + "version":51842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.33.128", + "prefixLen":25, + "network":"193.197.33.128\/25", + "version":51842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.34.0", + "prefixLen":25, + "network":"193.197.34.0\/25", + "version":51841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.34.0", + "prefixLen":25, + "network":"193.197.34.0\/25", + "version":51841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.34.128", + "prefixLen":25, + "network":"193.197.34.128\/25", + "version":51840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.34.128", + "prefixLen":25, + "network":"193.197.34.128\/25", + "version":51840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.35.0", + "prefixLen":25, + "network":"193.197.35.0\/25", + "version":51839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.35.0", + "prefixLen":25, + "network":"193.197.35.0\/25", + "version":51839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.35.128", + "prefixLen":25, + "network":"193.197.35.128\/25", + "version":51838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.35.128", + "prefixLen":25, + "network":"193.197.35.128\/25", + "version":51838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.48.0", + "prefixLen":25, + "network":"193.197.48.0\/25", + "version":51837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.48.0", + "prefixLen":25, + "network":"193.197.48.0\/25", + "version":51837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.48.128", + "prefixLen":25, + "network":"193.197.48.128\/25", + "version":51836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.48.128", + "prefixLen":25, + "network":"193.197.48.128\/25", + "version":51836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.49.0", + "prefixLen":25, + "network":"193.197.49.0\/25", + "version":51835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.49.0", + "prefixLen":25, + "network":"193.197.49.0\/25", + "version":51835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.49.128", + "prefixLen":25, + "network":"193.197.49.128\/25", + "version":51834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.49.128", + "prefixLen":25, + "network":"193.197.49.128\/25", + "version":51834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.50.0", + "prefixLen":25, + "network":"193.197.50.0\/25", + "version":51833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.50.0", + "prefixLen":25, + "network":"193.197.50.0\/25", + "version":51833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.50.128", + "prefixLen":25, + "network":"193.197.50.128\/25", + "version":51832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.50.128", + "prefixLen":25, + "network":"193.197.50.128\/25", + "version":51832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.51.0", + "prefixLen":25, + "network":"193.197.51.0\/25", + "version":51831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.51.0", + "prefixLen":25, + "network":"193.197.51.0\/25", + "version":51831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.51.128", + "prefixLen":25, + "network":"193.197.51.128\/25", + "version":51830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.51.128", + "prefixLen":25, + "network":"193.197.51.128\/25", + "version":51830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.64.0", + "prefixLen":25, + "network":"193.197.64.0\/25", + "version":51829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.64.0", + "prefixLen":25, + "network":"193.197.64.0\/25", + "version":51829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.64.128", + "prefixLen":25, + "network":"193.197.64.128\/25", + "version":51828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.64.128", + "prefixLen":25, + "network":"193.197.64.128\/25", + "version":51828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.65.0", + "prefixLen":25, + "network":"193.197.65.0\/25", + "version":51827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.65.0", + "prefixLen":25, + "network":"193.197.65.0\/25", + "version":51827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.65.128", + "prefixLen":25, + "network":"193.197.65.128\/25", + "version":51826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.65.128", + "prefixLen":25, + "network":"193.197.65.128\/25", + "version":51826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.66.0", + "prefixLen":25, + "network":"193.197.66.0\/25", + "version":51825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.66.0", + "prefixLen":25, + "network":"193.197.66.0\/25", + "version":51825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.66.128", + "prefixLen":25, + "network":"193.197.66.128\/25", + "version":51824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.66.128", + "prefixLen":25, + "network":"193.197.66.128\/25", + "version":51824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.67.0", + "prefixLen":25, + "network":"193.197.67.0\/25", + "version":51823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.67.0", + "prefixLen":25, + "network":"193.197.67.0\/25", + "version":51823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.67.128", + "prefixLen":25, + "network":"193.197.67.128\/25", + "version":51822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.67.128", + "prefixLen":25, + "network":"193.197.67.128\/25", + "version":51822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.80.0", + "prefixLen":25, + "network":"193.197.80.0\/25", + "version":51821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.80.0", + "prefixLen":25, + "network":"193.197.80.0\/25", + "version":51821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.80.128", + "prefixLen":25, + "network":"193.197.80.128\/25", + "version":51820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.80.128", + "prefixLen":25, + "network":"193.197.80.128\/25", + "version":51820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.81.0", + "prefixLen":25, + "network":"193.197.81.0\/25", + "version":51819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.81.0", + "prefixLen":25, + "network":"193.197.81.0\/25", + "version":51819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.81.128", + "prefixLen":25, + "network":"193.197.81.128\/25", + "version":51818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.81.128", + "prefixLen":25, + "network":"193.197.81.128\/25", + "version":51818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.82.0", + "prefixLen":25, + "network":"193.197.82.0\/25", + "version":51817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.82.0", + "prefixLen":25, + "network":"193.197.82.0\/25", + "version":51817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.82.128", + "prefixLen":25, + "network":"193.197.82.128\/25", + "version":51816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.82.128", + "prefixLen":25, + "network":"193.197.82.128\/25", + "version":51816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.83.0", + "prefixLen":25, + "network":"193.197.83.0\/25", + "version":51815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.83.0", + "prefixLen":25, + "network":"193.197.83.0\/25", + "version":51815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.83.128", + "prefixLen":25, + "network":"193.197.83.128\/25", + "version":51814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.83.128", + "prefixLen":25, + "network":"193.197.83.128\/25", + "version":51814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.96.0", + "prefixLen":25, + "network":"193.197.96.0\/25", + "version":51813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.96.0", + "prefixLen":25, + "network":"193.197.96.0\/25", + "version":51813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.96.128", + "prefixLen":25, + "network":"193.197.96.128\/25", + "version":51812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.96.128", + "prefixLen":25, + "network":"193.197.96.128\/25", + "version":51812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.97.0", + "prefixLen":25, + "network":"193.197.97.0\/25", + "version":51811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.97.0", + "prefixLen":25, + "network":"193.197.97.0\/25", + "version":51811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.97.128", + "prefixLen":25, + "network":"193.197.97.128\/25", + "version":51810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.97.128", + "prefixLen":25, + "network":"193.197.97.128\/25", + "version":51810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.98.0", + "prefixLen":25, + "network":"193.197.98.0\/25", + "version":51809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.98.0", + "prefixLen":25, + "network":"193.197.98.0\/25", + "version":51809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.98.128", + "prefixLen":25, + "network":"193.197.98.128\/25", + "version":51808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.98.128", + "prefixLen":25, + "network":"193.197.98.128\/25", + "version":51808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.99.0", + "prefixLen":25, + "network":"193.197.99.0\/25", + "version":51807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.99.0", + "prefixLen":25, + "network":"193.197.99.0\/25", + "version":51807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.99.128", + "prefixLen":25, + "network":"193.197.99.128\/25", + "version":51806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.99.128", + "prefixLen":25, + "network":"193.197.99.128\/25", + "version":51806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.112.0", + "prefixLen":25, + "network":"193.197.112.0\/25", + "version":51805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.112.0", + "prefixLen":25, + "network":"193.197.112.0\/25", + "version":51805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.112.128", + "prefixLen":25, + "network":"193.197.112.128\/25", + "version":51804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.112.128", + "prefixLen":25, + "network":"193.197.112.128\/25", + "version":51804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.113.0", + "prefixLen":25, + "network":"193.197.113.0\/25", + "version":51803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.113.0", + "prefixLen":25, + "network":"193.197.113.0\/25", + "version":51803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.113.128", + "prefixLen":25, + "network":"193.197.113.128\/25", + "version":51802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.113.128", + "prefixLen":25, + "network":"193.197.113.128\/25", + "version":51802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.114.0", + "prefixLen":25, + "network":"193.197.114.0\/25", + "version":51801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.114.0", + "prefixLen":25, + "network":"193.197.114.0\/25", + "version":51801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.114.128", + "prefixLen":25, + "network":"193.197.114.128\/25", + "version":51800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.114.128", + "prefixLen":25, + "network":"193.197.114.128\/25", + "version":51800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.115.0", + "prefixLen":25, + "network":"193.197.115.0\/25", + "version":51799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.115.0", + "prefixLen":25, + "network":"193.197.115.0\/25", + "version":51799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.115.128", + "prefixLen":25, + "network":"193.197.115.128\/25", + "version":51798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.115.128", + "prefixLen":25, + "network":"193.197.115.128\/25", + "version":51798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.128.0", + "prefixLen":25, + "network":"193.197.128.0\/25", + "version":51797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.128.0", + "prefixLen":25, + "network":"193.197.128.0\/25", + "version":51797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.128.128", + "prefixLen":25, + "network":"193.197.128.128\/25", + "version":51796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.128.128", + "prefixLen":25, + "network":"193.197.128.128\/25", + "version":51796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.129.0", + "prefixLen":25, + "network":"193.197.129.0\/25", + "version":51795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.129.0", + "prefixLen":25, + "network":"193.197.129.0\/25", + "version":51795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.129.128", + "prefixLen":25, + "network":"193.197.129.128\/25", + "version":51794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.129.128", + "prefixLen":25, + "network":"193.197.129.128\/25", + "version":51794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.130.0", + "prefixLen":25, + "network":"193.197.130.0\/25", + "version":51793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.130.0", + "prefixLen":25, + "network":"193.197.130.0\/25", + "version":51793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.130.128", + "prefixLen":25, + "network":"193.197.130.128\/25", + "version":51792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.130.128", + "prefixLen":25, + "network":"193.197.130.128\/25", + "version":51792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.131.0", + "prefixLen":25, + "network":"193.197.131.0\/25", + "version":51791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.131.0", + "prefixLen":25, + "network":"193.197.131.0\/25", + "version":51791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.131.128", + "prefixLen":25, + "network":"193.197.131.128\/25", + "version":51790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.131.128", + "prefixLen":25, + "network":"193.197.131.128\/25", + "version":51790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.144.0", + "prefixLen":25, + "network":"193.197.144.0\/25", + "version":51789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.144.0", + "prefixLen":25, + "network":"193.197.144.0\/25", + "version":51789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.144.128", + "prefixLen":25, + "network":"193.197.144.128\/25", + "version":51788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.144.128", + "prefixLen":25, + "network":"193.197.144.128\/25", + "version":51788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.145.0", + "prefixLen":25, + "network":"193.197.145.0\/25", + "version":51787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.145.0", + "prefixLen":25, + "network":"193.197.145.0\/25", + "version":51787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.145.128", + "prefixLen":25, + "network":"193.197.145.128\/25", + "version":51786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.145.128", + "prefixLen":25, + "network":"193.197.145.128\/25", + "version":51786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.146.0", + "prefixLen":25, + "network":"193.197.146.0\/25", + "version":51785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.146.0", + "prefixLen":25, + "network":"193.197.146.0\/25", + "version":51785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.146.128", + "prefixLen":25, + "network":"193.197.146.128\/25", + "version":51784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.146.128", + "prefixLen":25, + "network":"193.197.146.128\/25", + "version":51784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.147.0", + "prefixLen":25, + "network":"193.197.147.0\/25", + "version":51783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.147.0", + "prefixLen":25, + "network":"193.197.147.0\/25", + "version":51783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.147.128", + "prefixLen":25, + "network":"193.197.147.128\/25", + "version":51782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.147.128", + "prefixLen":25, + "network":"193.197.147.128\/25", + "version":51782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.160.0", + "prefixLen":25, + "network":"193.197.160.0\/25", + "version":51781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.160.0", + "prefixLen":25, + "network":"193.197.160.0\/25", + "version":51781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.160.128", + "prefixLen":25, + "network":"193.197.160.128\/25", + "version":51780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.160.128", + "prefixLen":25, + "network":"193.197.160.128\/25", + "version":51780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.161.0", + "prefixLen":25, + "network":"193.197.161.0\/25", + "version":51779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.161.0", + "prefixLen":25, + "network":"193.197.161.0\/25", + "version":51779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.161.128", + "prefixLen":25, + "network":"193.197.161.128\/25", + "version":51778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.161.128", + "prefixLen":25, + "network":"193.197.161.128\/25", + "version":51778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.162.0", + "prefixLen":25, + "network":"193.197.162.0\/25", + "version":51777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.162.0", + "prefixLen":25, + "network":"193.197.162.0\/25", + "version":51777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.162.128", + "prefixLen":25, + "network":"193.197.162.128\/25", + "version":51776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.162.128", + "prefixLen":25, + "network":"193.197.162.128\/25", + "version":51776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.163.0", + "prefixLen":25, + "network":"193.197.163.0\/25", + "version":51775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.163.0", + "prefixLen":25, + "network":"193.197.163.0\/25", + "version":51775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.163.128", + "prefixLen":25, + "network":"193.197.163.128\/25", + "version":51774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.163.128", + "prefixLen":25, + "network":"193.197.163.128\/25", + "version":51774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.176.0", + "prefixLen":25, + "network":"193.197.176.0\/25", + "version":51773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.176.0", + "prefixLen":25, + "network":"193.197.176.0\/25", + "version":51773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.176.128", + "prefixLen":25, + "network":"193.197.176.128\/25", + "version":51772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.176.128", + "prefixLen":25, + "network":"193.197.176.128\/25", + "version":51772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.177.0", + "prefixLen":25, + "network":"193.197.177.0\/25", + "version":51771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.177.0", + "prefixLen":25, + "network":"193.197.177.0\/25", + "version":51771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.177.128", + "prefixLen":25, + "network":"193.197.177.128\/25", + "version":51770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.177.128", + "prefixLen":25, + "network":"193.197.177.128\/25", + "version":51770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.178.0", + "prefixLen":25, + "network":"193.197.178.0\/25", + "version":51769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.178.0", + "prefixLen":25, + "network":"193.197.178.0\/25", + "version":51769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.178.128", + "prefixLen":25, + "network":"193.197.178.128\/25", + "version":51768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.178.128", + "prefixLen":25, + "network":"193.197.178.128\/25", + "version":51768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.179.0", + "prefixLen":25, + "network":"193.197.179.0\/25", + "version":51767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.179.0", + "prefixLen":25, + "network":"193.197.179.0\/25", + "version":51767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.179.128", + "prefixLen":25, + "network":"193.197.179.128\/25", + "version":51766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.179.128", + "prefixLen":25, + "network":"193.197.179.128\/25", + "version":51766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.192.0", + "prefixLen":25, + "network":"193.197.192.0\/25", + "version":51765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.192.0", + "prefixLen":25, + "network":"193.197.192.0\/25", + "version":51765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.192.128", + "prefixLen":25, + "network":"193.197.192.128\/25", + "version":51764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.192.128", + "prefixLen":25, + "network":"193.197.192.128\/25", + "version":51764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.193.0", + "prefixLen":25, + "network":"193.197.193.0\/25", + "version":51763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.193.0", + "prefixLen":25, + "network":"193.197.193.0\/25", + "version":51763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.193.128", + "prefixLen":25, + "network":"193.197.193.128\/25", + "version":51762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.193.128", + "prefixLen":25, + "network":"193.197.193.128\/25", + "version":51762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.194.0", + "prefixLen":25, + "network":"193.197.194.0\/25", + "version":51761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.194.0", + "prefixLen":25, + "network":"193.197.194.0\/25", + "version":51761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.194.128", + "prefixLen":25, + "network":"193.197.194.128\/25", + "version":51760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.194.128", + "prefixLen":25, + "network":"193.197.194.128\/25", + "version":51760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.195.0", + "prefixLen":25, + "network":"193.197.195.0\/25", + "version":51759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.195.0", + "prefixLen":25, + "network":"193.197.195.0\/25", + "version":51759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.195.128", + "prefixLen":25, + "network":"193.197.195.128\/25", + "version":51758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.195.128", + "prefixLen":25, + "network":"193.197.195.128\/25", + "version":51758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.208.0", + "prefixLen":25, + "network":"193.197.208.0\/25", + "version":51757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.208.0", + "prefixLen":25, + "network":"193.197.208.0\/25", + "version":51757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.208.128", + "prefixLen":25, + "network":"193.197.208.128\/25", + "version":51756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.208.128", + "prefixLen":25, + "network":"193.197.208.128\/25", + "version":51756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.209.0", + "prefixLen":25, + "network":"193.197.209.0\/25", + "version":51755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.209.0", + "prefixLen":25, + "network":"193.197.209.0\/25", + "version":51755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.209.128", + "prefixLen":25, + "network":"193.197.209.128\/25", + "version":51754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.209.128", + "prefixLen":25, + "network":"193.197.209.128\/25", + "version":51754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.210.0", + "prefixLen":25, + "network":"193.197.210.0\/25", + "version":51753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.210.0", + "prefixLen":25, + "network":"193.197.210.0\/25", + "version":51753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.210.128", + "prefixLen":25, + "network":"193.197.210.128\/25", + "version":51752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.210.128", + "prefixLen":25, + "network":"193.197.210.128\/25", + "version":51752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.211.0", + "prefixLen":25, + "network":"193.197.211.0\/25", + "version":51751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.211.0", + "prefixLen":25, + "network":"193.197.211.0\/25", + "version":51751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.211.128", + "prefixLen":25, + "network":"193.197.211.128\/25", + "version":51750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.211.128", + "prefixLen":25, + "network":"193.197.211.128\/25", + "version":51750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.224.0", + "prefixLen":25, + "network":"193.197.224.0\/25", + "version":51749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.224.0", + "prefixLen":25, + "network":"193.197.224.0\/25", + "version":51749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.224.128", + "prefixLen":25, + "network":"193.197.224.128\/25", + "version":51748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.224.128", + "prefixLen":25, + "network":"193.197.224.128\/25", + "version":51748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.225.0", + "prefixLen":25, + "network":"193.197.225.0\/25", + "version":51747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.225.0", + "prefixLen":25, + "network":"193.197.225.0\/25", + "version":51747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.225.128", + "prefixLen":25, + "network":"193.197.225.128\/25", + "version":51746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.225.128", + "prefixLen":25, + "network":"193.197.225.128\/25", + "version":51746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.226.0", + "prefixLen":25, + "network":"193.197.226.0\/25", + "version":51745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.226.0", + "prefixLen":25, + "network":"193.197.226.0\/25", + "version":51745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.226.128", + "prefixLen":25, + "network":"193.197.226.128\/25", + "version":51744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.226.128", + "prefixLen":25, + "network":"193.197.226.128\/25", + "version":51744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.227.0", + "prefixLen":25, + "network":"193.197.227.0\/25", + "version":51743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.227.0", + "prefixLen":25, + "network":"193.197.227.0\/25", + "version":51743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.227.128", + "prefixLen":25, + "network":"193.197.227.128\/25", + "version":51742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.227.128", + "prefixLen":25, + "network":"193.197.227.128\/25", + "version":51742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.240.0", + "prefixLen":25, + "network":"193.197.240.0\/25", + "version":51741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.240.0", + "prefixLen":25, + "network":"193.197.240.0\/25", + "version":51741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.240.128", + "prefixLen":25, + "network":"193.197.240.128\/25", + "version":51740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.240.128", + "prefixLen":25, + "network":"193.197.240.128\/25", + "version":51740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.241.0", + "prefixLen":25, + "network":"193.197.241.0\/25", + "version":51739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.241.0", + "prefixLen":25, + "network":"193.197.241.0\/25", + "version":51739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.241.128", + "prefixLen":25, + "network":"193.197.241.128\/25", + "version":51738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.241.128", + "prefixLen":25, + "network":"193.197.241.128\/25", + "version":51738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.242.0", + "prefixLen":25, + "network":"193.197.242.0\/25", + "version":51737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.242.0", + "prefixLen":25, + "network":"193.197.242.0\/25", + "version":51737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.242.128", + "prefixLen":25, + "network":"193.197.242.128\/25", + "version":51736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.242.128", + "prefixLen":25, + "network":"193.197.242.128\/25", + "version":51736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.243.0", + "prefixLen":25, + "network":"193.197.243.0\/25", + "version":51735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.243.0", + "prefixLen":25, + "network":"193.197.243.0\/25", + "version":51735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.197.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.197.243.128", + "prefixLen":25, + "network":"193.197.243.128\/25", + "version":51734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.197.243.128", + "prefixLen":25, + "network":"193.197.243.128\/25", + "version":51734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64885 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.0.0", + "prefixLen":25, + "network":"193.198.0.0\/25", + "version":51861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.0.0", + "prefixLen":25, + "network":"193.198.0.0\/25", + "version":51861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.0.128", + "prefixLen":25, + "network":"193.198.0.128\/25", + "version":51988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.0.128", + "prefixLen":25, + "network":"193.198.0.128\/25", + "version":51988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.1.0", + "prefixLen":25, + "network":"193.198.1.0\/25", + "version":51987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.1.0", + "prefixLen":25, + "network":"193.198.1.0\/25", + "version":51987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.1.128", + "prefixLen":25, + "network":"193.198.1.128\/25", + "version":51986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.1.128", + "prefixLen":25, + "network":"193.198.1.128\/25", + "version":51986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.2.0", + "prefixLen":25, + "network":"193.198.2.0\/25", + "version":51985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.2.0", + "prefixLen":25, + "network":"193.198.2.0\/25", + "version":51985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.2.128", + "prefixLen":25, + "network":"193.198.2.128\/25", + "version":51984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.2.128", + "prefixLen":25, + "network":"193.198.2.128\/25", + "version":51984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.3.0", + "prefixLen":25, + "network":"193.198.3.0\/25", + "version":51983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.3.0", + "prefixLen":25, + "network":"193.198.3.0\/25", + "version":51983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.3.128", + "prefixLen":25, + "network":"193.198.3.128\/25", + "version":51982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.3.128", + "prefixLen":25, + "network":"193.198.3.128\/25", + "version":51982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.16.0", + "prefixLen":25, + "network":"193.198.16.0\/25", + "version":51981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.16.0", + "prefixLen":25, + "network":"193.198.16.0\/25", + "version":51981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.16.128", + "prefixLen":25, + "network":"193.198.16.128\/25", + "version":51980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.16.128", + "prefixLen":25, + "network":"193.198.16.128\/25", + "version":51980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.17.0", + "prefixLen":25, + "network":"193.198.17.0\/25", + "version":51979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.17.0", + "prefixLen":25, + "network":"193.198.17.0\/25", + "version":51979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.17.128", + "prefixLen":25, + "network":"193.198.17.128\/25", + "version":51978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.17.128", + "prefixLen":25, + "network":"193.198.17.128\/25", + "version":51978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.18.0", + "prefixLen":25, + "network":"193.198.18.0\/25", + "version":51977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.18.0", + "prefixLen":25, + "network":"193.198.18.0\/25", + "version":51977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.18.128", + "prefixLen":25, + "network":"193.198.18.128\/25", + "version":51976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.18.128", + "prefixLen":25, + "network":"193.198.18.128\/25", + "version":51976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.19.0", + "prefixLen":25, + "network":"193.198.19.0\/25", + "version":51975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.19.0", + "prefixLen":25, + "network":"193.198.19.0\/25", + "version":51975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.19.128", + "prefixLen":25, + "network":"193.198.19.128\/25", + "version":51974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.19.128", + "prefixLen":25, + "network":"193.198.19.128\/25", + "version":51974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.32.0", + "prefixLen":25, + "network":"193.198.32.0\/25", + "version":51973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.32.0", + "prefixLen":25, + "network":"193.198.32.0\/25", + "version":51973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.32.128", + "prefixLen":25, + "network":"193.198.32.128\/25", + "version":51972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.32.128", + "prefixLen":25, + "network":"193.198.32.128\/25", + "version":51972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.33.0", + "prefixLen":25, + "network":"193.198.33.0\/25", + "version":51971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.33.0", + "prefixLen":25, + "network":"193.198.33.0\/25", + "version":51971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.33.128", + "prefixLen":25, + "network":"193.198.33.128\/25", + "version":51970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.33.128", + "prefixLen":25, + "network":"193.198.33.128\/25", + "version":51970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.34.0", + "prefixLen":25, + "network":"193.198.34.0\/25", + "version":51969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.34.0", + "prefixLen":25, + "network":"193.198.34.0\/25", + "version":51969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.34.128", + "prefixLen":25, + "network":"193.198.34.128\/25", + "version":51968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.34.128", + "prefixLen":25, + "network":"193.198.34.128\/25", + "version":51968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.35.0", + "prefixLen":25, + "network":"193.198.35.0\/25", + "version":51967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.35.0", + "prefixLen":25, + "network":"193.198.35.0\/25", + "version":51967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.35.128", + "prefixLen":25, + "network":"193.198.35.128\/25", + "version":51966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.35.128", + "prefixLen":25, + "network":"193.198.35.128\/25", + "version":51966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.48.0", + "prefixLen":25, + "network":"193.198.48.0\/25", + "version":51965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.48.0", + "prefixLen":25, + "network":"193.198.48.0\/25", + "version":51965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.48.128", + "prefixLen":25, + "network":"193.198.48.128\/25", + "version":51964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.48.128", + "prefixLen":25, + "network":"193.198.48.128\/25", + "version":51964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.49.0", + "prefixLen":25, + "network":"193.198.49.0\/25", + "version":51963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.49.0", + "prefixLen":25, + "network":"193.198.49.0\/25", + "version":51963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.49.128", + "prefixLen":25, + "network":"193.198.49.128\/25", + "version":51962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.49.128", + "prefixLen":25, + "network":"193.198.49.128\/25", + "version":51962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.50.0", + "prefixLen":25, + "network":"193.198.50.0\/25", + "version":51961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.50.0", + "prefixLen":25, + "network":"193.198.50.0\/25", + "version":51961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.50.128", + "prefixLen":25, + "network":"193.198.50.128\/25", + "version":51960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.50.128", + "prefixLen":25, + "network":"193.198.50.128\/25", + "version":51960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.51.0", + "prefixLen":25, + "network":"193.198.51.0\/25", + "version":51959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.51.0", + "prefixLen":25, + "network":"193.198.51.0\/25", + "version":51959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.51.128", + "prefixLen":25, + "network":"193.198.51.128\/25", + "version":51958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.51.128", + "prefixLen":25, + "network":"193.198.51.128\/25", + "version":51958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.64.0", + "prefixLen":25, + "network":"193.198.64.0\/25", + "version":51957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.64.0", + "prefixLen":25, + "network":"193.198.64.0\/25", + "version":51957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.64.128", + "prefixLen":25, + "network":"193.198.64.128\/25", + "version":51956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.64.128", + "prefixLen":25, + "network":"193.198.64.128\/25", + "version":51956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.65.0", + "prefixLen":25, + "network":"193.198.65.0\/25", + "version":51955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.65.0", + "prefixLen":25, + "network":"193.198.65.0\/25", + "version":51955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.65.128", + "prefixLen":25, + "network":"193.198.65.128\/25", + "version":51954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.65.128", + "prefixLen":25, + "network":"193.198.65.128\/25", + "version":51954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.66.0", + "prefixLen":25, + "network":"193.198.66.0\/25", + "version":51953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.66.0", + "prefixLen":25, + "network":"193.198.66.0\/25", + "version":51953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.66.128", + "prefixLen":25, + "network":"193.198.66.128\/25", + "version":51952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.66.128", + "prefixLen":25, + "network":"193.198.66.128\/25", + "version":51952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.67.0", + "prefixLen":25, + "network":"193.198.67.0\/25", + "version":51951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.67.0", + "prefixLen":25, + "network":"193.198.67.0\/25", + "version":51951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.67.128", + "prefixLen":25, + "network":"193.198.67.128\/25", + "version":51950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.67.128", + "prefixLen":25, + "network":"193.198.67.128\/25", + "version":51950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.80.0", + "prefixLen":25, + "network":"193.198.80.0\/25", + "version":51949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.80.0", + "prefixLen":25, + "network":"193.198.80.0\/25", + "version":51949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.80.128", + "prefixLen":25, + "network":"193.198.80.128\/25", + "version":51948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.80.128", + "prefixLen":25, + "network":"193.198.80.128\/25", + "version":51948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.81.0", + "prefixLen":25, + "network":"193.198.81.0\/25", + "version":51947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.81.0", + "prefixLen":25, + "network":"193.198.81.0\/25", + "version":51947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.81.128", + "prefixLen":25, + "network":"193.198.81.128\/25", + "version":51946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.81.128", + "prefixLen":25, + "network":"193.198.81.128\/25", + "version":51946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.82.0", + "prefixLen":25, + "network":"193.198.82.0\/25", + "version":51945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.82.0", + "prefixLen":25, + "network":"193.198.82.0\/25", + "version":51945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.82.128", + "prefixLen":25, + "network":"193.198.82.128\/25", + "version":51944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.82.128", + "prefixLen":25, + "network":"193.198.82.128\/25", + "version":51944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.83.0", + "prefixLen":25, + "network":"193.198.83.0\/25", + "version":51943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.83.0", + "prefixLen":25, + "network":"193.198.83.0\/25", + "version":51943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.83.128", + "prefixLen":25, + "network":"193.198.83.128\/25", + "version":51942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.83.128", + "prefixLen":25, + "network":"193.198.83.128\/25", + "version":51942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.96.0", + "prefixLen":25, + "network":"193.198.96.0\/25", + "version":51941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.96.0", + "prefixLen":25, + "network":"193.198.96.0\/25", + "version":51941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.96.128", + "prefixLen":25, + "network":"193.198.96.128\/25", + "version":51940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.96.128", + "prefixLen":25, + "network":"193.198.96.128\/25", + "version":51940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.97.0", + "prefixLen":25, + "network":"193.198.97.0\/25", + "version":51939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.97.0", + "prefixLen":25, + "network":"193.198.97.0\/25", + "version":51939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.97.128", + "prefixLen":25, + "network":"193.198.97.128\/25", + "version":51938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.97.128", + "prefixLen":25, + "network":"193.198.97.128\/25", + "version":51938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.98.0", + "prefixLen":25, + "network":"193.198.98.0\/25", + "version":51937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.98.0", + "prefixLen":25, + "network":"193.198.98.0\/25", + "version":51937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.98.128", + "prefixLen":25, + "network":"193.198.98.128\/25", + "version":51936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.98.128", + "prefixLen":25, + "network":"193.198.98.128\/25", + "version":51936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.99.0", + "prefixLen":25, + "network":"193.198.99.0\/25", + "version":51935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.99.0", + "prefixLen":25, + "network":"193.198.99.0\/25", + "version":51935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.99.128", + "prefixLen":25, + "network":"193.198.99.128\/25", + "version":51934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.99.128", + "prefixLen":25, + "network":"193.198.99.128\/25", + "version":51934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.112.0", + "prefixLen":25, + "network":"193.198.112.0\/25", + "version":51933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.112.0", + "prefixLen":25, + "network":"193.198.112.0\/25", + "version":51933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.112.128", + "prefixLen":25, + "network":"193.198.112.128\/25", + "version":51932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.112.128", + "prefixLen":25, + "network":"193.198.112.128\/25", + "version":51932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.113.0", + "prefixLen":25, + "network":"193.198.113.0\/25", + "version":51931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.113.0", + "prefixLen":25, + "network":"193.198.113.0\/25", + "version":51931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.113.128", + "prefixLen":25, + "network":"193.198.113.128\/25", + "version":51930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.113.128", + "prefixLen":25, + "network":"193.198.113.128\/25", + "version":51930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.114.0", + "prefixLen":25, + "network":"193.198.114.0\/25", + "version":51929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.114.0", + "prefixLen":25, + "network":"193.198.114.0\/25", + "version":51929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.114.128", + "prefixLen":25, + "network":"193.198.114.128\/25", + "version":51928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.114.128", + "prefixLen":25, + "network":"193.198.114.128\/25", + "version":51928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.115.0", + "prefixLen":25, + "network":"193.198.115.0\/25", + "version":51927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.115.0", + "prefixLen":25, + "network":"193.198.115.0\/25", + "version":51927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.115.128", + "prefixLen":25, + "network":"193.198.115.128\/25", + "version":51926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.115.128", + "prefixLen":25, + "network":"193.198.115.128\/25", + "version":51926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.128.0", + "prefixLen":25, + "network":"193.198.128.0\/25", + "version":51925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.128.0", + "prefixLen":25, + "network":"193.198.128.0\/25", + "version":51925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.128.128", + "prefixLen":25, + "network":"193.198.128.128\/25", + "version":51924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.128.128", + "prefixLen":25, + "network":"193.198.128.128\/25", + "version":51924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.129.0", + "prefixLen":25, + "network":"193.198.129.0\/25", + "version":51923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.129.0", + "prefixLen":25, + "network":"193.198.129.0\/25", + "version":51923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.129.128", + "prefixLen":25, + "network":"193.198.129.128\/25", + "version":51922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.129.128", + "prefixLen":25, + "network":"193.198.129.128\/25", + "version":51922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.130.0", + "prefixLen":25, + "network":"193.198.130.0\/25", + "version":51921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.130.0", + "prefixLen":25, + "network":"193.198.130.0\/25", + "version":51921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.130.128", + "prefixLen":25, + "network":"193.198.130.128\/25", + "version":51920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.130.128", + "prefixLen":25, + "network":"193.198.130.128\/25", + "version":51920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.131.0", + "prefixLen":25, + "network":"193.198.131.0\/25", + "version":51919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.131.0", + "prefixLen":25, + "network":"193.198.131.0\/25", + "version":51919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.131.128", + "prefixLen":25, + "network":"193.198.131.128\/25", + "version":51918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.131.128", + "prefixLen":25, + "network":"193.198.131.128\/25", + "version":51918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.144.0", + "prefixLen":25, + "network":"193.198.144.0\/25", + "version":51917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.144.0", + "prefixLen":25, + "network":"193.198.144.0\/25", + "version":51917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.144.128", + "prefixLen":25, + "network":"193.198.144.128\/25", + "version":51916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.144.128", + "prefixLen":25, + "network":"193.198.144.128\/25", + "version":51916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.145.0", + "prefixLen":25, + "network":"193.198.145.0\/25", + "version":51915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.145.0", + "prefixLen":25, + "network":"193.198.145.0\/25", + "version":51915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.145.128", + "prefixLen":25, + "network":"193.198.145.128\/25", + "version":51914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.145.128", + "prefixLen":25, + "network":"193.198.145.128\/25", + "version":51914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.146.0", + "prefixLen":25, + "network":"193.198.146.0\/25", + "version":51913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.146.0", + "prefixLen":25, + "network":"193.198.146.0\/25", + "version":51913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.146.128", + "prefixLen":25, + "network":"193.198.146.128\/25", + "version":51912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.146.128", + "prefixLen":25, + "network":"193.198.146.128\/25", + "version":51912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.147.0", + "prefixLen":25, + "network":"193.198.147.0\/25", + "version":51911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.147.0", + "prefixLen":25, + "network":"193.198.147.0\/25", + "version":51911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.147.128", + "prefixLen":25, + "network":"193.198.147.128\/25", + "version":51910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.147.128", + "prefixLen":25, + "network":"193.198.147.128\/25", + "version":51910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.160.0", + "prefixLen":25, + "network":"193.198.160.0\/25", + "version":51909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.160.0", + "prefixLen":25, + "network":"193.198.160.0\/25", + "version":51909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.160.128", + "prefixLen":25, + "network":"193.198.160.128\/25", + "version":51908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.160.128", + "prefixLen":25, + "network":"193.198.160.128\/25", + "version":51908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.161.0", + "prefixLen":25, + "network":"193.198.161.0\/25", + "version":51907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.161.0", + "prefixLen":25, + "network":"193.198.161.0\/25", + "version":51907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.161.128", + "prefixLen":25, + "network":"193.198.161.128\/25", + "version":51906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.161.128", + "prefixLen":25, + "network":"193.198.161.128\/25", + "version":51906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.162.0", + "prefixLen":25, + "network":"193.198.162.0\/25", + "version":51905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.162.0", + "prefixLen":25, + "network":"193.198.162.0\/25", + "version":51905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.162.128", + "prefixLen":25, + "network":"193.198.162.128\/25", + "version":51904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.162.128", + "prefixLen":25, + "network":"193.198.162.128\/25", + "version":51904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.163.0", + "prefixLen":25, + "network":"193.198.163.0\/25", + "version":51903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.163.0", + "prefixLen":25, + "network":"193.198.163.0\/25", + "version":51903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.163.128", + "prefixLen":25, + "network":"193.198.163.128\/25", + "version":51902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.163.128", + "prefixLen":25, + "network":"193.198.163.128\/25", + "version":51902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.176.0", + "prefixLen":25, + "network":"193.198.176.0\/25", + "version":51901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.176.0", + "prefixLen":25, + "network":"193.198.176.0\/25", + "version":51901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.176.128", + "prefixLen":25, + "network":"193.198.176.128\/25", + "version":51900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.176.128", + "prefixLen":25, + "network":"193.198.176.128\/25", + "version":51900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.177.0", + "prefixLen":25, + "network":"193.198.177.0\/25", + "version":51899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.177.0", + "prefixLen":25, + "network":"193.198.177.0\/25", + "version":51899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.177.128", + "prefixLen":25, + "network":"193.198.177.128\/25", + "version":51898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.177.128", + "prefixLen":25, + "network":"193.198.177.128\/25", + "version":51898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.178.0", + "prefixLen":25, + "network":"193.198.178.0\/25", + "version":51897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.178.0", + "prefixLen":25, + "network":"193.198.178.0\/25", + "version":51897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.178.128", + "prefixLen":25, + "network":"193.198.178.128\/25", + "version":51896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.178.128", + "prefixLen":25, + "network":"193.198.178.128\/25", + "version":51896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.179.0", + "prefixLen":25, + "network":"193.198.179.0\/25", + "version":51895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.179.0", + "prefixLen":25, + "network":"193.198.179.0\/25", + "version":51895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.179.128", + "prefixLen":25, + "network":"193.198.179.128\/25", + "version":51894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.179.128", + "prefixLen":25, + "network":"193.198.179.128\/25", + "version":51894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.192.0", + "prefixLen":25, + "network":"193.198.192.0\/25", + "version":51893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.192.0", + "prefixLen":25, + "network":"193.198.192.0\/25", + "version":51893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.192.128", + "prefixLen":25, + "network":"193.198.192.128\/25", + "version":51892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.192.128", + "prefixLen":25, + "network":"193.198.192.128\/25", + "version":51892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.193.0", + "prefixLen":25, + "network":"193.198.193.0\/25", + "version":51891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.193.0", + "prefixLen":25, + "network":"193.198.193.0\/25", + "version":51891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.193.128", + "prefixLen":25, + "network":"193.198.193.128\/25", + "version":51890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.193.128", + "prefixLen":25, + "network":"193.198.193.128\/25", + "version":51890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.194.0", + "prefixLen":25, + "network":"193.198.194.0\/25", + "version":51889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.194.0", + "prefixLen":25, + "network":"193.198.194.0\/25", + "version":51889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.194.128", + "prefixLen":25, + "network":"193.198.194.128\/25", + "version":51888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.194.128", + "prefixLen":25, + "network":"193.198.194.128\/25", + "version":51888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.195.0", + "prefixLen":25, + "network":"193.198.195.0\/25", + "version":51887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.195.0", + "prefixLen":25, + "network":"193.198.195.0\/25", + "version":51887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.195.128", + "prefixLen":25, + "network":"193.198.195.128\/25", + "version":51886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.195.128", + "prefixLen":25, + "network":"193.198.195.128\/25", + "version":51886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.208.0", + "prefixLen":25, + "network":"193.198.208.0\/25", + "version":51885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.208.0", + "prefixLen":25, + "network":"193.198.208.0\/25", + "version":51885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.208.128", + "prefixLen":25, + "network":"193.198.208.128\/25", + "version":51884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.208.128", + "prefixLen":25, + "network":"193.198.208.128\/25", + "version":51884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.209.0", + "prefixLen":25, + "network":"193.198.209.0\/25", + "version":51883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.209.0", + "prefixLen":25, + "network":"193.198.209.0\/25", + "version":51883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.209.128", + "prefixLen":25, + "network":"193.198.209.128\/25", + "version":51882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.209.128", + "prefixLen":25, + "network":"193.198.209.128\/25", + "version":51882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.210.0", + "prefixLen":25, + "network":"193.198.210.0\/25", + "version":51881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.210.0", + "prefixLen":25, + "network":"193.198.210.0\/25", + "version":51881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.210.128", + "prefixLen":25, + "network":"193.198.210.128\/25", + "version":51880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.210.128", + "prefixLen":25, + "network":"193.198.210.128\/25", + "version":51880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.211.0", + "prefixLen":25, + "network":"193.198.211.0\/25", + "version":51879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.211.0", + "prefixLen":25, + "network":"193.198.211.0\/25", + "version":51879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.211.128", + "prefixLen":25, + "network":"193.198.211.128\/25", + "version":51878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.211.128", + "prefixLen":25, + "network":"193.198.211.128\/25", + "version":51878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.224.0", + "prefixLen":25, + "network":"193.198.224.0\/25", + "version":51877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.224.0", + "prefixLen":25, + "network":"193.198.224.0\/25", + "version":51877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.224.128", + "prefixLen":25, + "network":"193.198.224.128\/25", + "version":51876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.224.128", + "prefixLen":25, + "network":"193.198.224.128\/25", + "version":51876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.225.0", + "prefixLen":25, + "network":"193.198.225.0\/25", + "version":51875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.225.0", + "prefixLen":25, + "network":"193.198.225.0\/25", + "version":51875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.225.128", + "prefixLen":25, + "network":"193.198.225.128\/25", + "version":51874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.225.128", + "prefixLen":25, + "network":"193.198.225.128\/25", + "version":51874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.226.0", + "prefixLen":25, + "network":"193.198.226.0\/25", + "version":51873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.226.0", + "prefixLen":25, + "network":"193.198.226.0\/25", + "version":51873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.226.128", + "prefixLen":25, + "network":"193.198.226.128\/25", + "version":51872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.226.128", + "prefixLen":25, + "network":"193.198.226.128\/25", + "version":51872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.227.0", + "prefixLen":25, + "network":"193.198.227.0\/25", + "version":51871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.227.0", + "prefixLen":25, + "network":"193.198.227.0\/25", + "version":51871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.227.128", + "prefixLen":25, + "network":"193.198.227.128\/25", + "version":51870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.227.128", + "prefixLen":25, + "network":"193.198.227.128\/25", + "version":51870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.240.0", + "prefixLen":25, + "network":"193.198.240.0\/25", + "version":51869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.240.0", + "prefixLen":25, + "network":"193.198.240.0\/25", + "version":51869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.240.128", + "prefixLen":25, + "network":"193.198.240.128\/25", + "version":51868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.240.128", + "prefixLen":25, + "network":"193.198.240.128\/25", + "version":51868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.241.0", + "prefixLen":25, + "network":"193.198.241.0\/25", + "version":51867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.241.0", + "prefixLen":25, + "network":"193.198.241.0\/25", + "version":51867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.241.128", + "prefixLen":25, + "network":"193.198.241.128\/25", + "version":51866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.241.128", + "prefixLen":25, + "network":"193.198.241.128\/25", + "version":51866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.242.0", + "prefixLen":25, + "network":"193.198.242.0\/25", + "version":51865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.242.0", + "prefixLen":25, + "network":"193.198.242.0\/25", + "version":51865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.242.128", + "prefixLen":25, + "network":"193.198.242.128\/25", + "version":51864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.242.128", + "prefixLen":25, + "network":"193.198.242.128\/25", + "version":51864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.243.0", + "prefixLen":25, + "network":"193.198.243.0\/25", + "version":51863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.243.0", + "prefixLen":25, + "network":"193.198.243.0\/25", + "version":51863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.198.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.198.243.128", + "prefixLen":25, + "network":"193.198.243.128\/25", + "version":51862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.198.243.128", + "prefixLen":25, + "network":"193.198.243.128\/25", + "version":51862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64886 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.0.0", + "prefixLen":25, + "network":"193.199.0.0\/25", + "version":53269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.0.0", + "prefixLen":25, + "network":"193.199.0.0\/25", + "version":53269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.0.128", + "prefixLen":25, + "network":"193.199.0.128\/25", + "version":53396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.0.128", + "prefixLen":25, + "network":"193.199.0.128\/25", + "version":53396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.1.0", + "prefixLen":25, + "network":"193.199.1.0\/25", + "version":53395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.1.0", + "prefixLen":25, + "network":"193.199.1.0\/25", + "version":53395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.1.128", + "prefixLen":25, + "network":"193.199.1.128\/25", + "version":53394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.1.128", + "prefixLen":25, + "network":"193.199.1.128\/25", + "version":53394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.2.0", + "prefixLen":25, + "network":"193.199.2.0\/25", + "version":53393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.2.0", + "prefixLen":25, + "network":"193.199.2.0\/25", + "version":53393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.2.128", + "prefixLen":25, + "network":"193.199.2.128\/25", + "version":53392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.2.128", + "prefixLen":25, + "network":"193.199.2.128\/25", + "version":53392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.3.0", + "prefixLen":25, + "network":"193.199.3.0\/25", + "version":53391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.3.0", + "prefixLen":25, + "network":"193.199.3.0\/25", + "version":53391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.3.128", + "prefixLen":25, + "network":"193.199.3.128\/25", + "version":53390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.3.128", + "prefixLen":25, + "network":"193.199.3.128\/25", + "version":53390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.16.0", + "prefixLen":25, + "network":"193.199.16.0\/25", + "version":53389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.16.0", + "prefixLen":25, + "network":"193.199.16.0\/25", + "version":53389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.16.128", + "prefixLen":25, + "network":"193.199.16.128\/25", + "version":53388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.16.128", + "prefixLen":25, + "network":"193.199.16.128\/25", + "version":53388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.17.0", + "prefixLen":25, + "network":"193.199.17.0\/25", + "version":53387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.17.0", + "prefixLen":25, + "network":"193.199.17.0\/25", + "version":53387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.17.128", + "prefixLen":25, + "network":"193.199.17.128\/25", + "version":53386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.17.128", + "prefixLen":25, + "network":"193.199.17.128\/25", + "version":53386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.18.0", + "prefixLen":25, + "network":"193.199.18.0\/25", + "version":53385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.18.0", + "prefixLen":25, + "network":"193.199.18.0\/25", + "version":53385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.18.128", + "prefixLen":25, + "network":"193.199.18.128\/25", + "version":53384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.18.128", + "prefixLen":25, + "network":"193.199.18.128\/25", + "version":53384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.19.0", + "prefixLen":25, + "network":"193.199.19.0\/25", + "version":53383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.19.0", + "prefixLen":25, + "network":"193.199.19.0\/25", + "version":53383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.19.128", + "prefixLen":25, + "network":"193.199.19.128\/25", + "version":53382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.19.128", + "prefixLen":25, + "network":"193.199.19.128\/25", + "version":53382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.32.0", + "prefixLen":25, + "network":"193.199.32.0\/25", + "version":53381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.32.0", + "prefixLen":25, + "network":"193.199.32.0\/25", + "version":53381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.32.128", + "prefixLen":25, + "network":"193.199.32.128\/25", + "version":53380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.32.128", + "prefixLen":25, + "network":"193.199.32.128\/25", + "version":53380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.33.0", + "prefixLen":25, + "network":"193.199.33.0\/25", + "version":53379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.33.0", + "prefixLen":25, + "network":"193.199.33.0\/25", + "version":53379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.33.128", + "prefixLen":25, + "network":"193.199.33.128\/25", + "version":53378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.33.128", + "prefixLen":25, + "network":"193.199.33.128\/25", + "version":53378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.34.0", + "prefixLen":25, + "network":"193.199.34.0\/25", + "version":53377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.34.0", + "prefixLen":25, + "network":"193.199.34.0\/25", + "version":53377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.34.128", + "prefixLen":25, + "network":"193.199.34.128\/25", + "version":53376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.34.128", + "prefixLen":25, + "network":"193.199.34.128\/25", + "version":53376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.35.0", + "prefixLen":25, + "network":"193.199.35.0\/25", + "version":53375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.35.0", + "prefixLen":25, + "network":"193.199.35.0\/25", + "version":53375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.35.128", + "prefixLen":25, + "network":"193.199.35.128\/25", + "version":53374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.35.128", + "prefixLen":25, + "network":"193.199.35.128\/25", + "version":53374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.48.0", + "prefixLen":25, + "network":"193.199.48.0\/25", + "version":53373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.48.0", + "prefixLen":25, + "network":"193.199.48.0\/25", + "version":53373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.48.128", + "prefixLen":25, + "network":"193.199.48.128\/25", + "version":53372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.48.128", + "prefixLen":25, + "network":"193.199.48.128\/25", + "version":53372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.49.0", + "prefixLen":25, + "network":"193.199.49.0\/25", + "version":53371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.49.0", + "prefixLen":25, + "network":"193.199.49.0\/25", + "version":53371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.49.128", + "prefixLen":25, + "network":"193.199.49.128\/25", + "version":53370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.49.128", + "prefixLen":25, + "network":"193.199.49.128\/25", + "version":53370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.50.0", + "prefixLen":25, + "network":"193.199.50.0\/25", + "version":53369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.50.0", + "prefixLen":25, + "network":"193.199.50.0\/25", + "version":53369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.50.128", + "prefixLen":25, + "network":"193.199.50.128\/25", + "version":53368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.50.128", + "prefixLen":25, + "network":"193.199.50.128\/25", + "version":53368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.51.0", + "prefixLen":25, + "network":"193.199.51.0\/25", + "version":53367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.51.0", + "prefixLen":25, + "network":"193.199.51.0\/25", + "version":53367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.51.128", + "prefixLen":25, + "network":"193.199.51.128\/25", + "version":53366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.51.128", + "prefixLen":25, + "network":"193.199.51.128\/25", + "version":53366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.64.0", + "prefixLen":25, + "network":"193.199.64.0\/25", + "version":53365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.64.0", + "prefixLen":25, + "network":"193.199.64.0\/25", + "version":53365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.64.128", + "prefixLen":25, + "network":"193.199.64.128\/25", + "version":53364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.64.128", + "prefixLen":25, + "network":"193.199.64.128\/25", + "version":53364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.65.0", + "prefixLen":25, + "network":"193.199.65.0\/25", + "version":53363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.65.0", + "prefixLen":25, + "network":"193.199.65.0\/25", + "version":53363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.65.128", + "prefixLen":25, + "network":"193.199.65.128\/25", + "version":53362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.65.128", + "prefixLen":25, + "network":"193.199.65.128\/25", + "version":53362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.66.0", + "prefixLen":25, + "network":"193.199.66.0\/25", + "version":53361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.66.0", + "prefixLen":25, + "network":"193.199.66.0\/25", + "version":53361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.66.128", + "prefixLen":25, + "network":"193.199.66.128\/25", + "version":53360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.66.128", + "prefixLen":25, + "network":"193.199.66.128\/25", + "version":53360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.67.0", + "prefixLen":25, + "network":"193.199.67.0\/25", + "version":53359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.67.0", + "prefixLen":25, + "network":"193.199.67.0\/25", + "version":53359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.67.128", + "prefixLen":25, + "network":"193.199.67.128\/25", + "version":53358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.67.128", + "prefixLen":25, + "network":"193.199.67.128\/25", + "version":53358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.80.0", + "prefixLen":25, + "network":"193.199.80.0\/25", + "version":53357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.80.0", + "prefixLen":25, + "network":"193.199.80.0\/25", + "version":53357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.80.128", + "prefixLen":25, + "network":"193.199.80.128\/25", + "version":53356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.80.128", + "prefixLen":25, + "network":"193.199.80.128\/25", + "version":53356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.81.0", + "prefixLen":25, + "network":"193.199.81.0\/25", + "version":53355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.81.0", + "prefixLen":25, + "network":"193.199.81.0\/25", + "version":53355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.81.128", + "prefixLen":25, + "network":"193.199.81.128\/25", + "version":53354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.81.128", + "prefixLen":25, + "network":"193.199.81.128\/25", + "version":53354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.82.0", + "prefixLen":25, + "network":"193.199.82.0\/25", + "version":53353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.82.0", + "prefixLen":25, + "network":"193.199.82.0\/25", + "version":53353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.82.128", + "prefixLen":25, + "network":"193.199.82.128\/25", + "version":53352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.82.128", + "prefixLen":25, + "network":"193.199.82.128\/25", + "version":53352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.83.0", + "prefixLen":25, + "network":"193.199.83.0\/25", + "version":53351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.83.0", + "prefixLen":25, + "network":"193.199.83.0\/25", + "version":53351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.83.128", + "prefixLen":25, + "network":"193.199.83.128\/25", + "version":53350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.83.128", + "prefixLen":25, + "network":"193.199.83.128\/25", + "version":53350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.96.0", + "prefixLen":25, + "network":"193.199.96.0\/25", + "version":53349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.96.0", + "prefixLen":25, + "network":"193.199.96.0\/25", + "version":53349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.96.128", + "prefixLen":25, + "network":"193.199.96.128\/25", + "version":53348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.96.128", + "prefixLen":25, + "network":"193.199.96.128\/25", + "version":53348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.97.0", + "prefixLen":25, + "network":"193.199.97.0\/25", + "version":53347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.97.0", + "prefixLen":25, + "network":"193.199.97.0\/25", + "version":53347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.97.128", + "prefixLen":25, + "network":"193.199.97.128\/25", + "version":53346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.97.128", + "prefixLen":25, + "network":"193.199.97.128\/25", + "version":53346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.98.0", + "prefixLen":25, + "network":"193.199.98.0\/25", + "version":53345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.98.0", + "prefixLen":25, + "network":"193.199.98.0\/25", + "version":53345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.98.128", + "prefixLen":25, + "network":"193.199.98.128\/25", + "version":53344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.98.128", + "prefixLen":25, + "network":"193.199.98.128\/25", + "version":53344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.99.0", + "prefixLen":25, + "network":"193.199.99.0\/25", + "version":53343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.99.0", + "prefixLen":25, + "network":"193.199.99.0\/25", + "version":53343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.99.128", + "prefixLen":25, + "network":"193.199.99.128\/25", + "version":53342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.99.128", + "prefixLen":25, + "network":"193.199.99.128\/25", + "version":53342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.112.0", + "prefixLen":25, + "network":"193.199.112.0\/25", + "version":53341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.112.0", + "prefixLen":25, + "network":"193.199.112.0\/25", + "version":53341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.112.128", + "prefixLen":25, + "network":"193.199.112.128\/25", + "version":53340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.112.128", + "prefixLen":25, + "network":"193.199.112.128\/25", + "version":53340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.113.0", + "prefixLen":25, + "network":"193.199.113.0\/25", + "version":53339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.113.0", + "prefixLen":25, + "network":"193.199.113.0\/25", + "version":53339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.113.128", + "prefixLen":25, + "network":"193.199.113.128\/25", + "version":53338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.113.128", + "prefixLen":25, + "network":"193.199.113.128\/25", + "version":53338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.114.0", + "prefixLen":25, + "network":"193.199.114.0\/25", + "version":53337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.114.0", + "prefixLen":25, + "network":"193.199.114.0\/25", + "version":53337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.114.128", + "prefixLen":25, + "network":"193.199.114.128\/25", + "version":53336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.114.128", + "prefixLen":25, + "network":"193.199.114.128\/25", + "version":53336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.115.0", + "prefixLen":25, + "network":"193.199.115.0\/25", + "version":53335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.115.0", + "prefixLen":25, + "network":"193.199.115.0\/25", + "version":53335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.115.128", + "prefixLen":25, + "network":"193.199.115.128\/25", + "version":53334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.115.128", + "prefixLen":25, + "network":"193.199.115.128\/25", + "version":53334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.128.0", + "prefixLen":25, + "network":"193.199.128.0\/25", + "version":53333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.128.0", + "prefixLen":25, + "network":"193.199.128.0\/25", + "version":53333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.128.128", + "prefixLen":25, + "network":"193.199.128.128\/25", + "version":53332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.128.128", + "prefixLen":25, + "network":"193.199.128.128\/25", + "version":53332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.129.0", + "prefixLen":25, + "network":"193.199.129.0\/25", + "version":53331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.129.0", + "prefixLen":25, + "network":"193.199.129.0\/25", + "version":53331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.129.128", + "prefixLen":25, + "network":"193.199.129.128\/25", + "version":53330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.129.128", + "prefixLen":25, + "network":"193.199.129.128\/25", + "version":53330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.130.0", + "prefixLen":25, + "network":"193.199.130.0\/25", + "version":53329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.130.0", + "prefixLen":25, + "network":"193.199.130.0\/25", + "version":53329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.130.128", + "prefixLen":25, + "network":"193.199.130.128\/25", + "version":53328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.130.128", + "prefixLen":25, + "network":"193.199.130.128\/25", + "version":53328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.131.0", + "prefixLen":25, + "network":"193.199.131.0\/25", + "version":53327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.131.0", + "prefixLen":25, + "network":"193.199.131.0\/25", + "version":53327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.131.128", + "prefixLen":25, + "network":"193.199.131.128\/25", + "version":53326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.131.128", + "prefixLen":25, + "network":"193.199.131.128\/25", + "version":53326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.144.0", + "prefixLen":25, + "network":"193.199.144.0\/25", + "version":53325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.144.0", + "prefixLen":25, + "network":"193.199.144.0\/25", + "version":53325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.144.128", + "prefixLen":25, + "network":"193.199.144.128\/25", + "version":53324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.144.128", + "prefixLen":25, + "network":"193.199.144.128\/25", + "version":53324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.145.0", + "prefixLen":25, + "network":"193.199.145.0\/25", + "version":53323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.145.0", + "prefixLen":25, + "network":"193.199.145.0\/25", + "version":53323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.145.128", + "prefixLen":25, + "network":"193.199.145.128\/25", + "version":53322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.145.128", + "prefixLen":25, + "network":"193.199.145.128\/25", + "version":53322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.146.0", + "prefixLen":25, + "network":"193.199.146.0\/25", + "version":53321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.146.0", + "prefixLen":25, + "network":"193.199.146.0\/25", + "version":53321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.146.128", + "prefixLen":25, + "network":"193.199.146.128\/25", + "version":53320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.146.128", + "prefixLen":25, + "network":"193.199.146.128\/25", + "version":53320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.147.0", + "prefixLen":25, + "network":"193.199.147.0\/25", + "version":53319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.147.0", + "prefixLen":25, + "network":"193.199.147.0\/25", + "version":53319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.147.128", + "prefixLen":25, + "network":"193.199.147.128\/25", + "version":53318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.147.128", + "prefixLen":25, + "network":"193.199.147.128\/25", + "version":53318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.160.0", + "prefixLen":25, + "network":"193.199.160.0\/25", + "version":53317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.160.0", + "prefixLen":25, + "network":"193.199.160.0\/25", + "version":53317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.160.128", + "prefixLen":25, + "network":"193.199.160.128\/25", + "version":53316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.160.128", + "prefixLen":25, + "network":"193.199.160.128\/25", + "version":53316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.161.0", + "prefixLen":25, + "network":"193.199.161.0\/25", + "version":53315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.161.0", + "prefixLen":25, + "network":"193.199.161.0\/25", + "version":53315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.161.128", + "prefixLen":25, + "network":"193.199.161.128\/25", + "version":53314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.161.128", + "prefixLen":25, + "network":"193.199.161.128\/25", + "version":53314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.162.0", + "prefixLen":25, + "network":"193.199.162.0\/25", + "version":53313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.162.0", + "prefixLen":25, + "network":"193.199.162.0\/25", + "version":53313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.162.128", + "prefixLen":25, + "network":"193.199.162.128\/25", + "version":53312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.162.128", + "prefixLen":25, + "network":"193.199.162.128\/25", + "version":53312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.163.0", + "prefixLen":25, + "network":"193.199.163.0\/25", + "version":53311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.163.0", + "prefixLen":25, + "network":"193.199.163.0\/25", + "version":53311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.163.128", + "prefixLen":25, + "network":"193.199.163.128\/25", + "version":53310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.163.128", + "prefixLen":25, + "network":"193.199.163.128\/25", + "version":53310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.176.0", + "prefixLen":25, + "network":"193.199.176.0\/25", + "version":53309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.176.0", + "prefixLen":25, + "network":"193.199.176.0\/25", + "version":53309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.176.128", + "prefixLen":25, + "network":"193.199.176.128\/25", + "version":53308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.176.128", + "prefixLen":25, + "network":"193.199.176.128\/25", + "version":53308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.177.0", + "prefixLen":25, + "network":"193.199.177.0\/25", + "version":53307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.177.0", + "prefixLen":25, + "network":"193.199.177.0\/25", + "version":53307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.177.128", + "prefixLen":25, + "network":"193.199.177.128\/25", + "version":53306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.177.128", + "prefixLen":25, + "network":"193.199.177.128\/25", + "version":53306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.178.0", + "prefixLen":25, + "network":"193.199.178.0\/25", + "version":53305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.178.0", + "prefixLen":25, + "network":"193.199.178.0\/25", + "version":53305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.178.128", + "prefixLen":25, + "network":"193.199.178.128\/25", + "version":53304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.178.128", + "prefixLen":25, + "network":"193.199.178.128\/25", + "version":53304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.179.0", + "prefixLen":25, + "network":"193.199.179.0\/25", + "version":53303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.179.0", + "prefixLen":25, + "network":"193.199.179.0\/25", + "version":53303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.179.128", + "prefixLen":25, + "network":"193.199.179.128\/25", + "version":53302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.179.128", + "prefixLen":25, + "network":"193.199.179.128\/25", + "version":53302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.192.0", + "prefixLen":25, + "network":"193.199.192.0\/25", + "version":53301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.192.0", + "prefixLen":25, + "network":"193.199.192.0\/25", + "version":53301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.192.128", + "prefixLen":25, + "network":"193.199.192.128\/25", + "version":53300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.192.128", + "prefixLen":25, + "network":"193.199.192.128\/25", + "version":53300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.193.0", + "prefixLen":25, + "network":"193.199.193.0\/25", + "version":53299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.193.0", + "prefixLen":25, + "network":"193.199.193.0\/25", + "version":53299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.193.128", + "prefixLen":25, + "network":"193.199.193.128\/25", + "version":53298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.193.128", + "prefixLen":25, + "network":"193.199.193.128\/25", + "version":53298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.194.0", + "prefixLen":25, + "network":"193.199.194.0\/25", + "version":53297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.194.0", + "prefixLen":25, + "network":"193.199.194.0\/25", + "version":53297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.194.128", + "prefixLen":25, + "network":"193.199.194.128\/25", + "version":53296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.194.128", + "prefixLen":25, + "network":"193.199.194.128\/25", + "version":53296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.195.0", + "prefixLen":25, + "network":"193.199.195.0\/25", + "version":53295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.195.0", + "prefixLen":25, + "network":"193.199.195.0\/25", + "version":53295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.195.128", + "prefixLen":25, + "network":"193.199.195.128\/25", + "version":53294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.195.128", + "prefixLen":25, + "network":"193.199.195.128\/25", + "version":53294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.208.0", + "prefixLen":25, + "network":"193.199.208.0\/25", + "version":53293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.208.0", + "prefixLen":25, + "network":"193.199.208.0\/25", + "version":53293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.208.128", + "prefixLen":25, + "network":"193.199.208.128\/25", + "version":53292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.208.128", + "prefixLen":25, + "network":"193.199.208.128\/25", + "version":53292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.209.0", + "prefixLen":25, + "network":"193.199.209.0\/25", + "version":53291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.209.0", + "prefixLen":25, + "network":"193.199.209.0\/25", + "version":53291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.209.128", + "prefixLen":25, + "network":"193.199.209.128\/25", + "version":53290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.209.128", + "prefixLen":25, + "network":"193.199.209.128\/25", + "version":53290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.210.0", + "prefixLen":25, + "network":"193.199.210.0\/25", + "version":53289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.210.0", + "prefixLen":25, + "network":"193.199.210.0\/25", + "version":53289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.210.128", + "prefixLen":25, + "network":"193.199.210.128\/25", + "version":53288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.210.128", + "prefixLen":25, + "network":"193.199.210.128\/25", + "version":53288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.211.0", + "prefixLen":25, + "network":"193.199.211.0\/25", + "version":53287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.211.0", + "prefixLen":25, + "network":"193.199.211.0\/25", + "version":53287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.211.128", + "prefixLen":25, + "network":"193.199.211.128\/25", + "version":53286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.211.128", + "prefixLen":25, + "network":"193.199.211.128\/25", + "version":53286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.224.0", + "prefixLen":25, + "network":"193.199.224.0\/25", + "version":53285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.224.0", + "prefixLen":25, + "network":"193.199.224.0\/25", + "version":53285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.224.128", + "prefixLen":25, + "network":"193.199.224.128\/25", + "version":53284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.224.128", + "prefixLen":25, + "network":"193.199.224.128\/25", + "version":53284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.225.0", + "prefixLen":25, + "network":"193.199.225.0\/25", + "version":53283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.225.0", + "prefixLen":25, + "network":"193.199.225.0\/25", + "version":53283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.225.128", + "prefixLen":25, + "network":"193.199.225.128\/25", + "version":53282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.225.128", + "prefixLen":25, + "network":"193.199.225.128\/25", + "version":53282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.226.0", + "prefixLen":25, + "network":"193.199.226.0\/25", + "version":53281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.226.0", + "prefixLen":25, + "network":"193.199.226.0\/25", + "version":53281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.226.128", + "prefixLen":25, + "network":"193.199.226.128\/25", + "version":53280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.226.128", + "prefixLen":25, + "network":"193.199.226.128\/25", + "version":53280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.227.0", + "prefixLen":25, + "network":"193.199.227.0\/25", + "version":53279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.227.0", + "prefixLen":25, + "network":"193.199.227.0\/25", + "version":53279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.227.128", + "prefixLen":25, + "network":"193.199.227.128\/25", + "version":53278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.227.128", + "prefixLen":25, + "network":"193.199.227.128\/25", + "version":53278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.240.0", + "prefixLen":25, + "network":"193.199.240.0\/25", + "version":53277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.240.0", + "prefixLen":25, + "network":"193.199.240.0\/25", + "version":53277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.240.128", + "prefixLen":25, + "network":"193.199.240.128\/25", + "version":53276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.240.128", + "prefixLen":25, + "network":"193.199.240.128\/25", + "version":53276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.241.0", + "prefixLen":25, + "network":"193.199.241.0\/25", + "version":53275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.241.0", + "prefixLen":25, + "network":"193.199.241.0\/25", + "version":53275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.241.128", + "prefixLen":25, + "network":"193.199.241.128\/25", + "version":53274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.241.128", + "prefixLen":25, + "network":"193.199.241.128\/25", + "version":53274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.242.0", + "prefixLen":25, + "network":"193.199.242.0\/25", + "version":53273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.242.0", + "prefixLen":25, + "network":"193.199.242.0\/25", + "version":53273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.242.128", + "prefixLen":25, + "network":"193.199.242.128\/25", + "version":53272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.242.128", + "prefixLen":25, + "network":"193.199.242.128\/25", + "version":53272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.243.0", + "prefixLen":25, + "network":"193.199.243.0\/25", + "version":53271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.243.0", + "prefixLen":25, + "network":"193.199.243.0\/25", + "version":53271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.199.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.199.243.128", + "prefixLen":25, + "network":"193.199.243.128\/25", + "version":53270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.199.243.128", + "prefixLen":25, + "network":"193.199.243.128\/25", + "version":53270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64887 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.0.0", + "prefixLen":25, + "network":"193.200.0.0\/25", + "version":53397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.0.0", + "prefixLen":25, + "network":"193.200.0.0\/25", + "version":53397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.0.128", + "prefixLen":25, + "network":"193.200.0.128\/25", + "version":53524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.0.128", + "prefixLen":25, + "network":"193.200.0.128\/25", + "version":53524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.1.0", + "prefixLen":25, + "network":"193.200.1.0\/25", + "version":53523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.1.0", + "prefixLen":25, + "network":"193.200.1.0\/25", + "version":53523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.1.128", + "prefixLen":25, + "network":"193.200.1.128\/25", + "version":53522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.1.128", + "prefixLen":25, + "network":"193.200.1.128\/25", + "version":53522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.2.0", + "prefixLen":25, + "network":"193.200.2.0\/25", + "version":53521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.2.0", + "prefixLen":25, + "network":"193.200.2.0\/25", + "version":53521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.2.128", + "prefixLen":25, + "network":"193.200.2.128\/25", + "version":53520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.2.128", + "prefixLen":25, + "network":"193.200.2.128\/25", + "version":53520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.3.0", + "prefixLen":25, + "network":"193.200.3.0\/25", + "version":53519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.3.0", + "prefixLen":25, + "network":"193.200.3.0\/25", + "version":53519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.3.128", + "prefixLen":25, + "network":"193.200.3.128\/25", + "version":53518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.3.128", + "prefixLen":25, + "network":"193.200.3.128\/25", + "version":53518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.16.0", + "prefixLen":25, + "network":"193.200.16.0\/25", + "version":53517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.16.0", + "prefixLen":25, + "network":"193.200.16.0\/25", + "version":53517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.16.128", + "prefixLen":25, + "network":"193.200.16.128\/25", + "version":53516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.16.128", + "prefixLen":25, + "network":"193.200.16.128\/25", + "version":53516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.17.0", + "prefixLen":25, + "network":"193.200.17.0\/25", + "version":53515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.17.0", + "prefixLen":25, + "network":"193.200.17.0\/25", + "version":53515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.17.128", + "prefixLen":25, + "network":"193.200.17.128\/25", + "version":53514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.17.128", + "prefixLen":25, + "network":"193.200.17.128\/25", + "version":53514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.18.0", + "prefixLen":25, + "network":"193.200.18.0\/25", + "version":53513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.18.0", + "prefixLen":25, + "network":"193.200.18.0\/25", + "version":53513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.18.128", + "prefixLen":25, + "network":"193.200.18.128\/25", + "version":53512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.18.128", + "prefixLen":25, + "network":"193.200.18.128\/25", + "version":53512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.19.0", + "prefixLen":25, + "network":"193.200.19.0\/25", + "version":53511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.19.0", + "prefixLen":25, + "network":"193.200.19.0\/25", + "version":53511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.19.128", + "prefixLen":25, + "network":"193.200.19.128\/25", + "version":53510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.19.128", + "prefixLen":25, + "network":"193.200.19.128\/25", + "version":53510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.32.0", + "prefixLen":25, + "network":"193.200.32.0\/25", + "version":53509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.32.0", + "prefixLen":25, + "network":"193.200.32.0\/25", + "version":53509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.32.128", + "prefixLen":25, + "network":"193.200.32.128\/25", + "version":53508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.32.128", + "prefixLen":25, + "network":"193.200.32.128\/25", + "version":53508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.33.0", + "prefixLen":25, + "network":"193.200.33.0\/25", + "version":53507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.33.0", + "prefixLen":25, + "network":"193.200.33.0\/25", + "version":53507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.33.128", + "prefixLen":25, + "network":"193.200.33.128\/25", + "version":53506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.33.128", + "prefixLen":25, + "network":"193.200.33.128\/25", + "version":53506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.34.0", + "prefixLen":25, + "network":"193.200.34.0\/25", + "version":53505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.34.0", + "prefixLen":25, + "network":"193.200.34.0\/25", + "version":53505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.34.128", + "prefixLen":25, + "network":"193.200.34.128\/25", + "version":53504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.34.128", + "prefixLen":25, + "network":"193.200.34.128\/25", + "version":53504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.35.0", + "prefixLen":25, + "network":"193.200.35.0\/25", + "version":53503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.35.0", + "prefixLen":25, + "network":"193.200.35.0\/25", + "version":53503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.35.128", + "prefixLen":25, + "network":"193.200.35.128\/25", + "version":53502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.35.128", + "prefixLen":25, + "network":"193.200.35.128\/25", + "version":53502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.48.0", + "prefixLen":25, + "network":"193.200.48.0\/25", + "version":53501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.48.0", + "prefixLen":25, + "network":"193.200.48.0\/25", + "version":53501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.48.128", + "prefixLen":25, + "network":"193.200.48.128\/25", + "version":53500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.48.128", + "prefixLen":25, + "network":"193.200.48.128\/25", + "version":53500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.49.0", + "prefixLen":25, + "network":"193.200.49.0\/25", + "version":53499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.49.0", + "prefixLen":25, + "network":"193.200.49.0\/25", + "version":53499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.49.128", + "prefixLen":25, + "network":"193.200.49.128\/25", + "version":53498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.49.128", + "prefixLen":25, + "network":"193.200.49.128\/25", + "version":53498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.50.0", + "prefixLen":25, + "network":"193.200.50.0\/25", + "version":53497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.50.0", + "prefixLen":25, + "network":"193.200.50.0\/25", + "version":53497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.50.128", + "prefixLen":25, + "network":"193.200.50.128\/25", + "version":53496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.50.128", + "prefixLen":25, + "network":"193.200.50.128\/25", + "version":53496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.51.0", + "prefixLen":25, + "network":"193.200.51.0\/25", + "version":53495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.51.0", + "prefixLen":25, + "network":"193.200.51.0\/25", + "version":53495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.51.128", + "prefixLen":25, + "network":"193.200.51.128\/25", + "version":53494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.51.128", + "prefixLen":25, + "network":"193.200.51.128\/25", + "version":53494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.64.0", + "prefixLen":25, + "network":"193.200.64.0\/25", + "version":53493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.64.0", + "prefixLen":25, + "network":"193.200.64.0\/25", + "version":53493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.64.128", + "prefixLen":25, + "network":"193.200.64.128\/25", + "version":53492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.64.128", + "prefixLen":25, + "network":"193.200.64.128\/25", + "version":53492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.65.0", + "prefixLen":25, + "network":"193.200.65.0\/25", + "version":53491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.65.0", + "prefixLen":25, + "network":"193.200.65.0\/25", + "version":53491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.65.128", + "prefixLen":25, + "network":"193.200.65.128\/25", + "version":53490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.65.128", + "prefixLen":25, + "network":"193.200.65.128\/25", + "version":53490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.66.0", + "prefixLen":25, + "network":"193.200.66.0\/25", + "version":53489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.66.0", + "prefixLen":25, + "network":"193.200.66.0\/25", + "version":53489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.66.128", + "prefixLen":25, + "network":"193.200.66.128\/25", + "version":53488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.66.128", + "prefixLen":25, + "network":"193.200.66.128\/25", + "version":53488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.67.0", + "prefixLen":25, + "network":"193.200.67.0\/25", + "version":53487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.67.0", + "prefixLen":25, + "network":"193.200.67.0\/25", + "version":53487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.67.128", + "prefixLen":25, + "network":"193.200.67.128\/25", + "version":53486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.67.128", + "prefixLen":25, + "network":"193.200.67.128\/25", + "version":53486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.80.0", + "prefixLen":25, + "network":"193.200.80.0\/25", + "version":53485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.80.0", + "prefixLen":25, + "network":"193.200.80.0\/25", + "version":53485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.80.128", + "prefixLen":25, + "network":"193.200.80.128\/25", + "version":53484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.80.128", + "prefixLen":25, + "network":"193.200.80.128\/25", + "version":53484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.81.0", + "prefixLen":25, + "network":"193.200.81.0\/25", + "version":53483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.81.0", + "prefixLen":25, + "network":"193.200.81.0\/25", + "version":53483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.81.128", + "prefixLen":25, + "network":"193.200.81.128\/25", + "version":53482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.81.128", + "prefixLen":25, + "network":"193.200.81.128\/25", + "version":53482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.82.0", + "prefixLen":25, + "network":"193.200.82.0\/25", + "version":53481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.82.0", + "prefixLen":25, + "network":"193.200.82.0\/25", + "version":53481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.82.128", + "prefixLen":25, + "network":"193.200.82.128\/25", + "version":53480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.82.128", + "prefixLen":25, + "network":"193.200.82.128\/25", + "version":53480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.83.0", + "prefixLen":25, + "network":"193.200.83.0\/25", + "version":53479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.83.0", + "prefixLen":25, + "network":"193.200.83.0\/25", + "version":53479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.83.128", + "prefixLen":25, + "network":"193.200.83.128\/25", + "version":53478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.83.128", + "prefixLen":25, + "network":"193.200.83.128\/25", + "version":53478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.96.0", + "prefixLen":25, + "network":"193.200.96.0\/25", + "version":53477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.96.0", + "prefixLen":25, + "network":"193.200.96.0\/25", + "version":53477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.96.128", + "prefixLen":25, + "network":"193.200.96.128\/25", + "version":53476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.96.128", + "prefixLen":25, + "network":"193.200.96.128\/25", + "version":53476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.97.0", + "prefixLen":25, + "network":"193.200.97.0\/25", + "version":53475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.97.0", + "prefixLen":25, + "network":"193.200.97.0\/25", + "version":53475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.97.128", + "prefixLen":25, + "network":"193.200.97.128\/25", + "version":53474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.97.128", + "prefixLen":25, + "network":"193.200.97.128\/25", + "version":53474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.98.0", + "prefixLen":25, + "network":"193.200.98.0\/25", + "version":53473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.98.0", + "prefixLen":25, + "network":"193.200.98.0\/25", + "version":53473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.98.128", + "prefixLen":25, + "network":"193.200.98.128\/25", + "version":53472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.98.128", + "prefixLen":25, + "network":"193.200.98.128\/25", + "version":53472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.99.0", + "prefixLen":25, + "network":"193.200.99.0\/25", + "version":53471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.99.0", + "prefixLen":25, + "network":"193.200.99.0\/25", + "version":53471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.99.128", + "prefixLen":25, + "network":"193.200.99.128\/25", + "version":53470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.99.128", + "prefixLen":25, + "network":"193.200.99.128\/25", + "version":53470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.112.0", + "prefixLen":25, + "network":"193.200.112.0\/25", + "version":53469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.112.0", + "prefixLen":25, + "network":"193.200.112.0\/25", + "version":53469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.112.128", + "prefixLen":25, + "network":"193.200.112.128\/25", + "version":53468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.112.128", + "prefixLen":25, + "network":"193.200.112.128\/25", + "version":53468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.113.0", + "prefixLen":25, + "network":"193.200.113.0\/25", + "version":53467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.113.0", + "prefixLen":25, + "network":"193.200.113.0\/25", + "version":53467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.113.128", + "prefixLen":25, + "network":"193.200.113.128\/25", + "version":53466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.113.128", + "prefixLen":25, + "network":"193.200.113.128\/25", + "version":53466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.114.0", + "prefixLen":25, + "network":"193.200.114.0\/25", + "version":53465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.114.0", + "prefixLen":25, + "network":"193.200.114.0\/25", + "version":53465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.114.128", + "prefixLen":25, + "network":"193.200.114.128\/25", + "version":53464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.114.128", + "prefixLen":25, + "network":"193.200.114.128\/25", + "version":53464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.115.0", + "prefixLen":25, + "network":"193.200.115.0\/25", + "version":53463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.115.0", + "prefixLen":25, + "network":"193.200.115.0\/25", + "version":53463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.115.128", + "prefixLen":25, + "network":"193.200.115.128\/25", + "version":53462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.115.128", + "prefixLen":25, + "network":"193.200.115.128\/25", + "version":53462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.128.0", + "prefixLen":25, + "network":"193.200.128.0\/25", + "version":53461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.128.0", + "prefixLen":25, + "network":"193.200.128.0\/25", + "version":53461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.128.128", + "prefixLen":25, + "network":"193.200.128.128\/25", + "version":53460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.128.128", + "prefixLen":25, + "network":"193.200.128.128\/25", + "version":53460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.129.0", + "prefixLen":25, + "network":"193.200.129.0\/25", + "version":53459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.129.0", + "prefixLen":25, + "network":"193.200.129.0\/25", + "version":53459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.129.128", + "prefixLen":25, + "network":"193.200.129.128\/25", + "version":53458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.129.128", + "prefixLen":25, + "network":"193.200.129.128\/25", + "version":53458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.130.0", + "prefixLen":25, + "network":"193.200.130.0\/25", + "version":53457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.130.0", + "prefixLen":25, + "network":"193.200.130.0\/25", + "version":53457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.130.128", + "prefixLen":25, + "network":"193.200.130.128\/25", + "version":53456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.130.128", + "prefixLen":25, + "network":"193.200.130.128\/25", + "version":53456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.131.0", + "prefixLen":25, + "network":"193.200.131.0\/25", + "version":53455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.131.0", + "prefixLen":25, + "network":"193.200.131.0\/25", + "version":53455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.131.128", + "prefixLen":25, + "network":"193.200.131.128\/25", + "version":53454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.131.128", + "prefixLen":25, + "network":"193.200.131.128\/25", + "version":53454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.144.0", + "prefixLen":25, + "network":"193.200.144.0\/25", + "version":53453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.144.0", + "prefixLen":25, + "network":"193.200.144.0\/25", + "version":53453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.144.128", + "prefixLen":25, + "network":"193.200.144.128\/25", + "version":53452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.144.128", + "prefixLen":25, + "network":"193.200.144.128\/25", + "version":53452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.145.0", + "prefixLen":25, + "network":"193.200.145.0\/25", + "version":53451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.145.0", + "prefixLen":25, + "network":"193.200.145.0\/25", + "version":53451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.145.128", + "prefixLen":25, + "network":"193.200.145.128\/25", + "version":53450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.145.128", + "prefixLen":25, + "network":"193.200.145.128\/25", + "version":53450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.146.0", + "prefixLen":25, + "network":"193.200.146.0\/25", + "version":53449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.146.0", + "prefixLen":25, + "network":"193.200.146.0\/25", + "version":53449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.146.128", + "prefixLen":25, + "network":"193.200.146.128\/25", + "version":53448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.146.128", + "prefixLen":25, + "network":"193.200.146.128\/25", + "version":53448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.147.0", + "prefixLen":25, + "network":"193.200.147.0\/25", + "version":53447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.147.0", + "prefixLen":25, + "network":"193.200.147.0\/25", + "version":53447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.147.128", + "prefixLen":25, + "network":"193.200.147.128\/25", + "version":53446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.147.128", + "prefixLen":25, + "network":"193.200.147.128\/25", + "version":53446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.160.0", + "prefixLen":25, + "network":"193.200.160.0\/25", + "version":53445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.160.0", + "prefixLen":25, + "network":"193.200.160.0\/25", + "version":53445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.160.128", + "prefixLen":25, + "network":"193.200.160.128\/25", + "version":53444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.160.128", + "prefixLen":25, + "network":"193.200.160.128\/25", + "version":53444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.161.0", + "prefixLen":25, + "network":"193.200.161.0\/25", + "version":53443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.161.0", + "prefixLen":25, + "network":"193.200.161.0\/25", + "version":53443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.161.128", + "prefixLen":25, + "network":"193.200.161.128\/25", + "version":53442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.161.128", + "prefixLen":25, + "network":"193.200.161.128\/25", + "version":53442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.162.0", + "prefixLen":25, + "network":"193.200.162.0\/25", + "version":53441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.162.0", + "prefixLen":25, + "network":"193.200.162.0\/25", + "version":53441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.162.128", + "prefixLen":25, + "network":"193.200.162.128\/25", + "version":53440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.162.128", + "prefixLen":25, + "network":"193.200.162.128\/25", + "version":53440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.163.0", + "prefixLen":25, + "network":"193.200.163.0\/25", + "version":53439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.163.0", + "prefixLen":25, + "network":"193.200.163.0\/25", + "version":53439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.163.128", + "prefixLen":25, + "network":"193.200.163.128\/25", + "version":53438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.163.128", + "prefixLen":25, + "network":"193.200.163.128\/25", + "version":53438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.176.0", + "prefixLen":25, + "network":"193.200.176.0\/25", + "version":53437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.176.0", + "prefixLen":25, + "network":"193.200.176.0\/25", + "version":53437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.176.128", + "prefixLen":25, + "network":"193.200.176.128\/25", + "version":53436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.176.128", + "prefixLen":25, + "network":"193.200.176.128\/25", + "version":53436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.177.0", + "prefixLen":25, + "network":"193.200.177.0\/25", + "version":53435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.177.0", + "prefixLen":25, + "network":"193.200.177.0\/25", + "version":53435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.177.128", + "prefixLen":25, + "network":"193.200.177.128\/25", + "version":53434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.177.128", + "prefixLen":25, + "network":"193.200.177.128\/25", + "version":53434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.178.0", + "prefixLen":25, + "network":"193.200.178.0\/25", + "version":53433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.178.0", + "prefixLen":25, + "network":"193.200.178.0\/25", + "version":53433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.178.128", + "prefixLen":25, + "network":"193.200.178.128\/25", + "version":53432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.178.128", + "prefixLen":25, + "network":"193.200.178.128\/25", + "version":53432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.179.0", + "prefixLen":25, + "network":"193.200.179.0\/25", + "version":53431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.179.0", + "prefixLen":25, + "network":"193.200.179.0\/25", + "version":53431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.179.128", + "prefixLen":25, + "network":"193.200.179.128\/25", + "version":53430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.179.128", + "prefixLen":25, + "network":"193.200.179.128\/25", + "version":53430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.192.0", + "prefixLen":25, + "network":"193.200.192.0\/25", + "version":53429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.192.0", + "prefixLen":25, + "network":"193.200.192.0\/25", + "version":53429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.192.128", + "prefixLen":25, + "network":"193.200.192.128\/25", + "version":53428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.192.128", + "prefixLen":25, + "network":"193.200.192.128\/25", + "version":53428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.193.0", + "prefixLen":25, + "network":"193.200.193.0\/25", + "version":53427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.193.0", + "prefixLen":25, + "network":"193.200.193.0\/25", + "version":53427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.193.128", + "prefixLen":25, + "network":"193.200.193.128\/25", + "version":53426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.193.128", + "prefixLen":25, + "network":"193.200.193.128\/25", + "version":53426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.194.0", + "prefixLen":25, + "network":"193.200.194.0\/25", + "version":53425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.194.0", + "prefixLen":25, + "network":"193.200.194.0\/25", + "version":53425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.194.128", + "prefixLen":25, + "network":"193.200.194.128\/25", + "version":53424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.194.128", + "prefixLen":25, + "network":"193.200.194.128\/25", + "version":53424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.195.0", + "prefixLen":25, + "network":"193.200.195.0\/25", + "version":53423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.195.0", + "prefixLen":25, + "network":"193.200.195.0\/25", + "version":53423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.195.128", + "prefixLen":25, + "network":"193.200.195.128\/25", + "version":53422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.195.128", + "prefixLen":25, + "network":"193.200.195.128\/25", + "version":53422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.208.0", + "prefixLen":25, + "network":"193.200.208.0\/25", + "version":53421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.208.0", + "prefixLen":25, + "network":"193.200.208.0\/25", + "version":53421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.208.128", + "prefixLen":25, + "network":"193.200.208.128\/25", + "version":53420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.208.128", + "prefixLen":25, + "network":"193.200.208.128\/25", + "version":53420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.209.0", + "prefixLen":25, + "network":"193.200.209.0\/25", + "version":53419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.209.0", + "prefixLen":25, + "network":"193.200.209.0\/25", + "version":53419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.209.128", + "prefixLen":25, + "network":"193.200.209.128\/25", + "version":53418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.209.128", + "prefixLen":25, + "network":"193.200.209.128\/25", + "version":53418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.210.0", + "prefixLen":25, + "network":"193.200.210.0\/25", + "version":53417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.210.0", + "prefixLen":25, + "network":"193.200.210.0\/25", + "version":53417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.210.128", + "prefixLen":25, + "network":"193.200.210.128\/25", + "version":53416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.210.128", + "prefixLen":25, + "network":"193.200.210.128\/25", + "version":53416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.211.0", + "prefixLen":25, + "network":"193.200.211.0\/25", + "version":53415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.211.0", + "prefixLen":25, + "network":"193.200.211.0\/25", + "version":53415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.211.128", + "prefixLen":25, + "network":"193.200.211.128\/25", + "version":53414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.211.128", + "prefixLen":25, + "network":"193.200.211.128\/25", + "version":53414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.224.0", + "prefixLen":25, + "network":"193.200.224.0\/25", + "version":53413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.224.0", + "prefixLen":25, + "network":"193.200.224.0\/25", + "version":53413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.224.128", + "prefixLen":25, + "network":"193.200.224.128\/25", + "version":53412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.224.128", + "prefixLen":25, + "network":"193.200.224.128\/25", + "version":53412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.225.0", + "prefixLen":25, + "network":"193.200.225.0\/25", + "version":53411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.225.0", + "prefixLen":25, + "network":"193.200.225.0\/25", + "version":53411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.225.128", + "prefixLen":25, + "network":"193.200.225.128\/25", + "version":53410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.225.128", + "prefixLen":25, + "network":"193.200.225.128\/25", + "version":53410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.226.0", + "prefixLen":25, + "network":"193.200.226.0\/25", + "version":53409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.226.0", + "prefixLen":25, + "network":"193.200.226.0\/25", + "version":53409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.226.128", + "prefixLen":25, + "network":"193.200.226.128\/25", + "version":53408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.226.128", + "prefixLen":25, + "network":"193.200.226.128\/25", + "version":53408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.227.0", + "prefixLen":25, + "network":"193.200.227.0\/25", + "version":53407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.227.0", + "prefixLen":25, + "network":"193.200.227.0\/25", + "version":53407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.227.128", + "prefixLen":25, + "network":"193.200.227.128\/25", + "version":53406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.227.128", + "prefixLen":25, + "network":"193.200.227.128\/25", + "version":53406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.240.0", + "prefixLen":25, + "network":"193.200.240.0\/25", + "version":53405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.240.0", + "prefixLen":25, + "network":"193.200.240.0\/25", + "version":53405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.240.128", + "prefixLen":25, + "network":"193.200.240.128\/25", + "version":53404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.240.128", + "prefixLen":25, + "network":"193.200.240.128\/25", + "version":53404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.241.0", + "prefixLen":25, + "network":"193.200.241.0\/25", + "version":53403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.241.0", + "prefixLen":25, + "network":"193.200.241.0\/25", + "version":53403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.241.128", + "prefixLen":25, + "network":"193.200.241.128\/25", + "version":53402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.241.128", + "prefixLen":25, + "network":"193.200.241.128\/25", + "version":53402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.242.0", + "prefixLen":25, + "network":"193.200.242.0\/25", + "version":53401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.242.0", + "prefixLen":25, + "network":"193.200.242.0\/25", + "version":53401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.242.128", + "prefixLen":25, + "network":"193.200.242.128\/25", + "version":53400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.242.128", + "prefixLen":25, + "network":"193.200.242.128\/25", + "version":53400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.243.0", + "prefixLen":25, + "network":"193.200.243.0\/25", + "version":53399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.243.0", + "prefixLen":25, + "network":"193.200.243.0\/25", + "version":53399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.200.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.200.243.128", + "prefixLen":25, + "network":"193.200.243.128\/25", + "version":53398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.200.243.128", + "prefixLen":25, + "network":"193.200.243.128\/25", + "version":53398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64888 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.0.0", + "prefixLen":25, + "network":"193.201.0.0\/25", + "version":53525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.0.0", + "prefixLen":25, + "network":"193.201.0.0\/25", + "version":53525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.0.128", + "prefixLen":25, + "network":"193.201.0.128\/25", + "version":53652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.0.128", + "prefixLen":25, + "network":"193.201.0.128\/25", + "version":53652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.1.0", + "prefixLen":25, + "network":"193.201.1.0\/25", + "version":53651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.1.0", + "prefixLen":25, + "network":"193.201.1.0\/25", + "version":53651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.1.128", + "prefixLen":25, + "network":"193.201.1.128\/25", + "version":53650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.1.128", + "prefixLen":25, + "network":"193.201.1.128\/25", + "version":53650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.2.0", + "prefixLen":25, + "network":"193.201.2.0\/25", + "version":53649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.2.0", + "prefixLen":25, + "network":"193.201.2.0\/25", + "version":53649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.2.128", + "prefixLen":25, + "network":"193.201.2.128\/25", + "version":53648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.2.128", + "prefixLen":25, + "network":"193.201.2.128\/25", + "version":53648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.3.0", + "prefixLen":25, + "network":"193.201.3.0\/25", + "version":53647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.3.0", + "prefixLen":25, + "network":"193.201.3.0\/25", + "version":53647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.3.128", + "prefixLen":25, + "network":"193.201.3.128\/25", + "version":53646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.3.128", + "prefixLen":25, + "network":"193.201.3.128\/25", + "version":53646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.16.0", + "prefixLen":25, + "network":"193.201.16.0\/25", + "version":53645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.16.0", + "prefixLen":25, + "network":"193.201.16.0\/25", + "version":53645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.16.128", + "prefixLen":25, + "network":"193.201.16.128\/25", + "version":53644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.16.128", + "prefixLen":25, + "network":"193.201.16.128\/25", + "version":53644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.17.0", + "prefixLen":25, + "network":"193.201.17.0\/25", + "version":53643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.17.0", + "prefixLen":25, + "network":"193.201.17.0\/25", + "version":53643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.17.128", + "prefixLen":25, + "network":"193.201.17.128\/25", + "version":53642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.17.128", + "prefixLen":25, + "network":"193.201.17.128\/25", + "version":53642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.18.0", + "prefixLen":25, + "network":"193.201.18.0\/25", + "version":53641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.18.0", + "prefixLen":25, + "network":"193.201.18.0\/25", + "version":53641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.18.128", + "prefixLen":25, + "network":"193.201.18.128\/25", + "version":53640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.18.128", + "prefixLen":25, + "network":"193.201.18.128\/25", + "version":53640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.19.0", + "prefixLen":25, + "network":"193.201.19.0\/25", + "version":53639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.19.0", + "prefixLen":25, + "network":"193.201.19.0\/25", + "version":53639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.19.128", + "prefixLen":25, + "network":"193.201.19.128\/25", + "version":53638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.19.128", + "prefixLen":25, + "network":"193.201.19.128\/25", + "version":53638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.32.0", + "prefixLen":25, + "network":"193.201.32.0\/25", + "version":53637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.32.0", + "prefixLen":25, + "network":"193.201.32.0\/25", + "version":53637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.32.128", + "prefixLen":25, + "network":"193.201.32.128\/25", + "version":53636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.32.128", + "prefixLen":25, + "network":"193.201.32.128\/25", + "version":53636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.33.0", + "prefixLen":25, + "network":"193.201.33.0\/25", + "version":53635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.33.0", + "prefixLen":25, + "network":"193.201.33.0\/25", + "version":53635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.33.128", + "prefixLen":25, + "network":"193.201.33.128\/25", + "version":53634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.33.128", + "prefixLen":25, + "network":"193.201.33.128\/25", + "version":53634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.34.0", + "prefixLen":25, + "network":"193.201.34.0\/25", + "version":53633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.34.0", + "prefixLen":25, + "network":"193.201.34.0\/25", + "version":53633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.34.128", + "prefixLen":25, + "network":"193.201.34.128\/25", + "version":53632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.34.128", + "prefixLen":25, + "network":"193.201.34.128\/25", + "version":53632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.35.0", + "prefixLen":25, + "network":"193.201.35.0\/25", + "version":53631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.35.0", + "prefixLen":25, + "network":"193.201.35.0\/25", + "version":53631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.35.128", + "prefixLen":25, + "network":"193.201.35.128\/25", + "version":53630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.35.128", + "prefixLen":25, + "network":"193.201.35.128\/25", + "version":53630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.48.0", + "prefixLen":25, + "network":"193.201.48.0\/25", + "version":53629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.48.0", + "prefixLen":25, + "network":"193.201.48.0\/25", + "version":53629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.48.128", + "prefixLen":25, + "network":"193.201.48.128\/25", + "version":53628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.48.128", + "prefixLen":25, + "network":"193.201.48.128\/25", + "version":53628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.49.0", + "prefixLen":25, + "network":"193.201.49.0\/25", + "version":53627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.49.0", + "prefixLen":25, + "network":"193.201.49.0\/25", + "version":53627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.49.128", + "prefixLen":25, + "network":"193.201.49.128\/25", + "version":53626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.49.128", + "prefixLen":25, + "network":"193.201.49.128\/25", + "version":53626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.50.0", + "prefixLen":25, + "network":"193.201.50.0\/25", + "version":53625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.50.0", + "prefixLen":25, + "network":"193.201.50.0\/25", + "version":53625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.50.128", + "prefixLen":25, + "network":"193.201.50.128\/25", + "version":53624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.50.128", + "prefixLen":25, + "network":"193.201.50.128\/25", + "version":53624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.51.0", + "prefixLen":25, + "network":"193.201.51.0\/25", + "version":53623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.51.0", + "prefixLen":25, + "network":"193.201.51.0\/25", + "version":53623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.51.128", + "prefixLen":25, + "network":"193.201.51.128\/25", + "version":53622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.51.128", + "prefixLen":25, + "network":"193.201.51.128\/25", + "version":53622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.64.0", + "prefixLen":25, + "network":"193.201.64.0\/25", + "version":53621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.64.0", + "prefixLen":25, + "network":"193.201.64.0\/25", + "version":53621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.64.128", + "prefixLen":25, + "network":"193.201.64.128\/25", + "version":53620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.64.128", + "prefixLen":25, + "network":"193.201.64.128\/25", + "version":53620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.65.0", + "prefixLen":25, + "network":"193.201.65.0\/25", + "version":53619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.65.0", + "prefixLen":25, + "network":"193.201.65.0\/25", + "version":53619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.65.128", + "prefixLen":25, + "network":"193.201.65.128\/25", + "version":53618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.65.128", + "prefixLen":25, + "network":"193.201.65.128\/25", + "version":53618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.66.0", + "prefixLen":25, + "network":"193.201.66.0\/25", + "version":53617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.66.0", + "prefixLen":25, + "network":"193.201.66.0\/25", + "version":53617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.66.128", + "prefixLen":25, + "network":"193.201.66.128\/25", + "version":53616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.66.128", + "prefixLen":25, + "network":"193.201.66.128\/25", + "version":53616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.67.0", + "prefixLen":25, + "network":"193.201.67.0\/25", + "version":53615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.67.0", + "prefixLen":25, + "network":"193.201.67.0\/25", + "version":53615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.67.128", + "prefixLen":25, + "network":"193.201.67.128\/25", + "version":53614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.67.128", + "prefixLen":25, + "network":"193.201.67.128\/25", + "version":53614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.80.0", + "prefixLen":25, + "network":"193.201.80.0\/25", + "version":53613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.80.0", + "prefixLen":25, + "network":"193.201.80.0\/25", + "version":53613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.80.128", + "prefixLen":25, + "network":"193.201.80.128\/25", + "version":53612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.80.128", + "prefixLen":25, + "network":"193.201.80.128\/25", + "version":53612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.81.0", + "prefixLen":25, + "network":"193.201.81.0\/25", + "version":53611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.81.0", + "prefixLen":25, + "network":"193.201.81.0\/25", + "version":53611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.81.128", + "prefixLen":25, + "network":"193.201.81.128\/25", + "version":53610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.81.128", + "prefixLen":25, + "network":"193.201.81.128\/25", + "version":53610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.82.0", + "prefixLen":25, + "network":"193.201.82.0\/25", + "version":53609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.82.0", + "prefixLen":25, + "network":"193.201.82.0\/25", + "version":53609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.82.128", + "prefixLen":25, + "network":"193.201.82.128\/25", + "version":53608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.82.128", + "prefixLen":25, + "network":"193.201.82.128\/25", + "version":53608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.83.0", + "prefixLen":25, + "network":"193.201.83.0\/25", + "version":53607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.83.0", + "prefixLen":25, + "network":"193.201.83.0\/25", + "version":53607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.83.128", + "prefixLen":25, + "network":"193.201.83.128\/25", + "version":53606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.83.128", + "prefixLen":25, + "network":"193.201.83.128\/25", + "version":53606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.96.0", + "prefixLen":25, + "network":"193.201.96.0\/25", + "version":53605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.96.0", + "prefixLen":25, + "network":"193.201.96.0\/25", + "version":53605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.96.128", + "prefixLen":25, + "network":"193.201.96.128\/25", + "version":53604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.96.128", + "prefixLen":25, + "network":"193.201.96.128\/25", + "version":53604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.97.0", + "prefixLen":25, + "network":"193.201.97.0\/25", + "version":53603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.97.0", + "prefixLen":25, + "network":"193.201.97.0\/25", + "version":53603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.97.128", + "prefixLen":25, + "network":"193.201.97.128\/25", + "version":53602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.97.128", + "prefixLen":25, + "network":"193.201.97.128\/25", + "version":53602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.98.0", + "prefixLen":25, + "network":"193.201.98.0\/25", + "version":53601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.98.0", + "prefixLen":25, + "network":"193.201.98.0\/25", + "version":53601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.98.128", + "prefixLen":25, + "network":"193.201.98.128\/25", + "version":53600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.98.128", + "prefixLen":25, + "network":"193.201.98.128\/25", + "version":53600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.99.0", + "prefixLen":25, + "network":"193.201.99.0\/25", + "version":53599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.99.0", + "prefixLen":25, + "network":"193.201.99.0\/25", + "version":53599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.99.128", + "prefixLen":25, + "network":"193.201.99.128\/25", + "version":53598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.99.128", + "prefixLen":25, + "network":"193.201.99.128\/25", + "version":53598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.112.0", + "prefixLen":25, + "network":"193.201.112.0\/25", + "version":53597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.112.0", + "prefixLen":25, + "network":"193.201.112.0\/25", + "version":53597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.112.128", + "prefixLen":25, + "network":"193.201.112.128\/25", + "version":53596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.112.128", + "prefixLen":25, + "network":"193.201.112.128\/25", + "version":53596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.113.0", + "prefixLen":25, + "network":"193.201.113.0\/25", + "version":53595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.113.0", + "prefixLen":25, + "network":"193.201.113.0\/25", + "version":53595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.113.128", + "prefixLen":25, + "network":"193.201.113.128\/25", + "version":53594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.113.128", + "prefixLen":25, + "network":"193.201.113.128\/25", + "version":53594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.114.0", + "prefixLen":25, + "network":"193.201.114.0\/25", + "version":53593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.114.0", + "prefixLen":25, + "network":"193.201.114.0\/25", + "version":53593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.114.128", + "prefixLen":25, + "network":"193.201.114.128\/25", + "version":53592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.114.128", + "prefixLen":25, + "network":"193.201.114.128\/25", + "version":53592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.115.0", + "prefixLen":25, + "network":"193.201.115.0\/25", + "version":53591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.115.0", + "prefixLen":25, + "network":"193.201.115.0\/25", + "version":53591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.115.128", + "prefixLen":25, + "network":"193.201.115.128\/25", + "version":53590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.115.128", + "prefixLen":25, + "network":"193.201.115.128\/25", + "version":53590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.128.0", + "prefixLen":25, + "network":"193.201.128.0\/25", + "version":53589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.128.0", + "prefixLen":25, + "network":"193.201.128.0\/25", + "version":53589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.128.128", + "prefixLen":25, + "network":"193.201.128.128\/25", + "version":53588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.128.128", + "prefixLen":25, + "network":"193.201.128.128\/25", + "version":53588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.129.0", + "prefixLen":25, + "network":"193.201.129.0\/25", + "version":53587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.129.0", + "prefixLen":25, + "network":"193.201.129.0\/25", + "version":53587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.129.128", + "prefixLen":25, + "network":"193.201.129.128\/25", + "version":53586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.129.128", + "prefixLen":25, + "network":"193.201.129.128\/25", + "version":53586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.130.0", + "prefixLen":25, + "network":"193.201.130.0\/25", + "version":53585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.130.0", + "prefixLen":25, + "network":"193.201.130.0\/25", + "version":53585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.130.128", + "prefixLen":25, + "network":"193.201.130.128\/25", + "version":53584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.130.128", + "prefixLen":25, + "network":"193.201.130.128\/25", + "version":53584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.131.0", + "prefixLen":25, + "network":"193.201.131.0\/25", + "version":53583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.131.0", + "prefixLen":25, + "network":"193.201.131.0\/25", + "version":53583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.131.128", + "prefixLen":25, + "network":"193.201.131.128\/25", + "version":53582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.131.128", + "prefixLen":25, + "network":"193.201.131.128\/25", + "version":53582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.144.0", + "prefixLen":25, + "network":"193.201.144.0\/25", + "version":53581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.144.0", + "prefixLen":25, + "network":"193.201.144.0\/25", + "version":53581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.144.128", + "prefixLen":25, + "network":"193.201.144.128\/25", + "version":53580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.144.128", + "prefixLen":25, + "network":"193.201.144.128\/25", + "version":53580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.145.0", + "prefixLen":25, + "network":"193.201.145.0\/25", + "version":53579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.145.0", + "prefixLen":25, + "network":"193.201.145.0\/25", + "version":53579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.145.128", + "prefixLen":25, + "network":"193.201.145.128\/25", + "version":53578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.145.128", + "prefixLen":25, + "network":"193.201.145.128\/25", + "version":53578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.146.0", + "prefixLen":25, + "network":"193.201.146.0\/25", + "version":53577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.146.0", + "prefixLen":25, + "network":"193.201.146.0\/25", + "version":53577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.146.128", + "prefixLen":25, + "network":"193.201.146.128\/25", + "version":53576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.146.128", + "prefixLen":25, + "network":"193.201.146.128\/25", + "version":53576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.147.0", + "prefixLen":25, + "network":"193.201.147.0\/25", + "version":53575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.147.0", + "prefixLen":25, + "network":"193.201.147.0\/25", + "version":53575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.147.128", + "prefixLen":25, + "network":"193.201.147.128\/25", + "version":53574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.147.128", + "prefixLen":25, + "network":"193.201.147.128\/25", + "version":53574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.160.0", + "prefixLen":25, + "network":"193.201.160.0\/25", + "version":53573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.160.0", + "prefixLen":25, + "network":"193.201.160.0\/25", + "version":53573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.160.128", + "prefixLen":25, + "network":"193.201.160.128\/25", + "version":53572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.160.128", + "prefixLen":25, + "network":"193.201.160.128\/25", + "version":53572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.161.0", + "prefixLen":25, + "network":"193.201.161.0\/25", + "version":53571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.161.0", + "prefixLen":25, + "network":"193.201.161.0\/25", + "version":53571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.161.128", + "prefixLen":25, + "network":"193.201.161.128\/25", + "version":53570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.161.128", + "prefixLen":25, + "network":"193.201.161.128\/25", + "version":53570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.162.0", + "prefixLen":25, + "network":"193.201.162.0\/25", + "version":53569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.162.0", + "prefixLen":25, + "network":"193.201.162.0\/25", + "version":53569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.162.128", + "prefixLen":25, + "network":"193.201.162.128\/25", + "version":53568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.162.128", + "prefixLen":25, + "network":"193.201.162.128\/25", + "version":53568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.163.0", + "prefixLen":25, + "network":"193.201.163.0\/25", + "version":53567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.163.0", + "prefixLen":25, + "network":"193.201.163.0\/25", + "version":53567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.163.128", + "prefixLen":25, + "network":"193.201.163.128\/25", + "version":53566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.163.128", + "prefixLen":25, + "network":"193.201.163.128\/25", + "version":53566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.176.0", + "prefixLen":25, + "network":"193.201.176.0\/25", + "version":53565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.176.0", + "prefixLen":25, + "network":"193.201.176.0\/25", + "version":53565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.176.128", + "prefixLen":25, + "network":"193.201.176.128\/25", + "version":53564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.176.128", + "prefixLen":25, + "network":"193.201.176.128\/25", + "version":53564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.177.0", + "prefixLen":25, + "network":"193.201.177.0\/25", + "version":53563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.177.0", + "prefixLen":25, + "network":"193.201.177.0\/25", + "version":53563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.177.128", + "prefixLen":25, + "network":"193.201.177.128\/25", + "version":53562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.177.128", + "prefixLen":25, + "network":"193.201.177.128\/25", + "version":53562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.178.0", + "prefixLen":25, + "network":"193.201.178.0\/25", + "version":53561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.178.0", + "prefixLen":25, + "network":"193.201.178.0\/25", + "version":53561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.178.128", + "prefixLen":25, + "network":"193.201.178.128\/25", + "version":53560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.178.128", + "prefixLen":25, + "network":"193.201.178.128\/25", + "version":53560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.179.0", + "prefixLen":25, + "network":"193.201.179.0\/25", + "version":53559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.179.0", + "prefixLen":25, + "network":"193.201.179.0\/25", + "version":53559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.179.128", + "prefixLen":25, + "network":"193.201.179.128\/25", + "version":53558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.179.128", + "prefixLen":25, + "network":"193.201.179.128\/25", + "version":53558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.192.0", + "prefixLen":25, + "network":"193.201.192.0\/25", + "version":53557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.192.0", + "prefixLen":25, + "network":"193.201.192.0\/25", + "version":53557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.192.128", + "prefixLen":25, + "network":"193.201.192.128\/25", + "version":53556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.192.128", + "prefixLen":25, + "network":"193.201.192.128\/25", + "version":53556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.193.0", + "prefixLen":25, + "network":"193.201.193.0\/25", + "version":53555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.193.0", + "prefixLen":25, + "network":"193.201.193.0\/25", + "version":53555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.193.128", + "prefixLen":25, + "network":"193.201.193.128\/25", + "version":53554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.193.128", + "prefixLen":25, + "network":"193.201.193.128\/25", + "version":53554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.194.0", + "prefixLen":25, + "network":"193.201.194.0\/25", + "version":53553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.194.0", + "prefixLen":25, + "network":"193.201.194.0\/25", + "version":53553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.194.128", + "prefixLen":25, + "network":"193.201.194.128\/25", + "version":53552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.194.128", + "prefixLen":25, + "network":"193.201.194.128\/25", + "version":53552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.195.0", + "prefixLen":25, + "network":"193.201.195.0\/25", + "version":53551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.195.0", + "prefixLen":25, + "network":"193.201.195.0\/25", + "version":53551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.195.128", + "prefixLen":25, + "network":"193.201.195.128\/25", + "version":53550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.195.128", + "prefixLen":25, + "network":"193.201.195.128\/25", + "version":53550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.208.0", + "prefixLen":25, + "network":"193.201.208.0\/25", + "version":53549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.208.0", + "prefixLen":25, + "network":"193.201.208.0\/25", + "version":53549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.208.128", + "prefixLen":25, + "network":"193.201.208.128\/25", + "version":53548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.208.128", + "prefixLen":25, + "network":"193.201.208.128\/25", + "version":53548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.209.0", + "prefixLen":25, + "network":"193.201.209.0\/25", + "version":53547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.209.0", + "prefixLen":25, + "network":"193.201.209.0\/25", + "version":53547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.209.128", + "prefixLen":25, + "network":"193.201.209.128\/25", + "version":53546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.209.128", + "prefixLen":25, + "network":"193.201.209.128\/25", + "version":53546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.210.0", + "prefixLen":25, + "network":"193.201.210.0\/25", + "version":53545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.210.0", + "prefixLen":25, + "network":"193.201.210.0\/25", + "version":53545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.210.128", + "prefixLen":25, + "network":"193.201.210.128\/25", + "version":53544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.210.128", + "prefixLen":25, + "network":"193.201.210.128\/25", + "version":53544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.211.0", + "prefixLen":25, + "network":"193.201.211.0\/25", + "version":53543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.211.0", + "prefixLen":25, + "network":"193.201.211.0\/25", + "version":53543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.211.128", + "prefixLen":25, + "network":"193.201.211.128\/25", + "version":53542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.211.128", + "prefixLen":25, + "network":"193.201.211.128\/25", + "version":53542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.224.0", + "prefixLen":25, + "network":"193.201.224.0\/25", + "version":53541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.224.0", + "prefixLen":25, + "network":"193.201.224.0\/25", + "version":53541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.224.128", + "prefixLen":25, + "network":"193.201.224.128\/25", + "version":53540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.224.128", + "prefixLen":25, + "network":"193.201.224.128\/25", + "version":53540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.225.0", + "prefixLen":25, + "network":"193.201.225.0\/25", + "version":53539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.225.0", + "prefixLen":25, + "network":"193.201.225.0\/25", + "version":53539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.225.128", + "prefixLen":25, + "network":"193.201.225.128\/25", + "version":53538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.225.128", + "prefixLen":25, + "network":"193.201.225.128\/25", + "version":53538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.226.0", + "prefixLen":25, + "network":"193.201.226.0\/25", + "version":53537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.226.0", + "prefixLen":25, + "network":"193.201.226.0\/25", + "version":53537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.226.128", + "prefixLen":25, + "network":"193.201.226.128\/25", + "version":53536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.226.128", + "prefixLen":25, + "network":"193.201.226.128\/25", + "version":53536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.227.0", + "prefixLen":25, + "network":"193.201.227.0\/25", + "version":53535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.227.0", + "prefixLen":25, + "network":"193.201.227.0\/25", + "version":53535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.227.128", + "prefixLen":25, + "network":"193.201.227.128\/25", + "version":53534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.227.128", + "prefixLen":25, + "network":"193.201.227.128\/25", + "version":53534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.240.0", + "prefixLen":25, + "network":"193.201.240.0\/25", + "version":53533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.240.0", + "prefixLen":25, + "network":"193.201.240.0\/25", + "version":53533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.240.128", + "prefixLen":25, + "network":"193.201.240.128\/25", + "version":53532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.240.128", + "prefixLen":25, + "network":"193.201.240.128\/25", + "version":53532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.241.0", + "prefixLen":25, + "network":"193.201.241.0\/25", + "version":53531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.241.0", + "prefixLen":25, + "network":"193.201.241.0\/25", + "version":53531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.241.128", + "prefixLen":25, + "network":"193.201.241.128\/25", + "version":53530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.241.128", + "prefixLen":25, + "network":"193.201.241.128\/25", + "version":53530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.242.0", + "prefixLen":25, + "network":"193.201.242.0\/25", + "version":53529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.242.0", + "prefixLen":25, + "network":"193.201.242.0\/25", + "version":53529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.242.128", + "prefixLen":25, + "network":"193.201.242.128\/25", + "version":53528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.242.128", + "prefixLen":25, + "network":"193.201.242.128\/25", + "version":53528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.243.0", + "prefixLen":25, + "network":"193.201.243.0\/25", + "version":53527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.243.0", + "prefixLen":25, + "network":"193.201.243.0\/25", + "version":53527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.201.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.201.243.128", + "prefixLen":25, + "network":"193.201.243.128\/25", + "version":53526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.201.243.128", + "prefixLen":25, + "network":"193.201.243.128\/25", + "version":53526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64889 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.0.0", + "prefixLen":25, + "network":"193.202.0.0\/25", + "version":53653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.0.0", + "prefixLen":25, + "network":"193.202.0.0\/25", + "version":53653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.0.128", + "prefixLen":25, + "network":"193.202.0.128\/25", + "version":53780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.0.128", + "prefixLen":25, + "network":"193.202.0.128\/25", + "version":53780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.1.0", + "prefixLen":25, + "network":"193.202.1.0\/25", + "version":53779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.1.0", + "prefixLen":25, + "network":"193.202.1.0\/25", + "version":53779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.1.128", + "prefixLen":25, + "network":"193.202.1.128\/25", + "version":53778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.1.128", + "prefixLen":25, + "network":"193.202.1.128\/25", + "version":53778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.2.0", + "prefixLen":25, + "network":"193.202.2.0\/25", + "version":53777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.2.0", + "prefixLen":25, + "network":"193.202.2.0\/25", + "version":53777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.2.128", + "prefixLen":25, + "network":"193.202.2.128\/25", + "version":53776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.2.128", + "prefixLen":25, + "network":"193.202.2.128\/25", + "version":53776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.3.0", + "prefixLen":25, + "network":"193.202.3.0\/25", + "version":53775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.3.0", + "prefixLen":25, + "network":"193.202.3.0\/25", + "version":53775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.3.128", + "prefixLen":25, + "network":"193.202.3.128\/25", + "version":53774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.3.128", + "prefixLen":25, + "network":"193.202.3.128\/25", + "version":53774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.16.0", + "prefixLen":25, + "network":"193.202.16.0\/25", + "version":53773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.16.0", + "prefixLen":25, + "network":"193.202.16.0\/25", + "version":53773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.16.128", + "prefixLen":25, + "network":"193.202.16.128\/25", + "version":53772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.16.128", + "prefixLen":25, + "network":"193.202.16.128\/25", + "version":53772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.17.0", + "prefixLen":25, + "network":"193.202.17.0\/25", + "version":53771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.17.0", + "prefixLen":25, + "network":"193.202.17.0\/25", + "version":53771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.17.128", + "prefixLen":25, + "network":"193.202.17.128\/25", + "version":53770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.17.128", + "prefixLen":25, + "network":"193.202.17.128\/25", + "version":53770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.18.0", + "prefixLen":25, + "network":"193.202.18.0\/25", + "version":53769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.18.0", + "prefixLen":25, + "network":"193.202.18.0\/25", + "version":53769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.18.128", + "prefixLen":25, + "network":"193.202.18.128\/25", + "version":53768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.18.128", + "prefixLen":25, + "network":"193.202.18.128\/25", + "version":53768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.19.0", + "prefixLen":25, + "network":"193.202.19.0\/25", + "version":53767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.19.0", + "prefixLen":25, + "network":"193.202.19.0\/25", + "version":53767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.19.128", + "prefixLen":25, + "network":"193.202.19.128\/25", + "version":53766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.19.128", + "prefixLen":25, + "network":"193.202.19.128\/25", + "version":53766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.32.0", + "prefixLen":25, + "network":"193.202.32.0\/25", + "version":53765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.32.0", + "prefixLen":25, + "network":"193.202.32.0\/25", + "version":53765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.32.128", + "prefixLen":25, + "network":"193.202.32.128\/25", + "version":53764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.32.128", + "prefixLen":25, + "network":"193.202.32.128\/25", + "version":53764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.33.0", + "prefixLen":25, + "network":"193.202.33.0\/25", + "version":53763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.33.0", + "prefixLen":25, + "network":"193.202.33.0\/25", + "version":53763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.33.128", + "prefixLen":25, + "network":"193.202.33.128\/25", + "version":53762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.33.128", + "prefixLen":25, + "network":"193.202.33.128\/25", + "version":53762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.34.0", + "prefixLen":25, + "network":"193.202.34.0\/25", + "version":53761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.34.0", + "prefixLen":25, + "network":"193.202.34.0\/25", + "version":53761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.34.128", + "prefixLen":25, + "network":"193.202.34.128\/25", + "version":53760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.34.128", + "prefixLen":25, + "network":"193.202.34.128\/25", + "version":53760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.35.0", + "prefixLen":25, + "network":"193.202.35.0\/25", + "version":53759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.35.0", + "prefixLen":25, + "network":"193.202.35.0\/25", + "version":53759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.35.128", + "prefixLen":25, + "network":"193.202.35.128\/25", + "version":53758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.35.128", + "prefixLen":25, + "network":"193.202.35.128\/25", + "version":53758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.48.0", + "prefixLen":25, + "network":"193.202.48.0\/25", + "version":53757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.48.0", + "prefixLen":25, + "network":"193.202.48.0\/25", + "version":53757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.48.128", + "prefixLen":25, + "network":"193.202.48.128\/25", + "version":53756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.48.128", + "prefixLen":25, + "network":"193.202.48.128\/25", + "version":53756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.49.0", + "prefixLen":25, + "network":"193.202.49.0\/25", + "version":53755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.49.0", + "prefixLen":25, + "network":"193.202.49.0\/25", + "version":53755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.49.128", + "prefixLen":25, + "network":"193.202.49.128\/25", + "version":53754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.49.128", + "prefixLen":25, + "network":"193.202.49.128\/25", + "version":53754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.50.0", + "prefixLen":25, + "network":"193.202.50.0\/25", + "version":53753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.50.0", + "prefixLen":25, + "network":"193.202.50.0\/25", + "version":53753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.50.128", + "prefixLen":25, + "network":"193.202.50.128\/25", + "version":53752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.50.128", + "prefixLen":25, + "network":"193.202.50.128\/25", + "version":53752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.51.0", + "prefixLen":25, + "network":"193.202.51.0\/25", + "version":53751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.51.0", + "prefixLen":25, + "network":"193.202.51.0\/25", + "version":53751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.51.128", + "prefixLen":25, + "network":"193.202.51.128\/25", + "version":53750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.51.128", + "prefixLen":25, + "network":"193.202.51.128\/25", + "version":53750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.64.0", + "prefixLen":25, + "network":"193.202.64.0\/25", + "version":53749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.64.0", + "prefixLen":25, + "network":"193.202.64.0\/25", + "version":53749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.64.128", + "prefixLen":25, + "network":"193.202.64.128\/25", + "version":53748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.64.128", + "prefixLen":25, + "network":"193.202.64.128\/25", + "version":53748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.65.0", + "prefixLen":25, + "network":"193.202.65.0\/25", + "version":53747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.65.0", + "prefixLen":25, + "network":"193.202.65.0\/25", + "version":53747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.65.128", + "prefixLen":25, + "network":"193.202.65.128\/25", + "version":53746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.65.128", + "prefixLen":25, + "network":"193.202.65.128\/25", + "version":53746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.66.0", + "prefixLen":25, + "network":"193.202.66.0\/25", + "version":53745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.66.0", + "prefixLen":25, + "network":"193.202.66.0\/25", + "version":53745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.66.128", + "prefixLen":25, + "network":"193.202.66.128\/25", + "version":53744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.66.128", + "prefixLen":25, + "network":"193.202.66.128\/25", + "version":53744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.67.0", + "prefixLen":25, + "network":"193.202.67.0\/25", + "version":53743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.67.0", + "prefixLen":25, + "network":"193.202.67.0\/25", + "version":53743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.67.128", + "prefixLen":25, + "network":"193.202.67.128\/25", + "version":53742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.67.128", + "prefixLen":25, + "network":"193.202.67.128\/25", + "version":53742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.80.0", + "prefixLen":25, + "network":"193.202.80.0\/25", + "version":53741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.80.0", + "prefixLen":25, + "network":"193.202.80.0\/25", + "version":53741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.80.128", + "prefixLen":25, + "network":"193.202.80.128\/25", + "version":53740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.80.128", + "prefixLen":25, + "network":"193.202.80.128\/25", + "version":53740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.81.0", + "prefixLen":25, + "network":"193.202.81.0\/25", + "version":53739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.81.0", + "prefixLen":25, + "network":"193.202.81.0\/25", + "version":53739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.81.128", + "prefixLen":25, + "network":"193.202.81.128\/25", + "version":53738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.81.128", + "prefixLen":25, + "network":"193.202.81.128\/25", + "version":53738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.82.0", + "prefixLen":25, + "network":"193.202.82.0\/25", + "version":53737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.82.0", + "prefixLen":25, + "network":"193.202.82.0\/25", + "version":53737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.82.128", + "prefixLen":25, + "network":"193.202.82.128\/25", + "version":53736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.82.128", + "prefixLen":25, + "network":"193.202.82.128\/25", + "version":53736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.83.0", + "prefixLen":25, + "network":"193.202.83.0\/25", + "version":53735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.83.0", + "prefixLen":25, + "network":"193.202.83.0\/25", + "version":53735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.83.128", + "prefixLen":25, + "network":"193.202.83.128\/25", + "version":53734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.83.128", + "prefixLen":25, + "network":"193.202.83.128\/25", + "version":53734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.96.0", + "prefixLen":25, + "network":"193.202.96.0\/25", + "version":53733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.96.0", + "prefixLen":25, + "network":"193.202.96.0\/25", + "version":53733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.96.128", + "prefixLen":25, + "network":"193.202.96.128\/25", + "version":53732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.96.128", + "prefixLen":25, + "network":"193.202.96.128\/25", + "version":53732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.97.0", + "prefixLen":25, + "network":"193.202.97.0\/25", + "version":53731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.97.0", + "prefixLen":25, + "network":"193.202.97.0\/25", + "version":53731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.97.128", + "prefixLen":25, + "network":"193.202.97.128\/25", + "version":53730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.97.128", + "prefixLen":25, + "network":"193.202.97.128\/25", + "version":53730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.98.0", + "prefixLen":25, + "network":"193.202.98.0\/25", + "version":53729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.98.0", + "prefixLen":25, + "network":"193.202.98.0\/25", + "version":53729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.98.128", + "prefixLen":25, + "network":"193.202.98.128\/25", + "version":53728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.98.128", + "prefixLen":25, + "network":"193.202.98.128\/25", + "version":53728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.99.0", + "prefixLen":25, + "network":"193.202.99.0\/25", + "version":53727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.99.0", + "prefixLen":25, + "network":"193.202.99.0\/25", + "version":53727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.99.128", + "prefixLen":25, + "network":"193.202.99.128\/25", + "version":53726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.99.128", + "prefixLen":25, + "network":"193.202.99.128\/25", + "version":53726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.112.0", + "prefixLen":25, + "network":"193.202.112.0\/25", + "version":53725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.112.0", + "prefixLen":25, + "network":"193.202.112.0\/25", + "version":53725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.112.128", + "prefixLen":25, + "network":"193.202.112.128\/25", + "version":53724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.112.128", + "prefixLen":25, + "network":"193.202.112.128\/25", + "version":53724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.113.0", + "prefixLen":25, + "network":"193.202.113.0\/25", + "version":53723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.113.0", + "prefixLen":25, + "network":"193.202.113.0\/25", + "version":53723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.113.128", + "prefixLen":25, + "network":"193.202.113.128\/25", + "version":53722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.113.128", + "prefixLen":25, + "network":"193.202.113.128\/25", + "version":53722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.114.0", + "prefixLen":25, + "network":"193.202.114.0\/25", + "version":53721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.114.0", + "prefixLen":25, + "network":"193.202.114.0\/25", + "version":53721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.114.128", + "prefixLen":25, + "network":"193.202.114.128\/25", + "version":53720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.114.128", + "prefixLen":25, + "network":"193.202.114.128\/25", + "version":53720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.115.0", + "prefixLen":25, + "network":"193.202.115.0\/25", + "version":53719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.115.0", + "prefixLen":25, + "network":"193.202.115.0\/25", + "version":53719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.115.128", + "prefixLen":25, + "network":"193.202.115.128\/25", + "version":53718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.115.128", + "prefixLen":25, + "network":"193.202.115.128\/25", + "version":53718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.128.0", + "prefixLen":25, + "network":"193.202.128.0\/25", + "version":53717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.128.0", + "prefixLen":25, + "network":"193.202.128.0\/25", + "version":53717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.128.128", + "prefixLen":25, + "network":"193.202.128.128\/25", + "version":53716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.128.128", + "prefixLen":25, + "network":"193.202.128.128\/25", + "version":53716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.129.0", + "prefixLen":25, + "network":"193.202.129.0\/25", + "version":53715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.129.0", + "prefixLen":25, + "network":"193.202.129.0\/25", + "version":53715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.129.128", + "prefixLen":25, + "network":"193.202.129.128\/25", + "version":53714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.129.128", + "prefixLen":25, + "network":"193.202.129.128\/25", + "version":53714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.130.0", + "prefixLen":25, + "network":"193.202.130.0\/25", + "version":53713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.130.0", + "prefixLen":25, + "network":"193.202.130.0\/25", + "version":53713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.130.128", + "prefixLen":25, + "network":"193.202.130.128\/25", + "version":53712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.130.128", + "prefixLen":25, + "network":"193.202.130.128\/25", + "version":53712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.131.0", + "prefixLen":25, + "network":"193.202.131.0\/25", + "version":53711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.131.0", + "prefixLen":25, + "network":"193.202.131.0\/25", + "version":53711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.131.128", + "prefixLen":25, + "network":"193.202.131.128\/25", + "version":53710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.131.128", + "prefixLen":25, + "network":"193.202.131.128\/25", + "version":53710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.144.0", + "prefixLen":25, + "network":"193.202.144.0\/25", + "version":53709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.144.0", + "prefixLen":25, + "network":"193.202.144.0\/25", + "version":53709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.144.128", + "prefixLen":25, + "network":"193.202.144.128\/25", + "version":53708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.144.128", + "prefixLen":25, + "network":"193.202.144.128\/25", + "version":53708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.145.0", + "prefixLen":25, + "network":"193.202.145.0\/25", + "version":53707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.145.0", + "prefixLen":25, + "network":"193.202.145.0\/25", + "version":53707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.145.128", + "prefixLen":25, + "network":"193.202.145.128\/25", + "version":53706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.145.128", + "prefixLen":25, + "network":"193.202.145.128\/25", + "version":53706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.146.0", + "prefixLen":25, + "network":"193.202.146.0\/25", + "version":53705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.146.0", + "prefixLen":25, + "network":"193.202.146.0\/25", + "version":53705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.146.128", + "prefixLen":25, + "network":"193.202.146.128\/25", + "version":53704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.146.128", + "prefixLen":25, + "network":"193.202.146.128\/25", + "version":53704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.147.0", + "prefixLen":25, + "network":"193.202.147.0\/25", + "version":53703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.147.0", + "prefixLen":25, + "network":"193.202.147.0\/25", + "version":53703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.147.128", + "prefixLen":25, + "network":"193.202.147.128\/25", + "version":53702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.147.128", + "prefixLen":25, + "network":"193.202.147.128\/25", + "version":53702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.160.0", + "prefixLen":25, + "network":"193.202.160.0\/25", + "version":53701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.160.0", + "prefixLen":25, + "network":"193.202.160.0\/25", + "version":53701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.160.128", + "prefixLen":25, + "network":"193.202.160.128\/25", + "version":53700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.160.128", + "prefixLen":25, + "network":"193.202.160.128\/25", + "version":53700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.161.0", + "prefixLen":25, + "network":"193.202.161.0\/25", + "version":53699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.161.0", + "prefixLen":25, + "network":"193.202.161.0\/25", + "version":53699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.161.128", + "prefixLen":25, + "network":"193.202.161.128\/25", + "version":53698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.161.128", + "prefixLen":25, + "network":"193.202.161.128\/25", + "version":53698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.162.0", + "prefixLen":25, + "network":"193.202.162.0\/25", + "version":53697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.162.0", + "prefixLen":25, + "network":"193.202.162.0\/25", + "version":53697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.162.128", + "prefixLen":25, + "network":"193.202.162.128\/25", + "version":53696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.162.128", + "prefixLen":25, + "network":"193.202.162.128\/25", + "version":53696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.163.0", + "prefixLen":25, + "network":"193.202.163.0\/25", + "version":53695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.163.0", + "prefixLen":25, + "network":"193.202.163.0\/25", + "version":53695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.163.128", + "prefixLen":25, + "network":"193.202.163.128\/25", + "version":53694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.163.128", + "prefixLen":25, + "network":"193.202.163.128\/25", + "version":53694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.176.0", + "prefixLen":25, + "network":"193.202.176.0\/25", + "version":53693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.176.0", + "prefixLen":25, + "network":"193.202.176.0\/25", + "version":53693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.176.128", + "prefixLen":25, + "network":"193.202.176.128\/25", + "version":53692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.176.128", + "prefixLen":25, + "network":"193.202.176.128\/25", + "version":53692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.177.0", + "prefixLen":25, + "network":"193.202.177.0\/25", + "version":53691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.177.0", + "prefixLen":25, + "network":"193.202.177.0\/25", + "version":53691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.177.128", + "prefixLen":25, + "network":"193.202.177.128\/25", + "version":53690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.177.128", + "prefixLen":25, + "network":"193.202.177.128\/25", + "version":53690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.178.0", + "prefixLen":25, + "network":"193.202.178.0\/25", + "version":53689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.178.0", + "prefixLen":25, + "network":"193.202.178.0\/25", + "version":53689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.178.128", + "prefixLen":25, + "network":"193.202.178.128\/25", + "version":53688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.178.128", + "prefixLen":25, + "network":"193.202.178.128\/25", + "version":53688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.179.0", + "prefixLen":25, + "network":"193.202.179.0\/25", + "version":53687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.179.0", + "prefixLen":25, + "network":"193.202.179.0\/25", + "version":53687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.179.128", + "prefixLen":25, + "network":"193.202.179.128\/25", + "version":53686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.179.128", + "prefixLen":25, + "network":"193.202.179.128\/25", + "version":53686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.192.0", + "prefixLen":25, + "network":"193.202.192.0\/25", + "version":53685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.192.0", + "prefixLen":25, + "network":"193.202.192.0\/25", + "version":53685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.192.128", + "prefixLen":25, + "network":"193.202.192.128\/25", + "version":53684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.192.128", + "prefixLen":25, + "network":"193.202.192.128\/25", + "version":53684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.193.0", + "prefixLen":25, + "network":"193.202.193.0\/25", + "version":53683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.193.0", + "prefixLen":25, + "network":"193.202.193.0\/25", + "version":53683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.193.128", + "prefixLen":25, + "network":"193.202.193.128\/25", + "version":53682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.193.128", + "prefixLen":25, + "network":"193.202.193.128\/25", + "version":53682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.194.0", + "prefixLen":25, + "network":"193.202.194.0\/25", + "version":53681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.194.0", + "prefixLen":25, + "network":"193.202.194.0\/25", + "version":53681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.194.128", + "prefixLen":25, + "network":"193.202.194.128\/25", + "version":53680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.194.128", + "prefixLen":25, + "network":"193.202.194.128\/25", + "version":53680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.195.0", + "prefixLen":25, + "network":"193.202.195.0\/25", + "version":53679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.195.0", + "prefixLen":25, + "network":"193.202.195.0\/25", + "version":53679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.195.128", + "prefixLen":25, + "network":"193.202.195.128\/25", + "version":53678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.195.128", + "prefixLen":25, + "network":"193.202.195.128\/25", + "version":53678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.208.0", + "prefixLen":25, + "network":"193.202.208.0\/25", + "version":53677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.208.0", + "prefixLen":25, + "network":"193.202.208.0\/25", + "version":53677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.208.128", + "prefixLen":25, + "network":"193.202.208.128\/25", + "version":53676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.208.128", + "prefixLen":25, + "network":"193.202.208.128\/25", + "version":53676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.209.0", + "prefixLen":25, + "network":"193.202.209.0\/25", + "version":53675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.209.0", + "prefixLen":25, + "network":"193.202.209.0\/25", + "version":53675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.209.128", + "prefixLen":25, + "network":"193.202.209.128\/25", + "version":53674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.209.128", + "prefixLen":25, + "network":"193.202.209.128\/25", + "version":53674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.210.0", + "prefixLen":25, + "network":"193.202.210.0\/25", + "version":53673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.210.0", + "prefixLen":25, + "network":"193.202.210.0\/25", + "version":53673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.210.128", + "prefixLen":25, + "network":"193.202.210.128\/25", + "version":53672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.210.128", + "prefixLen":25, + "network":"193.202.210.128\/25", + "version":53672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.211.0", + "prefixLen":25, + "network":"193.202.211.0\/25", + "version":53671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.211.0", + "prefixLen":25, + "network":"193.202.211.0\/25", + "version":53671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.211.128", + "prefixLen":25, + "network":"193.202.211.128\/25", + "version":53670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.211.128", + "prefixLen":25, + "network":"193.202.211.128\/25", + "version":53670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.224.0", + "prefixLen":25, + "network":"193.202.224.0\/25", + "version":53669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.224.0", + "prefixLen":25, + "network":"193.202.224.0\/25", + "version":53669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.224.128", + "prefixLen":25, + "network":"193.202.224.128\/25", + "version":53668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.224.128", + "prefixLen":25, + "network":"193.202.224.128\/25", + "version":53668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.225.0", + "prefixLen":25, + "network":"193.202.225.0\/25", + "version":53667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.225.0", + "prefixLen":25, + "network":"193.202.225.0\/25", + "version":53667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.225.128", + "prefixLen":25, + "network":"193.202.225.128\/25", + "version":53666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.225.128", + "prefixLen":25, + "network":"193.202.225.128\/25", + "version":53666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.226.0", + "prefixLen":25, + "network":"193.202.226.0\/25", + "version":53665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.226.0", + "prefixLen":25, + "network":"193.202.226.0\/25", + "version":53665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.226.128", + "prefixLen":25, + "network":"193.202.226.128\/25", + "version":53664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.226.128", + "prefixLen":25, + "network":"193.202.226.128\/25", + "version":53664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.227.0", + "prefixLen":25, + "network":"193.202.227.0\/25", + "version":53663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.227.0", + "prefixLen":25, + "network":"193.202.227.0\/25", + "version":53663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.227.128", + "prefixLen":25, + "network":"193.202.227.128\/25", + "version":53662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.227.128", + "prefixLen":25, + "network":"193.202.227.128\/25", + "version":53662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.240.0", + "prefixLen":25, + "network":"193.202.240.0\/25", + "version":53661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.240.0", + "prefixLen":25, + "network":"193.202.240.0\/25", + "version":53661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.240.128", + "prefixLen":25, + "network":"193.202.240.128\/25", + "version":53660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.240.128", + "prefixLen":25, + "network":"193.202.240.128\/25", + "version":53660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.241.0", + "prefixLen":25, + "network":"193.202.241.0\/25", + "version":53659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.241.0", + "prefixLen":25, + "network":"193.202.241.0\/25", + "version":53659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.241.128", + "prefixLen":25, + "network":"193.202.241.128\/25", + "version":53658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.241.128", + "prefixLen":25, + "network":"193.202.241.128\/25", + "version":53658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.242.0", + "prefixLen":25, + "network":"193.202.242.0\/25", + "version":53657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.242.0", + "prefixLen":25, + "network":"193.202.242.0\/25", + "version":53657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.242.128", + "prefixLen":25, + "network":"193.202.242.128\/25", + "version":53656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.242.128", + "prefixLen":25, + "network":"193.202.242.128\/25", + "version":53656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.243.0", + "prefixLen":25, + "network":"193.202.243.0\/25", + "version":53655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.243.0", + "prefixLen":25, + "network":"193.202.243.0\/25", + "version":53655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.202.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.202.243.128", + "prefixLen":25, + "network":"193.202.243.128\/25", + "version":53654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.202.243.128", + "prefixLen":25, + "network":"193.202.243.128\/25", + "version":53654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64890 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.0.0", + "prefixLen":25, + "network":"193.203.0.0\/25", + "version":53781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.0.0", + "prefixLen":25, + "network":"193.203.0.0\/25", + "version":53781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.0.128", + "prefixLen":25, + "network":"193.203.0.128\/25", + "version":53908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.0.128", + "prefixLen":25, + "network":"193.203.0.128\/25", + "version":53908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.1.0", + "prefixLen":25, + "network":"193.203.1.0\/25", + "version":53907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.1.0", + "prefixLen":25, + "network":"193.203.1.0\/25", + "version":53907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.1.128", + "prefixLen":25, + "network":"193.203.1.128\/25", + "version":53906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.1.128", + "prefixLen":25, + "network":"193.203.1.128\/25", + "version":53906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.2.0", + "prefixLen":25, + "network":"193.203.2.0\/25", + "version":53905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.2.0", + "prefixLen":25, + "network":"193.203.2.0\/25", + "version":53905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.2.128", + "prefixLen":25, + "network":"193.203.2.128\/25", + "version":53904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.2.128", + "prefixLen":25, + "network":"193.203.2.128\/25", + "version":53904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.3.0", + "prefixLen":25, + "network":"193.203.3.0\/25", + "version":53903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.3.0", + "prefixLen":25, + "network":"193.203.3.0\/25", + "version":53903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.3.128", + "prefixLen":25, + "network":"193.203.3.128\/25", + "version":53902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.3.128", + "prefixLen":25, + "network":"193.203.3.128\/25", + "version":53902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.16.0", + "prefixLen":25, + "network":"193.203.16.0\/25", + "version":53901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.16.0", + "prefixLen":25, + "network":"193.203.16.0\/25", + "version":53901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.16.128", + "prefixLen":25, + "network":"193.203.16.128\/25", + "version":53900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.16.128", + "prefixLen":25, + "network":"193.203.16.128\/25", + "version":53900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.17.0", + "prefixLen":25, + "network":"193.203.17.0\/25", + "version":53899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.17.0", + "prefixLen":25, + "network":"193.203.17.0\/25", + "version":53899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.17.128", + "prefixLen":25, + "network":"193.203.17.128\/25", + "version":53898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.17.128", + "prefixLen":25, + "network":"193.203.17.128\/25", + "version":53898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.18.0", + "prefixLen":25, + "network":"193.203.18.0\/25", + "version":53897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.18.0", + "prefixLen":25, + "network":"193.203.18.0\/25", + "version":53897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.18.128", + "prefixLen":25, + "network":"193.203.18.128\/25", + "version":53896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.18.128", + "prefixLen":25, + "network":"193.203.18.128\/25", + "version":53896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.19.0", + "prefixLen":25, + "network":"193.203.19.0\/25", + "version":53895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.19.0", + "prefixLen":25, + "network":"193.203.19.0\/25", + "version":53895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.19.128", + "prefixLen":25, + "network":"193.203.19.128\/25", + "version":53894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.19.128", + "prefixLen":25, + "network":"193.203.19.128\/25", + "version":53894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.32.0", + "prefixLen":25, + "network":"193.203.32.0\/25", + "version":53893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.32.0", + "prefixLen":25, + "network":"193.203.32.0\/25", + "version":53893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.32.128", + "prefixLen":25, + "network":"193.203.32.128\/25", + "version":53892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.32.128", + "prefixLen":25, + "network":"193.203.32.128\/25", + "version":53892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.33.0", + "prefixLen":25, + "network":"193.203.33.0\/25", + "version":53891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.33.0", + "prefixLen":25, + "network":"193.203.33.0\/25", + "version":53891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.33.128", + "prefixLen":25, + "network":"193.203.33.128\/25", + "version":53890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.33.128", + "prefixLen":25, + "network":"193.203.33.128\/25", + "version":53890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.34.0", + "prefixLen":25, + "network":"193.203.34.0\/25", + "version":53889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.34.0", + "prefixLen":25, + "network":"193.203.34.0\/25", + "version":53889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.34.128", + "prefixLen":25, + "network":"193.203.34.128\/25", + "version":53888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.34.128", + "prefixLen":25, + "network":"193.203.34.128\/25", + "version":53888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.35.0", + "prefixLen":25, + "network":"193.203.35.0\/25", + "version":53887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.35.0", + "prefixLen":25, + "network":"193.203.35.0\/25", + "version":53887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.35.128", + "prefixLen":25, + "network":"193.203.35.128\/25", + "version":53886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.35.128", + "prefixLen":25, + "network":"193.203.35.128\/25", + "version":53886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.48.0", + "prefixLen":25, + "network":"193.203.48.0\/25", + "version":53885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.48.0", + "prefixLen":25, + "network":"193.203.48.0\/25", + "version":53885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.48.128", + "prefixLen":25, + "network":"193.203.48.128\/25", + "version":53884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.48.128", + "prefixLen":25, + "network":"193.203.48.128\/25", + "version":53884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.49.0", + "prefixLen":25, + "network":"193.203.49.0\/25", + "version":53883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.49.0", + "prefixLen":25, + "network":"193.203.49.0\/25", + "version":53883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.49.128", + "prefixLen":25, + "network":"193.203.49.128\/25", + "version":53882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.49.128", + "prefixLen":25, + "network":"193.203.49.128\/25", + "version":53882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.50.0", + "prefixLen":25, + "network":"193.203.50.0\/25", + "version":53881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.50.0", + "prefixLen":25, + "network":"193.203.50.0\/25", + "version":53881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.50.128", + "prefixLen":25, + "network":"193.203.50.128\/25", + "version":53880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.50.128", + "prefixLen":25, + "network":"193.203.50.128\/25", + "version":53880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.51.0", + "prefixLen":25, + "network":"193.203.51.0\/25", + "version":53879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.51.0", + "prefixLen":25, + "network":"193.203.51.0\/25", + "version":53879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.51.128", + "prefixLen":25, + "network":"193.203.51.128\/25", + "version":53878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.51.128", + "prefixLen":25, + "network":"193.203.51.128\/25", + "version":53878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.64.0", + "prefixLen":25, + "network":"193.203.64.0\/25", + "version":53877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.64.0", + "prefixLen":25, + "network":"193.203.64.0\/25", + "version":53877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.64.128", + "prefixLen":25, + "network":"193.203.64.128\/25", + "version":53876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.64.128", + "prefixLen":25, + "network":"193.203.64.128\/25", + "version":53876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.65.0", + "prefixLen":25, + "network":"193.203.65.0\/25", + "version":53875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.65.0", + "prefixLen":25, + "network":"193.203.65.0\/25", + "version":53875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.65.128", + "prefixLen":25, + "network":"193.203.65.128\/25", + "version":53874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.65.128", + "prefixLen":25, + "network":"193.203.65.128\/25", + "version":53874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.66.0", + "prefixLen":25, + "network":"193.203.66.0\/25", + "version":53873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.66.0", + "prefixLen":25, + "network":"193.203.66.0\/25", + "version":53873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.66.128", + "prefixLen":25, + "network":"193.203.66.128\/25", + "version":53872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.66.128", + "prefixLen":25, + "network":"193.203.66.128\/25", + "version":53872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.67.0", + "prefixLen":25, + "network":"193.203.67.0\/25", + "version":53871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.67.0", + "prefixLen":25, + "network":"193.203.67.0\/25", + "version":53871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.67.128", + "prefixLen":25, + "network":"193.203.67.128\/25", + "version":53870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.67.128", + "prefixLen":25, + "network":"193.203.67.128\/25", + "version":53870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.80.0", + "prefixLen":25, + "network":"193.203.80.0\/25", + "version":53869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.80.0", + "prefixLen":25, + "network":"193.203.80.0\/25", + "version":53869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.80.128", + "prefixLen":25, + "network":"193.203.80.128\/25", + "version":53868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.80.128", + "prefixLen":25, + "network":"193.203.80.128\/25", + "version":53868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.81.0", + "prefixLen":25, + "network":"193.203.81.0\/25", + "version":53867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.81.0", + "prefixLen":25, + "network":"193.203.81.0\/25", + "version":53867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.81.128", + "prefixLen":25, + "network":"193.203.81.128\/25", + "version":53866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.81.128", + "prefixLen":25, + "network":"193.203.81.128\/25", + "version":53866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.82.0", + "prefixLen":25, + "network":"193.203.82.0\/25", + "version":53865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.82.0", + "prefixLen":25, + "network":"193.203.82.0\/25", + "version":53865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.82.128", + "prefixLen":25, + "network":"193.203.82.128\/25", + "version":53864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.82.128", + "prefixLen":25, + "network":"193.203.82.128\/25", + "version":53864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.83.0", + "prefixLen":25, + "network":"193.203.83.0\/25", + "version":53863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.83.0", + "prefixLen":25, + "network":"193.203.83.0\/25", + "version":53863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.83.128", + "prefixLen":25, + "network":"193.203.83.128\/25", + "version":53862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.83.128", + "prefixLen":25, + "network":"193.203.83.128\/25", + "version":53862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.96.0", + "prefixLen":25, + "network":"193.203.96.0\/25", + "version":53861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.96.0", + "prefixLen":25, + "network":"193.203.96.0\/25", + "version":53861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.96.128", + "prefixLen":25, + "network":"193.203.96.128\/25", + "version":53860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.96.128", + "prefixLen":25, + "network":"193.203.96.128\/25", + "version":53860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.97.0", + "prefixLen":25, + "network":"193.203.97.0\/25", + "version":53859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.97.0", + "prefixLen":25, + "network":"193.203.97.0\/25", + "version":53859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.97.128", + "prefixLen":25, + "network":"193.203.97.128\/25", + "version":53858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.97.128", + "prefixLen":25, + "network":"193.203.97.128\/25", + "version":53858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.98.0", + "prefixLen":25, + "network":"193.203.98.0\/25", + "version":53857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.98.0", + "prefixLen":25, + "network":"193.203.98.0\/25", + "version":53857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.98.128", + "prefixLen":25, + "network":"193.203.98.128\/25", + "version":53856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.98.128", + "prefixLen":25, + "network":"193.203.98.128\/25", + "version":53856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.99.0", + "prefixLen":25, + "network":"193.203.99.0\/25", + "version":53855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.99.0", + "prefixLen":25, + "network":"193.203.99.0\/25", + "version":53855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.99.128", + "prefixLen":25, + "network":"193.203.99.128\/25", + "version":53854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.99.128", + "prefixLen":25, + "network":"193.203.99.128\/25", + "version":53854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.112.0", + "prefixLen":25, + "network":"193.203.112.0\/25", + "version":53853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.112.0", + "prefixLen":25, + "network":"193.203.112.0\/25", + "version":53853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.112.128", + "prefixLen":25, + "network":"193.203.112.128\/25", + "version":53852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.112.128", + "prefixLen":25, + "network":"193.203.112.128\/25", + "version":53852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.113.0", + "prefixLen":25, + "network":"193.203.113.0\/25", + "version":53851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.113.0", + "prefixLen":25, + "network":"193.203.113.0\/25", + "version":53851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.113.128", + "prefixLen":25, + "network":"193.203.113.128\/25", + "version":53850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.113.128", + "prefixLen":25, + "network":"193.203.113.128\/25", + "version":53850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.114.0", + "prefixLen":25, + "network":"193.203.114.0\/25", + "version":53849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.114.0", + "prefixLen":25, + "network":"193.203.114.0\/25", + "version":53849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.114.128", + "prefixLen":25, + "network":"193.203.114.128\/25", + "version":53848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.114.128", + "prefixLen":25, + "network":"193.203.114.128\/25", + "version":53848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.115.0", + "prefixLen":25, + "network":"193.203.115.0\/25", + "version":53847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.115.0", + "prefixLen":25, + "network":"193.203.115.0\/25", + "version":53847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.115.128", + "prefixLen":25, + "network":"193.203.115.128\/25", + "version":53846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.115.128", + "prefixLen":25, + "network":"193.203.115.128\/25", + "version":53846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.128.0", + "prefixLen":25, + "network":"193.203.128.0\/25", + "version":53845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.128.0", + "prefixLen":25, + "network":"193.203.128.0\/25", + "version":53845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.128.128", + "prefixLen":25, + "network":"193.203.128.128\/25", + "version":53844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.128.128", + "prefixLen":25, + "network":"193.203.128.128\/25", + "version":53844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.129.0", + "prefixLen":25, + "network":"193.203.129.0\/25", + "version":53843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.129.0", + "prefixLen":25, + "network":"193.203.129.0\/25", + "version":53843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.129.128", + "prefixLen":25, + "network":"193.203.129.128\/25", + "version":53842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.129.128", + "prefixLen":25, + "network":"193.203.129.128\/25", + "version":53842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.130.0", + "prefixLen":25, + "network":"193.203.130.0\/25", + "version":53841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.130.0", + "prefixLen":25, + "network":"193.203.130.0\/25", + "version":53841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.130.128", + "prefixLen":25, + "network":"193.203.130.128\/25", + "version":53840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.130.128", + "prefixLen":25, + "network":"193.203.130.128\/25", + "version":53840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.131.0", + "prefixLen":25, + "network":"193.203.131.0\/25", + "version":53839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.131.0", + "prefixLen":25, + "network":"193.203.131.0\/25", + "version":53839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.131.128", + "prefixLen":25, + "network":"193.203.131.128\/25", + "version":53838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.131.128", + "prefixLen":25, + "network":"193.203.131.128\/25", + "version":53838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.144.0", + "prefixLen":25, + "network":"193.203.144.0\/25", + "version":53837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.144.0", + "prefixLen":25, + "network":"193.203.144.0\/25", + "version":53837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.144.128", + "prefixLen":25, + "network":"193.203.144.128\/25", + "version":53836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.144.128", + "prefixLen":25, + "network":"193.203.144.128\/25", + "version":53836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.145.0", + "prefixLen":25, + "network":"193.203.145.0\/25", + "version":53835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.145.0", + "prefixLen":25, + "network":"193.203.145.0\/25", + "version":53835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.145.128", + "prefixLen":25, + "network":"193.203.145.128\/25", + "version":53834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.145.128", + "prefixLen":25, + "network":"193.203.145.128\/25", + "version":53834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.146.0", + "prefixLen":25, + "network":"193.203.146.0\/25", + "version":53833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.146.0", + "prefixLen":25, + "network":"193.203.146.0\/25", + "version":53833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.146.128", + "prefixLen":25, + "network":"193.203.146.128\/25", + "version":53832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.146.128", + "prefixLen":25, + "network":"193.203.146.128\/25", + "version":53832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.147.0", + "prefixLen":25, + "network":"193.203.147.0\/25", + "version":53831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.147.0", + "prefixLen":25, + "network":"193.203.147.0\/25", + "version":53831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.147.128", + "prefixLen":25, + "network":"193.203.147.128\/25", + "version":53830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.147.128", + "prefixLen":25, + "network":"193.203.147.128\/25", + "version":53830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.160.0", + "prefixLen":25, + "network":"193.203.160.0\/25", + "version":53829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.160.0", + "prefixLen":25, + "network":"193.203.160.0\/25", + "version":53829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.160.128", + "prefixLen":25, + "network":"193.203.160.128\/25", + "version":53828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.160.128", + "prefixLen":25, + "network":"193.203.160.128\/25", + "version":53828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.161.0", + "prefixLen":25, + "network":"193.203.161.0\/25", + "version":53827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.161.0", + "prefixLen":25, + "network":"193.203.161.0\/25", + "version":53827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.161.128", + "prefixLen":25, + "network":"193.203.161.128\/25", + "version":53826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.161.128", + "prefixLen":25, + "network":"193.203.161.128\/25", + "version":53826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.162.0", + "prefixLen":25, + "network":"193.203.162.0\/25", + "version":53825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.162.0", + "prefixLen":25, + "network":"193.203.162.0\/25", + "version":53825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.162.128", + "prefixLen":25, + "network":"193.203.162.128\/25", + "version":53824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.162.128", + "prefixLen":25, + "network":"193.203.162.128\/25", + "version":53824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.163.0", + "prefixLen":25, + "network":"193.203.163.0\/25", + "version":53823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.163.0", + "prefixLen":25, + "network":"193.203.163.0\/25", + "version":53823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.163.128", + "prefixLen":25, + "network":"193.203.163.128\/25", + "version":53822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.163.128", + "prefixLen":25, + "network":"193.203.163.128\/25", + "version":53822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.176.0", + "prefixLen":25, + "network":"193.203.176.0\/25", + "version":53821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.176.0", + "prefixLen":25, + "network":"193.203.176.0\/25", + "version":53821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.176.128", + "prefixLen":25, + "network":"193.203.176.128\/25", + "version":53820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.176.128", + "prefixLen":25, + "network":"193.203.176.128\/25", + "version":53820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.177.0", + "prefixLen":25, + "network":"193.203.177.0\/25", + "version":53819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.177.0", + "prefixLen":25, + "network":"193.203.177.0\/25", + "version":53819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.177.128", + "prefixLen":25, + "network":"193.203.177.128\/25", + "version":53818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.177.128", + "prefixLen":25, + "network":"193.203.177.128\/25", + "version":53818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.178.0", + "prefixLen":25, + "network":"193.203.178.0\/25", + "version":53817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.178.0", + "prefixLen":25, + "network":"193.203.178.0\/25", + "version":53817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.178.128", + "prefixLen":25, + "network":"193.203.178.128\/25", + "version":53816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.178.128", + "prefixLen":25, + "network":"193.203.178.128\/25", + "version":53816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.179.0", + "prefixLen":25, + "network":"193.203.179.0\/25", + "version":53815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.179.0", + "prefixLen":25, + "network":"193.203.179.0\/25", + "version":53815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.179.128", + "prefixLen":25, + "network":"193.203.179.128\/25", + "version":53814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.179.128", + "prefixLen":25, + "network":"193.203.179.128\/25", + "version":53814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.192.0", + "prefixLen":25, + "network":"193.203.192.0\/25", + "version":53813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.192.0", + "prefixLen":25, + "network":"193.203.192.0\/25", + "version":53813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.192.128", + "prefixLen":25, + "network":"193.203.192.128\/25", + "version":53812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.192.128", + "prefixLen":25, + "network":"193.203.192.128\/25", + "version":53812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.193.0", + "prefixLen":25, + "network":"193.203.193.0\/25", + "version":53811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.193.0", + "prefixLen":25, + "network":"193.203.193.0\/25", + "version":53811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.193.128", + "prefixLen":25, + "network":"193.203.193.128\/25", + "version":53810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.193.128", + "prefixLen":25, + "network":"193.203.193.128\/25", + "version":53810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.194.0", + "prefixLen":25, + "network":"193.203.194.0\/25", + "version":53809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.194.0", + "prefixLen":25, + "network":"193.203.194.0\/25", + "version":53809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.194.128", + "prefixLen":25, + "network":"193.203.194.128\/25", + "version":53808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.194.128", + "prefixLen":25, + "network":"193.203.194.128\/25", + "version":53808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.195.0", + "prefixLen":25, + "network":"193.203.195.0\/25", + "version":53807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.195.0", + "prefixLen":25, + "network":"193.203.195.0\/25", + "version":53807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.195.128", + "prefixLen":25, + "network":"193.203.195.128\/25", + "version":53806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.195.128", + "prefixLen":25, + "network":"193.203.195.128\/25", + "version":53806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.208.0", + "prefixLen":25, + "network":"193.203.208.0\/25", + "version":53805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.208.0", + "prefixLen":25, + "network":"193.203.208.0\/25", + "version":53805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.208.128", + "prefixLen":25, + "network":"193.203.208.128\/25", + "version":53804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.208.128", + "prefixLen":25, + "network":"193.203.208.128\/25", + "version":53804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.209.0", + "prefixLen":25, + "network":"193.203.209.0\/25", + "version":53803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.209.0", + "prefixLen":25, + "network":"193.203.209.0\/25", + "version":53803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.209.128", + "prefixLen":25, + "network":"193.203.209.128\/25", + "version":53802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.209.128", + "prefixLen":25, + "network":"193.203.209.128\/25", + "version":53802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.210.0", + "prefixLen":25, + "network":"193.203.210.0\/25", + "version":53801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.210.0", + "prefixLen":25, + "network":"193.203.210.0\/25", + "version":53801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.210.128", + "prefixLen":25, + "network":"193.203.210.128\/25", + "version":53800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.210.128", + "prefixLen":25, + "network":"193.203.210.128\/25", + "version":53800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.211.0", + "prefixLen":25, + "network":"193.203.211.0\/25", + "version":53799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.211.0", + "prefixLen":25, + "network":"193.203.211.0\/25", + "version":53799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.211.128", + "prefixLen":25, + "network":"193.203.211.128\/25", + "version":53798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.211.128", + "prefixLen":25, + "network":"193.203.211.128\/25", + "version":53798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.224.0", + "prefixLen":25, + "network":"193.203.224.0\/25", + "version":53797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.224.0", + "prefixLen":25, + "network":"193.203.224.0\/25", + "version":53797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.224.128", + "prefixLen":25, + "network":"193.203.224.128\/25", + "version":53796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.224.128", + "prefixLen":25, + "network":"193.203.224.128\/25", + "version":53796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.225.0", + "prefixLen":25, + "network":"193.203.225.0\/25", + "version":53795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.225.0", + "prefixLen":25, + "network":"193.203.225.0\/25", + "version":53795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.225.128", + "prefixLen":25, + "network":"193.203.225.128\/25", + "version":53794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.225.128", + "prefixLen":25, + "network":"193.203.225.128\/25", + "version":53794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.226.0", + "prefixLen":25, + "network":"193.203.226.0\/25", + "version":53793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.226.0", + "prefixLen":25, + "network":"193.203.226.0\/25", + "version":53793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.226.128", + "prefixLen":25, + "network":"193.203.226.128\/25", + "version":53792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.226.128", + "prefixLen":25, + "network":"193.203.226.128\/25", + "version":53792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.227.0", + "prefixLen":25, + "network":"193.203.227.0\/25", + "version":53791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.227.0", + "prefixLen":25, + "network":"193.203.227.0\/25", + "version":53791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.227.128", + "prefixLen":25, + "network":"193.203.227.128\/25", + "version":53790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.227.128", + "prefixLen":25, + "network":"193.203.227.128\/25", + "version":53790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.240.0", + "prefixLen":25, + "network":"193.203.240.0\/25", + "version":53789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.240.0", + "prefixLen":25, + "network":"193.203.240.0\/25", + "version":53789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.240.128", + "prefixLen":25, + "network":"193.203.240.128\/25", + "version":53788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.240.128", + "prefixLen":25, + "network":"193.203.240.128\/25", + "version":53788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.241.0", + "prefixLen":25, + "network":"193.203.241.0\/25", + "version":53787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.241.0", + "prefixLen":25, + "network":"193.203.241.0\/25", + "version":53787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.241.128", + "prefixLen":25, + "network":"193.203.241.128\/25", + "version":53786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.241.128", + "prefixLen":25, + "network":"193.203.241.128\/25", + "version":53786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.242.0", + "prefixLen":25, + "network":"193.203.242.0\/25", + "version":53785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.242.0", + "prefixLen":25, + "network":"193.203.242.0\/25", + "version":53785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.242.128", + "prefixLen":25, + "network":"193.203.242.128\/25", + "version":53784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.242.128", + "prefixLen":25, + "network":"193.203.242.128\/25", + "version":53784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.243.0", + "prefixLen":25, + "network":"193.203.243.0\/25", + "version":53783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.243.0", + "prefixLen":25, + "network":"193.203.243.0\/25", + "version":53783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.203.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.203.243.128", + "prefixLen":25, + "network":"193.203.243.128\/25", + "version":53782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.203.243.128", + "prefixLen":25, + "network":"193.203.243.128\/25", + "version":53782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64891 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.0.0", + "prefixLen":25, + "network":"193.204.0.0\/25", + "version":53909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.0.0", + "prefixLen":25, + "network":"193.204.0.0\/25", + "version":53909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.0.128", + "prefixLen":25, + "network":"193.204.0.128\/25", + "version":54036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.0.128", + "prefixLen":25, + "network":"193.204.0.128\/25", + "version":54036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.1.0", + "prefixLen":25, + "network":"193.204.1.0\/25", + "version":54035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.1.0", + "prefixLen":25, + "network":"193.204.1.0\/25", + "version":54035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.1.128", + "prefixLen":25, + "network":"193.204.1.128\/25", + "version":54034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.1.128", + "prefixLen":25, + "network":"193.204.1.128\/25", + "version":54034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.2.0", + "prefixLen":25, + "network":"193.204.2.0\/25", + "version":54033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.2.0", + "prefixLen":25, + "network":"193.204.2.0\/25", + "version":54033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.2.128", + "prefixLen":25, + "network":"193.204.2.128\/25", + "version":54032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.2.128", + "prefixLen":25, + "network":"193.204.2.128\/25", + "version":54032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.3.0", + "prefixLen":25, + "network":"193.204.3.0\/25", + "version":54031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.3.0", + "prefixLen":25, + "network":"193.204.3.0\/25", + "version":54031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.3.128", + "prefixLen":25, + "network":"193.204.3.128\/25", + "version":54030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.3.128", + "prefixLen":25, + "network":"193.204.3.128\/25", + "version":54030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.16.0", + "prefixLen":25, + "network":"193.204.16.0\/25", + "version":54029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.16.0", + "prefixLen":25, + "network":"193.204.16.0\/25", + "version":54029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.16.128", + "prefixLen":25, + "network":"193.204.16.128\/25", + "version":54028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.16.128", + "prefixLen":25, + "network":"193.204.16.128\/25", + "version":54028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.17.0", + "prefixLen":25, + "network":"193.204.17.0\/25", + "version":54027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.17.0", + "prefixLen":25, + "network":"193.204.17.0\/25", + "version":54027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.17.128", + "prefixLen":25, + "network":"193.204.17.128\/25", + "version":54026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.17.128", + "prefixLen":25, + "network":"193.204.17.128\/25", + "version":54026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.18.0", + "prefixLen":25, + "network":"193.204.18.0\/25", + "version":54025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.18.0", + "prefixLen":25, + "network":"193.204.18.0\/25", + "version":54025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.18.128", + "prefixLen":25, + "network":"193.204.18.128\/25", + "version":54024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.18.128", + "prefixLen":25, + "network":"193.204.18.128\/25", + "version":54024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.19.0", + "prefixLen":25, + "network":"193.204.19.0\/25", + "version":54023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.19.0", + "prefixLen":25, + "network":"193.204.19.0\/25", + "version":54023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.19.128", + "prefixLen":25, + "network":"193.204.19.128\/25", + "version":54022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.19.128", + "prefixLen":25, + "network":"193.204.19.128\/25", + "version":54022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.32.0", + "prefixLen":25, + "network":"193.204.32.0\/25", + "version":54021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.32.0", + "prefixLen":25, + "network":"193.204.32.0\/25", + "version":54021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.32.128", + "prefixLen":25, + "network":"193.204.32.128\/25", + "version":54020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.32.128", + "prefixLen":25, + "network":"193.204.32.128\/25", + "version":54020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.33.0", + "prefixLen":25, + "network":"193.204.33.0\/25", + "version":54019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.33.0", + "prefixLen":25, + "network":"193.204.33.0\/25", + "version":54019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.33.128", + "prefixLen":25, + "network":"193.204.33.128\/25", + "version":54018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.33.128", + "prefixLen":25, + "network":"193.204.33.128\/25", + "version":54018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.34.0", + "prefixLen":25, + "network":"193.204.34.0\/25", + "version":54017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.34.0", + "prefixLen":25, + "network":"193.204.34.0\/25", + "version":54017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.34.128", + "prefixLen":25, + "network":"193.204.34.128\/25", + "version":54016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.34.128", + "prefixLen":25, + "network":"193.204.34.128\/25", + "version":54016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.35.0", + "prefixLen":25, + "network":"193.204.35.0\/25", + "version":54015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.35.0", + "prefixLen":25, + "network":"193.204.35.0\/25", + "version":54015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.35.128", + "prefixLen":25, + "network":"193.204.35.128\/25", + "version":54014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.35.128", + "prefixLen":25, + "network":"193.204.35.128\/25", + "version":54014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.48.0", + "prefixLen":25, + "network":"193.204.48.0\/25", + "version":54013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.48.0", + "prefixLen":25, + "network":"193.204.48.0\/25", + "version":54013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.48.128", + "prefixLen":25, + "network":"193.204.48.128\/25", + "version":54012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.48.128", + "prefixLen":25, + "network":"193.204.48.128\/25", + "version":54012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.49.0", + "prefixLen":25, + "network":"193.204.49.0\/25", + "version":54011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.49.0", + "prefixLen":25, + "network":"193.204.49.0\/25", + "version":54011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.49.128", + "prefixLen":25, + "network":"193.204.49.128\/25", + "version":54010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.49.128", + "prefixLen":25, + "network":"193.204.49.128\/25", + "version":54010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.50.0", + "prefixLen":25, + "network":"193.204.50.0\/25", + "version":54009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.50.0", + "prefixLen":25, + "network":"193.204.50.0\/25", + "version":54009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.50.128", + "prefixLen":25, + "network":"193.204.50.128\/25", + "version":54008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.50.128", + "prefixLen":25, + "network":"193.204.50.128\/25", + "version":54008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.51.0", + "prefixLen":25, + "network":"193.204.51.0\/25", + "version":54007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.51.0", + "prefixLen":25, + "network":"193.204.51.0\/25", + "version":54007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.51.128", + "prefixLen":25, + "network":"193.204.51.128\/25", + "version":54006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.51.128", + "prefixLen":25, + "network":"193.204.51.128\/25", + "version":54006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.64.0", + "prefixLen":25, + "network":"193.204.64.0\/25", + "version":54005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.64.0", + "prefixLen":25, + "network":"193.204.64.0\/25", + "version":54005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.64.128", + "prefixLen":25, + "network":"193.204.64.128\/25", + "version":54004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.64.128", + "prefixLen":25, + "network":"193.204.64.128\/25", + "version":54004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.65.0", + "prefixLen":25, + "network":"193.204.65.0\/25", + "version":54003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.65.0", + "prefixLen":25, + "network":"193.204.65.0\/25", + "version":54003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.65.128", + "prefixLen":25, + "network":"193.204.65.128\/25", + "version":54002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.65.128", + "prefixLen":25, + "network":"193.204.65.128\/25", + "version":54002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.66.0", + "prefixLen":25, + "network":"193.204.66.0\/25", + "version":54001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.66.0", + "prefixLen":25, + "network":"193.204.66.0\/25", + "version":54001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.66.128", + "prefixLen":25, + "network":"193.204.66.128\/25", + "version":54000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.66.128", + "prefixLen":25, + "network":"193.204.66.128\/25", + "version":54000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.67.0", + "prefixLen":25, + "network":"193.204.67.0\/25", + "version":53999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.67.0", + "prefixLen":25, + "network":"193.204.67.0\/25", + "version":53999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.67.128", + "prefixLen":25, + "network":"193.204.67.128\/25", + "version":53998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.67.128", + "prefixLen":25, + "network":"193.204.67.128\/25", + "version":53998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.80.0", + "prefixLen":25, + "network":"193.204.80.0\/25", + "version":53997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.80.0", + "prefixLen":25, + "network":"193.204.80.0\/25", + "version":53997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.80.128", + "prefixLen":25, + "network":"193.204.80.128\/25", + "version":53996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.80.128", + "prefixLen":25, + "network":"193.204.80.128\/25", + "version":53996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.81.0", + "prefixLen":25, + "network":"193.204.81.0\/25", + "version":53995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.81.0", + "prefixLen":25, + "network":"193.204.81.0\/25", + "version":53995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.81.128", + "prefixLen":25, + "network":"193.204.81.128\/25", + "version":53994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.81.128", + "prefixLen":25, + "network":"193.204.81.128\/25", + "version":53994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.82.0", + "prefixLen":25, + "network":"193.204.82.0\/25", + "version":53993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.82.0", + "prefixLen":25, + "network":"193.204.82.0\/25", + "version":53993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.82.128", + "prefixLen":25, + "network":"193.204.82.128\/25", + "version":53992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.82.128", + "prefixLen":25, + "network":"193.204.82.128\/25", + "version":53992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.83.0", + "prefixLen":25, + "network":"193.204.83.0\/25", + "version":53991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.83.0", + "prefixLen":25, + "network":"193.204.83.0\/25", + "version":53991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.83.128", + "prefixLen":25, + "network":"193.204.83.128\/25", + "version":53990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.83.128", + "prefixLen":25, + "network":"193.204.83.128\/25", + "version":53990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.96.0", + "prefixLen":25, + "network":"193.204.96.0\/25", + "version":53989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.96.0", + "prefixLen":25, + "network":"193.204.96.0\/25", + "version":53989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.96.128", + "prefixLen":25, + "network":"193.204.96.128\/25", + "version":53988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.96.128", + "prefixLen":25, + "network":"193.204.96.128\/25", + "version":53988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.97.0", + "prefixLen":25, + "network":"193.204.97.0\/25", + "version":53987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.97.0", + "prefixLen":25, + "network":"193.204.97.0\/25", + "version":53987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.97.128", + "prefixLen":25, + "network":"193.204.97.128\/25", + "version":53986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.97.128", + "prefixLen":25, + "network":"193.204.97.128\/25", + "version":53986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.98.0", + "prefixLen":25, + "network":"193.204.98.0\/25", + "version":53985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.98.0", + "prefixLen":25, + "network":"193.204.98.0\/25", + "version":53985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.98.128", + "prefixLen":25, + "network":"193.204.98.128\/25", + "version":53984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.98.128", + "prefixLen":25, + "network":"193.204.98.128\/25", + "version":53984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.99.0", + "prefixLen":25, + "network":"193.204.99.0\/25", + "version":53983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.99.0", + "prefixLen":25, + "network":"193.204.99.0\/25", + "version":53983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.99.128", + "prefixLen":25, + "network":"193.204.99.128\/25", + "version":53982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.99.128", + "prefixLen":25, + "network":"193.204.99.128\/25", + "version":53982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.112.0", + "prefixLen":25, + "network":"193.204.112.0\/25", + "version":53981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.112.0", + "prefixLen":25, + "network":"193.204.112.0\/25", + "version":53981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.112.128", + "prefixLen":25, + "network":"193.204.112.128\/25", + "version":53980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.112.128", + "prefixLen":25, + "network":"193.204.112.128\/25", + "version":53980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.113.0", + "prefixLen":25, + "network":"193.204.113.0\/25", + "version":53979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.113.0", + "prefixLen":25, + "network":"193.204.113.0\/25", + "version":53979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.113.128", + "prefixLen":25, + "network":"193.204.113.128\/25", + "version":53978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.113.128", + "prefixLen":25, + "network":"193.204.113.128\/25", + "version":53978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.114.0", + "prefixLen":25, + "network":"193.204.114.0\/25", + "version":53977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.114.0", + "prefixLen":25, + "network":"193.204.114.0\/25", + "version":53977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.114.128", + "prefixLen":25, + "network":"193.204.114.128\/25", + "version":53976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.114.128", + "prefixLen":25, + "network":"193.204.114.128\/25", + "version":53976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.115.0", + "prefixLen":25, + "network":"193.204.115.0\/25", + "version":53975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.115.0", + "prefixLen":25, + "network":"193.204.115.0\/25", + "version":53975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.115.128", + "prefixLen":25, + "network":"193.204.115.128\/25", + "version":53974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.115.128", + "prefixLen":25, + "network":"193.204.115.128\/25", + "version":53974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.128.0", + "prefixLen":25, + "network":"193.204.128.0\/25", + "version":53973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.128.0", + "prefixLen":25, + "network":"193.204.128.0\/25", + "version":53973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.128.128", + "prefixLen":25, + "network":"193.204.128.128\/25", + "version":53972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.128.128", + "prefixLen":25, + "network":"193.204.128.128\/25", + "version":53972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.129.0", + "prefixLen":25, + "network":"193.204.129.0\/25", + "version":53971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.129.0", + "prefixLen":25, + "network":"193.204.129.0\/25", + "version":53971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.129.128", + "prefixLen":25, + "network":"193.204.129.128\/25", + "version":53970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.129.128", + "prefixLen":25, + "network":"193.204.129.128\/25", + "version":53970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.130.0", + "prefixLen":25, + "network":"193.204.130.0\/25", + "version":53969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.130.0", + "prefixLen":25, + "network":"193.204.130.0\/25", + "version":53969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.130.128", + "prefixLen":25, + "network":"193.204.130.128\/25", + "version":53968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.130.128", + "prefixLen":25, + "network":"193.204.130.128\/25", + "version":53968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.131.0", + "prefixLen":25, + "network":"193.204.131.0\/25", + "version":53967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.131.0", + "prefixLen":25, + "network":"193.204.131.0\/25", + "version":53967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.131.128", + "prefixLen":25, + "network":"193.204.131.128\/25", + "version":53966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.131.128", + "prefixLen":25, + "network":"193.204.131.128\/25", + "version":53966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.144.0", + "prefixLen":25, + "network":"193.204.144.0\/25", + "version":53965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.144.0", + "prefixLen":25, + "network":"193.204.144.0\/25", + "version":53965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.144.128", + "prefixLen":25, + "network":"193.204.144.128\/25", + "version":53964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.144.128", + "prefixLen":25, + "network":"193.204.144.128\/25", + "version":53964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.145.0", + "prefixLen":25, + "network":"193.204.145.0\/25", + "version":53963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.145.0", + "prefixLen":25, + "network":"193.204.145.0\/25", + "version":53963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.145.128", + "prefixLen":25, + "network":"193.204.145.128\/25", + "version":53962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.145.128", + "prefixLen":25, + "network":"193.204.145.128\/25", + "version":53962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.146.0", + "prefixLen":25, + "network":"193.204.146.0\/25", + "version":53961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.146.0", + "prefixLen":25, + "network":"193.204.146.0\/25", + "version":53961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.146.128", + "prefixLen":25, + "network":"193.204.146.128\/25", + "version":53960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.146.128", + "prefixLen":25, + "network":"193.204.146.128\/25", + "version":53960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.147.0", + "prefixLen":25, + "network":"193.204.147.0\/25", + "version":53959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.147.0", + "prefixLen":25, + "network":"193.204.147.0\/25", + "version":53959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.147.128", + "prefixLen":25, + "network":"193.204.147.128\/25", + "version":53958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.147.128", + "prefixLen":25, + "network":"193.204.147.128\/25", + "version":53958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.160.0", + "prefixLen":25, + "network":"193.204.160.0\/25", + "version":53957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.160.0", + "prefixLen":25, + "network":"193.204.160.0\/25", + "version":53957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.160.128", + "prefixLen":25, + "network":"193.204.160.128\/25", + "version":53956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.160.128", + "prefixLen":25, + "network":"193.204.160.128\/25", + "version":53956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.161.0", + "prefixLen":25, + "network":"193.204.161.0\/25", + "version":53955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.161.0", + "prefixLen":25, + "network":"193.204.161.0\/25", + "version":53955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.161.128", + "prefixLen":25, + "network":"193.204.161.128\/25", + "version":53954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.161.128", + "prefixLen":25, + "network":"193.204.161.128\/25", + "version":53954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.162.0", + "prefixLen":25, + "network":"193.204.162.0\/25", + "version":53953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.162.0", + "prefixLen":25, + "network":"193.204.162.0\/25", + "version":53953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.162.128", + "prefixLen":25, + "network":"193.204.162.128\/25", + "version":53952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.162.128", + "prefixLen":25, + "network":"193.204.162.128\/25", + "version":53952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.163.0", + "prefixLen":25, + "network":"193.204.163.0\/25", + "version":53951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.163.0", + "prefixLen":25, + "network":"193.204.163.0\/25", + "version":53951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.163.128", + "prefixLen":25, + "network":"193.204.163.128\/25", + "version":53950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.163.128", + "prefixLen":25, + "network":"193.204.163.128\/25", + "version":53950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.176.0", + "prefixLen":25, + "network":"193.204.176.0\/25", + "version":53949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.176.0", + "prefixLen":25, + "network":"193.204.176.0\/25", + "version":53949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.176.128", + "prefixLen":25, + "network":"193.204.176.128\/25", + "version":53948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.176.128", + "prefixLen":25, + "network":"193.204.176.128\/25", + "version":53948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.177.0", + "prefixLen":25, + "network":"193.204.177.0\/25", + "version":53947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.177.0", + "prefixLen":25, + "network":"193.204.177.0\/25", + "version":53947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.177.128", + "prefixLen":25, + "network":"193.204.177.128\/25", + "version":53946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.177.128", + "prefixLen":25, + "network":"193.204.177.128\/25", + "version":53946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.178.0", + "prefixLen":25, + "network":"193.204.178.0\/25", + "version":53945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.178.0", + "prefixLen":25, + "network":"193.204.178.0\/25", + "version":53945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.178.128", + "prefixLen":25, + "network":"193.204.178.128\/25", + "version":53944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.178.128", + "prefixLen":25, + "network":"193.204.178.128\/25", + "version":53944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.179.0", + "prefixLen":25, + "network":"193.204.179.0\/25", + "version":53943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.179.0", + "prefixLen":25, + "network":"193.204.179.0\/25", + "version":53943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.179.128", + "prefixLen":25, + "network":"193.204.179.128\/25", + "version":53942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.179.128", + "prefixLen":25, + "network":"193.204.179.128\/25", + "version":53942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.192.0", + "prefixLen":25, + "network":"193.204.192.0\/25", + "version":53941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.192.0", + "prefixLen":25, + "network":"193.204.192.0\/25", + "version":53941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.192.128", + "prefixLen":25, + "network":"193.204.192.128\/25", + "version":53940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.192.128", + "prefixLen":25, + "network":"193.204.192.128\/25", + "version":53940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.193.0", + "prefixLen":25, + "network":"193.204.193.0\/25", + "version":53939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.193.0", + "prefixLen":25, + "network":"193.204.193.0\/25", + "version":53939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.193.128", + "prefixLen":25, + "network":"193.204.193.128\/25", + "version":53938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.193.128", + "prefixLen":25, + "network":"193.204.193.128\/25", + "version":53938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.194.0", + "prefixLen":25, + "network":"193.204.194.0\/25", + "version":53937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.194.0", + "prefixLen":25, + "network":"193.204.194.0\/25", + "version":53937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.194.128", + "prefixLen":25, + "network":"193.204.194.128\/25", + "version":53936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.194.128", + "prefixLen":25, + "network":"193.204.194.128\/25", + "version":53936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.195.0", + "prefixLen":25, + "network":"193.204.195.0\/25", + "version":53935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.195.0", + "prefixLen":25, + "network":"193.204.195.0\/25", + "version":53935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.195.128", + "prefixLen":25, + "network":"193.204.195.128\/25", + "version":53934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.195.128", + "prefixLen":25, + "network":"193.204.195.128\/25", + "version":53934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.208.0", + "prefixLen":25, + "network":"193.204.208.0\/25", + "version":53933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.208.0", + "prefixLen":25, + "network":"193.204.208.0\/25", + "version":53933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.208.128", + "prefixLen":25, + "network":"193.204.208.128\/25", + "version":53932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.208.128", + "prefixLen":25, + "network":"193.204.208.128\/25", + "version":53932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.209.0", + "prefixLen":25, + "network":"193.204.209.0\/25", + "version":53931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.209.0", + "prefixLen":25, + "network":"193.204.209.0\/25", + "version":53931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.209.128", + "prefixLen":25, + "network":"193.204.209.128\/25", + "version":53930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.209.128", + "prefixLen":25, + "network":"193.204.209.128\/25", + "version":53930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.210.0", + "prefixLen":25, + "network":"193.204.210.0\/25", + "version":53929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.210.0", + "prefixLen":25, + "network":"193.204.210.0\/25", + "version":53929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.210.128", + "prefixLen":25, + "network":"193.204.210.128\/25", + "version":53928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.210.128", + "prefixLen":25, + "network":"193.204.210.128\/25", + "version":53928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.211.0", + "prefixLen":25, + "network":"193.204.211.0\/25", + "version":53927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.211.0", + "prefixLen":25, + "network":"193.204.211.0\/25", + "version":53927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.211.128", + "prefixLen":25, + "network":"193.204.211.128\/25", + "version":53926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.211.128", + "prefixLen":25, + "network":"193.204.211.128\/25", + "version":53926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.224.0", + "prefixLen":25, + "network":"193.204.224.0\/25", + "version":53925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.224.0", + "prefixLen":25, + "network":"193.204.224.0\/25", + "version":53925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.224.128", + "prefixLen":25, + "network":"193.204.224.128\/25", + "version":53924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.224.128", + "prefixLen":25, + "network":"193.204.224.128\/25", + "version":53924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.225.0", + "prefixLen":25, + "network":"193.204.225.0\/25", + "version":53923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.225.0", + "prefixLen":25, + "network":"193.204.225.0\/25", + "version":53923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.225.128", + "prefixLen":25, + "network":"193.204.225.128\/25", + "version":53922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.225.128", + "prefixLen":25, + "network":"193.204.225.128\/25", + "version":53922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.226.0", + "prefixLen":25, + "network":"193.204.226.0\/25", + "version":53921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.226.0", + "prefixLen":25, + "network":"193.204.226.0\/25", + "version":53921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.226.128", + "prefixLen":25, + "network":"193.204.226.128\/25", + "version":53920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.226.128", + "prefixLen":25, + "network":"193.204.226.128\/25", + "version":53920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.227.0", + "prefixLen":25, + "network":"193.204.227.0\/25", + "version":53919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.227.0", + "prefixLen":25, + "network":"193.204.227.0\/25", + "version":53919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.227.128", + "prefixLen":25, + "network":"193.204.227.128\/25", + "version":53918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.227.128", + "prefixLen":25, + "network":"193.204.227.128\/25", + "version":53918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.240.0", + "prefixLen":25, + "network":"193.204.240.0\/25", + "version":53917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.240.0", + "prefixLen":25, + "network":"193.204.240.0\/25", + "version":53917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.240.128", + "prefixLen":25, + "network":"193.204.240.128\/25", + "version":53916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.240.128", + "prefixLen":25, + "network":"193.204.240.128\/25", + "version":53916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.241.0", + "prefixLen":25, + "network":"193.204.241.0\/25", + "version":53915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.241.0", + "prefixLen":25, + "network":"193.204.241.0\/25", + "version":53915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.241.128", + "prefixLen":25, + "network":"193.204.241.128\/25", + "version":53914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.241.128", + "prefixLen":25, + "network":"193.204.241.128\/25", + "version":53914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.242.0", + "prefixLen":25, + "network":"193.204.242.0\/25", + "version":53913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.242.0", + "prefixLen":25, + "network":"193.204.242.0\/25", + "version":53913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.242.128", + "prefixLen":25, + "network":"193.204.242.128\/25", + "version":53912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.242.128", + "prefixLen":25, + "network":"193.204.242.128\/25", + "version":53912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.243.0", + "prefixLen":25, + "network":"193.204.243.0\/25", + "version":53911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.243.0", + "prefixLen":25, + "network":"193.204.243.0\/25", + "version":53911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.204.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.204.243.128", + "prefixLen":25, + "network":"193.204.243.128\/25", + "version":53910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.204.243.128", + "prefixLen":25, + "network":"193.204.243.128\/25", + "version":53910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64892 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.0.0", + "prefixLen":25, + "network":"193.205.0.0\/25", + "version":54037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.0.0", + "prefixLen":25, + "network":"193.205.0.0\/25", + "version":54037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.0.128", + "prefixLen":25, + "network":"193.205.0.128\/25", + "version":54164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.0.128", + "prefixLen":25, + "network":"193.205.0.128\/25", + "version":54164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.1.0", + "prefixLen":25, + "network":"193.205.1.0\/25", + "version":54163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.1.0", + "prefixLen":25, + "network":"193.205.1.0\/25", + "version":54163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.1.128", + "prefixLen":25, + "network":"193.205.1.128\/25", + "version":54162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.1.128", + "prefixLen":25, + "network":"193.205.1.128\/25", + "version":54162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.2.0", + "prefixLen":25, + "network":"193.205.2.0\/25", + "version":54161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.2.0", + "prefixLen":25, + "network":"193.205.2.0\/25", + "version":54161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.2.128", + "prefixLen":25, + "network":"193.205.2.128\/25", + "version":54160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.2.128", + "prefixLen":25, + "network":"193.205.2.128\/25", + "version":54160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.3.0", + "prefixLen":25, + "network":"193.205.3.0\/25", + "version":54159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.3.0", + "prefixLen":25, + "network":"193.205.3.0\/25", + "version":54159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.3.128", + "prefixLen":25, + "network":"193.205.3.128\/25", + "version":54158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.3.128", + "prefixLen":25, + "network":"193.205.3.128\/25", + "version":54158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.16.0", + "prefixLen":25, + "network":"193.205.16.0\/25", + "version":54157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.16.0", + "prefixLen":25, + "network":"193.205.16.0\/25", + "version":54157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.16.128", + "prefixLen":25, + "network":"193.205.16.128\/25", + "version":54156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.16.128", + "prefixLen":25, + "network":"193.205.16.128\/25", + "version":54156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.17.0", + "prefixLen":25, + "network":"193.205.17.0\/25", + "version":54155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.17.0", + "prefixLen":25, + "network":"193.205.17.0\/25", + "version":54155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.17.128", + "prefixLen":25, + "network":"193.205.17.128\/25", + "version":54154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.17.128", + "prefixLen":25, + "network":"193.205.17.128\/25", + "version":54154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.18.0", + "prefixLen":25, + "network":"193.205.18.0\/25", + "version":54153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.18.0", + "prefixLen":25, + "network":"193.205.18.0\/25", + "version":54153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.18.128", + "prefixLen":25, + "network":"193.205.18.128\/25", + "version":54152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.18.128", + "prefixLen":25, + "network":"193.205.18.128\/25", + "version":54152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.19.0", + "prefixLen":25, + "network":"193.205.19.0\/25", + "version":54151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.19.0", + "prefixLen":25, + "network":"193.205.19.0\/25", + "version":54151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.19.128", + "prefixLen":25, + "network":"193.205.19.128\/25", + "version":54150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.19.128", + "prefixLen":25, + "network":"193.205.19.128\/25", + "version":54150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.32.0", + "prefixLen":25, + "network":"193.205.32.0\/25", + "version":54149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.32.0", + "prefixLen":25, + "network":"193.205.32.0\/25", + "version":54149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.32.128", + "prefixLen":25, + "network":"193.205.32.128\/25", + "version":54148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.32.128", + "prefixLen":25, + "network":"193.205.32.128\/25", + "version":54148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.33.0", + "prefixLen":25, + "network":"193.205.33.0\/25", + "version":54147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.33.0", + "prefixLen":25, + "network":"193.205.33.0\/25", + "version":54147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.33.128", + "prefixLen":25, + "network":"193.205.33.128\/25", + "version":54146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.33.128", + "prefixLen":25, + "network":"193.205.33.128\/25", + "version":54146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.34.0", + "prefixLen":25, + "network":"193.205.34.0\/25", + "version":54145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.34.0", + "prefixLen":25, + "network":"193.205.34.0\/25", + "version":54145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.34.128", + "prefixLen":25, + "network":"193.205.34.128\/25", + "version":54144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.34.128", + "prefixLen":25, + "network":"193.205.34.128\/25", + "version":54144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.35.0", + "prefixLen":25, + "network":"193.205.35.0\/25", + "version":54143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.35.0", + "prefixLen":25, + "network":"193.205.35.0\/25", + "version":54143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.35.128", + "prefixLen":25, + "network":"193.205.35.128\/25", + "version":54142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.35.128", + "prefixLen":25, + "network":"193.205.35.128\/25", + "version":54142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.48.0", + "prefixLen":25, + "network":"193.205.48.0\/25", + "version":54141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.48.0", + "prefixLen":25, + "network":"193.205.48.0\/25", + "version":54141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.48.128", + "prefixLen":25, + "network":"193.205.48.128\/25", + "version":54140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.48.128", + "prefixLen":25, + "network":"193.205.48.128\/25", + "version":54140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.49.0", + "prefixLen":25, + "network":"193.205.49.0\/25", + "version":54139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.49.0", + "prefixLen":25, + "network":"193.205.49.0\/25", + "version":54139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.49.128", + "prefixLen":25, + "network":"193.205.49.128\/25", + "version":54138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.49.128", + "prefixLen":25, + "network":"193.205.49.128\/25", + "version":54138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.50.0", + "prefixLen":25, + "network":"193.205.50.0\/25", + "version":54137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.50.0", + "prefixLen":25, + "network":"193.205.50.0\/25", + "version":54137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.50.128", + "prefixLen":25, + "network":"193.205.50.128\/25", + "version":54136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.50.128", + "prefixLen":25, + "network":"193.205.50.128\/25", + "version":54136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.51.0", + "prefixLen":25, + "network":"193.205.51.0\/25", + "version":54135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.51.0", + "prefixLen":25, + "network":"193.205.51.0\/25", + "version":54135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.51.128", + "prefixLen":25, + "network":"193.205.51.128\/25", + "version":54134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.51.128", + "prefixLen":25, + "network":"193.205.51.128\/25", + "version":54134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.64.0", + "prefixLen":25, + "network":"193.205.64.0\/25", + "version":54133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.64.0", + "prefixLen":25, + "network":"193.205.64.0\/25", + "version":54133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.64.128", + "prefixLen":25, + "network":"193.205.64.128\/25", + "version":54132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.64.128", + "prefixLen":25, + "network":"193.205.64.128\/25", + "version":54132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.65.0", + "prefixLen":25, + "network":"193.205.65.0\/25", + "version":54131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.65.0", + "prefixLen":25, + "network":"193.205.65.0\/25", + "version":54131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.65.128", + "prefixLen":25, + "network":"193.205.65.128\/25", + "version":54130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.65.128", + "prefixLen":25, + "network":"193.205.65.128\/25", + "version":54130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.66.0", + "prefixLen":25, + "network":"193.205.66.0\/25", + "version":54129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.66.0", + "prefixLen":25, + "network":"193.205.66.0\/25", + "version":54129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.66.128", + "prefixLen":25, + "network":"193.205.66.128\/25", + "version":54128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.66.128", + "prefixLen":25, + "network":"193.205.66.128\/25", + "version":54128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.67.0", + "prefixLen":25, + "network":"193.205.67.0\/25", + "version":54127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.67.0", + "prefixLen":25, + "network":"193.205.67.0\/25", + "version":54127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.67.128", + "prefixLen":25, + "network":"193.205.67.128\/25", + "version":54126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.67.128", + "prefixLen":25, + "network":"193.205.67.128\/25", + "version":54126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.80.0", + "prefixLen":25, + "network":"193.205.80.0\/25", + "version":54125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.80.0", + "prefixLen":25, + "network":"193.205.80.0\/25", + "version":54125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.80.128", + "prefixLen":25, + "network":"193.205.80.128\/25", + "version":54124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.80.128", + "prefixLen":25, + "network":"193.205.80.128\/25", + "version":54124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.81.0", + "prefixLen":25, + "network":"193.205.81.0\/25", + "version":54123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.81.0", + "prefixLen":25, + "network":"193.205.81.0\/25", + "version":54123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.81.128", + "prefixLen":25, + "network":"193.205.81.128\/25", + "version":54122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.81.128", + "prefixLen":25, + "network":"193.205.81.128\/25", + "version":54122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.82.0", + "prefixLen":25, + "network":"193.205.82.0\/25", + "version":54121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.82.0", + "prefixLen":25, + "network":"193.205.82.0\/25", + "version":54121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.82.128", + "prefixLen":25, + "network":"193.205.82.128\/25", + "version":54120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.82.128", + "prefixLen":25, + "network":"193.205.82.128\/25", + "version":54120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.83.0", + "prefixLen":25, + "network":"193.205.83.0\/25", + "version":54119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.83.0", + "prefixLen":25, + "network":"193.205.83.0\/25", + "version":54119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.83.128", + "prefixLen":25, + "network":"193.205.83.128\/25", + "version":54118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.83.128", + "prefixLen":25, + "network":"193.205.83.128\/25", + "version":54118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.96.0", + "prefixLen":25, + "network":"193.205.96.0\/25", + "version":54117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.96.0", + "prefixLen":25, + "network":"193.205.96.0\/25", + "version":54117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.96.128", + "prefixLen":25, + "network":"193.205.96.128\/25", + "version":54116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.96.128", + "prefixLen":25, + "network":"193.205.96.128\/25", + "version":54116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.97.0", + "prefixLen":25, + "network":"193.205.97.0\/25", + "version":54115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.97.0", + "prefixLen":25, + "network":"193.205.97.0\/25", + "version":54115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.97.128", + "prefixLen":25, + "network":"193.205.97.128\/25", + "version":54114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.97.128", + "prefixLen":25, + "network":"193.205.97.128\/25", + "version":54114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.98.0", + "prefixLen":25, + "network":"193.205.98.0\/25", + "version":54113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.98.0", + "prefixLen":25, + "network":"193.205.98.0\/25", + "version":54113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.98.128", + "prefixLen":25, + "network":"193.205.98.128\/25", + "version":54112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.98.128", + "prefixLen":25, + "network":"193.205.98.128\/25", + "version":54112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.99.0", + "prefixLen":25, + "network":"193.205.99.0\/25", + "version":54111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.99.0", + "prefixLen":25, + "network":"193.205.99.0\/25", + "version":54111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.99.128", + "prefixLen":25, + "network":"193.205.99.128\/25", + "version":54110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.99.128", + "prefixLen":25, + "network":"193.205.99.128\/25", + "version":54110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.112.0", + "prefixLen":25, + "network":"193.205.112.0\/25", + "version":54109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.112.0", + "prefixLen":25, + "network":"193.205.112.0\/25", + "version":54109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.112.128", + "prefixLen":25, + "network":"193.205.112.128\/25", + "version":54108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.112.128", + "prefixLen":25, + "network":"193.205.112.128\/25", + "version":54108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.113.0", + "prefixLen":25, + "network":"193.205.113.0\/25", + "version":54107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.113.0", + "prefixLen":25, + "network":"193.205.113.0\/25", + "version":54107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.113.128", + "prefixLen":25, + "network":"193.205.113.128\/25", + "version":54106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.113.128", + "prefixLen":25, + "network":"193.205.113.128\/25", + "version":54106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.114.0", + "prefixLen":25, + "network":"193.205.114.0\/25", + "version":54105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.114.0", + "prefixLen":25, + "network":"193.205.114.0\/25", + "version":54105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.114.128", + "prefixLen":25, + "network":"193.205.114.128\/25", + "version":54104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.114.128", + "prefixLen":25, + "network":"193.205.114.128\/25", + "version":54104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.115.0", + "prefixLen":25, + "network":"193.205.115.0\/25", + "version":54103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.115.0", + "prefixLen":25, + "network":"193.205.115.0\/25", + "version":54103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.115.128", + "prefixLen":25, + "network":"193.205.115.128\/25", + "version":54102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.115.128", + "prefixLen":25, + "network":"193.205.115.128\/25", + "version":54102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.128.0", + "prefixLen":25, + "network":"193.205.128.0\/25", + "version":54101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.128.0", + "prefixLen":25, + "network":"193.205.128.0\/25", + "version":54101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.128.128", + "prefixLen":25, + "network":"193.205.128.128\/25", + "version":54100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.128.128", + "prefixLen":25, + "network":"193.205.128.128\/25", + "version":54100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.129.0", + "prefixLen":25, + "network":"193.205.129.0\/25", + "version":54099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.129.0", + "prefixLen":25, + "network":"193.205.129.0\/25", + "version":54099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.129.128", + "prefixLen":25, + "network":"193.205.129.128\/25", + "version":54098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.129.128", + "prefixLen":25, + "network":"193.205.129.128\/25", + "version":54098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.130.0", + "prefixLen":25, + "network":"193.205.130.0\/25", + "version":54097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.130.0", + "prefixLen":25, + "network":"193.205.130.0\/25", + "version":54097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.130.128", + "prefixLen":25, + "network":"193.205.130.128\/25", + "version":54096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.130.128", + "prefixLen":25, + "network":"193.205.130.128\/25", + "version":54096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.131.0", + "prefixLen":25, + "network":"193.205.131.0\/25", + "version":54095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.131.0", + "prefixLen":25, + "network":"193.205.131.0\/25", + "version":54095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.131.128", + "prefixLen":25, + "network":"193.205.131.128\/25", + "version":54094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.131.128", + "prefixLen":25, + "network":"193.205.131.128\/25", + "version":54094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.144.0", + "prefixLen":25, + "network":"193.205.144.0\/25", + "version":54093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.144.0", + "prefixLen":25, + "network":"193.205.144.0\/25", + "version":54093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.144.128", + "prefixLen":25, + "network":"193.205.144.128\/25", + "version":54092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.144.128", + "prefixLen":25, + "network":"193.205.144.128\/25", + "version":54092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.145.0", + "prefixLen":25, + "network":"193.205.145.0\/25", + "version":54091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.145.0", + "prefixLen":25, + "network":"193.205.145.0\/25", + "version":54091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.145.128", + "prefixLen":25, + "network":"193.205.145.128\/25", + "version":54090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.145.128", + "prefixLen":25, + "network":"193.205.145.128\/25", + "version":54090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.146.0", + "prefixLen":25, + "network":"193.205.146.0\/25", + "version":54089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.146.0", + "prefixLen":25, + "network":"193.205.146.0\/25", + "version":54089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.146.128", + "prefixLen":25, + "network":"193.205.146.128\/25", + "version":54088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.146.128", + "prefixLen":25, + "network":"193.205.146.128\/25", + "version":54088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.147.0", + "prefixLen":25, + "network":"193.205.147.0\/25", + "version":54087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.147.0", + "prefixLen":25, + "network":"193.205.147.0\/25", + "version":54087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.147.128", + "prefixLen":25, + "network":"193.205.147.128\/25", + "version":54086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.147.128", + "prefixLen":25, + "network":"193.205.147.128\/25", + "version":54086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.160.0", + "prefixLen":25, + "network":"193.205.160.0\/25", + "version":54085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.160.0", + "prefixLen":25, + "network":"193.205.160.0\/25", + "version":54085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.160.128", + "prefixLen":25, + "network":"193.205.160.128\/25", + "version":54084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.160.128", + "prefixLen":25, + "network":"193.205.160.128\/25", + "version":54084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.161.0", + "prefixLen":25, + "network":"193.205.161.0\/25", + "version":54083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.161.0", + "prefixLen":25, + "network":"193.205.161.0\/25", + "version":54083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.161.128", + "prefixLen":25, + "network":"193.205.161.128\/25", + "version":54082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.161.128", + "prefixLen":25, + "network":"193.205.161.128\/25", + "version":54082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.162.0", + "prefixLen":25, + "network":"193.205.162.0\/25", + "version":54081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.162.0", + "prefixLen":25, + "network":"193.205.162.0\/25", + "version":54081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.162.128", + "prefixLen":25, + "network":"193.205.162.128\/25", + "version":54080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.162.128", + "prefixLen":25, + "network":"193.205.162.128\/25", + "version":54080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.163.0", + "prefixLen":25, + "network":"193.205.163.0\/25", + "version":54079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.163.0", + "prefixLen":25, + "network":"193.205.163.0\/25", + "version":54079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.163.128", + "prefixLen":25, + "network":"193.205.163.128\/25", + "version":54078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.163.128", + "prefixLen":25, + "network":"193.205.163.128\/25", + "version":54078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.176.0", + "prefixLen":25, + "network":"193.205.176.0\/25", + "version":54077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.176.0", + "prefixLen":25, + "network":"193.205.176.0\/25", + "version":54077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.176.128", + "prefixLen":25, + "network":"193.205.176.128\/25", + "version":54076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.176.128", + "prefixLen":25, + "network":"193.205.176.128\/25", + "version":54076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.177.0", + "prefixLen":25, + "network":"193.205.177.0\/25", + "version":54075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.177.0", + "prefixLen":25, + "network":"193.205.177.0\/25", + "version":54075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.177.128", + "prefixLen":25, + "network":"193.205.177.128\/25", + "version":54074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.177.128", + "prefixLen":25, + "network":"193.205.177.128\/25", + "version":54074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.178.0", + "prefixLen":25, + "network":"193.205.178.0\/25", + "version":54073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.178.0", + "prefixLen":25, + "network":"193.205.178.0\/25", + "version":54073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.178.128", + "prefixLen":25, + "network":"193.205.178.128\/25", + "version":54072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.178.128", + "prefixLen":25, + "network":"193.205.178.128\/25", + "version":54072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.179.0", + "prefixLen":25, + "network":"193.205.179.0\/25", + "version":54071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.179.0", + "prefixLen":25, + "network":"193.205.179.0\/25", + "version":54071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.179.128", + "prefixLen":25, + "network":"193.205.179.128\/25", + "version":54070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.179.128", + "prefixLen":25, + "network":"193.205.179.128\/25", + "version":54070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.192.0", + "prefixLen":25, + "network":"193.205.192.0\/25", + "version":54069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.192.0", + "prefixLen":25, + "network":"193.205.192.0\/25", + "version":54069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.192.128", + "prefixLen":25, + "network":"193.205.192.128\/25", + "version":54068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.192.128", + "prefixLen":25, + "network":"193.205.192.128\/25", + "version":54068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.193.0", + "prefixLen":25, + "network":"193.205.193.0\/25", + "version":54067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.193.0", + "prefixLen":25, + "network":"193.205.193.0\/25", + "version":54067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.193.128", + "prefixLen":25, + "network":"193.205.193.128\/25", + "version":54066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.193.128", + "prefixLen":25, + "network":"193.205.193.128\/25", + "version":54066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.194.0", + "prefixLen":25, + "network":"193.205.194.0\/25", + "version":54065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.194.0", + "prefixLen":25, + "network":"193.205.194.0\/25", + "version":54065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.194.128", + "prefixLen":25, + "network":"193.205.194.128\/25", + "version":54064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.194.128", + "prefixLen":25, + "network":"193.205.194.128\/25", + "version":54064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.195.0", + "prefixLen":25, + "network":"193.205.195.0\/25", + "version":54063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.195.0", + "prefixLen":25, + "network":"193.205.195.0\/25", + "version":54063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.195.128", + "prefixLen":25, + "network":"193.205.195.128\/25", + "version":54062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.195.128", + "prefixLen":25, + "network":"193.205.195.128\/25", + "version":54062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.208.0", + "prefixLen":25, + "network":"193.205.208.0\/25", + "version":54061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.208.0", + "prefixLen":25, + "network":"193.205.208.0\/25", + "version":54061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.208.128", + "prefixLen":25, + "network":"193.205.208.128\/25", + "version":54060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.208.128", + "prefixLen":25, + "network":"193.205.208.128\/25", + "version":54060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.209.0", + "prefixLen":25, + "network":"193.205.209.0\/25", + "version":54059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.209.0", + "prefixLen":25, + "network":"193.205.209.0\/25", + "version":54059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.209.128", + "prefixLen":25, + "network":"193.205.209.128\/25", + "version":54058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.209.128", + "prefixLen":25, + "network":"193.205.209.128\/25", + "version":54058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.210.0", + "prefixLen":25, + "network":"193.205.210.0\/25", + "version":54057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.210.0", + "prefixLen":25, + "network":"193.205.210.0\/25", + "version":54057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.210.128", + "prefixLen":25, + "network":"193.205.210.128\/25", + "version":54056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.210.128", + "prefixLen":25, + "network":"193.205.210.128\/25", + "version":54056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.211.0", + "prefixLen":25, + "network":"193.205.211.0\/25", + "version":54055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.211.0", + "prefixLen":25, + "network":"193.205.211.0\/25", + "version":54055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.211.128", + "prefixLen":25, + "network":"193.205.211.128\/25", + "version":54054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.211.128", + "prefixLen":25, + "network":"193.205.211.128\/25", + "version":54054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.224.0", + "prefixLen":25, + "network":"193.205.224.0\/25", + "version":54053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.224.0", + "prefixLen":25, + "network":"193.205.224.0\/25", + "version":54053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.224.128", + "prefixLen":25, + "network":"193.205.224.128\/25", + "version":54052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.224.128", + "prefixLen":25, + "network":"193.205.224.128\/25", + "version":54052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.225.0", + "prefixLen":25, + "network":"193.205.225.0\/25", + "version":54051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.225.0", + "prefixLen":25, + "network":"193.205.225.0\/25", + "version":54051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.225.128", + "prefixLen":25, + "network":"193.205.225.128\/25", + "version":54050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.225.128", + "prefixLen":25, + "network":"193.205.225.128\/25", + "version":54050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.226.0", + "prefixLen":25, + "network":"193.205.226.0\/25", + "version":54049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.226.0", + "prefixLen":25, + "network":"193.205.226.0\/25", + "version":54049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.226.128", + "prefixLen":25, + "network":"193.205.226.128\/25", + "version":54048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.226.128", + "prefixLen":25, + "network":"193.205.226.128\/25", + "version":54048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.227.0", + "prefixLen":25, + "network":"193.205.227.0\/25", + "version":54047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.227.0", + "prefixLen":25, + "network":"193.205.227.0\/25", + "version":54047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.227.128", + "prefixLen":25, + "network":"193.205.227.128\/25", + "version":54046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.227.128", + "prefixLen":25, + "network":"193.205.227.128\/25", + "version":54046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.240.0", + "prefixLen":25, + "network":"193.205.240.0\/25", + "version":54045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.240.0", + "prefixLen":25, + "network":"193.205.240.0\/25", + "version":54045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.240.128", + "prefixLen":25, + "network":"193.205.240.128\/25", + "version":54044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.240.128", + "prefixLen":25, + "network":"193.205.240.128\/25", + "version":54044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.241.0", + "prefixLen":25, + "network":"193.205.241.0\/25", + "version":54043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.241.0", + "prefixLen":25, + "network":"193.205.241.0\/25", + "version":54043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.241.128", + "prefixLen":25, + "network":"193.205.241.128\/25", + "version":54042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.241.128", + "prefixLen":25, + "network":"193.205.241.128\/25", + "version":54042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.242.0", + "prefixLen":25, + "network":"193.205.242.0\/25", + "version":54041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.242.0", + "prefixLen":25, + "network":"193.205.242.0\/25", + "version":54041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.242.128", + "prefixLen":25, + "network":"193.205.242.128\/25", + "version":54040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.242.128", + "prefixLen":25, + "network":"193.205.242.128\/25", + "version":54040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.243.0", + "prefixLen":25, + "network":"193.205.243.0\/25", + "version":54039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.243.0", + "prefixLen":25, + "network":"193.205.243.0\/25", + "version":54039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.205.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.205.243.128", + "prefixLen":25, + "network":"193.205.243.128\/25", + "version":54038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.205.243.128", + "prefixLen":25, + "network":"193.205.243.128\/25", + "version":54038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64893 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.0.0", + "prefixLen":25, + "network":"193.206.0.0\/25", + "version":54165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.0.0", + "prefixLen":25, + "network":"193.206.0.0\/25", + "version":54165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.0.128", + "prefixLen":25, + "network":"193.206.0.128\/25", + "version":54292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.0.128", + "prefixLen":25, + "network":"193.206.0.128\/25", + "version":54292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.1.0", + "prefixLen":25, + "network":"193.206.1.0\/25", + "version":54291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.1.0", + "prefixLen":25, + "network":"193.206.1.0\/25", + "version":54291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.1.128", + "prefixLen":25, + "network":"193.206.1.128\/25", + "version":54290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.1.128", + "prefixLen":25, + "network":"193.206.1.128\/25", + "version":54290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.2.0", + "prefixLen":25, + "network":"193.206.2.0\/25", + "version":54289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.2.0", + "prefixLen":25, + "network":"193.206.2.0\/25", + "version":54289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.2.128", + "prefixLen":25, + "network":"193.206.2.128\/25", + "version":54288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.2.128", + "prefixLen":25, + "network":"193.206.2.128\/25", + "version":54288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.3.0", + "prefixLen":25, + "network":"193.206.3.0\/25", + "version":54287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.3.0", + "prefixLen":25, + "network":"193.206.3.0\/25", + "version":54287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.3.128", + "prefixLen":25, + "network":"193.206.3.128\/25", + "version":54286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.3.128", + "prefixLen":25, + "network":"193.206.3.128\/25", + "version":54286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.16.0", + "prefixLen":25, + "network":"193.206.16.0\/25", + "version":54285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.16.0", + "prefixLen":25, + "network":"193.206.16.0\/25", + "version":54285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.16.128", + "prefixLen":25, + "network":"193.206.16.128\/25", + "version":54284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.16.128", + "prefixLen":25, + "network":"193.206.16.128\/25", + "version":54284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.17.0", + "prefixLen":25, + "network":"193.206.17.0\/25", + "version":54283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.17.0", + "prefixLen":25, + "network":"193.206.17.0\/25", + "version":54283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.17.128", + "prefixLen":25, + "network":"193.206.17.128\/25", + "version":54282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.17.128", + "prefixLen":25, + "network":"193.206.17.128\/25", + "version":54282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.18.0", + "prefixLen":25, + "network":"193.206.18.0\/25", + "version":54281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.18.0", + "prefixLen":25, + "network":"193.206.18.0\/25", + "version":54281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.18.128", + "prefixLen":25, + "network":"193.206.18.128\/25", + "version":54280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.18.128", + "prefixLen":25, + "network":"193.206.18.128\/25", + "version":54280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.19.0", + "prefixLen":25, + "network":"193.206.19.0\/25", + "version":54279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.19.0", + "prefixLen":25, + "network":"193.206.19.0\/25", + "version":54279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.19.128", + "prefixLen":25, + "network":"193.206.19.128\/25", + "version":54278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.19.128", + "prefixLen":25, + "network":"193.206.19.128\/25", + "version":54278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.32.0", + "prefixLen":25, + "network":"193.206.32.0\/25", + "version":54277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.32.0", + "prefixLen":25, + "network":"193.206.32.0\/25", + "version":54277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.32.128", + "prefixLen":25, + "network":"193.206.32.128\/25", + "version":54276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.32.128", + "prefixLen":25, + "network":"193.206.32.128\/25", + "version":54276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.33.0", + "prefixLen":25, + "network":"193.206.33.0\/25", + "version":54275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.33.0", + "prefixLen":25, + "network":"193.206.33.0\/25", + "version":54275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.33.128", + "prefixLen":25, + "network":"193.206.33.128\/25", + "version":54274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.33.128", + "prefixLen":25, + "network":"193.206.33.128\/25", + "version":54274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.34.0", + "prefixLen":25, + "network":"193.206.34.0\/25", + "version":54273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.34.0", + "prefixLen":25, + "network":"193.206.34.0\/25", + "version":54273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.34.128", + "prefixLen":25, + "network":"193.206.34.128\/25", + "version":54272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.34.128", + "prefixLen":25, + "network":"193.206.34.128\/25", + "version":54272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.35.0", + "prefixLen":25, + "network":"193.206.35.0\/25", + "version":54271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.35.0", + "prefixLen":25, + "network":"193.206.35.0\/25", + "version":54271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.35.128", + "prefixLen":25, + "network":"193.206.35.128\/25", + "version":54270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.35.128", + "prefixLen":25, + "network":"193.206.35.128\/25", + "version":54270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.48.0", + "prefixLen":25, + "network":"193.206.48.0\/25", + "version":54269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.48.0", + "prefixLen":25, + "network":"193.206.48.0\/25", + "version":54269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.48.128", + "prefixLen":25, + "network":"193.206.48.128\/25", + "version":54268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.48.128", + "prefixLen":25, + "network":"193.206.48.128\/25", + "version":54268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.49.0", + "prefixLen":25, + "network":"193.206.49.0\/25", + "version":54267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.49.0", + "prefixLen":25, + "network":"193.206.49.0\/25", + "version":54267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.49.128", + "prefixLen":25, + "network":"193.206.49.128\/25", + "version":54266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.49.128", + "prefixLen":25, + "network":"193.206.49.128\/25", + "version":54266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.50.0", + "prefixLen":25, + "network":"193.206.50.0\/25", + "version":54265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.50.0", + "prefixLen":25, + "network":"193.206.50.0\/25", + "version":54265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.50.128", + "prefixLen":25, + "network":"193.206.50.128\/25", + "version":54264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.50.128", + "prefixLen":25, + "network":"193.206.50.128\/25", + "version":54264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.51.0", + "prefixLen":25, + "network":"193.206.51.0\/25", + "version":54263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.51.0", + "prefixLen":25, + "network":"193.206.51.0\/25", + "version":54263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.51.128", + "prefixLen":25, + "network":"193.206.51.128\/25", + "version":54262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.51.128", + "prefixLen":25, + "network":"193.206.51.128\/25", + "version":54262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.64.0", + "prefixLen":25, + "network":"193.206.64.0\/25", + "version":54261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.64.0", + "prefixLen":25, + "network":"193.206.64.0\/25", + "version":54261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.64.128", + "prefixLen":25, + "network":"193.206.64.128\/25", + "version":54260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.64.128", + "prefixLen":25, + "network":"193.206.64.128\/25", + "version":54260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.65.0", + "prefixLen":25, + "network":"193.206.65.0\/25", + "version":54259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.65.0", + "prefixLen":25, + "network":"193.206.65.0\/25", + "version":54259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.65.128", + "prefixLen":25, + "network":"193.206.65.128\/25", + "version":54258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.65.128", + "prefixLen":25, + "network":"193.206.65.128\/25", + "version":54258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.66.0", + "prefixLen":25, + "network":"193.206.66.0\/25", + "version":54257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.66.0", + "prefixLen":25, + "network":"193.206.66.0\/25", + "version":54257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.66.128", + "prefixLen":25, + "network":"193.206.66.128\/25", + "version":54256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.66.128", + "prefixLen":25, + "network":"193.206.66.128\/25", + "version":54256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.67.0", + "prefixLen":25, + "network":"193.206.67.0\/25", + "version":54255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.67.0", + "prefixLen":25, + "network":"193.206.67.0\/25", + "version":54255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.67.128", + "prefixLen":25, + "network":"193.206.67.128\/25", + "version":54254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.67.128", + "prefixLen":25, + "network":"193.206.67.128\/25", + "version":54254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.80.0", + "prefixLen":25, + "network":"193.206.80.0\/25", + "version":54253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.80.0", + "prefixLen":25, + "network":"193.206.80.0\/25", + "version":54253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.80.128", + "prefixLen":25, + "network":"193.206.80.128\/25", + "version":54252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.80.128", + "prefixLen":25, + "network":"193.206.80.128\/25", + "version":54252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.81.0", + "prefixLen":25, + "network":"193.206.81.0\/25", + "version":54251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.81.0", + "prefixLen":25, + "network":"193.206.81.0\/25", + "version":54251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.81.128", + "prefixLen":25, + "network":"193.206.81.128\/25", + "version":54250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.81.128", + "prefixLen":25, + "network":"193.206.81.128\/25", + "version":54250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.82.0", + "prefixLen":25, + "network":"193.206.82.0\/25", + "version":54249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.82.0", + "prefixLen":25, + "network":"193.206.82.0\/25", + "version":54249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.82.128", + "prefixLen":25, + "network":"193.206.82.128\/25", + "version":54248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.82.128", + "prefixLen":25, + "network":"193.206.82.128\/25", + "version":54248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.83.0", + "prefixLen":25, + "network":"193.206.83.0\/25", + "version":54247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.83.0", + "prefixLen":25, + "network":"193.206.83.0\/25", + "version":54247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.83.128", + "prefixLen":25, + "network":"193.206.83.128\/25", + "version":54246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.83.128", + "prefixLen":25, + "network":"193.206.83.128\/25", + "version":54246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.96.0", + "prefixLen":25, + "network":"193.206.96.0\/25", + "version":54245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.96.0", + "prefixLen":25, + "network":"193.206.96.0\/25", + "version":54245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.96.128", + "prefixLen":25, + "network":"193.206.96.128\/25", + "version":54244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.96.128", + "prefixLen":25, + "network":"193.206.96.128\/25", + "version":54244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.97.0", + "prefixLen":25, + "network":"193.206.97.0\/25", + "version":54243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.97.0", + "prefixLen":25, + "network":"193.206.97.0\/25", + "version":54243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.97.128", + "prefixLen":25, + "network":"193.206.97.128\/25", + "version":54242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.97.128", + "prefixLen":25, + "network":"193.206.97.128\/25", + "version":54242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.98.0", + "prefixLen":25, + "network":"193.206.98.0\/25", + "version":54241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.98.0", + "prefixLen":25, + "network":"193.206.98.0\/25", + "version":54241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.98.128", + "prefixLen":25, + "network":"193.206.98.128\/25", + "version":54240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.98.128", + "prefixLen":25, + "network":"193.206.98.128\/25", + "version":54240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.99.0", + "prefixLen":25, + "network":"193.206.99.0\/25", + "version":54239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.99.0", + "prefixLen":25, + "network":"193.206.99.0\/25", + "version":54239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.99.128", + "prefixLen":25, + "network":"193.206.99.128\/25", + "version":54238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.99.128", + "prefixLen":25, + "network":"193.206.99.128\/25", + "version":54238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.112.0", + "prefixLen":25, + "network":"193.206.112.0\/25", + "version":54237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.112.0", + "prefixLen":25, + "network":"193.206.112.0\/25", + "version":54237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.112.128", + "prefixLen":25, + "network":"193.206.112.128\/25", + "version":54236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.112.128", + "prefixLen":25, + "network":"193.206.112.128\/25", + "version":54236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.113.0", + "prefixLen":25, + "network":"193.206.113.0\/25", + "version":54235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.113.0", + "prefixLen":25, + "network":"193.206.113.0\/25", + "version":54235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.113.128", + "prefixLen":25, + "network":"193.206.113.128\/25", + "version":54234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.113.128", + "prefixLen":25, + "network":"193.206.113.128\/25", + "version":54234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.114.0", + "prefixLen":25, + "network":"193.206.114.0\/25", + "version":54233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.114.0", + "prefixLen":25, + "network":"193.206.114.0\/25", + "version":54233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.114.128", + "prefixLen":25, + "network":"193.206.114.128\/25", + "version":54232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.114.128", + "prefixLen":25, + "network":"193.206.114.128\/25", + "version":54232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.115.0", + "prefixLen":25, + "network":"193.206.115.0\/25", + "version":54231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.115.0", + "prefixLen":25, + "network":"193.206.115.0\/25", + "version":54231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.115.128", + "prefixLen":25, + "network":"193.206.115.128\/25", + "version":54230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.115.128", + "prefixLen":25, + "network":"193.206.115.128\/25", + "version":54230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.128.0", + "prefixLen":25, + "network":"193.206.128.0\/25", + "version":54229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.128.0", + "prefixLen":25, + "network":"193.206.128.0\/25", + "version":54229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.128.128", + "prefixLen":25, + "network":"193.206.128.128\/25", + "version":54228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.128.128", + "prefixLen":25, + "network":"193.206.128.128\/25", + "version":54228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.129.0", + "prefixLen":25, + "network":"193.206.129.0\/25", + "version":54227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.129.0", + "prefixLen":25, + "network":"193.206.129.0\/25", + "version":54227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.129.128", + "prefixLen":25, + "network":"193.206.129.128\/25", + "version":54226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.129.128", + "prefixLen":25, + "network":"193.206.129.128\/25", + "version":54226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.130.0", + "prefixLen":25, + "network":"193.206.130.0\/25", + "version":54225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.130.0", + "prefixLen":25, + "network":"193.206.130.0\/25", + "version":54225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.130.128", + "prefixLen":25, + "network":"193.206.130.128\/25", + "version":54224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.130.128", + "prefixLen":25, + "network":"193.206.130.128\/25", + "version":54224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.131.0", + "prefixLen":25, + "network":"193.206.131.0\/25", + "version":54223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.131.0", + "prefixLen":25, + "network":"193.206.131.0\/25", + "version":54223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.131.128", + "prefixLen":25, + "network":"193.206.131.128\/25", + "version":54222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.131.128", + "prefixLen":25, + "network":"193.206.131.128\/25", + "version":54222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.144.0", + "prefixLen":25, + "network":"193.206.144.0\/25", + "version":54221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.144.0", + "prefixLen":25, + "network":"193.206.144.0\/25", + "version":54221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.144.128", + "prefixLen":25, + "network":"193.206.144.128\/25", + "version":54220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.144.128", + "prefixLen":25, + "network":"193.206.144.128\/25", + "version":54220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.145.0", + "prefixLen":25, + "network":"193.206.145.0\/25", + "version":54219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.145.0", + "prefixLen":25, + "network":"193.206.145.0\/25", + "version":54219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.145.128", + "prefixLen":25, + "network":"193.206.145.128\/25", + "version":54218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.145.128", + "prefixLen":25, + "network":"193.206.145.128\/25", + "version":54218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.146.0", + "prefixLen":25, + "network":"193.206.146.0\/25", + "version":54217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.146.0", + "prefixLen":25, + "network":"193.206.146.0\/25", + "version":54217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.146.128", + "prefixLen":25, + "network":"193.206.146.128\/25", + "version":54216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.146.128", + "prefixLen":25, + "network":"193.206.146.128\/25", + "version":54216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.147.0", + "prefixLen":25, + "network":"193.206.147.0\/25", + "version":54215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.147.0", + "prefixLen":25, + "network":"193.206.147.0\/25", + "version":54215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.147.128", + "prefixLen":25, + "network":"193.206.147.128\/25", + "version":54214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.147.128", + "prefixLen":25, + "network":"193.206.147.128\/25", + "version":54214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.160.0", + "prefixLen":25, + "network":"193.206.160.0\/25", + "version":54213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.160.0", + "prefixLen":25, + "network":"193.206.160.0\/25", + "version":54213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.160.128", + "prefixLen":25, + "network":"193.206.160.128\/25", + "version":54212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.160.128", + "prefixLen":25, + "network":"193.206.160.128\/25", + "version":54212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.161.0", + "prefixLen":25, + "network":"193.206.161.0\/25", + "version":54211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.161.0", + "prefixLen":25, + "network":"193.206.161.0\/25", + "version":54211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.161.128", + "prefixLen":25, + "network":"193.206.161.128\/25", + "version":54210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.161.128", + "prefixLen":25, + "network":"193.206.161.128\/25", + "version":54210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.162.0", + "prefixLen":25, + "network":"193.206.162.0\/25", + "version":54209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.162.0", + "prefixLen":25, + "network":"193.206.162.0\/25", + "version":54209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.162.128", + "prefixLen":25, + "network":"193.206.162.128\/25", + "version":54208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.162.128", + "prefixLen":25, + "network":"193.206.162.128\/25", + "version":54208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.163.0", + "prefixLen":25, + "network":"193.206.163.0\/25", + "version":54207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.163.0", + "prefixLen":25, + "network":"193.206.163.0\/25", + "version":54207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.163.128", + "prefixLen":25, + "network":"193.206.163.128\/25", + "version":54206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.163.128", + "prefixLen":25, + "network":"193.206.163.128\/25", + "version":54206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.176.0", + "prefixLen":25, + "network":"193.206.176.0\/25", + "version":54205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.176.0", + "prefixLen":25, + "network":"193.206.176.0\/25", + "version":54205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.176.128", + "prefixLen":25, + "network":"193.206.176.128\/25", + "version":54204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.176.128", + "prefixLen":25, + "network":"193.206.176.128\/25", + "version":54204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.177.0", + "prefixLen":25, + "network":"193.206.177.0\/25", + "version":54203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.177.0", + "prefixLen":25, + "network":"193.206.177.0\/25", + "version":54203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.177.128", + "prefixLen":25, + "network":"193.206.177.128\/25", + "version":54202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.177.128", + "prefixLen":25, + "network":"193.206.177.128\/25", + "version":54202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.178.0", + "prefixLen":25, + "network":"193.206.178.0\/25", + "version":54201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.178.0", + "prefixLen":25, + "network":"193.206.178.0\/25", + "version":54201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.178.128", + "prefixLen":25, + "network":"193.206.178.128\/25", + "version":54200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.178.128", + "prefixLen":25, + "network":"193.206.178.128\/25", + "version":54200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.179.0", + "prefixLen":25, + "network":"193.206.179.0\/25", + "version":54199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.179.0", + "prefixLen":25, + "network":"193.206.179.0\/25", + "version":54199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.179.128", + "prefixLen":25, + "network":"193.206.179.128\/25", + "version":54198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.179.128", + "prefixLen":25, + "network":"193.206.179.128\/25", + "version":54198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.192.0", + "prefixLen":25, + "network":"193.206.192.0\/25", + "version":54197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.192.0", + "prefixLen":25, + "network":"193.206.192.0\/25", + "version":54197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.192.128", + "prefixLen":25, + "network":"193.206.192.128\/25", + "version":54196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.192.128", + "prefixLen":25, + "network":"193.206.192.128\/25", + "version":54196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.193.0", + "prefixLen":25, + "network":"193.206.193.0\/25", + "version":54195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.193.0", + "prefixLen":25, + "network":"193.206.193.0\/25", + "version":54195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.193.128", + "prefixLen":25, + "network":"193.206.193.128\/25", + "version":54194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.193.128", + "prefixLen":25, + "network":"193.206.193.128\/25", + "version":54194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.194.0", + "prefixLen":25, + "network":"193.206.194.0\/25", + "version":54193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.194.0", + "prefixLen":25, + "network":"193.206.194.0\/25", + "version":54193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.194.128", + "prefixLen":25, + "network":"193.206.194.128\/25", + "version":54192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.194.128", + "prefixLen":25, + "network":"193.206.194.128\/25", + "version":54192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.195.0", + "prefixLen":25, + "network":"193.206.195.0\/25", + "version":54191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.195.0", + "prefixLen":25, + "network":"193.206.195.0\/25", + "version":54191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.195.128", + "prefixLen":25, + "network":"193.206.195.128\/25", + "version":54190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.195.128", + "prefixLen":25, + "network":"193.206.195.128\/25", + "version":54190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.208.0", + "prefixLen":25, + "network":"193.206.208.0\/25", + "version":54189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.208.0", + "prefixLen":25, + "network":"193.206.208.0\/25", + "version":54189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.208.128", + "prefixLen":25, + "network":"193.206.208.128\/25", + "version":54188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.208.128", + "prefixLen":25, + "network":"193.206.208.128\/25", + "version":54188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.209.0", + "prefixLen":25, + "network":"193.206.209.0\/25", + "version":54187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.209.0", + "prefixLen":25, + "network":"193.206.209.0\/25", + "version":54187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.209.128", + "prefixLen":25, + "network":"193.206.209.128\/25", + "version":54186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.209.128", + "prefixLen":25, + "network":"193.206.209.128\/25", + "version":54186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.210.0", + "prefixLen":25, + "network":"193.206.210.0\/25", + "version":54185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.210.0", + "prefixLen":25, + "network":"193.206.210.0\/25", + "version":54185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.210.128", + "prefixLen":25, + "network":"193.206.210.128\/25", + "version":54184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.210.128", + "prefixLen":25, + "network":"193.206.210.128\/25", + "version":54184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.211.0", + "prefixLen":25, + "network":"193.206.211.0\/25", + "version":54183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.211.0", + "prefixLen":25, + "network":"193.206.211.0\/25", + "version":54183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.211.128", + "prefixLen":25, + "network":"193.206.211.128\/25", + "version":54182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.211.128", + "prefixLen":25, + "network":"193.206.211.128\/25", + "version":54182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.224.0", + "prefixLen":25, + "network":"193.206.224.0\/25", + "version":54181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.224.0", + "prefixLen":25, + "network":"193.206.224.0\/25", + "version":54181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.224.128", + "prefixLen":25, + "network":"193.206.224.128\/25", + "version":54180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.224.128", + "prefixLen":25, + "network":"193.206.224.128\/25", + "version":54180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.225.0", + "prefixLen":25, + "network":"193.206.225.0\/25", + "version":54179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.225.0", + "prefixLen":25, + "network":"193.206.225.0\/25", + "version":54179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.225.128", + "prefixLen":25, + "network":"193.206.225.128\/25", + "version":54178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.225.128", + "prefixLen":25, + "network":"193.206.225.128\/25", + "version":54178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.226.0", + "prefixLen":25, + "network":"193.206.226.0\/25", + "version":54177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.226.0", + "prefixLen":25, + "network":"193.206.226.0\/25", + "version":54177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.226.128", + "prefixLen":25, + "network":"193.206.226.128\/25", + "version":54176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.226.128", + "prefixLen":25, + "network":"193.206.226.128\/25", + "version":54176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.227.0", + "prefixLen":25, + "network":"193.206.227.0\/25", + "version":54175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.227.0", + "prefixLen":25, + "network":"193.206.227.0\/25", + "version":54175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.227.128", + "prefixLen":25, + "network":"193.206.227.128\/25", + "version":54174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.227.128", + "prefixLen":25, + "network":"193.206.227.128\/25", + "version":54174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.240.0", + "prefixLen":25, + "network":"193.206.240.0\/25", + "version":54173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.240.0", + "prefixLen":25, + "network":"193.206.240.0\/25", + "version":54173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.240.128", + "prefixLen":25, + "network":"193.206.240.128\/25", + "version":54172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.240.128", + "prefixLen":25, + "network":"193.206.240.128\/25", + "version":54172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.241.0", + "prefixLen":25, + "network":"193.206.241.0\/25", + "version":54171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.241.0", + "prefixLen":25, + "network":"193.206.241.0\/25", + "version":54171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.241.128", + "prefixLen":25, + "network":"193.206.241.128\/25", + "version":54170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.241.128", + "prefixLen":25, + "network":"193.206.241.128\/25", + "version":54170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.242.0", + "prefixLen":25, + "network":"193.206.242.0\/25", + "version":54169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.242.0", + "prefixLen":25, + "network":"193.206.242.0\/25", + "version":54169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.242.128", + "prefixLen":25, + "network":"193.206.242.128\/25", + "version":54168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.242.128", + "prefixLen":25, + "network":"193.206.242.128\/25", + "version":54168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.243.0", + "prefixLen":25, + "network":"193.206.243.0\/25", + "version":54167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.243.0", + "prefixLen":25, + "network":"193.206.243.0\/25", + "version":54167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.206.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.206.243.128", + "prefixLen":25, + "network":"193.206.243.128\/25", + "version":54166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.206.243.128", + "prefixLen":25, + "network":"193.206.243.128\/25", + "version":54166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64894 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.0.0", + "prefixLen":25, + "network":"193.207.0.0\/25", + "version":54293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.0.0", + "prefixLen":25, + "network":"193.207.0.0\/25", + "version":54293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.0.128", + "prefixLen":25, + "network":"193.207.0.128\/25", + "version":54420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.0.128", + "prefixLen":25, + "network":"193.207.0.128\/25", + "version":54420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.1.0", + "prefixLen":25, + "network":"193.207.1.0\/25", + "version":54419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.1.0", + "prefixLen":25, + "network":"193.207.1.0\/25", + "version":54419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.1.128", + "prefixLen":25, + "network":"193.207.1.128\/25", + "version":54418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.1.128", + "prefixLen":25, + "network":"193.207.1.128\/25", + "version":54418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.2.0", + "prefixLen":25, + "network":"193.207.2.0\/25", + "version":54417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.2.0", + "prefixLen":25, + "network":"193.207.2.0\/25", + "version":54417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.2.128", + "prefixLen":25, + "network":"193.207.2.128\/25", + "version":54416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.2.128", + "prefixLen":25, + "network":"193.207.2.128\/25", + "version":54416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.3.0", + "prefixLen":25, + "network":"193.207.3.0\/25", + "version":54415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.3.0", + "prefixLen":25, + "network":"193.207.3.0\/25", + "version":54415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.3.128", + "prefixLen":25, + "network":"193.207.3.128\/25", + "version":54414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.3.128", + "prefixLen":25, + "network":"193.207.3.128\/25", + "version":54414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.16.0", + "prefixLen":25, + "network":"193.207.16.0\/25", + "version":54413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.16.0", + "prefixLen":25, + "network":"193.207.16.0\/25", + "version":54413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.16.128", + "prefixLen":25, + "network":"193.207.16.128\/25", + "version":54412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.16.128", + "prefixLen":25, + "network":"193.207.16.128\/25", + "version":54412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.17.0", + "prefixLen":25, + "network":"193.207.17.0\/25", + "version":54411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.17.0", + "prefixLen":25, + "network":"193.207.17.0\/25", + "version":54411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.17.128", + "prefixLen":25, + "network":"193.207.17.128\/25", + "version":54410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.17.128", + "prefixLen":25, + "network":"193.207.17.128\/25", + "version":54410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.18.0", + "prefixLen":25, + "network":"193.207.18.0\/25", + "version":54409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.18.0", + "prefixLen":25, + "network":"193.207.18.0\/25", + "version":54409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.18.128", + "prefixLen":25, + "network":"193.207.18.128\/25", + "version":54408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.18.128", + "prefixLen":25, + "network":"193.207.18.128\/25", + "version":54408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.19.0", + "prefixLen":25, + "network":"193.207.19.0\/25", + "version":54407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.19.0", + "prefixLen":25, + "network":"193.207.19.0\/25", + "version":54407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.19.128", + "prefixLen":25, + "network":"193.207.19.128\/25", + "version":54406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.19.128", + "prefixLen":25, + "network":"193.207.19.128\/25", + "version":54406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.32.0", + "prefixLen":25, + "network":"193.207.32.0\/25", + "version":54405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.32.0", + "prefixLen":25, + "network":"193.207.32.0\/25", + "version":54405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.32.128", + "prefixLen":25, + "network":"193.207.32.128\/25", + "version":54404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.32.128", + "prefixLen":25, + "network":"193.207.32.128\/25", + "version":54404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.33.0", + "prefixLen":25, + "network":"193.207.33.0\/25", + "version":54403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.33.0", + "prefixLen":25, + "network":"193.207.33.0\/25", + "version":54403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.33.128", + "prefixLen":25, + "network":"193.207.33.128\/25", + "version":54402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.33.128", + "prefixLen":25, + "network":"193.207.33.128\/25", + "version":54402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.34.0", + "prefixLen":25, + "network":"193.207.34.0\/25", + "version":54401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.34.0", + "prefixLen":25, + "network":"193.207.34.0\/25", + "version":54401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.34.128", + "prefixLen":25, + "network":"193.207.34.128\/25", + "version":54400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.34.128", + "prefixLen":25, + "network":"193.207.34.128\/25", + "version":54400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.35.0", + "prefixLen":25, + "network":"193.207.35.0\/25", + "version":54399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.35.0", + "prefixLen":25, + "network":"193.207.35.0\/25", + "version":54399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.35.128", + "prefixLen":25, + "network":"193.207.35.128\/25", + "version":54398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.35.128", + "prefixLen":25, + "network":"193.207.35.128\/25", + "version":54398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.48.0", + "prefixLen":25, + "network":"193.207.48.0\/25", + "version":54397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.48.0", + "prefixLen":25, + "network":"193.207.48.0\/25", + "version":54397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.48.128", + "prefixLen":25, + "network":"193.207.48.128\/25", + "version":54396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.48.128", + "prefixLen":25, + "network":"193.207.48.128\/25", + "version":54396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.49.0", + "prefixLen":25, + "network":"193.207.49.0\/25", + "version":54395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.49.0", + "prefixLen":25, + "network":"193.207.49.0\/25", + "version":54395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.49.128", + "prefixLen":25, + "network":"193.207.49.128\/25", + "version":54394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.49.128", + "prefixLen":25, + "network":"193.207.49.128\/25", + "version":54394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.50.0", + "prefixLen":25, + "network":"193.207.50.0\/25", + "version":54393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.50.0", + "prefixLen":25, + "network":"193.207.50.0\/25", + "version":54393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.50.128", + "prefixLen":25, + "network":"193.207.50.128\/25", + "version":54392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.50.128", + "prefixLen":25, + "network":"193.207.50.128\/25", + "version":54392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.51.0", + "prefixLen":25, + "network":"193.207.51.0\/25", + "version":54391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.51.0", + "prefixLen":25, + "network":"193.207.51.0\/25", + "version":54391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.51.128", + "prefixLen":25, + "network":"193.207.51.128\/25", + "version":54390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.51.128", + "prefixLen":25, + "network":"193.207.51.128\/25", + "version":54390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.64.0", + "prefixLen":25, + "network":"193.207.64.0\/25", + "version":54389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.64.0", + "prefixLen":25, + "network":"193.207.64.0\/25", + "version":54389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.64.128", + "prefixLen":25, + "network":"193.207.64.128\/25", + "version":54388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.64.128", + "prefixLen":25, + "network":"193.207.64.128\/25", + "version":54388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.65.0", + "prefixLen":25, + "network":"193.207.65.0\/25", + "version":54387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.65.0", + "prefixLen":25, + "network":"193.207.65.0\/25", + "version":54387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.65.128", + "prefixLen":25, + "network":"193.207.65.128\/25", + "version":54386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.65.128", + "prefixLen":25, + "network":"193.207.65.128\/25", + "version":54386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.66.0", + "prefixLen":25, + "network":"193.207.66.0\/25", + "version":54385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.66.0", + "prefixLen":25, + "network":"193.207.66.0\/25", + "version":54385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.66.128", + "prefixLen":25, + "network":"193.207.66.128\/25", + "version":54384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.66.128", + "prefixLen":25, + "network":"193.207.66.128\/25", + "version":54384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.67.0", + "prefixLen":25, + "network":"193.207.67.0\/25", + "version":54383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.67.0", + "prefixLen":25, + "network":"193.207.67.0\/25", + "version":54383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.67.128", + "prefixLen":25, + "network":"193.207.67.128\/25", + "version":54382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.67.128", + "prefixLen":25, + "network":"193.207.67.128\/25", + "version":54382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.80.0", + "prefixLen":25, + "network":"193.207.80.0\/25", + "version":54381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.80.0", + "prefixLen":25, + "network":"193.207.80.0\/25", + "version":54381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.80.128", + "prefixLen":25, + "network":"193.207.80.128\/25", + "version":54380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.80.128", + "prefixLen":25, + "network":"193.207.80.128\/25", + "version":54380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.81.0", + "prefixLen":25, + "network":"193.207.81.0\/25", + "version":54379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.81.0", + "prefixLen":25, + "network":"193.207.81.0\/25", + "version":54379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.81.128", + "prefixLen":25, + "network":"193.207.81.128\/25", + "version":54378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.81.128", + "prefixLen":25, + "network":"193.207.81.128\/25", + "version":54378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.82.0", + "prefixLen":25, + "network":"193.207.82.0\/25", + "version":54377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.82.0", + "prefixLen":25, + "network":"193.207.82.0\/25", + "version":54377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.82.128", + "prefixLen":25, + "network":"193.207.82.128\/25", + "version":54376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.82.128", + "prefixLen":25, + "network":"193.207.82.128\/25", + "version":54376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.83.0", + "prefixLen":25, + "network":"193.207.83.0\/25", + "version":54375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.83.0", + "prefixLen":25, + "network":"193.207.83.0\/25", + "version":54375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.83.128", + "prefixLen":25, + "network":"193.207.83.128\/25", + "version":54374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.83.128", + "prefixLen":25, + "network":"193.207.83.128\/25", + "version":54374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.96.0", + "prefixLen":25, + "network":"193.207.96.0\/25", + "version":54373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.96.0", + "prefixLen":25, + "network":"193.207.96.0\/25", + "version":54373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.96.128", + "prefixLen":25, + "network":"193.207.96.128\/25", + "version":54372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.96.128", + "prefixLen":25, + "network":"193.207.96.128\/25", + "version":54372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.97.0", + "prefixLen":25, + "network":"193.207.97.0\/25", + "version":54371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.97.0", + "prefixLen":25, + "network":"193.207.97.0\/25", + "version":54371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.97.128", + "prefixLen":25, + "network":"193.207.97.128\/25", + "version":54370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.97.128", + "prefixLen":25, + "network":"193.207.97.128\/25", + "version":54370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.98.0", + "prefixLen":25, + "network":"193.207.98.0\/25", + "version":54369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.98.0", + "prefixLen":25, + "network":"193.207.98.0\/25", + "version":54369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.98.128", + "prefixLen":25, + "network":"193.207.98.128\/25", + "version":54368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.98.128", + "prefixLen":25, + "network":"193.207.98.128\/25", + "version":54368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.99.0", + "prefixLen":25, + "network":"193.207.99.0\/25", + "version":54367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.99.0", + "prefixLen":25, + "network":"193.207.99.0\/25", + "version":54367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.99.128", + "prefixLen":25, + "network":"193.207.99.128\/25", + "version":54366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.99.128", + "prefixLen":25, + "network":"193.207.99.128\/25", + "version":54366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.112.0", + "prefixLen":25, + "network":"193.207.112.0\/25", + "version":54365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.112.0", + "prefixLen":25, + "network":"193.207.112.0\/25", + "version":54365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.112.128", + "prefixLen":25, + "network":"193.207.112.128\/25", + "version":54364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.112.128", + "prefixLen":25, + "network":"193.207.112.128\/25", + "version":54364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.113.0", + "prefixLen":25, + "network":"193.207.113.0\/25", + "version":54363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.113.0", + "prefixLen":25, + "network":"193.207.113.0\/25", + "version":54363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.113.128", + "prefixLen":25, + "network":"193.207.113.128\/25", + "version":54362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.113.128", + "prefixLen":25, + "network":"193.207.113.128\/25", + "version":54362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.114.0", + "prefixLen":25, + "network":"193.207.114.0\/25", + "version":54361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.114.0", + "prefixLen":25, + "network":"193.207.114.0\/25", + "version":54361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.114.128", + "prefixLen":25, + "network":"193.207.114.128\/25", + "version":54360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.114.128", + "prefixLen":25, + "network":"193.207.114.128\/25", + "version":54360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.115.0", + "prefixLen":25, + "network":"193.207.115.0\/25", + "version":54359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.115.0", + "prefixLen":25, + "network":"193.207.115.0\/25", + "version":54359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.115.128", + "prefixLen":25, + "network":"193.207.115.128\/25", + "version":54358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.115.128", + "prefixLen":25, + "network":"193.207.115.128\/25", + "version":54358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.128.0", + "prefixLen":25, + "network":"193.207.128.0\/25", + "version":54357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.128.0", + "prefixLen":25, + "network":"193.207.128.0\/25", + "version":54357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.128.128", + "prefixLen":25, + "network":"193.207.128.128\/25", + "version":54356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.128.128", + "prefixLen":25, + "network":"193.207.128.128\/25", + "version":54356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.129.0", + "prefixLen":25, + "network":"193.207.129.0\/25", + "version":54355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.129.0", + "prefixLen":25, + "network":"193.207.129.0\/25", + "version":54355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.129.128", + "prefixLen":25, + "network":"193.207.129.128\/25", + "version":54354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.129.128", + "prefixLen":25, + "network":"193.207.129.128\/25", + "version":54354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.130.0", + "prefixLen":25, + "network":"193.207.130.0\/25", + "version":54353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.130.0", + "prefixLen":25, + "network":"193.207.130.0\/25", + "version":54353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.130.128", + "prefixLen":25, + "network":"193.207.130.128\/25", + "version":54352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.130.128", + "prefixLen":25, + "network":"193.207.130.128\/25", + "version":54352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.131.0", + "prefixLen":25, + "network":"193.207.131.0\/25", + "version":54351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.131.0", + "prefixLen":25, + "network":"193.207.131.0\/25", + "version":54351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.131.128", + "prefixLen":25, + "network":"193.207.131.128\/25", + "version":54350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.131.128", + "prefixLen":25, + "network":"193.207.131.128\/25", + "version":54350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.144.0", + "prefixLen":25, + "network":"193.207.144.0\/25", + "version":54349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.144.0", + "prefixLen":25, + "network":"193.207.144.0\/25", + "version":54349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.144.128", + "prefixLen":25, + "network":"193.207.144.128\/25", + "version":54348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.144.128", + "prefixLen":25, + "network":"193.207.144.128\/25", + "version":54348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.145.0", + "prefixLen":25, + "network":"193.207.145.0\/25", + "version":54347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.145.0", + "prefixLen":25, + "network":"193.207.145.0\/25", + "version":54347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.145.128", + "prefixLen":25, + "network":"193.207.145.128\/25", + "version":54346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.145.128", + "prefixLen":25, + "network":"193.207.145.128\/25", + "version":54346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.146.0", + "prefixLen":25, + "network":"193.207.146.0\/25", + "version":54345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.146.0", + "prefixLen":25, + "network":"193.207.146.0\/25", + "version":54345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.146.128", + "prefixLen":25, + "network":"193.207.146.128\/25", + "version":54344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.146.128", + "prefixLen":25, + "network":"193.207.146.128\/25", + "version":54344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.147.0", + "prefixLen":25, + "network":"193.207.147.0\/25", + "version":54343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.147.0", + "prefixLen":25, + "network":"193.207.147.0\/25", + "version":54343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.147.128", + "prefixLen":25, + "network":"193.207.147.128\/25", + "version":54342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.147.128", + "prefixLen":25, + "network":"193.207.147.128\/25", + "version":54342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.160.0", + "prefixLen":25, + "network":"193.207.160.0\/25", + "version":54341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.160.0", + "prefixLen":25, + "network":"193.207.160.0\/25", + "version":54341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.160.128", + "prefixLen":25, + "network":"193.207.160.128\/25", + "version":54340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.160.128", + "prefixLen":25, + "network":"193.207.160.128\/25", + "version":54340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.161.0", + "prefixLen":25, + "network":"193.207.161.0\/25", + "version":54339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.161.0", + "prefixLen":25, + "network":"193.207.161.0\/25", + "version":54339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.161.128", + "prefixLen":25, + "network":"193.207.161.128\/25", + "version":54338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.161.128", + "prefixLen":25, + "network":"193.207.161.128\/25", + "version":54338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.162.0", + "prefixLen":25, + "network":"193.207.162.0\/25", + "version":54337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.162.0", + "prefixLen":25, + "network":"193.207.162.0\/25", + "version":54337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.162.128", + "prefixLen":25, + "network":"193.207.162.128\/25", + "version":54336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.162.128", + "prefixLen":25, + "network":"193.207.162.128\/25", + "version":54336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.163.0", + "prefixLen":25, + "network":"193.207.163.0\/25", + "version":54335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.163.0", + "prefixLen":25, + "network":"193.207.163.0\/25", + "version":54335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.163.128", + "prefixLen":25, + "network":"193.207.163.128\/25", + "version":54334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.163.128", + "prefixLen":25, + "network":"193.207.163.128\/25", + "version":54334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.176.0", + "prefixLen":25, + "network":"193.207.176.0\/25", + "version":54333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.176.0", + "prefixLen":25, + "network":"193.207.176.0\/25", + "version":54333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.176.128", + "prefixLen":25, + "network":"193.207.176.128\/25", + "version":54332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.176.128", + "prefixLen":25, + "network":"193.207.176.128\/25", + "version":54332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.177.0", + "prefixLen":25, + "network":"193.207.177.0\/25", + "version":54331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.177.0", + "prefixLen":25, + "network":"193.207.177.0\/25", + "version":54331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.177.128", + "prefixLen":25, + "network":"193.207.177.128\/25", + "version":54330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.177.128", + "prefixLen":25, + "network":"193.207.177.128\/25", + "version":54330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.178.0", + "prefixLen":25, + "network":"193.207.178.0\/25", + "version":54329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.178.0", + "prefixLen":25, + "network":"193.207.178.0\/25", + "version":54329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.178.128", + "prefixLen":25, + "network":"193.207.178.128\/25", + "version":54328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.178.128", + "prefixLen":25, + "network":"193.207.178.128\/25", + "version":54328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.179.0", + "prefixLen":25, + "network":"193.207.179.0\/25", + "version":54327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.179.0", + "prefixLen":25, + "network":"193.207.179.0\/25", + "version":54327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.179.128", + "prefixLen":25, + "network":"193.207.179.128\/25", + "version":54326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.179.128", + "prefixLen":25, + "network":"193.207.179.128\/25", + "version":54326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.192.0", + "prefixLen":25, + "network":"193.207.192.0\/25", + "version":54325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.192.0", + "prefixLen":25, + "network":"193.207.192.0\/25", + "version":54325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.192.128", + "prefixLen":25, + "network":"193.207.192.128\/25", + "version":54324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.192.128", + "prefixLen":25, + "network":"193.207.192.128\/25", + "version":54324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.193.0", + "prefixLen":25, + "network":"193.207.193.0\/25", + "version":54323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.193.0", + "prefixLen":25, + "network":"193.207.193.0\/25", + "version":54323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.193.128", + "prefixLen":25, + "network":"193.207.193.128\/25", + "version":54322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.193.128", + "prefixLen":25, + "network":"193.207.193.128\/25", + "version":54322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.194.0", + "prefixLen":25, + "network":"193.207.194.0\/25", + "version":54321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.194.0", + "prefixLen":25, + "network":"193.207.194.0\/25", + "version":54321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.194.128", + "prefixLen":25, + "network":"193.207.194.128\/25", + "version":54320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.194.128", + "prefixLen":25, + "network":"193.207.194.128\/25", + "version":54320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.195.0", + "prefixLen":25, + "network":"193.207.195.0\/25", + "version":54319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.195.0", + "prefixLen":25, + "network":"193.207.195.0\/25", + "version":54319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.195.128", + "prefixLen":25, + "network":"193.207.195.128\/25", + "version":54318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.195.128", + "prefixLen":25, + "network":"193.207.195.128\/25", + "version":54318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.208.0", + "prefixLen":25, + "network":"193.207.208.0\/25", + "version":54317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.208.0", + "prefixLen":25, + "network":"193.207.208.0\/25", + "version":54317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.208.128", + "prefixLen":25, + "network":"193.207.208.128\/25", + "version":54316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.208.128", + "prefixLen":25, + "network":"193.207.208.128\/25", + "version":54316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.209.0", + "prefixLen":25, + "network":"193.207.209.0\/25", + "version":54315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.209.0", + "prefixLen":25, + "network":"193.207.209.0\/25", + "version":54315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.209.128", + "prefixLen":25, + "network":"193.207.209.128\/25", + "version":54314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.209.128", + "prefixLen":25, + "network":"193.207.209.128\/25", + "version":54314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.210.0", + "prefixLen":25, + "network":"193.207.210.0\/25", + "version":54313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.210.0", + "prefixLen":25, + "network":"193.207.210.0\/25", + "version":54313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.210.128", + "prefixLen":25, + "network":"193.207.210.128\/25", + "version":54312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.210.128", + "prefixLen":25, + "network":"193.207.210.128\/25", + "version":54312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.211.0", + "prefixLen":25, + "network":"193.207.211.0\/25", + "version":54311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.211.0", + "prefixLen":25, + "network":"193.207.211.0\/25", + "version":54311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.211.128", + "prefixLen":25, + "network":"193.207.211.128\/25", + "version":54310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.211.128", + "prefixLen":25, + "network":"193.207.211.128\/25", + "version":54310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.224.0", + "prefixLen":25, + "network":"193.207.224.0\/25", + "version":54309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.224.0", + "prefixLen":25, + "network":"193.207.224.0\/25", + "version":54309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.224.128", + "prefixLen":25, + "network":"193.207.224.128\/25", + "version":54308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.224.128", + "prefixLen":25, + "network":"193.207.224.128\/25", + "version":54308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.225.0", + "prefixLen":25, + "network":"193.207.225.0\/25", + "version":54307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.225.0", + "prefixLen":25, + "network":"193.207.225.0\/25", + "version":54307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.225.128", + "prefixLen":25, + "network":"193.207.225.128\/25", + "version":54306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.225.128", + "prefixLen":25, + "network":"193.207.225.128\/25", + "version":54306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.226.0", + "prefixLen":25, + "network":"193.207.226.0\/25", + "version":54305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.226.0", + "prefixLen":25, + "network":"193.207.226.0\/25", + "version":54305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.226.128", + "prefixLen":25, + "network":"193.207.226.128\/25", + "version":54304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.226.128", + "prefixLen":25, + "network":"193.207.226.128\/25", + "version":54304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.227.0", + "prefixLen":25, + "network":"193.207.227.0\/25", + "version":54303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.227.0", + "prefixLen":25, + "network":"193.207.227.0\/25", + "version":54303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.227.128", + "prefixLen":25, + "network":"193.207.227.128\/25", + "version":54302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.227.128", + "prefixLen":25, + "network":"193.207.227.128\/25", + "version":54302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.240.0", + "prefixLen":25, + "network":"193.207.240.0\/25", + "version":54301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.240.0", + "prefixLen":25, + "network":"193.207.240.0\/25", + "version":54301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.240.128", + "prefixLen":25, + "network":"193.207.240.128\/25", + "version":54300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.240.128", + "prefixLen":25, + "network":"193.207.240.128\/25", + "version":54300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.241.0", + "prefixLen":25, + "network":"193.207.241.0\/25", + "version":54299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.241.0", + "prefixLen":25, + "network":"193.207.241.0\/25", + "version":54299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.241.128", + "prefixLen":25, + "network":"193.207.241.128\/25", + "version":54298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.241.128", + "prefixLen":25, + "network":"193.207.241.128\/25", + "version":54298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.242.0", + "prefixLen":25, + "network":"193.207.242.0\/25", + "version":54297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.242.0", + "prefixLen":25, + "network":"193.207.242.0\/25", + "version":54297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.242.128", + "prefixLen":25, + "network":"193.207.242.128\/25", + "version":54296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.242.128", + "prefixLen":25, + "network":"193.207.242.128\/25", + "version":54296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.243.0", + "prefixLen":25, + "network":"193.207.243.0\/25", + "version":54295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.243.0", + "prefixLen":25, + "network":"193.207.243.0\/25", + "version":54295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.207.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.207.243.128", + "prefixLen":25, + "network":"193.207.243.128\/25", + "version":54294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.207.243.128", + "prefixLen":25, + "network":"193.207.243.128\/25", + "version":54294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64895 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.0.0", + "prefixLen":25, + "network":"193.208.0.0\/25", + "version":54421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.0.0", + "prefixLen":25, + "network":"193.208.0.0\/25", + "version":54421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.0.128", + "prefixLen":25, + "network":"193.208.0.128\/25", + "version":54548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.0.128", + "prefixLen":25, + "network":"193.208.0.128\/25", + "version":54548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.1.0", + "prefixLen":25, + "network":"193.208.1.0\/25", + "version":54547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.1.0", + "prefixLen":25, + "network":"193.208.1.0\/25", + "version":54547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.1.128", + "prefixLen":25, + "network":"193.208.1.128\/25", + "version":54546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.1.128", + "prefixLen":25, + "network":"193.208.1.128\/25", + "version":54546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.2.0", + "prefixLen":25, + "network":"193.208.2.0\/25", + "version":54545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.2.0", + "prefixLen":25, + "network":"193.208.2.0\/25", + "version":54545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.2.128", + "prefixLen":25, + "network":"193.208.2.128\/25", + "version":54544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.2.128", + "prefixLen":25, + "network":"193.208.2.128\/25", + "version":54544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.3.0", + "prefixLen":25, + "network":"193.208.3.0\/25", + "version":54543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.3.0", + "prefixLen":25, + "network":"193.208.3.0\/25", + "version":54543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.3.128", + "prefixLen":25, + "network":"193.208.3.128\/25", + "version":54542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.3.128", + "prefixLen":25, + "network":"193.208.3.128\/25", + "version":54542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.16.0", + "prefixLen":25, + "network":"193.208.16.0\/25", + "version":54541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.16.0", + "prefixLen":25, + "network":"193.208.16.0\/25", + "version":54541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.16.128", + "prefixLen":25, + "network":"193.208.16.128\/25", + "version":54540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.16.128", + "prefixLen":25, + "network":"193.208.16.128\/25", + "version":54540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.17.0", + "prefixLen":25, + "network":"193.208.17.0\/25", + "version":54539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.17.0", + "prefixLen":25, + "network":"193.208.17.0\/25", + "version":54539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.17.128", + "prefixLen":25, + "network":"193.208.17.128\/25", + "version":54538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.17.128", + "prefixLen":25, + "network":"193.208.17.128\/25", + "version":54538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.18.0", + "prefixLen":25, + "network":"193.208.18.0\/25", + "version":54537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.18.0", + "prefixLen":25, + "network":"193.208.18.0\/25", + "version":54537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.18.128", + "prefixLen":25, + "network":"193.208.18.128\/25", + "version":54536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.18.128", + "prefixLen":25, + "network":"193.208.18.128\/25", + "version":54536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.19.0", + "prefixLen":25, + "network":"193.208.19.0\/25", + "version":54535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.19.0", + "prefixLen":25, + "network":"193.208.19.0\/25", + "version":54535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.19.128", + "prefixLen":25, + "network":"193.208.19.128\/25", + "version":54534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.19.128", + "prefixLen":25, + "network":"193.208.19.128\/25", + "version":54534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.32.0", + "prefixLen":25, + "network":"193.208.32.0\/25", + "version":54533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.32.0", + "prefixLen":25, + "network":"193.208.32.0\/25", + "version":54533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.32.128", + "prefixLen":25, + "network":"193.208.32.128\/25", + "version":54532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.32.128", + "prefixLen":25, + "network":"193.208.32.128\/25", + "version":54532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.33.0", + "prefixLen":25, + "network":"193.208.33.0\/25", + "version":54531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.33.0", + "prefixLen":25, + "network":"193.208.33.0\/25", + "version":54531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.33.128", + "prefixLen":25, + "network":"193.208.33.128\/25", + "version":54530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.33.128", + "prefixLen":25, + "network":"193.208.33.128\/25", + "version":54530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.34.0", + "prefixLen":25, + "network":"193.208.34.0\/25", + "version":54529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.34.0", + "prefixLen":25, + "network":"193.208.34.0\/25", + "version":54529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.34.128", + "prefixLen":25, + "network":"193.208.34.128\/25", + "version":54528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.34.128", + "prefixLen":25, + "network":"193.208.34.128\/25", + "version":54528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.35.0", + "prefixLen":25, + "network":"193.208.35.0\/25", + "version":54527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.35.0", + "prefixLen":25, + "network":"193.208.35.0\/25", + "version":54527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.35.128", + "prefixLen":25, + "network":"193.208.35.128\/25", + "version":54526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.35.128", + "prefixLen":25, + "network":"193.208.35.128\/25", + "version":54526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.48.0", + "prefixLen":25, + "network":"193.208.48.0\/25", + "version":54525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.48.0", + "prefixLen":25, + "network":"193.208.48.0\/25", + "version":54525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.48.128", + "prefixLen":25, + "network":"193.208.48.128\/25", + "version":54524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.48.128", + "prefixLen":25, + "network":"193.208.48.128\/25", + "version":54524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.49.0", + "prefixLen":25, + "network":"193.208.49.0\/25", + "version":54523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.49.0", + "prefixLen":25, + "network":"193.208.49.0\/25", + "version":54523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.49.128", + "prefixLen":25, + "network":"193.208.49.128\/25", + "version":54522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.49.128", + "prefixLen":25, + "network":"193.208.49.128\/25", + "version":54522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.50.0", + "prefixLen":25, + "network":"193.208.50.0\/25", + "version":54521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.50.0", + "prefixLen":25, + "network":"193.208.50.0\/25", + "version":54521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.50.128", + "prefixLen":25, + "network":"193.208.50.128\/25", + "version":54520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.50.128", + "prefixLen":25, + "network":"193.208.50.128\/25", + "version":54520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.51.0", + "prefixLen":25, + "network":"193.208.51.0\/25", + "version":54519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.51.0", + "prefixLen":25, + "network":"193.208.51.0\/25", + "version":54519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.51.128", + "prefixLen":25, + "network":"193.208.51.128\/25", + "version":54518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.51.128", + "prefixLen":25, + "network":"193.208.51.128\/25", + "version":54518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.64.0", + "prefixLen":25, + "network":"193.208.64.0\/25", + "version":54517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.64.0", + "prefixLen":25, + "network":"193.208.64.0\/25", + "version":54517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.64.128", + "prefixLen":25, + "network":"193.208.64.128\/25", + "version":54516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.64.128", + "prefixLen":25, + "network":"193.208.64.128\/25", + "version":54516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.65.0", + "prefixLen":25, + "network":"193.208.65.0\/25", + "version":54515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.65.0", + "prefixLen":25, + "network":"193.208.65.0\/25", + "version":54515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.65.128", + "prefixLen":25, + "network":"193.208.65.128\/25", + "version":54514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.65.128", + "prefixLen":25, + "network":"193.208.65.128\/25", + "version":54514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.66.0", + "prefixLen":25, + "network":"193.208.66.0\/25", + "version":54513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.66.0", + "prefixLen":25, + "network":"193.208.66.0\/25", + "version":54513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.66.128", + "prefixLen":25, + "network":"193.208.66.128\/25", + "version":54512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.66.128", + "prefixLen":25, + "network":"193.208.66.128\/25", + "version":54512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.67.0", + "prefixLen":25, + "network":"193.208.67.0\/25", + "version":54511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.67.0", + "prefixLen":25, + "network":"193.208.67.0\/25", + "version":54511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.67.128", + "prefixLen":25, + "network":"193.208.67.128\/25", + "version":54510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.67.128", + "prefixLen":25, + "network":"193.208.67.128\/25", + "version":54510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.80.0", + "prefixLen":25, + "network":"193.208.80.0\/25", + "version":54509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.80.0", + "prefixLen":25, + "network":"193.208.80.0\/25", + "version":54509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.80.128", + "prefixLen":25, + "network":"193.208.80.128\/25", + "version":54508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.80.128", + "prefixLen":25, + "network":"193.208.80.128\/25", + "version":54508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.81.0", + "prefixLen":25, + "network":"193.208.81.0\/25", + "version":54507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.81.0", + "prefixLen":25, + "network":"193.208.81.0\/25", + "version":54507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.81.128", + "prefixLen":25, + "network":"193.208.81.128\/25", + "version":54506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.81.128", + "prefixLen":25, + "network":"193.208.81.128\/25", + "version":54506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.82.0", + "prefixLen":25, + "network":"193.208.82.0\/25", + "version":54505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.82.0", + "prefixLen":25, + "network":"193.208.82.0\/25", + "version":54505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.82.128", + "prefixLen":25, + "network":"193.208.82.128\/25", + "version":54504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.82.128", + "prefixLen":25, + "network":"193.208.82.128\/25", + "version":54504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.83.0", + "prefixLen":25, + "network":"193.208.83.0\/25", + "version":54503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.83.0", + "prefixLen":25, + "network":"193.208.83.0\/25", + "version":54503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.83.128", + "prefixLen":25, + "network":"193.208.83.128\/25", + "version":54502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.83.128", + "prefixLen":25, + "network":"193.208.83.128\/25", + "version":54502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.96.0", + "prefixLen":25, + "network":"193.208.96.0\/25", + "version":54501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.96.0", + "prefixLen":25, + "network":"193.208.96.0\/25", + "version":54501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.96.128", + "prefixLen":25, + "network":"193.208.96.128\/25", + "version":54500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.96.128", + "prefixLen":25, + "network":"193.208.96.128\/25", + "version":54500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.97.0", + "prefixLen":25, + "network":"193.208.97.0\/25", + "version":54499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.97.0", + "prefixLen":25, + "network":"193.208.97.0\/25", + "version":54499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.97.128", + "prefixLen":25, + "network":"193.208.97.128\/25", + "version":54498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.97.128", + "prefixLen":25, + "network":"193.208.97.128\/25", + "version":54498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.98.0", + "prefixLen":25, + "network":"193.208.98.0\/25", + "version":54497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.98.0", + "prefixLen":25, + "network":"193.208.98.0\/25", + "version":54497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.98.128", + "prefixLen":25, + "network":"193.208.98.128\/25", + "version":54496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.98.128", + "prefixLen":25, + "network":"193.208.98.128\/25", + "version":54496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.99.0", + "prefixLen":25, + "network":"193.208.99.0\/25", + "version":54495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.99.0", + "prefixLen":25, + "network":"193.208.99.0\/25", + "version":54495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.99.128", + "prefixLen":25, + "network":"193.208.99.128\/25", + "version":54494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.99.128", + "prefixLen":25, + "network":"193.208.99.128\/25", + "version":54494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.112.0", + "prefixLen":25, + "network":"193.208.112.0\/25", + "version":54493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.112.0", + "prefixLen":25, + "network":"193.208.112.0\/25", + "version":54493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.112.128", + "prefixLen":25, + "network":"193.208.112.128\/25", + "version":54492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.112.128", + "prefixLen":25, + "network":"193.208.112.128\/25", + "version":54492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.113.0", + "prefixLen":25, + "network":"193.208.113.0\/25", + "version":54491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.113.0", + "prefixLen":25, + "network":"193.208.113.0\/25", + "version":54491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.113.128", + "prefixLen":25, + "network":"193.208.113.128\/25", + "version":54490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.113.128", + "prefixLen":25, + "network":"193.208.113.128\/25", + "version":54490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.114.0", + "prefixLen":25, + "network":"193.208.114.0\/25", + "version":54489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.114.0", + "prefixLen":25, + "network":"193.208.114.0\/25", + "version":54489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.114.128", + "prefixLen":25, + "network":"193.208.114.128\/25", + "version":54488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.114.128", + "prefixLen":25, + "network":"193.208.114.128\/25", + "version":54488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.115.0", + "prefixLen":25, + "network":"193.208.115.0\/25", + "version":54487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.115.0", + "prefixLen":25, + "network":"193.208.115.0\/25", + "version":54487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.115.128", + "prefixLen":25, + "network":"193.208.115.128\/25", + "version":54486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.115.128", + "prefixLen":25, + "network":"193.208.115.128\/25", + "version":54486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.128.0", + "prefixLen":25, + "network":"193.208.128.0\/25", + "version":54485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.128.0", + "prefixLen":25, + "network":"193.208.128.0\/25", + "version":54485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.128.128", + "prefixLen":25, + "network":"193.208.128.128\/25", + "version":54484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.128.128", + "prefixLen":25, + "network":"193.208.128.128\/25", + "version":54484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.129.0", + "prefixLen":25, + "network":"193.208.129.0\/25", + "version":54483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.129.0", + "prefixLen":25, + "network":"193.208.129.0\/25", + "version":54483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.129.128", + "prefixLen":25, + "network":"193.208.129.128\/25", + "version":54482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.129.128", + "prefixLen":25, + "network":"193.208.129.128\/25", + "version":54482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.130.0", + "prefixLen":25, + "network":"193.208.130.0\/25", + "version":54481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.130.0", + "prefixLen":25, + "network":"193.208.130.0\/25", + "version":54481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.130.128", + "prefixLen":25, + "network":"193.208.130.128\/25", + "version":54480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.130.128", + "prefixLen":25, + "network":"193.208.130.128\/25", + "version":54480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.131.0", + "prefixLen":25, + "network":"193.208.131.0\/25", + "version":54479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.131.0", + "prefixLen":25, + "network":"193.208.131.0\/25", + "version":54479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.131.128", + "prefixLen":25, + "network":"193.208.131.128\/25", + "version":54478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.131.128", + "prefixLen":25, + "network":"193.208.131.128\/25", + "version":54478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.144.0", + "prefixLen":25, + "network":"193.208.144.0\/25", + "version":54477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.144.0", + "prefixLen":25, + "network":"193.208.144.0\/25", + "version":54477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.144.128", + "prefixLen":25, + "network":"193.208.144.128\/25", + "version":54476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.144.128", + "prefixLen":25, + "network":"193.208.144.128\/25", + "version":54476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.145.0", + "prefixLen":25, + "network":"193.208.145.0\/25", + "version":54475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.145.0", + "prefixLen":25, + "network":"193.208.145.0\/25", + "version":54475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.145.128", + "prefixLen":25, + "network":"193.208.145.128\/25", + "version":54474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.145.128", + "prefixLen":25, + "network":"193.208.145.128\/25", + "version":54474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.146.0", + "prefixLen":25, + "network":"193.208.146.0\/25", + "version":54473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.146.0", + "prefixLen":25, + "network":"193.208.146.0\/25", + "version":54473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.146.128", + "prefixLen":25, + "network":"193.208.146.128\/25", + "version":54472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.146.128", + "prefixLen":25, + "network":"193.208.146.128\/25", + "version":54472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.147.0", + "prefixLen":25, + "network":"193.208.147.0\/25", + "version":54471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.147.0", + "prefixLen":25, + "network":"193.208.147.0\/25", + "version":54471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.147.128", + "prefixLen":25, + "network":"193.208.147.128\/25", + "version":54470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.147.128", + "prefixLen":25, + "network":"193.208.147.128\/25", + "version":54470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.160.0", + "prefixLen":25, + "network":"193.208.160.0\/25", + "version":54469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.160.0", + "prefixLen":25, + "network":"193.208.160.0\/25", + "version":54469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.160.128", + "prefixLen":25, + "network":"193.208.160.128\/25", + "version":54468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.160.128", + "prefixLen":25, + "network":"193.208.160.128\/25", + "version":54468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.161.0", + "prefixLen":25, + "network":"193.208.161.0\/25", + "version":54467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.161.0", + "prefixLen":25, + "network":"193.208.161.0\/25", + "version":54467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.161.128", + "prefixLen":25, + "network":"193.208.161.128\/25", + "version":54466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.161.128", + "prefixLen":25, + "network":"193.208.161.128\/25", + "version":54466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.162.0", + "prefixLen":25, + "network":"193.208.162.0\/25", + "version":54465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.162.0", + "prefixLen":25, + "network":"193.208.162.0\/25", + "version":54465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.162.128", + "prefixLen":25, + "network":"193.208.162.128\/25", + "version":54464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.162.128", + "prefixLen":25, + "network":"193.208.162.128\/25", + "version":54464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.163.0", + "prefixLen":25, + "network":"193.208.163.0\/25", + "version":54463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.163.0", + "prefixLen":25, + "network":"193.208.163.0\/25", + "version":54463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.163.128", + "prefixLen":25, + "network":"193.208.163.128\/25", + "version":54462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.163.128", + "prefixLen":25, + "network":"193.208.163.128\/25", + "version":54462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.176.0", + "prefixLen":25, + "network":"193.208.176.0\/25", + "version":54461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.176.0", + "prefixLen":25, + "network":"193.208.176.0\/25", + "version":54461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.176.128", + "prefixLen":25, + "network":"193.208.176.128\/25", + "version":54460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.176.128", + "prefixLen":25, + "network":"193.208.176.128\/25", + "version":54460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.177.0", + "prefixLen":25, + "network":"193.208.177.0\/25", + "version":54459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.177.0", + "prefixLen":25, + "network":"193.208.177.0\/25", + "version":54459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.177.128", + "prefixLen":25, + "network":"193.208.177.128\/25", + "version":54458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.177.128", + "prefixLen":25, + "network":"193.208.177.128\/25", + "version":54458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.178.0", + "prefixLen":25, + "network":"193.208.178.0\/25", + "version":54457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.178.0", + "prefixLen":25, + "network":"193.208.178.0\/25", + "version":54457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.178.128", + "prefixLen":25, + "network":"193.208.178.128\/25", + "version":54456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.178.128", + "prefixLen":25, + "network":"193.208.178.128\/25", + "version":54456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.179.0", + "prefixLen":25, + "network":"193.208.179.0\/25", + "version":54455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.179.0", + "prefixLen":25, + "network":"193.208.179.0\/25", + "version":54455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.179.128", + "prefixLen":25, + "network":"193.208.179.128\/25", + "version":54454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.179.128", + "prefixLen":25, + "network":"193.208.179.128\/25", + "version":54454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.192.0", + "prefixLen":25, + "network":"193.208.192.0\/25", + "version":54453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.192.0", + "prefixLen":25, + "network":"193.208.192.0\/25", + "version":54453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.192.128", + "prefixLen":25, + "network":"193.208.192.128\/25", + "version":54452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.192.128", + "prefixLen":25, + "network":"193.208.192.128\/25", + "version":54452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.193.0", + "prefixLen":25, + "network":"193.208.193.0\/25", + "version":54451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.193.0", + "prefixLen":25, + "network":"193.208.193.0\/25", + "version":54451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.193.128", + "prefixLen":25, + "network":"193.208.193.128\/25", + "version":54450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.193.128", + "prefixLen":25, + "network":"193.208.193.128\/25", + "version":54450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.194.0", + "prefixLen":25, + "network":"193.208.194.0\/25", + "version":54449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.194.0", + "prefixLen":25, + "network":"193.208.194.0\/25", + "version":54449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.194.128", + "prefixLen":25, + "network":"193.208.194.128\/25", + "version":54448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.194.128", + "prefixLen":25, + "network":"193.208.194.128\/25", + "version":54448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.195.0", + "prefixLen":25, + "network":"193.208.195.0\/25", + "version":54447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.195.0", + "prefixLen":25, + "network":"193.208.195.0\/25", + "version":54447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.195.128", + "prefixLen":25, + "network":"193.208.195.128\/25", + "version":54446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.195.128", + "prefixLen":25, + "network":"193.208.195.128\/25", + "version":54446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.208.0", + "prefixLen":25, + "network":"193.208.208.0\/25", + "version":54445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.208.0", + "prefixLen":25, + "network":"193.208.208.0\/25", + "version":54445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.208.128", + "prefixLen":25, + "network":"193.208.208.128\/25", + "version":54444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.208.128", + "prefixLen":25, + "network":"193.208.208.128\/25", + "version":54444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.209.0", + "prefixLen":25, + "network":"193.208.209.0\/25", + "version":54443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.209.0", + "prefixLen":25, + "network":"193.208.209.0\/25", + "version":54443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.209.128", + "prefixLen":25, + "network":"193.208.209.128\/25", + "version":54442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.209.128", + "prefixLen":25, + "network":"193.208.209.128\/25", + "version":54442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.210.0", + "prefixLen":25, + "network":"193.208.210.0\/25", + "version":54441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.210.0", + "prefixLen":25, + "network":"193.208.210.0\/25", + "version":54441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.210.128", + "prefixLen":25, + "network":"193.208.210.128\/25", + "version":54440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.210.128", + "prefixLen":25, + "network":"193.208.210.128\/25", + "version":54440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.211.0", + "prefixLen":25, + "network":"193.208.211.0\/25", + "version":54439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.211.0", + "prefixLen":25, + "network":"193.208.211.0\/25", + "version":54439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.211.128", + "prefixLen":25, + "network":"193.208.211.128\/25", + "version":54438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.211.128", + "prefixLen":25, + "network":"193.208.211.128\/25", + "version":54438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.224.0", + "prefixLen":25, + "network":"193.208.224.0\/25", + "version":54437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.224.0", + "prefixLen":25, + "network":"193.208.224.0\/25", + "version":54437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.224.128", + "prefixLen":25, + "network":"193.208.224.128\/25", + "version":54436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.224.128", + "prefixLen":25, + "network":"193.208.224.128\/25", + "version":54436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.225.0", + "prefixLen":25, + "network":"193.208.225.0\/25", + "version":54435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.225.0", + "prefixLen":25, + "network":"193.208.225.0\/25", + "version":54435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.225.128", + "prefixLen":25, + "network":"193.208.225.128\/25", + "version":54434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.225.128", + "prefixLen":25, + "network":"193.208.225.128\/25", + "version":54434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.226.0", + "prefixLen":25, + "network":"193.208.226.0\/25", + "version":54433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.226.0", + "prefixLen":25, + "network":"193.208.226.0\/25", + "version":54433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.226.128", + "prefixLen":25, + "network":"193.208.226.128\/25", + "version":54432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.226.128", + "prefixLen":25, + "network":"193.208.226.128\/25", + "version":54432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.227.0", + "prefixLen":25, + "network":"193.208.227.0\/25", + "version":54431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.227.0", + "prefixLen":25, + "network":"193.208.227.0\/25", + "version":54431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.227.128", + "prefixLen":25, + "network":"193.208.227.128\/25", + "version":54430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.227.128", + "prefixLen":25, + "network":"193.208.227.128\/25", + "version":54430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.240.0", + "prefixLen":25, + "network":"193.208.240.0\/25", + "version":54429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.240.0", + "prefixLen":25, + "network":"193.208.240.0\/25", + "version":54429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.240.128", + "prefixLen":25, + "network":"193.208.240.128\/25", + "version":54428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.240.128", + "prefixLen":25, + "network":"193.208.240.128\/25", + "version":54428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.241.0", + "prefixLen":25, + "network":"193.208.241.0\/25", + "version":54427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.241.0", + "prefixLen":25, + "network":"193.208.241.0\/25", + "version":54427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.241.128", + "prefixLen":25, + "network":"193.208.241.128\/25", + "version":54426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.241.128", + "prefixLen":25, + "network":"193.208.241.128\/25", + "version":54426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.242.0", + "prefixLen":25, + "network":"193.208.242.0\/25", + "version":54425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.242.0", + "prefixLen":25, + "network":"193.208.242.0\/25", + "version":54425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.242.128", + "prefixLen":25, + "network":"193.208.242.128\/25", + "version":54424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.242.128", + "prefixLen":25, + "network":"193.208.242.128\/25", + "version":54424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.243.0", + "prefixLen":25, + "network":"193.208.243.0\/25", + "version":54423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.243.0", + "prefixLen":25, + "network":"193.208.243.0\/25", + "version":54423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.208.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.208.243.128", + "prefixLen":25, + "network":"193.208.243.128\/25", + "version":54422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.208.243.128", + "prefixLen":25, + "network":"193.208.243.128\/25", + "version":54422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64896 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.0.0", + "prefixLen":25, + "network":"193.209.0.0\/25", + "version":54677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.0.0", + "prefixLen":25, + "network":"193.209.0.0\/25", + "version":54677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.0.128", + "prefixLen":25, + "network":"193.209.0.128\/25", + "version":54804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.0.128", + "prefixLen":25, + "network":"193.209.0.128\/25", + "version":54804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.1.0", + "prefixLen":25, + "network":"193.209.1.0\/25", + "version":54803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.1.0", + "prefixLen":25, + "network":"193.209.1.0\/25", + "version":54803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.1.128", + "prefixLen":25, + "network":"193.209.1.128\/25", + "version":54802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.1.128", + "prefixLen":25, + "network":"193.209.1.128\/25", + "version":54802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.2.0", + "prefixLen":25, + "network":"193.209.2.0\/25", + "version":54801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.2.0", + "prefixLen":25, + "network":"193.209.2.0\/25", + "version":54801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.2.128", + "prefixLen":25, + "network":"193.209.2.128\/25", + "version":54800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.2.128", + "prefixLen":25, + "network":"193.209.2.128\/25", + "version":54800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.3.0", + "prefixLen":25, + "network":"193.209.3.0\/25", + "version":54799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.3.0", + "prefixLen":25, + "network":"193.209.3.0\/25", + "version":54799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.3.128", + "prefixLen":25, + "network":"193.209.3.128\/25", + "version":54798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.3.128", + "prefixLen":25, + "network":"193.209.3.128\/25", + "version":54798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.16.0", + "prefixLen":25, + "network":"193.209.16.0\/25", + "version":54797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.16.0", + "prefixLen":25, + "network":"193.209.16.0\/25", + "version":54797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.16.128", + "prefixLen":25, + "network":"193.209.16.128\/25", + "version":54796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.16.128", + "prefixLen":25, + "network":"193.209.16.128\/25", + "version":54796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.17.0", + "prefixLen":25, + "network":"193.209.17.0\/25", + "version":54795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.17.0", + "prefixLen":25, + "network":"193.209.17.0\/25", + "version":54795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.17.128", + "prefixLen":25, + "network":"193.209.17.128\/25", + "version":54794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.17.128", + "prefixLen":25, + "network":"193.209.17.128\/25", + "version":54794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.18.0", + "prefixLen":25, + "network":"193.209.18.0\/25", + "version":54793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.18.0", + "prefixLen":25, + "network":"193.209.18.0\/25", + "version":54793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.18.128", + "prefixLen":25, + "network":"193.209.18.128\/25", + "version":54792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.18.128", + "prefixLen":25, + "network":"193.209.18.128\/25", + "version":54792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.19.0", + "prefixLen":25, + "network":"193.209.19.0\/25", + "version":54791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.19.0", + "prefixLen":25, + "network":"193.209.19.0\/25", + "version":54791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.19.128", + "prefixLen":25, + "network":"193.209.19.128\/25", + "version":54790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.19.128", + "prefixLen":25, + "network":"193.209.19.128\/25", + "version":54790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.32.0", + "prefixLen":25, + "network":"193.209.32.0\/25", + "version":54789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.32.0", + "prefixLen":25, + "network":"193.209.32.0\/25", + "version":54789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.32.128", + "prefixLen":25, + "network":"193.209.32.128\/25", + "version":54788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.32.128", + "prefixLen":25, + "network":"193.209.32.128\/25", + "version":54788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.33.0", + "prefixLen":25, + "network":"193.209.33.0\/25", + "version":54787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.33.0", + "prefixLen":25, + "network":"193.209.33.0\/25", + "version":54787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.33.128", + "prefixLen":25, + "network":"193.209.33.128\/25", + "version":54786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.33.128", + "prefixLen":25, + "network":"193.209.33.128\/25", + "version":54786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.34.0", + "prefixLen":25, + "network":"193.209.34.0\/25", + "version":54785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.34.0", + "prefixLen":25, + "network":"193.209.34.0\/25", + "version":54785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.34.128", + "prefixLen":25, + "network":"193.209.34.128\/25", + "version":54784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.34.128", + "prefixLen":25, + "network":"193.209.34.128\/25", + "version":54784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.35.0", + "prefixLen":25, + "network":"193.209.35.0\/25", + "version":54783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.35.0", + "prefixLen":25, + "network":"193.209.35.0\/25", + "version":54783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.35.128", + "prefixLen":25, + "network":"193.209.35.128\/25", + "version":54782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.35.128", + "prefixLen":25, + "network":"193.209.35.128\/25", + "version":54782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.48.0", + "prefixLen":25, + "network":"193.209.48.0\/25", + "version":54781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.48.0", + "prefixLen":25, + "network":"193.209.48.0\/25", + "version":54781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.48.128", + "prefixLen":25, + "network":"193.209.48.128\/25", + "version":54780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.48.128", + "prefixLen":25, + "network":"193.209.48.128\/25", + "version":54780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.49.0", + "prefixLen":25, + "network":"193.209.49.0\/25", + "version":54779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.49.0", + "prefixLen":25, + "network":"193.209.49.0\/25", + "version":54779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.49.128", + "prefixLen":25, + "network":"193.209.49.128\/25", + "version":54778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.49.128", + "prefixLen":25, + "network":"193.209.49.128\/25", + "version":54778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.50.0", + "prefixLen":25, + "network":"193.209.50.0\/25", + "version":54777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.50.0", + "prefixLen":25, + "network":"193.209.50.0\/25", + "version":54777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.50.128", + "prefixLen":25, + "network":"193.209.50.128\/25", + "version":54776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.50.128", + "prefixLen":25, + "network":"193.209.50.128\/25", + "version":54776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.51.0", + "prefixLen":25, + "network":"193.209.51.0\/25", + "version":54775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.51.0", + "prefixLen":25, + "network":"193.209.51.0\/25", + "version":54775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.51.128", + "prefixLen":25, + "network":"193.209.51.128\/25", + "version":54774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.51.128", + "prefixLen":25, + "network":"193.209.51.128\/25", + "version":54774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.64.0", + "prefixLen":25, + "network":"193.209.64.0\/25", + "version":54773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.64.0", + "prefixLen":25, + "network":"193.209.64.0\/25", + "version":54773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.64.128", + "prefixLen":25, + "network":"193.209.64.128\/25", + "version":54772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.64.128", + "prefixLen":25, + "network":"193.209.64.128\/25", + "version":54772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.65.0", + "prefixLen":25, + "network":"193.209.65.0\/25", + "version":54771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.65.0", + "prefixLen":25, + "network":"193.209.65.0\/25", + "version":54771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.65.128", + "prefixLen":25, + "network":"193.209.65.128\/25", + "version":54770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.65.128", + "prefixLen":25, + "network":"193.209.65.128\/25", + "version":54770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.66.0", + "prefixLen":25, + "network":"193.209.66.0\/25", + "version":54769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.66.0", + "prefixLen":25, + "network":"193.209.66.0\/25", + "version":54769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.66.128", + "prefixLen":25, + "network":"193.209.66.128\/25", + "version":54768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.66.128", + "prefixLen":25, + "network":"193.209.66.128\/25", + "version":54768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.67.0", + "prefixLen":25, + "network":"193.209.67.0\/25", + "version":54767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.67.0", + "prefixLen":25, + "network":"193.209.67.0\/25", + "version":54767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.67.128", + "prefixLen":25, + "network":"193.209.67.128\/25", + "version":54766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.67.128", + "prefixLen":25, + "network":"193.209.67.128\/25", + "version":54766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.80.0", + "prefixLen":25, + "network":"193.209.80.0\/25", + "version":54765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.80.0", + "prefixLen":25, + "network":"193.209.80.0\/25", + "version":54765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.80.128", + "prefixLen":25, + "network":"193.209.80.128\/25", + "version":54764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.80.128", + "prefixLen":25, + "network":"193.209.80.128\/25", + "version":54764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.81.0", + "prefixLen":25, + "network":"193.209.81.0\/25", + "version":54763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.81.0", + "prefixLen":25, + "network":"193.209.81.0\/25", + "version":54763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.81.128", + "prefixLen":25, + "network":"193.209.81.128\/25", + "version":54762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.81.128", + "prefixLen":25, + "network":"193.209.81.128\/25", + "version":54762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.82.0", + "prefixLen":25, + "network":"193.209.82.0\/25", + "version":54761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.82.0", + "prefixLen":25, + "network":"193.209.82.0\/25", + "version":54761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.82.128", + "prefixLen":25, + "network":"193.209.82.128\/25", + "version":54760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.82.128", + "prefixLen":25, + "network":"193.209.82.128\/25", + "version":54760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.83.0", + "prefixLen":25, + "network":"193.209.83.0\/25", + "version":54759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.83.0", + "prefixLen":25, + "network":"193.209.83.0\/25", + "version":54759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.83.128", + "prefixLen":25, + "network":"193.209.83.128\/25", + "version":54758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.83.128", + "prefixLen":25, + "network":"193.209.83.128\/25", + "version":54758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.96.0", + "prefixLen":25, + "network":"193.209.96.0\/25", + "version":54757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.96.0", + "prefixLen":25, + "network":"193.209.96.0\/25", + "version":54757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.96.128", + "prefixLen":25, + "network":"193.209.96.128\/25", + "version":54756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.96.128", + "prefixLen":25, + "network":"193.209.96.128\/25", + "version":54756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.97.0", + "prefixLen":25, + "network":"193.209.97.0\/25", + "version":54755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.97.0", + "prefixLen":25, + "network":"193.209.97.0\/25", + "version":54755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.97.128", + "prefixLen":25, + "network":"193.209.97.128\/25", + "version":54754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.97.128", + "prefixLen":25, + "network":"193.209.97.128\/25", + "version":54754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.98.0", + "prefixLen":25, + "network":"193.209.98.0\/25", + "version":54753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.98.0", + "prefixLen":25, + "network":"193.209.98.0\/25", + "version":54753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.98.128", + "prefixLen":25, + "network":"193.209.98.128\/25", + "version":54752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.98.128", + "prefixLen":25, + "network":"193.209.98.128\/25", + "version":54752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.99.0", + "prefixLen":25, + "network":"193.209.99.0\/25", + "version":54751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.99.0", + "prefixLen":25, + "network":"193.209.99.0\/25", + "version":54751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.99.128", + "prefixLen":25, + "network":"193.209.99.128\/25", + "version":54750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.99.128", + "prefixLen":25, + "network":"193.209.99.128\/25", + "version":54750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.112.0", + "prefixLen":25, + "network":"193.209.112.0\/25", + "version":54749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.112.0", + "prefixLen":25, + "network":"193.209.112.0\/25", + "version":54749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.112.128", + "prefixLen":25, + "network":"193.209.112.128\/25", + "version":54748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.112.128", + "prefixLen":25, + "network":"193.209.112.128\/25", + "version":54748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.113.0", + "prefixLen":25, + "network":"193.209.113.0\/25", + "version":54747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.113.0", + "prefixLen":25, + "network":"193.209.113.0\/25", + "version":54747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.113.128", + "prefixLen":25, + "network":"193.209.113.128\/25", + "version":54746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.113.128", + "prefixLen":25, + "network":"193.209.113.128\/25", + "version":54746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.114.0", + "prefixLen":25, + "network":"193.209.114.0\/25", + "version":54745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.114.0", + "prefixLen":25, + "network":"193.209.114.0\/25", + "version":54745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.114.128", + "prefixLen":25, + "network":"193.209.114.128\/25", + "version":54744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.114.128", + "prefixLen":25, + "network":"193.209.114.128\/25", + "version":54744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.115.0", + "prefixLen":25, + "network":"193.209.115.0\/25", + "version":54743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.115.0", + "prefixLen":25, + "network":"193.209.115.0\/25", + "version":54743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.115.128", + "prefixLen":25, + "network":"193.209.115.128\/25", + "version":54742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.115.128", + "prefixLen":25, + "network":"193.209.115.128\/25", + "version":54742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.128.0", + "prefixLen":25, + "network":"193.209.128.0\/25", + "version":54741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.128.0", + "prefixLen":25, + "network":"193.209.128.0\/25", + "version":54741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.128.128", + "prefixLen":25, + "network":"193.209.128.128\/25", + "version":54740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.128.128", + "prefixLen":25, + "network":"193.209.128.128\/25", + "version":54740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.129.0", + "prefixLen":25, + "network":"193.209.129.0\/25", + "version":54739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.129.0", + "prefixLen":25, + "network":"193.209.129.0\/25", + "version":54739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.129.128", + "prefixLen":25, + "network":"193.209.129.128\/25", + "version":54738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.129.128", + "prefixLen":25, + "network":"193.209.129.128\/25", + "version":54738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.130.0", + "prefixLen":25, + "network":"193.209.130.0\/25", + "version":54737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.130.0", + "prefixLen":25, + "network":"193.209.130.0\/25", + "version":54737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.130.128", + "prefixLen":25, + "network":"193.209.130.128\/25", + "version":54736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.130.128", + "prefixLen":25, + "network":"193.209.130.128\/25", + "version":54736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.131.0", + "prefixLen":25, + "network":"193.209.131.0\/25", + "version":54735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.131.0", + "prefixLen":25, + "network":"193.209.131.0\/25", + "version":54735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.131.128", + "prefixLen":25, + "network":"193.209.131.128\/25", + "version":54734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.131.128", + "prefixLen":25, + "network":"193.209.131.128\/25", + "version":54734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.144.0", + "prefixLen":25, + "network":"193.209.144.0\/25", + "version":54733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.144.0", + "prefixLen":25, + "network":"193.209.144.0\/25", + "version":54733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.144.128", + "prefixLen":25, + "network":"193.209.144.128\/25", + "version":54732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.144.128", + "prefixLen":25, + "network":"193.209.144.128\/25", + "version":54732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.145.0", + "prefixLen":25, + "network":"193.209.145.0\/25", + "version":54731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.145.0", + "prefixLen":25, + "network":"193.209.145.0\/25", + "version":54731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.145.128", + "prefixLen":25, + "network":"193.209.145.128\/25", + "version":54730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.145.128", + "prefixLen":25, + "network":"193.209.145.128\/25", + "version":54730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.146.0", + "prefixLen":25, + "network":"193.209.146.0\/25", + "version":54729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.146.0", + "prefixLen":25, + "network":"193.209.146.0\/25", + "version":54729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.146.128", + "prefixLen":25, + "network":"193.209.146.128\/25", + "version":54728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.146.128", + "prefixLen":25, + "network":"193.209.146.128\/25", + "version":54728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.147.0", + "prefixLen":25, + "network":"193.209.147.0\/25", + "version":54727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.147.0", + "prefixLen":25, + "network":"193.209.147.0\/25", + "version":54727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.147.128", + "prefixLen":25, + "network":"193.209.147.128\/25", + "version":54726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.147.128", + "prefixLen":25, + "network":"193.209.147.128\/25", + "version":54726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.160.0", + "prefixLen":25, + "network":"193.209.160.0\/25", + "version":54725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.160.0", + "prefixLen":25, + "network":"193.209.160.0\/25", + "version":54725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.160.128", + "prefixLen":25, + "network":"193.209.160.128\/25", + "version":54724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.160.128", + "prefixLen":25, + "network":"193.209.160.128\/25", + "version":54724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.161.0", + "prefixLen":25, + "network":"193.209.161.0\/25", + "version":54723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.161.0", + "prefixLen":25, + "network":"193.209.161.0\/25", + "version":54723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.161.128", + "prefixLen":25, + "network":"193.209.161.128\/25", + "version":54722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.161.128", + "prefixLen":25, + "network":"193.209.161.128\/25", + "version":54722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.162.0", + "prefixLen":25, + "network":"193.209.162.0\/25", + "version":54721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.162.0", + "prefixLen":25, + "network":"193.209.162.0\/25", + "version":54721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.162.128", + "prefixLen":25, + "network":"193.209.162.128\/25", + "version":54720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.162.128", + "prefixLen":25, + "network":"193.209.162.128\/25", + "version":54720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.163.0", + "prefixLen":25, + "network":"193.209.163.0\/25", + "version":54719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.163.0", + "prefixLen":25, + "network":"193.209.163.0\/25", + "version":54719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.163.128", + "prefixLen":25, + "network":"193.209.163.128\/25", + "version":54718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.163.128", + "prefixLen":25, + "network":"193.209.163.128\/25", + "version":54718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.176.0", + "prefixLen":25, + "network":"193.209.176.0\/25", + "version":54717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.176.0", + "prefixLen":25, + "network":"193.209.176.0\/25", + "version":54717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.176.128", + "prefixLen":25, + "network":"193.209.176.128\/25", + "version":54716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.176.128", + "prefixLen":25, + "network":"193.209.176.128\/25", + "version":54716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.177.0", + "prefixLen":25, + "network":"193.209.177.0\/25", + "version":54715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.177.0", + "prefixLen":25, + "network":"193.209.177.0\/25", + "version":54715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.177.128", + "prefixLen":25, + "network":"193.209.177.128\/25", + "version":54714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.177.128", + "prefixLen":25, + "network":"193.209.177.128\/25", + "version":54714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.178.0", + "prefixLen":25, + "network":"193.209.178.0\/25", + "version":54713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.178.0", + "prefixLen":25, + "network":"193.209.178.0\/25", + "version":54713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.178.128", + "prefixLen":25, + "network":"193.209.178.128\/25", + "version":54712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.178.128", + "prefixLen":25, + "network":"193.209.178.128\/25", + "version":54712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.179.0", + "prefixLen":25, + "network":"193.209.179.0\/25", + "version":54711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.179.0", + "prefixLen":25, + "network":"193.209.179.0\/25", + "version":54711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.179.128", + "prefixLen":25, + "network":"193.209.179.128\/25", + "version":54710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.179.128", + "prefixLen":25, + "network":"193.209.179.128\/25", + "version":54710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.192.0", + "prefixLen":25, + "network":"193.209.192.0\/25", + "version":54709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.192.0", + "prefixLen":25, + "network":"193.209.192.0\/25", + "version":54709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.192.128", + "prefixLen":25, + "network":"193.209.192.128\/25", + "version":54708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.192.128", + "prefixLen":25, + "network":"193.209.192.128\/25", + "version":54708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.193.0", + "prefixLen":25, + "network":"193.209.193.0\/25", + "version":54707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.193.0", + "prefixLen":25, + "network":"193.209.193.0\/25", + "version":54707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.193.128", + "prefixLen":25, + "network":"193.209.193.128\/25", + "version":54706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.193.128", + "prefixLen":25, + "network":"193.209.193.128\/25", + "version":54706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.194.0", + "prefixLen":25, + "network":"193.209.194.0\/25", + "version":54705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.194.0", + "prefixLen":25, + "network":"193.209.194.0\/25", + "version":54705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.194.128", + "prefixLen":25, + "network":"193.209.194.128\/25", + "version":54704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.194.128", + "prefixLen":25, + "network":"193.209.194.128\/25", + "version":54704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.195.0", + "prefixLen":25, + "network":"193.209.195.0\/25", + "version":54703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.195.0", + "prefixLen":25, + "network":"193.209.195.0\/25", + "version":54703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.195.128", + "prefixLen":25, + "network":"193.209.195.128\/25", + "version":54702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.195.128", + "prefixLen":25, + "network":"193.209.195.128\/25", + "version":54702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.208.0", + "prefixLen":25, + "network":"193.209.208.0\/25", + "version":54701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.208.0", + "prefixLen":25, + "network":"193.209.208.0\/25", + "version":54701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.208.128", + "prefixLen":25, + "network":"193.209.208.128\/25", + "version":54700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.208.128", + "prefixLen":25, + "network":"193.209.208.128\/25", + "version":54700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.209.0", + "prefixLen":25, + "network":"193.209.209.0\/25", + "version":54699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.209.0", + "prefixLen":25, + "network":"193.209.209.0\/25", + "version":54699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.209.128", + "prefixLen":25, + "network":"193.209.209.128\/25", + "version":54698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.209.128", + "prefixLen":25, + "network":"193.209.209.128\/25", + "version":54698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.210.0", + "prefixLen":25, + "network":"193.209.210.0\/25", + "version":54697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.210.0", + "prefixLen":25, + "network":"193.209.210.0\/25", + "version":54697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.210.128", + "prefixLen":25, + "network":"193.209.210.128\/25", + "version":54696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.210.128", + "prefixLen":25, + "network":"193.209.210.128\/25", + "version":54696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.211.0", + "prefixLen":25, + "network":"193.209.211.0\/25", + "version":54695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.211.0", + "prefixLen":25, + "network":"193.209.211.0\/25", + "version":54695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.211.128", + "prefixLen":25, + "network":"193.209.211.128\/25", + "version":54694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.211.128", + "prefixLen":25, + "network":"193.209.211.128\/25", + "version":54694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.224.0", + "prefixLen":25, + "network":"193.209.224.0\/25", + "version":54693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.224.0", + "prefixLen":25, + "network":"193.209.224.0\/25", + "version":54693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.224.128", + "prefixLen":25, + "network":"193.209.224.128\/25", + "version":54692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.224.128", + "prefixLen":25, + "network":"193.209.224.128\/25", + "version":54692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.225.0", + "prefixLen":25, + "network":"193.209.225.0\/25", + "version":54691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.225.0", + "prefixLen":25, + "network":"193.209.225.0\/25", + "version":54691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.225.128", + "prefixLen":25, + "network":"193.209.225.128\/25", + "version":54690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.225.128", + "prefixLen":25, + "network":"193.209.225.128\/25", + "version":54690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.226.0", + "prefixLen":25, + "network":"193.209.226.0\/25", + "version":54689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.226.0", + "prefixLen":25, + "network":"193.209.226.0\/25", + "version":54689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.226.128", + "prefixLen":25, + "network":"193.209.226.128\/25", + "version":54688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.226.128", + "prefixLen":25, + "network":"193.209.226.128\/25", + "version":54688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.227.0", + "prefixLen":25, + "network":"193.209.227.0\/25", + "version":54687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.227.0", + "prefixLen":25, + "network":"193.209.227.0\/25", + "version":54687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.227.128", + "prefixLen":25, + "network":"193.209.227.128\/25", + "version":54686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.227.128", + "prefixLen":25, + "network":"193.209.227.128\/25", + "version":54686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.240.0", + "prefixLen":25, + "network":"193.209.240.0\/25", + "version":54685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.240.0", + "prefixLen":25, + "network":"193.209.240.0\/25", + "version":54685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.240.128", + "prefixLen":25, + "network":"193.209.240.128\/25", + "version":54684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.240.128", + "prefixLen":25, + "network":"193.209.240.128\/25", + "version":54684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.241.0", + "prefixLen":25, + "network":"193.209.241.0\/25", + "version":54683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.241.0", + "prefixLen":25, + "network":"193.209.241.0\/25", + "version":54683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.241.128", + "prefixLen":25, + "network":"193.209.241.128\/25", + "version":54682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.241.128", + "prefixLen":25, + "network":"193.209.241.128\/25", + "version":54682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.242.0", + "prefixLen":25, + "network":"193.209.242.0\/25", + "version":54681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.242.0", + "prefixLen":25, + "network":"193.209.242.0\/25", + "version":54681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.242.128", + "prefixLen":25, + "network":"193.209.242.128\/25", + "version":54680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.242.128", + "prefixLen":25, + "network":"193.209.242.128\/25", + "version":54680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.243.0", + "prefixLen":25, + "network":"193.209.243.0\/25", + "version":54679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.243.0", + "prefixLen":25, + "network":"193.209.243.0\/25", + "version":54679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.209.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.209.243.128", + "prefixLen":25, + "network":"193.209.243.128\/25", + "version":54678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.209.243.128", + "prefixLen":25, + "network":"193.209.243.128\/25", + "version":54678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64897 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.0.0", + "prefixLen":25, + "network":"193.210.0.0\/25", + "version":54805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.0.0", + "prefixLen":25, + "network":"193.210.0.0\/25", + "version":54805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.0.128", + "prefixLen":25, + "network":"193.210.0.128\/25", + "version":54932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.0.128", + "prefixLen":25, + "network":"193.210.0.128\/25", + "version":54932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.1.0", + "prefixLen":25, + "network":"193.210.1.0\/25", + "version":54931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.1.0", + "prefixLen":25, + "network":"193.210.1.0\/25", + "version":54931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.1.128", + "prefixLen":25, + "network":"193.210.1.128\/25", + "version":54930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.1.128", + "prefixLen":25, + "network":"193.210.1.128\/25", + "version":54930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.2.0", + "prefixLen":25, + "network":"193.210.2.0\/25", + "version":54929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.2.0", + "prefixLen":25, + "network":"193.210.2.0\/25", + "version":54929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.2.128", + "prefixLen":25, + "network":"193.210.2.128\/25", + "version":54928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.2.128", + "prefixLen":25, + "network":"193.210.2.128\/25", + "version":54928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.3.0", + "prefixLen":25, + "network":"193.210.3.0\/25", + "version":54927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.3.0", + "prefixLen":25, + "network":"193.210.3.0\/25", + "version":54927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.3.128", + "prefixLen":25, + "network":"193.210.3.128\/25", + "version":54926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.3.128", + "prefixLen":25, + "network":"193.210.3.128\/25", + "version":54926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.16.0", + "prefixLen":25, + "network":"193.210.16.0\/25", + "version":54925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.16.0", + "prefixLen":25, + "network":"193.210.16.0\/25", + "version":54925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.16.128", + "prefixLen":25, + "network":"193.210.16.128\/25", + "version":54924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.16.128", + "prefixLen":25, + "network":"193.210.16.128\/25", + "version":54924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.17.0", + "prefixLen":25, + "network":"193.210.17.0\/25", + "version":54923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.17.0", + "prefixLen":25, + "network":"193.210.17.0\/25", + "version":54923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.17.128", + "prefixLen":25, + "network":"193.210.17.128\/25", + "version":54922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.17.128", + "prefixLen":25, + "network":"193.210.17.128\/25", + "version":54922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.18.0", + "prefixLen":25, + "network":"193.210.18.0\/25", + "version":54921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.18.0", + "prefixLen":25, + "network":"193.210.18.0\/25", + "version":54921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.18.128", + "prefixLen":25, + "network":"193.210.18.128\/25", + "version":54920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.18.128", + "prefixLen":25, + "network":"193.210.18.128\/25", + "version":54920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.19.0", + "prefixLen":25, + "network":"193.210.19.0\/25", + "version":54919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.19.0", + "prefixLen":25, + "network":"193.210.19.0\/25", + "version":54919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.19.128", + "prefixLen":25, + "network":"193.210.19.128\/25", + "version":54918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.19.128", + "prefixLen":25, + "network":"193.210.19.128\/25", + "version":54918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.32.0", + "prefixLen":25, + "network":"193.210.32.0\/25", + "version":54917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.32.0", + "prefixLen":25, + "network":"193.210.32.0\/25", + "version":54917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.32.128", + "prefixLen":25, + "network":"193.210.32.128\/25", + "version":54916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.32.128", + "prefixLen":25, + "network":"193.210.32.128\/25", + "version":54916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.33.0", + "prefixLen":25, + "network":"193.210.33.0\/25", + "version":54915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.33.0", + "prefixLen":25, + "network":"193.210.33.0\/25", + "version":54915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.33.128", + "prefixLen":25, + "network":"193.210.33.128\/25", + "version":54914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.33.128", + "prefixLen":25, + "network":"193.210.33.128\/25", + "version":54914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.34.0", + "prefixLen":25, + "network":"193.210.34.0\/25", + "version":54913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.34.0", + "prefixLen":25, + "network":"193.210.34.0\/25", + "version":54913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.34.128", + "prefixLen":25, + "network":"193.210.34.128\/25", + "version":54912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.34.128", + "prefixLen":25, + "network":"193.210.34.128\/25", + "version":54912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.35.0", + "prefixLen":25, + "network":"193.210.35.0\/25", + "version":54911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.35.0", + "prefixLen":25, + "network":"193.210.35.0\/25", + "version":54911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.35.128", + "prefixLen":25, + "network":"193.210.35.128\/25", + "version":54910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.35.128", + "prefixLen":25, + "network":"193.210.35.128\/25", + "version":54910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.48.0", + "prefixLen":25, + "network":"193.210.48.0\/25", + "version":54909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.48.0", + "prefixLen":25, + "network":"193.210.48.0\/25", + "version":54909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.48.128", + "prefixLen":25, + "network":"193.210.48.128\/25", + "version":54908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.48.128", + "prefixLen":25, + "network":"193.210.48.128\/25", + "version":54908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.49.0", + "prefixLen":25, + "network":"193.210.49.0\/25", + "version":54907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.49.0", + "prefixLen":25, + "network":"193.210.49.0\/25", + "version":54907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.49.128", + "prefixLen":25, + "network":"193.210.49.128\/25", + "version":54906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.49.128", + "prefixLen":25, + "network":"193.210.49.128\/25", + "version":54906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.50.0", + "prefixLen":25, + "network":"193.210.50.0\/25", + "version":54905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.50.0", + "prefixLen":25, + "network":"193.210.50.0\/25", + "version":54905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.50.128", + "prefixLen":25, + "network":"193.210.50.128\/25", + "version":54904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.50.128", + "prefixLen":25, + "network":"193.210.50.128\/25", + "version":54904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.51.0", + "prefixLen":25, + "network":"193.210.51.0\/25", + "version":54903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.51.0", + "prefixLen":25, + "network":"193.210.51.0\/25", + "version":54903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.51.128", + "prefixLen":25, + "network":"193.210.51.128\/25", + "version":54902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.51.128", + "prefixLen":25, + "network":"193.210.51.128\/25", + "version":54902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.64.0", + "prefixLen":25, + "network":"193.210.64.0\/25", + "version":54901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.64.0", + "prefixLen":25, + "network":"193.210.64.0\/25", + "version":54901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.64.128", + "prefixLen":25, + "network":"193.210.64.128\/25", + "version":54900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.64.128", + "prefixLen":25, + "network":"193.210.64.128\/25", + "version":54900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.65.0", + "prefixLen":25, + "network":"193.210.65.0\/25", + "version":54899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.65.0", + "prefixLen":25, + "network":"193.210.65.0\/25", + "version":54899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.65.128", + "prefixLen":25, + "network":"193.210.65.128\/25", + "version":54898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.65.128", + "prefixLen":25, + "network":"193.210.65.128\/25", + "version":54898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.66.0", + "prefixLen":25, + "network":"193.210.66.0\/25", + "version":54897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.66.0", + "prefixLen":25, + "network":"193.210.66.0\/25", + "version":54897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.66.128", + "prefixLen":25, + "network":"193.210.66.128\/25", + "version":54896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.66.128", + "prefixLen":25, + "network":"193.210.66.128\/25", + "version":54896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.67.0", + "prefixLen":25, + "network":"193.210.67.0\/25", + "version":54895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.67.0", + "prefixLen":25, + "network":"193.210.67.0\/25", + "version":54895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.67.128", + "prefixLen":25, + "network":"193.210.67.128\/25", + "version":54894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.67.128", + "prefixLen":25, + "network":"193.210.67.128\/25", + "version":54894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.80.0", + "prefixLen":25, + "network":"193.210.80.0\/25", + "version":54893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.80.0", + "prefixLen":25, + "network":"193.210.80.0\/25", + "version":54893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.80.128", + "prefixLen":25, + "network":"193.210.80.128\/25", + "version":54892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.80.128", + "prefixLen":25, + "network":"193.210.80.128\/25", + "version":54892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.81.0", + "prefixLen":25, + "network":"193.210.81.0\/25", + "version":54891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.81.0", + "prefixLen":25, + "network":"193.210.81.0\/25", + "version":54891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.81.128", + "prefixLen":25, + "network":"193.210.81.128\/25", + "version":54890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.81.128", + "prefixLen":25, + "network":"193.210.81.128\/25", + "version":54890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.82.0", + "prefixLen":25, + "network":"193.210.82.0\/25", + "version":54889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.82.0", + "prefixLen":25, + "network":"193.210.82.0\/25", + "version":54889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.82.128", + "prefixLen":25, + "network":"193.210.82.128\/25", + "version":54888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.82.128", + "prefixLen":25, + "network":"193.210.82.128\/25", + "version":54888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.83.0", + "prefixLen":25, + "network":"193.210.83.0\/25", + "version":54887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.83.0", + "prefixLen":25, + "network":"193.210.83.0\/25", + "version":54887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.83.128", + "prefixLen":25, + "network":"193.210.83.128\/25", + "version":54886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.83.128", + "prefixLen":25, + "network":"193.210.83.128\/25", + "version":54886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.96.0", + "prefixLen":25, + "network":"193.210.96.0\/25", + "version":54885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.96.0", + "prefixLen":25, + "network":"193.210.96.0\/25", + "version":54885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.96.128", + "prefixLen":25, + "network":"193.210.96.128\/25", + "version":54884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.96.128", + "prefixLen":25, + "network":"193.210.96.128\/25", + "version":54884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.97.0", + "prefixLen":25, + "network":"193.210.97.0\/25", + "version":54883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.97.0", + "prefixLen":25, + "network":"193.210.97.0\/25", + "version":54883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.97.128", + "prefixLen":25, + "network":"193.210.97.128\/25", + "version":54882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.97.128", + "prefixLen":25, + "network":"193.210.97.128\/25", + "version":54882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.98.0", + "prefixLen":25, + "network":"193.210.98.0\/25", + "version":54881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.98.0", + "prefixLen":25, + "network":"193.210.98.0\/25", + "version":54881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.98.128", + "prefixLen":25, + "network":"193.210.98.128\/25", + "version":54880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.98.128", + "prefixLen":25, + "network":"193.210.98.128\/25", + "version":54880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.99.0", + "prefixLen":25, + "network":"193.210.99.0\/25", + "version":54879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.99.0", + "prefixLen":25, + "network":"193.210.99.0\/25", + "version":54879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.99.128", + "prefixLen":25, + "network":"193.210.99.128\/25", + "version":54878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.99.128", + "prefixLen":25, + "network":"193.210.99.128\/25", + "version":54878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.112.0", + "prefixLen":25, + "network":"193.210.112.0\/25", + "version":54877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.112.0", + "prefixLen":25, + "network":"193.210.112.0\/25", + "version":54877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.112.128", + "prefixLen":25, + "network":"193.210.112.128\/25", + "version":54876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.112.128", + "prefixLen":25, + "network":"193.210.112.128\/25", + "version":54876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.113.0", + "prefixLen":25, + "network":"193.210.113.0\/25", + "version":54875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.113.0", + "prefixLen":25, + "network":"193.210.113.0\/25", + "version":54875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.113.128", + "prefixLen":25, + "network":"193.210.113.128\/25", + "version":54874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.113.128", + "prefixLen":25, + "network":"193.210.113.128\/25", + "version":54874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.114.0", + "prefixLen":25, + "network":"193.210.114.0\/25", + "version":54873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.114.0", + "prefixLen":25, + "network":"193.210.114.0\/25", + "version":54873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.114.128", + "prefixLen":25, + "network":"193.210.114.128\/25", + "version":54872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.114.128", + "prefixLen":25, + "network":"193.210.114.128\/25", + "version":54872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.115.0", + "prefixLen":25, + "network":"193.210.115.0\/25", + "version":54871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.115.0", + "prefixLen":25, + "network":"193.210.115.0\/25", + "version":54871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.115.128", + "prefixLen":25, + "network":"193.210.115.128\/25", + "version":54870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.115.128", + "prefixLen":25, + "network":"193.210.115.128\/25", + "version":54870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.128.0", + "prefixLen":25, + "network":"193.210.128.0\/25", + "version":54869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.128.0", + "prefixLen":25, + "network":"193.210.128.0\/25", + "version":54869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.128.128", + "prefixLen":25, + "network":"193.210.128.128\/25", + "version":54868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.128.128", + "prefixLen":25, + "network":"193.210.128.128\/25", + "version":54868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.129.0", + "prefixLen":25, + "network":"193.210.129.0\/25", + "version":54867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.129.0", + "prefixLen":25, + "network":"193.210.129.0\/25", + "version":54867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.129.128", + "prefixLen":25, + "network":"193.210.129.128\/25", + "version":54866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.129.128", + "prefixLen":25, + "network":"193.210.129.128\/25", + "version":54866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.130.0", + "prefixLen":25, + "network":"193.210.130.0\/25", + "version":54865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.130.0", + "prefixLen":25, + "network":"193.210.130.0\/25", + "version":54865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.130.128", + "prefixLen":25, + "network":"193.210.130.128\/25", + "version":54864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.130.128", + "prefixLen":25, + "network":"193.210.130.128\/25", + "version":54864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.131.0", + "prefixLen":25, + "network":"193.210.131.0\/25", + "version":54863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.131.0", + "prefixLen":25, + "network":"193.210.131.0\/25", + "version":54863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.131.128", + "prefixLen":25, + "network":"193.210.131.128\/25", + "version":54862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.131.128", + "prefixLen":25, + "network":"193.210.131.128\/25", + "version":54862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.144.0", + "prefixLen":25, + "network":"193.210.144.0\/25", + "version":54861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.144.0", + "prefixLen":25, + "network":"193.210.144.0\/25", + "version":54861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.144.128", + "prefixLen":25, + "network":"193.210.144.128\/25", + "version":54860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.144.128", + "prefixLen":25, + "network":"193.210.144.128\/25", + "version":54860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.145.0", + "prefixLen":25, + "network":"193.210.145.0\/25", + "version":54859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.145.0", + "prefixLen":25, + "network":"193.210.145.0\/25", + "version":54859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.145.128", + "prefixLen":25, + "network":"193.210.145.128\/25", + "version":54858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.145.128", + "prefixLen":25, + "network":"193.210.145.128\/25", + "version":54858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.146.0", + "prefixLen":25, + "network":"193.210.146.0\/25", + "version":54857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.146.0", + "prefixLen":25, + "network":"193.210.146.0\/25", + "version":54857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.146.128", + "prefixLen":25, + "network":"193.210.146.128\/25", + "version":54856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.146.128", + "prefixLen":25, + "network":"193.210.146.128\/25", + "version":54856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.147.0", + "prefixLen":25, + "network":"193.210.147.0\/25", + "version":54855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.147.0", + "prefixLen":25, + "network":"193.210.147.0\/25", + "version":54855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.147.128", + "prefixLen":25, + "network":"193.210.147.128\/25", + "version":54854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.147.128", + "prefixLen":25, + "network":"193.210.147.128\/25", + "version":54854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.160.0", + "prefixLen":25, + "network":"193.210.160.0\/25", + "version":54853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.160.0", + "prefixLen":25, + "network":"193.210.160.0\/25", + "version":54853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.160.128", + "prefixLen":25, + "network":"193.210.160.128\/25", + "version":54852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.160.128", + "prefixLen":25, + "network":"193.210.160.128\/25", + "version":54852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.161.0", + "prefixLen":25, + "network":"193.210.161.0\/25", + "version":54851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.161.0", + "prefixLen":25, + "network":"193.210.161.0\/25", + "version":54851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.161.128", + "prefixLen":25, + "network":"193.210.161.128\/25", + "version":54850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.161.128", + "prefixLen":25, + "network":"193.210.161.128\/25", + "version":54850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.162.0", + "prefixLen":25, + "network":"193.210.162.0\/25", + "version":54849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.162.0", + "prefixLen":25, + "network":"193.210.162.0\/25", + "version":54849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.162.128", + "prefixLen":25, + "network":"193.210.162.128\/25", + "version":54848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.162.128", + "prefixLen":25, + "network":"193.210.162.128\/25", + "version":54848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.163.0", + "prefixLen":25, + "network":"193.210.163.0\/25", + "version":54847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.163.0", + "prefixLen":25, + "network":"193.210.163.0\/25", + "version":54847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.163.128", + "prefixLen":25, + "network":"193.210.163.128\/25", + "version":54846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.163.128", + "prefixLen":25, + "network":"193.210.163.128\/25", + "version":54846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.176.0", + "prefixLen":25, + "network":"193.210.176.0\/25", + "version":54845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.176.0", + "prefixLen":25, + "network":"193.210.176.0\/25", + "version":54845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.176.128", + "prefixLen":25, + "network":"193.210.176.128\/25", + "version":54844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.176.128", + "prefixLen":25, + "network":"193.210.176.128\/25", + "version":54844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.177.0", + "prefixLen":25, + "network":"193.210.177.0\/25", + "version":54843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.177.0", + "prefixLen":25, + "network":"193.210.177.0\/25", + "version":54843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.177.128", + "prefixLen":25, + "network":"193.210.177.128\/25", + "version":54842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.177.128", + "prefixLen":25, + "network":"193.210.177.128\/25", + "version":54842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.178.0", + "prefixLen":25, + "network":"193.210.178.0\/25", + "version":54841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.178.0", + "prefixLen":25, + "network":"193.210.178.0\/25", + "version":54841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.178.128", + "prefixLen":25, + "network":"193.210.178.128\/25", + "version":54840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.178.128", + "prefixLen":25, + "network":"193.210.178.128\/25", + "version":54840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.179.0", + "prefixLen":25, + "network":"193.210.179.0\/25", + "version":54839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.179.0", + "prefixLen":25, + "network":"193.210.179.0\/25", + "version":54839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.179.128", + "prefixLen":25, + "network":"193.210.179.128\/25", + "version":54838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.179.128", + "prefixLen":25, + "network":"193.210.179.128\/25", + "version":54838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.192.0", + "prefixLen":25, + "network":"193.210.192.0\/25", + "version":54837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.192.0", + "prefixLen":25, + "network":"193.210.192.0\/25", + "version":54837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.192.128", + "prefixLen":25, + "network":"193.210.192.128\/25", + "version":54836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.192.128", + "prefixLen":25, + "network":"193.210.192.128\/25", + "version":54836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.193.0", + "prefixLen":25, + "network":"193.210.193.0\/25", + "version":54835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.193.0", + "prefixLen":25, + "network":"193.210.193.0\/25", + "version":54835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.193.128", + "prefixLen":25, + "network":"193.210.193.128\/25", + "version":54834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.193.128", + "prefixLen":25, + "network":"193.210.193.128\/25", + "version":54834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.194.0", + "prefixLen":25, + "network":"193.210.194.0\/25", + "version":54833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.194.0", + "prefixLen":25, + "network":"193.210.194.0\/25", + "version":54833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.194.128", + "prefixLen":25, + "network":"193.210.194.128\/25", + "version":54832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.194.128", + "prefixLen":25, + "network":"193.210.194.128\/25", + "version":54832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.195.0", + "prefixLen":25, + "network":"193.210.195.0\/25", + "version":54831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.195.0", + "prefixLen":25, + "network":"193.210.195.0\/25", + "version":54831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.195.128", + "prefixLen":25, + "network":"193.210.195.128\/25", + "version":54830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.195.128", + "prefixLen":25, + "network":"193.210.195.128\/25", + "version":54830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.208.0", + "prefixLen":25, + "network":"193.210.208.0\/25", + "version":54829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.208.0", + "prefixLen":25, + "network":"193.210.208.0\/25", + "version":54829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.208.128", + "prefixLen":25, + "network":"193.210.208.128\/25", + "version":54828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.208.128", + "prefixLen":25, + "network":"193.210.208.128\/25", + "version":54828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.209.0", + "prefixLen":25, + "network":"193.210.209.0\/25", + "version":54827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.209.0", + "prefixLen":25, + "network":"193.210.209.0\/25", + "version":54827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.209.128", + "prefixLen":25, + "network":"193.210.209.128\/25", + "version":54826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.209.128", + "prefixLen":25, + "network":"193.210.209.128\/25", + "version":54826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.210.0", + "prefixLen":25, + "network":"193.210.210.0\/25", + "version":54825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.210.0", + "prefixLen":25, + "network":"193.210.210.0\/25", + "version":54825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.210.128", + "prefixLen":25, + "network":"193.210.210.128\/25", + "version":54824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.210.128", + "prefixLen":25, + "network":"193.210.210.128\/25", + "version":54824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.211.0", + "prefixLen":25, + "network":"193.210.211.0\/25", + "version":54823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.211.0", + "prefixLen":25, + "network":"193.210.211.0\/25", + "version":54823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.211.128", + "prefixLen":25, + "network":"193.210.211.128\/25", + "version":54822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.211.128", + "prefixLen":25, + "network":"193.210.211.128\/25", + "version":54822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.224.0", + "prefixLen":25, + "network":"193.210.224.0\/25", + "version":54821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.224.0", + "prefixLen":25, + "network":"193.210.224.0\/25", + "version":54821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.224.128", + "prefixLen":25, + "network":"193.210.224.128\/25", + "version":54820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.224.128", + "prefixLen":25, + "network":"193.210.224.128\/25", + "version":54820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.225.0", + "prefixLen":25, + "network":"193.210.225.0\/25", + "version":54819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.225.0", + "prefixLen":25, + "network":"193.210.225.0\/25", + "version":54819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.225.128", + "prefixLen":25, + "network":"193.210.225.128\/25", + "version":54818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.225.128", + "prefixLen":25, + "network":"193.210.225.128\/25", + "version":54818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.226.0", + "prefixLen":25, + "network":"193.210.226.0\/25", + "version":54817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.226.0", + "prefixLen":25, + "network":"193.210.226.0\/25", + "version":54817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.226.128", + "prefixLen":25, + "network":"193.210.226.128\/25", + "version":54816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.226.128", + "prefixLen":25, + "network":"193.210.226.128\/25", + "version":54816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.227.0", + "prefixLen":25, + "network":"193.210.227.0\/25", + "version":54815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.227.0", + "prefixLen":25, + "network":"193.210.227.0\/25", + "version":54815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.227.128", + "prefixLen":25, + "network":"193.210.227.128\/25", + "version":54814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.227.128", + "prefixLen":25, + "network":"193.210.227.128\/25", + "version":54814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.240.0", + "prefixLen":25, + "network":"193.210.240.0\/25", + "version":54813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.240.0", + "prefixLen":25, + "network":"193.210.240.0\/25", + "version":54813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.240.128", + "prefixLen":25, + "network":"193.210.240.128\/25", + "version":54812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.240.128", + "prefixLen":25, + "network":"193.210.240.128\/25", + "version":54812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.241.0", + "prefixLen":25, + "network":"193.210.241.0\/25", + "version":54811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.241.0", + "prefixLen":25, + "network":"193.210.241.0\/25", + "version":54811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.241.128", + "prefixLen":25, + "network":"193.210.241.128\/25", + "version":54810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.241.128", + "prefixLen":25, + "network":"193.210.241.128\/25", + "version":54810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.242.0", + "prefixLen":25, + "network":"193.210.242.0\/25", + "version":54809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.242.0", + "prefixLen":25, + "network":"193.210.242.0\/25", + "version":54809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.242.128", + "prefixLen":25, + "network":"193.210.242.128\/25", + "version":54808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.242.128", + "prefixLen":25, + "network":"193.210.242.128\/25", + "version":54808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.243.0", + "prefixLen":25, + "network":"193.210.243.0\/25", + "version":54807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.243.0", + "prefixLen":25, + "network":"193.210.243.0\/25", + "version":54807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.210.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.210.243.128", + "prefixLen":25, + "network":"193.210.243.128\/25", + "version":54806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.210.243.128", + "prefixLen":25, + "network":"193.210.243.128\/25", + "version":54806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64898 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.0.0", + "prefixLen":25, + "network":"193.211.0.0\/25", + "version":54933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.0.0", + "prefixLen":25, + "network":"193.211.0.0\/25", + "version":54933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.0.128", + "prefixLen":25, + "network":"193.211.0.128\/25", + "version":55060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.0.128", + "prefixLen":25, + "network":"193.211.0.128\/25", + "version":55060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.1.0", + "prefixLen":25, + "network":"193.211.1.0\/25", + "version":55059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.1.0", + "prefixLen":25, + "network":"193.211.1.0\/25", + "version":55059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.1.128", + "prefixLen":25, + "network":"193.211.1.128\/25", + "version":55058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.1.128", + "prefixLen":25, + "network":"193.211.1.128\/25", + "version":55058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.2.0", + "prefixLen":25, + "network":"193.211.2.0\/25", + "version":55057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.2.0", + "prefixLen":25, + "network":"193.211.2.0\/25", + "version":55057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.2.128", + "prefixLen":25, + "network":"193.211.2.128\/25", + "version":55056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.2.128", + "prefixLen":25, + "network":"193.211.2.128\/25", + "version":55056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.3.0", + "prefixLen":25, + "network":"193.211.3.0\/25", + "version":55055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.3.0", + "prefixLen":25, + "network":"193.211.3.0\/25", + "version":55055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.3.128", + "prefixLen":25, + "network":"193.211.3.128\/25", + "version":55054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.3.128", + "prefixLen":25, + "network":"193.211.3.128\/25", + "version":55054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.16.0", + "prefixLen":25, + "network":"193.211.16.0\/25", + "version":55053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.16.0", + "prefixLen":25, + "network":"193.211.16.0\/25", + "version":55053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.16.128", + "prefixLen":25, + "network":"193.211.16.128\/25", + "version":55052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.16.128", + "prefixLen":25, + "network":"193.211.16.128\/25", + "version":55052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.17.0", + "prefixLen":25, + "network":"193.211.17.0\/25", + "version":55051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.17.0", + "prefixLen":25, + "network":"193.211.17.0\/25", + "version":55051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.17.128", + "prefixLen":25, + "network":"193.211.17.128\/25", + "version":55050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.17.128", + "prefixLen":25, + "network":"193.211.17.128\/25", + "version":55050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.18.0", + "prefixLen":25, + "network":"193.211.18.0\/25", + "version":55049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.18.0", + "prefixLen":25, + "network":"193.211.18.0\/25", + "version":55049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.18.128", + "prefixLen":25, + "network":"193.211.18.128\/25", + "version":55048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.18.128", + "prefixLen":25, + "network":"193.211.18.128\/25", + "version":55048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.19.0", + "prefixLen":25, + "network":"193.211.19.0\/25", + "version":55047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.19.0", + "prefixLen":25, + "network":"193.211.19.0\/25", + "version":55047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.19.128", + "prefixLen":25, + "network":"193.211.19.128\/25", + "version":55046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.19.128", + "prefixLen":25, + "network":"193.211.19.128\/25", + "version":55046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.32.0", + "prefixLen":25, + "network":"193.211.32.0\/25", + "version":55045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.32.0", + "prefixLen":25, + "network":"193.211.32.0\/25", + "version":55045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.32.128", + "prefixLen":25, + "network":"193.211.32.128\/25", + "version":55044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.32.128", + "prefixLen":25, + "network":"193.211.32.128\/25", + "version":55044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.33.0", + "prefixLen":25, + "network":"193.211.33.0\/25", + "version":55043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.33.0", + "prefixLen":25, + "network":"193.211.33.0\/25", + "version":55043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.33.128", + "prefixLen":25, + "network":"193.211.33.128\/25", + "version":55042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.33.128", + "prefixLen":25, + "network":"193.211.33.128\/25", + "version":55042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.34.0", + "prefixLen":25, + "network":"193.211.34.0\/25", + "version":55041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.34.0", + "prefixLen":25, + "network":"193.211.34.0\/25", + "version":55041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.34.128", + "prefixLen":25, + "network":"193.211.34.128\/25", + "version":55040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.34.128", + "prefixLen":25, + "network":"193.211.34.128\/25", + "version":55040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.35.0", + "prefixLen":25, + "network":"193.211.35.0\/25", + "version":55039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.35.0", + "prefixLen":25, + "network":"193.211.35.0\/25", + "version":55039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.35.128", + "prefixLen":25, + "network":"193.211.35.128\/25", + "version":55038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.35.128", + "prefixLen":25, + "network":"193.211.35.128\/25", + "version":55038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.48.0", + "prefixLen":25, + "network":"193.211.48.0\/25", + "version":55037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.48.0", + "prefixLen":25, + "network":"193.211.48.0\/25", + "version":55037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.48.128", + "prefixLen":25, + "network":"193.211.48.128\/25", + "version":55036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.48.128", + "prefixLen":25, + "network":"193.211.48.128\/25", + "version":55036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.49.0", + "prefixLen":25, + "network":"193.211.49.0\/25", + "version":55035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.49.0", + "prefixLen":25, + "network":"193.211.49.0\/25", + "version":55035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.49.128", + "prefixLen":25, + "network":"193.211.49.128\/25", + "version":55034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.49.128", + "prefixLen":25, + "network":"193.211.49.128\/25", + "version":55034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.50.0", + "prefixLen":25, + "network":"193.211.50.0\/25", + "version":55033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.50.0", + "prefixLen":25, + "network":"193.211.50.0\/25", + "version":55033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.50.128", + "prefixLen":25, + "network":"193.211.50.128\/25", + "version":55032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.50.128", + "prefixLen":25, + "network":"193.211.50.128\/25", + "version":55032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.51.0", + "prefixLen":25, + "network":"193.211.51.0\/25", + "version":55031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.51.0", + "prefixLen":25, + "network":"193.211.51.0\/25", + "version":55031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.51.128", + "prefixLen":25, + "network":"193.211.51.128\/25", + "version":55030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.51.128", + "prefixLen":25, + "network":"193.211.51.128\/25", + "version":55030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.64.0", + "prefixLen":25, + "network":"193.211.64.0\/25", + "version":55029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.64.0", + "prefixLen":25, + "network":"193.211.64.0\/25", + "version":55029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.64.128", + "prefixLen":25, + "network":"193.211.64.128\/25", + "version":55028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.64.128", + "prefixLen":25, + "network":"193.211.64.128\/25", + "version":55028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.65.0", + "prefixLen":25, + "network":"193.211.65.0\/25", + "version":55027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.65.0", + "prefixLen":25, + "network":"193.211.65.0\/25", + "version":55027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.65.128", + "prefixLen":25, + "network":"193.211.65.128\/25", + "version":55026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.65.128", + "prefixLen":25, + "network":"193.211.65.128\/25", + "version":55026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.66.0", + "prefixLen":25, + "network":"193.211.66.0\/25", + "version":55025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.66.0", + "prefixLen":25, + "network":"193.211.66.0\/25", + "version":55025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.66.128", + "prefixLen":25, + "network":"193.211.66.128\/25", + "version":55024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.66.128", + "prefixLen":25, + "network":"193.211.66.128\/25", + "version":55024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.67.0", + "prefixLen":25, + "network":"193.211.67.0\/25", + "version":55023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.67.0", + "prefixLen":25, + "network":"193.211.67.0\/25", + "version":55023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.67.128", + "prefixLen":25, + "network":"193.211.67.128\/25", + "version":55022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.67.128", + "prefixLen":25, + "network":"193.211.67.128\/25", + "version":55022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.80.0", + "prefixLen":25, + "network":"193.211.80.0\/25", + "version":55021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.80.0", + "prefixLen":25, + "network":"193.211.80.0\/25", + "version":55021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.80.128", + "prefixLen":25, + "network":"193.211.80.128\/25", + "version":55020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.80.128", + "prefixLen":25, + "network":"193.211.80.128\/25", + "version":55020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.81.0", + "prefixLen":25, + "network":"193.211.81.0\/25", + "version":55019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.81.0", + "prefixLen":25, + "network":"193.211.81.0\/25", + "version":55019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.81.128", + "prefixLen":25, + "network":"193.211.81.128\/25", + "version":55018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.81.128", + "prefixLen":25, + "network":"193.211.81.128\/25", + "version":55018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.82.0", + "prefixLen":25, + "network":"193.211.82.0\/25", + "version":55017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.82.0", + "prefixLen":25, + "network":"193.211.82.0\/25", + "version":55017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.82.128", + "prefixLen":25, + "network":"193.211.82.128\/25", + "version":55016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.82.128", + "prefixLen":25, + "network":"193.211.82.128\/25", + "version":55016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.83.0", + "prefixLen":25, + "network":"193.211.83.0\/25", + "version":55015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.83.0", + "prefixLen":25, + "network":"193.211.83.0\/25", + "version":55015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.83.128", + "prefixLen":25, + "network":"193.211.83.128\/25", + "version":55014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.83.128", + "prefixLen":25, + "network":"193.211.83.128\/25", + "version":55014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.96.0", + "prefixLen":25, + "network":"193.211.96.0\/25", + "version":55013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.96.0", + "prefixLen":25, + "network":"193.211.96.0\/25", + "version":55013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.96.128", + "prefixLen":25, + "network":"193.211.96.128\/25", + "version":55012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.96.128", + "prefixLen":25, + "network":"193.211.96.128\/25", + "version":55012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.97.0", + "prefixLen":25, + "network":"193.211.97.0\/25", + "version":55011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.97.0", + "prefixLen":25, + "network":"193.211.97.0\/25", + "version":55011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.97.128", + "prefixLen":25, + "network":"193.211.97.128\/25", + "version":55010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.97.128", + "prefixLen":25, + "network":"193.211.97.128\/25", + "version":55010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.98.0", + "prefixLen":25, + "network":"193.211.98.0\/25", + "version":55009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.98.0", + "prefixLen":25, + "network":"193.211.98.0\/25", + "version":55009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.98.128", + "prefixLen":25, + "network":"193.211.98.128\/25", + "version":55008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.98.128", + "prefixLen":25, + "network":"193.211.98.128\/25", + "version":55008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.99.0", + "prefixLen":25, + "network":"193.211.99.0\/25", + "version":55007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.99.0", + "prefixLen":25, + "network":"193.211.99.0\/25", + "version":55007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.99.128", + "prefixLen":25, + "network":"193.211.99.128\/25", + "version":55006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.99.128", + "prefixLen":25, + "network":"193.211.99.128\/25", + "version":55006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.112.0", + "prefixLen":25, + "network":"193.211.112.0\/25", + "version":55005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.112.0", + "prefixLen":25, + "network":"193.211.112.0\/25", + "version":55005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.112.128", + "prefixLen":25, + "network":"193.211.112.128\/25", + "version":55004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.112.128", + "prefixLen":25, + "network":"193.211.112.128\/25", + "version":55004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.113.0", + "prefixLen":25, + "network":"193.211.113.0\/25", + "version":55003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.113.0", + "prefixLen":25, + "network":"193.211.113.0\/25", + "version":55003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.113.128", + "prefixLen":25, + "network":"193.211.113.128\/25", + "version":55002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.113.128", + "prefixLen":25, + "network":"193.211.113.128\/25", + "version":55002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.114.0", + "prefixLen":25, + "network":"193.211.114.0\/25", + "version":55001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.114.0", + "prefixLen":25, + "network":"193.211.114.0\/25", + "version":55001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.114.128", + "prefixLen":25, + "network":"193.211.114.128\/25", + "version":55000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.114.128", + "prefixLen":25, + "network":"193.211.114.128\/25", + "version":55000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.115.0", + "prefixLen":25, + "network":"193.211.115.0\/25", + "version":54999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.115.0", + "prefixLen":25, + "network":"193.211.115.0\/25", + "version":54999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.115.128", + "prefixLen":25, + "network":"193.211.115.128\/25", + "version":54998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.115.128", + "prefixLen":25, + "network":"193.211.115.128\/25", + "version":54998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.128.0", + "prefixLen":25, + "network":"193.211.128.0\/25", + "version":54997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.128.0", + "prefixLen":25, + "network":"193.211.128.0\/25", + "version":54997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.128.128", + "prefixLen":25, + "network":"193.211.128.128\/25", + "version":54996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.128.128", + "prefixLen":25, + "network":"193.211.128.128\/25", + "version":54996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.129.0", + "prefixLen":25, + "network":"193.211.129.0\/25", + "version":54995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.129.0", + "prefixLen":25, + "network":"193.211.129.0\/25", + "version":54995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.129.128", + "prefixLen":25, + "network":"193.211.129.128\/25", + "version":54994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.129.128", + "prefixLen":25, + "network":"193.211.129.128\/25", + "version":54994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.130.0", + "prefixLen":25, + "network":"193.211.130.0\/25", + "version":54993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.130.0", + "prefixLen":25, + "network":"193.211.130.0\/25", + "version":54993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.130.128", + "prefixLen":25, + "network":"193.211.130.128\/25", + "version":54992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.130.128", + "prefixLen":25, + "network":"193.211.130.128\/25", + "version":54992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.131.0", + "prefixLen":25, + "network":"193.211.131.0\/25", + "version":54991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.131.0", + "prefixLen":25, + "network":"193.211.131.0\/25", + "version":54991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.131.128", + "prefixLen":25, + "network":"193.211.131.128\/25", + "version":54990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.131.128", + "prefixLen":25, + "network":"193.211.131.128\/25", + "version":54990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.144.0", + "prefixLen":25, + "network":"193.211.144.0\/25", + "version":54989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.144.0", + "prefixLen":25, + "network":"193.211.144.0\/25", + "version":54989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.144.128", + "prefixLen":25, + "network":"193.211.144.128\/25", + "version":54988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.144.128", + "prefixLen":25, + "network":"193.211.144.128\/25", + "version":54988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.145.0", + "prefixLen":25, + "network":"193.211.145.0\/25", + "version":54987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.145.0", + "prefixLen":25, + "network":"193.211.145.0\/25", + "version":54987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.145.128", + "prefixLen":25, + "network":"193.211.145.128\/25", + "version":54986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.145.128", + "prefixLen":25, + "network":"193.211.145.128\/25", + "version":54986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.146.0", + "prefixLen":25, + "network":"193.211.146.0\/25", + "version":54985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.146.0", + "prefixLen":25, + "network":"193.211.146.0\/25", + "version":54985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.146.128", + "prefixLen":25, + "network":"193.211.146.128\/25", + "version":54984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.146.128", + "prefixLen":25, + "network":"193.211.146.128\/25", + "version":54984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.147.0", + "prefixLen":25, + "network":"193.211.147.0\/25", + "version":54983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.147.0", + "prefixLen":25, + "network":"193.211.147.0\/25", + "version":54983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.147.128", + "prefixLen":25, + "network":"193.211.147.128\/25", + "version":54982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.147.128", + "prefixLen":25, + "network":"193.211.147.128\/25", + "version":54982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.160.0", + "prefixLen":25, + "network":"193.211.160.0\/25", + "version":54981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.160.0", + "prefixLen":25, + "network":"193.211.160.0\/25", + "version":54981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.160.128", + "prefixLen":25, + "network":"193.211.160.128\/25", + "version":54980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.160.128", + "prefixLen":25, + "network":"193.211.160.128\/25", + "version":54980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.161.0", + "prefixLen":25, + "network":"193.211.161.0\/25", + "version":54979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.161.0", + "prefixLen":25, + "network":"193.211.161.0\/25", + "version":54979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.161.128", + "prefixLen":25, + "network":"193.211.161.128\/25", + "version":54978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.161.128", + "prefixLen":25, + "network":"193.211.161.128\/25", + "version":54978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.162.0", + "prefixLen":25, + "network":"193.211.162.0\/25", + "version":54977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.162.0", + "prefixLen":25, + "network":"193.211.162.0\/25", + "version":54977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.162.128", + "prefixLen":25, + "network":"193.211.162.128\/25", + "version":54976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.162.128", + "prefixLen":25, + "network":"193.211.162.128\/25", + "version":54976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.163.0", + "prefixLen":25, + "network":"193.211.163.0\/25", + "version":54975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.163.0", + "prefixLen":25, + "network":"193.211.163.0\/25", + "version":54975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.163.128", + "prefixLen":25, + "network":"193.211.163.128\/25", + "version":54974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.163.128", + "prefixLen":25, + "network":"193.211.163.128\/25", + "version":54974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.176.0", + "prefixLen":25, + "network":"193.211.176.0\/25", + "version":54973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.176.0", + "prefixLen":25, + "network":"193.211.176.0\/25", + "version":54973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.176.128", + "prefixLen":25, + "network":"193.211.176.128\/25", + "version":54972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.176.128", + "prefixLen":25, + "network":"193.211.176.128\/25", + "version":54972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.177.0", + "prefixLen":25, + "network":"193.211.177.0\/25", + "version":54971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.177.0", + "prefixLen":25, + "network":"193.211.177.0\/25", + "version":54971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.177.128", + "prefixLen":25, + "network":"193.211.177.128\/25", + "version":54970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.177.128", + "prefixLen":25, + "network":"193.211.177.128\/25", + "version":54970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.178.0", + "prefixLen":25, + "network":"193.211.178.0\/25", + "version":54969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.178.0", + "prefixLen":25, + "network":"193.211.178.0\/25", + "version":54969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.178.128", + "prefixLen":25, + "network":"193.211.178.128\/25", + "version":54968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.178.128", + "prefixLen":25, + "network":"193.211.178.128\/25", + "version":54968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.179.0", + "prefixLen":25, + "network":"193.211.179.0\/25", + "version":54967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.179.0", + "prefixLen":25, + "network":"193.211.179.0\/25", + "version":54967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.179.128", + "prefixLen":25, + "network":"193.211.179.128\/25", + "version":54966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.179.128", + "prefixLen":25, + "network":"193.211.179.128\/25", + "version":54966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.192.0", + "prefixLen":25, + "network":"193.211.192.0\/25", + "version":54965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.192.0", + "prefixLen":25, + "network":"193.211.192.0\/25", + "version":54965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.192.128", + "prefixLen":25, + "network":"193.211.192.128\/25", + "version":54964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.192.128", + "prefixLen":25, + "network":"193.211.192.128\/25", + "version":54964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.193.0", + "prefixLen":25, + "network":"193.211.193.0\/25", + "version":54963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.193.0", + "prefixLen":25, + "network":"193.211.193.0\/25", + "version":54963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.193.128", + "prefixLen":25, + "network":"193.211.193.128\/25", + "version":54962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.193.128", + "prefixLen":25, + "network":"193.211.193.128\/25", + "version":54962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.194.0", + "prefixLen":25, + "network":"193.211.194.0\/25", + "version":54961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.194.0", + "prefixLen":25, + "network":"193.211.194.0\/25", + "version":54961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.194.128", + "prefixLen":25, + "network":"193.211.194.128\/25", + "version":54960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.194.128", + "prefixLen":25, + "network":"193.211.194.128\/25", + "version":54960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.195.0", + "prefixLen":25, + "network":"193.211.195.0\/25", + "version":54959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.195.0", + "prefixLen":25, + "network":"193.211.195.0\/25", + "version":54959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.195.128", + "prefixLen":25, + "network":"193.211.195.128\/25", + "version":54958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.195.128", + "prefixLen":25, + "network":"193.211.195.128\/25", + "version":54958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.208.0", + "prefixLen":25, + "network":"193.211.208.0\/25", + "version":54957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.208.0", + "prefixLen":25, + "network":"193.211.208.0\/25", + "version":54957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.208.128", + "prefixLen":25, + "network":"193.211.208.128\/25", + "version":54956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.208.128", + "prefixLen":25, + "network":"193.211.208.128\/25", + "version":54956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.209.0", + "prefixLen":25, + "network":"193.211.209.0\/25", + "version":54955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.209.0", + "prefixLen":25, + "network":"193.211.209.0\/25", + "version":54955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.209.128", + "prefixLen":25, + "network":"193.211.209.128\/25", + "version":54954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.209.128", + "prefixLen":25, + "network":"193.211.209.128\/25", + "version":54954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.210.0", + "prefixLen":25, + "network":"193.211.210.0\/25", + "version":54953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.210.0", + "prefixLen":25, + "network":"193.211.210.0\/25", + "version":54953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.210.128", + "prefixLen":25, + "network":"193.211.210.128\/25", + "version":54952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.210.128", + "prefixLen":25, + "network":"193.211.210.128\/25", + "version":54952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.211.0", + "prefixLen":25, + "network":"193.211.211.0\/25", + "version":54951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.211.0", + "prefixLen":25, + "network":"193.211.211.0\/25", + "version":54951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.211.128", + "prefixLen":25, + "network":"193.211.211.128\/25", + "version":54950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.211.128", + "prefixLen":25, + "network":"193.211.211.128\/25", + "version":54950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.224.0", + "prefixLen":25, + "network":"193.211.224.0\/25", + "version":54949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.224.0", + "prefixLen":25, + "network":"193.211.224.0\/25", + "version":54949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.224.128", + "prefixLen":25, + "network":"193.211.224.128\/25", + "version":54948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.224.128", + "prefixLen":25, + "network":"193.211.224.128\/25", + "version":54948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.225.0", + "prefixLen":25, + "network":"193.211.225.0\/25", + "version":54947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.225.0", + "prefixLen":25, + "network":"193.211.225.0\/25", + "version":54947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.225.128", + "prefixLen":25, + "network":"193.211.225.128\/25", + "version":54946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.225.128", + "prefixLen":25, + "network":"193.211.225.128\/25", + "version":54946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.226.0", + "prefixLen":25, + "network":"193.211.226.0\/25", + "version":54945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.226.0", + "prefixLen":25, + "network":"193.211.226.0\/25", + "version":54945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.226.128", + "prefixLen":25, + "network":"193.211.226.128\/25", + "version":54944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.226.128", + "prefixLen":25, + "network":"193.211.226.128\/25", + "version":54944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.227.0", + "prefixLen":25, + "network":"193.211.227.0\/25", + "version":54943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.227.0", + "prefixLen":25, + "network":"193.211.227.0\/25", + "version":54943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.227.128", + "prefixLen":25, + "network":"193.211.227.128\/25", + "version":54942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.227.128", + "prefixLen":25, + "network":"193.211.227.128\/25", + "version":54942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.240.0", + "prefixLen":25, + "network":"193.211.240.0\/25", + "version":54941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.240.0", + "prefixLen":25, + "network":"193.211.240.0\/25", + "version":54941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.240.128", + "prefixLen":25, + "network":"193.211.240.128\/25", + "version":54940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.240.128", + "prefixLen":25, + "network":"193.211.240.128\/25", + "version":54940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.241.0", + "prefixLen":25, + "network":"193.211.241.0\/25", + "version":54939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.241.0", + "prefixLen":25, + "network":"193.211.241.0\/25", + "version":54939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.241.128", + "prefixLen":25, + "network":"193.211.241.128\/25", + "version":54938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.241.128", + "prefixLen":25, + "network":"193.211.241.128\/25", + "version":54938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.242.0", + "prefixLen":25, + "network":"193.211.242.0\/25", + "version":54937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.242.0", + "prefixLen":25, + "network":"193.211.242.0\/25", + "version":54937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.242.128", + "prefixLen":25, + "network":"193.211.242.128\/25", + "version":54936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.242.128", + "prefixLen":25, + "network":"193.211.242.128\/25", + "version":54936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.243.0", + "prefixLen":25, + "network":"193.211.243.0\/25", + "version":54935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.243.0", + "prefixLen":25, + "network":"193.211.243.0\/25", + "version":54935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.211.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.211.243.128", + "prefixLen":25, + "network":"193.211.243.128\/25", + "version":54934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.211.243.128", + "prefixLen":25, + "network":"193.211.243.128\/25", + "version":54934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64899 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.0.0", + "prefixLen":25, + "network":"193.212.0.0\/25", + "version":55061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.0.0", + "prefixLen":25, + "network":"193.212.0.0\/25", + "version":55061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.0.128", + "prefixLen":25, + "network":"193.212.0.128\/25", + "version":55188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.0.128", + "prefixLen":25, + "network":"193.212.0.128\/25", + "version":55188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.1.0", + "prefixLen":25, + "network":"193.212.1.0\/25", + "version":55187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.1.0", + "prefixLen":25, + "network":"193.212.1.0\/25", + "version":55187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.1.128", + "prefixLen":25, + "network":"193.212.1.128\/25", + "version":55186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.1.128", + "prefixLen":25, + "network":"193.212.1.128\/25", + "version":55186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.2.0", + "prefixLen":25, + "network":"193.212.2.0\/25", + "version":55185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.2.0", + "prefixLen":25, + "network":"193.212.2.0\/25", + "version":55185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.2.128", + "prefixLen":25, + "network":"193.212.2.128\/25", + "version":55184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.2.128", + "prefixLen":25, + "network":"193.212.2.128\/25", + "version":55184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.3.0", + "prefixLen":25, + "network":"193.212.3.0\/25", + "version":55183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.3.0", + "prefixLen":25, + "network":"193.212.3.0\/25", + "version":55183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.3.128", + "prefixLen":25, + "network":"193.212.3.128\/25", + "version":55182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.3.128", + "prefixLen":25, + "network":"193.212.3.128\/25", + "version":55182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.16.0", + "prefixLen":25, + "network":"193.212.16.0\/25", + "version":55181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.16.0", + "prefixLen":25, + "network":"193.212.16.0\/25", + "version":55181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.16.128", + "prefixLen":25, + "network":"193.212.16.128\/25", + "version":55180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.16.128", + "prefixLen":25, + "network":"193.212.16.128\/25", + "version":55180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.17.0", + "prefixLen":25, + "network":"193.212.17.0\/25", + "version":55179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.17.0", + "prefixLen":25, + "network":"193.212.17.0\/25", + "version":55179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.17.128", + "prefixLen":25, + "network":"193.212.17.128\/25", + "version":55178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.17.128", + "prefixLen":25, + "network":"193.212.17.128\/25", + "version":55178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.18.0", + "prefixLen":25, + "network":"193.212.18.0\/25", + "version":55177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.18.0", + "prefixLen":25, + "network":"193.212.18.0\/25", + "version":55177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.18.128", + "prefixLen":25, + "network":"193.212.18.128\/25", + "version":55176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.18.128", + "prefixLen":25, + "network":"193.212.18.128\/25", + "version":55176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.19.0", + "prefixLen":25, + "network":"193.212.19.0\/25", + "version":55175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.19.0", + "prefixLen":25, + "network":"193.212.19.0\/25", + "version":55175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.19.128", + "prefixLen":25, + "network":"193.212.19.128\/25", + "version":55174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.19.128", + "prefixLen":25, + "network":"193.212.19.128\/25", + "version":55174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.32.0", + "prefixLen":25, + "network":"193.212.32.0\/25", + "version":55173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.32.0", + "prefixLen":25, + "network":"193.212.32.0\/25", + "version":55173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.32.128", + "prefixLen":25, + "network":"193.212.32.128\/25", + "version":55172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.32.128", + "prefixLen":25, + "network":"193.212.32.128\/25", + "version":55172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.33.0", + "prefixLen":25, + "network":"193.212.33.0\/25", + "version":55171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.33.0", + "prefixLen":25, + "network":"193.212.33.0\/25", + "version":55171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.33.128", + "prefixLen":25, + "network":"193.212.33.128\/25", + "version":55170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.33.128", + "prefixLen":25, + "network":"193.212.33.128\/25", + "version":55170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.34.0", + "prefixLen":25, + "network":"193.212.34.0\/25", + "version":55169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.34.0", + "prefixLen":25, + "network":"193.212.34.0\/25", + "version":55169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.34.128", + "prefixLen":25, + "network":"193.212.34.128\/25", + "version":55168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.34.128", + "prefixLen":25, + "network":"193.212.34.128\/25", + "version":55168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.35.0", + "prefixLen":25, + "network":"193.212.35.0\/25", + "version":55167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.35.0", + "prefixLen":25, + "network":"193.212.35.0\/25", + "version":55167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.35.128", + "prefixLen":25, + "network":"193.212.35.128\/25", + "version":55166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.35.128", + "prefixLen":25, + "network":"193.212.35.128\/25", + "version":55166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.48.0", + "prefixLen":25, + "network":"193.212.48.0\/25", + "version":55165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.48.0", + "prefixLen":25, + "network":"193.212.48.0\/25", + "version":55165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.48.128", + "prefixLen":25, + "network":"193.212.48.128\/25", + "version":55164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.48.128", + "prefixLen":25, + "network":"193.212.48.128\/25", + "version":55164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.49.0", + "prefixLen":25, + "network":"193.212.49.0\/25", + "version":55163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.49.0", + "prefixLen":25, + "network":"193.212.49.0\/25", + "version":55163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.49.128", + "prefixLen":25, + "network":"193.212.49.128\/25", + "version":55162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.49.128", + "prefixLen":25, + "network":"193.212.49.128\/25", + "version":55162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.50.0", + "prefixLen":25, + "network":"193.212.50.0\/25", + "version":55161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.50.0", + "prefixLen":25, + "network":"193.212.50.0\/25", + "version":55161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.50.128", + "prefixLen":25, + "network":"193.212.50.128\/25", + "version":55160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.50.128", + "prefixLen":25, + "network":"193.212.50.128\/25", + "version":55160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.51.0", + "prefixLen":25, + "network":"193.212.51.0\/25", + "version":55159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.51.0", + "prefixLen":25, + "network":"193.212.51.0\/25", + "version":55159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.51.128", + "prefixLen":25, + "network":"193.212.51.128\/25", + "version":55158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.51.128", + "prefixLen":25, + "network":"193.212.51.128\/25", + "version":55158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.64.0", + "prefixLen":25, + "network":"193.212.64.0\/25", + "version":55157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.64.0", + "prefixLen":25, + "network":"193.212.64.0\/25", + "version":55157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.64.128", + "prefixLen":25, + "network":"193.212.64.128\/25", + "version":55156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.64.128", + "prefixLen":25, + "network":"193.212.64.128\/25", + "version":55156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.65.0", + "prefixLen":25, + "network":"193.212.65.0\/25", + "version":55155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.65.0", + "prefixLen":25, + "network":"193.212.65.0\/25", + "version":55155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.65.128", + "prefixLen":25, + "network":"193.212.65.128\/25", + "version":55154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.65.128", + "prefixLen":25, + "network":"193.212.65.128\/25", + "version":55154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.66.0", + "prefixLen":25, + "network":"193.212.66.0\/25", + "version":55153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.66.0", + "prefixLen":25, + "network":"193.212.66.0\/25", + "version":55153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.66.128", + "prefixLen":25, + "network":"193.212.66.128\/25", + "version":55152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.66.128", + "prefixLen":25, + "network":"193.212.66.128\/25", + "version":55152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.67.0", + "prefixLen":25, + "network":"193.212.67.0\/25", + "version":55151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.67.0", + "prefixLen":25, + "network":"193.212.67.0\/25", + "version":55151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.67.128", + "prefixLen":25, + "network":"193.212.67.128\/25", + "version":55150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.67.128", + "prefixLen":25, + "network":"193.212.67.128\/25", + "version":55150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.80.0", + "prefixLen":25, + "network":"193.212.80.0\/25", + "version":55149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.80.0", + "prefixLen":25, + "network":"193.212.80.0\/25", + "version":55149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.80.128", + "prefixLen":25, + "network":"193.212.80.128\/25", + "version":55148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.80.128", + "prefixLen":25, + "network":"193.212.80.128\/25", + "version":55148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.81.0", + "prefixLen":25, + "network":"193.212.81.0\/25", + "version":55147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.81.0", + "prefixLen":25, + "network":"193.212.81.0\/25", + "version":55147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.81.128", + "prefixLen":25, + "network":"193.212.81.128\/25", + "version":55146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.81.128", + "prefixLen":25, + "network":"193.212.81.128\/25", + "version":55146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.82.0", + "prefixLen":25, + "network":"193.212.82.0\/25", + "version":55145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.82.0", + "prefixLen":25, + "network":"193.212.82.0\/25", + "version":55145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.82.128", + "prefixLen":25, + "network":"193.212.82.128\/25", + "version":55144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.82.128", + "prefixLen":25, + "network":"193.212.82.128\/25", + "version":55144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.83.0", + "prefixLen":25, + "network":"193.212.83.0\/25", + "version":55143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.83.0", + "prefixLen":25, + "network":"193.212.83.0\/25", + "version":55143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.83.128", + "prefixLen":25, + "network":"193.212.83.128\/25", + "version":55142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.83.128", + "prefixLen":25, + "network":"193.212.83.128\/25", + "version":55142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.96.0", + "prefixLen":25, + "network":"193.212.96.0\/25", + "version":55141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.96.0", + "prefixLen":25, + "network":"193.212.96.0\/25", + "version":55141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.96.128", + "prefixLen":25, + "network":"193.212.96.128\/25", + "version":55140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.96.128", + "prefixLen":25, + "network":"193.212.96.128\/25", + "version":55140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.97.0", + "prefixLen":25, + "network":"193.212.97.0\/25", + "version":55139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.97.0", + "prefixLen":25, + "network":"193.212.97.0\/25", + "version":55139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.97.128", + "prefixLen":25, + "network":"193.212.97.128\/25", + "version":55138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.97.128", + "prefixLen":25, + "network":"193.212.97.128\/25", + "version":55138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.98.0", + "prefixLen":25, + "network":"193.212.98.0\/25", + "version":55137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.98.0", + "prefixLen":25, + "network":"193.212.98.0\/25", + "version":55137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.98.128", + "prefixLen":25, + "network":"193.212.98.128\/25", + "version":55136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.98.128", + "prefixLen":25, + "network":"193.212.98.128\/25", + "version":55136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.99.0", + "prefixLen":25, + "network":"193.212.99.0\/25", + "version":55135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.99.0", + "prefixLen":25, + "network":"193.212.99.0\/25", + "version":55135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.99.128", + "prefixLen":25, + "network":"193.212.99.128\/25", + "version":55134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.99.128", + "prefixLen":25, + "network":"193.212.99.128\/25", + "version":55134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.112.0", + "prefixLen":25, + "network":"193.212.112.0\/25", + "version":55133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.112.0", + "prefixLen":25, + "network":"193.212.112.0\/25", + "version":55133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.112.128", + "prefixLen":25, + "network":"193.212.112.128\/25", + "version":55132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.112.128", + "prefixLen":25, + "network":"193.212.112.128\/25", + "version":55132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.113.0", + "prefixLen":25, + "network":"193.212.113.0\/25", + "version":55131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.113.0", + "prefixLen":25, + "network":"193.212.113.0\/25", + "version":55131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.113.128", + "prefixLen":25, + "network":"193.212.113.128\/25", + "version":55130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.113.128", + "prefixLen":25, + "network":"193.212.113.128\/25", + "version":55130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.114.0", + "prefixLen":25, + "network":"193.212.114.0\/25", + "version":55129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.114.0", + "prefixLen":25, + "network":"193.212.114.0\/25", + "version":55129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.114.128", + "prefixLen":25, + "network":"193.212.114.128\/25", + "version":55128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.114.128", + "prefixLen":25, + "network":"193.212.114.128\/25", + "version":55128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.115.0", + "prefixLen":25, + "network":"193.212.115.0\/25", + "version":55127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.115.0", + "prefixLen":25, + "network":"193.212.115.0\/25", + "version":55127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.115.128", + "prefixLen":25, + "network":"193.212.115.128\/25", + "version":55126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.115.128", + "prefixLen":25, + "network":"193.212.115.128\/25", + "version":55126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.128.0", + "prefixLen":25, + "network":"193.212.128.0\/25", + "version":55125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.128.0", + "prefixLen":25, + "network":"193.212.128.0\/25", + "version":55125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.128.128", + "prefixLen":25, + "network":"193.212.128.128\/25", + "version":55124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.128.128", + "prefixLen":25, + "network":"193.212.128.128\/25", + "version":55124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.129.0", + "prefixLen":25, + "network":"193.212.129.0\/25", + "version":55123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.129.0", + "prefixLen":25, + "network":"193.212.129.0\/25", + "version":55123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.129.128", + "prefixLen":25, + "network":"193.212.129.128\/25", + "version":55122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.129.128", + "prefixLen":25, + "network":"193.212.129.128\/25", + "version":55122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.130.0", + "prefixLen":25, + "network":"193.212.130.0\/25", + "version":55121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.130.0", + "prefixLen":25, + "network":"193.212.130.0\/25", + "version":55121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.130.128", + "prefixLen":25, + "network":"193.212.130.128\/25", + "version":55120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.130.128", + "prefixLen":25, + "network":"193.212.130.128\/25", + "version":55120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.131.0", + "prefixLen":25, + "network":"193.212.131.0\/25", + "version":55119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.131.0", + "prefixLen":25, + "network":"193.212.131.0\/25", + "version":55119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.131.128", + "prefixLen":25, + "network":"193.212.131.128\/25", + "version":55118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.131.128", + "prefixLen":25, + "network":"193.212.131.128\/25", + "version":55118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.144.0", + "prefixLen":25, + "network":"193.212.144.0\/25", + "version":55117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.144.0", + "prefixLen":25, + "network":"193.212.144.0\/25", + "version":55117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.144.128", + "prefixLen":25, + "network":"193.212.144.128\/25", + "version":55116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.144.128", + "prefixLen":25, + "network":"193.212.144.128\/25", + "version":55116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.145.0", + "prefixLen":25, + "network":"193.212.145.0\/25", + "version":55115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.145.0", + "prefixLen":25, + "network":"193.212.145.0\/25", + "version":55115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.145.128", + "prefixLen":25, + "network":"193.212.145.128\/25", + "version":55114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.145.128", + "prefixLen":25, + "network":"193.212.145.128\/25", + "version":55114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.146.0", + "prefixLen":25, + "network":"193.212.146.0\/25", + "version":55113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.146.0", + "prefixLen":25, + "network":"193.212.146.0\/25", + "version":55113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.146.128", + "prefixLen":25, + "network":"193.212.146.128\/25", + "version":55112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.146.128", + "prefixLen":25, + "network":"193.212.146.128\/25", + "version":55112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.147.0", + "prefixLen":25, + "network":"193.212.147.0\/25", + "version":55111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.147.0", + "prefixLen":25, + "network":"193.212.147.0\/25", + "version":55111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.147.128", + "prefixLen":25, + "network":"193.212.147.128\/25", + "version":55110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.147.128", + "prefixLen":25, + "network":"193.212.147.128\/25", + "version":55110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.160.0", + "prefixLen":25, + "network":"193.212.160.0\/25", + "version":55109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.160.0", + "prefixLen":25, + "network":"193.212.160.0\/25", + "version":55109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.160.128", + "prefixLen":25, + "network":"193.212.160.128\/25", + "version":55108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.160.128", + "prefixLen":25, + "network":"193.212.160.128\/25", + "version":55108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.161.0", + "prefixLen":25, + "network":"193.212.161.0\/25", + "version":55107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.161.0", + "prefixLen":25, + "network":"193.212.161.0\/25", + "version":55107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.161.128", + "prefixLen":25, + "network":"193.212.161.128\/25", + "version":55106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.161.128", + "prefixLen":25, + "network":"193.212.161.128\/25", + "version":55106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.162.0", + "prefixLen":25, + "network":"193.212.162.0\/25", + "version":55105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.162.0", + "prefixLen":25, + "network":"193.212.162.0\/25", + "version":55105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.162.128", + "prefixLen":25, + "network":"193.212.162.128\/25", + "version":55104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.162.128", + "prefixLen":25, + "network":"193.212.162.128\/25", + "version":55104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.163.0", + "prefixLen":25, + "network":"193.212.163.0\/25", + "version":55103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.163.0", + "prefixLen":25, + "network":"193.212.163.0\/25", + "version":55103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.163.128", + "prefixLen":25, + "network":"193.212.163.128\/25", + "version":55102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.163.128", + "prefixLen":25, + "network":"193.212.163.128\/25", + "version":55102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.176.0", + "prefixLen":25, + "network":"193.212.176.0\/25", + "version":55101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.176.0", + "prefixLen":25, + "network":"193.212.176.0\/25", + "version":55101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.176.128", + "prefixLen":25, + "network":"193.212.176.128\/25", + "version":55100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.176.128", + "prefixLen":25, + "network":"193.212.176.128\/25", + "version":55100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.177.0", + "prefixLen":25, + "network":"193.212.177.0\/25", + "version":55099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.177.0", + "prefixLen":25, + "network":"193.212.177.0\/25", + "version":55099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.177.128", + "prefixLen":25, + "network":"193.212.177.128\/25", + "version":55098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.177.128", + "prefixLen":25, + "network":"193.212.177.128\/25", + "version":55098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.178.0", + "prefixLen":25, + "network":"193.212.178.0\/25", + "version":55097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.178.0", + "prefixLen":25, + "network":"193.212.178.0\/25", + "version":55097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.178.128", + "prefixLen":25, + "network":"193.212.178.128\/25", + "version":55096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.178.128", + "prefixLen":25, + "network":"193.212.178.128\/25", + "version":55096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.179.0", + "prefixLen":25, + "network":"193.212.179.0\/25", + "version":55095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.179.0", + "prefixLen":25, + "network":"193.212.179.0\/25", + "version":55095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.179.128", + "prefixLen":25, + "network":"193.212.179.128\/25", + "version":55094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.179.128", + "prefixLen":25, + "network":"193.212.179.128\/25", + "version":55094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.192.0", + "prefixLen":25, + "network":"193.212.192.0\/25", + "version":55093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.192.0", + "prefixLen":25, + "network":"193.212.192.0\/25", + "version":55093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.192.128", + "prefixLen":25, + "network":"193.212.192.128\/25", + "version":55092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.192.128", + "prefixLen":25, + "network":"193.212.192.128\/25", + "version":55092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.193.0", + "prefixLen":25, + "network":"193.212.193.0\/25", + "version":55091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.193.0", + "prefixLen":25, + "network":"193.212.193.0\/25", + "version":55091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.193.128", + "prefixLen":25, + "network":"193.212.193.128\/25", + "version":55090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.193.128", + "prefixLen":25, + "network":"193.212.193.128\/25", + "version":55090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.194.0", + "prefixLen":25, + "network":"193.212.194.0\/25", + "version":55089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.194.0", + "prefixLen":25, + "network":"193.212.194.0\/25", + "version":55089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.194.128", + "prefixLen":25, + "network":"193.212.194.128\/25", + "version":55088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.194.128", + "prefixLen":25, + "network":"193.212.194.128\/25", + "version":55088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.195.0", + "prefixLen":25, + "network":"193.212.195.0\/25", + "version":55087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.195.0", + "prefixLen":25, + "network":"193.212.195.0\/25", + "version":55087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.195.128", + "prefixLen":25, + "network":"193.212.195.128\/25", + "version":55086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.195.128", + "prefixLen":25, + "network":"193.212.195.128\/25", + "version":55086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.208.0", + "prefixLen":25, + "network":"193.212.208.0\/25", + "version":55085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.208.0", + "prefixLen":25, + "network":"193.212.208.0\/25", + "version":55085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.208.128", + "prefixLen":25, + "network":"193.212.208.128\/25", + "version":55084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.208.128", + "prefixLen":25, + "network":"193.212.208.128\/25", + "version":55084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.209.0", + "prefixLen":25, + "network":"193.212.209.0\/25", + "version":55083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.209.0", + "prefixLen":25, + "network":"193.212.209.0\/25", + "version":55083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.209.128", + "prefixLen":25, + "network":"193.212.209.128\/25", + "version":55082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.209.128", + "prefixLen":25, + "network":"193.212.209.128\/25", + "version":55082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.210.0", + "prefixLen":25, + "network":"193.212.210.0\/25", + "version":55081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.210.0", + "prefixLen":25, + "network":"193.212.210.0\/25", + "version":55081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.210.128", + "prefixLen":25, + "network":"193.212.210.128\/25", + "version":55080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.210.128", + "prefixLen":25, + "network":"193.212.210.128\/25", + "version":55080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.211.0", + "prefixLen":25, + "network":"193.212.211.0\/25", + "version":55079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.211.0", + "prefixLen":25, + "network":"193.212.211.0\/25", + "version":55079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.211.128", + "prefixLen":25, + "network":"193.212.211.128\/25", + "version":55078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.211.128", + "prefixLen":25, + "network":"193.212.211.128\/25", + "version":55078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.224.0", + "prefixLen":25, + "network":"193.212.224.0\/25", + "version":55077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.224.0", + "prefixLen":25, + "network":"193.212.224.0\/25", + "version":55077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.224.128", + "prefixLen":25, + "network":"193.212.224.128\/25", + "version":55076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.224.128", + "prefixLen":25, + "network":"193.212.224.128\/25", + "version":55076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.225.0", + "prefixLen":25, + "network":"193.212.225.0\/25", + "version":55075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.225.0", + "prefixLen":25, + "network":"193.212.225.0\/25", + "version":55075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.225.128", + "prefixLen":25, + "network":"193.212.225.128\/25", + "version":55074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.225.128", + "prefixLen":25, + "network":"193.212.225.128\/25", + "version":55074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.226.0", + "prefixLen":25, + "network":"193.212.226.0\/25", + "version":55073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.226.0", + "prefixLen":25, + "network":"193.212.226.0\/25", + "version":55073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.226.128", + "prefixLen":25, + "network":"193.212.226.128\/25", + "version":55072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.226.128", + "prefixLen":25, + "network":"193.212.226.128\/25", + "version":55072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.227.0", + "prefixLen":25, + "network":"193.212.227.0\/25", + "version":55071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.227.0", + "prefixLen":25, + "network":"193.212.227.0\/25", + "version":55071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.227.128", + "prefixLen":25, + "network":"193.212.227.128\/25", + "version":55070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.227.128", + "prefixLen":25, + "network":"193.212.227.128\/25", + "version":55070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.240.0", + "prefixLen":25, + "network":"193.212.240.0\/25", + "version":55069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.240.0", + "prefixLen":25, + "network":"193.212.240.0\/25", + "version":55069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.240.128", + "prefixLen":25, + "network":"193.212.240.128\/25", + "version":55068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.240.128", + "prefixLen":25, + "network":"193.212.240.128\/25", + "version":55068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.241.0", + "prefixLen":25, + "network":"193.212.241.0\/25", + "version":55067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.241.0", + "prefixLen":25, + "network":"193.212.241.0\/25", + "version":55067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.241.128", + "prefixLen":25, + "network":"193.212.241.128\/25", + "version":55066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.241.128", + "prefixLen":25, + "network":"193.212.241.128\/25", + "version":55066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.242.0", + "prefixLen":25, + "network":"193.212.242.0\/25", + "version":55065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.242.0", + "prefixLen":25, + "network":"193.212.242.0\/25", + "version":55065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.242.128", + "prefixLen":25, + "network":"193.212.242.128\/25", + "version":55064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.242.128", + "prefixLen":25, + "network":"193.212.242.128\/25", + "version":55064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.243.0", + "prefixLen":25, + "network":"193.212.243.0\/25", + "version":55063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.243.0", + "prefixLen":25, + "network":"193.212.243.0\/25", + "version":55063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.212.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.212.243.128", + "prefixLen":25, + "network":"193.212.243.128\/25", + "version":55062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.212.243.128", + "prefixLen":25, + "network":"193.212.243.128\/25", + "version":55062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64900 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.0.0", + "prefixLen":25, + "network":"193.213.0.0\/25", + "version":55189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.0.0", + "prefixLen":25, + "network":"193.213.0.0\/25", + "version":55189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.0.128", + "prefixLen":25, + "network":"193.213.0.128\/25", + "version":55316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.0.128", + "prefixLen":25, + "network":"193.213.0.128\/25", + "version":55316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.1.0", + "prefixLen":25, + "network":"193.213.1.0\/25", + "version":55315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.1.0", + "prefixLen":25, + "network":"193.213.1.0\/25", + "version":55315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.1.128", + "prefixLen":25, + "network":"193.213.1.128\/25", + "version":55314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.1.128", + "prefixLen":25, + "network":"193.213.1.128\/25", + "version":55314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.2.0", + "prefixLen":25, + "network":"193.213.2.0\/25", + "version":55313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.2.0", + "prefixLen":25, + "network":"193.213.2.0\/25", + "version":55313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.2.128", + "prefixLen":25, + "network":"193.213.2.128\/25", + "version":55312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.2.128", + "prefixLen":25, + "network":"193.213.2.128\/25", + "version":55312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.3.0", + "prefixLen":25, + "network":"193.213.3.0\/25", + "version":55311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.3.0", + "prefixLen":25, + "network":"193.213.3.0\/25", + "version":55311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.3.128", + "prefixLen":25, + "network":"193.213.3.128\/25", + "version":55310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.3.128", + "prefixLen":25, + "network":"193.213.3.128\/25", + "version":55310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.16.0", + "prefixLen":25, + "network":"193.213.16.0\/25", + "version":55309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.16.0", + "prefixLen":25, + "network":"193.213.16.0\/25", + "version":55309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.16.128", + "prefixLen":25, + "network":"193.213.16.128\/25", + "version":55308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.16.128", + "prefixLen":25, + "network":"193.213.16.128\/25", + "version":55308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.17.0", + "prefixLen":25, + "network":"193.213.17.0\/25", + "version":55307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.17.0", + "prefixLen":25, + "network":"193.213.17.0\/25", + "version":55307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.17.128", + "prefixLen":25, + "network":"193.213.17.128\/25", + "version":55306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.17.128", + "prefixLen":25, + "network":"193.213.17.128\/25", + "version":55306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.18.0", + "prefixLen":25, + "network":"193.213.18.0\/25", + "version":55305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.18.0", + "prefixLen":25, + "network":"193.213.18.0\/25", + "version":55305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.18.128", + "prefixLen":25, + "network":"193.213.18.128\/25", + "version":55304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.18.128", + "prefixLen":25, + "network":"193.213.18.128\/25", + "version":55304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.19.0", + "prefixLen":25, + "network":"193.213.19.0\/25", + "version":55303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.19.0", + "prefixLen":25, + "network":"193.213.19.0\/25", + "version":55303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.19.128", + "prefixLen":25, + "network":"193.213.19.128\/25", + "version":55302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.19.128", + "prefixLen":25, + "network":"193.213.19.128\/25", + "version":55302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.32.0", + "prefixLen":25, + "network":"193.213.32.0\/25", + "version":55301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.32.0", + "prefixLen":25, + "network":"193.213.32.0\/25", + "version":55301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.32.128", + "prefixLen":25, + "network":"193.213.32.128\/25", + "version":55300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.32.128", + "prefixLen":25, + "network":"193.213.32.128\/25", + "version":55300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.33.0", + "prefixLen":25, + "network":"193.213.33.0\/25", + "version":55299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.33.0", + "prefixLen":25, + "network":"193.213.33.0\/25", + "version":55299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.33.128", + "prefixLen":25, + "network":"193.213.33.128\/25", + "version":55298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.33.128", + "prefixLen":25, + "network":"193.213.33.128\/25", + "version":55298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.34.0", + "prefixLen":25, + "network":"193.213.34.0\/25", + "version":55297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.34.0", + "prefixLen":25, + "network":"193.213.34.0\/25", + "version":55297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.34.128", + "prefixLen":25, + "network":"193.213.34.128\/25", + "version":55296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.34.128", + "prefixLen":25, + "network":"193.213.34.128\/25", + "version":55296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.35.0", + "prefixLen":25, + "network":"193.213.35.0\/25", + "version":55295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.35.0", + "prefixLen":25, + "network":"193.213.35.0\/25", + "version":55295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.35.128", + "prefixLen":25, + "network":"193.213.35.128\/25", + "version":55294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.35.128", + "prefixLen":25, + "network":"193.213.35.128\/25", + "version":55294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.48.0", + "prefixLen":25, + "network":"193.213.48.0\/25", + "version":55293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.48.0", + "prefixLen":25, + "network":"193.213.48.0\/25", + "version":55293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.48.128", + "prefixLen":25, + "network":"193.213.48.128\/25", + "version":55292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.48.128", + "prefixLen":25, + "network":"193.213.48.128\/25", + "version":55292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.49.0", + "prefixLen":25, + "network":"193.213.49.0\/25", + "version":55291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.49.0", + "prefixLen":25, + "network":"193.213.49.0\/25", + "version":55291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.49.128", + "prefixLen":25, + "network":"193.213.49.128\/25", + "version":55290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.49.128", + "prefixLen":25, + "network":"193.213.49.128\/25", + "version":55290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.50.0", + "prefixLen":25, + "network":"193.213.50.0\/25", + "version":55289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.50.0", + "prefixLen":25, + "network":"193.213.50.0\/25", + "version":55289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.50.128", + "prefixLen":25, + "network":"193.213.50.128\/25", + "version":55288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.50.128", + "prefixLen":25, + "network":"193.213.50.128\/25", + "version":55288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.51.0", + "prefixLen":25, + "network":"193.213.51.0\/25", + "version":55287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.51.0", + "prefixLen":25, + "network":"193.213.51.0\/25", + "version":55287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.51.128", + "prefixLen":25, + "network":"193.213.51.128\/25", + "version":55286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.51.128", + "prefixLen":25, + "network":"193.213.51.128\/25", + "version":55286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.64.0", + "prefixLen":25, + "network":"193.213.64.0\/25", + "version":55285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.64.0", + "prefixLen":25, + "network":"193.213.64.0\/25", + "version":55285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.64.128", + "prefixLen":25, + "network":"193.213.64.128\/25", + "version":55284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.64.128", + "prefixLen":25, + "network":"193.213.64.128\/25", + "version":55284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.65.0", + "prefixLen":25, + "network":"193.213.65.0\/25", + "version":55283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.65.0", + "prefixLen":25, + "network":"193.213.65.0\/25", + "version":55283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.65.128", + "prefixLen":25, + "network":"193.213.65.128\/25", + "version":55282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.65.128", + "prefixLen":25, + "network":"193.213.65.128\/25", + "version":55282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.66.0", + "prefixLen":25, + "network":"193.213.66.0\/25", + "version":55281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.66.0", + "prefixLen":25, + "network":"193.213.66.0\/25", + "version":55281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.66.128", + "prefixLen":25, + "network":"193.213.66.128\/25", + "version":55280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.66.128", + "prefixLen":25, + "network":"193.213.66.128\/25", + "version":55280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.67.0", + "prefixLen":25, + "network":"193.213.67.0\/25", + "version":55279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.67.0", + "prefixLen":25, + "network":"193.213.67.0\/25", + "version":55279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.67.128", + "prefixLen":25, + "network":"193.213.67.128\/25", + "version":55278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.67.128", + "prefixLen":25, + "network":"193.213.67.128\/25", + "version":55278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.80.0", + "prefixLen":25, + "network":"193.213.80.0\/25", + "version":55277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.80.0", + "prefixLen":25, + "network":"193.213.80.0\/25", + "version":55277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.80.128", + "prefixLen":25, + "network":"193.213.80.128\/25", + "version":55276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.80.128", + "prefixLen":25, + "network":"193.213.80.128\/25", + "version":55276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.81.0", + "prefixLen":25, + "network":"193.213.81.0\/25", + "version":55275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.81.0", + "prefixLen":25, + "network":"193.213.81.0\/25", + "version":55275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.81.128", + "prefixLen":25, + "network":"193.213.81.128\/25", + "version":55274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.81.128", + "prefixLen":25, + "network":"193.213.81.128\/25", + "version":55274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.82.0", + "prefixLen":25, + "network":"193.213.82.0\/25", + "version":55273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.82.0", + "prefixLen":25, + "network":"193.213.82.0\/25", + "version":55273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.82.128", + "prefixLen":25, + "network":"193.213.82.128\/25", + "version":55272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.82.128", + "prefixLen":25, + "network":"193.213.82.128\/25", + "version":55272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.83.0", + "prefixLen":25, + "network":"193.213.83.0\/25", + "version":55271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.83.0", + "prefixLen":25, + "network":"193.213.83.0\/25", + "version":55271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.83.128", + "prefixLen":25, + "network":"193.213.83.128\/25", + "version":55270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.83.128", + "prefixLen":25, + "network":"193.213.83.128\/25", + "version":55270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.96.0", + "prefixLen":25, + "network":"193.213.96.0\/25", + "version":55269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.96.0", + "prefixLen":25, + "network":"193.213.96.0\/25", + "version":55269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.96.128", + "prefixLen":25, + "network":"193.213.96.128\/25", + "version":55268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.96.128", + "prefixLen":25, + "network":"193.213.96.128\/25", + "version":55268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.97.0", + "prefixLen":25, + "network":"193.213.97.0\/25", + "version":55267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.97.0", + "prefixLen":25, + "network":"193.213.97.0\/25", + "version":55267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.97.128", + "prefixLen":25, + "network":"193.213.97.128\/25", + "version":55266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.97.128", + "prefixLen":25, + "network":"193.213.97.128\/25", + "version":55266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.98.0", + "prefixLen":25, + "network":"193.213.98.0\/25", + "version":55265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.98.0", + "prefixLen":25, + "network":"193.213.98.0\/25", + "version":55265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.98.128", + "prefixLen":25, + "network":"193.213.98.128\/25", + "version":55264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.98.128", + "prefixLen":25, + "network":"193.213.98.128\/25", + "version":55264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.99.0", + "prefixLen":25, + "network":"193.213.99.0\/25", + "version":55263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.99.0", + "prefixLen":25, + "network":"193.213.99.0\/25", + "version":55263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.99.128", + "prefixLen":25, + "network":"193.213.99.128\/25", + "version":55262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.99.128", + "prefixLen":25, + "network":"193.213.99.128\/25", + "version":55262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.112.0", + "prefixLen":25, + "network":"193.213.112.0\/25", + "version":55261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.112.0", + "prefixLen":25, + "network":"193.213.112.0\/25", + "version":55261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.112.128", + "prefixLen":25, + "network":"193.213.112.128\/25", + "version":55260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.112.128", + "prefixLen":25, + "network":"193.213.112.128\/25", + "version":55260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.113.0", + "prefixLen":25, + "network":"193.213.113.0\/25", + "version":55259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.113.0", + "prefixLen":25, + "network":"193.213.113.0\/25", + "version":55259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.113.128", + "prefixLen":25, + "network":"193.213.113.128\/25", + "version":55258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.113.128", + "prefixLen":25, + "network":"193.213.113.128\/25", + "version":55258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.114.0", + "prefixLen":25, + "network":"193.213.114.0\/25", + "version":55257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.114.0", + "prefixLen":25, + "network":"193.213.114.0\/25", + "version":55257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.114.128", + "prefixLen":25, + "network":"193.213.114.128\/25", + "version":55256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.114.128", + "prefixLen":25, + "network":"193.213.114.128\/25", + "version":55256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.115.0", + "prefixLen":25, + "network":"193.213.115.0\/25", + "version":55255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.115.0", + "prefixLen":25, + "network":"193.213.115.0\/25", + "version":55255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.115.128", + "prefixLen":25, + "network":"193.213.115.128\/25", + "version":55254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.115.128", + "prefixLen":25, + "network":"193.213.115.128\/25", + "version":55254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.128.0", + "prefixLen":25, + "network":"193.213.128.0\/25", + "version":55253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.128.0", + "prefixLen":25, + "network":"193.213.128.0\/25", + "version":55253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.128.128", + "prefixLen":25, + "network":"193.213.128.128\/25", + "version":55252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.128.128", + "prefixLen":25, + "network":"193.213.128.128\/25", + "version":55252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.129.0", + "prefixLen":25, + "network":"193.213.129.0\/25", + "version":55251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.129.0", + "prefixLen":25, + "network":"193.213.129.0\/25", + "version":55251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.129.128", + "prefixLen":25, + "network":"193.213.129.128\/25", + "version":55250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.129.128", + "prefixLen":25, + "network":"193.213.129.128\/25", + "version":55250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.130.0", + "prefixLen":25, + "network":"193.213.130.0\/25", + "version":55249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.130.0", + "prefixLen":25, + "network":"193.213.130.0\/25", + "version":55249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.130.128", + "prefixLen":25, + "network":"193.213.130.128\/25", + "version":55248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.130.128", + "prefixLen":25, + "network":"193.213.130.128\/25", + "version":55248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.131.0", + "prefixLen":25, + "network":"193.213.131.0\/25", + "version":55247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.131.0", + "prefixLen":25, + "network":"193.213.131.0\/25", + "version":55247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.131.128", + "prefixLen":25, + "network":"193.213.131.128\/25", + "version":55246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.131.128", + "prefixLen":25, + "network":"193.213.131.128\/25", + "version":55246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.144.0", + "prefixLen":25, + "network":"193.213.144.0\/25", + "version":55245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.144.0", + "prefixLen":25, + "network":"193.213.144.0\/25", + "version":55245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.144.128", + "prefixLen":25, + "network":"193.213.144.128\/25", + "version":55244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.144.128", + "prefixLen":25, + "network":"193.213.144.128\/25", + "version":55244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.145.0", + "prefixLen":25, + "network":"193.213.145.0\/25", + "version":55243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.145.0", + "prefixLen":25, + "network":"193.213.145.0\/25", + "version":55243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.145.128", + "prefixLen":25, + "network":"193.213.145.128\/25", + "version":55242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.145.128", + "prefixLen":25, + "network":"193.213.145.128\/25", + "version":55242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.146.0", + "prefixLen":25, + "network":"193.213.146.0\/25", + "version":55241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.146.0", + "prefixLen":25, + "network":"193.213.146.0\/25", + "version":55241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.146.128", + "prefixLen":25, + "network":"193.213.146.128\/25", + "version":55240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.146.128", + "prefixLen":25, + "network":"193.213.146.128\/25", + "version":55240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.147.0", + "prefixLen":25, + "network":"193.213.147.0\/25", + "version":55239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.147.0", + "prefixLen":25, + "network":"193.213.147.0\/25", + "version":55239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.147.128", + "prefixLen":25, + "network":"193.213.147.128\/25", + "version":55238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.147.128", + "prefixLen":25, + "network":"193.213.147.128\/25", + "version":55238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.160.0", + "prefixLen":25, + "network":"193.213.160.0\/25", + "version":55237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.160.0", + "prefixLen":25, + "network":"193.213.160.0\/25", + "version":55237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.160.128", + "prefixLen":25, + "network":"193.213.160.128\/25", + "version":55236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.160.128", + "prefixLen":25, + "network":"193.213.160.128\/25", + "version":55236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.161.0", + "prefixLen":25, + "network":"193.213.161.0\/25", + "version":55235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.161.0", + "prefixLen":25, + "network":"193.213.161.0\/25", + "version":55235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.161.128", + "prefixLen":25, + "network":"193.213.161.128\/25", + "version":55234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.161.128", + "prefixLen":25, + "network":"193.213.161.128\/25", + "version":55234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.162.0", + "prefixLen":25, + "network":"193.213.162.0\/25", + "version":55233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.162.0", + "prefixLen":25, + "network":"193.213.162.0\/25", + "version":55233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.162.128", + "prefixLen":25, + "network":"193.213.162.128\/25", + "version":55232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.162.128", + "prefixLen":25, + "network":"193.213.162.128\/25", + "version":55232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.163.0", + "prefixLen":25, + "network":"193.213.163.0\/25", + "version":55231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.163.0", + "prefixLen":25, + "network":"193.213.163.0\/25", + "version":55231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.163.128", + "prefixLen":25, + "network":"193.213.163.128\/25", + "version":55230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.163.128", + "prefixLen":25, + "network":"193.213.163.128\/25", + "version":55230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.176.0", + "prefixLen":25, + "network":"193.213.176.0\/25", + "version":55229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.176.0", + "prefixLen":25, + "network":"193.213.176.0\/25", + "version":55229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.176.128", + "prefixLen":25, + "network":"193.213.176.128\/25", + "version":55228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.176.128", + "prefixLen":25, + "network":"193.213.176.128\/25", + "version":55228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.177.0", + "prefixLen":25, + "network":"193.213.177.0\/25", + "version":55227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.177.0", + "prefixLen":25, + "network":"193.213.177.0\/25", + "version":55227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.177.128", + "prefixLen":25, + "network":"193.213.177.128\/25", + "version":55226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.177.128", + "prefixLen":25, + "network":"193.213.177.128\/25", + "version":55226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.178.0", + "prefixLen":25, + "network":"193.213.178.0\/25", + "version":55225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.178.0", + "prefixLen":25, + "network":"193.213.178.0\/25", + "version":55225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.178.128", + "prefixLen":25, + "network":"193.213.178.128\/25", + "version":55224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.178.128", + "prefixLen":25, + "network":"193.213.178.128\/25", + "version":55224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.179.0", + "prefixLen":25, + "network":"193.213.179.0\/25", + "version":55223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.179.0", + "prefixLen":25, + "network":"193.213.179.0\/25", + "version":55223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.179.128", + "prefixLen":25, + "network":"193.213.179.128\/25", + "version":55222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.179.128", + "prefixLen":25, + "network":"193.213.179.128\/25", + "version":55222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.192.0", + "prefixLen":25, + "network":"193.213.192.0\/25", + "version":55221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.192.0", + "prefixLen":25, + "network":"193.213.192.0\/25", + "version":55221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.192.128", + "prefixLen":25, + "network":"193.213.192.128\/25", + "version":55220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.192.128", + "prefixLen":25, + "network":"193.213.192.128\/25", + "version":55220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.193.0", + "prefixLen":25, + "network":"193.213.193.0\/25", + "version":55219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.193.0", + "prefixLen":25, + "network":"193.213.193.0\/25", + "version":55219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.193.128", + "prefixLen":25, + "network":"193.213.193.128\/25", + "version":55218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.193.128", + "prefixLen":25, + "network":"193.213.193.128\/25", + "version":55218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.194.0", + "prefixLen":25, + "network":"193.213.194.0\/25", + "version":55217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.194.0", + "prefixLen":25, + "network":"193.213.194.0\/25", + "version":55217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.194.128", + "prefixLen":25, + "network":"193.213.194.128\/25", + "version":55216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.194.128", + "prefixLen":25, + "network":"193.213.194.128\/25", + "version":55216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.195.0", + "prefixLen":25, + "network":"193.213.195.0\/25", + "version":55215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.195.0", + "prefixLen":25, + "network":"193.213.195.0\/25", + "version":55215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.195.128", + "prefixLen":25, + "network":"193.213.195.128\/25", + "version":55214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.195.128", + "prefixLen":25, + "network":"193.213.195.128\/25", + "version":55214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.208.0", + "prefixLen":25, + "network":"193.213.208.0\/25", + "version":55213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.208.0", + "prefixLen":25, + "network":"193.213.208.0\/25", + "version":55213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.208.128", + "prefixLen":25, + "network":"193.213.208.128\/25", + "version":55212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.208.128", + "prefixLen":25, + "network":"193.213.208.128\/25", + "version":55212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.209.0", + "prefixLen":25, + "network":"193.213.209.0\/25", + "version":55211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.209.0", + "prefixLen":25, + "network":"193.213.209.0\/25", + "version":55211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.209.128", + "prefixLen":25, + "network":"193.213.209.128\/25", + "version":55210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.209.128", + "prefixLen":25, + "network":"193.213.209.128\/25", + "version":55210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.210.0", + "prefixLen":25, + "network":"193.213.210.0\/25", + "version":55209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.210.0", + "prefixLen":25, + "network":"193.213.210.0\/25", + "version":55209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.210.128", + "prefixLen":25, + "network":"193.213.210.128\/25", + "version":55208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.210.128", + "prefixLen":25, + "network":"193.213.210.128\/25", + "version":55208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.211.0", + "prefixLen":25, + "network":"193.213.211.0\/25", + "version":55207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.211.0", + "prefixLen":25, + "network":"193.213.211.0\/25", + "version":55207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.211.128", + "prefixLen":25, + "network":"193.213.211.128\/25", + "version":55206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.211.128", + "prefixLen":25, + "network":"193.213.211.128\/25", + "version":55206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.224.0", + "prefixLen":25, + "network":"193.213.224.0\/25", + "version":55205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.224.0", + "prefixLen":25, + "network":"193.213.224.0\/25", + "version":55205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.224.128", + "prefixLen":25, + "network":"193.213.224.128\/25", + "version":55204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.224.128", + "prefixLen":25, + "network":"193.213.224.128\/25", + "version":55204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.225.0", + "prefixLen":25, + "network":"193.213.225.0\/25", + "version":55203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.225.0", + "prefixLen":25, + "network":"193.213.225.0\/25", + "version":55203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.225.128", + "prefixLen":25, + "network":"193.213.225.128\/25", + "version":55202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.225.128", + "prefixLen":25, + "network":"193.213.225.128\/25", + "version":55202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.226.0", + "prefixLen":25, + "network":"193.213.226.0\/25", + "version":55201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.226.0", + "prefixLen":25, + "network":"193.213.226.0\/25", + "version":55201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.226.128", + "prefixLen":25, + "network":"193.213.226.128\/25", + "version":55200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.226.128", + "prefixLen":25, + "network":"193.213.226.128\/25", + "version":55200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.227.0", + "prefixLen":25, + "network":"193.213.227.0\/25", + "version":55199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.227.0", + "prefixLen":25, + "network":"193.213.227.0\/25", + "version":55199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.227.128", + "prefixLen":25, + "network":"193.213.227.128\/25", + "version":55198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.227.128", + "prefixLen":25, + "network":"193.213.227.128\/25", + "version":55198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.240.0", + "prefixLen":25, + "network":"193.213.240.0\/25", + "version":55197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.240.0", + "prefixLen":25, + "network":"193.213.240.0\/25", + "version":55197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.240.128", + "prefixLen":25, + "network":"193.213.240.128\/25", + "version":55196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.240.128", + "prefixLen":25, + "network":"193.213.240.128\/25", + "version":55196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.241.0", + "prefixLen":25, + "network":"193.213.241.0\/25", + "version":55195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.241.0", + "prefixLen":25, + "network":"193.213.241.0\/25", + "version":55195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.241.128", + "prefixLen":25, + "network":"193.213.241.128\/25", + "version":55194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.241.128", + "prefixLen":25, + "network":"193.213.241.128\/25", + "version":55194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.242.0", + "prefixLen":25, + "network":"193.213.242.0\/25", + "version":55193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.242.0", + "prefixLen":25, + "network":"193.213.242.0\/25", + "version":55193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.242.128", + "prefixLen":25, + "network":"193.213.242.128\/25", + "version":55192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.242.128", + "prefixLen":25, + "network":"193.213.242.128\/25", + "version":55192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.243.0", + "prefixLen":25, + "network":"193.213.243.0\/25", + "version":55191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.243.0", + "prefixLen":25, + "network":"193.213.243.0\/25", + "version":55191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.213.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.213.243.128", + "prefixLen":25, + "network":"193.213.243.128\/25", + "version":55190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.213.243.128", + "prefixLen":25, + "network":"193.213.243.128\/25", + "version":55190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64901 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.0.0", + "prefixLen":25, + "network":"193.214.0.0\/25", + "version":55317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.0.0", + "prefixLen":25, + "network":"193.214.0.0\/25", + "version":55317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.0.128", + "prefixLen":25, + "network":"193.214.0.128\/25", + "version":55444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.0.128", + "prefixLen":25, + "network":"193.214.0.128\/25", + "version":55444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.1.0", + "prefixLen":25, + "network":"193.214.1.0\/25", + "version":55443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.1.0", + "prefixLen":25, + "network":"193.214.1.0\/25", + "version":55443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.1.128", + "prefixLen":25, + "network":"193.214.1.128\/25", + "version":55442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.1.128", + "prefixLen":25, + "network":"193.214.1.128\/25", + "version":55442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.2.0", + "prefixLen":25, + "network":"193.214.2.0\/25", + "version":55441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.2.0", + "prefixLen":25, + "network":"193.214.2.0\/25", + "version":55441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.2.128", + "prefixLen":25, + "network":"193.214.2.128\/25", + "version":55440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.2.128", + "prefixLen":25, + "network":"193.214.2.128\/25", + "version":55440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.3.0", + "prefixLen":25, + "network":"193.214.3.0\/25", + "version":55439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.3.0", + "prefixLen":25, + "network":"193.214.3.0\/25", + "version":55439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.3.128", + "prefixLen":25, + "network":"193.214.3.128\/25", + "version":55438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.3.128", + "prefixLen":25, + "network":"193.214.3.128\/25", + "version":55438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.16.0", + "prefixLen":25, + "network":"193.214.16.0\/25", + "version":55437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.16.0", + "prefixLen":25, + "network":"193.214.16.0\/25", + "version":55437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.16.128", + "prefixLen":25, + "network":"193.214.16.128\/25", + "version":55436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.16.128", + "prefixLen":25, + "network":"193.214.16.128\/25", + "version":55436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.17.0", + "prefixLen":25, + "network":"193.214.17.0\/25", + "version":55435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.17.0", + "prefixLen":25, + "network":"193.214.17.0\/25", + "version":55435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.17.128", + "prefixLen":25, + "network":"193.214.17.128\/25", + "version":55434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.17.128", + "prefixLen":25, + "network":"193.214.17.128\/25", + "version":55434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.18.0", + "prefixLen":25, + "network":"193.214.18.0\/25", + "version":55433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.18.0", + "prefixLen":25, + "network":"193.214.18.0\/25", + "version":55433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.18.128", + "prefixLen":25, + "network":"193.214.18.128\/25", + "version":55432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.18.128", + "prefixLen":25, + "network":"193.214.18.128\/25", + "version":55432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.19.0", + "prefixLen":25, + "network":"193.214.19.0\/25", + "version":55431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.19.0", + "prefixLen":25, + "network":"193.214.19.0\/25", + "version":55431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.19.128", + "prefixLen":25, + "network":"193.214.19.128\/25", + "version":55430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.19.128", + "prefixLen":25, + "network":"193.214.19.128\/25", + "version":55430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.32.0", + "prefixLen":25, + "network":"193.214.32.0\/25", + "version":55429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.32.0", + "prefixLen":25, + "network":"193.214.32.0\/25", + "version":55429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.32.128", + "prefixLen":25, + "network":"193.214.32.128\/25", + "version":55428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.32.128", + "prefixLen":25, + "network":"193.214.32.128\/25", + "version":55428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.33.0", + "prefixLen":25, + "network":"193.214.33.0\/25", + "version":55427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.33.0", + "prefixLen":25, + "network":"193.214.33.0\/25", + "version":55427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.33.128", + "prefixLen":25, + "network":"193.214.33.128\/25", + "version":55426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.33.128", + "prefixLen":25, + "network":"193.214.33.128\/25", + "version":55426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.34.0", + "prefixLen":25, + "network":"193.214.34.0\/25", + "version":55425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.34.0", + "prefixLen":25, + "network":"193.214.34.0\/25", + "version":55425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.34.128", + "prefixLen":25, + "network":"193.214.34.128\/25", + "version":55424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.34.128", + "prefixLen":25, + "network":"193.214.34.128\/25", + "version":55424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.35.0", + "prefixLen":25, + "network":"193.214.35.0\/25", + "version":55423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.35.0", + "prefixLen":25, + "network":"193.214.35.0\/25", + "version":55423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.35.128", + "prefixLen":25, + "network":"193.214.35.128\/25", + "version":55422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.35.128", + "prefixLen":25, + "network":"193.214.35.128\/25", + "version":55422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.48.0", + "prefixLen":25, + "network":"193.214.48.0\/25", + "version":55421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.48.0", + "prefixLen":25, + "network":"193.214.48.0\/25", + "version":55421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.48.128", + "prefixLen":25, + "network":"193.214.48.128\/25", + "version":55420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.48.128", + "prefixLen":25, + "network":"193.214.48.128\/25", + "version":55420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.49.0", + "prefixLen":25, + "network":"193.214.49.0\/25", + "version":55419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.49.0", + "prefixLen":25, + "network":"193.214.49.0\/25", + "version":55419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.49.128", + "prefixLen":25, + "network":"193.214.49.128\/25", + "version":55418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.49.128", + "prefixLen":25, + "network":"193.214.49.128\/25", + "version":55418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.50.0", + "prefixLen":25, + "network":"193.214.50.0\/25", + "version":55417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.50.0", + "prefixLen":25, + "network":"193.214.50.0\/25", + "version":55417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.50.128", + "prefixLen":25, + "network":"193.214.50.128\/25", + "version":55416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.50.128", + "prefixLen":25, + "network":"193.214.50.128\/25", + "version":55416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.51.0", + "prefixLen":25, + "network":"193.214.51.0\/25", + "version":55415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.51.0", + "prefixLen":25, + "network":"193.214.51.0\/25", + "version":55415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.51.128", + "prefixLen":25, + "network":"193.214.51.128\/25", + "version":55414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.51.128", + "prefixLen":25, + "network":"193.214.51.128\/25", + "version":55414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.64.0", + "prefixLen":25, + "network":"193.214.64.0\/25", + "version":55413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.64.0", + "prefixLen":25, + "network":"193.214.64.0\/25", + "version":55413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.64.128", + "prefixLen":25, + "network":"193.214.64.128\/25", + "version":55412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.64.128", + "prefixLen":25, + "network":"193.214.64.128\/25", + "version":55412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.65.0", + "prefixLen":25, + "network":"193.214.65.0\/25", + "version":55411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.65.0", + "prefixLen":25, + "network":"193.214.65.0\/25", + "version":55411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.65.128", + "prefixLen":25, + "network":"193.214.65.128\/25", + "version":55410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.65.128", + "prefixLen":25, + "network":"193.214.65.128\/25", + "version":55410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.66.0", + "prefixLen":25, + "network":"193.214.66.0\/25", + "version":55409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.66.0", + "prefixLen":25, + "network":"193.214.66.0\/25", + "version":55409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.66.128", + "prefixLen":25, + "network":"193.214.66.128\/25", + "version":55408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.66.128", + "prefixLen":25, + "network":"193.214.66.128\/25", + "version":55408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.67.0", + "prefixLen":25, + "network":"193.214.67.0\/25", + "version":55407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.67.0", + "prefixLen":25, + "network":"193.214.67.0\/25", + "version":55407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.67.128", + "prefixLen":25, + "network":"193.214.67.128\/25", + "version":55406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.67.128", + "prefixLen":25, + "network":"193.214.67.128\/25", + "version":55406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.80.0", + "prefixLen":25, + "network":"193.214.80.0\/25", + "version":55405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.80.0", + "prefixLen":25, + "network":"193.214.80.0\/25", + "version":55405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.80.128", + "prefixLen":25, + "network":"193.214.80.128\/25", + "version":55404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.80.128", + "prefixLen":25, + "network":"193.214.80.128\/25", + "version":55404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.81.0", + "prefixLen":25, + "network":"193.214.81.0\/25", + "version":55403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.81.0", + "prefixLen":25, + "network":"193.214.81.0\/25", + "version":55403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.81.128", + "prefixLen":25, + "network":"193.214.81.128\/25", + "version":55402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.81.128", + "prefixLen":25, + "network":"193.214.81.128\/25", + "version":55402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.82.0", + "prefixLen":25, + "network":"193.214.82.0\/25", + "version":55401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.82.0", + "prefixLen":25, + "network":"193.214.82.0\/25", + "version":55401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.82.128", + "prefixLen":25, + "network":"193.214.82.128\/25", + "version":55400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.82.128", + "prefixLen":25, + "network":"193.214.82.128\/25", + "version":55400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.83.0", + "prefixLen":25, + "network":"193.214.83.0\/25", + "version":55399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.83.0", + "prefixLen":25, + "network":"193.214.83.0\/25", + "version":55399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.83.128", + "prefixLen":25, + "network":"193.214.83.128\/25", + "version":55398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.83.128", + "prefixLen":25, + "network":"193.214.83.128\/25", + "version":55398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.96.0", + "prefixLen":25, + "network":"193.214.96.0\/25", + "version":55397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.96.0", + "prefixLen":25, + "network":"193.214.96.0\/25", + "version":55397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.96.128", + "prefixLen":25, + "network":"193.214.96.128\/25", + "version":55396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.96.128", + "prefixLen":25, + "network":"193.214.96.128\/25", + "version":55396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.97.0", + "prefixLen":25, + "network":"193.214.97.0\/25", + "version":55395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.97.0", + "prefixLen":25, + "network":"193.214.97.0\/25", + "version":55395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.97.128", + "prefixLen":25, + "network":"193.214.97.128\/25", + "version":55394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.97.128", + "prefixLen":25, + "network":"193.214.97.128\/25", + "version":55394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.98.0", + "prefixLen":25, + "network":"193.214.98.0\/25", + "version":55393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.98.0", + "prefixLen":25, + "network":"193.214.98.0\/25", + "version":55393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.98.128", + "prefixLen":25, + "network":"193.214.98.128\/25", + "version":55392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.98.128", + "prefixLen":25, + "network":"193.214.98.128\/25", + "version":55392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.99.0", + "prefixLen":25, + "network":"193.214.99.0\/25", + "version":55391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.99.0", + "prefixLen":25, + "network":"193.214.99.0\/25", + "version":55391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.99.128", + "prefixLen":25, + "network":"193.214.99.128\/25", + "version":55390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.99.128", + "prefixLen":25, + "network":"193.214.99.128\/25", + "version":55390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.112.0", + "prefixLen":25, + "network":"193.214.112.0\/25", + "version":55389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.112.0", + "prefixLen":25, + "network":"193.214.112.0\/25", + "version":55389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.112.128", + "prefixLen":25, + "network":"193.214.112.128\/25", + "version":55388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.112.128", + "prefixLen":25, + "network":"193.214.112.128\/25", + "version":55388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.113.0", + "prefixLen":25, + "network":"193.214.113.0\/25", + "version":55387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.113.0", + "prefixLen":25, + "network":"193.214.113.0\/25", + "version":55387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.113.128", + "prefixLen":25, + "network":"193.214.113.128\/25", + "version":55386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.113.128", + "prefixLen":25, + "network":"193.214.113.128\/25", + "version":55386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.114.0", + "prefixLen":25, + "network":"193.214.114.0\/25", + "version":55385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.114.0", + "prefixLen":25, + "network":"193.214.114.0\/25", + "version":55385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.114.128", + "prefixLen":25, + "network":"193.214.114.128\/25", + "version":55384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.114.128", + "prefixLen":25, + "network":"193.214.114.128\/25", + "version":55384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.115.0", + "prefixLen":25, + "network":"193.214.115.0\/25", + "version":55383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.115.0", + "prefixLen":25, + "network":"193.214.115.0\/25", + "version":55383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.115.128", + "prefixLen":25, + "network":"193.214.115.128\/25", + "version":55382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.115.128", + "prefixLen":25, + "network":"193.214.115.128\/25", + "version":55382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.128.0", + "prefixLen":25, + "network":"193.214.128.0\/25", + "version":55381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.128.0", + "prefixLen":25, + "network":"193.214.128.0\/25", + "version":55381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.128.128", + "prefixLen":25, + "network":"193.214.128.128\/25", + "version":55380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.128.128", + "prefixLen":25, + "network":"193.214.128.128\/25", + "version":55380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.129.0", + "prefixLen":25, + "network":"193.214.129.0\/25", + "version":55379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.129.0", + "prefixLen":25, + "network":"193.214.129.0\/25", + "version":55379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.129.128", + "prefixLen":25, + "network":"193.214.129.128\/25", + "version":55378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.129.128", + "prefixLen":25, + "network":"193.214.129.128\/25", + "version":55378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.130.0", + "prefixLen":25, + "network":"193.214.130.0\/25", + "version":55377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.130.0", + "prefixLen":25, + "network":"193.214.130.0\/25", + "version":55377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.130.128", + "prefixLen":25, + "network":"193.214.130.128\/25", + "version":55376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.130.128", + "prefixLen":25, + "network":"193.214.130.128\/25", + "version":55376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.131.0", + "prefixLen":25, + "network":"193.214.131.0\/25", + "version":55375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.131.0", + "prefixLen":25, + "network":"193.214.131.0\/25", + "version":55375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.131.128", + "prefixLen":25, + "network":"193.214.131.128\/25", + "version":55374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.131.128", + "prefixLen":25, + "network":"193.214.131.128\/25", + "version":55374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.144.0", + "prefixLen":25, + "network":"193.214.144.0\/25", + "version":55373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.144.0", + "prefixLen":25, + "network":"193.214.144.0\/25", + "version":55373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.144.128", + "prefixLen":25, + "network":"193.214.144.128\/25", + "version":55372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.144.128", + "prefixLen":25, + "network":"193.214.144.128\/25", + "version":55372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.145.0", + "prefixLen":25, + "network":"193.214.145.0\/25", + "version":55371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.145.0", + "prefixLen":25, + "network":"193.214.145.0\/25", + "version":55371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.145.128", + "prefixLen":25, + "network":"193.214.145.128\/25", + "version":55370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.145.128", + "prefixLen":25, + "network":"193.214.145.128\/25", + "version":55370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.146.0", + "prefixLen":25, + "network":"193.214.146.0\/25", + "version":55369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.146.0", + "prefixLen":25, + "network":"193.214.146.0\/25", + "version":55369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.146.128", + "prefixLen":25, + "network":"193.214.146.128\/25", + "version":55368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.146.128", + "prefixLen":25, + "network":"193.214.146.128\/25", + "version":55368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.147.0", + "prefixLen":25, + "network":"193.214.147.0\/25", + "version":55367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.147.0", + "prefixLen":25, + "network":"193.214.147.0\/25", + "version":55367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.147.128", + "prefixLen":25, + "network":"193.214.147.128\/25", + "version":55366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.147.128", + "prefixLen":25, + "network":"193.214.147.128\/25", + "version":55366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.160.0", + "prefixLen":25, + "network":"193.214.160.0\/25", + "version":55365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.160.0", + "prefixLen":25, + "network":"193.214.160.0\/25", + "version":55365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.160.128", + "prefixLen":25, + "network":"193.214.160.128\/25", + "version":55364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.160.128", + "prefixLen":25, + "network":"193.214.160.128\/25", + "version":55364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.161.0", + "prefixLen":25, + "network":"193.214.161.0\/25", + "version":55363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.161.0", + "prefixLen":25, + "network":"193.214.161.0\/25", + "version":55363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.161.128", + "prefixLen":25, + "network":"193.214.161.128\/25", + "version":55362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.161.128", + "prefixLen":25, + "network":"193.214.161.128\/25", + "version":55362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.162.0", + "prefixLen":25, + "network":"193.214.162.0\/25", + "version":55361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.162.0", + "prefixLen":25, + "network":"193.214.162.0\/25", + "version":55361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.162.128", + "prefixLen":25, + "network":"193.214.162.128\/25", + "version":55360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.162.128", + "prefixLen":25, + "network":"193.214.162.128\/25", + "version":55360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.163.0", + "prefixLen":25, + "network":"193.214.163.0\/25", + "version":55359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.163.0", + "prefixLen":25, + "network":"193.214.163.0\/25", + "version":55359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.163.128", + "prefixLen":25, + "network":"193.214.163.128\/25", + "version":55358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.163.128", + "prefixLen":25, + "network":"193.214.163.128\/25", + "version":55358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.176.0", + "prefixLen":25, + "network":"193.214.176.0\/25", + "version":55357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.176.0", + "prefixLen":25, + "network":"193.214.176.0\/25", + "version":55357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.176.128", + "prefixLen":25, + "network":"193.214.176.128\/25", + "version":55356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.176.128", + "prefixLen":25, + "network":"193.214.176.128\/25", + "version":55356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.177.0", + "prefixLen":25, + "network":"193.214.177.0\/25", + "version":55355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.177.0", + "prefixLen":25, + "network":"193.214.177.0\/25", + "version":55355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.177.128", + "prefixLen":25, + "network":"193.214.177.128\/25", + "version":55354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.177.128", + "prefixLen":25, + "network":"193.214.177.128\/25", + "version":55354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.178.0", + "prefixLen":25, + "network":"193.214.178.0\/25", + "version":55353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.178.0", + "prefixLen":25, + "network":"193.214.178.0\/25", + "version":55353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.178.128", + "prefixLen":25, + "network":"193.214.178.128\/25", + "version":55352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.178.128", + "prefixLen":25, + "network":"193.214.178.128\/25", + "version":55352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.179.0", + "prefixLen":25, + "network":"193.214.179.0\/25", + "version":55351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.179.0", + "prefixLen":25, + "network":"193.214.179.0\/25", + "version":55351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.179.128", + "prefixLen":25, + "network":"193.214.179.128\/25", + "version":55350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.179.128", + "prefixLen":25, + "network":"193.214.179.128\/25", + "version":55350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.192.0", + "prefixLen":25, + "network":"193.214.192.0\/25", + "version":55349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.192.0", + "prefixLen":25, + "network":"193.214.192.0\/25", + "version":55349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.192.128", + "prefixLen":25, + "network":"193.214.192.128\/25", + "version":55348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.192.128", + "prefixLen":25, + "network":"193.214.192.128\/25", + "version":55348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.193.0", + "prefixLen":25, + "network":"193.214.193.0\/25", + "version":55347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.193.0", + "prefixLen":25, + "network":"193.214.193.0\/25", + "version":55347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.193.128", + "prefixLen":25, + "network":"193.214.193.128\/25", + "version":55346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.193.128", + "prefixLen":25, + "network":"193.214.193.128\/25", + "version":55346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.194.0", + "prefixLen":25, + "network":"193.214.194.0\/25", + "version":55345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.194.0", + "prefixLen":25, + "network":"193.214.194.0\/25", + "version":55345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.194.128", + "prefixLen":25, + "network":"193.214.194.128\/25", + "version":55344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.194.128", + "prefixLen":25, + "network":"193.214.194.128\/25", + "version":55344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.195.0", + "prefixLen":25, + "network":"193.214.195.0\/25", + "version":55343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.195.0", + "prefixLen":25, + "network":"193.214.195.0\/25", + "version":55343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.195.128", + "prefixLen":25, + "network":"193.214.195.128\/25", + "version":55342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.195.128", + "prefixLen":25, + "network":"193.214.195.128\/25", + "version":55342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.208.0", + "prefixLen":25, + "network":"193.214.208.0\/25", + "version":55341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.208.0", + "prefixLen":25, + "network":"193.214.208.0\/25", + "version":55341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.208.128", + "prefixLen":25, + "network":"193.214.208.128\/25", + "version":55340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.208.128", + "prefixLen":25, + "network":"193.214.208.128\/25", + "version":55340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.209.0", + "prefixLen":25, + "network":"193.214.209.0\/25", + "version":55339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.209.0", + "prefixLen":25, + "network":"193.214.209.0\/25", + "version":55339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.209.128", + "prefixLen":25, + "network":"193.214.209.128\/25", + "version":55338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.209.128", + "prefixLen":25, + "network":"193.214.209.128\/25", + "version":55338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.210.0", + "prefixLen":25, + "network":"193.214.210.0\/25", + "version":55337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.210.0", + "prefixLen":25, + "network":"193.214.210.0\/25", + "version":55337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.210.128", + "prefixLen":25, + "network":"193.214.210.128\/25", + "version":55336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.210.128", + "prefixLen":25, + "network":"193.214.210.128\/25", + "version":55336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.211.0", + "prefixLen":25, + "network":"193.214.211.0\/25", + "version":55335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.211.0", + "prefixLen":25, + "network":"193.214.211.0\/25", + "version":55335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.211.128", + "prefixLen":25, + "network":"193.214.211.128\/25", + "version":55334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.211.128", + "prefixLen":25, + "network":"193.214.211.128\/25", + "version":55334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.224.0", + "prefixLen":25, + "network":"193.214.224.0\/25", + "version":55333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.224.0", + "prefixLen":25, + "network":"193.214.224.0\/25", + "version":55333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.224.128", + "prefixLen":25, + "network":"193.214.224.128\/25", + "version":55332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.224.128", + "prefixLen":25, + "network":"193.214.224.128\/25", + "version":55332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.225.0", + "prefixLen":25, + "network":"193.214.225.0\/25", + "version":55331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.225.0", + "prefixLen":25, + "network":"193.214.225.0\/25", + "version":55331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.225.128", + "prefixLen":25, + "network":"193.214.225.128\/25", + "version":55330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.225.128", + "prefixLen":25, + "network":"193.214.225.128\/25", + "version":55330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.226.0", + "prefixLen":25, + "network":"193.214.226.0\/25", + "version":55329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.226.0", + "prefixLen":25, + "network":"193.214.226.0\/25", + "version":55329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.226.128", + "prefixLen":25, + "network":"193.214.226.128\/25", + "version":55328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.226.128", + "prefixLen":25, + "network":"193.214.226.128\/25", + "version":55328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.227.0", + "prefixLen":25, + "network":"193.214.227.0\/25", + "version":55327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.227.0", + "prefixLen":25, + "network":"193.214.227.0\/25", + "version":55327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.227.128", + "prefixLen":25, + "network":"193.214.227.128\/25", + "version":55326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.227.128", + "prefixLen":25, + "network":"193.214.227.128\/25", + "version":55326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.240.0", + "prefixLen":25, + "network":"193.214.240.0\/25", + "version":55325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.240.0", + "prefixLen":25, + "network":"193.214.240.0\/25", + "version":55325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.240.128", + "prefixLen":25, + "network":"193.214.240.128\/25", + "version":55324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.240.128", + "prefixLen":25, + "network":"193.214.240.128\/25", + "version":55324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.241.0", + "prefixLen":25, + "network":"193.214.241.0\/25", + "version":55323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.241.0", + "prefixLen":25, + "network":"193.214.241.0\/25", + "version":55323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.241.128", + "prefixLen":25, + "network":"193.214.241.128\/25", + "version":55322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.241.128", + "prefixLen":25, + "network":"193.214.241.128\/25", + "version":55322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.242.0", + "prefixLen":25, + "network":"193.214.242.0\/25", + "version":55321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.242.0", + "prefixLen":25, + "network":"193.214.242.0\/25", + "version":55321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.242.128", + "prefixLen":25, + "network":"193.214.242.128\/25", + "version":55320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.242.128", + "prefixLen":25, + "network":"193.214.242.128\/25", + "version":55320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.243.0", + "prefixLen":25, + "network":"193.214.243.0\/25", + "version":55319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.243.0", + "prefixLen":25, + "network":"193.214.243.0\/25", + "version":55319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.214.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.214.243.128", + "prefixLen":25, + "network":"193.214.243.128\/25", + "version":55318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.214.243.128", + "prefixLen":25, + "network":"193.214.243.128\/25", + "version":55318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64902 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.0.0", + "prefixLen":25, + "network":"193.215.0.0\/25", + "version":55445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.0.0", + "prefixLen":25, + "network":"193.215.0.0\/25", + "version":55445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.0.128", + "prefixLen":25, + "network":"193.215.0.128\/25", + "version":55572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.0.128", + "prefixLen":25, + "network":"193.215.0.128\/25", + "version":55572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.1.0", + "prefixLen":25, + "network":"193.215.1.0\/25", + "version":55571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.1.0", + "prefixLen":25, + "network":"193.215.1.0\/25", + "version":55571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.1.128", + "prefixLen":25, + "network":"193.215.1.128\/25", + "version":55570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.1.128", + "prefixLen":25, + "network":"193.215.1.128\/25", + "version":55570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.2.0", + "prefixLen":25, + "network":"193.215.2.0\/25", + "version":55569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.2.0", + "prefixLen":25, + "network":"193.215.2.0\/25", + "version":55569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.2.128", + "prefixLen":25, + "network":"193.215.2.128\/25", + "version":55568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.2.128", + "prefixLen":25, + "network":"193.215.2.128\/25", + "version":55568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.3.0", + "prefixLen":25, + "network":"193.215.3.0\/25", + "version":55567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.3.0", + "prefixLen":25, + "network":"193.215.3.0\/25", + "version":55567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.3.128", + "prefixLen":25, + "network":"193.215.3.128\/25", + "version":55566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.3.128", + "prefixLen":25, + "network":"193.215.3.128\/25", + "version":55566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.16.0", + "prefixLen":25, + "network":"193.215.16.0\/25", + "version":55565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.16.0", + "prefixLen":25, + "network":"193.215.16.0\/25", + "version":55565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.16.128", + "prefixLen":25, + "network":"193.215.16.128\/25", + "version":55564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.16.128", + "prefixLen":25, + "network":"193.215.16.128\/25", + "version":55564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.17.0", + "prefixLen":25, + "network":"193.215.17.0\/25", + "version":55563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.17.0", + "prefixLen":25, + "network":"193.215.17.0\/25", + "version":55563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.17.128", + "prefixLen":25, + "network":"193.215.17.128\/25", + "version":55562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.17.128", + "prefixLen":25, + "network":"193.215.17.128\/25", + "version":55562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.18.0", + "prefixLen":25, + "network":"193.215.18.0\/25", + "version":55561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.18.0", + "prefixLen":25, + "network":"193.215.18.0\/25", + "version":55561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.18.128", + "prefixLen":25, + "network":"193.215.18.128\/25", + "version":55560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.18.128", + "prefixLen":25, + "network":"193.215.18.128\/25", + "version":55560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.19.0", + "prefixLen":25, + "network":"193.215.19.0\/25", + "version":55559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.19.0", + "prefixLen":25, + "network":"193.215.19.0\/25", + "version":55559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.19.128", + "prefixLen":25, + "network":"193.215.19.128\/25", + "version":55558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.19.128", + "prefixLen":25, + "network":"193.215.19.128\/25", + "version":55558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.32.0", + "prefixLen":25, + "network":"193.215.32.0\/25", + "version":55557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.32.0", + "prefixLen":25, + "network":"193.215.32.0\/25", + "version":55557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.32.128", + "prefixLen":25, + "network":"193.215.32.128\/25", + "version":55556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.32.128", + "prefixLen":25, + "network":"193.215.32.128\/25", + "version":55556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.33.0", + "prefixLen":25, + "network":"193.215.33.0\/25", + "version":55555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.33.0", + "prefixLen":25, + "network":"193.215.33.0\/25", + "version":55555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.33.128", + "prefixLen":25, + "network":"193.215.33.128\/25", + "version":55554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.33.128", + "prefixLen":25, + "network":"193.215.33.128\/25", + "version":55554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.34.0", + "prefixLen":25, + "network":"193.215.34.0\/25", + "version":55553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.34.0", + "prefixLen":25, + "network":"193.215.34.0\/25", + "version":55553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.34.128", + "prefixLen":25, + "network":"193.215.34.128\/25", + "version":55552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.34.128", + "prefixLen":25, + "network":"193.215.34.128\/25", + "version":55552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.35.0", + "prefixLen":25, + "network":"193.215.35.0\/25", + "version":55551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.35.0", + "prefixLen":25, + "network":"193.215.35.0\/25", + "version":55551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.35.128", + "prefixLen":25, + "network":"193.215.35.128\/25", + "version":55550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.35.128", + "prefixLen":25, + "network":"193.215.35.128\/25", + "version":55550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.48.0", + "prefixLen":25, + "network":"193.215.48.0\/25", + "version":55549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.48.0", + "prefixLen":25, + "network":"193.215.48.0\/25", + "version":55549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.48.128", + "prefixLen":25, + "network":"193.215.48.128\/25", + "version":55548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.48.128", + "prefixLen":25, + "network":"193.215.48.128\/25", + "version":55548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.49.0", + "prefixLen":25, + "network":"193.215.49.0\/25", + "version":55547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.49.0", + "prefixLen":25, + "network":"193.215.49.0\/25", + "version":55547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.49.128", + "prefixLen":25, + "network":"193.215.49.128\/25", + "version":55546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.49.128", + "prefixLen":25, + "network":"193.215.49.128\/25", + "version":55546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.50.0", + "prefixLen":25, + "network":"193.215.50.0\/25", + "version":55545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.50.0", + "prefixLen":25, + "network":"193.215.50.0\/25", + "version":55545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.50.128", + "prefixLen":25, + "network":"193.215.50.128\/25", + "version":55544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.50.128", + "prefixLen":25, + "network":"193.215.50.128\/25", + "version":55544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.51.0", + "prefixLen":25, + "network":"193.215.51.0\/25", + "version":55543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.51.0", + "prefixLen":25, + "network":"193.215.51.0\/25", + "version":55543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.51.128", + "prefixLen":25, + "network":"193.215.51.128\/25", + "version":55542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.51.128", + "prefixLen":25, + "network":"193.215.51.128\/25", + "version":55542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.64.0", + "prefixLen":25, + "network":"193.215.64.0\/25", + "version":55541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.64.0", + "prefixLen":25, + "network":"193.215.64.0\/25", + "version":55541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.64.128", + "prefixLen":25, + "network":"193.215.64.128\/25", + "version":55540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.64.128", + "prefixLen":25, + "network":"193.215.64.128\/25", + "version":55540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.65.0", + "prefixLen":25, + "network":"193.215.65.0\/25", + "version":55539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.65.0", + "prefixLen":25, + "network":"193.215.65.0\/25", + "version":55539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.65.128", + "prefixLen":25, + "network":"193.215.65.128\/25", + "version":55538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.65.128", + "prefixLen":25, + "network":"193.215.65.128\/25", + "version":55538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.66.0", + "prefixLen":25, + "network":"193.215.66.0\/25", + "version":55537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.66.0", + "prefixLen":25, + "network":"193.215.66.0\/25", + "version":55537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.66.128", + "prefixLen":25, + "network":"193.215.66.128\/25", + "version":55536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.66.128", + "prefixLen":25, + "network":"193.215.66.128\/25", + "version":55536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.67.0", + "prefixLen":25, + "network":"193.215.67.0\/25", + "version":55535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.67.0", + "prefixLen":25, + "network":"193.215.67.0\/25", + "version":55535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.67.128", + "prefixLen":25, + "network":"193.215.67.128\/25", + "version":55534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.67.128", + "prefixLen":25, + "network":"193.215.67.128\/25", + "version":55534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.80.0", + "prefixLen":25, + "network":"193.215.80.0\/25", + "version":55533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.80.0", + "prefixLen":25, + "network":"193.215.80.0\/25", + "version":55533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.80.128", + "prefixLen":25, + "network":"193.215.80.128\/25", + "version":55532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.80.128", + "prefixLen":25, + "network":"193.215.80.128\/25", + "version":55532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.81.0", + "prefixLen":25, + "network":"193.215.81.0\/25", + "version":55531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.81.0", + "prefixLen":25, + "network":"193.215.81.0\/25", + "version":55531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.81.128", + "prefixLen":25, + "network":"193.215.81.128\/25", + "version":55530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.81.128", + "prefixLen":25, + "network":"193.215.81.128\/25", + "version":55530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.82.0", + "prefixLen":25, + "network":"193.215.82.0\/25", + "version":55529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.82.0", + "prefixLen":25, + "network":"193.215.82.0\/25", + "version":55529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.82.128", + "prefixLen":25, + "network":"193.215.82.128\/25", + "version":55528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.82.128", + "prefixLen":25, + "network":"193.215.82.128\/25", + "version":55528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.83.0", + "prefixLen":25, + "network":"193.215.83.0\/25", + "version":55527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.83.0", + "prefixLen":25, + "network":"193.215.83.0\/25", + "version":55527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.83.128", + "prefixLen":25, + "network":"193.215.83.128\/25", + "version":55526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.83.128", + "prefixLen":25, + "network":"193.215.83.128\/25", + "version":55526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.96.0", + "prefixLen":25, + "network":"193.215.96.0\/25", + "version":55525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.96.0", + "prefixLen":25, + "network":"193.215.96.0\/25", + "version":55525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.96.128", + "prefixLen":25, + "network":"193.215.96.128\/25", + "version":55524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.96.128", + "prefixLen":25, + "network":"193.215.96.128\/25", + "version":55524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.97.0", + "prefixLen":25, + "network":"193.215.97.0\/25", + "version":55523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.97.0", + "prefixLen":25, + "network":"193.215.97.0\/25", + "version":55523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.97.128", + "prefixLen":25, + "network":"193.215.97.128\/25", + "version":55522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.97.128", + "prefixLen":25, + "network":"193.215.97.128\/25", + "version":55522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.98.0", + "prefixLen":25, + "network":"193.215.98.0\/25", + "version":55521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.98.0", + "prefixLen":25, + "network":"193.215.98.0\/25", + "version":55521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.98.128", + "prefixLen":25, + "network":"193.215.98.128\/25", + "version":55520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.98.128", + "prefixLen":25, + "network":"193.215.98.128\/25", + "version":55520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.99.0", + "prefixLen":25, + "network":"193.215.99.0\/25", + "version":55519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.99.0", + "prefixLen":25, + "network":"193.215.99.0\/25", + "version":55519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.99.128", + "prefixLen":25, + "network":"193.215.99.128\/25", + "version":55518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.99.128", + "prefixLen":25, + "network":"193.215.99.128\/25", + "version":55518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.112.0", + "prefixLen":25, + "network":"193.215.112.0\/25", + "version":55517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.112.0", + "prefixLen":25, + "network":"193.215.112.0\/25", + "version":55517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.112.128", + "prefixLen":25, + "network":"193.215.112.128\/25", + "version":55516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.112.128", + "prefixLen":25, + "network":"193.215.112.128\/25", + "version":55516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.113.0", + "prefixLen":25, + "network":"193.215.113.0\/25", + "version":55515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.113.0", + "prefixLen":25, + "network":"193.215.113.0\/25", + "version":55515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.113.128", + "prefixLen":25, + "network":"193.215.113.128\/25", + "version":55514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.113.128", + "prefixLen":25, + "network":"193.215.113.128\/25", + "version":55514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.114.0", + "prefixLen":25, + "network":"193.215.114.0\/25", + "version":55513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.114.0", + "prefixLen":25, + "network":"193.215.114.0\/25", + "version":55513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.114.128", + "prefixLen":25, + "network":"193.215.114.128\/25", + "version":55512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.114.128", + "prefixLen":25, + "network":"193.215.114.128\/25", + "version":55512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.115.0", + "prefixLen":25, + "network":"193.215.115.0\/25", + "version":55511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.115.0", + "prefixLen":25, + "network":"193.215.115.0\/25", + "version":55511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.115.128", + "prefixLen":25, + "network":"193.215.115.128\/25", + "version":55510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.115.128", + "prefixLen":25, + "network":"193.215.115.128\/25", + "version":55510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.128.0", + "prefixLen":25, + "network":"193.215.128.0\/25", + "version":55509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.128.0", + "prefixLen":25, + "network":"193.215.128.0\/25", + "version":55509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.128.128", + "prefixLen":25, + "network":"193.215.128.128\/25", + "version":55508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.128.128", + "prefixLen":25, + "network":"193.215.128.128\/25", + "version":55508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.129.0", + "prefixLen":25, + "network":"193.215.129.0\/25", + "version":55507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.129.0", + "prefixLen":25, + "network":"193.215.129.0\/25", + "version":55507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.129.128", + "prefixLen":25, + "network":"193.215.129.128\/25", + "version":55506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.129.128", + "prefixLen":25, + "network":"193.215.129.128\/25", + "version":55506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.130.0", + "prefixLen":25, + "network":"193.215.130.0\/25", + "version":55505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.130.0", + "prefixLen":25, + "network":"193.215.130.0\/25", + "version":55505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.130.128", + "prefixLen":25, + "network":"193.215.130.128\/25", + "version":55504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.130.128", + "prefixLen":25, + "network":"193.215.130.128\/25", + "version":55504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.131.0", + "prefixLen":25, + "network":"193.215.131.0\/25", + "version":55503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.131.0", + "prefixLen":25, + "network":"193.215.131.0\/25", + "version":55503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.131.128", + "prefixLen":25, + "network":"193.215.131.128\/25", + "version":55502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.131.128", + "prefixLen":25, + "network":"193.215.131.128\/25", + "version":55502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.144.0", + "prefixLen":25, + "network":"193.215.144.0\/25", + "version":55501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.144.0", + "prefixLen":25, + "network":"193.215.144.0\/25", + "version":55501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.144.128", + "prefixLen":25, + "network":"193.215.144.128\/25", + "version":55500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.144.128", + "prefixLen":25, + "network":"193.215.144.128\/25", + "version":55500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.145.0", + "prefixLen":25, + "network":"193.215.145.0\/25", + "version":55499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.145.0", + "prefixLen":25, + "network":"193.215.145.0\/25", + "version":55499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.145.128", + "prefixLen":25, + "network":"193.215.145.128\/25", + "version":55498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.145.128", + "prefixLen":25, + "network":"193.215.145.128\/25", + "version":55498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.146.0", + "prefixLen":25, + "network":"193.215.146.0\/25", + "version":55497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.146.0", + "prefixLen":25, + "network":"193.215.146.0\/25", + "version":55497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.146.128", + "prefixLen":25, + "network":"193.215.146.128\/25", + "version":55496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.146.128", + "prefixLen":25, + "network":"193.215.146.128\/25", + "version":55496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.147.0", + "prefixLen":25, + "network":"193.215.147.0\/25", + "version":55495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.147.0", + "prefixLen":25, + "network":"193.215.147.0\/25", + "version":55495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.147.128", + "prefixLen":25, + "network":"193.215.147.128\/25", + "version":55494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.147.128", + "prefixLen":25, + "network":"193.215.147.128\/25", + "version":55494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.160.0", + "prefixLen":25, + "network":"193.215.160.0\/25", + "version":55493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.160.0", + "prefixLen":25, + "network":"193.215.160.0\/25", + "version":55493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.160.128", + "prefixLen":25, + "network":"193.215.160.128\/25", + "version":55492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.160.128", + "prefixLen":25, + "network":"193.215.160.128\/25", + "version":55492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.161.0", + "prefixLen":25, + "network":"193.215.161.0\/25", + "version":55491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.161.0", + "prefixLen":25, + "network":"193.215.161.0\/25", + "version":55491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.161.128", + "prefixLen":25, + "network":"193.215.161.128\/25", + "version":55490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.161.128", + "prefixLen":25, + "network":"193.215.161.128\/25", + "version":55490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.162.0", + "prefixLen":25, + "network":"193.215.162.0\/25", + "version":55489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.162.0", + "prefixLen":25, + "network":"193.215.162.0\/25", + "version":55489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.162.128", + "prefixLen":25, + "network":"193.215.162.128\/25", + "version":55488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.162.128", + "prefixLen":25, + "network":"193.215.162.128\/25", + "version":55488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.163.0", + "prefixLen":25, + "network":"193.215.163.0\/25", + "version":55487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.163.0", + "prefixLen":25, + "network":"193.215.163.0\/25", + "version":55487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.163.128", + "prefixLen":25, + "network":"193.215.163.128\/25", + "version":55486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.163.128", + "prefixLen":25, + "network":"193.215.163.128\/25", + "version":55486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.176.0", + "prefixLen":25, + "network":"193.215.176.0\/25", + "version":55485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.176.0", + "prefixLen":25, + "network":"193.215.176.0\/25", + "version":55485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.176.128", + "prefixLen":25, + "network":"193.215.176.128\/25", + "version":55484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.176.128", + "prefixLen":25, + "network":"193.215.176.128\/25", + "version":55484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.177.0", + "prefixLen":25, + "network":"193.215.177.0\/25", + "version":55483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.177.0", + "prefixLen":25, + "network":"193.215.177.0\/25", + "version":55483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.177.128", + "prefixLen":25, + "network":"193.215.177.128\/25", + "version":55482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.177.128", + "prefixLen":25, + "network":"193.215.177.128\/25", + "version":55482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.178.0", + "prefixLen":25, + "network":"193.215.178.0\/25", + "version":55481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.178.0", + "prefixLen":25, + "network":"193.215.178.0\/25", + "version":55481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.178.128", + "prefixLen":25, + "network":"193.215.178.128\/25", + "version":55480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.178.128", + "prefixLen":25, + "network":"193.215.178.128\/25", + "version":55480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.179.0", + "prefixLen":25, + "network":"193.215.179.0\/25", + "version":55479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.179.0", + "prefixLen":25, + "network":"193.215.179.0\/25", + "version":55479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.179.128", + "prefixLen":25, + "network":"193.215.179.128\/25", + "version":55478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.179.128", + "prefixLen":25, + "network":"193.215.179.128\/25", + "version":55478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.192.0", + "prefixLen":25, + "network":"193.215.192.0\/25", + "version":55477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.192.0", + "prefixLen":25, + "network":"193.215.192.0\/25", + "version":55477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.192.128", + "prefixLen":25, + "network":"193.215.192.128\/25", + "version":55476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.192.128", + "prefixLen":25, + "network":"193.215.192.128\/25", + "version":55476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.193.0", + "prefixLen":25, + "network":"193.215.193.0\/25", + "version":55475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.193.0", + "prefixLen":25, + "network":"193.215.193.0\/25", + "version":55475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.193.128", + "prefixLen":25, + "network":"193.215.193.128\/25", + "version":55474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.193.128", + "prefixLen":25, + "network":"193.215.193.128\/25", + "version":55474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.194.0", + "prefixLen":25, + "network":"193.215.194.0\/25", + "version":55473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.194.0", + "prefixLen":25, + "network":"193.215.194.0\/25", + "version":55473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.194.128", + "prefixLen":25, + "network":"193.215.194.128\/25", + "version":55472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.194.128", + "prefixLen":25, + "network":"193.215.194.128\/25", + "version":55472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.195.0", + "prefixLen":25, + "network":"193.215.195.0\/25", + "version":55471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.195.0", + "prefixLen":25, + "network":"193.215.195.0\/25", + "version":55471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.195.128", + "prefixLen":25, + "network":"193.215.195.128\/25", + "version":55470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.195.128", + "prefixLen":25, + "network":"193.215.195.128\/25", + "version":55470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.208.0", + "prefixLen":25, + "network":"193.215.208.0\/25", + "version":55469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.208.0", + "prefixLen":25, + "network":"193.215.208.0\/25", + "version":55469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.208.128", + "prefixLen":25, + "network":"193.215.208.128\/25", + "version":55468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.208.128", + "prefixLen":25, + "network":"193.215.208.128\/25", + "version":55468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.209.0", + "prefixLen":25, + "network":"193.215.209.0\/25", + "version":55467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.209.0", + "prefixLen":25, + "network":"193.215.209.0\/25", + "version":55467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.209.128", + "prefixLen":25, + "network":"193.215.209.128\/25", + "version":55466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.209.128", + "prefixLen":25, + "network":"193.215.209.128\/25", + "version":55466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.210.0", + "prefixLen":25, + "network":"193.215.210.0\/25", + "version":55465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.210.0", + "prefixLen":25, + "network":"193.215.210.0\/25", + "version":55465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.210.128", + "prefixLen":25, + "network":"193.215.210.128\/25", + "version":55464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.210.128", + "prefixLen":25, + "network":"193.215.210.128\/25", + "version":55464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.211.0", + "prefixLen":25, + "network":"193.215.211.0\/25", + "version":55463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.211.0", + "prefixLen":25, + "network":"193.215.211.0\/25", + "version":55463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.211.128", + "prefixLen":25, + "network":"193.215.211.128\/25", + "version":55462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.211.128", + "prefixLen":25, + "network":"193.215.211.128\/25", + "version":55462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.224.0", + "prefixLen":25, + "network":"193.215.224.0\/25", + "version":55461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.224.0", + "prefixLen":25, + "network":"193.215.224.0\/25", + "version":55461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.224.128", + "prefixLen":25, + "network":"193.215.224.128\/25", + "version":55460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.224.128", + "prefixLen":25, + "network":"193.215.224.128\/25", + "version":55460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.225.0", + "prefixLen":25, + "network":"193.215.225.0\/25", + "version":55459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.225.0", + "prefixLen":25, + "network":"193.215.225.0\/25", + "version":55459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.225.128", + "prefixLen":25, + "network":"193.215.225.128\/25", + "version":55458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.225.128", + "prefixLen":25, + "network":"193.215.225.128\/25", + "version":55458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.226.0", + "prefixLen":25, + "network":"193.215.226.0\/25", + "version":55457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.226.0", + "prefixLen":25, + "network":"193.215.226.0\/25", + "version":55457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.226.128", + "prefixLen":25, + "network":"193.215.226.128\/25", + "version":55456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.226.128", + "prefixLen":25, + "network":"193.215.226.128\/25", + "version":55456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.227.0", + "prefixLen":25, + "network":"193.215.227.0\/25", + "version":55455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.227.0", + "prefixLen":25, + "network":"193.215.227.0\/25", + "version":55455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.227.128", + "prefixLen":25, + "network":"193.215.227.128\/25", + "version":55454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.227.128", + "prefixLen":25, + "network":"193.215.227.128\/25", + "version":55454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.240.0", + "prefixLen":25, + "network":"193.215.240.0\/25", + "version":55453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.240.0", + "prefixLen":25, + "network":"193.215.240.0\/25", + "version":55453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.240.128", + "prefixLen":25, + "network":"193.215.240.128\/25", + "version":55452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.240.128", + "prefixLen":25, + "network":"193.215.240.128\/25", + "version":55452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.241.0", + "prefixLen":25, + "network":"193.215.241.0\/25", + "version":55451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.241.0", + "prefixLen":25, + "network":"193.215.241.0\/25", + "version":55451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.241.128", + "prefixLen":25, + "network":"193.215.241.128\/25", + "version":55450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.241.128", + "prefixLen":25, + "network":"193.215.241.128\/25", + "version":55450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.242.0", + "prefixLen":25, + "network":"193.215.242.0\/25", + "version":55449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.242.0", + "prefixLen":25, + "network":"193.215.242.0\/25", + "version":55449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.242.128", + "prefixLen":25, + "network":"193.215.242.128\/25", + "version":55448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.242.128", + "prefixLen":25, + "network":"193.215.242.128\/25", + "version":55448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.243.0", + "prefixLen":25, + "network":"193.215.243.0\/25", + "version":55447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.243.0", + "prefixLen":25, + "network":"193.215.243.0\/25", + "version":55447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.215.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.215.243.128", + "prefixLen":25, + "network":"193.215.243.128\/25", + "version":55446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.215.243.128", + "prefixLen":25, + "network":"193.215.243.128\/25", + "version":55446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64903 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.0.0", + "prefixLen":25, + "network":"193.216.0.0\/25", + "version":55573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.0.0", + "prefixLen":25, + "network":"193.216.0.0\/25", + "version":55573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.0.128", + "prefixLen":25, + "network":"193.216.0.128\/25", + "version":55700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.0.128", + "prefixLen":25, + "network":"193.216.0.128\/25", + "version":55700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.1.0", + "prefixLen":25, + "network":"193.216.1.0\/25", + "version":55699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.1.0", + "prefixLen":25, + "network":"193.216.1.0\/25", + "version":55699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.1.128", + "prefixLen":25, + "network":"193.216.1.128\/25", + "version":55698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.1.128", + "prefixLen":25, + "network":"193.216.1.128\/25", + "version":55698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.2.0", + "prefixLen":25, + "network":"193.216.2.0\/25", + "version":55697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.2.0", + "prefixLen":25, + "network":"193.216.2.0\/25", + "version":55697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.2.128", + "prefixLen":25, + "network":"193.216.2.128\/25", + "version":55696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.2.128", + "prefixLen":25, + "network":"193.216.2.128\/25", + "version":55696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.3.0", + "prefixLen":25, + "network":"193.216.3.0\/25", + "version":55695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.3.0", + "prefixLen":25, + "network":"193.216.3.0\/25", + "version":55695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.3.128", + "prefixLen":25, + "network":"193.216.3.128\/25", + "version":55694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.3.128", + "prefixLen":25, + "network":"193.216.3.128\/25", + "version":55694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.16.0", + "prefixLen":25, + "network":"193.216.16.0\/25", + "version":55693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.16.0", + "prefixLen":25, + "network":"193.216.16.0\/25", + "version":55693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.16.128", + "prefixLen":25, + "network":"193.216.16.128\/25", + "version":55692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.16.128", + "prefixLen":25, + "network":"193.216.16.128\/25", + "version":55692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.17.0", + "prefixLen":25, + "network":"193.216.17.0\/25", + "version":55691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.17.0", + "prefixLen":25, + "network":"193.216.17.0\/25", + "version":55691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.17.128", + "prefixLen":25, + "network":"193.216.17.128\/25", + "version":55690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.17.128", + "prefixLen":25, + "network":"193.216.17.128\/25", + "version":55690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.18.0", + "prefixLen":25, + "network":"193.216.18.0\/25", + "version":55689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.18.0", + "prefixLen":25, + "network":"193.216.18.0\/25", + "version":55689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.18.128", + "prefixLen":25, + "network":"193.216.18.128\/25", + "version":55688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.18.128", + "prefixLen":25, + "network":"193.216.18.128\/25", + "version":55688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.19.0", + "prefixLen":25, + "network":"193.216.19.0\/25", + "version":55687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.19.0", + "prefixLen":25, + "network":"193.216.19.0\/25", + "version":55687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.19.128", + "prefixLen":25, + "network":"193.216.19.128\/25", + "version":55686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.19.128", + "prefixLen":25, + "network":"193.216.19.128\/25", + "version":55686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.32.0", + "prefixLen":25, + "network":"193.216.32.0\/25", + "version":55685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.32.0", + "prefixLen":25, + "network":"193.216.32.0\/25", + "version":55685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.32.128", + "prefixLen":25, + "network":"193.216.32.128\/25", + "version":55684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.32.128", + "prefixLen":25, + "network":"193.216.32.128\/25", + "version":55684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.33.0", + "prefixLen":25, + "network":"193.216.33.0\/25", + "version":55683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.33.0", + "prefixLen":25, + "network":"193.216.33.0\/25", + "version":55683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.33.128", + "prefixLen":25, + "network":"193.216.33.128\/25", + "version":55682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.33.128", + "prefixLen":25, + "network":"193.216.33.128\/25", + "version":55682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.34.0", + "prefixLen":25, + "network":"193.216.34.0\/25", + "version":55681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.34.0", + "prefixLen":25, + "network":"193.216.34.0\/25", + "version":55681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.34.128", + "prefixLen":25, + "network":"193.216.34.128\/25", + "version":55680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.34.128", + "prefixLen":25, + "network":"193.216.34.128\/25", + "version":55680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.35.0", + "prefixLen":25, + "network":"193.216.35.0\/25", + "version":55679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.35.0", + "prefixLen":25, + "network":"193.216.35.0\/25", + "version":55679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.35.128", + "prefixLen":25, + "network":"193.216.35.128\/25", + "version":55678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.35.128", + "prefixLen":25, + "network":"193.216.35.128\/25", + "version":55678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.48.0", + "prefixLen":25, + "network":"193.216.48.0\/25", + "version":55677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.48.0", + "prefixLen":25, + "network":"193.216.48.0\/25", + "version":55677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.48.128", + "prefixLen":25, + "network":"193.216.48.128\/25", + "version":55676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.48.128", + "prefixLen":25, + "network":"193.216.48.128\/25", + "version":55676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.49.0", + "prefixLen":25, + "network":"193.216.49.0\/25", + "version":55675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.49.0", + "prefixLen":25, + "network":"193.216.49.0\/25", + "version":55675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.49.128", + "prefixLen":25, + "network":"193.216.49.128\/25", + "version":55674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.49.128", + "prefixLen":25, + "network":"193.216.49.128\/25", + "version":55674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.50.0", + "prefixLen":25, + "network":"193.216.50.0\/25", + "version":55673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.50.0", + "prefixLen":25, + "network":"193.216.50.0\/25", + "version":55673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.50.128", + "prefixLen":25, + "network":"193.216.50.128\/25", + "version":55672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.50.128", + "prefixLen":25, + "network":"193.216.50.128\/25", + "version":55672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.51.0", + "prefixLen":25, + "network":"193.216.51.0\/25", + "version":55671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.51.0", + "prefixLen":25, + "network":"193.216.51.0\/25", + "version":55671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.51.128", + "prefixLen":25, + "network":"193.216.51.128\/25", + "version":55670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.51.128", + "prefixLen":25, + "network":"193.216.51.128\/25", + "version":55670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.64.0", + "prefixLen":25, + "network":"193.216.64.0\/25", + "version":55669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.64.0", + "prefixLen":25, + "network":"193.216.64.0\/25", + "version":55669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.64.128", + "prefixLen":25, + "network":"193.216.64.128\/25", + "version":55668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.64.128", + "prefixLen":25, + "network":"193.216.64.128\/25", + "version":55668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.65.0", + "prefixLen":25, + "network":"193.216.65.0\/25", + "version":55667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.65.0", + "prefixLen":25, + "network":"193.216.65.0\/25", + "version":55667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.65.128", + "prefixLen":25, + "network":"193.216.65.128\/25", + "version":55666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.65.128", + "prefixLen":25, + "network":"193.216.65.128\/25", + "version":55666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.66.0", + "prefixLen":25, + "network":"193.216.66.0\/25", + "version":55665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.66.0", + "prefixLen":25, + "network":"193.216.66.0\/25", + "version":55665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.66.128", + "prefixLen":25, + "network":"193.216.66.128\/25", + "version":55664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.66.128", + "prefixLen":25, + "network":"193.216.66.128\/25", + "version":55664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.67.0", + "prefixLen":25, + "network":"193.216.67.0\/25", + "version":55663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.67.0", + "prefixLen":25, + "network":"193.216.67.0\/25", + "version":55663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.67.128", + "prefixLen":25, + "network":"193.216.67.128\/25", + "version":55662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.67.128", + "prefixLen":25, + "network":"193.216.67.128\/25", + "version":55662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.80.0", + "prefixLen":25, + "network":"193.216.80.0\/25", + "version":55661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.80.0", + "prefixLen":25, + "network":"193.216.80.0\/25", + "version":55661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.80.128", + "prefixLen":25, + "network":"193.216.80.128\/25", + "version":55660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.80.128", + "prefixLen":25, + "network":"193.216.80.128\/25", + "version":55660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.81.0", + "prefixLen":25, + "network":"193.216.81.0\/25", + "version":55659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.81.0", + "prefixLen":25, + "network":"193.216.81.0\/25", + "version":55659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.81.128", + "prefixLen":25, + "network":"193.216.81.128\/25", + "version":55658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.81.128", + "prefixLen":25, + "network":"193.216.81.128\/25", + "version":55658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.82.0", + "prefixLen":25, + "network":"193.216.82.0\/25", + "version":55657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.82.0", + "prefixLen":25, + "network":"193.216.82.0\/25", + "version":55657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.82.128", + "prefixLen":25, + "network":"193.216.82.128\/25", + "version":55656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.82.128", + "prefixLen":25, + "network":"193.216.82.128\/25", + "version":55656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.83.0", + "prefixLen":25, + "network":"193.216.83.0\/25", + "version":55655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.83.0", + "prefixLen":25, + "network":"193.216.83.0\/25", + "version":55655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.83.128", + "prefixLen":25, + "network":"193.216.83.128\/25", + "version":55654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.83.128", + "prefixLen":25, + "network":"193.216.83.128\/25", + "version":55654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.96.0", + "prefixLen":25, + "network":"193.216.96.0\/25", + "version":55653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.96.0", + "prefixLen":25, + "network":"193.216.96.0\/25", + "version":55653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.96.128", + "prefixLen":25, + "network":"193.216.96.128\/25", + "version":55652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.96.128", + "prefixLen":25, + "network":"193.216.96.128\/25", + "version":55652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.97.0", + "prefixLen":25, + "network":"193.216.97.0\/25", + "version":55651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.97.0", + "prefixLen":25, + "network":"193.216.97.0\/25", + "version":55651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.97.128", + "prefixLen":25, + "network":"193.216.97.128\/25", + "version":55650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.97.128", + "prefixLen":25, + "network":"193.216.97.128\/25", + "version":55650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.98.0", + "prefixLen":25, + "network":"193.216.98.0\/25", + "version":55649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.98.0", + "prefixLen":25, + "network":"193.216.98.0\/25", + "version":55649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.98.128", + "prefixLen":25, + "network":"193.216.98.128\/25", + "version":55648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.98.128", + "prefixLen":25, + "network":"193.216.98.128\/25", + "version":55648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.99.0", + "prefixLen":25, + "network":"193.216.99.0\/25", + "version":55647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.99.0", + "prefixLen":25, + "network":"193.216.99.0\/25", + "version":55647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.99.128", + "prefixLen":25, + "network":"193.216.99.128\/25", + "version":55646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.99.128", + "prefixLen":25, + "network":"193.216.99.128\/25", + "version":55646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.112.0", + "prefixLen":25, + "network":"193.216.112.0\/25", + "version":55645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.112.0", + "prefixLen":25, + "network":"193.216.112.0\/25", + "version":55645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.112.128", + "prefixLen":25, + "network":"193.216.112.128\/25", + "version":55644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.112.128", + "prefixLen":25, + "network":"193.216.112.128\/25", + "version":55644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.113.0", + "prefixLen":25, + "network":"193.216.113.0\/25", + "version":55643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.113.0", + "prefixLen":25, + "network":"193.216.113.0\/25", + "version":55643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.113.128", + "prefixLen":25, + "network":"193.216.113.128\/25", + "version":55642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.113.128", + "prefixLen":25, + "network":"193.216.113.128\/25", + "version":55642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.114.0", + "prefixLen":25, + "network":"193.216.114.0\/25", + "version":55641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.114.0", + "prefixLen":25, + "network":"193.216.114.0\/25", + "version":55641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.114.128", + "prefixLen":25, + "network":"193.216.114.128\/25", + "version":55640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.114.128", + "prefixLen":25, + "network":"193.216.114.128\/25", + "version":55640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.115.0", + "prefixLen":25, + "network":"193.216.115.0\/25", + "version":55639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.115.0", + "prefixLen":25, + "network":"193.216.115.0\/25", + "version":55639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.115.128", + "prefixLen":25, + "network":"193.216.115.128\/25", + "version":55638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.115.128", + "prefixLen":25, + "network":"193.216.115.128\/25", + "version":55638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.128.0", + "prefixLen":25, + "network":"193.216.128.0\/25", + "version":55637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.128.0", + "prefixLen":25, + "network":"193.216.128.0\/25", + "version":55637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.128.128", + "prefixLen":25, + "network":"193.216.128.128\/25", + "version":55636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.128.128", + "prefixLen":25, + "network":"193.216.128.128\/25", + "version":55636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.129.0", + "prefixLen":25, + "network":"193.216.129.0\/25", + "version":55635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.129.0", + "prefixLen":25, + "network":"193.216.129.0\/25", + "version":55635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.129.128", + "prefixLen":25, + "network":"193.216.129.128\/25", + "version":55634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.129.128", + "prefixLen":25, + "network":"193.216.129.128\/25", + "version":55634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.130.0", + "prefixLen":25, + "network":"193.216.130.0\/25", + "version":55633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.130.0", + "prefixLen":25, + "network":"193.216.130.0\/25", + "version":55633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.130.128", + "prefixLen":25, + "network":"193.216.130.128\/25", + "version":55632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.130.128", + "prefixLen":25, + "network":"193.216.130.128\/25", + "version":55632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.131.0", + "prefixLen":25, + "network":"193.216.131.0\/25", + "version":55631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.131.0", + "prefixLen":25, + "network":"193.216.131.0\/25", + "version":55631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.131.128", + "prefixLen":25, + "network":"193.216.131.128\/25", + "version":55630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.131.128", + "prefixLen":25, + "network":"193.216.131.128\/25", + "version":55630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.144.0", + "prefixLen":25, + "network":"193.216.144.0\/25", + "version":55629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.144.0", + "prefixLen":25, + "network":"193.216.144.0\/25", + "version":55629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.144.128", + "prefixLen":25, + "network":"193.216.144.128\/25", + "version":55628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.144.128", + "prefixLen":25, + "network":"193.216.144.128\/25", + "version":55628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.145.0", + "prefixLen":25, + "network":"193.216.145.0\/25", + "version":55627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.145.0", + "prefixLen":25, + "network":"193.216.145.0\/25", + "version":55627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.145.128", + "prefixLen":25, + "network":"193.216.145.128\/25", + "version":55626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.145.128", + "prefixLen":25, + "network":"193.216.145.128\/25", + "version":55626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.146.0", + "prefixLen":25, + "network":"193.216.146.0\/25", + "version":55625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.146.0", + "prefixLen":25, + "network":"193.216.146.0\/25", + "version":55625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.146.128", + "prefixLen":25, + "network":"193.216.146.128\/25", + "version":55624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.146.128", + "prefixLen":25, + "network":"193.216.146.128\/25", + "version":55624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.147.0", + "prefixLen":25, + "network":"193.216.147.0\/25", + "version":55623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.147.0", + "prefixLen":25, + "network":"193.216.147.0\/25", + "version":55623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.147.128", + "prefixLen":25, + "network":"193.216.147.128\/25", + "version":55622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.147.128", + "prefixLen":25, + "network":"193.216.147.128\/25", + "version":55622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.160.0", + "prefixLen":25, + "network":"193.216.160.0\/25", + "version":55621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.160.0", + "prefixLen":25, + "network":"193.216.160.0\/25", + "version":55621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.160.128", + "prefixLen":25, + "network":"193.216.160.128\/25", + "version":55620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.160.128", + "prefixLen":25, + "network":"193.216.160.128\/25", + "version":55620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.161.0", + "prefixLen":25, + "network":"193.216.161.0\/25", + "version":55619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.161.0", + "prefixLen":25, + "network":"193.216.161.0\/25", + "version":55619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.161.128", + "prefixLen":25, + "network":"193.216.161.128\/25", + "version":55618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.161.128", + "prefixLen":25, + "network":"193.216.161.128\/25", + "version":55618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.162.0", + "prefixLen":25, + "network":"193.216.162.0\/25", + "version":55617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.162.0", + "prefixLen":25, + "network":"193.216.162.0\/25", + "version":55617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.162.128", + "prefixLen":25, + "network":"193.216.162.128\/25", + "version":55616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.162.128", + "prefixLen":25, + "network":"193.216.162.128\/25", + "version":55616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.163.0", + "prefixLen":25, + "network":"193.216.163.0\/25", + "version":55615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.163.0", + "prefixLen":25, + "network":"193.216.163.0\/25", + "version":55615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.163.128", + "prefixLen":25, + "network":"193.216.163.128\/25", + "version":55614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.163.128", + "prefixLen":25, + "network":"193.216.163.128\/25", + "version":55614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.176.0", + "prefixLen":25, + "network":"193.216.176.0\/25", + "version":55613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.176.0", + "prefixLen":25, + "network":"193.216.176.0\/25", + "version":55613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.176.128", + "prefixLen":25, + "network":"193.216.176.128\/25", + "version":55612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.176.128", + "prefixLen":25, + "network":"193.216.176.128\/25", + "version":55612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.177.0", + "prefixLen":25, + "network":"193.216.177.0\/25", + "version":55611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.177.0", + "prefixLen":25, + "network":"193.216.177.0\/25", + "version":55611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.177.128", + "prefixLen":25, + "network":"193.216.177.128\/25", + "version":55610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.177.128", + "prefixLen":25, + "network":"193.216.177.128\/25", + "version":55610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.178.0", + "prefixLen":25, + "network":"193.216.178.0\/25", + "version":55609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.178.0", + "prefixLen":25, + "network":"193.216.178.0\/25", + "version":55609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.178.128", + "prefixLen":25, + "network":"193.216.178.128\/25", + "version":55608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.178.128", + "prefixLen":25, + "network":"193.216.178.128\/25", + "version":55608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.179.0", + "prefixLen":25, + "network":"193.216.179.0\/25", + "version":55607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.179.0", + "prefixLen":25, + "network":"193.216.179.0\/25", + "version":55607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.179.128", + "prefixLen":25, + "network":"193.216.179.128\/25", + "version":55606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.179.128", + "prefixLen":25, + "network":"193.216.179.128\/25", + "version":55606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.192.0", + "prefixLen":25, + "network":"193.216.192.0\/25", + "version":55605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.192.0", + "prefixLen":25, + "network":"193.216.192.0\/25", + "version":55605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.192.128", + "prefixLen":25, + "network":"193.216.192.128\/25", + "version":55604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.192.128", + "prefixLen":25, + "network":"193.216.192.128\/25", + "version":55604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.193.0", + "prefixLen":25, + "network":"193.216.193.0\/25", + "version":55603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.193.0", + "prefixLen":25, + "network":"193.216.193.0\/25", + "version":55603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.193.128", + "prefixLen":25, + "network":"193.216.193.128\/25", + "version":55602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.193.128", + "prefixLen":25, + "network":"193.216.193.128\/25", + "version":55602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.194.0", + "prefixLen":25, + "network":"193.216.194.0\/25", + "version":55601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.194.0", + "prefixLen":25, + "network":"193.216.194.0\/25", + "version":55601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.194.128", + "prefixLen":25, + "network":"193.216.194.128\/25", + "version":55600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.194.128", + "prefixLen":25, + "network":"193.216.194.128\/25", + "version":55600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.195.0", + "prefixLen":25, + "network":"193.216.195.0\/25", + "version":55599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.195.0", + "prefixLen":25, + "network":"193.216.195.0\/25", + "version":55599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.195.128", + "prefixLen":25, + "network":"193.216.195.128\/25", + "version":55598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.195.128", + "prefixLen":25, + "network":"193.216.195.128\/25", + "version":55598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.208.0", + "prefixLen":25, + "network":"193.216.208.0\/25", + "version":55597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.208.0", + "prefixLen":25, + "network":"193.216.208.0\/25", + "version":55597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.208.128", + "prefixLen":25, + "network":"193.216.208.128\/25", + "version":55596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.208.128", + "prefixLen":25, + "network":"193.216.208.128\/25", + "version":55596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.209.0", + "prefixLen":25, + "network":"193.216.209.0\/25", + "version":55595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.209.0", + "prefixLen":25, + "network":"193.216.209.0\/25", + "version":55595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.209.128", + "prefixLen":25, + "network":"193.216.209.128\/25", + "version":55594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.209.128", + "prefixLen":25, + "network":"193.216.209.128\/25", + "version":55594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.210.0", + "prefixLen":25, + "network":"193.216.210.0\/25", + "version":55593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.210.0", + "prefixLen":25, + "network":"193.216.210.0\/25", + "version":55593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.210.128", + "prefixLen":25, + "network":"193.216.210.128\/25", + "version":55592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.210.128", + "prefixLen":25, + "network":"193.216.210.128\/25", + "version":55592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.211.0", + "prefixLen":25, + "network":"193.216.211.0\/25", + "version":55591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.211.0", + "prefixLen":25, + "network":"193.216.211.0\/25", + "version":55591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.211.128", + "prefixLen":25, + "network":"193.216.211.128\/25", + "version":55590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.211.128", + "prefixLen":25, + "network":"193.216.211.128\/25", + "version":55590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.224.0", + "prefixLen":25, + "network":"193.216.224.0\/25", + "version":55589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.224.0", + "prefixLen":25, + "network":"193.216.224.0\/25", + "version":55589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.224.128", + "prefixLen":25, + "network":"193.216.224.128\/25", + "version":55588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.224.128", + "prefixLen":25, + "network":"193.216.224.128\/25", + "version":55588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.225.0", + "prefixLen":25, + "network":"193.216.225.0\/25", + "version":55587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.225.0", + "prefixLen":25, + "network":"193.216.225.0\/25", + "version":55587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.225.128", + "prefixLen":25, + "network":"193.216.225.128\/25", + "version":55586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.225.128", + "prefixLen":25, + "network":"193.216.225.128\/25", + "version":55586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.226.0", + "prefixLen":25, + "network":"193.216.226.0\/25", + "version":55585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.226.0", + "prefixLen":25, + "network":"193.216.226.0\/25", + "version":55585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.226.128", + "prefixLen":25, + "network":"193.216.226.128\/25", + "version":55584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.226.128", + "prefixLen":25, + "network":"193.216.226.128\/25", + "version":55584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.227.0", + "prefixLen":25, + "network":"193.216.227.0\/25", + "version":55583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.227.0", + "prefixLen":25, + "network":"193.216.227.0\/25", + "version":55583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.227.128", + "prefixLen":25, + "network":"193.216.227.128\/25", + "version":55582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.227.128", + "prefixLen":25, + "network":"193.216.227.128\/25", + "version":55582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.240.0", + "prefixLen":25, + "network":"193.216.240.0\/25", + "version":55581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.240.0", + "prefixLen":25, + "network":"193.216.240.0\/25", + "version":55581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.240.128", + "prefixLen":25, + "network":"193.216.240.128\/25", + "version":55580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.240.128", + "prefixLen":25, + "network":"193.216.240.128\/25", + "version":55580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.241.0", + "prefixLen":25, + "network":"193.216.241.0\/25", + "version":55579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.241.0", + "prefixLen":25, + "network":"193.216.241.0\/25", + "version":55579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.241.128", + "prefixLen":25, + "network":"193.216.241.128\/25", + "version":55578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.241.128", + "prefixLen":25, + "network":"193.216.241.128\/25", + "version":55578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.242.0", + "prefixLen":25, + "network":"193.216.242.0\/25", + "version":55577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.242.0", + "prefixLen":25, + "network":"193.216.242.0\/25", + "version":55577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.242.128", + "prefixLen":25, + "network":"193.216.242.128\/25", + "version":55576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.242.128", + "prefixLen":25, + "network":"193.216.242.128\/25", + "version":55576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.243.0", + "prefixLen":25, + "network":"193.216.243.0\/25", + "version":55575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.243.0", + "prefixLen":25, + "network":"193.216.243.0\/25", + "version":55575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.216.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.216.243.128", + "prefixLen":25, + "network":"193.216.243.128\/25", + "version":55574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.216.243.128", + "prefixLen":25, + "network":"193.216.243.128\/25", + "version":55574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64904 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.0.0", + "prefixLen":25, + "network":"193.217.0.0\/25", + "version":55701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.0.0", + "prefixLen":25, + "network":"193.217.0.0\/25", + "version":55701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.0.128", + "prefixLen":25, + "network":"193.217.0.128\/25", + "version":55828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.0.128", + "prefixLen":25, + "network":"193.217.0.128\/25", + "version":55828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.1.0", + "prefixLen":25, + "network":"193.217.1.0\/25", + "version":55827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.1.0", + "prefixLen":25, + "network":"193.217.1.0\/25", + "version":55827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.1.128", + "prefixLen":25, + "network":"193.217.1.128\/25", + "version":55826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.1.128", + "prefixLen":25, + "network":"193.217.1.128\/25", + "version":55826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.2.0", + "prefixLen":25, + "network":"193.217.2.0\/25", + "version":55825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.2.0", + "prefixLen":25, + "network":"193.217.2.0\/25", + "version":55825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.2.128", + "prefixLen":25, + "network":"193.217.2.128\/25", + "version":55824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.2.128", + "prefixLen":25, + "network":"193.217.2.128\/25", + "version":55824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.3.0", + "prefixLen":25, + "network":"193.217.3.0\/25", + "version":55823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.3.0", + "prefixLen":25, + "network":"193.217.3.0\/25", + "version":55823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.3.128", + "prefixLen":25, + "network":"193.217.3.128\/25", + "version":55822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.3.128", + "prefixLen":25, + "network":"193.217.3.128\/25", + "version":55822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.16.0", + "prefixLen":25, + "network":"193.217.16.0\/25", + "version":55821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.16.0", + "prefixLen":25, + "network":"193.217.16.0\/25", + "version":55821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.16.128", + "prefixLen":25, + "network":"193.217.16.128\/25", + "version":55820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.16.128", + "prefixLen":25, + "network":"193.217.16.128\/25", + "version":55820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.17.0", + "prefixLen":25, + "network":"193.217.17.0\/25", + "version":55819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.17.0", + "prefixLen":25, + "network":"193.217.17.0\/25", + "version":55819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.17.128", + "prefixLen":25, + "network":"193.217.17.128\/25", + "version":55818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.17.128", + "prefixLen":25, + "network":"193.217.17.128\/25", + "version":55818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.18.0", + "prefixLen":25, + "network":"193.217.18.0\/25", + "version":55817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.18.0", + "prefixLen":25, + "network":"193.217.18.0\/25", + "version":55817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.18.128", + "prefixLen":25, + "network":"193.217.18.128\/25", + "version":55816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.18.128", + "prefixLen":25, + "network":"193.217.18.128\/25", + "version":55816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.19.0", + "prefixLen":25, + "network":"193.217.19.0\/25", + "version":55815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.19.0", + "prefixLen":25, + "network":"193.217.19.0\/25", + "version":55815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.19.128", + "prefixLen":25, + "network":"193.217.19.128\/25", + "version":55814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.19.128", + "prefixLen":25, + "network":"193.217.19.128\/25", + "version":55814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.32.0", + "prefixLen":25, + "network":"193.217.32.0\/25", + "version":55813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.32.0", + "prefixLen":25, + "network":"193.217.32.0\/25", + "version":55813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.32.128", + "prefixLen":25, + "network":"193.217.32.128\/25", + "version":55812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.32.128", + "prefixLen":25, + "network":"193.217.32.128\/25", + "version":55812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.33.0", + "prefixLen":25, + "network":"193.217.33.0\/25", + "version":55811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.33.0", + "prefixLen":25, + "network":"193.217.33.0\/25", + "version":55811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.33.128", + "prefixLen":25, + "network":"193.217.33.128\/25", + "version":55810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.33.128", + "prefixLen":25, + "network":"193.217.33.128\/25", + "version":55810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.34.0", + "prefixLen":25, + "network":"193.217.34.0\/25", + "version":55809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.34.0", + "prefixLen":25, + "network":"193.217.34.0\/25", + "version":55809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.34.128", + "prefixLen":25, + "network":"193.217.34.128\/25", + "version":55808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.34.128", + "prefixLen":25, + "network":"193.217.34.128\/25", + "version":55808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.35.0", + "prefixLen":25, + "network":"193.217.35.0\/25", + "version":55807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.35.0", + "prefixLen":25, + "network":"193.217.35.0\/25", + "version":55807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.35.128", + "prefixLen":25, + "network":"193.217.35.128\/25", + "version":55806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.35.128", + "prefixLen":25, + "network":"193.217.35.128\/25", + "version":55806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.48.0", + "prefixLen":25, + "network":"193.217.48.0\/25", + "version":55805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.48.0", + "prefixLen":25, + "network":"193.217.48.0\/25", + "version":55805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.48.128", + "prefixLen":25, + "network":"193.217.48.128\/25", + "version":55804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.48.128", + "prefixLen":25, + "network":"193.217.48.128\/25", + "version":55804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.49.0", + "prefixLen":25, + "network":"193.217.49.0\/25", + "version":55803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.49.0", + "prefixLen":25, + "network":"193.217.49.0\/25", + "version":55803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.49.128", + "prefixLen":25, + "network":"193.217.49.128\/25", + "version":55802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.49.128", + "prefixLen":25, + "network":"193.217.49.128\/25", + "version":55802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.50.0", + "prefixLen":25, + "network":"193.217.50.0\/25", + "version":55801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.50.0", + "prefixLen":25, + "network":"193.217.50.0\/25", + "version":55801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.50.128", + "prefixLen":25, + "network":"193.217.50.128\/25", + "version":55800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.50.128", + "prefixLen":25, + "network":"193.217.50.128\/25", + "version":55800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.51.0", + "prefixLen":25, + "network":"193.217.51.0\/25", + "version":55799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.51.0", + "prefixLen":25, + "network":"193.217.51.0\/25", + "version":55799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.51.128", + "prefixLen":25, + "network":"193.217.51.128\/25", + "version":55798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.51.128", + "prefixLen":25, + "network":"193.217.51.128\/25", + "version":55798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.64.0", + "prefixLen":25, + "network":"193.217.64.0\/25", + "version":55797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.64.0", + "prefixLen":25, + "network":"193.217.64.0\/25", + "version":55797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.64.128", + "prefixLen":25, + "network":"193.217.64.128\/25", + "version":55796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.64.128", + "prefixLen":25, + "network":"193.217.64.128\/25", + "version":55796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.65.0", + "prefixLen":25, + "network":"193.217.65.0\/25", + "version":55795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.65.0", + "prefixLen":25, + "network":"193.217.65.0\/25", + "version":55795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.65.128", + "prefixLen":25, + "network":"193.217.65.128\/25", + "version":55794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.65.128", + "prefixLen":25, + "network":"193.217.65.128\/25", + "version":55794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.66.0", + "prefixLen":25, + "network":"193.217.66.0\/25", + "version":55793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.66.0", + "prefixLen":25, + "network":"193.217.66.0\/25", + "version":55793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.66.128", + "prefixLen":25, + "network":"193.217.66.128\/25", + "version":55792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.66.128", + "prefixLen":25, + "network":"193.217.66.128\/25", + "version":55792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.67.0", + "prefixLen":25, + "network":"193.217.67.0\/25", + "version":55791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.67.0", + "prefixLen":25, + "network":"193.217.67.0\/25", + "version":55791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.67.128", + "prefixLen":25, + "network":"193.217.67.128\/25", + "version":55790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.67.128", + "prefixLen":25, + "network":"193.217.67.128\/25", + "version":55790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.80.0", + "prefixLen":25, + "network":"193.217.80.0\/25", + "version":55789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.80.0", + "prefixLen":25, + "network":"193.217.80.0\/25", + "version":55789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.80.128", + "prefixLen":25, + "network":"193.217.80.128\/25", + "version":55788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.80.128", + "prefixLen":25, + "network":"193.217.80.128\/25", + "version":55788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.81.0", + "prefixLen":25, + "network":"193.217.81.0\/25", + "version":55787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.81.0", + "prefixLen":25, + "network":"193.217.81.0\/25", + "version":55787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.81.128", + "prefixLen":25, + "network":"193.217.81.128\/25", + "version":55786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.81.128", + "prefixLen":25, + "network":"193.217.81.128\/25", + "version":55786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.82.0", + "prefixLen":25, + "network":"193.217.82.0\/25", + "version":55785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.82.0", + "prefixLen":25, + "network":"193.217.82.0\/25", + "version":55785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.82.128", + "prefixLen":25, + "network":"193.217.82.128\/25", + "version":55784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.82.128", + "prefixLen":25, + "network":"193.217.82.128\/25", + "version":55784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.83.0", + "prefixLen":25, + "network":"193.217.83.0\/25", + "version":55783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.83.0", + "prefixLen":25, + "network":"193.217.83.0\/25", + "version":55783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.83.128", + "prefixLen":25, + "network":"193.217.83.128\/25", + "version":55782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.83.128", + "prefixLen":25, + "network":"193.217.83.128\/25", + "version":55782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.96.0", + "prefixLen":25, + "network":"193.217.96.0\/25", + "version":55781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.96.0", + "prefixLen":25, + "network":"193.217.96.0\/25", + "version":55781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.96.128", + "prefixLen":25, + "network":"193.217.96.128\/25", + "version":55780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.96.128", + "prefixLen":25, + "network":"193.217.96.128\/25", + "version":55780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.97.0", + "prefixLen":25, + "network":"193.217.97.0\/25", + "version":55779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.97.0", + "prefixLen":25, + "network":"193.217.97.0\/25", + "version":55779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.97.128", + "prefixLen":25, + "network":"193.217.97.128\/25", + "version":55778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.97.128", + "prefixLen":25, + "network":"193.217.97.128\/25", + "version":55778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.98.0", + "prefixLen":25, + "network":"193.217.98.0\/25", + "version":55777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.98.0", + "prefixLen":25, + "network":"193.217.98.0\/25", + "version":55777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.98.128", + "prefixLen":25, + "network":"193.217.98.128\/25", + "version":55776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.98.128", + "prefixLen":25, + "network":"193.217.98.128\/25", + "version":55776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.99.0", + "prefixLen":25, + "network":"193.217.99.0\/25", + "version":55775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.99.0", + "prefixLen":25, + "network":"193.217.99.0\/25", + "version":55775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.99.128", + "prefixLen":25, + "network":"193.217.99.128\/25", + "version":55774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.99.128", + "prefixLen":25, + "network":"193.217.99.128\/25", + "version":55774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.112.0", + "prefixLen":25, + "network":"193.217.112.0\/25", + "version":55773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.112.0", + "prefixLen":25, + "network":"193.217.112.0\/25", + "version":55773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.112.128", + "prefixLen":25, + "network":"193.217.112.128\/25", + "version":55772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.112.128", + "prefixLen":25, + "network":"193.217.112.128\/25", + "version":55772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.113.0", + "prefixLen":25, + "network":"193.217.113.0\/25", + "version":55771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.113.0", + "prefixLen":25, + "network":"193.217.113.0\/25", + "version":55771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.113.128", + "prefixLen":25, + "network":"193.217.113.128\/25", + "version":55770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.113.128", + "prefixLen":25, + "network":"193.217.113.128\/25", + "version":55770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.114.0", + "prefixLen":25, + "network":"193.217.114.0\/25", + "version":55769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.114.0", + "prefixLen":25, + "network":"193.217.114.0\/25", + "version":55769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.114.128", + "prefixLen":25, + "network":"193.217.114.128\/25", + "version":55768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.114.128", + "prefixLen":25, + "network":"193.217.114.128\/25", + "version":55768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.115.0", + "prefixLen":25, + "network":"193.217.115.0\/25", + "version":55767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.115.0", + "prefixLen":25, + "network":"193.217.115.0\/25", + "version":55767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.115.128", + "prefixLen":25, + "network":"193.217.115.128\/25", + "version":55766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.115.128", + "prefixLen":25, + "network":"193.217.115.128\/25", + "version":55766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.128.0", + "prefixLen":25, + "network":"193.217.128.0\/25", + "version":55765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.128.0", + "prefixLen":25, + "network":"193.217.128.0\/25", + "version":55765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.128.128", + "prefixLen":25, + "network":"193.217.128.128\/25", + "version":55764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.128.128", + "prefixLen":25, + "network":"193.217.128.128\/25", + "version":55764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.129.0", + "prefixLen":25, + "network":"193.217.129.0\/25", + "version":55763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.129.0", + "prefixLen":25, + "network":"193.217.129.0\/25", + "version":55763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.129.128", + "prefixLen":25, + "network":"193.217.129.128\/25", + "version":55762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.129.128", + "prefixLen":25, + "network":"193.217.129.128\/25", + "version":55762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.130.0", + "prefixLen":25, + "network":"193.217.130.0\/25", + "version":55761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.130.0", + "prefixLen":25, + "network":"193.217.130.0\/25", + "version":55761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.130.128", + "prefixLen":25, + "network":"193.217.130.128\/25", + "version":55760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.130.128", + "prefixLen":25, + "network":"193.217.130.128\/25", + "version":55760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.131.0", + "prefixLen":25, + "network":"193.217.131.0\/25", + "version":55759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.131.0", + "prefixLen":25, + "network":"193.217.131.0\/25", + "version":55759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.131.128", + "prefixLen":25, + "network":"193.217.131.128\/25", + "version":55758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.131.128", + "prefixLen":25, + "network":"193.217.131.128\/25", + "version":55758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.144.0", + "prefixLen":25, + "network":"193.217.144.0\/25", + "version":55757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.144.0", + "prefixLen":25, + "network":"193.217.144.0\/25", + "version":55757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.144.128", + "prefixLen":25, + "network":"193.217.144.128\/25", + "version":55756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.144.128", + "prefixLen":25, + "network":"193.217.144.128\/25", + "version":55756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.145.0", + "prefixLen":25, + "network":"193.217.145.0\/25", + "version":55755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.145.0", + "prefixLen":25, + "network":"193.217.145.0\/25", + "version":55755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.145.128", + "prefixLen":25, + "network":"193.217.145.128\/25", + "version":55754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.145.128", + "prefixLen":25, + "network":"193.217.145.128\/25", + "version":55754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.146.0", + "prefixLen":25, + "network":"193.217.146.0\/25", + "version":55753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.146.0", + "prefixLen":25, + "network":"193.217.146.0\/25", + "version":55753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.146.128", + "prefixLen":25, + "network":"193.217.146.128\/25", + "version":55752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.146.128", + "prefixLen":25, + "network":"193.217.146.128\/25", + "version":55752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.147.0", + "prefixLen":25, + "network":"193.217.147.0\/25", + "version":55751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.147.0", + "prefixLen":25, + "network":"193.217.147.0\/25", + "version":55751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.147.128", + "prefixLen":25, + "network":"193.217.147.128\/25", + "version":55750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.147.128", + "prefixLen":25, + "network":"193.217.147.128\/25", + "version":55750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.160.0", + "prefixLen":25, + "network":"193.217.160.0\/25", + "version":55749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.160.0", + "prefixLen":25, + "network":"193.217.160.0\/25", + "version":55749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.160.128", + "prefixLen":25, + "network":"193.217.160.128\/25", + "version":55748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.160.128", + "prefixLen":25, + "network":"193.217.160.128\/25", + "version":55748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.161.0", + "prefixLen":25, + "network":"193.217.161.0\/25", + "version":55747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.161.0", + "prefixLen":25, + "network":"193.217.161.0\/25", + "version":55747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.161.128", + "prefixLen":25, + "network":"193.217.161.128\/25", + "version":55746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.161.128", + "prefixLen":25, + "network":"193.217.161.128\/25", + "version":55746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.162.0", + "prefixLen":25, + "network":"193.217.162.0\/25", + "version":55745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.162.0", + "prefixLen":25, + "network":"193.217.162.0\/25", + "version":55745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.162.128", + "prefixLen":25, + "network":"193.217.162.128\/25", + "version":55744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.162.128", + "prefixLen":25, + "network":"193.217.162.128\/25", + "version":55744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.163.0", + "prefixLen":25, + "network":"193.217.163.0\/25", + "version":55743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.163.0", + "prefixLen":25, + "network":"193.217.163.0\/25", + "version":55743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.163.128", + "prefixLen":25, + "network":"193.217.163.128\/25", + "version":55742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.163.128", + "prefixLen":25, + "network":"193.217.163.128\/25", + "version":55742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.176.0", + "prefixLen":25, + "network":"193.217.176.0\/25", + "version":55741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.176.0", + "prefixLen":25, + "network":"193.217.176.0\/25", + "version":55741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.176.128", + "prefixLen":25, + "network":"193.217.176.128\/25", + "version":55740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.176.128", + "prefixLen":25, + "network":"193.217.176.128\/25", + "version":55740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.177.0", + "prefixLen":25, + "network":"193.217.177.0\/25", + "version":55739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.177.0", + "prefixLen":25, + "network":"193.217.177.0\/25", + "version":55739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.177.128", + "prefixLen":25, + "network":"193.217.177.128\/25", + "version":55738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.177.128", + "prefixLen":25, + "network":"193.217.177.128\/25", + "version":55738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.178.0", + "prefixLen":25, + "network":"193.217.178.0\/25", + "version":55737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.178.0", + "prefixLen":25, + "network":"193.217.178.0\/25", + "version":55737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.178.128", + "prefixLen":25, + "network":"193.217.178.128\/25", + "version":55736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.178.128", + "prefixLen":25, + "network":"193.217.178.128\/25", + "version":55736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.179.0", + "prefixLen":25, + "network":"193.217.179.0\/25", + "version":55735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.179.0", + "prefixLen":25, + "network":"193.217.179.0\/25", + "version":55735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.179.128", + "prefixLen":25, + "network":"193.217.179.128\/25", + "version":55734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.179.128", + "prefixLen":25, + "network":"193.217.179.128\/25", + "version":55734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.192.0", + "prefixLen":25, + "network":"193.217.192.0\/25", + "version":55733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.192.0", + "prefixLen":25, + "network":"193.217.192.0\/25", + "version":55733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.192.128", + "prefixLen":25, + "network":"193.217.192.128\/25", + "version":55732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.192.128", + "prefixLen":25, + "network":"193.217.192.128\/25", + "version":55732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.193.0", + "prefixLen":25, + "network":"193.217.193.0\/25", + "version":55731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.193.0", + "prefixLen":25, + "network":"193.217.193.0\/25", + "version":55731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.193.128", + "prefixLen":25, + "network":"193.217.193.128\/25", + "version":55730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.193.128", + "prefixLen":25, + "network":"193.217.193.128\/25", + "version":55730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.194.0", + "prefixLen":25, + "network":"193.217.194.0\/25", + "version":55729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.194.0", + "prefixLen":25, + "network":"193.217.194.0\/25", + "version":55729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.194.128", + "prefixLen":25, + "network":"193.217.194.128\/25", + "version":55728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.194.128", + "prefixLen":25, + "network":"193.217.194.128\/25", + "version":55728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.195.0", + "prefixLen":25, + "network":"193.217.195.0\/25", + "version":55727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.195.0", + "prefixLen":25, + "network":"193.217.195.0\/25", + "version":55727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.195.128", + "prefixLen":25, + "network":"193.217.195.128\/25", + "version":55726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.195.128", + "prefixLen":25, + "network":"193.217.195.128\/25", + "version":55726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.208.0", + "prefixLen":25, + "network":"193.217.208.0\/25", + "version":55725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.208.0", + "prefixLen":25, + "network":"193.217.208.0\/25", + "version":55725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.208.128", + "prefixLen":25, + "network":"193.217.208.128\/25", + "version":55724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.208.128", + "prefixLen":25, + "network":"193.217.208.128\/25", + "version":55724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.209.0", + "prefixLen":25, + "network":"193.217.209.0\/25", + "version":55723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.209.0", + "prefixLen":25, + "network":"193.217.209.0\/25", + "version":55723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.209.128", + "prefixLen":25, + "network":"193.217.209.128\/25", + "version":55722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.209.128", + "prefixLen":25, + "network":"193.217.209.128\/25", + "version":55722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.210.0", + "prefixLen":25, + "network":"193.217.210.0\/25", + "version":55721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.210.0", + "prefixLen":25, + "network":"193.217.210.0\/25", + "version":55721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.210.128", + "prefixLen":25, + "network":"193.217.210.128\/25", + "version":55720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.210.128", + "prefixLen":25, + "network":"193.217.210.128\/25", + "version":55720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.211.0", + "prefixLen":25, + "network":"193.217.211.0\/25", + "version":55719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.211.0", + "prefixLen":25, + "network":"193.217.211.0\/25", + "version":55719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.211.128", + "prefixLen":25, + "network":"193.217.211.128\/25", + "version":55718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.211.128", + "prefixLen":25, + "network":"193.217.211.128\/25", + "version":55718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.224.0", + "prefixLen":25, + "network":"193.217.224.0\/25", + "version":55717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.224.0", + "prefixLen":25, + "network":"193.217.224.0\/25", + "version":55717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.224.128", + "prefixLen":25, + "network":"193.217.224.128\/25", + "version":55716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.224.128", + "prefixLen":25, + "network":"193.217.224.128\/25", + "version":55716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.225.0", + "prefixLen":25, + "network":"193.217.225.0\/25", + "version":55715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.225.0", + "prefixLen":25, + "network":"193.217.225.0\/25", + "version":55715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.225.128", + "prefixLen":25, + "network":"193.217.225.128\/25", + "version":55714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.225.128", + "prefixLen":25, + "network":"193.217.225.128\/25", + "version":55714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.226.0", + "prefixLen":25, + "network":"193.217.226.0\/25", + "version":55713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.226.0", + "prefixLen":25, + "network":"193.217.226.0\/25", + "version":55713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.226.128", + "prefixLen":25, + "network":"193.217.226.128\/25", + "version":55712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.226.128", + "prefixLen":25, + "network":"193.217.226.128\/25", + "version":55712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.227.0", + "prefixLen":25, + "network":"193.217.227.0\/25", + "version":55711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.227.0", + "prefixLen":25, + "network":"193.217.227.0\/25", + "version":55711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.227.128", + "prefixLen":25, + "network":"193.217.227.128\/25", + "version":55710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.227.128", + "prefixLen":25, + "network":"193.217.227.128\/25", + "version":55710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.240.0", + "prefixLen":25, + "network":"193.217.240.0\/25", + "version":55709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.240.0", + "prefixLen":25, + "network":"193.217.240.0\/25", + "version":55709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.240.128", + "prefixLen":25, + "network":"193.217.240.128\/25", + "version":55708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.240.128", + "prefixLen":25, + "network":"193.217.240.128\/25", + "version":55708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.241.0", + "prefixLen":25, + "network":"193.217.241.0\/25", + "version":55707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.241.0", + "prefixLen":25, + "network":"193.217.241.0\/25", + "version":55707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.241.128", + "prefixLen":25, + "network":"193.217.241.128\/25", + "version":55706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.241.128", + "prefixLen":25, + "network":"193.217.241.128\/25", + "version":55706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.242.0", + "prefixLen":25, + "network":"193.217.242.0\/25", + "version":55705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.242.0", + "prefixLen":25, + "network":"193.217.242.0\/25", + "version":55705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.242.128", + "prefixLen":25, + "network":"193.217.242.128\/25", + "version":55704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.242.128", + "prefixLen":25, + "network":"193.217.242.128\/25", + "version":55704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.243.0", + "prefixLen":25, + "network":"193.217.243.0\/25", + "version":55703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.243.0", + "prefixLen":25, + "network":"193.217.243.0\/25", + "version":55703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.217.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.217.243.128", + "prefixLen":25, + "network":"193.217.243.128\/25", + "version":55702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.217.243.128", + "prefixLen":25, + "network":"193.217.243.128\/25", + "version":55702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64905 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.0.0", + "prefixLen":25, + "network":"193.218.0.0\/25", + "version":55829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.0.0", + "prefixLen":25, + "network":"193.218.0.0\/25", + "version":55829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.0.128", + "prefixLen":25, + "network":"193.218.0.128\/25", + "version":55956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.0.128", + "prefixLen":25, + "network":"193.218.0.128\/25", + "version":55956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.1.0", + "prefixLen":25, + "network":"193.218.1.0\/25", + "version":55955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.1.0", + "prefixLen":25, + "network":"193.218.1.0\/25", + "version":55955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.1.128", + "prefixLen":25, + "network":"193.218.1.128\/25", + "version":55954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.1.128", + "prefixLen":25, + "network":"193.218.1.128\/25", + "version":55954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.2.0", + "prefixLen":25, + "network":"193.218.2.0\/25", + "version":55953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.2.0", + "prefixLen":25, + "network":"193.218.2.0\/25", + "version":55953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.2.128", + "prefixLen":25, + "network":"193.218.2.128\/25", + "version":55952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.2.128", + "prefixLen":25, + "network":"193.218.2.128\/25", + "version":55952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.3.0", + "prefixLen":25, + "network":"193.218.3.0\/25", + "version":55951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.3.0", + "prefixLen":25, + "network":"193.218.3.0\/25", + "version":55951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.3.128", + "prefixLen":25, + "network":"193.218.3.128\/25", + "version":55950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.3.128", + "prefixLen":25, + "network":"193.218.3.128\/25", + "version":55950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.16.0", + "prefixLen":25, + "network":"193.218.16.0\/25", + "version":55949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.16.0", + "prefixLen":25, + "network":"193.218.16.0\/25", + "version":55949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.16.128", + "prefixLen":25, + "network":"193.218.16.128\/25", + "version":55948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.16.128", + "prefixLen":25, + "network":"193.218.16.128\/25", + "version":55948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.17.0", + "prefixLen":25, + "network":"193.218.17.0\/25", + "version":55947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.17.0", + "prefixLen":25, + "network":"193.218.17.0\/25", + "version":55947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.17.128", + "prefixLen":25, + "network":"193.218.17.128\/25", + "version":55946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.17.128", + "prefixLen":25, + "network":"193.218.17.128\/25", + "version":55946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.18.0", + "prefixLen":25, + "network":"193.218.18.0\/25", + "version":55945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.18.0", + "prefixLen":25, + "network":"193.218.18.0\/25", + "version":55945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.18.128", + "prefixLen":25, + "network":"193.218.18.128\/25", + "version":55944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.18.128", + "prefixLen":25, + "network":"193.218.18.128\/25", + "version":55944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.19.0", + "prefixLen":25, + "network":"193.218.19.0\/25", + "version":55943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.19.0", + "prefixLen":25, + "network":"193.218.19.0\/25", + "version":55943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.19.128", + "prefixLen":25, + "network":"193.218.19.128\/25", + "version":55942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.19.128", + "prefixLen":25, + "network":"193.218.19.128\/25", + "version":55942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.32.0", + "prefixLen":25, + "network":"193.218.32.0\/25", + "version":55941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.32.0", + "prefixLen":25, + "network":"193.218.32.0\/25", + "version":55941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.32.128", + "prefixLen":25, + "network":"193.218.32.128\/25", + "version":55940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.32.128", + "prefixLen":25, + "network":"193.218.32.128\/25", + "version":55940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.33.0", + "prefixLen":25, + "network":"193.218.33.0\/25", + "version":55939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.33.0", + "prefixLen":25, + "network":"193.218.33.0\/25", + "version":55939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.33.128", + "prefixLen":25, + "network":"193.218.33.128\/25", + "version":55938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.33.128", + "prefixLen":25, + "network":"193.218.33.128\/25", + "version":55938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.34.0", + "prefixLen":25, + "network":"193.218.34.0\/25", + "version":55937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.34.0", + "prefixLen":25, + "network":"193.218.34.0\/25", + "version":55937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.34.128", + "prefixLen":25, + "network":"193.218.34.128\/25", + "version":55936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.34.128", + "prefixLen":25, + "network":"193.218.34.128\/25", + "version":55936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.35.0", + "prefixLen":25, + "network":"193.218.35.0\/25", + "version":55935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.35.0", + "prefixLen":25, + "network":"193.218.35.0\/25", + "version":55935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.35.128", + "prefixLen":25, + "network":"193.218.35.128\/25", + "version":55934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.35.128", + "prefixLen":25, + "network":"193.218.35.128\/25", + "version":55934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.48.0", + "prefixLen":25, + "network":"193.218.48.0\/25", + "version":55933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.48.0", + "prefixLen":25, + "network":"193.218.48.0\/25", + "version":55933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.48.128", + "prefixLen":25, + "network":"193.218.48.128\/25", + "version":55932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.48.128", + "prefixLen":25, + "network":"193.218.48.128\/25", + "version":55932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.49.0", + "prefixLen":25, + "network":"193.218.49.0\/25", + "version":55931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.49.0", + "prefixLen":25, + "network":"193.218.49.0\/25", + "version":55931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.49.128", + "prefixLen":25, + "network":"193.218.49.128\/25", + "version":55930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.49.128", + "prefixLen":25, + "network":"193.218.49.128\/25", + "version":55930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.50.0", + "prefixLen":25, + "network":"193.218.50.0\/25", + "version":55929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.50.0", + "prefixLen":25, + "network":"193.218.50.0\/25", + "version":55929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.50.128", + "prefixLen":25, + "network":"193.218.50.128\/25", + "version":55928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.50.128", + "prefixLen":25, + "network":"193.218.50.128\/25", + "version":55928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.51.0", + "prefixLen":25, + "network":"193.218.51.0\/25", + "version":55927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.51.0", + "prefixLen":25, + "network":"193.218.51.0\/25", + "version":55927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.51.128", + "prefixLen":25, + "network":"193.218.51.128\/25", + "version":55926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.51.128", + "prefixLen":25, + "network":"193.218.51.128\/25", + "version":55926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.64.0", + "prefixLen":25, + "network":"193.218.64.0\/25", + "version":55925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.64.0", + "prefixLen":25, + "network":"193.218.64.0\/25", + "version":55925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.64.128", + "prefixLen":25, + "network":"193.218.64.128\/25", + "version":55924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.64.128", + "prefixLen":25, + "network":"193.218.64.128\/25", + "version":55924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.65.0", + "prefixLen":25, + "network":"193.218.65.0\/25", + "version":55923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.65.0", + "prefixLen":25, + "network":"193.218.65.0\/25", + "version":55923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.65.128", + "prefixLen":25, + "network":"193.218.65.128\/25", + "version":55922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.65.128", + "prefixLen":25, + "network":"193.218.65.128\/25", + "version":55922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.66.0", + "prefixLen":25, + "network":"193.218.66.0\/25", + "version":55921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.66.0", + "prefixLen":25, + "network":"193.218.66.0\/25", + "version":55921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.66.128", + "prefixLen":25, + "network":"193.218.66.128\/25", + "version":55920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.66.128", + "prefixLen":25, + "network":"193.218.66.128\/25", + "version":55920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.67.0", + "prefixLen":25, + "network":"193.218.67.0\/25", + "version":55919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.67.0", + "prefixLen":25, + "network":"193.218.67.0\/25", + "version":55919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.67.128", + "prefixLen":25, + "network":"193.218.67.128\/25", + "version":55918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.67.128", + "prefixLen":25, + "network":"193.218.67.128\/25", + "version":55918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.80.0", + "prefixLen":25, + "network":"193.218.80.0\/25", + "version":55917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.80.0", + "prefixLen":25, + "network":"193.218.80.0\/25", + "version":55917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.80.128", + "prefixLen":25, + "network":"193.218.80.128\/25", + "version":55916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.80.128", + "prefixLen":25, + "network":"193.218.80.128\/25", + "version":55916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.81.0", + "prefixLen":25, + "network":"193.218.81.0\/25", + "version":55915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.81.0", + "prefixLen":25, + "network":"193.218.81.0\/25", + "version":55915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.81.128", + "prefixLen":25, + "network":"193.218.81.128\/25", + "version":55914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.81.128", + "prefixLen":25, + "network":"193.218.81.128\/25", + "version":55914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.82.0", + "prefixLen":25, + "network":"193.218.82.0\/25", + "version":55913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.82.0", + "prefixLen":25, + "network":"193.218.82.0\/25", + "version":55913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.82.128", + "prefixLen":25, + "network":"193.218.82.128\/25", + "version":55912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.82.128", + "prefixLen":25, + "network":"193.218.82.128\/25", + "version":55912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.83.0", + "prefixLen":25, + "network":"193.218.83.0\/25", + "version":55911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.83.0", + "prefixLen":25, + "network":"193.218.83.0\/25", + "version":55911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.83.128", + "prefixLen":25, + "network":"193.218.83.128\/25", + "version":55910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.83.128", + "prefixLen":25, + "network":"193.218.83.128\/25", + "version":55910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.96.0", + "prefixLen":25, + "network":"193.218.96.0\/25", + "version":55909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.96.0", + "prefixLen":25, + "network":"193.218.96.0\/25", + "version":55909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.96.128", + "prefixLen":25, + "network":"193.218.96.128\/25", + "version":55908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.96.128", + "prefixLen":25, + "network":"193.218.96.128\/25", + "version":55908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.97.0", + "prefixLen":25, + "network":"193.218.97.0\/25", + "version":55907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.97.0", + "prefixLen":25, + "network":"193.218.97.0\/25", + "version":55907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.97.128", + "prefixLen":25, + "network":"193.218.97.128\/25", + "version":55906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.97.128", + "prefixLen":25, + "network":"193.218.97.128\/25", + "version":55906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.98.0", + "prefixLen":25, + "network":"193.218.98.0\/25", + "version":55905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.98.0", + "prefixLen":25, + "network":"193.218.98.0\/25", + "version":55905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.98.128", + "prefixLen":25, + "network":"193.218.98.128\/25", + "version":55904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.98.128", + "prefixLen":25, + "network":"193.218.98.128\/25", + "version":55904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.99.0", + "prefixLen":25, + "network":"193.218.99.0\/25", + "version":55903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.99.0", + "prefixLen":25, + "network":"193.218.99.0\/25", + "version":55903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.99.128", + "prefixLen":25, + "network":"193.218.99.128\/25", + "version":55902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.99.128", + "prefixLen":25, + "network":"193.218.99.128\/25", + "version":55902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.112.0", + "prefixLen":25, + "network":"193.218.112.0\/25", + "version":55901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.112.0", + "prefixLen":25, + "network":"193.218.112.0\/25", + "version":55901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.112.128", + "prefixLen":25, + "network":"193.218.112.128\/25", + "version":55900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.112.128", + "prefixLen":25, + "network":"193.218.112.128\/25", + "version":55900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.113.0", + "prefixLen":25, + "network":"193.218.113.0\/25", + "version":55899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.113.0", + "prefixLen":25, + "network":"193.218.113.0\/25", + "version":55899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.113.128", + "prefixLen":25, + "network":"193.218.113.128\/25", + "version":55898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.113.128", + "prefixLen":25, + "network":"193.218.113.128\/25", + "version":55898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.114.0", + "prefixLen":25, + "network":"193.218.114.0\/25", + "version":55897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.114.0", + "prefixLen":25, + "network":"193.218.114.0\/25", + "version":55897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.114.128", + "prefixLen":25, + "network":"193.218.114.128\/25", + "version":55896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.114.128", + "prefixLen":25, + "network":"193.218.114.128\/25", + "version":55896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.115.0", + "prefixLen":25, + "network":"193.218.115.0\/25", + "version":55895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.115.0", + "prefixLen":25, + "network":"193.218.115.0\/25", + "version":55895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.115.128", + "prefixLen":25, + "network":"193.218.115.128\/25", + "version":55894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.115.128", + "prefixLen":25, + "network":"193.218.115.128\/25", + "version":55894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.128.0", + "prefixLen":25, + "network":"193.218.128.0\/25", + "version":55893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.128.0", + "prefixLen":25, + "network":"193.218.128.0\/25", + "version":55893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.128.128", + "prefixLen":25, + "network":"193.218.128.128\/25", + "version":55892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.128.128", + "prefixLen":25, + "network":"193.218.128.128\/25", + "version":55892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.129.0", + "prefixLen":25, + "network":"193.218.129.0\/25", + "version":55891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.129.0", + "prefixLen":25, + "network":"193.218.129.0\/25", + "version":55891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.129.128", + "prefixLen":25, + "network":"193.218.129.128\/25", + "version":55890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.129.128", + "prefixLen":25, + "network":"193.218.129.128\/25", + "version":55890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.130.0", + "prefixLen":25, + "network":"193.218.130.0\/25", + "version":55889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.130.0", + "prefixLen":25, + "network":"193.218.130.0\/25", + "version":55889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.130.128", + "prefixLen":25, + "network":"193.218.130.128\/25", + "version":55888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.130.128", + "prefixLen":25, + "network":"193.218.130.128\/25", + "version":55888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.131.0", + "prefixLen":25, + "network":"193.218.131.0\/25", + "version":55887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.131.0", + "prefixLen":25, + "network":"193.218.131.0\/25", + "version":55887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.131.128", + "prefixLen":25, + "network":"193.218.131.128\/25", + "version":55886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.131.128", + "prefixLen":25, + "network":"193.218.131.128\/25", + "version":55886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.144.0", + "prefixLen":25, + "network":"193.218.144.0\/25", + "version":55885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.144.0", + "prefixLen":25, + "network":"193.218.144.0\/25", + "version":55885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.144.128", + "prefixLen":25, + "network":"193.218.144.128\/25", + "version":55884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.144.128", + "prefixLen":25, + "network":"193.218.144.128\/25", + "version":55884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.145.0", + "prefixLen":25, + "network":"193.218.145.0\/25", + "version":55883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.145.0", + "prefixLen":25, + "network":"193.218.145.0\/25", + "version":55883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.145.128", + "prefixLen":25, + "network":"193.218.145.128\/25", + "version":55882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.145.128", + "prefixLen":25, + "network":"193.218.145.128\/25", + "version":55882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.146.0", + "prefixLen":25, + "network":"193.218.146.0\/25", + "version":55881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.146.0", + "prefixLen":25, + "network":"193.218.146.0\/25", + "version":55881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.146.128", + "prefixLen":25, + "network":"193.218.146.128\/25", + "version":55880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.146.128", + "prefixLen":25, + "network":"193.218.146.128\/25", + "version":55880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.147.0", + "prefixLen":25, + "network":"193.218.147.0\/25", + "version":55879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.147.0", + "prefixLen":25, + "network":"193.218.147.0\/25", + "version":55879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.147.128", + "prefixLen":25, + "network":"193.218.147.128\/25", + "version":55878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.147.128", + "prefixLen":25, + "network":"193.218.147.128\/25", + "version":55878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.160.0", + "prefixLen":25, + "network":"193.218.160.0\/25", + "version":55877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.160.0", + "prefixLen":25, + "network":"193.218.160.0\/25", + "version":55877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.160.128", + "prefixLen":25, + "network":"193.218.160.128\/25", + "version":55876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.160.128", + "prefixLen":25, + "network":"193.218.160.128\/25", + "version":55876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.161.0", + "prefixLen":25, + "network":"193.218.161.0\/25", + "version":55875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.161.0", + "prefixLen":25, + "network":"193.218.161.0\/25", + "version":55875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.161.128", + "prefixLen":25, + "network":"193.218.161.128\/25", + "version":55874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.161.128", + "prefixLen":25, + "network":"193.218.161.128\/25", + "version":55874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.162.0", + "prefixLen":25, + "network":"193.218.162.0\/25", + "version":55873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.162.0", + "prefixLen":25, + "network":"193.218.162.0\/25", + "version":55873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.162.128", + "prefixLen":25, + "network":"193.218.162.128\/25", + "version":55872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.162.128", + "prefixLen":25, + "network":"193.218.162.128\/25", + "version":55872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.163.0", + "prefixLen":25, + "network":"193.218.163.0\/25", + "version":55871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.163.0", + "prefixLen":25, + "network":"193.218.163.0\/25", + "version":55871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.163.128", + "prefixLen":25, + "network":"193.218.163.128\/25", + "version":55870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.163.128", + "prefixLen":25, + "network":"193.218.163.128\/25", + "version":55870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.176.0", + "prefixLen":25, + "network":"193.218.176.0\/25", + "version":55869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.176.0", + "prefixLen":25, + "network":"193.218.176.0\/25", + "version":55869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.176.128", + "prefixLen":25, + "network":"193.218.176.128\/25", + "version":55868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.176.128", + "prefixLen":25, + "network":"193.218.176.128\/25", + "version":55868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.177.0", + "prefixLen":25, + "network":"193.218.177.0\/25", + "version":55867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.177.0", + "prefixLen":25, + "network":"193.218.177.0\/25", + "version":55867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.177.128", + "prefixLen":25, + "network":"193.218.177.128\/25", + "version":55866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.177.128", + "prefixLen":25, + "network":"193.218.177.128\/25", + "version":55866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.178.0", + "prefixLen":25, + "network":"193.218.178.0\/25", + "version":55865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.178.0", + "prefixLen":25, + "network":"193.218.178.0\/25", + "version":55865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.178.128", + "prefixLen":25, + "network":"193.218.178.128\/25", + "version":55864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.178.128", + "prefixLen":25, + "network":"193.218.178.128\/25", + "version":55864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.179.0", + "prefixLen":25, + "network":"193.218.179.0\/25", + "version":55863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.179.0", + "prefixLen":25, + "network":"193.218.179.0\/25", + "version":55863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.179.128", + "prefixLen":25, + "network":"193.218.179.128\/25", + "version":55862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.179.128", + "prefixLen":25, + "network":"193.218.179.128\/25", + "version":55862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.192.0", + "prefixLen":25, + "network":"193.218.192.0\/25", + "version":55861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.192.0", + "prefixLen":25, + "network":"193.218.192.0\/25", + "version":55861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.192.128", + "prefixLen":25, + "network":"193.218.192.128\/25", + "version":55860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.192.128", + "prefixLen":25, + "network":"193.218.192.128\/25", + "version":55860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.193.0", + "prefixLen":25, + "network":"193.218.193.0\/25", + "version":55859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.193.0", + "prefixLen":25, + "network":"193.218.193.0\/25", + "version":55859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.193.128", + "prefixLen":25, + "network":"193.218.193.128\/25", + "version":55858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.193.128", + "prefixLen":25, + "network":"193.218.193.128\/25", + "version":55858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.194.0", + "prefixLen":25, + "network":"193.218.194.0\/25", + "version":55857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.194.0", + "prefixLen":25, + "network":"193.218.194.0\/25", + "version":55857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.194.128", + "prefixLen":25, + "network":"193.218.194.128\/25", + "version":55856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.194.128", + "prefixLen":25, + "network":"193.218.194.128\/25", + "version":55856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.195.0", + "prefixLen":25, + "network":"193.218.195.0\/25", + "version":55855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.195.0", + "prefixLen":25, + "network":"193.218.195.0\/25", + "version":55855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.195.128", + "prefixLen":25, + "network":"193.218.195.128\/25", + "version":55854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.195.128", + "prefixLen":25, + "network":"193.218.195.128\/25", + "version":55854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.208.0", + "prefixLen":25, + "network":"193.218.208.0\/25", + "version":55853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.208.0", + "prefixLen":25, + "network":"193.218.208.0\/25", + "version":55853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.208.128", + "prefixLen":25, + "network":"193.218.208.128\/25", + "version":55852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.208.128", + "prefixLen":25, + "network":"193.218.208.128\/25", + "version":55852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.209.0", + "prefixLen":25, + "network":"193.218.209.0\/25", + "version":55851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.209.0", + "prefixLen":25, + "network":"193.218.209.0\/25", + "version":55851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.209.128", + "prefixLen":25, + "network":"193.218.209.128\/25", + "version":55850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.209.128", + "prefixLen":25, + "network":"193.218.209.128\/25", + "version":55850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.210.0", + "prefixLen":25, + "network":"193.218.210.0\/25", + "version":55849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.210.0", + "prefixLen":25, + "network":"193.218.210.0\/25", + "version":55849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.210.128", + "prefixLen":25, + "network":"193.218.210.128\/25", + "version":55848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.210.128", + "prefixLen":25, + "network":"193.218.210.128\/25", + "version":55848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.211.0", + "prefixLen":25, + "network":"193.218.211.0\/25", + "version":55847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.211.0", + "prefixLen":25, + "network":"193.218.211.0\/25", + "version":55847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.211.128", + "prefixLen":25, + "network":"193.218.211.128\/25", + "version":55846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.211.128", + "prefixLen":25, + "network":"193.218.211.128\/25", + "version":55846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.224.0", + "prefixLen":25, + "network":"193.218.224.0\/25", + "version":55845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.224.0", + "prefixLen":25, + "network":"193.218.224.0\/25", + "version":55845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.224.128", + "prefixLen":25, + "network":"193.218.224.128\/25", + "version":55844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.224.128", + "prefixLen":25, + "network":"193.218.224.128\/25", + "version":55844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.225.0", + "prefixLen":25, + "network":"193.218.225.0\/25", + "version":55843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.225.0", + "prefixLen":25, + "network":"193.218.225.0\/25", + "version":55843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.225.128", + "prefixLen":25, + "network":"193.218.225.128\/25", + "version":55842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.225.128", + "prefixLen":25, + "network":"193.218.225.128\/25", + "version":55842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.226.0", + "prefixLen":25, + "network":"193.218.226.0\/25", + "version":55841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.226.0", + "prefixLen":25, + "network":"193.218.226.0\/25", + "version":55841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.226.128", + "prefixLen":25, + "network":"193.218.226.128\/25", + "version":55840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.226.128", + "prefixLen":25, + "network":"193.218.226.128\/25", + "version":55840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.227.0", + "prefixLen":25, + "network":"193.218.227.0\/25", + "version":55839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.227.0", + "prefixLen":25, + "network":"193.218.227.0\/25", + "version":55839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.227.128", + "prefixLen":25, + "network":"193.218.227.128\/25", + "version":55838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.227.128", + "prefixLen":25, + "network":"193.218.227.128\/25", + "version":55838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.240.0", + "prefixLen":25, + "network":"193.218.240.0\/25", + "version":55837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.240.0", + "prefixLen":25, + "network":"193.218.240.0\/25", + "version":55837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.240.128", + "prefixLen":25, + "network":"193.218.240.128\/25", + "version":55836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.240.128", + "prefixLen":25, + "network":"193.218.240.128\/25", + "version":55836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.241.0", + "prefixLen":25, + "network":"193.218.241.0\/25", + "version":55835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.241.0", + "prefixLen":25, + "network":"193.218.241.0\/25", + "version":55835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.241.128", + "prefixLen":25, + "network":"193.218.241.128\/25", + "version":55834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.241.128", + "prefixLen":25, + "network":"193.218.241.128\/25", + "version":55834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.242.0", + "prefixLen":25, + "network":"193.218.242.0\/25", + "version":55833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.242.0", + "prefixLen":25, + "network":"193.218.242.0\/25", + "version":55833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.242.128", + "prefixLen":25, + "network":"193.218.242.128\/25", + "version":55832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.242.128", + "prefixLen":25, + "network":"193.218.242.128\/25", + "version":55832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.243.0", + "prefixLen":25, + "network":"193.218.243.0\/25", + "version":55831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.243.0", + "prefixLen":25, + "network":"193.218.243.0\/25", + "version":55831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.218.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.218.243.128", + "prefixLen":25, + "network":"193.218.243.128\/25", + "version":55830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.218.243.128", + "prefixLen":25, + "network":"193.218.243.128\/25", + "version":55830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64906 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.0.0", + "prefixLen":25, + "network":"193.219.0.0\/25", + "version":55957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.0.0", + "prefixLen":25, + "network":"193.219.0.0\/25", + "version":55957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.0.128", + "prefixLen":25, + "network":"193.219.0.128\/25", + "version":56084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.0.128", + "prefixLen":25, + "network":"193.219.0.128\/25", + "version":56084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.1.0", + "prefixLen":25, + "network":"193.219.1.0\/25", + "version":56083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.1.0", + "prefixLen":25, + "network":"193.219.1.0\/25", + "version":56083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.1.128", + "prefixLen":25, + "network":"193.219.1.128\/25", + "version":56082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.1.128", + "prefixLen":25, + "network":"193.219.1.128\/25", + "version":56082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.2.0", + "prefixLen":25, + "network":"193.219.2.0\/25", + "version":56081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.2.0", + "prefixLen":25, + "network":"193.219.2.0\/25", + "version":56081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.2.128", + "prefixLen":25, + "network":"193.219.2.128\/25", + "version":56080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.2.128", + "prefixLen":25, + "network":"193.219.2.128\/25", + "version":56080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.3.0", + "prefixLen":25, + "network":"193.219.3.0\/25", + "version":56079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.3.0", + "prefixLen":25, + "network":"193.219.3.0\/25", + "version":56079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.3.128", + "prefixLen":25, + "network":"193.219.3.128\/25", + "version":56078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.3.128", + "prefixLen":25, + "network":"193.219.3.128\/25", + "version":56078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.16.0", + "prefixLen":25, + "network":"193.219.16.0\/25", + "version":56077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.16.0", + "prefixLen":25, + "network":"193.219.16.0\/25", + "version":56077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.16.128", + "prefixLen":25, + "network":"193.219.16.128\/25", + "version":56076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.16.128", + "prefixLen":25, + "network":"193.219.16.128\/25", + "version":56076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.17.0", + "prefixLen":25, + "network":"193.219.17.0\/25", + "version":56075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.17.0", + "prefixLen":25, + "network":"193.219.17.0\/25", + "version":56075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.17.128", + "prefixLen":25, + "network":"193.219.17.128\/25", + "version":56074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.17.128", + "prefixLen":25, + "network":"193.219.17.128\/25", + "version":56074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.18.0", + "prefixLen":25, + "network":"193.219.18.0\/25", + "version":56073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.18.0", + "prefixLen":25, + "network":"193.219.18.0\/25", + "version":56073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.18.128", + "prefixLen":25, + "network":"193.219.18.128\/25", + "version":56072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.18.128", + "prefixLen":25, + "network":"193.219.18.128\/25", + "version":56072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.19.0", + "prefixLen":25, + "network":"193.219.19.0\/25", + "version":56071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.19.0", + "prefixLen":25, + "network":"193.219.19.0\/25", + "version":56071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.19.128", + "prefixLen":25, + "network":"193.219.19.128\/25", + "version":56070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.19.128", + "prefixLen":25, + "network":"193.219.19.128\/25", + "version":56070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.32.0", + "prefixLen":25, + "network":"193.219.32.0\/25", + "version":56069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.32.0", + "prefixLen":25, + "network":"193.219.32.0\/25", + "version":56069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.32.128", + "prefixLen":25, + "network":"193.219.32.128\/25", + "version":56068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.32.128", + "prefixLen":25, + "network":"193.219.32.128\/25", + "version":56068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.33.0", + "prefixLen":25, + "network":"193.219.33.0\/25", + "version":56067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.33.0", + "prefixLen":25, + "network":"193.219.33.0\/25", + "version":56067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.33.128", + "prefixLen":25, + "network":"193.219.33.128\/25", + "version":56066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.33.128", + "prefixLen":25, + "network":"193.219.33.128\/25", + "version":56066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.34.0", + "prefixLen":25, + "network":"193.219.34.0\/25", + "version":56065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.34.0", + "prefixLen":25, + "network":"193.219.34.0\/25", + "version":56065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.34.128", + "prefixLen":25, + "network":"193.219.34.128\/25", + "version":56064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.34.128", + "prefixLen":25, + "network":"193.219.34.128\/25", + "version":56064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.35.0", + "prefixLen":25, + "network":"193.219.35.0\/25", + "version":56063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.35.0", + "prefixLen":25, + "network":"193.219.35.0\/25", + "version":56063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.35.128", + "prefixLen":25, + "network":"193.219.35.128\/25", + "version":56062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.35.128", + "prefixLen":25, + "network":"193.219.35.128\/25", + "version":56062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.48.0", + "prefixLen":25, + "network":"193.219.48.0\/25", + "version":56061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.48.0", + "prefixLen":25, + "network":"193.219.48.0\/25", + "version":56061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.48.128", + "prefixLen":25, + "network":"193.219.48.128\/25", + "version":56060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.48.128", + "prefixLen":25, + "network":"193.219.48.128\/25", + "version":56060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.49.0", + "prefixLen":25, + "network":"193.219.49.0\/25", + "version":56059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.49.0", + "prefixLen":25, + "network":"193.219.49.0\/25", + "version":56059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.49.128", + "prefixLen":25, + "network":"193.219.49.128\/25", + "version":56058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.49.128", + "prefixLen":25, + "network":"193.219.49.128\/25", + "version":56058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.50.0", + "prefixLen":25, + "network":"193.219.50.0\/25", + "version":56057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.50.0", + "prefixLen":25, + "network":"193.219.50.0\/25", + "version":56057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.50.128", + "prefixLen":25, + "network":"193.219.50.128\/25", + "version":56056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.50.128", + "prefixLen":25, + "network":"193.219.50.128\/25", + "version":56056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.51.0", + "prefixLen":25, + "network":"193.219.51.0\/25", + "version":56055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.51.0", + "prefixLen":25, + "network":"193.219.51.0\/25", + "version":56055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.51.128", + "prefixLen":25, + "network":"193.219.51.128\/25", + "version":56054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.51.128", + "prefixLen":25, + "network":"193.219.51.128\/25", + "version":56054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.64.0", + "prefixLen":25, + "network":"193.219.64.0\/25", + "version":56053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.64.0", + "prefixLen":25, + "network":"193.219.64.0\/25", + "version":56053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.64.128", + "prefixLen":25, + "network":"193.219.64.128\/25", + "version":56052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.64.128", + "prefixLen":25, + "network":"193.219.64.128\/25", + "version":56052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.65.0", + "prefixLen":25, + "network":"193.219.65.0\/25", + "version":56051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.65.0", + "prefixLen":25, + "network":"193.219.65.0\/25", + "version":56051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.65.128", + "prefixLen":25, + "network":"193.219.65.128\/25", + "version":56050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.65.128", + "prefixLen":25, + "network":"193.219.65.128\/25", + "version":56050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.66.0", + "prefixLen":25, + "network":"193.219.66.0\/25", + "version":56049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.66.0", + "prefixLen":25, + "network":"193.219.66.0\/25", + "version":56049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.66.128", + "prefixLen":25, + "network":"193.219.66.128\/25", + "version":56048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.66.128", + "prefixLen":25, + "network":"193.219.66.128\/25", + "version":56048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.67.0", + "prefixLen":25, + "network":"193.219.67.0\/25", + "version":56047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.67.0", + "prefixLen":25, + "network":"193.219.67.0\/25", + "version":56047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.67.128", + "prefixLen":25, + "network":"193.219.67.128\/25", + "version":56046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.67.128", + "prefixLen":25, + "network":"193.219.67.128\/25", + "version":56046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.80.0", + "prefixLen":25, + "network":"193.219.80.0\/25", + "version":56045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.80.0", + "prefixLen":25, + "network":"193.219.80.0\/25", + "version":56045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.80.128", + "prefixLen":25, + "network":"193.219.80.128\/25", + "version":56044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.80.128", + "prefixLen":25, + "network":"193.219.80.128\/25", + "version":56044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.81.0", + "prefixLen":25, + "network":"193.219.81.0\/25", + "version":56043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.81.0", + "prefixLen":25, + "network":"193.219.81.0\/25", + "version":56043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.81.128", + "prefixLen":25, + "network":"193.219.81.128\/25", + "version":56042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.81.128", + "prefixLen":25, + "network":"193.219.81.128\/25", + "version":56042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.82.0", + "prefixLen":25, + "network":"193.219.82.0\/25", + "version":56041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.82.0", + "prefixLen":25, + "network":"193.219.82.0\/25", + "version":56041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.82.128", + "prefixLen":25, + "network":"193.219.82.128\/25", + "version":56040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.82.128", + "prefixLen":25, + "network":"193.219.82.128\/25", + "version":56040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.83.0", + "prefixLen":25, + "network":"193.219.83.0\/25", + "version":56039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.83.0", + "prefixLen":25, + "network":"193.219.83.0\/25", + "version":56039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.83.128", + "prefixLen":25, + "network":"193.219.83.128\/25", + "version":56038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.83.128", + "prefixLen":25, + "network":"193.219.83.128\/25", + "version":56038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.96.0", + "prefixLen":25, + "network":"193.219.96.0\/25", + "version":56037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.96.0", + "prefixLen":25, + "network":"193.219.96.0\/25", + "version":56037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.96.128", + "prefixLen":25, + "network":"193.219.96.128\/25", + "version":56036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.96.128", + "prefixLen":25, + "network":"193.219.96.128\/25", + "version":56036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.97.0", + "prefixLen":25, + "network":"193.219.97.0\/25", + "version":56035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.97.0", + "prefixLen":25, + "network":"193.219.97.0\/25", + "version":56035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.97.128", + "prefixLen":25, + "network":"193.219.97.128\/25", + "version":56034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.97.128", + "prefixLen":25, + "network":"193.219.97.128\/25", + "version":56034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.98.0", + "prefixLen":25, + "network":"193.219.98.0\/25", + "version":56033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.98.0", + "prefixLen":25, + "network":"193.219.98.0\/25", + "version":56033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.98.128", + "prefixLen":25, + "network":"193.219.98.128\/25", + "version":56032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.98.128", + "prefixLen":25, + "network":"193.219.98.128\/25", + "version":56032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.99.0", + "prefixLen":25, + "network":"193.219.99.0\/25", + "version":56031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.99.0", + "prefixLen":25, + "network":"193.219.99.0\/25", + "version":56031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.99.128", + "prefixLen":25, + "network":"193.219.99.128\/25", + "version":56030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.99.128", + "prefixLen":25, + "network":"193.219.99.128\/25", + "version":56030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.112.0", + "prefixLen":25, + "network":"193.219.112.0\/25", + "version":56029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.112.0", + "prefixLen":25, + "network":"193.219.112.0\/25", + "version":56029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.112.128", + "prefixLen":25, + "network":"193.219.112.128\/25", + "version":56028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.112.128", + "prefixLen":25, + "network":"193.219.112.128\/25", + "version":56028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.113.0", + "prefixLen":25, + "network":"193.219.113.0\/25", + "version":56027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.113.0", + "prefixLen":25, + "network":"193.219.113.0\/25", + "version":56027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.113.128", + "prefixLen":25, + "network":"193.219.113.128\/25", + "version":56026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.113.128", + "prefixLen":25, + "network":"193.219.113.128\/25", + "version":56026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.114.0", + "prefixLen":25, + "network":"193.219.114.0\/25", + "version":56025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.114.0", + "prefixLen":25, + "network":"193.219.114.0\/25", + "version":56025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.114.128", + "prefixLen":25, + "network":"193.219.114.128\/25", + "version":56024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.114.128", + "prefixLen":25, + "network":"193.219.114.128\/25", + "version":56024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.115.0", + "prefixLen":25, + "network":"193.219.115.0\/25", + "version":56023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.115.0", + "prefixLen":25, + "network":"193.219.115.0\/25", + "version":56023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.115.128", + "prefixLen":25, + "network":"193.219.115.128\/25", + "version":56022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.115.128", + "prefixLen":25, + "network":"193.219.115.128\/25", + "version":56022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.128.0", + "prefixLen":25, + "network":"193.219.128.0\/25", + "version":56021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.128.0", + "prefixLen":25, + "network":"193.219.128.0\/25", + "version":56021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.128.128", + "prefixLen":25, + "network":"193.219.128.128\/25", + "version":56020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.128.128", + "prefixLen":25, + "network":"193.219.128.128\/25", + "version":56020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.129.0", + "prefixLen":25, + "network":"193.219.129.0\/25", + "version":56019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.129.0", + "prefixLen":25, + "network":"193.219.129.0\/25", + "version":56019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.129.128", + "prefixLen":25, + "network":"193.219.129.128\/25", + "version":56018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.129.128", + "prefixLen":25, + "network":"193.219.129.128\/25", + "version":56018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.130.0", + "prefixLen":25, + "network":"193.219.130.0\/25", + "version":56017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.130.0", + "prefixLen":25, + "network":"193.219.130.0\/25", + "version":56017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.130.128", + "prefixLen":25, + "network":"193.219.130.128\/25", + "version":56016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.130.128", + "prefixLen":25, + "network":"193.219.130.128\/25", + "version":56016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.131.0", + "prefixLen":25, + "network":"193.219.131.0\/25", + "version":56015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.131.0", + "prefixLen":25, + "network":"193.219.131.0\/25", + "version":56015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.131.128", + "prefixLen":25, + "network":"193.219.131.128\/25", + "version":56014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.131.128", + "prefixLen":25, + "network":"193.219.131.128\/25", + "version":56014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.144.0", + "prefixLen":25, + "network":"193.219.144.0\/25", + "version":56013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.144.0", + "prefixLen":25, + "network":"193.219.144.0\/25", + "version":56013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.144.128", + "prefixLen":25, + "network":"193.219.144.128\/25", + "version":56012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.144.128", + "prefixLen":25, + "network":"193.219.144.128\/25", + "version":56012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.145.0", + "prefixLen":25, + "network":"193.219.145.0\/25", + "version":56011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.145.0", + "prefixLen":25, + "network":"193.219.145.0\/25", + "version":56011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.145.128", + "prefixLen":25, + "network":"193.219.145.128\/25", + "version":56010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.145.128", + "prefixLen":25, + "network":"193.219.145.128\/25", + "version":56010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.146.0", + "prefixLen":25, + "network":"193.219.146.0\/25", + "version":56009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.146.0", + "prefixLen":25, + "network":"193.219.146.0\/25", + "version":56009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.146.128", + "prefixLen":25, + "network":"193.219.146.128\/25", + "version":56008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.146.128", + "prefixLen":25, + "network":"193.219.146.128\/25", + "version":56008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.147.0", + "prefixLen":25, + "network":"193.219.147.0\/25", + "version":56007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.147.0", + "prefixLen":25, + "network":"193.219.147.0\/25", + "version":56007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.147.128", + "prefixLen":25, + "network":"193.219.147.128\/25", + "version":56006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.147.128", + "prefixLen":25, + "network":"193.219.147.128\/25", + "version":56006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.160.0", + "prefixLen":25, + "network":"193.219.160.0\/25", + "version":56005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.160.0", + "prefixLen":25, + "network":"193.219.160.0\/25", + "version":56005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.160.128", + "prefixLen":25, + "network":"193.219.160.128\/25", + "version":56004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.160.128", + "prefixLen":25, + "network":"193.219.160.128\/25", + "version":56004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.161.0", + "prefixLen":25, + "network":"193.219.161.0\/25", + "version":56003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.161.0", + "prefixLen":25, + "network":"193.219.161.0\/25", + "version":56003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.161.128", + "prefixLen":25, + "network":"193.219.161.128\/25", + "version":56002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.161.128", + "prefixLen":25, + "network":"193.219.161.128\/25", + "version":56002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.162.0", + "prefixLen":25, + "network":"193.219.162.0\/25", + "version":56001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.162.0", + "prefixLen":25, + "network":"193.219.162.0\/25", + "version":56001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.162.128", + "prefixLen":25, + "network":"193.219.162.128\/25", + "version":56000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.162.128", + "prefixLen":25, + "network":"193.219.162.128\/25", + "version":56000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.163.0", + "prefixLen":25, + "network":"193.219.163.0\/25", + "version":55999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.163.0", + "prefixLen":25, + "network":"193.219.163.0\/25", + "version":55999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.163.128", + "prefixLen":25, + "network":"193.219.163.128\/25", + "version":55998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.163.128", + "prefixLen":25, + "network":"193.219.163.128\/25", + "version":55998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.176.0", + "prefixLen":25, + "network":"193.219.176.0\/25", + "version":55997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.176.0", + "prefixLen":25, + "network":"193.219.176.0\/25", + "version":55997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.176.128", + "prefixLen":25, + "network":"193.219.176.128\/25", + "version":55996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.176.128", + "prefixLen":25, + "network":"193.219.176.128\/25", + "version":55996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.177.0", + "prefixLen":25, + "network":"193.219.177.0\/25", + "version":55995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.177.0", + "prefixLen":25, + "network":"193.219.177.0\/25", + "version":55995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.177.128", + "prefixLen":25, + "network":"193.219.177.128\/25", + "version":55994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.177.128", + "prefixLen":25, + "network":"193.219.177.128\/25", + "version":55994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.178.0", + "prefixLen":25, + "network":"193.219.178.0\/25", + "version":55993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.178.0", + "prefixLen":25, + "network":"193.219.178.0\/25", + "version":55993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.178.128", + "prefixLen":25, + "network":"193.219.178.128\/25", + "version":55992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.178.128", + "prefixLen":25, + "network":"193.219.178.128\/25", + "version":55992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.179.0", + "prefixLen":25, + "network":"193.219.179.0\/25", + "version":55991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.179.0", + "prefixLen":25, + "network":"193.219.179.0\/25", + "version":55991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.179.128", + "prefixLen":25, + "network":"193.219.179.128\/25", + "version":55990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.179.128", + "prefixLen":25, + "network":"193.219.179.128\/25", + "version":55990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.192.0", + "prefixLen":25, + "network":"193.219.192.0\/25", + "version":55989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.192.0", + "prefixLen":25, + "network":"193.219.192.0\/25", + "version":55989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.192.128", + "prefixLen":25, + "network":"193.219.192.128\/25", + "version":55988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.192.128", + "prefixLen":25, + "network":"193.219.192.128\/25", + "version":55988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.193.0", + "prefixLen":25, + "network":"193.219.193.0\/25", + "version":55987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.193.0", + "prefixLen":25, + "network":"193.219.193.0\/25", + "version":55987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.193.128", + "prefixLen":25, + "network":"193.219.193.128\/25", + "version":55986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.193.128", + "prefixLen":25, + "network":"193.219.193.128\/25", + "version":55986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.194.0", + "prefixLen":25, + "network":"193.219.194.0\/25", + "version":55985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.194.0", + "prefixLen":25, + "network":"193.219.194.0\/25", + "version":55985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.194.128", + "prefixLen":25, + "network":"193.219.194.128\/25", + "version":55984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.194.128", + "prefixLen":25, + "network":"193.219.194.128\/25", + "version":55984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.195.0", + "prefixLen":25, + "network":"193.219.195.0\/25", + "version":55983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.195.0", + "prefixLen":25, + "network":"193.219.195.0\/25", + "version":55983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.195.128", + "prefixLen":25, + "network":"193.219.195.128\/25", + "version":55982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.195.128", + "prefixLen":25, + "network":"193.219.195.128\/25", + "version":55982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.208.0", + "prefixLen":25, + "network":"193.219.208.0\/25", + "version":55981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.208.0", + "prefixLen":25, + "network":"193.219.208.0\/25", + "version":55981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.208.128", + "prefixLen":25, + "network":"193.219.208.128\/25", + "version":55980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.208.128", + "prefixLen":25, + "network":"193.219.208.128\/25", + "version":55980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.209.0", + "prefixLen":25, + "network":"193.219.209.0\/25", + "version":55979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.209.0", + "prefixLen":25, + "network":"193.219.209.0\/25", + "version":55979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.209.128", + "prefixLen":25, + "network":"193.219.209.128\/25", + "version":55978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.209.128", + "prefixLen":25, + "network":"193.219.209.128\/25", + "version":55978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.210.0", + "prefixLen":25, + "network":"193.219.210.0\/25", + "version":55977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.210.0", + "prefixLen":25, + "network":"193.219.210.0\/25", + "version":55977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.210.128", + "prefixLen":25, + "network":"193.219.210.128\/25", + "version":55976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.210.128", + "prefixLen":25, + "network":"193.219.210.128\/25", + "version":55976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.211.0", + "prefixLen":25, + "network":"193.219.211.0\/25", + "version":55975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.211.0", + "prefixLen":25, + "network":"193.219.211.0\/25", + "version":55975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.211.128", + "prefixLen":25, + "network":"193.219.211.128\/25", + "version":55974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.211.128", + "prefixLen":25, + "network":"193.219.211.128\/25", + "version":55974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.224.0", + "prefixLen":25, + "network":"193.219.224.0\/25", + "version":55973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.224.0", + "prefixLen":25, + "network":"193.219.224.0\/25", + "version":55973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.224.128", + "prefixLen":25, + "network":"193.219.224.128\/25", + "version":55972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.224.128", + "prefixLen":25, + "network":"193.219.224.128\/25", + "version":55972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.225.0", + "prefixLen":25, + "network":"193.219.225.0\/25", + "version":55971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.225.0", + "prefixLen":25, + "network":"193.219.225.0\/25", + "version":55971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.225.128", + "prefixLen":25, + "network":"193.219.225.128\/25", + "version":55970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.225.128", + "prefixLen":25, + "network":"193.219.225.128\/25", + "version":55970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.226.0", + "prefixLen":25, + "network":"193.219.226.0\/25", + "version":55969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.226.0", + "prefixLen":25, + "network":"193.219.226.0\/25", + "version":55969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.226.128", + "prefixLen":25, + "network":"193.219.226.128\/25", + "version":55968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.226.128", + "prefixLen":25, + "network":"193.219.226.128\/25", + "version":55968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.227.0", + "prefixLen":25, + "network":"193.219.227.0\/25", + "version":55967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.227.0", + "prefixLen":25, + "network":"193.219.227.0\/25", + "version":55967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.227.128", + "prefixLen":25, + "network":"193.219.227.128\/25", + "version":55966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.227.128", + "prefixLen":25, + "network":"193.219.227.128\/25", + "version":55966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.240.0", + "prefixLen":25, + "network":"193.219.240.0\/25", + "version":55965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.240.0", + "prefixLen":25, + "network":"193.219.240.0\/25", + "version":55965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.240.128", + "prefixLen":25, + "network":"193.219.240.128\/25", + "version":55964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.240.128", + "prefixLen":25, + "network":"193.219.240.128\/25", + "version":55964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.241.0", + "prefixLen":25, + "network":"193.219.241.0\/25", + "version":55963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.241.0", + "prefixLen":25, + "network":"193.219.241.0\/25", + "version":55963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.241.128", + "prefixLen":25, + "network":"193.219.241.128\/25", + "version":55962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.241.128", + "prefixLen":25, + "network":"193.219.241.128\/25", + "version":55962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.242.0", + "prefixLen":25, + "network":"193.219.242.0\/25", + "version":55961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.242.0", + "prefixLen":25, + "network":"193.219.242.0\/25", + "version":55961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.242.128", + "prefixLen":25, + "network":"193.219.242.128\/25", + "version":55960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.242.128", + "prefixLen":25, + "network":"193.219.242.128\/25", + "version":55960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.243.0", + "prefixLen":25, + "network":"193.219.243.0\/25", + "version":55959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.243.0", + "prefixLen":25, + "network":"193.219.243.0\/25", + "version":55959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.219.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.219.243.128", + "prefixLen":25, + "network":"193.219.243.128\/25", + "version":55958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.219.243.128", + "prefixLen":25, + "network":"193.219.243.128\/25", + "version":55958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64907 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.0.0", + "prefixLen":25, + "network":"193.220.0.0\/25", + "version":56085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.0.0", + "prefixLen":25, + "network":"193.220.0.0\/25", + "version":56085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.0.128", + "prefixLen":25, + "network":"193.220.0.128\/25", + "version":56212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.0.128", + "prefixLen":25, + "network":"193.220.0.128\/25", + "version":56212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.1.0", + "prefixLen":25, + "network":"193.220.1.0\/25", + "version":56211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.1.0", + "prefixLen":25, + "network":"193.220.1.0\/25", + "version":56211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.1.128", + "prefixLen":25, + "network":"193.220.1.128\/25", + "version":56210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.1.128", + "prefixLen":25, + "network":"193.220.1.128\/25", + "version":56210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.2.0", + "prefixLen":25, + "network":"193.220.2.0\/25", + "version":56209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.2.0", + "prefixLen":25, + "network":"193.220.2.0\/25", + "version":56209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.2.128", + "prefixLen":25, + "network":"193.220.2.128\/25", + "version":56208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.2.128", + "prefixLen":25, + "network":"193.220.2.128\/25", + "version":56208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.3.0", + "prefixLen":25, + "network":"193.220.3.0\/25", + "version":56207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.3.0", + "prefixLen":25, + "network":"193.220.3.0\/25", + "version":56207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.3.128", + "prefixLen":25, + "network":"193.220.3.128\/25", + "version":56206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.3.128", + "prefixLen":25, + "network":"193.220.3.128\/25", + "version":56206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.16.0", + "prefixLen":25, + "network":"193.220.16.0\/25", + "version":56205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.16.0", + "prefixLen":25, + "network":"193.220.16.0\/25", + "version":56205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.16.128", + "prefixLen":25, + "network":"193.220.16.128\/25", + "version":56204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.16.128", + "prefixLen":25, + "network":"193.220.16.128\/25", + "version":56204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.17.0", + "prefixLen":25, + "network":"193.220.17.0\/25", + "version":56203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.17.0", + "prefixLen":25, + "network":"193.220.17.0\/25", + "version":56203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.17.128", + "prefixLen":25, + "network":"193.220.17.128\/25", + "version":56202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.17.128", + "prefixLen":25, + "network":"193.220.17.128\/25", + "version":56202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.18.0", + "prefixLen":25, + "network":"193.220.18.0\/25", + "version":56201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.18.0", + "prefixLen":25, + "network":"193.220.18.0\/25", + "version":56201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.18.128", + "prefixLen":25, + "network":"193.220.18.128\/25", + "version":56200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.18.128", + "prefixLen":25, + "network":"193.220.18.128\/25", + "version":56200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.19.0", + "prefixLen":25, + "network":"193.220.19.0\/25", + "version":56199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.19.0", + "prefixLen":25, + "network":"193.220.19.0\/25", + "version":56199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.19.128", + "prefixLen":25, + "network":"193.220.19.128\/25", + "version":56198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.19.128", + "prefixLen":25, + "network":"193.220.19.128\/25", + "version":56198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.32.0", + "prefixLen":25, + "network":"193.220.32.0\/25", + "version":56197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.32.0", + "prefixLen":25, + "network":"193.220.32.0\/25", + "version":56197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.32.128", + "prefixLen":25, + "network":"193.220.32.128\/25", + "version":56196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.32.128", + "prefixLen":25, + "network":"193.220.32.128\/25", + "version":56196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.33.0", + "prefixLen":25, + "network":"193.220.33.0\/25", + "version":56195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.33.0", + "prefixLen":25, + "network":"193.220.33.0\/25", + "version":56195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.33.128", + "prefixLen":25, + "network":"193.220.33.128\/25", + "version":56194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.33.128", + "prefixLen":25, + "network":"193.220.33.128\/25", + "version":56194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.34.0", + "prefixLen":25, + "network":"193.220.34.0\/25", + "version":56193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.34.0", + "prefixLen":25, + "network":"193.220.34.0\/25", + "version":56193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.34.128", + "prefixLen":25, + "network":"193.220.34.128\/25", + "version":56192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.34.128", + "prefixLen":25, + "network":"193.220.34.128\/25", + "version":56192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.35.0", + "prefixLen":25, + "network":"193.220.35.0\/25", + "version":56191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.35.0", + "prefixLen":25, + "network":"193.220.35.0\/25", + "version":56191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.35.128", + "prefixLen":25, + "network":"193.220.35.128\/25", + "version":56190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.35.128", + "prefixLen":25, + "network":"193.220.35.128\/25", + "version":56190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.48.0", + "prefixLen":25, + "network":"193.220.48.0\/25", + "version":56189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.48.0", + "prefixLen":25, + "network":"193.220.48.0\/25", + "version":56189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.48.128", + "prefixLen":25, + "network":"193.220.48.128\/25", + "version":56188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.48.128", + "prefixLen":25, + "network":"193.220.48.128\/25", + "version":56188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.49.0", + "prefixLen":25, + "network":"193.220.49.0\/25", + "version":56187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.49.0", + "prefixLen":25, + "network":"193.220.49.0\/25", + "version":56187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.49.128", + "prefixLen":25, + "network":"193.220.49.128\/25", + "version":56186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.49.128", + "prefixLen":25, + "network":"193.220.49.128\/25", + "version":56186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.50.0", + "prefixLen":25, + "network":"193.220.50.0\/25", + "version":56185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.50.0", + "prefixLen":25, + "network":"193.220.50.0\/25", + "version":56185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.50.128", + "prefixLen":25, + "network":"193.220.50.128\/25", + "version":56184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.50.128", + "prefixLen":25, + "network":"193.220.50.128\/25", + "version":56184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.51.0", + "prefixLen":25, + "network":"193.220.51.0\/25", + "version":56183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.51.0", + "prefixLen":25, + "network":"193.220.51.0\/25", + "version":56183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.51.128", + "prefixLen":25, + "network":"193.220.51.128\/25", + "version":56182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.51.128", + "prefixLen":25, + "network":"193.220.51.128\/25", + "version":56182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.64.0", + "prefixLen":25, + "network":"193.220.64.0\/25", + "version":56181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.64.0", + "prefixLen":25, + "network":"193.220.64.0\/25", + "version":56181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.64.128", + "prefixLen":25, + "network":"193.220.64.128\/25", + "version":56180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.64.128", + "prefixLen":25, + "network":"193.220.64.128\/25", + "version":56180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.65.0", + "prefixLen":25, + "network":"193.220.65.0\/25", + "version":56179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.65.0", + "prefixLen":25, + "network":"193.220.65.0\/25", + "version":56179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.65.128", + "prefixLen":25, + "network":"193.220.65.128\/25", + "version":56178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.65.128", + "prefixLen":25, + "network":"193.220.65.128\/25", + "version":56178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.66.0", + "prefixLen":25, + "network":"193.220.66.0\/25", + "version":56177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.66.0", + "prefixLen":25, + "network":"193.220.66.0\/25", + "version":56177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.66.128", + "prefixLen":25, + "network":"193.220.66.128\/25", + "version":56176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.66.128", + "prefixLen":25, + "network":"193.220.66.128\/25", + "version":56176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.67.0", + "prefixLen":25, + "network":"193.220.67.0\/25", + "version":56175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.67.0", + "prefixLen":25, + "network":"193.220.67.0\/25", + "version":56175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.67.128", + "prefixLen":25, + "network":"193.220.67.128\/25", + "version":56174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.67.128", + "prefixLen":25, + "network":"193.220.67.128\/25", + "version":56174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.80.0", + "prefixLen":25, + "network":"193.220.80.0\/25", + "version":56173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.80.0", + "prefixLen":25, + "network":"193.220.80.0\/25", + "version":56173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.80.128", + "prefixLen":25, + "network":"193.220.80.128\/25", + "version":56172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.80.128", + "prefixLen":25, + "network":"193.220.80.128\/25", + "version":56172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.81.0", + "prefixLen":25, + "network":"193.220.81.0\/25", + "version":56171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.81.0", + "prefixLen":25, + "network":"193.220.81.0\/25", + "version":56171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.81.128", + "prefixLen":25, + "network":"193.220.81.128\/25", + "version":56170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.81.128", + "prefixLen":25, + "network":"193.220.81.128\/25", + "version":56170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.82.0", + "prefixLen":25, + "network":"193.220.82.0\/25", + "version":56169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.82.0", + "prefixLen":25, + "network":"193.220.82.0\/25", + "version":56169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.82.128", + "prefixLen":25, + "network":"193.220.82.128\/25", + "version":56168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.82.128", + "prefixLen":25, + "network":"193.220.82.128\/25", + "version":56168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.83.0", + "prefixLen":25, + "network":"193.220.83.0\/25", + "version":56167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.83.0", + "prefixLen":25, + "network":"193.220.83.0\/25", + "version":56167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.83.128", + "prefixLen":25, + "network":"193.220.83.128\/25", + "version":56166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.83.128", + "prefixLen":25, + "network":"193.220.83.128\/25", + "version":56166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.96.0", + "prefixLen":25, + "network":"193.220.96.0\/25", + "version":56165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.96.0", + "prefixLen":25, + "network":"193.220.96.0\/25", + "version":56165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.96.128", + "prefixLen":25, + "network":"193.220.96.128\/25", + "version":56164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.96.128", + "prefixLen":25, + "network":"193.220.96.128\/25", + "version":56164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.97.0", + "prefixLen":25, + "network":"193.220.97.0\/25", + "version":56163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.97.0", + "prefixLen":25, + "network":"193.220.97.0\/25", + "version":56163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.97.128", + "prefixLen":25, + "network":"193.220.97.128\/25", + "version":56162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.97.128", + "prefixLen":25, + "network":"193.220.97.128\/25", + "version":56162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.98.0", + "prefixLen":25, + "network":"193.220.98.0\/25", + "version":56161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.98.0", + "prefixLen":25, + "network":"193.220.98.0\/25", + "version":56161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.98.128", + "prefixLen":25, + "network":"193.220.98.128\/25", + "version":56160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.98.128", + "prefixLen":25, + "network":"193.220.98.128\/25", + "version":56160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.99.0", + "prefixLen":25, + "network":"193.220.99.0\/25", + "version":56159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.99.0", + "prefixLen":25, + "network":"193.220.99.0\/25", + "version":56159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.99.128", + "prefixLen":25, + "network":"193.220.99.128\/25", + "version":56158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.99.128", + "prefixLen":25, + "network":"193.220.99.128\/25", + "version":56158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.112.0", + "prefixLen":25, + "network":"193.220.112.0\/25", + "version":56157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.112.0", + "prefixLen":25, + "network":"193.220.112.0\/25", + "version":56157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.112.128", + "prefixLen":25, + "network":"193.220.112.128\/25", + "version":56156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.112.128", + "prefixLen":25, + "network":"193.220.112.128\/25", + "version":56156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.113.0", + "prefixLen":25, + "network":"193.220.113.0\/25", + "version":56155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.113.0", + "prefixLen":25, + "network":"193.220.113.0\/25", + "version":56155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.113.128", + "prefixLen":25, + "network":"193.220.113.128\/25", + "version":56154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.113.128", + "prefixLen":25, + "network":"193.220.113.128\/25", + "version":56154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.114.0", + "prefixLen":25, + "network":"193.220.114.0\/25", + "version":56153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.114.0", + "prefixLen":25, + "network":"193.220.114.0\/25", + "version":56153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.114.128", + "prefixLen":25, + "network":"193.220.114.128\/25", + "version":56152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.114.128", + "prefixLen":25, + "network":"193.220.114.128\/25", + "version":56152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.115.0", + "prefixLen":25, + "network":"193.220.115.0\/25", + "version":56151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.115.0", + "prefixLen":25, + "network":"193.220.115.0\/25", + "version":56151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.115.128", + "prefixLen":25, + "network":"193.220.115.128\/25", + "version":56150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.115.128", + "prefixLen":25, + "network":"193.220.115.128\/25", + "version":56150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.128.0", + "prefixLen":25, + "network":"193.220.128.0\/25", + "version":56149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.128.0", + "prefixLen":25, + "network":"193.220.128.0\/25", + "version":56149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.128.128", + "prefixLen":25, + "network":"193.220.128.128\/25", + "version":56148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.128.128", + "prefixLen":25, + "network":"193.220.128.128\/25", + "version":56148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.129.0", + "prefixLen":25, + "network":"193.220.129.0\/25", + "version":56147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.129.0", + "prefixLen":25, + "network":"193.220.129.0\/25", + "version":56147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.129.128", + "prefixLen":25, + "network":"193.220.129.128\/25", + "version":56146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.129.128", + "prefixLen":25, + "network":"193.220.129.128\/25", + "version":56146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.130.0", + "prefixLen":25, + "network":"193.220.130.0\/25", + "version":56145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.130.0", + "prefixLen":25, + "network":"193.220.130.0\/25", + "version":56145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.130.128", + "prefixLen":25, + "network":"193.220.130.128\/25", + "version":56144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.130.128", + "prefixLen":25, + "network":"193.220.130.128\/25", + "version":56144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.131.0", + "prefixLen":25, + "network":"193.220.131.0\/25", + "version":56143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.131.0", + "prefixLen":25, + "network":"193.220.131.0\/25", + "version":56143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.131.128", + "prefixLen":25, + "network":"193.220.131.128\/25", + "version":56142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.131.128", + "prefixLen":25, + "network":"193.220.131.128\/25", + "version":56142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.144.0", + "prefixLen":25, + "network":"193.220.144.0\/25", + "version":56141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.144.0", + "prefixLen":25, + "network":"193.220.144.0\/25", + "version":56141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.144.128", + "prefixLen":25, + "network":"193.220.144.128\/25", + "version":56140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.144.128", + "prefixLen":25, + "network":"193.220.144.128\/25", + "version":56140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.145.0", + "prefixLen":25, + "network":"193.220.145.0\/25", + "version":56139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.145.0", + "prefixLen":25, + "network":"193.220.145.0\/25", + "version":56139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.145.128", + "prefixLen":25, + "network":"193.220.145.128\/25", + "version":56138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.145.128", + "prefixLen":25, + "network":"193.220.145.128\/25", + "version":56138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.146.0", + "prefixLen":25, + "network":"193.220.146.0\/25", + "version":56137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.146.0", + "prefixLen":25, + "network":"193.220.146.0\/25", + "version":56137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.146.128", + "prefixLen":25, + "network":"193.220.146.128\/25", + "version":56136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.146.128", + "prefixLen":25, + "network":"193.220.146.128\/25", + "version":56136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.147.0", + "prefixLen":25, + "network":"193.220.147.0\/25", + "version":56135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.147.0", + "prefixLen":25, + "network":"193.220.147.0\/25", + "version":56135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.147.128", + "prefixLen":25, + "network":"193.220.147.128\/25", + "version":56134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.147.128", + "prefixLen":25, + "network":"193.220.147.128\/25", + "version":56134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.160.0", + "prefixLen":25, + "network":"193.220.160.0\/25", + "version":56133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.160.0", + "prefixLen":25, + "network":"193.220.160.0\/25", + "version":56133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.160.128", + "prefixLen":25, + "network":"193.220.160.128\/25", + "version":56132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.160.128", + "prefixLen":25, + "network":"193.220.160.128\/25", + "version":56132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.161.0", + "prefixLen":25, + "network":"193.220.161.0\/25", + "version":56131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.161.0", + "prefixLen":25, + "network":"193.220.161.0\/25", + "version":56131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.161.128", + "prefixLen":25, + "network":"193.220.161.128\/25", + "version":56130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.161.128", + "prefixLen":25, + "network":"193.220.161.128\/25", + "version":56130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.162.0", + "prefixLen":25, + "network":"193.220.162.0\/25", + "version":56129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.162.0", + "prefixLen":25, + "network":"193.220.162.0\/25", + "version":56129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.162.128", + "prefixLen":25, + "network":"193.220.162.128\/25", + "version":56128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.162.128", + "prefixLen":25, + "network":"193.220.162.128\/25", + "version":56128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.163.0", + "prefixLen":25, + "network":"193.220.163.0\/25", + "version":56127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.163.0", + "prefixLen":25, + "network":"193.220.163.0\/25", + "version":56127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.163.128", + "prefixLen":25, + "network":"193.220.163.128\/25", + "version":56126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.163.128", + "prefixLen":25, + "network":"193.220.163.128\/25", + "version":56126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.176.0", + "prefixLen":25, + "network":"193.220.176.0\/25", + "version":56125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.176.0", + "prefixLen":25, + "network":"193.220.176.0\/25", + "version":56125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.176.128", + "prefixLen":25, + "network":"193.220.176.128\/25", + "version":56124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.176.128", + "prefixLen":25, + "network":"193.220.176.128\/25", + "version":56124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.177.0", + "prefixLen":25, + "network":"193.220.177.0\/25", + "version":56123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.177.0", + "prefixLen":25, + "network":"193.220.177.0\/25", + "version":56123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.177.128", + "prefixLen":25, + "network":"193.220.177.128\/25", + "version":56122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.177.128", + "prefixLen":25, + "network":"193.220.177.128\/25", + "version":56122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.178.0", + "prefixLen":25, + "network":"193.220.178.0\/25", + "version":56121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.178.0", + "prefixLen":25, + "network":"193.220.178.0\/25", + "version":56121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.178.128", + "prefixLen":25, + "network":"193.220.178.128\/25", + "version":56120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.178.128", + "prefixLen":25, + "network":"193.220.178.128\/25", + "version":56120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.179.0", + "prefixLen":25, + "network":"193.220.179.0\/25", + "version":56119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.179.0", + "prefixLen":25, + "network":"193.220.179.0\/25", + "version":56119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.179.128", + "prefixLen":25, + "network":"193.220.179.128\/25", + "version":56118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.179.128", + "prefixLen":25, + "network":"193.220.179.128\/25", + "version":56118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.192.0", + "prefixLen":25, + "network":"193.220.192.0\/25", + "version":56117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.192.0", + "prefixLen":25, + "network":"193.220.192.0\/25", + "version":56117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.192.128", + "prefixLen":25, + "network":"193.220.192.128\/25", + "version":56116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.192.128", + "prefixLen":25, + "network":"193.220.192.128\/25", + "version":56116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.193.0", + "prefixLen":25, + "network":"193.220.193.0\/25", + "version":56115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.193.0", + "prefixLen":25, + "network":"193.220.193.0\/25", + "version":56115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.193.128", + "prefixLen":25, + "network":"193.220.193.128\/25", + "version":56114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.193.128", + "prefixLen":25, + "network":"193.220.193.128\/25", + "version":56114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.194.0", + "prefixLen":25, + "network":"193.220.194.0\/25", + "version":56113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.194.0", + "prefixLen":25, + "network":"193.220.194.0\/25", + "version":56113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.194.128", + "prefixLen":25, + "network":"193.220.194.128\/25", + "version":56112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.194.128", + "prefixLen":25, + "network":"193.220.194.128\/25", + "version":56112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.195.0", + "prefixLen":25, + "network":"193.220.195.0\/25", + "version":56111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.195.0", + "prefixLen":25, + "network":"193.220.195.0\/25", + "version":56111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.195.128", + "prefixLen":25, + "network":"193.220.195.128\/25", + "version":56110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.195.128", + "prefixLen":25, + "network":"193.220.195.128\/25", + "version":56110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.208.0", + "prefixLen":25, + "network":"193.220.208.0\/25", + "version":56109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.208.0", + "prefixLen":25, + "network":"193.220.208.0\/25", + "version":56109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.208.128", + "prefixLen":25, + "network":"193.220.208.128\/25", + "version":56108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.208.128", + "prefixLen":25, + "network":"193.220.208.128\/25", + "version":56108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.209.0", + "prefixLen":25, + "network":"193.220.209.0\/25", + "version":56107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.209.0", + "prefixLen":25, + "network":"193.220.209.0\/25", + "version":56107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.209.128", + "prefixLen":25, + "network":"193.220.209.128\/25", + "version":56106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.209.128", + "prefixLen":25, + "network":"193.220.209.128\/25", + "version":56106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.210.0", + "prefixLen":25, + "network":"193.220.210.0\/25", + "version":56105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.210.0", + "prefixLen":25, + "network":"193.220.210.0\/25", + "version":56105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.210.128", + "prefixLen":25, + "network":"193.220.210.128\/25", + "version":56104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.210.128", + "prefixLen":25, + "network":"193.220.210.128\/25", + "version":56104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.211.0", + "prefixLen":25, + "network":"193.220.211.0\/25", + "version":56103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.211.0", + "prefixLen":25, + "network":"193.220.211.0\/25", + "version":56103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.211.128", + "prefixLen":25, + "network":"193.220.211.128\/25", + "version":56102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.211.128", + "prefixLen":25, + "network":"193.220.211.128\/25", + "version":56102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.224.0", + "prefixLen":25, + "network":"193.220.224.0\/25", + "version":56101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.224.0", + "prefixLen":25, + "network":"193.220.224.0\/25", + "version":56101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.224.128", + "prefixLen":25, + "network":"193.220.224.128\/25", + "version":56100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.224.128", + "prefixLen":25, + "network":"193.220.224.128\/25", + "version":56100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.225.0", + "prefixLen":25, + "network":"193.220.225.0\/25", + "version":56099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.225.0", + "prefixLen":25, + "network":"193.220.225.0\/25", + "version":56099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.225.128", + "prefixLen":25, + "network":"193.220.225.128\/25", + "version":56098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.225.128", + "prefixLen":25, + "network":"193.220.225.128\/25", + "version":56098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.226.0", + "prefixLen":25, + "network":"193.220.226.0\/25", + "version":56097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.226.0", + "prefixLen":25, + "network":"193.220.226.0\/25", + "version":56097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.226.128", + "prefixLen":25, + "network":"193.220.226.128\/25", + "version":56096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.226.128", + "prefixLen":25, + "network":"193.220.226.128\/25", + "version":56096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.227.0", + "prefixLen":25, + "network":"193.220.227.0\/25", + "version":56095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.227.0", + "prefixLen":25, + "network":"193.220.227.0\/25", + "version":56095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.227.128", + "prefixLen":25, + "network":"193.220.227.128\/25", + "version":56094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.227.128", + "prefixLen":25, + "network":"193.220.227.128\/25", + "version":56094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.240.0", + "prefixLen":25, + "network":"193.220.240.0\/25", + "version":56093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.240.0", + "prefixLen":25, + "network":"193.220.240.0\/25", + "version":56093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.240.128", + "prefixLen":25, + "network":"193.220.240.128\/25", + "version":56092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.240.128", + "prefixLen":25, + "network":"193.220.240.128\/25", + "version":56092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.241.0", + "prefixLen":25, + "network":"193.220.241.0\/25", + "version":56091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.241.0", + "prefixLen":25, + "network":"193.220.241.0\/25", + "version":56091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.241.128", + "prefixLen":25, + "network":"193.220.241.128\/25", + "version":56090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.241.128", + "prefixLen":25, + "network":"193.220.241.128\/25", + "version":56090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.242.0", + "prefixLen":25, + "network":"193.220.242.0\/25", + "version":56089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.242.0", + "prefixLen":25, + "network":"193.220.242.0\/25", + "version":56089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.242.128", + "prefixLen":25, + "network":"193.220.242.128\/25", + "version":56088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.242.128", + "prefixLen":25, + "network":"193.220.242.128\/25", + "version":56088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.243.0", + "prefixLen":25, + "network":"193.220.243.0\/25", + "version":56087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.243.0", + "prefixLen":25, + "network":"193.220.243.0\/25", + "version":56087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.220.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.220.243.128", + "prefixLen":25, + "network":"193.220.243.128\/25", + "version":56086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.220.243.128", + "prefixLen":25, + "network":"193.220.243.128\/25", + "version":56086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64908 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.0.0", + "prefixLen":25, + "network":"193.221.0.0\/25", + "version":56213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.0.0", + "prefixLen":25, + "network":"193.221.0.0\/25", + "version":56213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.0.128", + "prefixLen":25, + "network":"193.221.0.128\/25", + "version":56340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.0.128", + "prefixLen":25, + "network":"193.221.0.128\/25", + "version":56340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.1.0", + "prefixLen":25, + "network":"193.221.1.0\/25", + "version":56339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.1.0", + "prefixLen":25, + "network":"193.221.1.0\/25", + "version":56339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.1.128", + "prefixLen":25, + "network":"193.221.1.128\/25", + "version":56338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.1.128", + "prefixLen":25, + "network":"193.221.1.128\/25", + "version":56338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.2.0", + "prefixLen":25, + "network":"193.221.2.0\/25", + "version":56337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.2.0", + "prefixLen":25, + "network":"193.221.2.0\/25", + "version":56337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.2.128", + "prefixLen":25, + "network":"193.221.2.128\/25", + "version":56336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.2.128", + "prefixLen":25, + "network":"193.221.2.128\/25", + "version":56336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.3.0", + "prefixLen":25, + "network":"193.221.3.0\/25", + "version":56335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.3.0", + "prefixLen":25, + "network":"193.221.3.0\/25", + "version":56335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.3.128", + "prefixLen":25, + "network":"193.221.3.128\/25", + "version":56334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.3.128", + "prefixLen":25, + "network":"193.221.3.128\/25", + "version":56334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.16.0", + "prefixLen":25, + "network":"193.221.16.0\/25", + "version":56333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.16.0", + "prefixLen":25, + "network":"193.221.16.0\/25", + "version":56333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.16.128", + "prefixLen":25, + "network":"193.221.16.128\/25", + "version":56332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.16.128", + "prefixLen":25, + "network":"193.221.16.128\/25", + "version":56332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.17.0", + "prefixLen":25, + "network":"193.221.17.0\/25", + "version":56331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.17.0", + "prefixLen":25, + "network":"193.221.17.0\/25", + "version":56331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.17.128", + "prefixLen":25, + "network":"193.221.17.128\/25", + "version":56330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.17.128", + "prefixLen":25, + "network":"193.221.17.128\/25", + "version":56330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.18.0", + "prefixLen":25, + "network":"193.221.18.0\/25", + "version":56329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.18.0", + "prefixLen":25, + "network":"193.221.18.0\/25", + "version":56329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.18.128", + "prefixLen":25, + "network":"193.221.18.128\/25", + "version":56328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.18.128", + "prefixLen":25, + "network":"193.221.18.128\/25", + "version":56328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.19.0", + "prefixLen":25, + "network":"193.221.19.0\/25", + "version":56327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.19.0", + "prefixLen":25, + "network":"193.221.19.0\/25", + "version":56327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.19.128", + "prefixLen":25, + "network":"193.221.19.128\/25", + "version":56326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.19.128", + "prefixLen":25, + "network":"193.221.19.128\/25", + "version":56326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.32.0", + "prefixLen":25, + "network":"193.221.32.0\/25", + "version":56325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.32.0", + "prefixLen":25, + "network":"193.221.32.0\/25", + "version":56325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.32.128", + "prefixLen":25, + "network":"193.221.32.128\/25", + "version":56324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.32.128", + "prefixLen":25, + "network":"193.221.32.128\/25", + "version":56324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.33.0", + "prefixLen":25, + "network":"193.221.33.0\/25", + "version":56323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.33.0", + "prefixLen":25, + "network":"193.221.33.0\/25", + "version":56323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.33.128", + "prefixLen":25, + "network":"193.221.33.128\/25", + "version":56322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.33.128", + "prefixLen":25, + "network":"193.221.33.128\/25", + "version":56322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.34.0", + "prefixLen":25, + "network":"193.221.34.0\/25", + "version":56321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.34.0", + "prefixLen":25, + "network":"193.221.34.0\/25", + "version":56321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.34.128", + "prefixLen":25, + "network":"193.221.34.128\/25", + "version":56320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.34.128", + "prefixLen":25, + "network":"193.221.34.128\/25", + "version":56320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.35.0", + "prefixLen":25, + "network":"193.221.35.0\/25", + "version":56319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.35.0", + "prefixLen":25, + "network":"193.221.35.0\/25", + "version":56319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.35.128", + "prefixLen":25, + "network":"193.221.35.128\/25", + "version":56318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.35.128", + "prefixLen":25, + "network":"193.221.35.128\/25", + "version":56318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.48.0", + "prefixLen":25, + "network":"193.221.48.0\/25", + "version":56317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.48.0", + "prefixLen":25, + "network":"193.221.48.0\/25", + "version":56317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.48.128", + "prefixLen":25, + "network":"193.221.48.128\/25", + "version":56316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.48.128", + "prefixLen":25, + "network":"193.221.48.128\/25", + "version":56316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.49.0", + "prefixLen":25, + "network":"193.221.49.0\/25", + "version":56315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.49.0", + "prefixLen":25, + "network":"193.221.49.0\/25", + "version":56315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.49.128", + "prefixLen":25, + "network":"193.221.49.128\/25", + "version":56314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.49.128", + "prefixLen":25, + "network":"193.221.49.128\/25", + "version":56314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.50.0", + "prefixLen":25, + "network":"193.221.50.0\/25", + "version":56313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.50.0", + "prefixLen":25, + "network":"193.221.50.0\/25", + "version":56313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.50.128", + "prefixLen":25, + "network":"193.221.50.128\/25", + "version":56312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.50.128", + "prefixLen":25, + "network":"193.221.50.128\/25", + "version":56312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.51.0", + "prefixLen":25, + "network":"193.221.51.0\/25", + "version":56311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.51.0", + "prefixLen":25, + "network":"193.221.51.0\/25", + "version":56311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.51.128", + "prefixLen":25, + "network":"193.221.51.128\/25", + "version":56310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.51.128", + "prefixLen":25, + "network":"193.221.51.128\/25", + "version":56310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.64.0", + "prefixLen":25, + "network":"193.221.64.0\/25", + "version":56309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.64.0", + "prefixLen":25, + "network":"193.221.64.0\/25", + "version":56309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.64.128", + "prefixLen":25, + "network":"193.221.64.128\/25", + "version":56308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.64.128", + "prefixLen":25, + "network":"193.221.64.128\/25", + "version":56308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.65.0", + "prefixLen":25, + "network":"193.221.65.0\/25", + "version":56307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.65.0", + "prefixLen":25, + "network":"193.221.65.0\/25", + "version":56307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.65.128", + "prefixLen":25, + "network":"193.221.65.128\/25", + "version":56306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.65.128", + "prefixLen":25, + "network":"193.221.65.128\/25", + "version":56306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.66.0", + "prefixLen":25, + "network":"193.221.66.0\/25", + "version":56305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.66.0", + "prefixLen":25, + "network":"193.221.66.0\/25", + "version":56305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.66.128", + "prefixLen":25, + "network":"193.221.66.128\/25", + "version":56304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.66.128", + "prefixLen":25, + "network":"193.221.66.128\/25", + "version":56304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.67.0", + "prefixLen":25, + "network":"193.221.67.0\/25", + "version":56303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.67.0", + "prefixLen":25, + "network":"193.221.67.0\/25", + "version":56303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.67.128", + "prefixLen":25, + "network":"193.221.67.128\/25", + "version":56302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.67.128", + "prefixLen":25, + "network":"193.221.67.128\/25", + "version":56302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.80.0", + "prefixLen":25, + "network":"193.221.80.0\/25", + "version":56301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.80.0", + "prefixLen":25, + "network":"193.221.80.0\/25", + "version":56301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.80.128", + "prefixLen":25, + "network":"193.221.80.128\/25", + "version":56300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.80.128", + "prefixLen":25, + "network":"193.221.80.128\/25", + "version":56300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.81.0", + "prefixLen":25, + "network":"193.221.81.0\/25", + "version":56299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.81.0", + "prefixLen":25, + "network":"193.221.81.0\/25", + "version":56299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.81.128", + "prefixLen":25, + "network":"193.221.81.128\/25", + "version":56298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.81.128", + "prefixLen":25, + "network":"193.221.81.128\/25", + "version":56298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.82.0", + "prefixLen":25, + "network":"193.221.82.0\/25", + "version":56297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.82.0", + "prefixLen":25, + "network":"193.221.82.0\/25", + "version":56297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.82.128", + "prefixLen":25, + "network":"193.221.82.128\/25", + "version":56296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.82.128", + "prefixLen":25, + "network":"193.221.82.128\/25", + "version":56296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.83.0", + "prefixLen":25, + "network":"193.221.83.0\/25", + "version":56295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.83.0", + "prefixLen":25, + "network":"193.221.83.0\/25", + "version":56295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.83.128", + "prefixLen":25, + "network":"193.221.83.128\/25", + "version":56294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.83.128", + "prefixLen":25, + "network":"193.221.83.128\/25", + "version":56294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.96.0", + "prefixLen":25, + "network":"193.221.96.0\/25", + "version":56293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.96.0", + "prefixLen":25, + "network":"193.221.96.0\/25", + "version":56293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.96.128", + "prefixLen":25, + "network":"193.221.96.128\/25", + "version":56292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.96.128", + "prefixLen":25, + "network":"193.221.96.128\/25", + "version":56292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.97.0", + "prefixLen":25, + "network":"193.221.97.0\/25", + "version":56291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.97.0", + "prefixLen":25, + "network":"193.221.97.0\/25", + "version":56291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.97.128", + "prefixLen":25, + "network":"193.221.97.128\/25", + "version":56290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.97.128", + "prefixLen":25, + "network":"193.221.97.128\/25", + "version":56290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.98.0", + "prefixLen":25, + "network":"193.221.98.0\/25", + "version":56289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.98.0", + "prefixLen":25, + "network":"193.221.98.0\/25", + "version":56289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.98.128", + "prefixLen":25, + "network":"193.221.98.128\/25", + "version":56288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.98.128", + "prefixLen":25, + "network":"193.221.98.128\/25", + "version":56288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.99.0", + "prefixLen":25, + "network":"193.221.99.0\/25", + "version":56287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.99.0", + "prefixLen":25, + "network":"193.221.99.0\/25", + "version":56287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.99.128", + "prefixLen":25, + "network":"193.221.99.128\/25", + "version":56286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.99.128", + "prefixLen":25, + "network":"193.221.99.128\/25", + "version":56286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.112.0", + "prefixLen":25, + "network":"193.221.112.0\/25", + "version":56285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.112.0", + "prefixLen":25, + "network":"193.221.112.0\/25", + "version":56285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.112.128", + "prefixLen":25, + "network":"193.221.112.128\/25", + "version":56284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.112.128", + "prefixLen":25, + "network":"193.221.112.128\/25", + "version":56284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.113.0", + "prefixLen":25, + "network":"193.221.113.0\/25", + "version":56283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.113.0", + "prefixLen":25, + "network":"193.221.113.0\/25", + "version":56283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.113.128", + "prefixLen":25, + "network":"193.221.113.128\/25", + "version":56282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.113.128", + "prefixLen":25, + "network":"193.221.113.128\/25", + "version":56282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.114.0", + "prefixLen":25, + "network":"193.221.114.0\/25", + "version":56281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.114.0", + "prefixLen":25, + "network":"193.221.114.0\/25", + "version":56281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.114.128", + "prefixLen":25, + "network":"193.221.114.128\/25", + "version":56280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.114.128", + "prefixLen":25, + "network":"193.221.114.128\/25", + "version":56280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.115.0", + "prefixLen":25, + "network":"193.221.115.0\/25", + "version":56279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.115.0", + "prefixLen":25, + "network":"193.221.115.0\/25", + "version":56279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.115.128", + "prefixLen":25, + "network":"193.221.115.128\/25", + "version":56278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.115.128", + "prefixLen":25, + "network":"193.221.115.128\/25", + "version":56278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.128.0", + "prefixLen":25, + "network":"193.221.128.0\/25", + "version":56277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.128.0", + "prefixLen":25, + "network":"193.221.128.0\/25", + "version":56277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.128.128", + "prefixLen":25, + "network":"193.221.128.128\/25", + "version":56276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.128.128", + "prefixLen":25, + "network":"193.221.128.128\/25", + "version":56276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.129.0", + "prefixLen":25, + "network":"193.221.129.0\/25", + "version":56275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.129.0", + "prefixLen":25, + "network":"193.221.129.0\/25", + "version":56275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.129.128", + "prefixLen":25, + "network":"193.221.129.128\/25", + "version":56274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.129.128", + "prefixLen":25, + "network":"193.221.129.128\/25", + "version":56274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.130.0", + "prefixLen":25, + "network":"193.221.130.0\/25", + "version":56273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.130.0", + "prefixLen":25, + "network":"193.221.130.0\/25", + "version":56273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.130.128", + "prefixLen":25, + "network":"193.221.130.128\/25", + "version":56272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.130.128", + "prefixLen":25, + "network":"193.221.130.128\/25", + "version":56272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.131.0", + "prefixLen":25, + "network":"193.221.131.0\/25", + "version":56271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.131.0", + "prefixLen":25, + "network":"193.221.131.0\/25", + "version":56271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.131.128", + "prefixLen":25, + "network":"193.221.131.128\/25", + "version":56270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.131.128", + "prefixLen":25, + "network":"193.221.131.128\/25", + "version":56270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.144.0", + "prefixLen":25, + "network":"193.221.144.0\/25", + "version":56269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.144.0", + "prefixLen":25, + "network":"193.221.144.0\/25", + "version":56269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.144.128", + "prefixLen":25, + "network":"193.221.144.128\/25", + "version":56268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.144.128", + "prefixLen":25, + "network":"193.221.144.128\/25", + "version":56268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.145.0", + "prefixLen":25, + "network":"193.221.145.0\/25", + "version":56267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.145.0", + "prefixLen":25, + "network":"193.221.145.0\/25", + "version":56267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.145.128", + "prefixLen":25, + "network":"193.221.145.128\/25", + "version":56266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.145.128", + "prefixLen":25, + "network":"193.221.145.128\/25", + "version":56266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.146.0", + "prefixLen":25, + "network":"193.221.146.0\/25", + "version":56265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.146.0", + "prefixLen":25, + "network":"193.221.146.0\/25", + "version":56265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.146.128", + "prefixLen":25, + "network":"193.221.146.128\/25", + "version":56264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.146.128", + "prefixLen":25, + "network":"193.221.146.128\/25", + "version":56264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.147.0", + "prefixLen":25, + "network":"193.221.147.0\/25", + "version":56263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.147.0", + "prefixLen":25, + "network":"193.221.147.0\/25", + "version":56263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.147.128", + "prefixLen":25, + "network":"193.221.147.128\/25", + "version":56262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.147.128", + "prefixLen":25, + "network":"193.221.147.128\/25", + "version":56262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.160.0", + "prefixLen":25, + "network":"193.221.160.0\/25", + "version":56261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.160.0", + "prefixLen":25, + "network":"193.221.160.0\/25", + "version":56261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.160.128", + "prefixLen":25, + "network":"193.221.160.128\/25", + "version":56260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.160.128", + "prefixLen":25, + "network":"193.221.160.128\/25", + "version":56260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.161.0", + "prefixLen":25, + "network":"193.221.161.0\/25", + "version":56259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.161.0", + "prefixLen":25, + "network":"193.221.161.0\/25", + "version":56259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.161.128", + "prefixLen":25, + "network":"193.221.161.128\/25", + "version":56258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.161.128", + "prefixLen":25, + "network":"193.221.161.128\/25", + "version":56258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.162.0", + "prefixLen":25, + "network":"193.221.162.0\/25", + "version":56257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.162.0", + "prefixLen":25, + "network":"193.221.162.0\/25", + "version":56257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.162.128", + "prefixLen":25, + "network":"193.221.162.128\/25", + "version":56256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.162.128", + "prefixLen":25, + "network":"193.221.162.128\/25", + "version":56256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.163.0", + "prefixLen":25, + "network":"193.221.163.0\/25", + "version":56255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.163.0", + "prefixLen":25, + "network":"193.221.163.0\/25", + "version":56255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.163.128", + "prefixLen":25, + "network":"193.221.163.128\/25", + "version":56254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.163.128", + "prefixLen":25, + "network":"193.221.163.128\/25", + "version":56254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.176.0", + "prefixLen":25, + "network":"193.221.176.0\/25", + "version":56253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.176.0", + "prefixLen":25, + "network":"193.221.176.0\/25", + "version":56253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.176.128", + "prefixLen":25, + "network":"193.221.176.128\/25", + "version":56252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.176.128", + "prefixLen":25, + "network":"193.221.176.128\/25", + "version":56252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.177.0", + "prefixLen":25, + "network":"193.221.177.0\/25", + "version":56251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.177.0", + "prefixLen":25, + "network":"193.221.177.0\/25", + "version":56251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.177.128", + "prefixLen":25, + "network":"193.221.177.128\/25", + "version":56250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.177.128", + "prefixLen":25, + "network":"193.221.177.128\/25", + "version":56250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.178.0", + "prefixLen":25, + "network":"193.221.178.0\/25", + "version":56249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.178.0", + "prefixLen":25, + "network":"193.221.178.0\/25", + "version":56249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.178.128", + "prefixLen":25, + "network":"193.221.178.128\/25", + "version":56248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.178.128", + "prefixLen":25, + "network":"193.221.178.128\/25", + "version":56248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.179.0", + "prefixLen":25, + "network":"193.221.179.0\/25", + "version":56247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.179.0", + "prefixLen":25, + "network":"193.221.179.0\/25", + "version":56247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.179.128", + "prefixLen":25, + "network":"193.221.179.128\/25", + "version":56246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.179.128", + "prefixLen":25, + "network":"193.221.179.128\/25", + "version":56246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.192.0", + "prefixLen":25, + "network":"193.221.192.0\/25", + "version":56245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.192.0", + "prefixLen":25, + "network":"193.221.192.0\/25", + "version":56245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.192.128", + "prefixLen":25, + "network":"193.221.192.128\/25", + "version":56244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.192.128", + "prefixLen":25, + "network":"193.221.192.128\/25", + "version":56244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.193.0", + "prefixLen":25, + "network":"193.221.193.0\/25", + "version":56243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.193.0", + "prefixLen":25, + "network":"193.221.193.0\/25", + "version":56243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.193.128", + "prefixLen":25, + "network":"193.221.193.128\/25", + "version":56242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.193.128", + "prefixLen":25, + "network":"193.221.193.128\/25", + "version":56242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.194.0", + "prefixLen":25, + "network":"193.221.194.0\/25", + "version":56241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.194.0", + "prefixLen":25, + "network":"193.221.194.0\/25", + "version":56241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.194.128", + "prefixLen":25, + "network":"193.221.194.128\/25", + "version":56240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.194.128", + "prefixLen":25, + "network":"193.221.194.128\/25", + "version":56240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.195.0", + "prefixLen":25, + "network":"193.221.195.0\/25", + "version":56239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.195.0", + "prefixLen":25, + "network":"193.221.195.0\/25", + "version":56239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.195.128", + "prefixLen":25, + "network":"193.221.195.128\/25", + "version":56238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.195.128", + "prefixLen":25, + "network":"193.221.195.128\/25", + "version":56238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.208.0", + "prefixLen":25, + "network":"193.221.208.0\/25", + "version":56237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.208.0", + "prefixLen":25, + "network":"193.221.208.0\/25", + "version":56237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.208.128", + "prefixLen":25, + "network":"193.221.208.128\/25", + "version":56236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.208.128", + "prefixLen":25, + "network":"193.221.208.128\/25", + "version":56236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.209.0", + "prefixLen":25, + "network":"193.221.209.0\/25", + "version":56235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.209.0", + "prefixLen":25, + "network":"193.221.209.0\/25", + "version":56235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.209.128", + "prefixLen":25, + "network":"193.221.209.128\/25", + "version":56234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.209.128", + "prefixLen":25, + "network":"193.221.209.128\/25", + "version":56234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.210.0", + "prefixLen":25, + "network":"193.221.210.0\/25", + "version":56233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.210.0", + "prefixLen":25, + "network":"193.221.210.0\/25", + "version":56233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.210.128", + "prefixLen":25, + "network":"193.221.210.128\/25", + "version":56232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.210.128", + "prefixLen":25, + "network":"193.221.210.128\/25", + "version":56232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.211.0", + "prefixLen":25, + "network":"193.221.211.0\/25", + "version":56231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.211.0", + "prefixLen":25, + "network":"193.221.211.0\/25", + "version":56231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.211.128", + "prefixLen":25, + "network":"193.221.211.128\/25", + "version":56230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.211.128", + "prefixLen":25, + "network":"193.221.211.128\/25", + "version":56230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.224.0", + "prefixLen":25, + "network":"193.221.224.0\/25", + "version":56229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.224.0", + "prefixLen":25, + "network":"193.221.224.0\/25", + "version":56229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.224.128", + "prefixLen":25, + "network":"193.221.224.128\/25", + "version":56228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.224.128", + "prefixLen":25, + "network":"193.221.224.128\/25", + "version":56228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.225.0", + "prefixLen":25, + "network":"193.221.225.0\/25", + "version":56227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.225.0", + "prefixLen":25, + "network":"193.221.225.0\/25", + "version":56227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.225.128", + "prefixLen":25, + "network":"193.221.225.128\/25", + "version":56226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.225.128", + "prefixLen":25, + "network":"193.221.225.128\/25", + "version":56226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.226.0", + "prefixLen":25, + "network":"193.221.226.0\/25", + "version":56225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.226.0", + "prefixLen":25, + "network":"193.221.226.0\/25", + "version":56225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.226.128", + "prefixLen":25, + "network":"193.221.226.128\/25", + "version":56224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.226.128", + "prefixLen":25, + "network":"193.221.226.128\/25", + "version":56224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.227.0", + "prefixLen":25, + "network":"193.221.227.0\/25", + "version":56223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.227.0", + "prefixLen":25, + "network":"193.221.227.0\/25", + "version":56223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.227.128", + "prefixLen":25, + "network":"193.221.227.128\/25", + "version":56222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.227.128", + "prefixLen":25, + "network":"193.221.227.128\/25", + "version":56222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.240.0", + "prefixLen":25, + "network":"193.221.240.0\/25", + "version":56221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.240.0", + "prefixLen":25, + "network":"193.221.240.0\/25", + "version":56221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.240.128", + "prefixLen":25, + "network":"193.221.240.128\/25", + "version":56220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.240.128", + "prefixLen":25, + "network":"193.221.240.128\/25", + "version":56220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.241.0", + "prefixLen":25, + "network":"193.221.241.0\/25", + "version":56219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.241.0", + "prefixLen":25, + "network":"193.221.241.0\/25", + "version":56219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.241.128", + "prefixLen":25, + "network":"193.221.241.128\/25", + "version":56218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.241.128", + "prefixLen":25, + "network":"193.221.241.128\/25", + "version":56218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.242.0", + "prefixLen":25, + "network":"193.221.242.0\/25", + "version":56217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.242.0", + "prefixLen":25, + "network":"193.221.242.0\/25", + "version":56217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.242.128", + "prefixLen":25, + "network":"193.221.242.128\/25", + "version":56216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.242.128", + "prefixLen":25, + "network":"193.221.242.128\/25", + "version":56216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.243.0", + "prefixLen":25, + "network":"193.221.243.0\/25", + "version":56215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.243.0", + "prefixLen":25, + "network":"193.221.243.0\/25", + "version":56215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.221.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.221.243.128", + "prefixLen":25, + "network":"193.221.243.128\/25", + "version":56214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.221.243.128", + "prefixLen":25, + "network":"193.221.243.128\/25", + "version":56214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64909 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.0.0", + "prefixLen":25, + "network":"193.222.0.0\/25", + "version":56341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.0.0", + "prefixLen":25, + "network":"193.222.0.0\/25", + "version":56341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.0.128", + "prefixLen":25, + "network":"193.222.0.128\/25", + "version":56468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.0.128", + "prefixLen":25, + "network":"193.222.0.128\/25", + "version":56468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.1.0", + "prefixLen":25, + "network":"193.222.1.0\/25", + "version":56467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.1.0", + "prefixLen":25, + "network":"193.222.1.0\/25", + "version":56467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.1.128", + "prefixLen":25, + "network":"193.222.1.128\/25", + "version":56466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.1.128", + "prefixLen":25, + "network":"193.222.1.128\/25", + "version":56466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.2.0", + "prefixLen":25, + "network":"193.222.2.0\/25", + "version":56465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.2.0", + "prefixLen":25, + "network":"193.222.2.0\/25", + "version":56465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.2.128", + "prefixLen":25, + "network":"193.222.2.128\/25", + "version":56464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.2.128", + "prefixLen":25, + "network":"193.222.2.128\/25", + "version":56464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.3.0", + "prefixLen":25, + "network":"193.222.3.0\/25", + "version":56463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.3.0", + "prefixLen":25, + "network":"193.222.3.0\/25", + "version":56463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.3.128", + "prefixLen":25, + "network":"193.222.3.128\/25", + "version":56462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.3.128", + "prefixLen":25, + "network":"193.222.3.128\/25", + "version":56462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.16.0", + "prefixLen":25, + "network":"193.222.16.0\/25", + "version":56461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.16.0", + "prefixLen":25, + "network":"193.222.16.0\/25", + "version":56461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.16.128", + "prefixLen":25, + "network":"193.222.16.128\/25", + "version":56460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.16.128", + "prefixLen":25, + "network":"193.222.16.128\/25", + "version":56460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.17.0", + "prefixLen":25, + "network":"193.222.17.0\/25", + "version":56459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.17.0", + "prefixLen":25, + "network":"193.222.17.0\/25", + "version":56459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.17.128", + "prefixLen":25, + "network":"193.222.17.128\/25", + "version":56458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.17.128", + "prefixLen":25, + "network":"193.222.17.128\/25", + "version":56458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.18.0", + "prefixLen":25, + "network":"193.222.18.0\/25", + "version":56457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.18.0", + "prefixLen":25, + "network":"193.222.18.0\/25", + "version":56457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.18.128", + "prefixLen":25, + "network":"193.222.18.128\/25", + "version":56456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.18.128", + "prefixLen":25, + "network":"193.222.18.128\/25", + "version":56456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.19.0", + "prefixLen":25, + "network":"193.222.19.0\/25", + "version":56455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.19.0", + "prefixLen":25, + "network":"193.222.19.0\/25", + "version":56455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.19.128", + "prefixLen":25, + "network":"193.222.19.128\/25", + "version":56454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.19.128", + "prefixLen":25, + "network":"193.222.19.128\/25", + "version":56454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.32.0", + "prefixLen":25, + "network":"193.222.32.0\/25", + "version":56453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.32.0", + "prefixLen":25, + "network":"193.222.32.0\/25", + "version":56453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.32.128", + "prefixLen":25, + "network":"193.222.32.128\/25", + "version":56452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.32.128", + "prefixLen":25, + "network":"193.222.32.128\/25", + "version":56452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.33.0", + "prefixLen":25, + "network":"193.222.33.0\/25", + "version":56451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.33.0", + "prefixLen":25, + "network":"193.222.33.0\/25", + "version":56451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.33.128", + "prefixLen":25, + "network":"193.222.33.128\/25", + "version":56450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.33.128", + "prefixLen":25, + "network":"193.222.33.128\/25", + "version":56450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.34.0", + "prefixLen":25, + "network":"193.222.34.0\/25", + "version":56449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.34.0", + "prefixLen":25, + "network":"193.222.34.0\/25", + "version":56449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.34.128", + "prefixLen":25, + "network":"193.222.34.128\/25", + "version":56448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.34.128", + "prefixLen":25, + "network":"193.222.34.128\/25", + "version":56448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.35.0", + "prefixLen":25, + "network":"193.222.35.0\/25", + "version":56447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.35.0", + "prefixLen":25, + "network":"193.222.35.0\/25", + "version":56447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.35.128", + "prefixLen":25, + "network":"193.222.35.128\/25", + "version":56446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.35.128", + "prefixLen":25, + "network":"193.222.35.128\/25", + "version":56446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.48.0", + "prefixLen":25, + "network":"193.222.48.0\/25", + "version":56445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.48.0", + "prefixLen":25, + "network":"193.222.48.0\/25", + "version":56445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.48.128", + "prefixLen":25, + "network":"193.222.48.128\/25", + "version":56444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.48.128", + "prefixLen":25, + "network":"193.222.48.128\/25", + "version":56444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.49.0", + "prefixLen":25, + "network":"193.222.49.0\/25", + "version":56443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.49.0", + "prefixLen":25, + "network":"193.222.49.0\/25", + "version":56443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.49.128", + "prefixLen":25, + "network":"193.222.49.128\/25", + "version":56442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.49.128", + "prefixLen":25, + "network":"193.222.49.128\/25", + "version":56442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.50.0", + "prefixLen":25, + "network":"193.222.50.0\/25", + "version":56441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.50.0", + "prefixLen":25, + "network":"193.222.50.0\/25", + "version":56441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.50.128", + "prefixLen":25, + "network":"193.222.50.128\/25", + "version":56440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.50.128", + "prefixLen":25, + "network":"193.222.50.128\/25", + "version":56440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.51.0", + "prefixLen":25, + "network":"193.222.51.0\/25", + "version":56439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.51.0", + "prefixLen":25, + "network":"193.222.51.0\/25", + "version":56439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.51.128", + "prefixLen":25, + "network":"193.222.51.128\/25", + "version":56438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.51.128", + "prefixLen":25, + "network":"193.222.51.128\/25", + "version":56438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.64.0", + "prefixLen":25, + "network":"193.222.64.0\/25", + "version":56437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.64.0", + "prefixLen":25, + "network":"193.222.64.0\/25", + "version":56437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.64.128", + "prefixLen":25, + "network":"193.222.64.128\/25", + "version":56436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.64.128", + "prefixLen":25, + "network":"193.222.64.128\/25", + "version":56436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.65.0", + "prefixLen":25, + "network":"193.222.65.0\/25", + "version":56435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.65.0", + "prefixLen":25, + "network":"193.222.65.0\/25", + "version":56435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.65.128", + "prefixLen":25, + "network":"193.222.65.128\/25", + "version":56434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.65.128", + "prefixLen":25, + "network":"193.222.65.128\/25", + "version":56434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.66.0", + "prefixLen":25, + "network":"193.222.66.0\/25", + "version":56433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.66.0", + "prefixLen":25, + "network":"193.222.66.0\/25", + "version":56433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.66.128", + "prefixLen":25, + "network":"193.222.66.128\/25", + "version":56432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.66.128", + "prefixLen":25, + "network":"193.222.66.128\/25", + "version":56432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.67.0", + "prefixLen":25, + "network":"193.222.67.0\/25", + "version":56431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.67.0", + "prefixLen":25, + "network":"193.222.67.0\/25", + "version":56431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.67.128", + "prefixLen":25, + "network":"193.222.67.128\/25", + "version":56430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.67.128", + "prefixLen":25, + "network":"193.222.67.128\/25", + "version":56430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.80.0", + "prefixLen":25, + "network":"193.222.80.0\/25", + "version":56429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.80.0", + "prefixLen":25, + "network":"193.222.80.0\/25", + "version":56429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.80.128", + "prefixLen":25, + "network":"193.222.80.128\/25", + "version":56428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.80.128", + "prefixLen":25, + "network":"193.222.80.128\/25", + "version":56428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.81.0", + "prefixLen":25, + "network":"193.222.81.0\/25", + "version":56427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.81.0", + "prefixLen":25, + "network":"193.222.81.0\/25", + "version":56427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.81.128", + "prefixLen":25, + "network":"193.222.81.128\/25", + "version":56426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.81.128", + "prefixLen":25, + "network":"193.222.81.128\/25", + "version":56426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.82.0", + "prefixLen":25, + "network":"193.222.82.0\/25", + "version":56425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.82.0", + "prefixLen":25, + "network":"193.222.82.0\/25", + "version":56425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.82.128", + "prefixLen":25, + "network":"193.222.82.128\/25", + "version":56424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.82.128", + "prefixLen":25, + "network":"193.222.82.128\/25", + "version":56424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.83.0", + "prefixLen":25, + "network":"193.222.83.0\/25", + "version":56423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.83.0", + "prefixLen":25, + "network":"193.222.83.0\/25", + "version":56423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.83.128", + "prefixLen":25, + "network":"193.222.83.128\/25", + "version":56422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.83.128", + "prefixLen":25, + "network":"193.222.83.128\/25", + "version":56422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.96.0", + "prefixLen":25, + "network":"193.222.96.0\/25", + "version":56421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.96.0", + "prefixLen":25, + "network":"193.222.96.0\/25", + "version":56421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.96.128", + "prefixLen":25, + "network":"193.222.96.128\/25", + "version":56420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.96.128", + "prefixLen":25, + "network":"193.222.96.128\/25", + "version":56420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.97.0", + "prefixLen":25, + "network":"193.222.97.0\/25", + "version":56419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.97.0", + "prefixLen":25, + "network":"193.222.97.0\/25", + "version":56419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.97.128", + "prefixLen":25, + "network":"193.222.97.128\/25", + "version":56418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.97.128", + "prefixLen":25, + "network":"193.222.97.128\/25", + "version":56418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.98.0", + "prefixLen":25, + "network":"193.222.98.0\/25", + "version":56417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.98.0", + "prefixLen":25, + "network":"193.222.98.0\/25", + "version":56417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.98.128", + "prefixLen":25, + "network":"193.222.98.128\/25", + "version":56416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.98.128", + "prefixLen":25, + "network":"193.222.98.128\/25", + "version":56416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.99.0", + "prefixLen":25, + "network":"193.222.99.0\/25", + "version":56415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.99.0", + "prefixLen":25, + "network":"193.222.99.0\/25", + "version":56415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.99.128", + "prefixLen":25, + "network":"193.222.99.128\/25", + "version":56414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.99.128", + "prefixLen":25, + "network":"193.222.99.128\/25", + "version":56414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.112.0", + "prefixLen":25, + "network":"193.222.112.0\/25", + "version":56413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.112.0", + "prefixLen":25, + "network":"193.222.112.0\/25", + "version":56413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.112.128", + "prefixLen":25, + "network":"193.222.112.128\/25", + "version":56412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.112.128", + "prefixLen":25, + "network":"193.222.112.128\/25", + "version":56412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.113.0", + "prefixLen":25, + "network":"193.222.113.0\/25", + "version":56411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.113.0", + "prefixLen":25, + "network":"193.222.113.0\/25", + "version":56411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.113.128", + "prefixLen":25, + "network":"193.222.113.128\/25", + "version":56410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.113.128", + "prefixLen":25, + "network":"193.222.113.128\/25", + "version":56410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.114.0", + "prefixLen":25, + "network":"193.222.114.0\/25", + "version":56409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.114.0", + "prefixLen":25, + "network":"193.222.114.0\/25", + "version":56409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.114.128", + "prefixLen":25, + "network":"193.222.114.128\/25", + "version":56408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.114.128", + "prefixLen":25, + "network":"193.222.114.128\/25", + "version":56408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.115.0", + "prefixLen":25, + "network":"193.222.115.0\/25", + "version":56407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.115.0", + "prefixLen":25, + "network":"193.222.115.0\/25", + "version":56407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.115.128", + "prefixLen":25, + "network":"193.222.115.128\/25", + "version":56406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.115.128", + "prefixLen":25, + "network":"193.222.115.128\/25", + "version":56406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.128.0", + "prefixLen":25, + "network":"193.222.128.0\/25", + "version":56405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.128.0", + "prefixLen":25, + "network":"193.222.128.0\/25", + "version":56405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.128.128", + "prefixLen":25, + "network":"193.222.128.128\/25", + "version":56404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.128.128", + "prefixLen":25, + "network":"193.222.128.128\/25", + "version":56404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.129.0", + "prefixLen":25, + "network":"193.222.129.0\/25", + "version":56403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.129.0", + "prefixLen":25, + "network":"193.222.129.0\/25", + "version":56403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.129.128", + "prefixLen":25, + "network":"193.222.129.128\/25", + "version":56402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.129.128", + "prefixLen":25, + "network":"193.222.129.128\/25", + "version":56402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.130.0", + "prefixLen":25, + "network":"193.222.130.0\/25", + "version":56401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.130.0", + "prefixLen":25, + "network":"193.222.130.0\/25", + "version":56401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.130.128", + "prefixLen":25, + "network":"193.222.130.128\/25", + "version":56400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.130.128", + "prefixLen":25, + "network":"193.222.130.128\/25", + "version":56400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.131.0", + "prefixLen":25, + "network":"193.222.131.0\/25", + "version":56399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.131.0", + "prefixLen":25, + "network":"193.222.131.0\/25", + "version":56399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.131.128", + "prefixLen":25, + "network":"193.222.131.128\/25", + "version":56398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.131.128", + "prefixLen":25, + "network":"193.222.131.128\/25", + "version":56398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.144.0", + "prefixLen":25, + "network":"193.222.144.0\/25", + "version":56397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.144.0", + "prefixLen":25, + "network":"193.222.144.0\/25", + "version":56397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.144.128", + "prefixLen":25, + "network":"193.222.144.128\/25", + "version":56396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.144.128", + "prefixLen":25, + "network":"193.222.144.128\/25", + "version":56396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.145.0", + "prefixLen":25, + "network":"193.222.145.0\/25", + "version":56395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.145.0", + "prefixLen":25, + "network":"193.222.145.0\/25", + "version":56395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.145.128", + "prefixLen":25, + "network":"193.222.145.128\/25", + "version":56394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.145.128", + "prefixLen":25, + "network":"193.222.145.128\/25", + "version":56394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.146.0", + "prefixLen":25, + "network":"193.222.146.0\/25", + "version":56393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.146.0", + "prefixLen":25, + "network":"193.222.146.0\/25", + "version":56393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.146.128", + "prefixLen":25, + "network":"193.222.146.128\/25", + "version":56392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.146.128", + "prefixLen":25, + "network":"193.222.146.128\/25", + "version":56392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.147.0", + "prefixLen":25, + "network":"193.222.147.0\/25", + "version":56391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.147.0", + "prefixLen":25, + "network":"193.222.147.0\/25", + "version":56391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.147.128", + "prefixLen":25, + "network":"193.222.147.128\/25", + "version":56390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.147.128", + "prefixLen":25, + "network":"193.222.147.128\/25", + "version":56390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.160.0", + "prefixLen":25, + "network":"193.222.160.0\/25", + "version":56389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.160.0", + "prefixLen":25, + "network":"193.222.160.0\/25", + "version":56389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.160.128", + "prefixLen":25, + "network":"193.222.160.128\/25", + "version":56388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.160.128", + "prefixLen":25, + "network":"193.222.160.128\/25", + "version":56388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.161.0", + "prefixLen":25, + "network":"193.222.161.0\/25", + "version":56387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.161.0", + "prefixLen":25, + "network":"193.222.161.0\/25", + "version":56387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.161.128", + "prefixLen":25, + "network":"193.222.161.128\/25", + "version":56386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.161.128", + "prefixLen":25, + "network":"193.222.161.128\/25", + "version":56386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.162.0", + "prefixLen":25, + "network":"193.222.162.0\/25", + "version":56385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.162.0", + "prefixLen":25, + "network":"193.222.162.0\/25", + "version":56385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.162.128", + "prefixLen":25, + "network":"193.222.162.128\/25", + "version":56384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.162.128", + "prefixLen":25, + "network":"193.222.162.128\/25", + "version":56384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.163.0", + "prefixLen":25, + "network":"193.222.163.0\/25", + "version":56383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.163.0", + "prefixLen":25, + "network":"193.222.163.0\/25", + "version":56383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.163.128", + "prefixLen":25, + "network":"193.222.163.128\/25", + "version":56382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.163.128", + "prefixLen":25, + "network":"193.222.163.128\/25", + "version":56382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.176.0", + "prefixLen":25, + "network":"193.222.176.0\/25", + "version":56381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.176.0", + "prefixLen":25, + "network":"193.222.176.0\/25", + "version":56381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.176.128", + "prefixLen":25, + "network":"193.222.176.128\/25", + "version":56380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.176.128", + "prefixLen":25, + "network":"193.222.176.128\/25", + "version":56380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.177.0", + "prefixLen":25, + "network":"193.222.177.0\/25", + "version":56379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.177.0", + "prefixLen":25, + "network":"193.222.177.0\/25", + "version":56379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.177.128", + "prefixLen":25, + "network":"193.222.177.128\/25", + "version":56378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.177.128", + "prefixLen":25, + "network":"193.222.177.128\/25", + "version":56378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.178.0", + "prefixLen":25, + "network":"193.222.178.0\/25", + "version":56377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.178.0", + "prefixLen":25, + "network":"193.222.178.0\/25", + "version":56377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.178.128", + "prefixLen":25, + "network":"193.222.178.128\/25", + "version":56376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.178.128", + "prefixLen":25, + "network":"193.222.178.128\/25", + "version":56376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.179.0", + "prefixLen":25, + "network":"193.222.179.0\/25", + "version":56375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.179.0", + "prefixLen":25, + "network":"193.222.179.0\/25", + "version":56375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.179.128", + "prefixLen":25, + "network":"193.222.179.128\/25", + "version":56374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.179.128", + "prefixLen":25, + "network":"193.222.179.128\/25", + "version":56374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.192.0", + "prefixLen":25, + "network":"193.222.192.0\/25", + "version":56373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.192.0", + "prefixLen":25, + "network":"193.222.192.0\/25", + "version":56373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.192.128", + "prefixLen":25, + "network":"193.222.192.128\/25", + "version":56372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.192.128", + "prefixLen":25, + "network":"193.222.192.128\/25", + "version":56372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.193.0", + "prefixLen":25, + "network":"193.222.193.0\/25", + "version":56371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.193.0", + "prefixLen":25, + "network":"193.222.193.0\/25", + "version":56371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.193.128", + "prefixLen":25, + "network":"193.222.193.128\/25", + "version":56370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.193.128", + "prefixLen":25, + "network":"193.222.193.128\/25", + "version":56370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.194.0", + "prefixLen":25, + "network":"193.222.194.0\/25", + "version":56369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.194.0", + "prefixLen":25, + "network":"193.222.194.0\/25", + "version":56369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.194.128", + "prefixLen":25, + "network":"193.222.194.128\/25", + "version":56368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.194.128", + "prefixLen":25, + "network":"193.222.194.128\/25", + "version":56368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.195.0", + "prefixLen":25, + "network":"193.222.195.0\/25", + "version":56367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.195.0", + "prefixLen":25, + "network":"193.222.195.0\/25", + "version":56367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.195.128", + "prefixLen":25, + "network":"193.222.195.128\/25", + "version":56366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.195.128", + "prefixLen":25, + "network":"193.222.195.128\/25", + "version":56366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.208.0", + "prefixLen":25, + "network":"193.222.208.0\/25", + "version":56365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.208.0", + "prefixLen":25, + "network":"193.222.208.0\/25", + "version":56365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.208.128", + "prefixLen":25, + "network":"193.222.208.128\/25", + "version":56364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.208.128", + "prefixLen":25, + "network":"193.222.208.128\/25", + "version":56364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.209.0", + "prefixLen":25, + "network":"193.222.209.0\/25", + "version":56363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.209.0", + "prefixLen":25, + "network":"193.222.209.0\/25", + "version":56363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.209.128", + "prefixLen":25, + "network":"193.222.209.128\/25", + "version":56362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.209.128", + "prefixLen":25, + "network":"193.222.209.128\/25", + "version":56362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.210.0", + "prefixLen":25, + "network":"193.222.210.0\/25", + "version":56361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.210.0", + "prefixLen":25, + "network":"193.222.210.0\/25", + "version":56361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.210.128", + "prefixLen":25, + "network":"193.222.210.128\/25", + "version":56360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.210.128", + "prefixLen":25, + "network":"193.222.210.128\/25", + "version":56360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.211.0", + "prefixLen":25, + "network":"193.222.211.0\/25", + "version":56359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.211.0", + "prefixLen":25, + "network":"193.222.211.0\/25", + "version":56359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.211.128", + "prefixLen":25, + "network":"193.222.211.128\/25", + "version":56358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.211.128", + "prefixLen":25, + "network":"193.222.211.128\/25", + "version":56358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.224.0", + "prefixLen":25, + "network":"193.222.224.0\/25", + "version":56357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.224.0", + "prefixLen":25, + "network":"193.222.224.0\/25", + "version":56357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.224.128", + "prefixLen":25, + "network":"193.222.224.128\/25", + "version":56356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.224.128", + "prefixLen":25, + "network":"193.222.224.128\/25", + "version":56356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.225.0", + "prefixLen":25, + "network":"193.222.225.0\/25", + "version":56355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.225.0", + "prefixLen":25, + "network":"193.222.225.0\/25", + "version":56355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.225.128", + "prefixLen":25, + "network":"193.222.225.128\/25", + "version":56354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.225.128", + "prefixLen":25, + "network":"193.222.225.128\/25", + "version":56354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.226.0", + "prefixLen":25, + "network":"193.222.226.0\/25", + "version":56353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.226.0", + "prefixLen":25, + "network":"193.222.226.0\/25", + "version":56353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.226.128", + "prefixLen":25, + "network":"193.222.226.128\/25", + "version":56352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.226.128", + "prefixLen":25, + "network":"193.222.226.128\/25", + "version":56352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.227.0", + "prefixLen":25, + "network":"193.222.227.0\/25", + "version":56351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.227.0", + "prefixLen":25, + "network":"193.222.227.0\/25", + "version":56351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.227.128", + "prefixLen":25, + "network":"193.222.227.128\/25", + "version":56350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.227.128", + "prefixLen":25, + "network":"193.222.227.128\/25", + "version":56350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.240.0", + "prefixLen":25, + "network":"193.222.240.0\/25", + "version":56349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.240.0", + "prefixLen":25, + "network":"193.222.240.0\/25", + "version":56349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.240.128", + "prefixLen":25, + "network":"193.222.240.128\/25", + "version":56348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.240.128", + "prefixLen":25, + "network":"193.222.240.128\/25", + "version":56348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.241.0", + "prefixLen":25, + "network":"193.222.241.0\/25", + "version":56347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.241.0", + "prefixLen":25, + "network":"193.222.241.0\/25", + "version":56347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.241.128", + "prefixLen":25, + "network":"193.222.241.128\/25", + "version":56346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.241.128", + "prefixLen":25, + "network":"193.222.241.128\/25", + "version":56346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.242.0", + "prefixLen":25, + "network":"193.222.242.0\/25", + "version":56345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.242.0", + "prefixLen":25, + "network":"193.222.242.0\/25", + "version":56345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.242.128", + "prefixLen":25, + "network":"193.222.242.128\/25", + "version":56344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.242.128", + "prefixLen":25, + "network":"193.222.242.128\/25", + "version":56344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.243.0", + "prefixLen":25, + "network":"193.222.243.0\/25", + "version":56343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.243.0", + "prefixLen":25, + "network":"193.222.243.0\/25", + "version":56343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.222.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.222.243.128", + "prefixLen":25, + "network":"193.222.243.128\/25", + "version":56342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.222.243.128", + "prefixLen":25, + "network":"193.222.243.128\/25", + "version":56342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64910 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.0.0", + "prefixLen":25, + "network":"193.223.0.0\/25", + "version":56469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.0.0", + "prefixLen":25, + "network":"193.223.0.0\/25", + "version":56469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.0.128", + "prefixLen":25, + "network":"193.223.0.128\/25", + "version":56596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.0.128", + "prefixLen":25, + "network":"193.223.0.128\/25", + "version":56596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.1.0", + "prefixLen":25, + "network":"193.223.1.0\/25", + "version":56595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.1.0", + "prefixLen":25, + "network":"193.223.1.0\/25", + "version":56595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.1.128", + "prefixLen":25, + "network":"193.223.1.128\/25", + "version":56594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.1.128", + "prefixLen":25, + "network":"193.223.1.128\/25", + "version":56594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.2.0", + "prefixLen":25, + "network":"193.223.2.0\/25", + "version":56593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.2.0", + "prefixLen":25, + "network":"193.223.2.0\/25", + "version":56593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.2.128", + "prefixLen":25, + "network":"193.223.2.128\/25", + "version":56592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.2.128", + "prefixLen":25, + "network":"193.223.2.128\/25", + "version":56592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.3.0", + "prefixLen":25, + "network":"193.223.3.0\/25", + "version":56591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.3.0", + "prefixLen":25, + "network":"193.223.3.0\/25", + "version":56591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.3.128", + "prefixLen":25, + "network":"193.223.3.128\/25", + "version":56590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.3.128", + "prefixLen":25, + "network":"193.223.3.128\/25", + "version":56590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.16.0", + "prefixLen":25, + "network":"193.223.16.0\/25", + "version":56589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.16.0", + "prefixLen":25, + "network":"193.223.16.0\/25", + "version":56589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.16.128", + "prefixLen":25, + "network":"193.223.16.128\/25", + "version":56588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.16.128", + "prefixLen":25, + "network":"193.223.16.128\/25", + "version":56588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.17.0", + "prefixLen":25, + "network":"193.223.17.0\/25", + "version":56587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.17.0", + "prefixLen":25, + "network":"193.223.17.0\/25", + "version":56587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.17.128", + "prefixLen":25, + "network":"193.223.17.128\/25", + "version":56586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.17.128", + "prefixLen":25, + "network":"193.223.17.128\/25", + "version":56586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.18.0", + "prefixLen":25, + "network":"193.223.18.0\/25", + "version":56585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.18.0", + "prefixLen":25, + "network":"193.223.18.0\/25", + "version":56585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.18.128", + "prefixLen":25, + "network":"193.223.18.128\/25", + "version":56584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.18.128", + "prefixLen":25, + "network":"193.223.18.128\/25", + "version":56584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.19.0", + "prefixLen":25, + "network":"193.223.19.0\/25", + "version":56583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.19.0", + "prefixLen":25, + "network":"193.223.19.0\/25", + "version":56583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.19.128", + "prefixLen":25, + "network":"193.223.19.128\/25", + "version":56582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.19.128", + "prefixLen":25, + "network":"193.223.19.128\/25", + "version":56582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.32.0", + "prefixLen":25, + "network":"193.223.32.0\/25", + "version":56581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.32.0", + "prefixLen":25, + "network":"193.223.32.0\/25", + "version":56581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.32.128", + "prefixLen":25, + "network":"193.223.32.128\/25", + "version":56580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.32.128", + "prefixLen":25, + "network":"193.223.32.128\/25", + "version":56580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.33.0", + "prefixLen":25, + "network":"193.223.33.0\/25", + "version":56579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.33.0", + "prefixLen":25, + "network":"193.223.33.0\/25", + "version":56579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.33.128", + "prefixLen":25, + "network":"193.223.33.128\/25", + "version":56578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.33.128", + "prefixLen":25, + "network":"193.223.33.128\/25", + "version":56578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.34.0", + "prefixLen":25, + "network":"193.223.34.0\/25", + "version":56577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.34.0", + "prefixLen":25, + "network":"193.223.34.0\/25", + "version":56577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.34.128", + "prefixLen":25, + "network":"193.223.34.128\/25", + "version":56576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.34.128", + "prefixLen":25, + "network":"193.223.34.128\/25", + "version":56576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.35.0", + "prefixLen":25, + "network":"193.223.35.0\/25", + "version":56575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.35.0", + "prefixLen":25, + "network":"193.223.35.0\/25", + "version":56575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.35.128", + "prefixLen":25, + "network":"193.223.35.128\/25", + "version":56574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.35.128", + "prefixLen":25, + "network":"193.223.35.128\/25", + "version":56574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.48.0", + "prefixLen":25, + "network":"193.223.48.0\/25", + "version":56573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.48.0", + "prefixLen":25, + "network":"193.223.48.0\/25", + "version":56573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.48.128", + "prefixLen":25, + "network":"193.223.48.128\/25", + "version":56572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.48.128", + "prefixLen":25, + "network":"193.223.48.128\/25", + "version":56572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.49.0", + "prefixLen":25, + "network":"193.223.49.0\/25", + "version":56571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.49.0", + "prefixLen":25, + "network":"193.223.49.0\/25", + "version":56571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.49.128", + "prefixLen":25, + "network":"193.223.49.128\/25", + "version":56570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.49.128", + "prefixLen":25, + "network":"193.223.49.128\/25", + "version":56570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.50.0", + "prefixLen":25, + "network":"193.223.50.0\/25", + "version":56569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.50.0", + "prefixLen":25, + "network":"193.223.50.0\/25", + "version":56569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.50.128", + "prefixLen":25, + "network":"193.223.50.128\/25", + "version":56568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.50.128", + "prefixLen":25, + "network":"193.223.50.128\/25", + "version":56568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.51.0", + "prefixLen":25, + "network":"193.223.51.0\/25", + "version":56567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.51.0", + "prefixLen":25, + "network":"193.223.51.0\/25", + "version":56567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.51.128", + "prefixLen":25, + "network":"193.223.51.128\/25", + "version":56566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.51.128", + "prefixLen":25, + "network":"193.223.51.128\/25", + "version":56566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.64.0", + "prefixLen":25, + "network":"193.223.64.0\/25", + "version":56565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.64.0", + "prefixLen":25, + "network":"193.223.64.0\/25", + "version":56565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.64.128", + "prefixLen":25, + "network":"193.223.64.128\/25", + "version":56564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.64.128", + "prefixLen":25, + "network":"193.223.64.128\/25", + "version":56564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.65.0", + "prefixLen":25, + "network":"193.223.65.0\/25", + "version":56563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.65.0", + "prefixLen":25, + "network":"193.223.65.0\/25", + "version":56563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.65.128", + "prefixLen":25, + "network":"193.223.65.128\/25", + "version":56562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.65.128", + "prefixLen":25, + "network":"193.223.65.128\/25", + "version":56562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.66.0", + "prefixLen":25, + "network":"193.223.66.0\/25", + "version":56561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.66.0", + "prefixLen":25, + "network":"193.223.66.0\/25", + "version":56561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.66.128", + "prefixLen":25, + "network":"193.223.66.128\/25", + "version":56560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.66.128", + "prefixLen":25, + "network":"193.223.66.128\/25", + "version":56560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.67.0", + "prefixLen":25, + "network":"193.223.67.0\/25", + "version":56559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.67.0", + "prefixLen":25, + "network":"193.223.67.0\/25", + "version":56559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.67.128", + "prefixLen":25, + "network":"193.223.67.128\/25", + "version":56558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.67.128", + "prefixLen":25, + "network":"193.223.67.128\/25", + "version":56558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.80.0", + "prefixLen":25, + "network":"193.223.80.0\/25", + "version":56557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.80.0", + "prefixLen":25, + "network":"193.223.80.0\/25", + "version":56557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.80.128", + "prefixLen":25, + "network":"193.223.80.128\/25", + "version":56556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.80.128", + "prefixLen":25, + "network":"193.223.80.128\/25", + "version":56556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.81.0", + "prefixLen":25, + "network":"193.223.81.0\/25", + "version":56555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.81.0", + "prefixLen":25, + "network":"193.223.81.0\/25", + "version":56555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.81.128", + "prefixLen":25, + "network":"193.223.81.128\/25", + "version":56554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.81.128", + "prefixLen":25, + "network":"193.223.81.128\/25", + "version":56554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.82.0", + "prefixLen":25, + "network":"193.223.82.0\/25", + "version":56553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.82.0", + "prefixLen":25, + "network":"193.223.82.0\/25", + "version":56553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.82.128", + "prefixLen":25, + "network":"193.223.82.128\/25", + "version":56552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.82.128", + "prefixLen":25, + "network":"193.223.82.128\/25", + "version":56552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.83.0", + "prefixLen":25, + "network":"193.223.83.0\/25", + "version":56551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.83.0", + "prefixLen":25, + "network":"193.223.83.0\/25", + "version":56551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.83.128", + "prefixLen":25, + "network":"193.223.83.128\/25", + "version":56550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.83.128", + "prefixLen":25, + "network":"193.223.83.128\/25", + "version":56550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.96.0", + "prefixLen":25, + "network":"193.223.96.0\/25", + "version":56549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.96.0", + "prefixLen":25, + "network":"193.223.96.0\/25", + "version":56549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.96.128", + "prefixLen":25, + "network":"193.223.96.128\/25", + "version":56548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.96.128", + "prefixLen":25, + "network":"193.223.96.128\/25", + "version":56548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.97.0", + "prefixLen":25, + "network":"193.223.97.0\/25", + "version":56547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.97.0", + "prefixLen":25, + "network":"193.223.97.0\/25", + "version":56547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.97.128", + "prefixLen":25, + "network":"193.223.97.128\/25", + "version":56546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.97.128", + "prefixLen":25, + "network":"193.223.97.128\/25", + "version":56546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.98.0", + "prefixLen":25, + "network":"193.223.98.0\/25", + "version":56545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.98.0", + "prefixLen":25, + "network":"193.223.98.0\/25", + "version":56545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.98.128", + "prefixLen":25, + "network":"193.223.98.128\/25", + "version":56544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.98.128", + "prefixLen":25, + "network":"193.223.98.128\/25", + "version":56544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.99.0", + "prefixLen":25, + "network":"193.223.99.0\/25", + "version":56543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.99.0", + "prefixLen":25, + "network":"193.223.99.0\/25", + "version":56543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.99.128", + "prefixLen":25, + "network":"193.223.99.128\/25", + "version":56542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.99.128", + "prefixLen":25, + "network":"193.223.99.128\/25", + "version":56542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.112.0", + "prefixLen":25, + "network":"193.223.112.0\/25", + "version":56541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.112.0", + "prefixLen":25, + "network":"193.223.112.0\/25", + "version":56541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.112.128", + "prefixLen":25, + "network":"193.223.112.128\/25", + "version":56540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.112.128", + "prefixLen":25, + "network":"193.223.112.128\/25", + "version":56540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.113.0", + "prefixLen":25, + "network":"193.223.113.0\/25", + "version":56539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.113.0", + "prefixLen":25, + "network":"193.223.113.0\/25", + "version":56539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.113.128", + "prefixLen":25, + "network":"193.223.113.128\/25", + "version":56538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.113.128", + "prefixLen":25, + "network":"193.223.113.128\/25", + "version":56538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.114.0", + "prefixLen":25, + "network":"193.223.114.0\/25", + "version":56537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.114.0", + "prefixLen":25, + "network":"193.223.114.0\/25", + "version":56537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.114.128", + "prefixLen":25, + "network":"193.223.114.128\/25", + "version":56536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.114.128", + "prefixLen":25, + "network":"193.223.114.128\/25", + "version":56536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.115.0", + "prefixLen":25, + "network":"193.223.115.0\/25", + "version":56535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.115.0", + "prefixLen":25, + "network":"193.223.115.0\/25", + "version":56535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.115.128", + "prefixLen":25, + "network":"193.223.115.128\/25", + "version":56534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.115.128", + "prefixLen":25, + "network":"193.223.115.128\/25", + "version":56534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.128.0", + "prefixLen":25, + "network":"193.223.128.0\/25", + "version":56533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.128.0", + "prefixLen":25, + "network":"193.223.128.0\/25", + "version":56533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.128.128", + "prefixLen":25, + "network":"193.223.128.128\/25", + "version":56532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.128.128", + "prefixLen":25, + "network":"193.223.128.128\/25", + "version":56532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.129.0", + "prefixLen":25, + "network":"193.223.129.0\/25", + "version":56531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.129.0", + "prefixLen":25, + "network":"193.223.129.0\/25", + "version":56531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.129.128", + "prefixLen":25, + "network":"193.223.129.128\/25", + "version":56530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.129.128", + "prefixLen":25, + "network":"193.223.129.128\/25", + "version":56530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.130.0", + "prefixLen":25, + "network":"193.223.130.0\/25", + "version":56529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.130.0", + "prefixLen":25, + "network":"193.223.130.0\/25", + "version":56529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.130.128", + "prefixLen":25, + "network":"193.223.130.128\/25", + "version":56528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.130.128", + "prefixLen":25, + "network":"193.223.130.128\/25", + "version":56528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.131.0", + "prefixLen":25, + "network":"193.223.131.0\/25", + "version":56527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.131.0", + "prefixLen":25, + "network":"193.223.131.0\/25", + "version":56527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.131.128", + "prefixLen":25, + "network":"193.223.131.128\/25", + "version":56526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.131.128", + "prefixLen":25, + "network":"193.223.131.128\/25", + "version":56526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.144.0", + "prefixLen":25, + "network":"193.223.144.0\/25", + "version":56525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.144.0", + "prefixLen":25, + "network":"193.223.144.0\/25", + "version":56525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.144.128", + "prefixLen":25, + "network":"193.223.144.128\/25", + "version":56524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.144.128", + "prefixLen":25, + "network":"193.223.144.128\/25", + "version":56524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.145.0", + "prefixLen":25, + "network":"193.223.145.0\/25", + "version":56523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.145.0", + "prefixLen":25, + "network":"193.223.145.0\/25", + "version":56523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.145.128", + "prefixLen":25, + "network":"193.223.145.128\/25", + "version":56522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.145.128", + "prefixLen":25, + "network":"193.223.145.128\/25", + "version":56522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.146.0", + "prefixLen":25, + "network":"193.223.146.0\/25", + "version":56521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.146.0", + "prefixLen":25, + "network":"193.223.146.0\/25", + "version":56521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.146.128", + "prefixLen":25, + "network":"193.223.146.128\/25", + "version":56520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.146.128", + "prefixLen":25, + "network":"193.223.146.128\/25", + "version":56520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.147.0", + "prefixLen":25, + "network":"193.223.147.0\/25", + "version":56519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.147.0", + "prefixLen":25, + "network":"193.223.147.0\/25", + "version":56519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.147.128", + "prefixLen":25, + "network":"193.223.147.128\/25", + "version":56518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.147.128", + "prefixLen":25, + "network":"193.223.147.128\/25", + "version":56518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.160.0", + "prefixLen":25, + "network":"193.223.160.0\/25", + "version":56517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.160.0", + "prefixLen":25, + "network":"193.223.160.0\/25", + "version":56517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.160.128", + "prefixLen":25, + "network":"193.223.160.128\/25", + "version":56516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.160.128", + "prefixLen":25, + "network":"193.223.160.128\/25", + "version":56516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.161.0", + "prefixLen":25, + "network":"193.223.161.0\/25", + "version":56515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.161.0", + "prefixLen":25, + "network":"193.223.161.0\/25", + "version":56515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.161.128", + "prefixLen":25, + "network":"193.223.161.128\/25", + "version":56514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.161.128", + "prefixLen":25, + "network":"193.223.161.128\/25", + "version":56514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.162.0", + "prefixLen":25, + "network":"193.223.162.0\/25", + "version":56513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.162.0", + "prefixLen":25, + "network":"193.223.162.0\/25", + "version":56513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.162.128", + "prefixLen":25, + "network":"193.223.162.128\/25", + "version":56512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.162.128", + "prefixLen":25, + "network":"193.223.162.128\/25", + "version":56512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.163.0", + "prefixLen":25, + "network":"193.223.163.0\/25", + "version":56511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.163.0", + "prefixLen":25, + "network":"193.223.163.0\/25", + "version":56511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.163.128", + "prefixLen":25, + "network":"193.223.163.128\/25", + "version":56510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.163.128", + "prefixLen":25, + "network":"193.223.163.128\/25", + "version":56510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.176.0", + "prefixLen":25, + "network":"193.223.176.0\/25", + "version":56509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.176.0", + "prefixLen":25, + "network":"193.223.176.0\/25", + "version":56509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.176.128", + "prefixLen":25, + "network":"193.223.176.128\/25", + "version":56508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.176.128", + "prefixLen":25, + "network":"193.223.176.128\/25", + "version":56508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.177.0", + "prefixLen":25, + "network":"193.223.177.0\/25", + "version":56507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.177.0", + "prefixLen":25, + "network":"193.223.177.0\/25", + "version":56507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.177.128", + "prefixLen":25, + "network":"193.223.177.128\/25", + "version":56506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.177.128", + "prefixLen":25, + "network":"193.223.177.128\/25", + "version":56506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.178.0", + "prefixLen":25, + "network":"193.223.178.0\/25", + "version":56505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.178.0", + "prefixLen":25, + "network":"193.223.178.0\/25", + "version":56505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.178.128", + "prefixLen":25, + "network":"193.223.178.128\/25", + "version":56504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.178.128", + "prefixLen":25, + "network":"193.223.178.128\/25", + "version":56504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.179.0", + "prefixLen":25, + "network":"193.223.179.0\/25", + "version":56503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.179.0", + "prefixLen":25, + "network":"193.223.179.0\/25", + "version":56503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.179.128", + "prefixLen":25, + "network":"193.223.179.128\/25", + "version":56502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.179.128", + "prefixLen":25, + "network":"193.223.179.128\/25", + "version":56502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.192.0", + "prefixLen":25, + "network":"193.223.192.0\/25", + "version":56501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.192.0", + "prefixLen":25, + "network":"193.223.192.0\/25", + "version":56501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.192.128", + "prefixLen":25, + "network":"193.223.192.128\/25", + "version":56500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.192.128", + "prefixLen":25, + "network":"193.223.192.128\/25", + "version":56500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.193.0", + "prefixLen":25, + "network":"193.223.193.0\/25", + "version":56499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.193.0", + "prefixLen":25, + "network":"193.223.193.0\/25", + "version":56499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.193.128", + "prefixLen":25, + "network":"193.223.193.128\/25", + "version":56498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.193.128", + "prefixLen":25, + "network":"193.223.193.128\/25", + "version":56498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.194.0", + "prefixLen":25, + "network":"193.223.194.0\/25", + "version":56497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.194.0", + "prefixLen":25, + "network":"193.223.194.0\/25", + "version":56497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.194.128", + "prefixLen":25, + "network":"193.223.194.128\/25", + "version":56496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.194.128", + "prefixLen":25, + "network":"193.223.194.128\/25", + "version":56496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.195.0", + "prefixLen":25, + "network":"193.223.195.0\/25", + "version":56495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.195.0", + "prefixLen":25, + "network":"193.223.195.0\/25", + "version":56495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.195.128", + "prefixLen":25, + "network":"193.223.195.128\/25", + "version":56494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.195.128", + "prefixLen":25, + "network":"193.223.195.128\/25", + "version":56494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.208.0", + "prefixLen":25, + "network":"193.223.208.0\/25", + "version":56493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.208.0", + "prefixLen":25, + "network":"193.223.208.0\/25", + "version":56493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.208.128", + "prefixLen":25, + "network":"193.223.208.128\/25", + "version":56492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.208.128", + "prefixLen":25, + "network":"193.223.208.128\/25", + "version":56492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.209.0", + "prefixLen":25, + "network":"193.223.209.0\/25", + "version":56491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.209.0", + "prefixLen":25, + "network":"193.223.209.0\/25", + "version":56491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.209.128", + "prefixLen":25, + "network":"193.223.209.128\/25", + "version":56490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.209.128", + "prefixLen":25, + "network":"193.223.209.128\/25", + "version":56490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.210.0", + "prefixLen":25, + "network":"193.223.210.0\/25", + "version":56489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.210.0", + "prefixLen":25, + "network":"193.223.210.0\/25", + "version":56489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.210.128", + "prefixLen":25, + "network":"193.223.210.128\/25", + "version":56488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.210.128", + "prefixLen":25, + "network":"193.223.210.128\/25", + "version":56488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.211.0", + "prefixLen":25, + "network":"193.223.211.0\/25", + "version":56487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.211.0", + "prefixLen":25, + "network":"193.223.211.0\/25", + "version":56487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.211.128", + "prefixLen":25, + "network":"193.223.211.128\/25", + "version":56486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.211.128", + "prefixLen":25, + "network":"193.223.211.128\/25", + "version":56486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.224.0", + "prefixLen":25, + "network":"193.223.224.0\/25", + "version":56485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.224.0", + "prefixLen":25, + "network":"193.223.224.0\/25", + "version":56485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.224.128", + "prefixLen":25, + "network":"193.223.224.128\/25", + "version":56484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.224.128", + "prefixLen":25, + "network":"193.223.224.128\/25", + "version":56484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.225.0", + "prefixLen":25, + "network":"193.223.225.0\/25", + "version":56483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.225.0", + "prefixLen":25, + "network":"193.223.225.0\/25", + "version":56483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.225.128", + "prefixLen":25, + "network":"193.223.225.128\/25", + "version":56482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.225.128", + "prefixLen":25, + "network":"193.223.225.128\/25", + "version":56482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.226.0", + "prefixLen":25, + "network":"193.223.226.0\/25", + "version":56481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.226.0", + "prefixLen":25, + "network":"193.223.226.0\/25", + "version":56481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.226.128", + "prefixLen":25, + "network":"193.223.226.128\/25", + "version":56480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.226.128", + "prefixLen":25, + "network":"193.223.226.128\/25", + "version":56480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.227.0", + "prefixLen":25, + "network":"193.223.227.0\/25", + "version":56479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.227.0", + "prefixLen":25, + "network":"193.223.227.0\/25", + "version":56479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.227.128", + "prefixLen":25, + "network":"193.223.227.128\/25", + "version":56478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.227.128", + "prefixLen":25, + "network":"193.223.227.128\/25", + "version":56478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.240.0", + "prefixLen":25, + "network":"193.223.240.0\/25", + "version":56477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.240.0", + "prefixLen":25, + "network":"193.223.240.0\/25", + "version":56477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.240.128", + "prefixLen":25, + "network":"193.223.240.128\/25", + "version":56476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.240.128", + "prefixLen":25, + "network":"193.223.240.128\/25", + "version":56476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.241.0", + "prefixLen":25, + "network":"193.223.241.0\/25", + "version":56475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.241.0", + "prefixLen":25, + "network":"193.223.241.0\/25", + "version":56475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.241.128", + "prefixLen":25, + "network":"193.223.241.128\/25", + "version":56474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.241.128", + "prefixLen":25, + "network":"193.223.241.128\/25", + "version":56474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.242.0", + "prefixLen":25, + "network":"193.223.242.0\/25", + "version":56473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.242.0", + "prefixLen":25, + "network":"193.223.242.0\/25", + "version":56473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.242.128", + "prefixLen":25, + "network":"193.223.242.128\/25", + "version":56472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.242.128", + "prefixLen":25, + "network":"193.223.242.128\/25", + "version":56472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.243.0", + "prefixLen":25, + "network":"193.223.243.0\/25", + "version":56471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.243.0", + "prefixLen":25, + "network":"193.223.243.0\/25", + "version":56471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.223.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.223.243.128", + "prefixLen":25, + "network":"193.223.243.128\/25", + "version":56470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.223.243.128", + "prefixLen":25, + "network":"193.223.243.128\/25", + "version":56470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64911 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.0.0", + "prefixLen":25, + "network":"193.224.0.0\/25", + "version":56597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.0.0", + "prefixLen":25, + "network":"193.224.0.0\/25", + "version":56597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.0.128", + "prefixLen":25, + "network":"193.224.0.128\/25", + "version":56724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.0.128", + "prefixLen":25, + "network":"193.224.0.128\/25", + "version":56724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.1.0", + "prefixLen":25, + "network":"193.224.1.0\/25", + "version":56723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.1.0", + "prefixLen":25, + "network":"193.224.1.0\/25", + "version":56723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.1.128", + "prefixLen":25, + "network":"193.224.1.128\/25", + "version":56722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.1.128", + "prefixLen":25, + "network":"193.224.1.128\/25", + "version":56722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.2.0", + "prefixLen":25, + "network":"193.224.2.0\/25", + "version":56721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.2.0", + "prefixLen":25, + "network":"193.224.2.0\/25", + "version":56721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.2.128", + "prefixLen":25, + "network":"193.224.2.128\/25", + "version":56720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.2.128", + "prefixLen":25, + "network":"193.224.2.128\/25", + "version":56720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.3.0", + "prefixLen":25, + "network":"193.224.3.0\/25", + "version":56719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.3.0", + "prefixLen":25, + "network":"193.224.3.0\/25", + "version":56719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.3.128", + "prefixLen":25, + "network":"193.224.3.128\/25", + "version":56718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.3.128", + "prefixLen":25, + "network":"193.224.3.128\/25", + "version":56718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.16.0", + "prefixLen":25, + "network":"193.224.16.0\/25", + "version":56717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.16.0", + "prefixLen":25, + "network":"193.224.16.0\/25", + "version":56717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.16.128", + "prefixLen":25, + "network":"193.224.16.128\/25", + "version":56716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.16.128", + "prefixLen":25, + "network":"193.224.16.128\/25", + "version":56716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.17.0", + "prefixLen":25, + "network":"193.224.17.0\/25", + "version":56715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.17.0", + "prefixLen":25, + "network":"193.224.17.0\/25", + "version":56715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.17.128", + "prefixLen":25, + "network":"193.224.17.128\/25", + "version":56714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.17.128", + "prefixLen":25, + "network":"193.224.17.128\/25", + "version":56714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.18.0", + "prefixLen":25, + "network":"193.224.18.0\/25", + "version":56713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.18.0", + "prefixLen":25, + "network":"193.224.18.0\/25", + "version":56713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.18.128", + "prefixLen":25, + "network":"193.224.18.128\/25", + "version":56712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.18.128", + "prefixLen":25, + "network":"193.224.18.128\/25", + "version":56712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.19.0", + "prefixLen":25, + "network":"193.224.19.0\/25", + "version":56711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.19.0", + "prefixLen":25, + "network":"193.224.19.0\/25", + "version":56711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.19.128", + "prefixLen":25, + "network":"193.224.19.128\/25", + "version":56710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.19.128", + "prefixLen":25, + "network":"193.224.19.128\/25", + "version":56710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.32.0", + "prefixLen":25, + "network":"193.224.32.0\/25", + "version":56709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.32.0", + "prefixLen":25, + "network":"193.224.32.0\/25", + "version":56709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.32.128", + "prefixLen":25, + "network":"193.224.32.128\/25", + "version":56708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.32.128", + "prefixLen":25, + "network":"193.224.32.128\/25", + "version":56708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.33.0", + "prefixLen":25, + "network":"193.224.33.0\/25", + "version":56707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.33.0", + "prefixLen":25, + "network":"193.224.33.0\/25", + "version":56707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.33.128", + "prefixLen":25, + "network":"193.224.33.128\/25", + "version":56706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.33.128", + "prefixLen":25, + "network":"193.224.33.128\/25", + "version":56706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.34.0", + "prefixLen":25, + "network":"193.224.34.0\/25", + "version":56705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.34.0", + "prefixLen":25, + "network":"193.224.34.0\/25", + "version":56705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.34.128", + "prefixLen":25, + "network":"193.224.34.128\/25", + "version":56704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.34.128", + "prefixLen":25, + "network":"193.224.34.128\/25", + "version":56704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.35.0", + "prefixLen":25, + "network":"193.224.35.0\/25", + "version":56703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.35.0", + "prefixLen":25, + "network":"193.224.35.0\/25", + "version":56703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.35.128", + "prefixLen":25, + "network":"193.224.35.128\/25", + "version":56702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.35.128", + "prefixLen":25, + "network":"193.224.35.128\/25", + "version":56702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.48.0", + "prefixLen":25, + "network":"193.224.48.0\/25", + "version":56701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.48.0", + "prefixLen":25, + "network":"193.224.48.0\/25", + "version":56701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.48.128", + "prefixLen":25, + "network":"193.224.48.128\/25", + "version":56700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.48.128", + "prefixLen":25, + "network":"193.224.48.128\/25", + "version":56700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.49.0", + "prefixLen":25, + "network":"193.224.49.0\/25", + "version":56699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.49.0", + "prefixLen":25, + "network":"193.224.49.0\/25", + "version":56699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.49.128", + "prefixLen":25, + "network":"193.224.49.128\/25", + "version":56698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.49.128", + "prefixLen":25, + "network":"193.224.49.128\/25", + "version":56698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.50.0", + "prefixLen":25, + "network":"193.224.50.0\/25", + "version":56697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.50.0", + "prefixLen":25, + "network":"193.224.50.0\/25", + "version":56697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.50.128", + "prefixLen":25, + "network":"193.224.50.128\/25", + "version":56696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.50.128", + "prefixLen":25, + "network":"193.224.50.128\/25", + "version":56696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.51.0", + "prefixLen":25, + "network":"193.224.51.0\/25", + "version":56695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.51.0", + "prefixLen":25, + "network":"193.224.51.0\/25", + "version":56695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.51.128", + "prefixLen":25, + "network":"193.224.51.128\/25", + "version":56694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.51.128", + "prefixLen":25, + "network":"193.224.51.128\/25", + "version":56694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.64.0", + "prefixLen":25, + "network":"193.224.64.0\/25", + "version":56693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.64.0", + "prefixLen":25, + "network":"193.224.64.0\/25", + "version":56693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.64.128", + "prefixLen":25, + "network":"193.224.64.128\/25", + "version":56692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.64.128", + "prefixLen":25, + "network":"193.224.64.128\/25", + "version":56692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.65.0", + "prefixLen":25, + "network":"193.224.65.0\/25", + "version":56691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.65.0", + "prefixLen":25, + "network":"193.224.65.0\/25", + "version":56691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.65.128", + "prefixLen":25, + "network":"193.224.65.128\/25", + "version":56690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.65.128", + "prefixLen":25, + "network":"193.224.65.128\/25", + "version":56690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.66.0", + "prefixLen":25, + "network":"193.224.66.0\/25", + "version":56689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.66.0", + "prefixLen":25, + "network":"193.224.66.0\/25", + "version":56689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.66.128", + "prefixLen":25, + "network":"193.224.66.128\/25", + "version":56688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.66.128", + "prefixLen":25, + "network":"193.224.66.128\/25", + "version":56688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.67.0", + "prefixLen":25, + "network":"193.224.67.0\/25", + "version":56687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.67.0", + "prefixLen":25, + "network":"193.224.67.0\/25", + "version":56687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.67.128", + "prefixLen":25, + "network":"193.224.67.128\/25", + "version":56686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.67.128", + "prefixLen":25, + "network":"193.224.67.128\/25", + "version":56686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.80.0", + "prefixLen":25, + "network":"193.224.80.0\/25", + "version":56685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.80.0", + "prefixLen":25, + "network":"193.224.80.0\/25", + "version":56685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.80.128", + "prefixLen":25, + "network":"193.224.80.128\/25", + "version":56684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.80.128", + "prefixLen":25, + "network":"193.224.80.128\/25", + "version":56684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.81.0", + "prefixLen":25, + "network":"193.224.81.0\/25", + "version":56683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.81.0", + "prefixLen":25, + "network":"193.224.81.0\/25", + "version":56683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.81.128", + "prefixLen":25, + "network":"193.224.81.128\/25", + "version":56682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.81.128", + "prefixLen":25, + "network":"193.224.81.128\/25", + "version":56682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.82.0", + "prefixLen":25, + "network":"193.224.82.0\/25", + "version":56681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.82.0", + "prefixLen":25, + "network":"193.224.82.0\/25", + "version":56681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.82.128", + "prefixLen":25, + "network":"193.224.82.128\/25", + "version":56680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.82.128", + "prefixLen":25, + "network":"193.224.82.128\/25", + "version":56680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.83.0", + "prefixLen":25, + "network":"193.224.83.0\/25", + "version":56679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.83.0", + "prefixLen":25, + "network":"193.224.83.0\/25", + "version":56679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.83.128", + "prefixLen":25, + "network":"193.224.83.128\/25", + "version":56678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.83.128", + "prefixLen":25, + "network":"193.224.83.128\/25", + "version":56678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.96.0", + "prefixLen":25, + "network":"193.224.96.0\/25", + "version":56677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.96.0", + "prefixLen":25, + "network":"193.224.96.0\/25", + "version":56677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.96.128", + "prefixLen":25, + "network":"193.224.96.128\/25", + "version":56676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.96.128", + "prefixLen":25, + "network":"193.224.96.128\/25", + "version":56676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.97.0", + "prefixLen":25, + "network":"193.224.97.0\/25", + "version":56675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.97.0", + "prefixLen":25, + "network":"193.224.97.0\/25", + "version":56675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.97.128", + "prefixLen":25, + "network":"193.224.97.128\/25", + "version":56674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.97.128", + "prefixLen":25, + "network":"193.224.97.128\/25", + "version":56674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.98.0", + "prefixLen":25, + "network":"193.224.98.0\/25", + "version":56673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.98.0", + "prefixLen":25, + "network":"193.224.98.0\/25", + "version":56673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.98.128", + "prefixLen":25, + "network":"193.224.98.128\/25", + "version":56672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.98.128", + "prefixLen":25, + "network":"193.224.98.128\/25", + "version":56672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.99.0", + "prefixLen":25, + "network":"193.224.99.0\/25", + "version":56671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.99.0", + "prefixLen":25, + "network":"193.224.99.0\/25", + "version":56671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.99.128", + "prefixLen":25, + "network":"193.224.99.128\/25", + "version":56670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.99.128", + "prefixLen":25, + "network":"193.224.99.128\/25", + "version":56670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.112.0", + "prefixLen":25, + "network":"193.224.112.0\/25", + "version":56669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.112.0", + "prefixLen":25, + "network":"193.224.112.0\/25", + "version":56669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.112.128", + "prefixLen":25, + "network":"193.224.112.128\/25", + "version":56668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.112.128", + "prefixLen":25, + "network":"193.224.112.128\/25", + "version":56668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.113.0", + "prefixLen":25, + "network":"193.224.113.0\/25", + "version":56667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.113.0", + "prefixLen":25, + "network":"193.224.113.0\/25", + "version":56667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.113.128", + "prefixLen":25, + "network":"193.224.113.128\/25", + "version":56666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.113.128", + "prefixLen":25, + "network":"193.224.113.128\/25", + "version":56666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.114.0", + "prefixLen":25, + "network":"193.224.114.0\/25", + "version":56665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.114.0", + "prefixLen":25, + "network":"193.224.114.0\/25", + "version":56665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.114.128", + "prefixLen":25, + "network":"193.224.114.128\/25", + "version":56664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.114.128", + "prefixLen":25, + "network":"193.224.114.128\/25", + "version":56664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.115.0", + "prefixLen":25, + "network":"193.224.115.0\/25", + "version":56663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.115.0", + "prefixLen":25, + "network":"193.224.115.0\/25", + "version":56663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.115.128", + "prefixLen":25, + "network":"193.224.115.128\/25", + "version":56662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.115.128", + "prefixLen":25, + "network":"193.224.115.128\/25", + "version":56662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.128.0", + "prefixLen":25, + "network":"193.224.128.0\/25", + "version":56661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.128.0", + "prefixLen":25, + "network":"193.224.128.0\/25", + "version":56661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.128.128", + "prefixLen":25, + "network":"193.224.128.128\/25", + "version":56660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.128.128", + "prefixLen":25, + "network":"193.224.128.128\/25", + "version":56660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.129.0", + "prefixLen":25, + "network":"193.224.129.0\/25", + "version":56659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.129.0", + "prefixLen":25, + "network":"193.224.129.0\/25", + "version":56659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.129.128", + "prefixLen":25, + "network":"193.224.129.128\/25", + "version":56658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.129.128", + "prefixLen":25, + "network":"193.224.129.128\/25", + "version":56658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.130.0", + "prefixLen":25, + "network":"193.224.130.0\/25", + "version":56657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.130.0", + "prefixLen":25, + "network":"193.224.130.0\/25", + "version":56657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.130.128", + "prefixLen":25, + "network":"193.224.130.128\/25", + "version":56656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.130.128", + "prefixLen":25, + "network":"193.224.130.128\/25", + "version":56656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.131.0", + "prefixLen":25, + "network":"193.224.131.0\/25", + "version":56655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.131.0", + "prefixLen":25, + "network":"193.224.131.0\/25", + "version":56655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.131.128", + "prefixLen":25, + "network":"193.224.131.128\/25", + "version":56654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.131.128", + "prefixLen":25, + "network":"193.224.131.128\/25", + "version":56654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.144.0", + "prefixLen":25, + "network":"193.224.144.0\/25", + "version":56653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.144.0", + "prefixLen":25, + "network":"193.224.144.0\/25", + "version":56653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.144.128", + "prefixLen":25, + "network":"193.224.144.128\/25", + "version":56652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.144.128", + "prefixLen":25, + "network":"193.224.144.128\/25", + "version":56652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.145.0", + "prefixLen":25, + "network":"193.224.145.0\/25", + "version":56651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.145.0", + "prefixLen":25, + "network":"193.224.145.0\/25", + "version":56651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.145.128", + "prefixLen":25, + "network":"193.224.145.128\/25", + "version":56650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.145.128", + "prefixLen":25, + "network":"193.224.145.128\/25", + "version":56650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.146.0", + "prefixLen":25, + "network":"193.224.146.0\/25", + "version":56649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.146.0", + "prefixLen":25, + "network":"193.224.146.0\/25", + "version":56649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.146.128", + "prefixLen":25, + "network":"193.224.146.128\/25", + "version":56648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.146.128", + "prefixLen":25, + "network":"193.224.146.128\/25", + "version":56648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.147.0", + "prefixLen":25, + "network":"193.224.147.0\/25", + "version":56647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.147.0", + "prefixLen":25, + "network":"193.224.147.0\/25", + "version":56647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.147.128", + "prefixLen":25, + "network":"193.224.147.128\/25", + "version":56646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.147.128", + "prefixLen":25, + "network":"193.224.147.128\/25", + "version":56646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.160.0", + "prefixLen":25, + "network":"193.224.160.0\/25", + "version":56645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.160.0", + "prefixLen":25, + "network":"193.224.160.0\/25", + "version":56645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.160.128", + "prefixLen":25, + "network":"193.224.160.128\/25", + "version":56644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.160.128", + "prefixLen":25, + "network":"193.224.160.128\/25", + "version":56644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.161.0", + "prefixLen":25, + "network":"193.224.161.0\/25", + "version":56643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.161.0", + "prefixLen":25, + "network":"193.224.161.0\/25", + "version":56643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.161.128", + "prefixLen":25, + "network":"193.224.161.128\/25", + "version":56642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.161.128", + "prefixLen":25, + "network":"193.224.161.128\/25", + "version":56642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.162.0", + "prefixLen":25, + "network":"193.224.162.0\/25", + "version":56641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.162.0", + "prefixLen":25, + "network":"193.224.162.0\/25", + "version":56641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.162.128", + "prefixLen":25, + "network":"193.224.162.128\/25", + "version":56640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.162.128", + "prefixLen":25, + "network":"193.224.162.128\/25", + "version":56640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.163.0", + "prefixLen":25, + "network":"193.224.163.0\/25", + "version":56639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.163.0", + "prefixLen":25, + "network":"193.224.163.0\/25", + "version":56639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.163.128", + "prefixLen":25, + "network":"193.224.163.128\/25", + "version":56638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.163.128", + "prefixLen":25, + "network":"193.224.163.128\/25", + "version":56638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.176.0", + "prefixLen":25, + "network":"193.224.176.0\/25", + "version":56637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.176.0", + "prefixLen":25, + "network":"193.224.176.0\/25", + "version":56637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.176.128", + "prefixLen":25, + "network":"193.224.176.128\/25", + "version":56636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.176.128", + "prefixLen":25, + "network":"193.224.176.128\/25", + "version":56636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.177.0", + "prefixLen":25, + "network":"193.224.177.0\/25", + "version":56635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.177.0", + "prefixLen":25, + "network":"193.224.177.0\/25", + "version":56635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.177.128", + "prefixLen":25, + "network":"193.224.177.128\/25", + "version":56634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.177.128", + "prefixLen":25, + "network":"193.224.177.128\/25", + "version":56634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.178.0", + "prefixLen":25, + "network":"193.224.178.0\/25", + "version":56633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.178.0", + "prefixLen":25, + "network":"193.224.178.0\/25", + "version":56633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.178.128", + "prefixLen":25, + "network":"193.224.178.128\/25", + "version":56632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.178.128", + "prefixLen":25, + "network":"193.224.178.128\/25", + "version":56632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.179.0", + "prefixLen":25, + "network":"193.224.179.0\/25", + "version":56631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.179.0", + "prefixLen":25, + "network":"193.224.179.0\/25", + "version":56631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.179.128", + "prefixLen":25, + "network":"193.224.179.128\/25", + "version":56630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.179.128", + "prefixLen":25, + "network":"193.224.179.128\/25", + "version":56630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.192.0", + "prefixLen":25, + "network":"193.224.192.0\/25", + "version":56629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.192.0", + "prefixLen":25, + "network":"193.224.192.0\/25", + "version":56629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.192.128", + "prefixLen":25, + "network":"193.224.192.128\/25", + "version":56628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.192.128", + "prefixLen":25, + "network":"193.224.192.128\/25", + "version":56628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.193.0", + "prefixLen":25, + "network":"193.224.193.0\/25", + "version":56627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.193.0", + "prefixLen":25, + "network":"193.224.193.0\/25", + "version":56627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.193.128", + "prefixLen":25, + "network":"193.224.193.128\/25", + "version":56626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.193.128", + "prefixLen":25, + "network":"193.224.193.128\/25", + "version":56626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.194.0", + "prefixLen":25, + "network":"193.224.194.0\/25", + "version":56625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.194.0", + "prefixLen":25, + "network":"193.224.194.0\/25", + "version":56625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.194.128", + "prefixLen":25, + "network":"193.224.194.128\/25", + "version":56624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.194.128", + "prefixLen":25, + "network":"193.224.194.128\/25", + "version":56624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.195.0", + "prefixLen":25, + "network":"193.224.195.0\/25", + "version":56623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.195.0", + "prefixLen":25, + "network":"193.224.195.0\/25", + "version":56623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.195.128", + "prefixLen":25, + "network":"193.224.195.128\/25", + "version":56622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.195.128", + "prefixLen":25, + "network":"193.224.195.128\/25", + "version":56622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.208.0", + "prefixLen":25, + "network":"193.224.208.0\/25", + "version":56621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.208.0", + "prefixLen":25, + "network":"193.224.208.0\/25", + "version":56621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.208.128", + "prefixLen":25, + "network":"193.224.208.128\/25", + "version":56620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.208.128", + "prefixLen":25, + "network":"193.224.208.128\/25", + "version":56620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.209.0", + "prefixLen":25, + "network":"193.224.209.0\/25", + "version":56619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.209.0", + "prefixLen":25, + "network":"193.224.209.0\/25", + "version":56619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.209.128", + "prefixLen":25, + "network":"193.224.209.128\/25", + "version":56618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.209.128", + "prefixLen":25, + "network":"193.224.209.128\/25", + "version":56618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.210.0", + "prefixLen":25, + "network":"193.224.210.0\/25", + "version":56617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.210.0", + "prefixLen":25, + "network":"193.224.210.0\/25", + "version":56617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.210.128", + "prefixLen":25, + "network":"193.224.210.128\/25", + "version":56616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.210.128", + "prefixLen":25, + "network":"193.224.210.128\/25", + "version":56616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.211.0", + "prefixLen":25, + "network":"193.224.211.0\/25", + "version":56615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.211.0", + "prefixLen":25, + "network":"193.224.211.0\/25", + "version":56615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.211.128", + "prefixLen":25, + "network":"193.224.211.128\/25", + "version":56614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.211.128", + "prefixLen":25, + "network":"193.224.211.128\/25", + "version":56614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.224.0", + "prefixLen":25, + "network":"193.224.224.0\/25", + "version":56613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.224.0", + "prefixLen":25, + "network":"193.224.224.0\/25", + "version":56613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.224.128", + "prefixLen":25, + "network":"193.224.224.128\/25", + "version":56612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.224.128", + "prefixLen":25, + "network":"193.224.224.128\/25", + "version":56612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.225.0", + "prefixLen":25, + "network":"193.224.225.0\/25", + "version":56611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.225.0", + "prefixLen":25, + "network":"193.224.225.0\/25", + "version":56611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.225.128", + "prefixLen":25, + "network":"193.224.225.128\/25", + "version":56610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.225.128", + "prefixLen":25, + "network":"193.224.225.128\/25", + "version":56610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.226.0", + "prefixLen":25, + "network":"193.224.226.0\/25", + "version":56609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.226.0", + "prefixLen":25, + "network":"193.224.226.0\/25", + "version":56609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.226.128", + "prefixLen":25, + "network":"193.224.226.128\/25", + "version":56608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.226.128", + "prefixLen":25, + "network":"193.224.226.128\/25", + "version":56608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.227.0", + "prefixLen":25, + "network":"193.224.227.0\/25", + "version":56607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.227.0", + "prefixLen":25, + "network":"193.224.227.0\/25", + "version":56607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.227.128", + "prefixLen":25, + "network":"193.224.227.128\/25", + "version":56606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.227.128", + "prefixLen":25, + "network":"193.224.227.128\/25", + "version":56606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.240.0", + "prefixLen":25, + "network":"193.224.240.0\/25", + "version":56605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.240.0", + "prefixLen":25, + "network":"193.224.240.0\/25", + "version":56605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.240.128", + "prefixLen":25, + "network":"193.224.240.128\/25", + "version":56604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.240.128", + "prefixLen":25, + "network":"193.224.240.128\/25", + "version":56604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.241.0", + "prefixLen":25, + "network":"193.224.241.0\/25", + "version":56603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.241.0", + "prefixLen":25, + "network":"193.224.241.0\/25", + "version":56603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.241.128", + "prefixLen":25, + "network":"193.224.241.128\/25", + "version":56602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.241.128", + "prefixLen":25, + "network":"193.224.241.128\/25", + "version":56602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.242.0", + "prefixLen":25, + "network":"193.224.242.0\/25", + "version":56601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.242.0", + "prefixLen":25, + "network":"193.224.242.0\/25", + "version":56601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.242.128", + "prefixLen":25, + "network":"193.224.242.128\/25", + "version":56600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.242.128", + "prefixLen":25, + "network":"193.224.242.128\/25", + "version":56600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.243.0", + "prefixLen":25, + "network":"193.224.243.0\/25", + "version":56599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.243.0", + "prefixLen":25, + "network":"193.224.243.0\/25", + "version":56599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.224.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.224.243.128", + "prefixLen":25, + "network":"193.224.243.128\/25", + "version":56598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.224.243.128", + "prefixLen":25, + "network":"193.224.243.128\/25", + "version":56598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64912 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.0.0", + "prefixLen":25, + "network":"193.225.0.0\/25", + "version":56725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.0.0", + "prefixLen":25, + "network":"193.225.0.0\/25", + "version":56725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.0.128", + "prefixLen":25, + "network":"193.225.0.128\/25", + "version":56852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.0.128", + "prefixLen":25, + "network":"193.225.0.128\/25", + "version":56852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.1.0", + "prefixLen":25, + "network":"193.225.1.0\/25", + "version":56851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.1.0", + "prefixLen":25, + "network":"193.225.1.0\/25", + "version":56851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.1.128", + "prefixLen":25, + "network":"193.225.1.128\/25", + "version":56850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.1.128", + "prefixLen":25, + "network":"193.225.1.128\/25", + "version":56850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.2.0", + "prefixLen":25, + "network":"193.225.2.0\/25", + "version":56849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.2.0", + "prefixLen":25, + "network":"193.225.2.0\/25", + "version":56849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.2.128", + "prefixLen":25, + "network":"193.225.2.128\/25", + "version":56848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.2.128", + "prefixLen":25, + "network":"193.225.2.128\/25", + "version":56848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.3.0", + "prefixLen":25, + "network":"193.225.3.0\/25", + "version":56847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.3.0", + "prefixLen":25, + "network":"193.225.3.0\/25", + "version":56847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.3.128", + "prefixLen":25, + "network":"193.225.3.128\/25", + "version":56846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.3.128", + "prefixLen":25, + "network":"193.225.3.128\/25", + "version":56846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.16.0", + "prefixLen":25, + "network":"193.225.16.0\/25", + "version":56845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.16.0", + "prefixLen":25, + "network":"193.225.16.0\/25", + "version":56845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.16.128", + "prefixLen":25, + "network":"193.225.16.128\/25", + "version":56844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.16.128", + "prefixLen":25, + "network":"193.225.16.128\/25", + "version":56844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.17.0", + "prefixLen":25, + "network":"193.225.17.0\/25", + "version":56843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.17.0", + "prefixLen":25, + "network":"193.225.17.0\/25", + "version":56843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.17.128", + "prefixLen":25, + "network":"193.225.17.128\/25", + "version":56842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.17.128", + "prefixLen":25, + "network":"193.225.17.128\/25", + "version":56842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.18.0", + "prefixLen":25, + "network":"193.225.18.0\/25", + "version":56841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.18.0", + "prefixLen":25, + "network":"193.225.18.0\/25", + "version":56841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.18.128", + "prefixLen":25, + "network":"193.225.18.128\/25", + "version":56840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.18.128", + "prefixLen":25, + "network":"193.225.18.128\/25", + "version":56840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.19.0", + "prefixLen":25, + "network":"193.225.19.0\/25", + "version":56839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.19.0", + "prefixLen":25, + "network":"193.225.19.0\/25", + "version":56839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.19.128", + "prefixLen":25, + "network":"193.225.19.128\/25", + "version":56838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.19.128", + "prefixLen":25, + "network":"193.225.19.128\/25", + "version":56838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.32.0", + "prefixLen":25, + "network":"193.225.32.0\/25", + "version":56837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.32.0", + "prefixLen":25, + "network":"193.225.32.0\/25", + "version":56837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.32.128", + "prefixLen":25, + "network":"193.225.32.128\/25", + "version":56836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.32.128", + "prefixLen":25, + "network":"193.225.32.128\/25", + "version":56836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.33.0", + "prefixLen":25, + "network":"193.225.33.0\/25", + "version":56835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.33.0", + "prefixLen":25, + "network":"193.225.33.0\/25", + "version":56835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.33.128", + "prefixLen":25, + "network":"193.225.33.128\/25", + "version":56834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.33.128", + "prefixLen":25, + "network":"193.225.33.128\/25", + "version":56834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.34.0", + "prefixLen":25, + "network":"193.225.34.0\/25", + "version":56833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.34.0", + "prefixLen":25, + "network":"193.225.34.0\/25", + "version":56833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.34.128", + "prefixLen":25, + "network":"193.225.34.128\/25", + "version":56832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.34.128", + "prefixLen":25, + "network":"193.225.34.128\/25", + "version":56832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.35.0", + "prefixLen":25, + "network":"193.225.35.0\/25", + "version":56831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.35.0", + "prefixLen":25, + "network":"193.225.35.0\/25", + "version":56831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.35.128", + "prefixLen":25, + "network":"193.225.35.128\/25", + "version":56830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.35.128", + "prefixLen":25, + "network":"193.225.35.128\/25", + "version":56830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.48.0", + "prefixLen":25, + "network":"193.225.48.0\/25", + "version":56829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.48.0", + "prefixLen":25, + "network":"193.225.48.0\/25", + "version":56829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.48.128", + "prefixLen":25, + "network":"193.225.48.128\/25", + "version":56828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.48.128", + "prefixLen":25, + "network":"193.225.48.128\/25", + "version":56828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.49.0", + "prefixLen":25, + "network":"193.225.49.0\/25", + "version":56827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.49.0", + "prefixLen":25, + "network":"193.225.49.0\/25", + "version":56827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.49.128", + "prefixLen":25, + "network":"193.225.49.128\/25", + "version":56826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.49.128", + "prefixLen":25, + "network":"193.225.49.128\/25", + "version":56826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.50.0", + "prefixLen":25, + "network":"193.225.50.0\/25", + "version":56825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.50.0", + "prefixLen":25, + "network":"193.225.50.0\/25", + "version":56825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.50.128", + "prefixLen":25, + "network":"193.225.50.128\/25", + "version":56824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.50.128", + "prefixLen":25, + "network":"193.225.50.128\/25", + "version":56824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.51.0", + "prefixLen":25, + "network":"193.225.51.0\/25", + "version":56823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.51.0", + "prefixLen":25, + "network":"193.225.51.0\/25", + "version":56823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.51.128", + "prefixLen":25, + "network":"193.225.51.128\/25", + "version":56822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.51.128", + "prefixLen":25, + "network":"193.225.51.128\/25", + "version":56822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.64.0", + "prefixLen":25, + "network":"193.225.64.0\/25", + "version":56821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.64.0", + "prefixLen":25, + "network":"193.225.64.0\/25", + "version":56821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.64.128", + "prefixLen":25, + "network":"193.225.64.128\/25", + "version":56820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.64.128", + "prefixLen":25, + "network":"193.225.64.128\/25", + "version":56820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.65.0", + "prefixLen":25, + "network":"193.225.65.0\/25", + "version":56819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.65.0", + "prefixLen":25, + "network":"193.225.65.0\/25", + "version":56819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.65.128", + "prefixLen":25, + "network":"193.225.65.128\/25", + "version":56818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.65.128", + "prefixLen":25, + "network":"193.225.65.128\/25", + "version":56818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.66.0", + "prefixLen":25, + "network":"193.225.66.0\/25", + "version":56817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.66.0", + "prefixLen":25, + "network":"193.225.66.0\/25", + "version":56817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.66.128", + "prefixLen":25, + "network":"193.225.66.128\/25", + "version":56816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.66.128", + "prefixLen":25, + "network":"193.225.66.128\/25", + "version":56816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.67.0", + "prefixLen":25, + "network":"193.225.67.0\/25", + "version":56815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.67.0", + "prefixLen":25, + "network":"193.225.67.0\/25", + "version":56815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.67.128", + "prefixLen":25, + "network":"193.225.67.128\/25", + "version":56814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.67.128", + "prefixLen":25, + "network":"193.225.67.128\/25", + "version":56814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.80.0", + "prefixLen":25, + "network":"193.225.80.0\/25", + "version":56813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.80.0", + "prefixLen":25, + "network":"193.225.80.0\/25", + "version":56813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.80.128", + "prefixLen":25, + "network":"193.225.80.128\/25", + "version":56812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.80.128", + "prefixLen":25, + "network":"193.225.80.128\/25", + "version":56812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.81.0", + "prefixLen":25, + "network":"193.225.81.0\/25", + "version":56811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.81.0", + "prefixLen":25, + "network":"193.225.81.0\/25", + "version":56811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.81.128", + "prefixLen":25, + "network":"193.225.81.128\/25", + "version":56810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.81.128", + "prefixLen":25, + "network":"193.225.81.128\/25", + "version":56810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.82.0", + "prefixLen":25, + "network":"193.225.82.0\/25", + "version":56809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.82.0", + "prefixLen":25, + "network":"193.225.82.0\/25", + "version":56809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.82.128", + "prefixLen":25, + "network":"193.225.82.128\/25", + "version":56808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.82.128", + "prefixLen":25, + "network":"193.225.82.128\/25", + "version":56808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.83.0", + "prefixLen":25, + "network":"193.225.83.0\/25", + "version":56807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.83.0", + "prefixLen":25, + "network":"193.225.83.0\/25", + "version":56807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.83.128", + "prefixLen":25, + "network":"193.225.83.128\/25", + "version":56806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.83.128", + "prefixLen":25, + "network":"193.225.83.128\/25", + "version":56806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.96.0", + "prefixLen":25, + "network":"193.225.96.0\/25", + "version":56805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.96.0", + "prefixLen":25, + "network":"193.225.96.0\/25", + "version":56805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.96.128", + "prefixLen":25, + "network":"193.225.96.128\/25", + "version":56804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.96.128", + "prefixLen":25, + "network":"193.225.96.128\/25", + "version":56804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.97.0", + "prefixLen":25, + "network":"193.225.97.0\/25", + "version":56803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.97.0", + "prefixLen":25, + "network":"193.225.97.0\/25", + "version":56803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.97.128", + "prefixLen":25, + "network":"193.225.97.128\/25", + "version":56802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.97.128", + "prefixLen":25, + "network":"193.225.97.128\/25", + "version":56802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.98.0", + "prefixLen":25, + "network":"193.225.98.0\/25", + "version":56801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.98.0", + "prefixLen":25, + "network":"193.225.98.0\/25", + "version":56801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.98.128", + "prefixLen":25, + "network":"193.225.98.128\/25", + "version":56800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.98.128", + "prefixLen":25, + "network":"193.225.98.128\/25", + "version":56800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.99.0", + "prefixLen":25, + "network":"193.225.99.0\/25", + "version":56799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.99.0", + "prefixLen":25, + "network":"193.225.99.0\/25", + "version":56799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.99.128", + "prefixLen":25, + "network":"193.225.99.128\/25", + "version":56798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.99.128", + "prefixLen":25, + "network":"193.225.99.128\/25", + "version":56798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.112.0", + "prefixLen":25, + "network":"193.225.112.0\/25", + "version":56797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.112.0", + "prefixLen":25, + "network":"193.225.112.0\/25", + "version":56797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.112.128", + "prefixLen":25, + "network":"193.225.112.128\/25", + "version":56796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.112.128", + "prefixLen":25, + "network":"193.225.112.128\/25", + "version":56796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.113.0", + "prefixLen":25, + "network":"193.225.113.0\/25", + "version":56795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.113.0", + "prefixLen":25, + "network":"193.225.113.0\/25", + "version":56795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.113.128", + "prefixLen":25, + "network":"193.225.113.128\/25", + "version":56794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.113.128", + "prefixLen":25, + "network":"193.225.113.128\/25", + "version":56794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.114.0", + "prefixLen":25, + "network":"193.225.114.0\/25", + "version":56793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.114.0", + "prefixLen":25, + "network":"193.225.114.0\/25", + "version":56793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.114.128", + "prefixLen":25, + "network":"193.225.114.128\/25", + "version":56792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.114.128", + "prefixLen":25, + "network":"193.225.114.128\/25", + "version":56792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.115.0", + "prefixLen":25, + "network":"193.225.115.0\/25", + "version":56791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.115.0", + "prefixLen":25, + "network":"193.225.115.0\/25", + "version":56791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.115.128", + "prefixLen":25, + "network":"193.225.115.128\/25", + "version":56790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.115.128", + "prefixLen":25, + "network":"193.225.115.128\/25", + "version":56790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.128.0", + "prefixLen":25, + "network":"193.225.128.0\/25", + "version":56789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.128.0", + "prefixLen":25, + "network":"193.225.128.0\/25", + "version":56789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.128.128", + "prefixLen":25, + "network":"193.225.128.128\/25", + "version":56788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.128.128", + "prefixLen":25, + "network":"193.225.128.128\/25", + "version":56788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.129.0", + "prefixLen":25, + "network":"193.225.129.0\/25", + "version":56787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.129.0", + "prefixLen":25, + "network":"193.225.129.0\/25", + "version":56787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.129.128", + "prefixLen":25, + "network":"193.225.129.128\/25", + "version":56786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.129.128", + "prefixLen":25, + "network":"193.225.129.128\/25", + "version":56786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.130.0", + "prefixLen":25, + "network":"193.225.130.0\/25", + "version":56785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.130.0", + "prefixLen":25, + "network":"193.225.130.0\/25", + "version":56785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.130.128", + "prefixLen":25, + "network":"193.225.130.128\/25", + "version":56784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.130.128", + "prefixLen":25, + "network":"193.225.130.128\/25", + "version":56784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.131.0", + "prefixLen":25, + "network":"193.225.131.0\/25", + "version":56783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.131.0", + "prefixLen":25, + "network":"193.225.131.0\/25", + "version":56783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.131.128", + "prefixLen":25, + "network":"193.225.131.128\/25", + "version":56782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.131.128", + "prefixLen":25, + "network":"193.225.131.128\/25", + "version":56782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.144.0", + "prefixLen":25, + "network":"193.225.144.0\/25", + "version":56781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.144.0", + "prefixLen":25, + "network":"193.225.144.0\/25", + "version":56781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.144.128", + "prefixLen":25, + "network":"193.225.144.128\/25", + "version":56780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.144.128", + "prefixLen":25, + "network":"193.225.144.128\/25", + "version":56780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.145.0", + "prefixLen":25, + "network":"193.225.145.0\/25", + "version":56779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.145.0", + "prefixLen":25, + "network":"193.225.145.0\/25", + "version":56779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.145.128", + "prefixLen":25, + "network":"193.225.145.128\/25", + "version":56778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.145.128", + "prefixLen":25, + "network":"193.225.145.128\/25", + "version":56778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.146.0", + "prefixLen":25, + "network":"193.225.146.0\/25", + "version":56777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.146.0", + "prefixLen":25, + "network":"193.225.146.0\/25", + "version":56777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.146.128", + "prefixLen":25, + "network":"193.225.146.128\/25", + "version":56776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.146.128", + "prefixLen":25, + "network":"193.225.146.128\/25", + "version":56776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.147.0", + "prefixLen":25, + "network":"193.225.147.0\/25", + "version":56775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.147.0", + "prefixLen":25, + "network":"193.225.147.0\/25", + "version":56775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.147.128", + "prefixLen":25, + "network":"193.225.147.128\/25", + "version":56774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.147.128", + "prefixLen":25, + "network":"193.225.147.128\/25", + "version":56774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.160.0", + "prefixLen":25, + "network":"193.225.160.0\/25", + "version":56773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.160.0", + "prefixLen":25, + "network":"193.225.160.0\/25", + "version":56773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.160.128", + "prefixLen":25, + "network":"193.225.160.128\/25", + "version":56772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.160.128", + "prefixLen":25, + "network":"193.225.160.128\/25", + "version":56772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.161.0", + "prefixLen":25, + "network":"193.225.161.0\/25", + "version":56771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.161.0", + "prefixLen":25, + "network":"193.225.161.0\/25", + "version":56771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.161.128", + "prefixLen":25, + "network":"193.225.161.128\/25", + "version":56770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.161.128", + "prefixLen":25, + "network":"193.225.161.128\/25", + "version":56770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.162.0", + "prefixLen":25, + "network":"193.225.162.0\/25", + "version":56769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.162.0", + "prefixLen":25, + "network":"193.225.162.0\/25", + "version":56769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.162.128", + "prefixLen":25, + "network":"193.225.162.128\/25", + "version":56768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.162.128", + "prefixLen":25, + "network":"193.225.162.128\/25", + "version":56768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.163.0", + "prefixLen":25, + "network":"193.225.163.0\/25", + "version":56767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.163.0", + "prefixLen":25, + "network":"193.225.163.0\/25", + "version":56767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.163.128", + "prefixLen":25, + "network":"193.225.163.128\/25", + "version":56766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.163.128", + "prefixLen":25, + "network":"193.225.163.128\/25", + "version":56766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.176.0", + "prefixLen":25, + "network":"193.225.176.0\/25", + "version":56765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.176.0", + "prefixLen":25, + "network":"193.225.176.0\/25", + "version":56765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.176.128", + "prefixLen":25, + "network":"193.225.176.128\/25", + "version":56764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.176.128", + "prefixLen":25, + "network":"193.225.176.128\/25", + "version":56764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.177.0", + "prefixLen":25, + "network":"193.225.177.0\/25", + "version":56763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.177.0", + "prefixLen":25, + "network":"193.225.177.0\/25", + "version":56763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.177.128", + "prefixLen":25, + "network":"193.225.177.128\/25", + "version":56762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.177.128", + "prefixLen":25, + "network":"193.225.177.128\/25", + "version":56762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.178.0", + "prefixLen":25, + "network":"193.225.178.0\/25", + "version":56761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.178.0", + "prefixLen":25, + "network":"193.225.178.0\/25", + "version":56761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.178.128", + "prefixLen":25, + "network":"193.225.178.128\/25", + "version":56760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.178.128", + "prefixLen":25, + "network":"193.225.178.128\/25", + "version":56760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.179.0", + "prefixLen":25, + "network":"193.225.179.0\/25", + "version":56759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.179.0", + "prefixLen":25, + "network":"193.225.179.0\/25", + "version":56759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.179.128", + "prefixLen":25, + "network":"193.225.179.128\/25", + "version":56758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.179.128", + "prefixLen":25, + "network":"193.225.179.128\/25", + "version":56758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.192.0", + "prefixLen":25, + "network":"193.225.192.0\/25", + "version":56757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.192.0", + "prefixLen":25, + "network":"193.225.192.0\/25", + "version":56757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.192.128", + "prefixLen":25, + "network":"193.225.192.128\/25", + "version":56756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.192.128", + "prefixLen":25, + "network":"193.225.192.128\/25", + "version":56756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.193.0", + "prefixLen":25, + "network":"193.225.193.0\/25", + "version":56755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.193.0", + "prefixLen":25, + "network":"193.225.193.0\/25", + "version":56755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.193.128", + "prefixLen":25, + "network":"193.225.193.128\/25", + "version":56754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.193.128", + "prefixLen":25, + "network":"193.225.193.128\/25", + "version":56754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.194.0", + "prefixLen":25, + "network":"193.225.194.0\/25", + "version":56753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.194.0", + "prefixLen":25, + "network":"193.225.194.0\/25", + "version":56753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.194.128", + "prefixLen":25, + "network":"193.225.194.128\/25", + "version":56752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.194.128", + "prefixLen":25, + "network":"193.225.194.128\/25", + "version":56752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.195.0", + "prefixLen":25, + "network":"193.225.195.0\/25", + "version":56751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.195.0", + "prefixLen":25, + "network":"193.225.195.0\/25", + "version":56751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.195.128", + "prefixLen":25, + "network":"193.225.195.128\/25", + "version":56750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.195.128", + "prefixLen":25, + "network":"193.225.195.128\/25", + "version":56750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.208.0", + "prefixLen":25, + "network":"193.225.208.0\/25", + "version":56749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.208.0", + "prefixLen":25, + "network":"193.225.208.0\/25", + "version":56749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.208.128", + "prefixLen":25, + "network":"193.225.208.128\/25", + "version":56748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.208.128", + "prefixLen":25, + "network":"193.225.208.128\/25", + "version":56748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.209.0", + "prefixLen":25, + "network":"193.225.209.0\/25", + "version":56747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.209.0", + "prefixLen":25, + "network":"193.225.209.0\/25", + "version":56747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.209.128", + "prefixLen":25, + "network":"193.225.209.128\/25", + "version":56746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.209.128", + "prefixLen":25, + "network":"193.225.209.128\/25", + "version":56746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.210.0", + "prefixLen":25, + "network":"193.225.210.0\/25", + "version":56745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.210.0", + "prefixLen":25, + "network":"193.225.210.0\/25", + "version":56745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.210.128", + "prefixLen":25, + "network":"193.225.210.128\/25", + "version":56744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.210.128", + "prefixLen":25, + "network":"193.225.210.128\/25", + "version":56744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.211.0", + "prefixLen":25, + "network":"193.225.211.0\/25", + "version":56743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.211.0", + "prefixLen":25, + "network":"193.225.211.0\/25", + "version":56743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.211.128", + "prefixLen":25, + "network":"193.225.211.128\/25", + "version":56742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.211.128", + "prefixLen":25, + "network":"193.225.211.128\/25", + "version":56742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.224.0", + "prefixLen":25, + "network":"193.225.224.0\/25", + "version":56741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.224.0", + "prefixLen":25, + "network":"193.225.224.0\/25", + "version":56741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.224.128", + "prefixLen":25, + "network":"193.225.224.128\/25", + "version":56740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.224.128", + "prefixLen":25, + "network":"193.225.224.128\/25", + "version":56740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.225.0", + "prefixLen":25, + "network":"193.225.225.0\/25", + "version":56739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.225.0", + "prefixLen":25, + "network":"193.225.225.0\/25", + "version":56739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.225.128", + "prefixLen":25, + "network":"193.225.225.128\/25", + "version":56738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.225.128", + "prefixLen":25, + "network":"193.225.225.128\/25", + "version":56738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.226.0", + "prefixLen":25, + "network":"193.225.226.0\/25", + "version":56737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.226.0", + "prefixLen":25, + "network":"193.225.226.0\/25", + "version":56737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.226.128", + "prefixLen":25, + "network":"193.225.226.128\/25", + "version":56736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.226.128", + "prefixLen":25, + "network":"193.225.226.128\/25", + "version":56736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.227.0", + "prefixLen":25, + "network":"193.225.227.0\/25", + "version":56735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.227.0", + "prefixLen":25, + "network":"193.225.227.0\/25", + "version":56735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.227.128", + "prefixLen":25, + "network":"193.225.227.128\/25", + "version":56734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.227.128", + "prefixLen":25, + "network":"193.225.227.128\/25", + "version":56734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.240.0", + "prefixLen":25, + "network":"193.225.240.0\/25", + "version":56733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.240.0", + "prefixLen":25, + "network":"193.225.240.0\/25", + "version":56733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.240.128", + "prefixLen":25, + "network":"193.225.240.128\/25", + "version":56732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.240.128", + "prefixLen":25, + "network":"193.225.240.128\/25", + "version":56732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.241.0", + "prefixLen":25, + "network":"193.225.241.0\/25", + "version":56731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.241.0", + "prefixLen":25, + "network":"193.225.241.0\/25", + "version":56731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.241.128", + "prefixLen":25, + "network":"193.225.241.128\/25", + "version":56730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.241.128", + "prefixLen":25, + "network":"193.225.241.128\/25", + "version":56730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.242.0", + "prefixLen":25, + "network":"193.225.242.0\/25", + "version":56729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.242.0", + "prefixLen":25, + "network":"193.225.242.0\/25", + "version":56729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.242.128", + "prefixLen":25, + "network":"193.225.242.128\/25", + "version":56728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.242.128", + "prefixLen":25, + "network":"193.225.242.128\/25", + "version":56728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.243.0", + "prefixLen":25, + "network":"193.225.243.0\/25", + "version":56727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.243.0", + "prefixLen":25, + "network":"193.225.243.0\/25", + "version":56727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.225.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.225.243.128", + "prefixLen":25, + "network":"193.225.243.128\/25", + "version":56726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.225.243.128", + "prefixLen":25, + "network":"193.225.243.128\/25", + "version":56726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64913 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.0.0", + "prefixLen":25, + "network":"193.226.0.0\/25", + "version":56853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.0.0", + "prefixLen":25, + "network":"193.226.0.0\/25", + "version":56853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.0.128", + "prefixLen":25, + "network":"193.226.0.128\/25", + "version":56980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.0.128", + "prefixLen":25, + "network":"193.226.0.128\/25", + "version":56980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.1.0", + "prefixLen":25, + "network":"193.226.1.0\/25", + "version":56979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.1.0", + "prefixLen":25, + "network":"193.226.1.0\/25", + "version":56979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.1.128", + "prefixLen":25, + "network":"193.226.1.128\/25", + "version":56978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.1.128", + "prefixLen":25, + "network":"193.226.1.128\/25", + "version":56978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.2.0", + "prefixLen":25, + "network":"193.226.2.0\/25", + "version":56977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.2.0", + "prefixLen":25, + "network":"193.226.2.0\/25", + "version":56977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.2.128", + "prefixLen":25, + "network":"193.226.2.128\/25", + "version":56976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.2.128", + "prefixLen":25, + "network":"193.226.2.128\/25", + "version":56976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.3.0", + "prefixLen":25, + "network":"193.226.3.0\/25", + "version":56975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.3.0", + "prefixLen":25, + "network":"193.226.3.0\/25", + "version":56975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.3.128", + "prefixLen":25, + "network":"193.226.3.128\/25", + "version":56974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.3.128", + "prefixLen":25, + "network":"193.226.3.128\/25", + "version":56974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.16.0", + "prefixLen":25, + "network":"193.226.16.0\/25", + "version":56973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.16.0", + "prefixLen":25, + "network":"193.226.16.0\/25", + "version":56973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.16.128", + "prefixLen":25, + "network":"193.226.16.128\/25", + "version":56972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.16.128", + "prefixLen":25, + "network":"193.226.16.128\/25", + "version":56972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.17.0", + "prefixLen":25, + "network":"193.226.17.0\/25", + "version":56971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.17.0", + "prefixLen":25, + "network":"193.226.17.0\/25", + "version":56971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.17.128", + "prefixLen":25, + "network":"193.226.17.128\/25", + "version":56970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.17.128", + "prefixLen":25, + "network":"193.226.17.128\/25", + "version":56970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.18.0", + "prefixLen":25, + "network":"193.226.18.0\/25", + "version":56969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.18.0", + "prefixLen":25, + "network":"193.226.18.0\/25", + "version":56969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.18.128", + "prefixLen":25, + "network":"193.226.18.128\/25", + "version":56968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.18.128", + "prefixLen":25, + "network":"193.226.18.128\/25", + "version":56968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.19.0", + "prefixLen":25, + "network":"193.226.19.0\/25", + "version":56967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.19.0", + "prefixLen":25, + "network":"193.226.19.0\/25", + "version":56967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.19.128", + "prefixLen":25, + "network":"193.226.19.128\/25", + "version":56966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.19.128", + "prefixLen":25, + "network":"193.226.19.128\/25", + "version":56966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.32.0", + "prefixLen":25, + "network":"193.226.32.0\/25", + "version":56965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.32.0", + "prefixLen":25, + "network":"193.226.32.0\/25", + "version":56965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.32.128", + "prefixLen":25, + "network":"193.226.32.128\/25", + "version":56964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.32.128", + "prefixLen":25, + "network":"193.226.32.128\/25", + "version":56964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.33.0", + "prefixLen":25, + "network":"193.226.33.0\/25", + "version":56963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.33.0", + "prefixLen":25, + "network":"193.226.33.0\/25", + "version":56963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.33.128", + "prefixLen":25, + "network":"193.226.33.128\/25", + "version":56962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.33.128", + "prefixLen":25, + "network":"193.226.33.128\/25", + "version":56962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.34.0", + "prefixLen":25, + "network":"193.226.34.0\/25", + "version":56961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.34.0", + "prefixLen":25, + "network":"193.226.34.0\/25", + "version":56961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.34.128", + "prefixLen":25, + "network":"193.226.34.128\/25", + "version":56960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.34.128", + "prefixLen":25, + "network":"193.226.34.128\/25", + "version":56960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.35.0", + "prefixLen":25, + "network":"193.226.35.0\/25", + "version":56959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.35.0", + "prefixLen":25, + "network":"193.226.35.0\/25", + "version":56959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.35.128", + "prefixLen":25, + "network":"193.226.35.128\/25", + "version":56958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.35.128", + "prefixLen":25, + "network":"193.226.35.128\/25", + "version":56958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.48.0", + "prefixLen":25, + "network":"193.226.48.0\/25", + "version":56957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.48.0", + "prefixLen":25, + "network":"193.226.48.0\/25", + "version":56957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.48.128", + "prefixLen":25, + "network":"193.226.48.128\/25", + "version":56956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.48.128", + "prefixLen":25, + "network":"193.226.48.128\/25", + "version":56956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.49.0", + "prefixLen":25, + "network":"193.226.49.0\/25", + "version":56955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.49.0", + "prefixLen":25, + "network":"193.226.49.0\/25", + "version":56955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.49.128", + "prefixLen":25, + "network":"193.226.49.128\/25", + "version":56954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.49.128", + "prefixLen":25, + "network":"193.226.49.128\/25", + "version":56954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.50.0", + "prefixLen":25, + "network":"193.226.50.0\/25", + "version":56953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.50.0", + "prefixLen":25, + "network":"193.226.50.0\/25", + "version":56953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.50.128", + "prefixLen":25, + "network":"193.226.50.128\/25", + "version":56952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.50.128", + "prefixLen":25, + "network":"193.226.50.128\/25", + "version":56952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.51.0", + "prefixLen":25, + "network":"193.226.51.0\/25", + "version":56951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.51.0", + "prefixLen":25, + "network":"193.226.51.0\/25", + "version":56951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.51.128", + "prefixLen":25, + "network":"193.226.51.128\/25", + "version":56950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.51.128", + "prefixLen":25, + "network":"193.226.51.128\/25", + "version":56950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.64.0", + "prefixLen":25, + "network":"193.226.64.0\/25", + "version":56949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.64.0", + "prefixLen":25, + "network":"193.226.64.0\/25", + "version":56949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.64.128", + "prefixLen":25, + "network":"193.226.64.128\/25", + "version":56948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.64.128", + "prefixLen":25, + "network":"193.226.64.128\/25", + "version":56948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.65.0", + "prefixLen":25, + "network":"193.226.65.0\/25", + "version":56947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.65.0", + "prefixLen":25, + "network":"193.226.65.0\/25", + "version":56947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.65.128", + "prefixLen":25, + "network":"193.226.65.128\/25", + "version":56946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.65.128", + "prefixLen":25, + "network":"193.226.65.128\/25", + "version":56946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.66.0", + "prefixLen":25, + "network":"193.226.66.0\/25", + "version":56945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.66.0", + "prefixLen":25, + "network":"193.226.66.0\/25", + "version":56945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.66.128", + "prefixLen":25, + "network":"193.226.66.128\/25", + "version":56944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.66.128", + "prefixLen":25, + "network":"193.226.66.128\/25", + "version":56944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.67.0", + "prefixLen":25, + "network":"193.226.67.0\/25", + "version":56943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.67.0", + "prefixLen":25, + "network":"193.226.67.0\/25", + "version":56943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.67.128", + "prefixLen":25, + "network":"193.226.67.128\/25", + "version":56942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.67.128", + "prefixLen":25, + "network":"193.226.67.128\/25", + "version":56942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.80.0", + "prefixLen":25, + "network":"193.226.80.0\/25", + "version":56941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.80.0", + "prefixLen":25, + "network":"193.226.80.0\/25", + "version":56941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.80.128", + "prefixLen":25, + "network":"193.226.80.128\/25", + "version":56940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.80.128", + "prefixLen":25, + "network":"193.226.80.128\/25", + "version":56940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.81.0", + "prefixLen":25, + "network":"193.226.81.0\/25", + "version":56939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.81.0", + "prefixLen":25, + "network":"193.226.81.0\/25", + "version":56939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.81.128", + "prefixLen":25, + "network":"193.226.81.128\/25", + "version":56938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.81.128", + "prefixLen":25, + "network":"193.226.81.128\/25", + "version":56938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.82.0", + "prefixLen":25, + "network":"193.226.82.0\/25", + "version":56937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.82.0", + "prefixLen":25, + "network":"193.226.82.0\/25", + "version":56937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.82.128", + "prefixLen":25, + "network":"193.226.82.128\/25", + "version":56936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.82.128", + "prefixLen":25, + "network":"193.226.82.128\/25", + "version":56936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.83.0", + "prefixLen":25, + "network":"193.226.83.0\/25", + "version":56935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.83.0", + "prefixLen":25, + "network":"193.226.83.0\/25", + "version":56935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.83.128", + "prefixLen":25, + "network":"193.226.83.128\/25", + "version":56934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.83.128", + "prefixLen":25, + "network":"193.226.83.128\/25", + "version":56934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.96.0", + "prefixLen":25, + "network":"193.226.96.0\/25", + "version":56933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.96.0", + "prefixLen":25, + "network":"193.226.96.0\/25", + "version":56933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.96.128", + "prefixLen":25, + "network":"193.226.96.128\/25", + "version":56932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.96.128", + "prefixLen":25, + "network":"193.226.96.128\/25", + "version":56932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.97.0", + "prefixLen":25, + "network":"193.226.97.0\/25", + "version":56931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.97.0", + "prefixLen":25, + "network":"193.226.97.0\/25", + "version":56931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.97.128", + "prefixLen":25, + "network":"193.226.97.128\/25", + "version":56930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.97.128", + "prefixLen":25, + "network":"193.226.97.128\/25", + "version":56930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.98.0", + "prefixLen":25, + "network":"193.226.98.0\/25", + "version":56929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.98.0", + "prefixLen":25, + "network":"193.226.98.0\/25", + "version":56929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.98.128", + "prefixLen":25, + "network":"193.226.98.128\/25", + "version":56928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.98.128", + "prefixLen":25, + "network":"193.226.98.128\/25", + "version":56928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.99.0", + "prefixLen":25, + "network":"193.226.99.0\/25", + "version":56927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.99.0", + "prefixLen":25, + "network":"193.226.99.0\/25", + "version":56927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.99.128", + "prefixLen":25, + "network":"193.226.99.128\/25", + "version":56926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.99.128", + "prefixLen":25, + "network":"193.226.99.128\/25", + "version":56926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.112.0", + "prefixLen":25, + "network":"193.226.112.0\/25", + "version":56925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.112.0", + "prefixLen":25, + "network":"193.226.112.0\/25", + "version":56925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.112.128", + "prefixLen":25, + "network":"193.226.112.128\/25", + "version":56924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.112.128", + "prefixLen":25, + "network":"193.226.112.128\/25", + "version":56924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.113.0", + "prefixLen":25, + "network":"193.226.113.0\/25", + "version":56923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.113.0", + "prefixLen":25, + "network":"193.226.113.0\/25", + "version":56923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.113.128", + "prefixLen":25, + "network":"193.226.113.128\/25", + "version":56922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.113.128", + "prefixLen":25, + "network":"193.226.113.128\/25", + "version":56922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.114.0", + "prefixLen":25, + "network":"193.226.114.0\/25", + "version":56921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.114.0", + "prefixLen":25, + "network":"193.226.114.0\/25", + "version":56921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.114.128", + "prefixLen":25, + "network":"193.226.114.128\/25", + "version":56920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.114.128", + "prefixLen":25, + "network":"193.226.114.128\/25", + "version":56920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.115.0", + "prefixLen":25, + "network":"193.226.115.0\/25", + "version":56919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.115.0", + "prefixLen":25, + "network":"193.226.115.0\/25", + "version":56919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.115.128", + "prefixLen":25, + "network":"193.226.115.128\/25", + "version":56918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.115.128", + "prefixLen":25, + "network":"193.226.115.128\/25", + "version":56918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.128.0", + "prefixLen":25, + "network":"193.226.128.0\/25", + "version":56917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.128.0", + "prefixLen":25, + "network":"193.226.128.0\/25", + "version":56917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.128.128", + "prefixLen":25, + "network":"193.226.128.128\/25", + "version":56916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.128.128", + "prefixLen":25, + "network":"193.226.128.128\/25", + "version":56916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.129.0", + "prefixLen":25, + "network":"193.226.129.0\/25", + "version":56915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.129.0", + "prefixLen":25, + "network":"193.226.129.0\/25", + "version":56915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.129.128", + "prefixLen":25, + "network":"193.226.129.128\/25", + "version":56914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.129.128", + "prefixLen":25, + "network":"193.226.129.128\/25", + "version":56914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.130.0", + "prefixLen":25, + "network":"193.226.130.0\/25", + "version":56913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.130.0", + "prefixLen":25, + "network":"193.226.130.0\/25", + "version":56913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.130.128", + "prefixLen":25, + "network":"193.226.130.128\/25", + "version":56912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.130.128", + "prefixLen":25, + "network":"193.226.130.128\/25", + "version":56912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.131.0", + "prefixLen":25, + "network":"193.226.131.0\/25", + "version":56911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.131.0", + "prefixLen":25, + "network":"193.226.131.0\/25", + "version":56911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.131.128", + "prefixLen":25, + "network":"193.226.131.128\/25", + "version":56910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.131.128", + "prefixLen":25, + "network":"193.226.131.128\/25", + "version":56910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.144.0", + "prefixLen":25, + "network":"193.226.144.0\/25", + "version":56909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.144.0", + "prefixLen":25, + "network":"193.226.144.0\/25", + "version":56909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.144.128", + "prefixLen":25, + "network":"193.226.144.128\/25", + "version":56908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.144.128", + "prefixLen":25, + "network":"193.226.144.128\/25", + "version":56908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.145.0", + "prefixLen":25, + "network":"193.226.145.0\/25", + "version":56907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.145.0", + "prefixLen":25, + "network":"193.226.145.0\/25", + "version":56907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.145.128", + "prefixLen":25, + "network":"193.226.145.128\/25", + "version":56906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.145.128", + "prefixLen":25, + "network":"193.226.145.128\/25", + "version":56906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.146.0", + "prefixLen":25, + "network":"193.226.146.0\/25", + "version":56905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.146.0", + "prefixLen":25, + "network":"193.226.146.0\/25", + "version":56905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.146.128", + "prefixLen":25, + "network":"193.226.146.128\/25", + "version":56904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.146.128", + "prefixLen":25, + "network":"193.226.146.128\/25", + "version":56904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.147.0", + "prefixLen":25, + "network":"193.226.147.0\/25", + "version":56903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.147.0", + "prefixLen":25, + "network":"193.226.147.0\/25", + "version":56903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.147.128", + "prefixLen":25, + "network":"193.226.147.128\/25", + "version":56902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.147.128", + "prefixLen":25, + "network":"193.226.147.128\/25", + "version":56902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.160.0", + "prefixLen":25, + "network":"193.226.160.0\/25", + "version":56901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.160.0", + "prefixLen":25, + "network":"193.226.160.0\/25", + "version":56901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.160.128", + "prefixLen":25, + "network":"193.226.160.128\/25", + "version":56900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.160.128", + "prefixLen":25, + "network":"193.226.160.128\/25", + "version":56900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.161.0", + "prefixLen":25, + "network":"193.226.161.0\/25", + "version":56899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.161.0", + "prefixLen":25, + "network":"193.226.161.0\/25", + "version":56899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.161.128", + "prefixLen":25, + "network":"193.226.161.128\/25", + "version":56898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.161.128", + "prefixLen":25, + "network":"193.226.161.128\/25", + "version":56898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.162.0", + "prefixLen":25, + "network":"193.226.162.0\/25", + "version":56897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.162.0", + "prefixLen":25, + "network":"193.226.162.0\/25", + "version":56897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.162.128", + "prefixLen":25, + "network":"193.226.162.128\/25", + "version":56896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.162.128", + "prefixLen":25, + "network":"193.226.162.128\/25", + "version":56896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.163.0", + "prefixLen":25, + "network":"193.226.163.0\/25", + "version":56895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.163.0", + "prefixLen":25, + "network":"193.226.163.0\/25", + "version":56895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.163.128", + "prefixLen":25, + "network":"193.226.163.128\/25", + "version":56894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.163.128", + "prefixLen":25, + "network":"193.226.163.128\/25", + "version":56894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.176.0", + "prefixLen":25, + "network":"193.226.176.0\/25", + "version":56893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.176.0", + "prefixLen":25, + "network":"193.226.176.0\/25", + "version":56893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.176.128", + "prefixLen":25, + "network":"193.226.176.128\/25", + "version":56892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.176.128", + "prefixLen":25, + "network":"193.226.176.128\/25", + "version":56892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.177.0", + "prefixLen":25, + "network":"193.226.177.0\/25", + "version":56891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.177.0", + "prefixLen":25, + "network":"193.226.177.0\/25", + "version":56891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.177.128", + "prefixLen":25, + "network":"193.226.177.128\/25", + "version":56890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.177.128", + "prefixLen":25, + "network":"193.226.177.128\/25", + "version":56890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.178.0", + "prefixLen":25, + "network":"193.226.178.0\/25", + "version":56889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.178.0", + "prefixLen":25, + "network":"193.226.178.0\/25", + "version":56889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.178.128", + "prefixLen":25, + "network":"193.226.178.128\/25", + "version":56888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.178.128", + "prefixLen":25, + "network":"193.226.178.128\/25", + "version":56888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.179.0", + "prefixLen":25, + "network":"193.226.179.0\/25", + "version":56887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.179.0", + "prefixLen":25, + "network":"193.226.179.0\/25", + "version":56887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.179.128", + "prefixLen":25, + "network":"193.226.179.128\/25", + "version":56886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.179.128", + "prefixLen":25, + "network":"193.226.179.128\/25", + "version":56886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.192.0", + "prefixLen":25, + "network":"193.226.192.0\/25", + "version":56885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.192.0", + "prefixLen":25, + "network":"193.226.192.0\/25", + "version":56885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.192.128", + "prefixLen":25, + "network":"193.226.192.128\/25", + "version":56884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.192.128", + "prefixLen":25, + "network":"193.226.192.128\/25", + "version":56884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.193.0", + "prefixLen":25, + "network":"193.226.193.0\/25", + "version":56883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.193.0", + "prefixLen":25, + "network":"193.226.193.0\/25", + "version":56883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.193.128", + "prefixLen":25, + "network":"193.226.193.128\/25", + "version":56882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.193.128", + "prefixLen":25, + "network":"193.226.193.128\/25", + "version":56882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.194.0", + "prefixLen":25, + "network":"193.226.194.0\/25", + "version":56881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.194.0", + "prefixLen":25, + "network":"193.226.194.0\/25", + "version":56881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.194.128", + "prefixLen":25, + "network":"193.226.194.128\/25", + "version":56880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.194.128", + "prefixLen":25, + "network":"193.226.194.128\/25", + "version":56880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.195.0", + "prefixLen":25, + "network":"193.226.195.0\/25", + "version":56879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.195.0", + "prefixLen":25, + "network":"193.226.195.0\/25", + "version":56879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.195.128", + "prefixLen":25, + "network":"193.226.195.128\/25", + "version":56878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.195.128", + "prefixLen":25, + "network":"193.226.195.128\/25", + "version":56878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.208.0", + "prefixLen":25, + "network":"193.226.208.0\/25", + "version":56877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.208.0", + "prefixLen":25, + "network":"193.226.208.0\/25", + "version":56877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.208.128", + "prefixLen":25, + "network":"193.226.208.128\/25", + "version":56876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.208.128", + "prefixLen":25, + "network":"193.226.208.128\/25", + "version":56876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.209.0", + "prefixLen":25, + "network":"193.226.209.0\/25", + "version":56875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.209.0", + "prefixLen":25, + "network":"193.226.209.0\/25", + "version":56875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.209.128", + "prefixLen":25, + "network":"193.226.209.128\/25", + "version":56874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.209.128", + "prefixLen":25, + "network":"193.226.209.128\/25", + "version":56874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.210.0", + "prefixLen":25, + "network":"193.226.210.0\/25", + "version":56873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.210.0", + "prefixLen":25, + "network":"193.226.210.0\/25", + "version":56873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.210.128", + "prefixLen":25, + "network":"193.226.210.128\/25", + "version":56872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.210.128", + "prefixLen":25, + "network":"193.226.210.128\/25", + "version":56872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.211.0", + "prefixLen":25, + "network":"193.226.211.0\/25", + "version":56871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.211.0", + "prefixLen":25, + "network":"193.226.211.0\/25", + "version":56871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.211.128", + "prefixLen":25, + "network":"193.226.211.128\/25", + "version":56870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.211.128", + "prefixLen":25, + "network":"193.226.211.128\/25", + "version":56870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.224.0", + "prefixLen":25, + "network":"193.226.224.0\/25", + "version":56869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.224.0", + "prefixLen":25, + "network":"193.226.224.0\/25", + "version":56869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.224.128", + "prefixLen":25, + "network":"193.226.224.128\/25", + "version":56868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.224.128", + "prefixLen":25, + "network":"193.226.224.128\/25", + "version":56868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.225.0", + "prefixLen":25, + "network":"193.226.225.0\/25", + "version":56867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.225.0", + "prefixLen":25, + "network":"193.226.225.0\/25", + "version":56867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.225.128", + "prefixLen":25, + "network":"193.226.225.128\/25", + "version":56866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.225.128", + "prefixLen":25, + "network":"193.226.225.128\/25", + "version":56866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.226.0", + "prefixLen":25, + "network":"193.226.226.0\/25", + "version":56865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.226.0", + "prefixLen":25, + "network":"193.226.226.0\/25", + "version":56865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.226.128", + "prefixLen":25, + "network":"193.226.226.128\/25", + "version":56864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.226.128", + "prefixLen":25, + "network":"193.226.226.128\/25", + "version":56864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.227.0", + "prefixLen":25, + "network":"193.226.227.0\/25", + "version":56863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.227.0", + "prefixLen":25, + "network":"193.226.227.0\/25", + "version":56863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.227.128", + "prefixLen":25, + "network":"193.226.227.128\/25", + "version":56862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.227.128", + "prefixLen":25, + "network":"193.226.227.128\/25", + "version":56862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.240.0", + "prefixLen":25, + "network":"193.226.240.0\/25", + "version":56861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.240.0", + "prefixLen":25, + "network":"193.226.240.0\/25", + "version":56861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.240.128", + "prefixLen":25, + "network":"193.226.240.128\/25", + "version":56860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.240.128", + "prefixLen":25, + "network":"193.226.240.128\/25", + "version":56860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.241.0", + "prefixLen":25, + "network":"193.226.241.0\/25", + "version":56859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.241.0", + "prefixLen":25, + "network":"193.226.241.0\/25", + "version":56859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.241.128", + "prefixLen":25, + "network":"193.226.241.128\/25", + "version":56858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.241.128", + "prefixLen":25, + "network":"193.226.241.128\/25", + "version":56858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.242.0", + "prefixLen":25, + "network":"193.226.242.0\/25", + "version":56857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.242.0", + "prefixLen":25, + "network":"193.226.242.0\/25", + "version":56857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.242.128", + "prefixLen":25, + "network":"193.226.242.128\/25", + "version":56856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.242.128", + "prefixLen":25, + "network":"193.226.242.128\/25", + "version":56856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.243.0", + "prefixLen":25, + "network":"193.226.243.0\/25", + "version":56855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.243.0", + "prefixLen":25, + "network":"193.226.243.0\/25", + "version":56855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.226.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.226.243.128", + "prefixLen":25, + "network":"193.226.243.128\/25", + "version":56854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.226.243.128", + "prefixLen":25, + "network":"193.226.243.128\/25", + "version":56854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64914 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.0.0", + "prefixLen":25, + "network":"193.228.0.0\/25", + "version":56981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.0.0", + "prefixLen":25, + "network":"193.228.0.0\/25", + "version":56981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.0.128", + "prefixLen":25, + "network":"193.228.0.128\/25", + "version":57108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.0.128", + "prefixLen":25, + "network":"193.228.0.128\/25", + "version":57108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.1.0", + "prefixLen":25, + "network":"193.228.1.0\/25", + "version":57107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.1.0", + "prefixLen":25, + "network":"193.228.1.0\/25", + "version":57107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.1.128", + "prefixLen":25, + "network":"193.228.1.128\/25", + "version":57106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.1.128", + "prefixLen":25, + "network":"193.228.1.128\/25", + "version":57106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.2.0", + "prefixLen":25, + "network":"193.228.2.0\/25", + "version":57105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.2.0", + "prefixLen":25, + "network":"193.228.2.0\/25", + "version":57105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.2.128", + "prefixLen":25, + "network":"193.228.2.128\/25", + "version":57104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.2.128", + "prefixLen":25, + "network":"193.228.2.128\/25", + "version":57104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.3.0", + "prefixLen":25, + "network":"193.228.3.0\/25", + "version":57103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.3.0", + "prefixLen":25, + "network":"193.228.3.0\/25", + "version":57103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.3.128", + "prefixLen":25, + "network":"193.228.3.128\/25", + "version":57102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.3.128", + "prefixLen":25, + "network":"193.228.3.128\/25", + "version":57102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.16.0", + "prefixLen":25, + "network":"193.228.16.0\/25", + "version":57101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.16.0", + "prefixLen":25, + "network":"193.228.16.0\/25", + "version":57101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.16.128", + "prefixLen":25, + "network":"193.228.16.128\/25", + "version":57100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.16.128", + "prefixLen":25, + "network":"193.228.16.128\/25", + "version":57100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.17.0", + "prefixLen":25, + "network":"193.228.17.0\/25", + "version":57099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.17.0", + "prefixLen":25, + "network":"193.228.17.0\/25", + "version":57099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.17.128", + "prefixLen":25, + "network":"193.228.17.128\/25", + "version":57098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.17.128", + "prefixLen":25, + "network":"193.228.17.128\/25", + "version":57098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.18.0", + "prefixLen":25, + "network":"193.228.18.0\/25", + "version":57097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.18.0", + "prefixLen":25, + "network":"193.228.18.0\/25", + "version":57097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.18.128", + "prefixLen":25, + "network":"193.228.18.128\/25", + "version":57096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.18.128", + "prefixLen":25, + "network":"193.228.18.128\/25", + "version":57096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.19.0", + "prefixLen":25, + "network":"193.228.19.0\/25", + "version":57095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.19.0", + "prefixLen":25, + "network":"193.228.19.0\/25", + "version":57095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.19.128", + "prefixLen":25, + "network":"193.228.19.128\/25", + "version":57094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.19.128", + "prefixLen":25, + "network":"193.228.19.128\/25", + "version":57094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.32.0", + "prefixLen":25, + "network":"193.228.32.0\/25", + "version":57093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.32.0", + "prefixLen":25, + "network":"193.228.32.0\/25", + "version":57093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.32.128", + "prefixLen":25, + "network":"193.228.32.128\/25", + "version":57092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.32.128", + "prefixLen":25, + "network":"193.228.32.128\/25", + "version":57092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.33.0", + "prefixLen":25, + "network":"193.228.33.0\/25", + "version":57091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.33.0", + "prefixLen":25, + "network":"193.228.33.0\/25", + "version":57091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.33.128", + "prefixLen":25, + "network":"193.228.33.128\/25", + "version":57090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.33.128", + "prefixLen":25, + "network":"193.228.33.128\/25", + "version":57090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.34.0", + "prefixLen":25, + "network":"193.228.34.0\/25", + "version":57089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.34.0", + "prefixLen":25, + "network":"193.228.34.0\/25", + "version":57089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.34.128", + "prefixLen":25, + "network":"193.228.34.128\/25", + "version":57088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.34.128", + "prefixLen":25, + "network":"193.228.34.128\/25", + "version":57088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.35.0", + "prefixLen":25, + "network":"193.228.35.0\/25", + "version":57087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.35.0", + "prefixLen":25, + "network":"193.228.35.0\/25", + "version":57087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.35.128", + "prefixLen":25, + "network":"193.228.35.128\/25", + "version":57086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.35.128", + "prefixLen":25, + "network":"193.228.35.128\/25", + "version":57086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.48.0", + "prefixLen":25, + "network":"193.228.48.0\/25", + "version":57085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.48.0", + "prefixLen":25, + "network":"193.228.48.0\/25", + "version":57085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.48.128", + "prefixLen":25, + "network":"193.228.48.128\/25", + "version":57084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.48.128", + "prefixLen":25, + "network":"193.228.48.128\/25", + "version":57084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.49.0", + "prefixLen":25, + "network":"193.228.49.0\/25", + "version":57083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.49.0", + "prefixLen":25, + "network":"193.228.49.0\/25", + "version":57083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.49.128", + "prefixLen":25, + "network":"193.228.49.128\/25", + "version":57082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.49.128", + "prefixLen":25, + "network":"193.228.49.128\/25", + "version":57082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.50.0", + "prefixLen":25, + "network":"193.228.50.0\/25", + "version":57081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.50.0", + "prefixLen":25, + "network":"193.228.50.0\/25", + "version":57081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.50.128", + "prefixLen":25, + "network":"193.228.50.128\/25", + "version":57080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.50.128", + "prefixLen":25, + "network":"193.228.50.128\/25", + "version":57080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.51.0", + "prefixLen":25, + "network":"193.228.51.0\/25", + "version":57079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.51.0", + "prefixLen":25, + "network":"193.228.51.0\/25", + "version":57079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.51.128", + "prefixLen":25, + "network":"193.228.51.128\/25", + "version":57078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.51.128", + "prefixLen":25, + "network":"193.228.51.128\/25", + "version":57078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.64.0", + "prefixLen":25, + "network":"193.228.64.0\/25", + "version":57077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.64.0", + "prefixLen":25, + "network":"193.228.64.0\/25", + "version":57077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.64.128", + "prefixLen":25, + "network":"193.228.64.128\/25", + "version":57076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.64.128", + "prefixLen":25, + "network":"193.228.64.128\/25", + "version":57076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.65.0", + "prefixLen":25, + "network":"193.228.65.0\/25", + "version":57075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.65.0", + "prefixLen":25, + "network":"193.228.65.0\/25", + "version":57075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.65.128", + "prefixLen":25, + "network":"193.228.65.128\/25", + "version":57074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.65.128", + "prefixLen":25, + "network":"193.228.65.128\/25", + "version":57074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.66.0", + "prefixLen":25, + "network":"193.228.66.0\/25", + "version":57073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.66.0", + "prefixLen":25, + "network":"193.228.66.0\/25", + "version":57073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.66.128", + "prefixLen":25, + "network":"193.228.66.128\/25", + "version":57072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.66.128", + "prefixLen":25, + "network":"193.228.66.128\/25", + "version":57072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.67.0", + "prefixLen":25, + "network":"193.228.67.0\/25", + "version":57071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.67.0", + "prefixLen":25, + "network":"193.228.67.0\/25", + "version":57071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.67.128", + "prefixLen":25, + "network":"193.228.67.128\/25", + "version":57070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.67.128", + "prefixLen":25, + "network":"193.228.67.128\/25", + "version":57070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.80.0", + "prefixLen":25, + "network":"193.228.80.0\/25", + "version":57069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.80.0", + "prefixLen":25, + "network":"193.228.80.0\/25", + "version":57069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.80.128", + "prefixLen":25, + "network":"193.228.80.128\/25", + "version":57068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.80.128", + "prefixLen":25, + "network":"193.228.80.128\/25", + "version":57068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.81.0", + "prefixLen":25, + "network":"193.228.81.0\/25", + "version":57067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.81.0", + "prefixLen":25, + "network":"193.228.81.0\/25", + "version":57067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.81.128", + "prefixLen":25, + "network":"193.228.81.128\/25", + "version":57066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.81.128", + "prefixLen":25, + "network":"193.228.81.128\/25", + "version":57066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.82.0", + "prefixLen":25, + "network":"193.228.82.0\/25", + "version":57065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.82.0", + "prefixLen":25, + "network":"193.228.82.0\/25", + "version":57065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.82.128", + "prefixLen":25, + "network":"193.228.82.128\/25", + "version":57064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.82.128", + "prefixLen":25, + "network":"193.228.82.128\/25", + "version":57064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.83.0", + "prefixLen":25, + "network":"193.228.83.0\/25", + "version":57063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.83.0", + "prefixLen":25, + "network":"193.228.83.0\/25", + "version":57063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.83.128", + "prefixLen":25, + "network":"193.228.83.128\/25", + "version":57062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.83.128", + "prefixLen":25, + "network":"193.228.83.128\/25", + "version":57062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.96.0", + "prefixLen":25, + "network":"193.228.96.0\/25", + "version":57061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.96.0", + "prefixLen":25, + "network":"193.228.96.0\/25", + "version":57061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.96.128", + "prefixLen":25, + "network":"193.228.96.128\/25", + "version":57060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.96.128", + "prefixLen":25, + "network":"193.228.96.128\/25", + "version":57060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.97.0", + "prefixLen":25, + "network":"193.228.97.0\/25", + "version":57059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.97.0", + "prefixLen":25, + "network":"193.228.97.0\/25", + "version":57059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.97.128", + "prefixLen":25, + "network":"193.228.97.128\/25", + "version":57058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.97.128", + "prefixLen":25, + "network":"193.228.97.128\/25", + "version":57058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.98.0", + "prefixLen":25, + "network":"193.228.98.0\/25", + "version":57057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.98.0", + "prefixLen":25, + "network":"193.228.98.0\/25", + "version":57057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.98.128", + "prefixLen":25, + "network":"193.228.98.128\/25", + "version":57056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.98.128", + "prefixLen":25, + "network":"193.228.98.128\/25", + "version":57056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.99.0", + "prefixLen":25, + "network":"193.228.99.0\/25", + "version":57055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.99.0", + "prefixLen":25, + "network":"193.228.99.0\/25", + "version":57055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.99.128", + "prefixLen":25, + "network":"193.228.99.128\/25", + "version":57054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.99.128", + "prefixLen":25, + "network":"193.228.99.128\/25", + "version":57054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.112.0", + "prefixLen":25, + "network":"193.228.112.0\/25", + "version":57053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.112.0", + "prefixLen":25, + "network":"193.228.112.0\/25", + "version":57053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.112.128", + "prefixLen":25, + "network":"193.228.112.128\/25", + "version":57052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.112.128", + "prefixLen":25, + "network":"193.228.112.128\/25", + "version":57052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.113.0", + "prefixLen":25, + "network":"193.228.113.0\/25", + "version":57051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.113.0", + "prefixLen":25, + "network":"193.228.113.0\/25", + "version":57051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.113.128", + "prefixLen":25, + "network":"193.228.113.128\/25", + "version":57050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.113.128", + "prefixLen":25, + "network":"193.228.113.128\/25", + "version":57050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.114.0", + "prefixLen":25, + "network":"193.228.114.0\/25", + "version":57049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.114.0", + "prefixLen":25, + "network":"193.228.114.0\/25", + "version":57049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.114.128", + "prefixLen":25, + "network":"193.228.114.128\/25", + "version":57048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.114.128", + "prefixLen":25, + "network":"193.228.114.128\/25", + "version":57048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.115.0", + "prefixLen":25, + "network":"193.228.115.0\/25", + "version":57047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.115.0", + "prefixLen":25, + "network":"193.228.115.0\/25", + "version":57047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.115.128", + "prefixLen":25, + "network":"193.228.115.128\/25", + "version":57046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.115.128", + "prefixLen":25, + "network":"193.228.115.128\/25", + "version":57046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.128.0", + "prefixLen":25, + "network":"193.228.128.0\/25", + "version":57045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.128.0", + "prefixLen":25, + "network":"193.228.128.0\/25", + "version":57045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.128.128", + "prefixLen":25, + "network":"193.228.128.128\/25", + "version":57044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.128.128", + "prefixLen":25, + "network":"193.228.128.128\/25", + "version":57044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.129.0", + "prefixLen":25, + "network":"193.228.129.0\/25", + "version":57043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.129.0", + "prefixLen":25, + "network":"193.228.129.0\/25", + "version":57043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.129.128", + "prefixLen":25, + "network":"193.228.129.128\/25", + "version":57042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.129.128", + "prefixLen":25, + "network":"193.228.129.128\/25", + "version":57042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.130.0", + "prefixLen":25, + "network":"193.228.130.0\/25", + "version":57041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.130.0", + "prefixLen":25, + "network":"193.228.130.0\/25", + "version":57041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.130.128", + "prefixLen":25, + "network":"193.228.130.128\/25", + "version":57040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.130.128", + "prefixLen":25, + "network":"193.228.130.128\/25", + "version":57040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.131.0", + "prefixLen":25, + "network":"193.228.131.0\/25", + "version":57039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.131.0", + "prefixLen":25, + "network":"193.228.131.0\/25", + "version":57039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.131.128", + "prefixLen":25, + "network":"193.228.131.128\/25", + "version":57038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.131.128", + "prefixLen":25, + "network":"193.228.131.128\/25", + "version":57038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.144.0", + "prefixLen":25, + "network":"193.228.144.0\/25", + "version":57037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.144.0", + "prefixLen":25, + "network":"193.228.144.0\/25", + "version":57037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.144.128", + "prefixLen":25, + "network":"193.228.144.128\/25", + "version":57036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.144.128", + "prefixLen":25, + "network":"193.228.144.128\/25", + "version":57036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.145.0", + "prefixLen":25, + "network":"193.228.145.0\/25", + "version":57035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.145.0", + "prefixLen":25, + "network":"193.228.145.0\/25", + "version":57035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.145.128", + "prefixLen":25, + "network":"193.228.145.128\/25", + "version":57034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.145.128", + "prefixLen":25, + "network":"193.228.145.128\/25", + "version":57034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.146.0", + "prefixLen":25, + "network":"193.228.146.0\/25", + "version":57033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.146.0", + "prefixLen":25, + "network":"193.228.146.0\/25", + "version":57033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.146.128", + "prefixLen":25, + "network":"193.228.146.128\/25", + "version":57032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.146.128", + "prefixLen":25, + "network":"193.228.146.128\/25", + "version":57032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.147.0", + "prefixLen":25, + "network":"193.228.147.0\/25", + "version":57031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.147.0", + "prefixLen":25, + "network":"193.228.147.0\/25", + "version":57031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.147.128", + "prefixLen":25, + "network":"193.228.147.128\/25", + "version":57030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.147.128", + "prefixLen":25, + "network":"193.228.147.128\/25", + "version":57030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.160.0", + "prefixLen":25, + "network":"193.228.160.0\/25", + "version":57029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.160.0", + "prefixLen":25, + "network":"193.228.160.0\/25", + "version":57029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.160.128", + "prefixLen":25, + "network":"193.228.160.128\/25", + "version":57028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.160.128", + "prefixLen":25, + "network":"193.228.160.128\/25", + "version":57028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.161.0", + "prefixLen":25, + "network":"193.228.161.0\/25", + "version":57027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.161.0", + "prefixLen":25, + "network":"193.228.161.0\/25", + "version":57027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.161.128", + "prefixLen":25, + "network":"193.228.161.128\/25", + "version":57026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.161.128", + "prefixLen":25, + "network":"193.228.161.128\/25", + "version":57026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.162.0", + "prefixLen":25, + "network":"193.228.162.0\/25", + "version":57025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.162.0", + "prefixLen":25, + "network":"193.228.162.0\/25", + "version":57025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.162.128", + "prefixLen":25, + "network":"193.228.162.128\/25", + "version":57024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.162.128", + "prefixLen":25, + "network":"193.228.162.128\/25", + "version":57024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.163.0", + "prefixLen":25, + "network":"193.228.163.0\/25", + "version":57023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.163.0", + "prefixLen":25, + "network":"193.228.163.0\/25", + "version":57023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.163.128", + "prefixLen":25, + "network":"193.228.163.128\/25", + "version":57022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.163.128", + "prefixLen":25, + "network":"193.228.163.128\/25", + "version":57022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.176.0", + "prefixLen":25, + "network":"193.228.176.0\/25", + "version":57021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.176.0", + "prefixLen":25, + "network":"193.228.176.0\/25", + "version":57021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.176.128", + "prefixLen":25, + "network":"193.228.176.128\/25", + "version":57020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.176.128", + "prefixLen":25, + "network":"193.228.176.128\/25", + "version":57020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.177.0", + "prefixLen":25, + "network":"193.228.177.0\/25", + "version":57019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.177.0", + "prefixLen":25, + "network":"193.228.177.0\/25", + "version":57019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.177.128", + "prefixLen":25, + "network":"193.228.177.128\/25", + "version":57018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.177.128", + "prefixLen":25, + "network":"193.228.177.128\/25", + "version":57018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.178.0", + "prefixLen":25, + "network":"193.228.178.0\/25", + "version":57017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.178.0", + "prefixLen":25, + "network":"193.228.178.0\/25", + "version":57017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.178.128", + "prefixLen":25, + "network":"193.228.178.128\/25", + "version":57016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.178.128", + "prefixLen":25, + "network":"193.228.178.128\/25", + "version":57016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.179.0", + "prefixLen":25, + "network":"193.228.179.0\/25", + "version":57015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.179.0", + "prefixLen":25, + "network":"193.228.179.0\/25", + "version":57015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.179.128", + "prefixLen":25, + "network":"193.228.179.128\/25", + "version":57014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.179.128", + "prefixLen":25, + "network":"193.228.179.128\/25", + "version":57014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.192.0", + "prefixLen":25, + "network":"193.228.192.0\/25", + "version":57013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.192.0", + "prefixLen":25, + "network":"193.228.192.0\/25", + "version":57013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.192.128", + "prefixLen":25, + "network":"193.228.192.128\/25", + "version":57012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.192.128", + "prefixLen":25, + "network":"193.228.192.128\/25", + "version":57012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.193.0", + "prefixLen":25, + "network":"193.228.193.0\/25", + "version":57011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.193.0", + "prefixLen":25, + "network":"193.228.193.0\/25", + "version":57011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.193.128", + "prefixLen":25, + "network":"193.228.193.128\/25", + "version":57010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.193.128", + "prefixLen":25, + "network":"193.228.193.128\/25", + "version":57010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.194.0", + "prefixLen":25, + "network":"193.228.194.0\/25", + "version":57009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.194.0", + "prefixLen":25, + "network":"193.228.194.0\/25", + "version":57009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.194.128", + "prefixLen":25, + "network":"193.228.194.128\/25", + "version":57008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.194.128", + "prefixLen":25, + "network":"193.228.194.128\/25", + "version":57008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.195.0", + "prefixLen":25, + "network":"193.228.195.0\/25", + "version":57007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.195.0", + "prefixLen":25, + "network":"193.228.195.0\/25", + "version":57007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.195.128", + "prefixLen":25, + "network":"193.228.195.128\/25", + "version":57006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.195.128", + "prefixLen":25, + "network":"193.228.195.128\/25", + "version":57006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.208.0", + "prefixLen":25, + "network":"193.228.208.0\/25", + "version":57005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.208.0", + "prefixLen":25, + "network":"193.228.208.0\/25", + "version":57005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.208.128", + "prefixLen":25, + "network":"193.228.208.128\/25", + "version":57004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.208.128", + "prefixLen":25, + "network":"193.228.208.128\/25", + "version":57004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.209.0", + "prefixLen":25, + "network":"193.228.209.0\/25", + "version":57003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.209.0", + "prefixLen":25, + "network":"193.228.209.0\/25", + "version":57003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.209.128", + "prefixLen":25, + "network":"193.228.209.128\/25", + "version":57002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.209.128", + "prefixLen":25, + "network":"193.228.209.128\/25", + "version":57002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.210.0", + "prefixLen":25, + "network":"193.228.210.0\/25", + "version":57001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.210.0", + "prefixLen":25, + "network":"193.228.210.0\/25", + "version":57001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.210.128", + "prefixLen":25, + "network":"193.228.210.128\/25", + "version":57000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.210.128", + "prefixLen":25, + "network":"193.228.210.128\/25", + "version":57000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.211.0", + "prefixLen":25, + "network":"193.228.211.0\/25", + "version":56999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.211.0", + "prefixLen":25, + "network":"193.228.211.0\/25", + "version":56999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.211.128", + "prefixLen":25, + "network":"193.228.211.128\/25", + "version":56998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.211.128", + "prefixLen":25, + "network":"193.228.211.128\/25", + "version":56998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.224.0", + "prefixLen":25, + "network":"193.228.224.0\/25", + "version":56997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.224.0", + "prefixLen":25, + "network":"193.228.224.0\/25", + "version":56997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.224.128", + "prefixLen":25, + "network":"193.228.224.128\/25", + "version":56996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.224.128", + "prefixLen":25, + "network":"193.228.224.128\/25", + "version":56996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.225.0", + "prefixLen":25, + "network":"193.228.225.0\/25", + "version":56995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.225.0", + "prefixLen":25, + "network":"193.228.225.0\/25", + "version":56995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.225.128", + "prefixLen":25, + "network":"193.228.225.128\/25", + "version":56994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.225.128", + "prefixLen":25, + "network":"193.228.225.128\/25", + "version":56994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.226.0", + "prefixLen":25, + "network":"193.228.226.0\/25", + "version":56993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.226.0", + "prefixLen":25, + "network":"193.228.226.0\/25", + "version":56993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.226.128", + "prefixLen":25, + "network":"193.228.226.128\/25", + "version":56992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.226.128", + "prefixLen":25, + "network":"193.228.226.128\/25", + "version":56992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.227.0", + "prefixLen":25, + "network":"193.228.227.0\/25", + "version":56991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.227.0", + "prefixLen":25, + "network":"193.228.227.0\/25", + "version":56991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.227.128", + "prefixLen":25, + "network":"193.228.227.128\/25", + "version":56990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.227.128", + "prefixLen":25, + "network":"193.228.227.128\/25", + "version":56990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.240.0", + "prefixLen":25, + "network":"193.228.240.0\/25", + "version":56989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.240.0", + "prefixLen":25, + "network":"193.228.240.0\/25", + "version":56989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.240.128", + "prefixLen":25, + "network":"193.228.240.128\/25", + "version":56988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.240.128", + "prefixLen":25, + "network":"193.228.240.128\/25", + "version":56988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.241.0", + "prefixLen":25, + "network":"193.228.241.0\/25", + "version":56987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.241.0", + "prefixLen":25, + "network":"193.228.241.0\/25", + "version":56987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.241.128", + "prefixLen":25, + "network":"193.228.241.128\/25", + "version":56986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.241.128", + "prefixLen":25, + "network":"193.228.241.128\/25", + "version":56986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.242.0", + "prefixLen":25, + "network":"193.228.242.0\/25", + "version":56985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.242.0", + "prefixLen":25, + "network":"193.228.242.0\/25", + "version":56985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.242.128", + "prefixLen":25, + "network":"193.228.242.128\/25", + "version":56984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.242.128", + "prefixLen":25, + "network":"193.228.242.128\/25", + "version":56984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.243.0", + "prefixLen":25, + "network":"193.228.243.0\/25", + "version":56983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.243.0", + "prefixLen":25, + "network":"193.228.243.0\/25", + "version":56983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.228.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.228.243.128", + "prefixLen":25, + "network":"193.228.243.128\/25", + "version":56982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.228.243.128", + "prefixLen":25, + "network":"193.228.243.128\/25", + "version":56982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64916 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.0.0", + "prefixLen":25, + "network":"193.229.0.0\/25", + "version":57109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.0.0", + "prefixLen":25, + "network":"193.229.0.0\/25", + "version":57109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.0.128", + "prefixLen":25, + "network":"193.229.0.128\/25", + "version":57236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.0.128", + "prefixLen":25, + "network":"193.229.0.128\/25", + "version":57236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.1.0", + "prefixLen":25, + "network":"193.229.1.0\/25", + "version":57235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.1.0", + "prefixLen":25, + "network":"193.229.1.0\/25", + "version":57235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.1.128", + "prefixLen":25, + "network":"193.229.1.128\/25", + "version":57234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.1.128", + "prefixLen":25, + "network":"193.229.1.128\/25", + "version":57234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.2.0", + "prefixLen":25, + "network":"193.229.2.0\/25", + "version":57233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.2.0", + "prefixLen":25, + "network":"193.229.2.0\/25", + "version":57233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.2.128", + "prefixLen":25, + "network":"193.229.2.128\/25", + "version":57232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.2.128", + "prefixLen":25, + "network":"193.229.2.128\/25", + "version":57232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.3.0", + "prefixLen":25, + "network":"193.229.3.0\/25", + "version":57231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.3.0", + "prefixLen":25, + "network":"193.229.3.0\/25", + "version":57231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.3.128", + "prefixLen":25, + "network":"193.229.3.128\/25", + "version":57230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.3.128", + "prefixLen":25, + "network":"193.229.3.128\/25", + "version":57230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.16.0", + "prefixLen":25, + "network":"193.229.16.0\/25", + "version":57229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.16.0", + "prefixLen":25, + "network":"193.229.16.0\/25", + "version":57229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.16.128", + "prefixLen":25, + "network":"193.229.16.128\/25", + "version":57228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.16.128", + "prefixLen":25, + "network":"193.229.16.128\/25", + "version":57228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.17.0", + "prefixLen":25, + "network":"193.229.17.0\/25", + "version":57227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.17.0", + "prefixLen":25, + "network":"193.229.17.0\/25", + "version":57227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.17.128", + "prefixLen":25, + "network":"193.229.17.128\/25", + "version":57226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.17.128", + "prefixLen":25, + "network":"193.229.17.128\/25", + "version":57226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.18.0", + "prefixLen":25, + "network":"193.229.18.0\/25", + "version":57225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.18.0", + "prefixLen":25, + "network":"193.229.18.0\/25", + "version":57225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.18.128", + "prefixLen":25, + "network":"193.229.18.128\/25", + "version":57224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.18.128", + "prefixLen":25, + "network":"193.229.18.128\/25", + "version":57224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.19.0", + "prefixLen":25, + "network":"193.229.19.0\/25", + "version":57223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.19.0", + "prefixLen":25, + "network":"193.229.19.0\/25", + "version":57223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.19.128", + "prefixLen":25, + "network":"193.229.19.128\/25", + "version":57222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.19.128", + "prefixLen":25, + "network":"193.229.19.128\/25", + "version":57222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.32.0", + "prefixLen":25, + "network":"193.229.32.0\/25", + "version":57221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.32.0", + "prefixLen":25, + "network":"193.229.32.0\/25", + "version":57221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.32.128", + "prefixLen":25, + "network":"193.229.32.128\/25", + "version":57220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.32.128", + "prefixLen":25, + "network":"193.229.32.128\/25", + "version":57220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.33.0", + "prefixLen":25, + "network":"193.229.33.0\/25", + "version":57219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.33.0", + "prefixLen":25, + "network":"193.229.33.0\/25", + "version":57219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.33.128", + "prefixLen":25, + "network":"193.229.33.128\/25", + "version":57218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.33.128", + "prefixLen":25, + "network":"193.229.33.128\/25", + "version":57218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.34.0", + "prefixLen":25, + "network":"193.229.34.0\/25", + "version":57217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.34.0", + "prefixLen":25, + "network":"193.229.34.0\/25", + "version":57217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.34.128", + "prefixLen":25, + "network":"193.229.34.128\/25", + "version":57216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.34.128", + "prefixLen":25, + "network":"193.229.34.128\/25", + "version":57216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.35.0", + "prefixLen":25, + "network":"193.229.35.0\/25", + "version":57215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.35.0", + "prefixLen":25, + "network":"193.229.35.0\/25", + "version":57215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.35.128", + "prefixLen":25, + "network":"193.229.35.128\/25", + "version":57214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.35.128", + "prefixLen":25, + "network":"193.229.35.128\/25", + "version":57214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.48.0", + "prefixLen":25, + "network":"193.229.48.0\/25", + "version":57213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.48.0", + "prefixLen":25, + "network":"193.229.48.0\/25", + "version":57213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.48.128", + "prefixLen":25, + "network":"193.229.48.128\/25", + "version":57212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.48.128", + "prefixLen":25, + "network":"193.229.48.128\/25", + "version":57212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.49.0", + "prefixLen":25, + "network":"193.229.49.0\/25", + "version":57211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.49.0", + "prefixLen":25, + "network":"193.229.49.0\/25", + "version":57211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.49.128", + "prefixLen":25, + "network":"193.229.49.128\/25", + "version":57210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.49.128", + "prefixLen":25, + "network":"193.229.49.128\/25", + "version":57210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.50.0", + "prefixLen":25, + "network":"193.229.50.0\/25", + "version":57209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.50.0", + "prefixLen":25, + "network":"193.229.50.0\/25", + "version":57209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.50.128", + "prefixLen":25, + "network":"193.229.50.128\/25", + "version":57208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.50.128", + "prefixLen":25, + "network":"193.229.50.128\/25", + "version":57208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.51.0", + "prefixLen":25, + "network":"193.229.51.0\/25", + "version":57207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.51.0", + "prefixLen":25, + "network":"193.229.51.0\/25", + "version":57207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.51.128", + "prefixLen":25, + "network":"193.229.51.128\/25", + "version":57206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.51.128", + "prefixLen":25, + "network":"193.229.51.128\/25", + "version":57206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.64.0", + "prefixLen":25, + "network":"193.229.64.0\/25", + "version":57205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.64.0", + "prefixLen":25, + "network":"193.229.64.0\/25", + "version":57205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.64.128", + "prefixLen":25, + "network":"193.229.64.128\/25", + "version":57204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.64.128", + "prefixLen":25, + "network":"193.229.64.128\/25", + "version":57204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.65.0", + "prefixLen":25, + "network":"193.229.65.0\/25", + "version":57203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.65.0", + "prefixLen":25, + "network":"193.229.65.0\/25", + "version":57203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.65.128", + "prefixLen":25, + "network":"193.229.65.128\/25", + "version":57202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.65.128", + "prefixLen":25, + "network":"193.229.65.128\/25", + "version":57202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.66.0", + "prefixLen":25, + "network":"193.229.66.0\/25", + "version":57201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.66.0", + "prefixLen":25, + "network":"193.229.66.0\/25", + "version":57201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.66.128", + "prefixLen":25, + "network":"193.229.66.128\/25", + "version":57200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.66.128", + "prefixLen":25, + "network":"193.229.66.128\/25", + "version":57200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.67.0", + "prefixLen":25, + "network":"193.229.67.0\/25", + "version":57199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.67.0", + "prefixLen":25, + "network":"193.229.67.0\/25", + "version":57199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.67.128", + "prefixLen":25, + "network":"193.229.67.128\/25", + "version":57198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.67.128", + "prefixLen":25, + "network":"193.229.67.128\/25", + "version":57198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.80.0", + "prefixLen":25, + "network":"193.229.80.0\/25", + "version":57197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.80.0", + "prefixLen":25, + "network":"193.229.80.0\/25", + "version":57197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.80.128", + "prefixLen":25, + "network":"193.229.80.128\/25", + "version":57196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.80.128", + "prefixLen":25, + "network":"193.229.80.128\/25", + "version":57196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.81.0", + "prefixLen":25, + "network":"193.229.81.0\/25", + "version":57195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.81.0", + "prefixLen":25, + "network":"193.229.81.0\/25", + "version":57195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.81.128", + "prefixLen":25, + "network":"193.229.81.128\/25", + "version":57194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.81.128", + "prefixLen":25, + "network":"193.229.81.128\/25", + "version":57194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.82.0", + "prefixLen":25, + "network":"193.229.82.0\/25", + "version":57193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.82.0", + "prefixLen":25, + "network":"193.229.82.0\/25", + "version":57193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.82.128", + "prefixLen":25, + "network":"193.229.82.128\/25", + "version":57192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.82.128", + "prefixLen":25, + "network":"193.229.82.128\/25", + "version":57192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.83.0", + "prefixLen":25, + "network":"193.229.83.0\/25", + "version":57191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.83.0", + "prefixLen":25, + "network":"193.229.83.0\/25", + "version":57191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.83.128", + "prefixLen":25, + "network":"193.229.83.128\/25", + "version":57190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.83.128", + "prefixLen":25, + "network":"193.229.83.128\/25", + "version":57190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.96.0", + "prefixLen":25, + "network":"193.229.96.0\/25", + "version":57189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.96.0", + "prefixLen":25, + "network":"193.229.96.0\/25", + "version":57189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.96.128", + "prefixLen":25, + "network":"193.229.96.128\/25", + "version":57188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.96.128", + "prefixLen":25, + "network":"193.229.96.128\/25", + "version":57188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.97.0", + "prefixLen":25, + "network":"193.229.97.0\/25", + "version":57187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.97.0", + "prefixLen":25, + "network":"193.229.97.0\/25", + "version":57187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.97.128", + "prefixLen":25, + "network":"193.229.97.128\/25", + "version":57186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.97.128", + "prefixLen":25, + "network":"193.229.97.128\/25", + "version":57186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.98.0", + "prefixLen":25, + "network":"193.229.98.0\/25", + "version":57185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.98.0", + "prefixLen":25, + "network":"193.229.98.0\/25", + "version":57185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.98.128", + "prefixLen":25, + "network":"193.229.98.128\/25", + "version":57184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.98.128", + "prefixLen":25, + "network":"193.229.98.128\/25", + "version":57184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.99.0", + "prefixLen":25, + "network":"193.229.99.0\/25", + "version":57183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.99.0", + "prefixLen":25, + "network":"193.229.99.0\/25", + "version":57183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.99.128", + "prefixLen":25, + "network":"193.229.99.128\/25", + "version":57182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.99.128", + "prefixLen":25, + "network":"193.229.99.128\/25", + "version":57182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.112.0", + "prefixLen":25, + "network":"193.229.112.0\/25", + "version":57181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.112.0", + "prefixLen":25, + "network":"193.229.112.0\/25", + "version":57181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.112.128", + "prefixLen":25, + "network":"193.229.112.128\/25", + "version":57180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.112.128", + "prefixLen":25, + "network":"193.229.112.128\/25", + "version":57180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.113.0", + "prefixLen":25, + "network":"193.229.113.0\/25", + "version":57179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.113.0", + "prefixLen":25, + "network":"193.229.113.0\/25", + "version":57179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.113.128", + "prefixLen":25, + "network":"193.229.113.128\/25", + "version":57178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.113.128", + "prefixLen":25, + "network":"193.229.113.128\/25", + "version":57178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.114.0", + "prefixLen":25, + "network":"193.229.114.0\/25", + "version":57177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.114.0", + "prefixLen":25, + "network":"193.229.114.0\/25", + "version":57177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.114.128", + "prefixLen":25, + "network":"193.229.114.128\/25", + "version":57176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.114.128", + "prefixLen":25, + "network":"193.229.114.128\/25", + "version":57176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.115.0", + "prefixLen":25, + "network":"193.229.115.0\/25", + "version":57175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.115.0", + "prefixLen":25, + "network":"193.229.115.0\/25", + "version":57175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.115.128", + "prefixLen":25, + "network":"193.229.115.128\/25", + "version":57174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.115.128", + "prefixLen":25, + "network":"193.229.115.128\/25", + "version":57174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.128.0", + "prefixLen":25, + "network":"193.229.128.0\/25", + "version":57173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.128.0", + "prefixLen":25, + "network":"193.229.128.0\/25", + "version":57173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.128.128", + "prefixLen":25, + "network":"193.229.128.128\/25", + "version":57172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.128.128", + "prefixLen":25, + "network":"193.229.128.128\/25", + "version":57172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.129.0", + "prefixLen":25, + "network":"193.229.129.0\/25", + "version":57171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.129.0", + "prefixLen":25, + "network":"193.229.129.0\/25", + "version":57171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.129.128", + "prefixLen":25, + "network":"193.229.129.128\/25", + "version":57170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.129.128", + "prefixLen":25, + "network":"193.229.129.128\/25", + "version":57170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.130.0", + "prefixLen":25, + "network":"193.229.130.0\/25", + "version":57169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.130.0", + "prefixLen":25, + "network":"193.229.130.0\/25", + "version":57169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.130.128", + "prefixLen":25, + "network":"193.229.130.128\/25", + "version":57168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.130.128", + "prefixLen":25, + "network":"193.229.130.128\/25", + "version":57168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.131.0", + "prefixLen":25, + "network":"193.229.131.0\/25", + "version":57167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.131.0", + "prefixLen":25, + "network":"193.229.131.0\/25", + "version":57167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.131.128", + "prefixLen":25, + "network":"193.229.131.128\/25", + "version":57166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.131.128", + "prefixLen":25, + "network":"193.229.131.128\/25", + "version":57166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.144.0", + "prefixLen":25, + "network":"193.229.144.0\/25", + "version":57165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.144.0", + "prefixLen":25, + "network":"193.229.144.0\/25", + "version":57165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.144.128", + "prefixLen":25, + "network":"193.229.144.128\/25", + "version":57164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.144.128", + "prefixLen":25, + "network":"193.229.144.128\/25", + "version":57164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.145.0", + "prefixLen":25, + "network":"193.229.145.0\/25", + "version":57163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.145.0", + "prefixLen":25, + "network":"193.229.145.0\/25", + "version":57163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.145.128", + "prefixLen":25, + "network":"193.229.145.128\/25", + "version":57162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.145.128", + "prefixLen":25, + "network":"193.229.145.128\/25", + "version":57162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.146.0", + "prefixLen":25, + "network":"193.229.146.0\/25", + "version":57161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.146.0", + "prefixLen":25, + "network":"193.229.146.0\/25", + "version":57161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.146.128", + "prefixLen":25, + "network":"193.229.146.128\/25", + "version":57160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.146.128", + "prefixLen":25, + "network":"193.229.146.128\/25", + "version":57160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.147.0", + "prefixLen":25, + "network":"193.229.147.0\/25", + "version":57159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.147.0", + "prefixLen":25, + "network":"193.229.147.0\/25", + "version":57159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.147.128", + "prefixLen":25, + "network":"193.229.147.128\/25", + "version":57158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.147.128", + "prefixLen":25, + "network":"193.229.147.128\/25", + "version":57158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.160.0", + "prefixLen":25, + "network":"193.229.160.0\/25", + "version":57157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.160.0", + "prefixLen":25, + "network":"193.229.160.0\/25", + "version":57157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.160.128", + "prefixLen":25, + "network":"193.229.160.128\/25", + "version":57156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.160.128", + "prefixLen":25, + "network":"193.229.160.128\/25", + "version":57156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.161.0", + "prefixLen":25, + "network":"193.229.161.0\/25", + "version":57155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.161.0", + "prefixLen":25, + "network":"193.229.161.0\/25", + "version":57155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.161.128", + "prefixLen":25, + "network":"193.229.161.128\/25", + "version":57154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.161.128", + "prefixLen":25, + "network":"193.229.161.128\/25", + "version":57154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.162.0", + "prefixLen":25, + "network":"193.229.162.0\/25", + "version":57153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.162.0", + "prefixLen":25, + "network":"193.229.162.0\/25", + "version":57153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.162.128", + "prefixLen":25, + "network":"193.229.162.128\/25", + "version":57152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.162.128", + "prefixLen":25, + "network":"193.229.162.128\/25", + "version":57152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.163.0", + "prefixLen":25, + "network":"193.229.163.0\/25", + "version":57151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.163.0", + "prefixLen":25, + "network":"193.229.163.0\/25", + "version":57151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.163.128", + "prefixLen":25, + "network":"193.229.163.128\/25", + "version":57150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.163.128", + "prefixLen":25, + "network":"193.229.163.128\/25", + "version":57150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.176.0", + "prefixLen":25, + "network":"193.229.176.0\/25", + "version":57149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.176.0", + "prefixLen":25, + "network":"193.229.176.0\/25", + "version":57149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.176.128", + "prefixLen":25, + "network":"193.229.176.128\/25", + "version":57148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.176.128", + "prefixLen":25, + "network":"193.229.176.128\/25", + "version":57148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.177.0", + "prefixLen":25, + "network":"193.229.177.0\/25", + "version":57147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.177.0", + "prefixLen":25, + "network":"193.229.177.0\/25", + "version":57147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.177.128", + "prefixLen":25, + "network":"193.229.177.128\/25", + "version":57146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.177.128", + "prefixLen":25, + "network":"193.229.177.128\/25", + "version":57146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.178.0", + "prefixLen":25, + "network":"193.229.178.0\/25", + "version":57145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.178.0", + "prefixLen":25, + "network":"193.229.178.0\/25", + "version":57145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.178.128", + "prefixLen":25, + "network":"193.229.178.128\/25", + "version":57144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.178.128", + "prefixLen":25, + "network":"193.229.178.128\/25", + "version":57144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.179.0", + "prefixLen":25, + "network":"193.229.179.0\/25", + "version":57143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.179.0", + "prefixLen":25, + "network":"193.229.179.0\/25", + "version":57143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.179.128", + "prefixLen":25, + "network":"193.229.179.128\/25", + "version":57142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.179.128", + "prefixLen":25, + "network":"193.229.179.128\/25", + "version":57142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.192.0", + "prefixLen":25, + "network":"193.229.192.0\/25", + "version":57141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.192.0", + "prefixLen":25, + "network":"193.229.192.0\/25", + "version":57141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.192.128", + "prefixLen":25, + "network":"193.229.192.128\/25", + "version":57140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.192.128", + "prefixLen":25, + "network":"193.229.192.128\/25", + "version":57140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.193.0", + "prefixLen":25, + "network":"193.229.193.0\/25", + "version":57139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.193.0", + "prefixLen":25, + "network":"193.229.193.0\/25", + "version":57139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.193.128", + "prefixLen":25, + "network":"193.229.193.128\/25", + "version":57138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.193.128", + "prefixLen":25, + "network":"193.229.193.128\/25", + "version":57138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.194.0", + "prefixLen":25, + "network":"193.229.194.0\/25", + "version":57137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.194.0", + "prefixLen":25, + "network":"193.229.194.0\/25", + "version":57137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.194.128", + "prefixLen":25, + "network":"193.229.194.128\/25", + "version":57136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.194.128", + "prefixLen":25, + "network":"193.229.194.128\/25", + "version":57136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.195.0", + "prefixLen":25, + "network":"193.229.195.0\/25", + "version":57135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.195.0", + "prefixLen":25, + "network":"193.229.195.0\/25", + "version":57135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.195.128", + "prefixLen":25, + "network":"193.229.195.128\/25", + "version":57134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.195.128", + "prefixLen":25, + "network":"193.229.195.128\/25", + "version":57134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.208.0", + "prefixLen":25, + "network":"193.229.208.0\/25", + "version":57133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.208.0", + "prefixLen":25, + "network":"193.229.208.0\/25", + "version":57133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.208.128", + "prefixLen":25, + "network":"193.229.208.128\/25", + "version":57132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.208.128", + "prefixLen":25, + "network":"193.229.208.128\/25", + "version":57132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.209.0", + "prefixLen":25, + "network":"193.229.209.0\/25", + "version":57131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.209.0", + "prefixLen":25, + "network":"193.229.209.0\/25", + "version":57131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.209.128", + "prefixLen":25, + "network":"193.229.209.128\/25", + "version":57130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.209.128", + "prefixLen":25, + "network":"193.229.209.128\/25", + "version":57130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.210.0", + "prefixLen":25, + "network":"193.229.210.0\/25", + "version":57129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.210.0", + "prefixLen":25, + "network":"193.229.210.0\/25", + "version":57129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.210.128", + "prefixLen":25, + "network":"193.229.210.128\/25", + "version":57128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.210.128", + "prefixLen":25, + "network":"193.229.210.128\/25", + "version":57128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.211.0", + "prefixLen":25, + "network":"193.229.211.0\/25", + "version":57127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.211.0", + "prefixLen":25, + "network":"193.229.211.0\/25", + "version":57127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.211.128", + "prefixLen":25, + "network":"193.229.211.128\/25", + "version":57126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.211.128", + "prefixLen":25, + "network":"193.229.211.128\/25", + "version":57126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.224.0", + "prefixLen":25, + "network":"193.229.224.0\/25", + "version":57125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.224.0", + "prefixLen":25, + "network":"193.229.224.0\/25", + "version":57125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.224.128", + "prefixLen":25, + "network":"193.229.224.128\/25", + "version":57124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.224.128", + "prefixLen":25, + "network":"193.229.224.128\/25", + "version":57124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.225.0", + "prefixLen":25, + "network":"193.229.225.0\/25", + "version":57123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.225.0", + "prefixLen":25, + "network":"193.229.225.0\/25", + "version":57123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.225.128", + "prefixLen":25, + "network":"193.229.225.128\/25", + "version":57122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.225.128", + "prefixLen":25, + "network":"193.229.225.128\/25", + "version":57122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.226.0", + "prefixLen":25, + "network":"193.229.226.0\/25", + "version":57121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.226.0", + "prefixLen":25, + "network":"193.229.226.0\/25", + "version":57121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.226.128", + "prefixLen":25, + "network":"193.229.226.128\/25", + "version":57120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.226.128", + "prefixLen":25, + "network":"193.229.226.128\/25", + "version":57120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.227.0", + "prefixLen":25, + "network":"193.229.227.0\/25", + "version":57119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.227.0", + "prefixLen":25, + "network":"193.229.227.0\/25", + "version":57119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.227.128", + "prefixLen":25, + "network":"193.229.227.128\/25", + "version":57118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.227.128", + "prefixLen":25, + "network":"193.229.227.128\/25", + "version":57118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.240.0", + "prefixLen":25, + "network":"193.229.240.0\/25", + "version":57117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.240.0", + "prefixLen":25, + "network":"193.229.240.0\/25", + "version":57117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.240.128", + "prefixLen":25, + "network":"193.229.240.128\/25", + "version":57116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.240.128", + "prefixLen":25, + "network":"193.229.240.128\/25", + "version":57116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.241.0", + "prefixLen":25, + "network":"193.229.241.0\/25", + "version":57115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.241.0", + "prefixLen":25, + "network":"193.229.241.0\/25", + "version":57115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.241.128", + "prefixLen":25, + "network":"193.229.241.128\/25", + "version":57114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.241.128", + "prefixLen":25, + "network":"193.229.241.128\/25", + "version":57114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.242.0", + "prefixLen":25, + "network":"193.229.242.0\/25", + "version":57113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.242.0", + "prefixLen":25, + "network":"193.229.242.0\/25", + "version":57113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.242.128", + "prefixLen":25, + "network":"193.229.242.128\/25", + "version":57112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.242.128", + "prefixLen":25, + "network":"193.229.242.128\/25", + "version":57112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.243.0", + "prefixLen":25, + "network":"193.229.243.0\/25", + "version":57111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.243.0", + "prefixLen":25, + "network":"193.229.243.0\/25", + "version":57111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.229.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.229.243.128", + "prefixLen":25, + "network":"193.229.243.128\/25", + "version":57110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.229.243.128", + "prefixLen":25, + "network":"193.229.243.128\/25", + "version":57110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64917 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.0.0", + "prefixLen":25, + "network":"193.230.0.0\/25", + "version":57237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.0.0", + "prefixLen":25, + "network":"193.230.0.0\/25", + "version":57237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.0.128", + "prefixLen":25, + "network":"193.230.0.128\/25", + "version":57364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.0.128", + "prefixLen":25, + "network":"193.230.0.128\/25", + "version":57364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.1.0", + "prefixLen":25, + "network":"193.230.1.0\/25", + "version":57363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.1.0", + "prefixLen":25, + "network":"193.230.1.0\/25", + "version":57363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.1.128", + "prefixLen":25, + "network":"193.230.1.128\/25", + "version":57362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.1.128", + "prefixLen":25, + "network":"193.230.1.128\/25", + "version":57362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.2.0", + "prefixLen":25, + "network":"193.230.2.0\/25", + "version":57361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.2.0", + "prefixLen":25, + "network":"193.230.2.0\/25", + "version":57361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.2.128", + "prefixLen":25, + "network":"193.230.2.128\/25", + "version":57360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.2.128", + "prefixLen":25, + "network":"193.230.2.128\/25", + "version":57360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.3.0", + "prefixLen":25, + "network":"193.230.3.0\/25", + "version":57359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.3.0", + "prefixLen":25, + "network":"193.230.3.0\/25", + "version":57359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.3.128", + "prefixLen":25, + "network":"193.230.3.128\/25", + "version":57358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.3.128", + "prefixLen":25, + "network":"193.230.3.128\/25", + "version":57358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.16.0", + "prefixLen":25, + "network":"193.230.16.0\/25", + "version":57357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.16.0", + "prefixLen":25, + "network":"193.230.16.0\/25", + "version":57357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.16.128", + "prefixLen":25, + "network":"193.230.16.128\/25", + "version":57356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.16.128", + "prefixLen":25, + "network":"193.230.16.128\/25", + "version":57356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.17.0", + "prefixLen":25, + "network":"193.230.17.0\/25", + "version":57355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.17.0", + "prefixLen":25, + "network":"193.230.17.0\/25", + "version":57355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.17.128", + "prefixLen":25, + "network":"193.230.17.128\/25", + "version":57354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.17.128", + "prefixLen":25, + "network":"193.230.17.128\/25", + "version":57354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.18.0", + "prefixLen":25, + "network":"193.230.18.0\/25", + "version":57353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.18.0", + "prefixLen":25, + "network":"193.230.18.0\/25", + "version":57353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.18.128", + "prefixLen":25, + "network":"193.230.18.128\/25", + "version":57352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.18.128", + "prefixLen":25, + "network":"193.230.18.128\/25", + "version":57352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.19.0", + "prefixLen":25, + "network":"193.230.19.0\/25", + "version":57351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.19.0", + "prefixLen":25, + "network":"193.230.19.0\/25", + "version":57351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.19.128", + "prefixLen":25, + "network":"193.230.19.128\/25", + "version":57350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.19.128", + "prefixLen":25, + "network":"193.230.19.128\/25", + "version":57350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.32.0", + "prefixLen":25, + "network":"193.230.32.0\/25", + "version":57349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.32.0", + "prefixLen":25, + "network":"193.230.32.0\/25", + "version":57349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.32.128", + "prefixLen":25, + "network":"193.230.32.128\/25", + "version":57348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.32.128", + "prefixLen":25, + "network":"193.230.32.128\/25", + "version":57348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.33.0", + "prefixLen":25, + "network":"193.230.33.0\/25", + "version":57347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.33.0", + "prefixLen":25, + "network":"193.230.33.0\/25", + "version":57347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.33.128", + "prefixLen":25, + "network":"193.230.33.128\/25", + "version":57346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.33.128", + "prefixLen":25, + "network":"193.230.33.128\/25", + "version":57346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.34.0", + "prefixLen":25, + "network":"193.230.34.0\/25", + "version":57345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.34.0", + "prefixLen":25, + "network":"193.230.34.0\/25", + "version":57345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.34.128", + "prefixLen":25, + "network":"193.230.34.128\/25", + "version":57344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.34.128", + "prefixLen":25, + "network":"193.230.34.128\/25", + "version":57344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.35.0", + "prefixLen":25, + "network":"193.230.35.0\/25", + "version":57343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.35.0", + "prefixLen":25, + "network":"193.230.35.0\/25", + "version":57343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.35.128", + "prefixLen":25, + "network":"193.230.35.128\/25", + "version":57342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.35.128", + "prefixLen":25, + "network":"193.230.35.128\/25", + "version":57342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.48.0", + "prefixLen":25, + "network":"193.230.48.0\/25", + "version":57341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.48.0", + "prefixLen":25, + "network":"193.230.48.0\/25", + "version":57341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.48.128", + "prefixLen":25, + "network":"193.230.48.128\/25", + "version":57340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.48.128", + "prefixLen":25, + "network":"193.230.48.128\/25", + "version":57340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.49.0", + "prefixLen":25, + "network":"193.230.49.0\/25", + "version":57339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.49.0", + "prefixLen":25, + "network":"193.230.49.0\/25", + "version":57339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.49.128", + "prefixLen":25, + "network":"193.230.49.128\/25", + "version":57338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.49.128", + "prefixLen":25, + "network":"193.230.49.128\/25", + "version":57338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.50.0", + "prefixLen":25, + "network":"193.230.50.0\/25", + "version":57337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.50.0", + "prefixLen":25, + "network":"193.230.50.0\/25", + "version":57337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.50.128", + "prefixLen":25, + "network":"193.230.50.128\/25", + "version":57336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.50.128", + "prefixLen":25, + "network":"193.230.50.128\/25", + "version":57336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.51.0", + "prefixLen":25, + "network":"193.230.51.0\/25", + "version":57335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.51.0", + "prefixLen":25, + "network":"193.230.51.0\/25", + "version":57335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.51.128", + "prefixLen":25, + "network":"193.230.51.128\/25", + "version":57334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.51.128", + "prefixLen":25, + "network":"193.230.51.128\/25", + "version":57334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.64.0", + "prefixLen":25, + "network":"193.230.64.0\/25", + "version":57333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.64.0", + "prefixLen":25, + "network":"193.230.64.0\/25", + "version":57333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.64.128", + "prefixLen":25, + "network":"193.230.64.128\/25", + "version":57332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.64.128", + "prefixLen":25, + "network":"193.230.64.128\/25", + "version":57332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.65.0", + "prefixLen":25, + "network":"193.230.65.0\/25", + "version":57331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.65.0", + "prefixLen":25, + "network":"193.230.65.0\/25", + "version":57331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.65.128", + "prefixLen":25, + "network":"193.230.65.128\/25", + "version":57330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.65.128", + "prefixLen":25, + "network":"193.230.65.128\/25", + "version":57330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.66.0", + "prefixLen":25, + "network":"193.230.66.0\/25", + "version":57329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.66.0", + "prefixLen":25, + "network":"193.230.66.0\/25", + "version":57329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.66.128", + "prefixLen":25, + "network":"193.230.66.128\/25", + "version":57328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.66.128", + "prefixLen":25, + "network":"193.230.66.128\/25", + "version":57328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.67.0", + "prefixLen":25, + "network":"193.230.67.0\/25", + "version":57327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.67.0", + "prefixLen":25, + "network":"193.230.67.0\/25", + "version":57327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.67.128", + "prefixLen":25, + "network":"193.230.67.128\/25", + "version":57326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.67.128", + "prefixLen":25, + "network":"193.230.67.128\/25", + "version":57326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.80.0", + "prefixLen":25, + "network":"193.230.80.0\/25", + "version":57325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.80.0", + "prefixLen":25, + "network":"193.230.80.0\/25", + "version":57325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.80.128", + "prefixLen":25, + "network":"193.230.80.128\/25", + "version":57324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.80.128", + "prefixLen":25, + "network":"193.230.80.128\/25", + "version":57324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.81.0", + "prefixLen":25, + "network":"193.230.81.0\/25", + "version":57323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.81.0", + "prefixLen":25, + "network":"193.230.81.0\/25", + "version":57323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.81.128", + "prefixLen":25, + "network":"193.230.81.128\/25", + "version":57322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.81.128", + "prefixLen":25, + "network":"193.230.81.128\/25", + "version":57322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.82.0", + "prefixLen":25, + "network":"193.230.82.0\/25", + "version":57321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.82.0", + "prefixLen":25, + "network":"193.230.82.0\/25", + "version":57321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.82.128", + "prefixLen":25, + "network":"193.230.82.128\/25", + "version":57320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.82.128", + "prefixLen":25, + "network":"193.230.82.128\/25", + "version":57320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.83.0", + "prefixLen":25, + "network":"193.230.83.0\/25", + "version":57319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.83.0", + "prefixLen":25, + "network":"193.230.83.0\/25", + "version":57319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.83.128", + "prefixLen":25, + "network":"193.230.83.128\/25", + "version":57318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.83.128", + "prefixLen":25, + "network":"193.230.83.128\/25", + "version":57318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.96.0", + "prefixLen":25, + "network":"193.230.96.0\/25", + "version":57317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.96.0", + "prefixLen":25, + "network":"193.230.96.0\/25", + "version":57317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.96.128", + "prefixLen":25, + "network":"193.230.96.128\/25", + "version":57316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.96.128", + "prefixLen":25, + "network":"193.230.96.128\/25", + "version":57316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.97.0", + "prefixLen":25, + "network":"193.230.97.0\/25", + "version":57315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.97.0", + "prefixLen":25, + "network":"193.230.97.0\/25", + "version":57315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.97.128", + "prefixLen":25, + "network":"193.230.97.128\/25", + "version":57314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.97.128", + "prefixLen":25, + "network":"193.230.97.128\/25", + "version":57314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.98.0", + "prefixLen":25, + "network":"193.230.98.0\/25", + "version":57313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.98.0", + "prefixLen":25, + "network":"193.230.98.0\/25", + "version":57313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.98.128", + "prefixLen":25, + "network":"193.230.98.128\/25", + "version":57312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.98.128", + "prefixLen":25, + "network":"193.230.98.128\/25", + "version":57312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.99.0", + "prefixLen":25, + "network":"193.230.99.0\/25", + "version":57311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.99.0", + "prefixLen":25, + "network":"193.230.99.0\/25", + "version":57311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.99.128", + "prefixLen":25, + "network":"193.230.99.128\/25", + "version":57310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.99.128", + "prefixLen":25, + "network":"193.230.99.128\/25", + "version":57310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.112.0", + "prefixLen":25, + "network":"193.230.112.0\/25", + "version":57309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.112.0", + "prefixLen":25, + "network":"193.230.112.0\/25", + "version":57309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.112.128", + "prefixLen":25, + "network":"193.230.112.128\/25", + "version":57308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.112.128", + "prefixLen":25, + "network":"193.230.112.128\/25", + "version":57308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.113.0", + "prefixLen":25, + "network":"193.230.113.0\/25", + "version":57307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.113.0", + "prefixLen":25, + "network":"193.230.113.0\/25", + "version":57307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.113.128", + "prefixLen":25, + "network":"193.230.113.128\/25", + "version":57306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.113.128", + "prefixLen":25, + "network":"193.230.113.128\/25", + "version":57306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.114.0", + "prefixLen":25, + "network":"193.230.114.0\/25", + "version":57305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.114.0", + "prefixLen":25, + "network":"193.230.114.0\/25", + "version":57305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.114.128", + "prefixLen":25, + "network":"193.230.114.128\/25", + "version":57304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.114.128", + "prefixLen":25, + "network":"193.230.114.128\/25", + "version":57304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.115.0", + "prefixLen":25, + "network":"193.230.115.0\/25", + "version":57303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.115.0", + "prefixLen":25, + "network":"193.230.115.0\/25", + "version":57303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.115.128", + "prefixLen":25, + "network":"193.230.115.128\/25", + "version":57302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.115.128", + "prefixLen":25, + "network":"193.230.115.128\/25", + "version":57302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.128.0", + "prefixLen":25, + "network":"193.230.128.0\/25", + "version":57301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.128.0", + "prefixLen":25, + "network":"193.230.128.0\/25", + "version":57301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.128.128", + "prefixLen":25, + "network":"193.230.128.128\/25", + "version":57300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.128.128", + "prefixLen":25, + "network":"193.230.128.128\/25", + "version":57300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.129.0", + "prefixLen":25, + "network":"193.230.129.0\/25", + "version":57299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.129.0", + "prefixLen":25, + "network":"193.230.129.0\/25", + "version":57299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.129.128", + "prefixLen":25, + "network":"193.230.129.128\/25", + "version":57298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.129.128", + "prefixLen":25, + "network":"193.230.129.128\/25", + "version":57298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.130.0", + "prefixLen":25, + "network":"193.230.130.0\/25", + "version":57297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.130.0", + "prefixLen":25, + "network":"193.230.130.0\/25", + "version":57297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.130.128", + "prefixLen":25, + "network":"193.230.130.128\/25", + "version":57296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.130.128", + "prefixLen":25, + "network":"193.230.130.128\/25", + "version":57296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.131.0", + "prefixLen":25, + "network":"193.230.131.0\/25", + "version":57295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.131.0", + "prefixLen":25, + "network":"193.230.131.0\/25", + "version":57295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.131.128", + "prefixLen":25, + "network":"193.230.131.128\/25", + "version":57294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.131.128", + "prefixLen":25, + "network":"193.230.131.128\/25", + "version":57294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.144.0", + "prefixLen":25, + "network":"193.230.144.0\/25", + "version":57293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.144.0", + "prefixLen":25, + "network":"193.230.144.0\/25", + "version":57293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.144.128", + "prefixLen":25, + "network":"193.230.144.128\/25", + "version":57292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.144.128", + "prefixLen":25, + "network":"193.230.144.128\/25", + "version":57292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.145.0", + "prefixLen":25, + "network":"193.230.145.0\/25", + "version":57291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.145.0", + "prefixLen":25, + "network":"193.230.145.0\/25", + "version":57291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.145.128", + "prefixLen":25, + "network":"193.230.145.128\/25", + "version":57290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.145.128", + "prefixLen":25, + "network":"193.230.145.128\/25", + "version":57290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.146.0", + "prefixLen":25, + "network":"193.230.146.0\/25", + "version":57289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.146.0", + "prefixLen":25, + "network":"193.230.146.0\/25", + "version":57289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.146.128", + "prefixLen":25, + "network":"193.230.146.128\/25", + "version":57288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.146.128", + "prefixLen":25, + "network":"193.230.146.128\/25", + "version":57288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.147.0", + "prefixLen":25, + "network":"193.230.147.0\/25", + "version":57287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.147.0", + "prefixLen":25, + "network":"193.230.147.0\/25", + "version":57287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.147.128", + "prefixLen":25, + "network":"193.230.147.128\/25", + "version":57286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.147.128", + "prefixLen":25, + "network":"193.230.147.128\/25", + "version":57286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.160.0", + "prefixLen":25, + "network":"193.230.160.0\/25", + "version":57285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.160.0", + "prefixLen":25, + "network":"193.230.160.0\/25", + "version":57285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.160.128", + "prefixLen":25, + "network":"193.230.160.128\/25", + "version":57284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.160.128", + "prefixLen":25, + "network":"193.230.160.128\/25", + "version":57284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.161.0", + "prefixLen":25, + "network":"193.230.161.0\/25", + "version":57283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.161.0", + "prefixLen":25, + "network":"193.230.161.0\/25", + "version":57283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.161.128", + "prefixLen":25, + "network":"193.230.161.128\/25", + "version":57282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.161.128", + "prefixLen":25, + "network":"193.230.161.128\/25", + "version":57282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.162.0", + "prefixLen":25, + "network":"193.230.162.0\/25", + "version":57281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.162.0", + "prefixLen":25, + "network":"193.230.162.0\/25", + "version":57281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.162.128", + "prefixLen":25, + "network":"193.230.162.128\/25", + "version":57280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.162.128", + "prefixLen":25, + "network":"193.230.162.128\/25", + "version":57280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.163.0", + "prefixLen":25, + "network":"193.230.163.0\/25", + "version":57279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.163.0", + "prefixLen":25, + "network":"193.230.163.0\/25", + "version":57279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.163.128", + "prefixLen":25, + "network":"193.230.163.128\/25", + "version":57278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.163.128", + "prefixLen":25, + "network":"193.230.163.128\/25", + "version":57278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.176.0", + "prefixLen":25, + "network":"193.230.176.0\/25", + "version":57277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.176.0", + "prefixLen":25, + "network":"193.230.176.0\/25", + "version":57277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.176.128", + "prefixLen":25, + "network":"193.230.176.128\/25", + "version":57276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.176.128", + "prefixLen":25, + "network":"193.230.176.128\/25", + "version":57276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.177.0", + "prefixLen":25, + "network":"193.230.177.0\/25", + "version":57275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.177.0", + "prefixLen":25, + "network":"193.230.177.0\/25", + "version":57275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.177.128", + "prefixLen":25, + "network":"193.230.177.128\/25", + "version":57274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.177.128", + "prefixLen":25, + "network":"193.230.177.128\/25", + "version":57274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.178.0", + "prefixLen":25, + "network":"193.230.178.0\/25", + "version":57273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.178.0", + "prefixLen":25, + "network":"193.230.178.0\/25", + "version":57273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.178.128", + "prefixLen":25, + "network":"193.230.178.128\/25", + "version":57272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.178.128", + "prefixLen":25, + "network":"193.230.178.128\/25", + "version":57272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.179.0", + "prefixLen":25, + "network":"193.230.179.0\/25", + "version":57271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.179.0", + "prefixLen":25, + "network":"193.230.179.0\/25", + "version":57271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.179.128", + "prefixLen":25, + "network":"193.230.179.128\/25", + "version":57270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.179.128", + "prefixLen":25, + "network":"193.230.179.128\/25", + "version":57270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.192.0", + "prefixLen":25, + "network":"193.230.192.0\/25", + "version":57269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.192.0", + "prefixLen":25, + "network":"193.230.192.0\/25", + "version":57269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.192.128", + "prefixLen":25, + "network":"193.230.192.128\/25", + "version":57268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.192.128", + "prefixLen":25, + "network":"193.230.192.128\/25", + "version":57268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.193.0", + "prefixLen":25, + "network":"193.230.193.0\/25", + "version":57267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.193.0", + "prefixLen":25, + "network":"193.230.193.0\/25", + "version":57267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.193.128", + "prefixLen":25, + "network":"193.230.193.128\/25", + "version":57266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.193.128", + "prefixLen":25, + "network":"193.230.193.128\/25", + "version":57266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.194.0", + "prefixLen":25, + "network":"193.230.194.0\/25", + "version":57265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.194.0", + "prefixLen":25, + "network":"193.230.194.0\/25", + "version":57265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.194.128", + "prefixLen":25, + "network":"193.230.194.128\/25", + "version":57264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.194.128", + "prefixLen":25, + "network":"193.230.194.128\/25", + "version":57264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.195.0", + "prefixLen":25, + "network":"193.230.195.0\/25", + "version":57263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.195.0", + "prefixLen":25, + "network":"193.230.195.0\/25", + "version":57263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.195.128", + "prefixLen":25, + "network":"193.230.195.128\/25", + "version":57262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.195.128", + "prefixLen":25, + "network":"193.230.195.128\/25", + "version":57262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.208.0", + "prefixLen":25, + "network":"193.230.208.0\/25", + "version":57261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.208.0", + "prefixLen":25, + "network":"193.230.208.0\/25", + "version":57261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.208.128", + "prefixLen":25, + "network":"193.230.208.128\/25", + "version":57260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.208.128", + "prefixLen":25, + "network":"193.230.208.128\/25", + "version":57260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.209.0", + "prefixLen":25, + "network":"193.230.209.0\/25", + "version":57259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.209.0", + "prefixLen":25, + "network":"193.230.209.0\/25", + "version":57259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.209.128", + "prefixLen":25, + "network":"193.230.209.128\/25", + "version":57258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.209.128", + "prefixLen":25, + "network":"193.230.209.128\/25", + "version":57258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.210.0", + "prefixLen":25, + "network":"193.230.210.0\/25", + "version":57257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.210.0", + "prefixLen":25, + "network":"193.230.210.0\/25", + "version":57257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.210.128", + "prefixLen":25, + "network":"193.230.210.128\/25", + "version":57256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.210.128", + "prefixLen":25, + "network":"193.230.210.128\/25", + "version":57256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.211.0", + "prefixLen":25, + "network":"193.230.211.0\/25", + "version":57255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.211.0", + "prefixLen":25, + "network":"193.230.211.0\/25", + "version":57255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.211.128", + "prefixLen":25, + "network":"193.230.211.128\/25", + "version":57254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.211.128", + "prefixLen":25, + "network":"193.230.211.128\/25", + "version":57254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.224.0", + "prefixLen":25, + "network":"193.230.224.0\/25", + "version":57253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.224.0", + "prefixLen":25, + "network":"193.230.224.0\/25", + "version":57253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.224.128", + "prefixLen":25, + "network":"193.230.224.128\/25", + "version":57252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.224.128", + "prefixLen":25, + "network":"193.230.224.128\/25", + "version":57252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.225.0", + "prefixLen":25, + "network":"193.230.225.0\/25", + "version":57251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.225.0", + "prefixLen":25, + "network":"193.230.225.0\/25", + "version":57251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.225.128", + "prefixLen":25, + "network":"193.230.225.128\/25", + "version":57250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.225.128", + "prefixLen":25, + "network":"193.230.225.128\/25", + "version":57250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.226.0", + "prefixLen":25, + "network":"193.230.226.0\/25", + "version":57249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.226.0", + "prefixLen":25, + "network":"193.230.226.0\/25", + "version":57249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.226.128", + "prefixLen":25, + "network":"193.230.226.128\/25", + "version":57248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.226.128", + "prefixLen":25, + "network":"193.230.226.128\/25", + "version":57248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.227.0", + "prefixLen":25, + "network":"193.230.227.0\/25", + "version":57247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.227.0", + "prefixLen":25, + "network":"193.230.227.0\/25", + "version":57247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.227.128", + "prefixLen":25, + "network":"193.230.227.128\/25", + "version":57246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.227.128", + "prefixLen":25, + "network":"193.230.227.128\/25", + "version":57246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.240.0", + "prefixLen":25, + "network":"193.230.240.0\/25", + "version":57245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.240.0", + "prefixLen":25, + "network":"193.230.240.0\/25", + "version":57245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.240.128", + "prefixLen":25, + "network":"193.230.240.128\/25", + "version":57244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.240.128", + "prefixLen":25, + "network":"193.230.240.128\/25", + "version":57244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.241.0", + "prefixLen":25, + "network":"193.230.241.0\/25", + "version":57243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.241.0", + "prefixLen":25, + "network":"193.230.241.0\/25", + "version":57243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.241.128", + "prefixLen":25, + "network":"193.230.241.128\/25", + "version":57242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.241.128", + "prefixLen":25, + "network":"193.230.241.128\/25", + "version":57242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.242.0", + "prefixLen":25, + "network":"193.230.242.0\/25", + "version":57241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.242.0", + "prefixLen":25, + "network":"193.230.242.0\/25", + "version":57241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.242.128", + "prefixLen":25, + "network":"193.230.242.128\/25", + "version":57240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.242.128", + "prefixLen":25, + "network":"193.230.242.128\/25", + "version":57240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.243.0", + "prefixLen":25, + "network":"193.230.243.0\/25", + "version":57239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.243.0", + "prefixLen":25, + "network":"193.230.243.0\/25", + "version":57239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.230.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.230.243.128", + "prefixLen":25, + "network":"193.230.243.128\/25", + "version":57238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.230.243.128", + "prefixLen":25, + "network":"193.230.243.128\/25", + "version":57238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64918 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.0.0", + "prefixLen":25, + "network":"193.231.0.0\/25", + "version":57365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.0.0", + "prefixLen":25, + "network":"193.231.0.0\/25", + "version":57365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.0.128", + "prefixLen":25, + "network":"193.231.0.128\/25", + "version":57492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.0.128", + "prefixLen":25, + "network":"193.231.0.128\/25", + "version":57492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.1.0", + "prefixLen":25, + "network":"193.231.1.0\/25", + "version":57491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.1.0", + "prefixLen":25, + "network":"193.231.1.0\/25", + "version":57491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.1.128", + "prefixLen":25, + "network":"193.231.1.128\/25", + "version":57490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.1.128", + "prefixLen":25, + "network":"193.231.1.128\/25", + "version":57490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.2.0", + "prefixLen":25, + "network":"193.231.2.0\/25", + "version":57489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.2.0", + "prefixLen":25, + "network":"193.231.2.0\/25", + "version":57489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.2.128", + "prefixLen":25, + "network":"193.231.2.128\/25", + "version":57488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.2.128", + "prefixLen":25, + "network":"193.231.2.128\/25", + "version":57488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.3.0", + "prefixLen":25, + "network":"193.231.3.0\/25", + "version":57487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.3.0", + "prefixLen":25, + "network":"193.231.3.0\/25", + "version":57487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.3.128", + "prefixLen":25, + "network":"193.231.3.128\/25", + "version":57486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.3.128", + "prefixLen":25, + "network":"193.231.3.128\/25", + "version":57486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.16.0", + "prefixLen":25, + "network":"193.231.16.0\/25", + "version":57485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.16.0", + "prefixLen":25, + "network":"193.231.16.0\/25", + "version":57485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.16.128", + "prefixLen":25, + "network":"193.231.16.128\/25", + "version":57484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.16.128", + "prefixLen":25, + "network":"193.231.16.128\/25", + "version":57484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.17.0", + "prefixLen":25, + "network":"193.231.17.0\/25", + "version":57483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.17.0", + "prefixLen":25, + "network":"193.231.17.0\/25", + "version":57483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.17.128", + "prefixLen":25, + "network":"193.231.17.128\/25", + "version":57482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.17.128", + "prefixLen":25, + "network":"193.231.17.128\/25", + "version":57482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.18.0", + "prefixLen":25, + "network":"193.231.18.0\/25", + "version":57481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.18.0", + "prefixLen":25, + "network":"193.231.18.0\/25", + "version":57481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.18.128", + "prefixLen":25, + "network":"193.231.18.128\/25", + "version":57480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.18.128", + "prefixLen":25, + "network":"193.231.18.128\/25", + "version":57480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.19.0", + "prefixLen":25, + "network":"193.231.19.0\/25", + "version":57479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.19.0", + "prefixLen":25, + "network":"193.231.19.0\/25", + "version":57479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.19.128", + "prefixLen":25, + "network":"193.231.19.128\/25", + "version":57478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.19.128", + "prefixLen":25, + "network":"193.231.19.128\/25", + "version":57478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.32.0", + "prefixLen":25, + "network":"193.231.32.0\/25", + "version":57477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.32.0", + "prefixLen":25, + "network":"193.231.32.0\/25", + "version":57477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.32.128", + "prefixLen":25, + "network":"193.231.32.128\/25", + "version":57476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.32.128", + "prefixLen":25, + "network":"193.231.32.128\/25", + "version":57476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.33.0", + "prefixLen":25, + "network":"193.231.33.0\/25", + "version":57475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.33.0", + "prefixLen":25, + "network":"193.231.33.0\/25", + "version":57475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.33.128", + "prefixLen":25, + "network":"193.231.33.128\/25", + "version":57474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.33.128", + "prefixLen":25, + "network":"193.231.33.128\/25", + "version":57474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.34.0", + "prefixLen":25, + "network":"193.231.34.0\/25", + "version":57473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.34.0", + "prefixLen":25, + "network":"193.231.34.0\/25", + "version":57473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.34.128", + "prefixLen":25, + "network":"193.231.34.128\/25", + "version":57472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.34.128", + "prefixLen":25, + "network":"193.231.34.128\/25", + "version":57472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.35.0", + "prefixLen":25, + "network":"193.231.35.0\/25", + "version":57471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.35.0", + "prefixLen":25, + "network":"193.231.35.0\/25", + "version":57471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.35.128", + "prefixLen":25, + "network":"193.231.35.128\/25", + "version":57470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.35.128", + "prefixLen":25, + "network":"193.231.35.128\/25", + "version":57470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.48.0", + "prefixLen":25, + "network":"193.231.48.0\/25", + "version":57469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.48.0", + "prefixLen":25, + "network":"193.231.48.0\/25", + "version":57469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.48.128", + "prefixLen":25, + "network":"193.231.48.128\/25", + "version":57468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.48.128", + "prefixLen":25, + "network":"193.231.48.128\/25", + "version":57468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.49.0", + "prefixLen":25, + "network":"193.231.49.0\/25", + "version":57467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.49.0", + "prefixLen":25, + "network":"193.231.49.0\/25", + "version":57467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.49.128", + "prefixLen":25, + "network":"193.231.49.128\/25", + "version":57466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.49.128", + "prefixLen":25, + "network":"193.231.49.128\/25", + "version":57466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.50.0", + "prefixLen":25, + "network":"193.231.50.0\/25", + "version":57465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.50.0", + "prefixLen":25, + "network":"193.231.50.0\/25", + "version":57465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.50.128", + "prefixLen":25, + "network":"193.231.50.128\/25", + "version":57464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.50.128", + "prefixLen":25, + "network":"193.231.50.128\/25", + "version":57464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.51.0", + "prefixLen":25, + "network":"193.231.51.0\/25", + "version":57463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.51.0", + "prefixLen":25, + "network":"193.231.51.0\/25", + "version":57463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.51.128", + "prefixLen":25, + "network":"193.231.51.128\/25", + "version":57462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.51.128", + "prefixLen":25, + "network":"193.231.51.128\/25", + "version":57462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.64.0", + "prefixLen":25, + "network":"193.231.64.0\/25", + "version":57461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.64.0", + "prefixLen":25, + "network":"193.231.64.0\/25", + "version":57461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.64.128", + "prefixLen":25, + "network":"193.231.64.128\/25", + "version":57460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.64.128", + "prefixLen":25, + "network":"193.231.64.128\/25", + "version":57460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.65.0", + "prefixLen":25, + "network":"193.231.65.0\/25", + "version":57459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.65.0", + "prefixLen":25, + "network":"193.231.65.0\/25", + "version":57459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.65.128", + "prefixLen":25, + "network":"193.231.65.128\/25", + "version":57458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.65.128", + "prefixLen":25, + "network":"193.231.65.128\/25", + "version":57458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.66.0", + "prefixLen":25, + "network":"193.231.66.0\/25", + "version":57457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.66.0", + "prefixLen":25, + "network":"193.231.66.0\/25", + "version":57457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.66.128", + "prefixLen":25, + "network":"193.231.66.128\/25", + "version":57456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.66.128", + "prefixLen":25, + "network":"193.231.66.128\/25", + "version":57456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.67.0", + "prefixLen":25, + "network":"193.231.67.0\/25", + "version":57455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.67.0", + "prefixLen":25, + "network":"193.231.67.0\/25", + "version":57455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.67.128", + "prefixLen":25, + "network":"193.231.67.128\/25", + "version":57454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.67.128", + "prefixLen":25, + "network":"193.231.67.128\/25", + "version":57454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.80.0", + "prefixLen":25, + "network":"193.231.80.0\/25", + "version":57453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.80.0", + "prefixLen":25, + "network":"193.231.80.0\/25", + "version":57453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.80.128", + "prefixLen":25, + "network":"193.231.80.128\/25", + "version":57452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.80.128", + "prefixLen":25, + "network":"193.231.80.128\/25", + "version":57452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.81.0", + "prefixLen":25, + "network":"193.231.81.0\/25", + "version":57451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.81.0", + "prefixLen":25, + "network":"193.231.81.0\/25", + "version":57451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.81.128", + "prefixLen":25, + "network":"193.231.81.128\/25", + "version":57450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.81.128", + "prefixLen":25, + "network":"193.231.81.128\/25", + "version":57450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.82.0", + "prefixLen":25, + "network":"193.231.82.0\/25", + "version":57449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.82.0", + "prefixLen":25, + "network":"193.231.82.0\/25", + "version":57449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.82.128", + "prefixLen":25, + "network":"193.231.82.128\/25", + "version":57448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.82.128", + "prefixLen":25, + "network":"193.231.82.128\/25", + "version":57448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.83.0", + "prefixLen":25, + "network":"193.231.83.0\/25", + "version":57447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.83.0", + "prefixLen":25, + "network":"193.231.83.0\/25", + "version":57447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.83.128", + "prefixLen":25, + "network":"193.231.83.128\/25", + "version":57446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.83.128", + "prefixLen":25, + "network":"193.231.83.128\/25", + "version":57446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.96.0", + "prefixLen":25, + "network":"193.231.96.0\/25", + "version":57445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.96.0", + "prefixLen":25, + "network":"193.231.96.0\/25", + "version":57445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.96.128", + "prefixLen":25, + "network":"193.231.96.128\/25", + "version":57444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.96.128", + "prefixLen":25, + "network":"193.231.96.128\/25", + "version":57444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.97.0", + "prefixLen":25, + "network":"193.231.97.0\/25", + "version":57443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.97.0", + "prefixLen":25, + "network":"193.231.97.0\/25", + "version":57443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.97.128", + "prefixLen":25, + "network":"193.231.97.128\/25", + "version":57442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.97.128", + "prefixLen":25, + "network":"193.231.97.128\/25", + "version":57442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.98.0", + "prefixLen":25, + "network":"193.231.98.0\/25", + "version":57441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.98.0", + "prefixLen":25, + "network":"193.231.98.0\/25", + "version":57441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.98.128", + "prefixLen":25, + "network":"193.231.98.128\/25", + "version":57440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.98.128", + "prefixLen":25, + "network":"193.231.98.128\/25", + "version":57440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.99.0", + "prefixLen":25, + "network":"193.231.99.0\/25", + "version":57439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.99.0", + "prefixLen":25, + "network":"193.231.99.0\/25", + "version":57439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.99.128", + "prefixLen":25, + "network":"193.231.99.128\/25", + "version":57438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.99.128", + "prefixLen":25, + "network":"193.231.99.128\/25", + "version":57438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.112.0", + "prefixLen":25, + "network":"193.231.112.0\/25", + "version":57437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.112.0", + "prefixLen":25, + "network":"193.231.112.0\/25", + "version":57437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.112.128", + "prefixLen":25, + "network":"193.231.112.128\/25", + "version":57436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.112.128", + "prefixLen":25, + "network":"193.231.112.128\/25", + "version":57436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.113.0", + "prefixLen":25, + "network":"193.231.113.0\/25", + "version":57435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.113.0", + "prefixLen":25, + "network":"193.231.113.0\/25", + "version":57435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.113.128", + "prefixLen":25, + "network":"193.231.113.128\/25", + "version":57434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.113.128", + "prefixLen":25, + "network":"193.231.113.128\/25", + "version":57434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.114.0", + "prefixLen":25, + "network":"193.231.114.0\/25", + "version":57433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.114.0", + "prefixLen":25, + "network":"193.231.114.0\/25", + "version":57433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.114.128", + "prefixLen":25, + "network":"193.231.114.128\/25", + "version":57432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.114.128", + "prefixLen":25, + "network":"193.231.114.128\/25", + "version":57432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.115.0", + "prefixLen":25, + "network":"193.231.115.0\/25", + "version":57431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.115.0", + "prefixLen":25, + "network":"193.231.115.0\/25", + "version":57431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.115.128", + "prefixLen":25, + "network":"193.231.115.128\/25", + "version":57430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.115.128", + "prefixLen":25, + "network":"193.231.115.128\/25", + "version":57430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.128.0", + "prefixLen":25, + "network":"193.231.128.0\/25", + "version":57429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.128.0", + "prefixLen":25, + "network":"193.231.128.0\/25", + "version":57429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.128.128", + "prefixLen":25, + "network":"193.231.128.128\/25", + "version":57428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.128.128", + "prefixLen":25, + "network":"193.231.128.128\/25", + "version":57428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.129.0", + "prefixLen":25, + "network":"193.231.129.0\/25", + "version":57427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.129.0", + "prefixLen":25, + "network":"193.231.129.0\/25", + "version":57427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.129.128", + "prefixLen":25, + "network":"193.231.129.128\/25", + "version":57426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.129.128", + "prefixLen":25, + "network":"193.231.129.128\/25", + "version":57426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.130.0", + "prefixLen":25, + "network":"193.231.130.0\/25", + "version":57425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.130.0", + "prefixLen":25, + "network":"193.231.130.0\/25", + "version":57425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.130.128", + "prefixLen":25, + "network":"193.231.130.128\/25", + "version":57424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.130.128", + "prefixLen":25, + "network":"193.231.130.128\/25", + "version":57424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.131.0", + "prefixLen":25, + "network":"193.231.131.0\/25", + "version":57423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.131.0", + "prefixLen":25, + "network":"193.231.131.0\/25", + "version":57423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.131.128", + "prefixLen":25, + "network":"193.231.131.128\/25", + "version":57422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.131.128", + "prefixLen":25, + "network":"193.231.131.128\/25", + "version":57422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.144.0", + "prefixLen":25, + "network":"193.231.144.0\/25", + "version":57421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.144.0", + "prefixLen":25, + "network":"193.231.144.0\/25", + "version":57421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.144.128", + "prefixLen":25, + "network":"193.231.144.128\/25", + "version":57420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.144.128", + "prefixLen":25, + "network":"193.231.144.128\/25", + "version":57420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.145.0", + "prefixLen":25, + "network":"193.231.145.0\/25", + "version":57419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.145.0", + "prefixLen":25, + "network":"193.231.145.0\/25", + "version":57419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.145.128", + "prefixLen":25, + "network":"193.231.145.128\/25", + "version":57418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.145.128", + "prefixLen":25, + "network":"193.231.145.128\/25", + "version":57418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.146.0", + "prefixLen":25, + "network":"193.231.146.0\/25", + "version":57417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.146.0", + "prefixLen":25, + "network":"193.231.146.0\/25", + "version":57417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.146.128", + "prefixLen":25, + "network":"193.231.146.128\/25", + "version":57416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.146.128", + "prefixLen":25, + "network":"193.231.146.128\/25", + "version":57416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.147.0", + "prefixLen":25, + "network":"193.231.147.0\/25", + "version":57415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.147.0", + "prefixLen":25, + "network":"193.231.147.0\/25", + "version":57415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.147.128", + "prefixLen":25, + "network":"193.231.147.128\/25", + "version":57414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.147.128", + "prefixLen":25, + "network":"193.231.147.128\/25", + "version":57414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.160.0", + "prefixLen":25, + "network":"193.231.160.0\/25", + "version":57413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.160.0", + "prefixLen":25, + "network":"193.231.160.0\/25", + "version":57413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.160.128", + "prefixLen":25, + "network":"193.231.160.128\/25", + "version":57412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.160.128", + "prefixLen":25, + "network":"193.231.160.128\/25", + "version":57412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.161.0", + "prefixLen":25, + "network":"193.231.161.0\/25", + "version":57411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.161.0", + "prefixLen":25, + "network":"193.231.161.0\/25", + "version":57411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.161.128", + "prefixLen":25, + "network":"193.231.161.128\/25", + "version":57410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.161.128", + "prefixLen":25, + "network":"193.231.161.128\/25", + "version":57410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.162.0", + "prefixLen":25, + "network":"193.231.162.0\/25", + "version":57409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.162.0", + "prefixLen":25, + "network":"193.231.162.0\/25", + "version":57409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.162.128", + "prefixLen":25, + "network":"193.231.162.128\/25", + "version":57408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.162.128", + "prefixLen":25, + "network":"193.231.162.128\/25", + "version":57408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.163.0", + "prefixLen":25, + "network":"193.231.163.0\/25", + "version":57407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.163.0", + "prefixLen":25, + "network":"193.231.163.0\/25", + "version":57407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.163.128", + "prefixLen":25, + "network":"193.231.163.128\/25", + "version":57406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.163.128", + "prefixLen":25, + "network":"193.231.163.128\/25", + "version":57406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.176.0", + "prefixLen":25, + "network":"193.231.176.0\/25", + "version":57405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.176.0", + "prefixLen":25, + "network":"193.231.176.0\/25", + "version":57405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.176.128", + "prefixLen":25, + "network":"193.231.176.128\/25", + "version":57404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.176.128", + "prefixLen":25, + "network":"193.231.176.128\/25", + "version":57404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.177.0", + "prefixLen":25, + "network":"193.231.177.0\/25", + "version":57403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.177.0", + "prefixLen":25, + "network":"193.231.177.0\/25", + "version":57403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.177.128", + "prefixLen":25, + "network":"193.231.177.128\/25", + "version":57402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.177.128", + "prefixLen":25, + "network":"193.231.177.128\/25", + "version":57402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.178.0", + "prefixLen":25, + "network":"193.231.178.0\/25", + "version":57401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.178.0", + "prefixLen":25, + "network":"193.231.178.0\/25", + "version":57401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.178.128", + "prefixLen":25, + "network":"193.231.178.128\/25", + "version":57400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.178.128", + "prefixLen":25, + "network":"193.231.178.128\/25", + "version":57400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.179.0", + "prefixLen":25, + "network":"193.231.179.0\/25", + "version":57399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.179.0", + "prefixLen":25, + "network":"193.231.179.0\/25", + "version":57399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.179.128", + "prefixLen":25, + "network":"193.231.179.128\/25", + "version":57398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.179.128", + "prefixLen":25, + "network":"193.231.179.128\/25", + "version":57398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.192.0", + "prefixLen":25, + "network":"193.231.192.0\/25", + "version":57397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.192.0", + "prefixLen":25, + "network":"193.231.192.0\/25", + "version":57397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.192.128", + "prefixLen":25, + "network":"193.231.192.128\/25", + "version":57396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.192.128", + "prefixLen":25, + "network":"193.231.192.128\/25", + "version":57396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.193.0", + "prefixLen":25, + "network":"193.231.193.0\/25", + "version":57395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.193.0", + "prefixLen":25, + "network":"193.231.193.0\/25", + "version":57395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.193.128", + "prefixLen":25, + "network":"193.231.193.128\/25", + "version":57394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.193.128", + "prefixLen":25, + "network":"193.231.193.128\/25", + "version":57394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.194.0", + "prefixLen":25, + "network":"193.231.194.0\/25", + "version":57393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.194.0", + "prefixLen":25, + "network":"193.231.194.0\/25", + "version":57393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.194.128", + "prefixLen":25, + "network":"193.231.194.128\/25", + "version":57392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.194.128", + "prefixLen":25, + "network":"193.231.194.128\/25", + "version":57392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.195.0", + "prefixLen":25, + "network":"193.231.195.0\/25", + "version":57391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.195.0", + "prefixLen":25, + "network":"193.231.195.0\/25", + "version":57391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.195.128", + "prefixLen":25, + "network":"193.231.195.128\/25", + "version":57390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.195.128", + "prefixLen":25, + "network":"193.231.195.128\/25", + "version":57390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.208.0", + "prefixLen":25, + "network":"193.231.208.0\/25", + "version":57389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.208.0", + "prefixLen":25, + "network":"193.231.208.0\/25", + "version":57389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.208.128", + "prefixLen":25, + "network":"193.231.208.128\/25", + "version":57388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.208.128", + "prefixLen":25, + "network":"193.231.208.128\/25", + "version":57388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.209.0", + "prefixLen":25, + "network":"193.231.209.0\/25", + "version":57387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.209.0", + "prefixLen":25, + "network":"193.231.209.0\/25", + "version":57387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.209.128", + "prefixLen":25, + "network":"193.231.209.128\/25", + "version":57386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.209.128", + "prefixLen":25, + "network":"193.231.209.128\/25", + "version":57386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.210.0", + "prefixLen":25, + "network":"193.231.210.0\/25", + "version":57385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.210.0", + "prefixLen":25, + "network":"193.231.210.0\/25", + "version":57385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.210.128", + "prefixLen":25, + "network":"193.231.210.128\/25", + "version":57384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.210.128", + "prefixLen":25, + "network":"193.231.210.128\/25", + "version":57384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.211.0", + "prefixLen":25, + "network":"193.231.211.0\/25", + "version":57383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.211.0", + "prefixLen":25, + "network":"193.231.211.0\/25", + "version":57383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.211.128", + "prefixLen":25, + "network":"193.231.211.128\/25", + "version":57382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.211.128", + "prefixLen":25, + "network":"193.231.211.128\/25", + "version":57382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.224.0", + "prefixLen":25, + "network":"193.231.224.0\/25", + "version":57381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.224.0", + "prefixLen":25, + "network":"193.231.224.0\/25", + "version":57381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.224.128", + "prefixLen":25, + "network":"193.231.224.128\/25", + "version":57380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.224.128", + "prefixLen":25, + "network":"193.231.224.128\/25", + "version":57380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.225.0", + "prefixLen":25, + "network":"193.231.225.0\/25", + "version":57379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.225.0", + "prefixLen":25, + "network":"193.231.225.0\/25", + "version":57379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.225.128", + "prefixLen":25, + "network":"193.231.225.128\/25", + "version":57378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.225.128", + "prefixLen":25, + "network":"193.231.225.128\/25", + "version":57378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.226.0", + "prefixLen":25, + "network":"193.231.226.0\/25", + "version":57377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.226.0", + "prefixLen":25, + "network":"193.231.226.0\/25", + "version":57377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.226.128", + "prefixLen":25, + "network":"193.231.226.128\/25", + "version":57376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.226.128", + "prefixLen":25, + "network":"193.231.226.128\/25", + "version":57376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.227.0", + "prefixLen":25, + "network":"193.231.227.0\/25", + "version":57375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.227.0", + "prefixLen":25, + "network":"193.231.227.0\/25", + "version":57375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.227.128", + "prefixLen":25, + "network":"193.231.227.128\/25", + "version":57374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.227.128", + "prefixLen":25, + "network":"193.231.227.128\/25", + "version":57374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.240.0", + "prefixLen":25, + "network":"193.231.240.0\/25", + "version":57373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.240.0", + "prefixLen":25, + "network":"193.231.240.0\/25", + "version":57373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.240.128", + "prefixLen":25, + "network":"193.231.240.128\/25", + "version":57372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.240.128", + "prefixLen":25, + "network":"193.231.240.128\/25", + "version":57372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.241.0", + "prefixLen":25, + "network":"193.231.241.0\/25", + "version":57371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.241.0", + "prefixLen":25, + "network":"193.231.241.0\/25", + "version":57371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.241.128", + "prefixLen":25, + "network":"193.231.241.128\/25", + "version":57370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.241.128", + "prefixLen":25, + "network":"193.231.241.128\/25", + "version":57370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.242.0", + "prefixLen":25, + "network":"193.231.242.0\/25", + "version":57369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.242.0", + "prefixLen":25, + "network":"193.231.242.0\/25", + "version":57369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.242.128", + "prefixLen":25, + "network":"193.231.242.128\/25", + "version":57368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.242.128", + "prefixLen":25, + "network":"193.231.242.128\/25", + "version":57368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.243.0", + "prefixLen":25, + "network":"193.231.243.0\/25", + "version":57367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.243.0", + "prefixLen":25, + "network":"193.231.243.0\/25", + "version":57367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.231.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.231.243.128", + "prefixLen":25, + "network":"193.231.243.128\/25", + "version":57366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.231.243.128", + "prefixLen":25, + "network":"193.231.243.128\/25", + "version":57366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64919 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.0.0", + "prefixLen":25, + "network":"193.232.0.0\/25", + "version":57493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.0.0", + "prefixLen":25, + "network":"193.232.0.0\/25", + "version":57493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.0.128", + "prefixLen":25, + "network":"193.232.0.128\/25", + "version":57620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.0.128", + "prefixLen":25, + "network":"193.232.0.128\/25", + "version":57620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.1.0", + "prefixLen":25, + "network":"193.232.1.0\/25", + "version":57619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.1.0", + "prefixLen":25, + "network":"193.232.1.0\/25", + "version":57619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.1.128", + "prefixLen":25, + "network":"193.232.1.128\/25", + "version":57618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.1.128", + "prefixLen":25, + "network":"193.232.1.128\/25", + "version":57618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.2.0", + "prefixLen":25, + "network":"193.232.2.0\/25", + "version":57617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.2.0", + "prefixLen":25, + "network":"193.232.2.0\/25", + "version":57617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.2.128", + "prefixLen":25, + "network":"193.232.2.128\/25", + "version":57616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.2.128", + "prefixLen":25, + "network":"193.232.2.128\/25", + "version":57616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.3.0", + "prefixLen":25, + "network":"193.232.3.0\/25", + "version":57615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.3.0", + "prefixLen":25, + "network":"193.232.3.0\/25", + "version":57615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.3.128", + "prefixLen":25, + "network":"193.232.3.128\/25", + "version":57614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.3.128", + "prefixLen":25, + "network":"193.232.3.128\/25", + "version":57614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.16.0", + "prefixLen":25, + "network":"193.232.16.0\/25", + "version":57613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.16.0", + "prefixLen":25, + "network":"193.232.16.0\/25", + "version":57613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.16.128", + "prefixLen":25, + "network":"193.232.16.128\/25", + "version":57612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.16.128", + "prefixLen":25, + "network":"193.232.16.128\/25", + "version":57612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.17.0", + "prefixLen":25, + "network":"193.232.17.0\/25", + "version":57611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.17.0", + "prefixLen":25, + "network":"193.232.17.0\/25", + "version":57611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.17.128", + "prefixLen":25, + "network":"193.232.17.128\/25", + "version":57610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.17.128", + "prefixLen":25, + "network":"193.232.17.128\/25", + "version":57610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.18.0", + "prefixLen":25, + "network":"193.232.18.0\/25", + "version":57609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.18.0", + "prefixLen":25, + "network":"193.232.18.0\/25", + "version":57609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.18.128", + "prefixLen":25, + "network":"193.232.18.128\/25", + "version":57608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.18.128", + "prefixLen":25, + "network":"193.232.18.128\/25", + "version":57608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.19.0", + "prefixLen":25, + "network":"193.232.19.0\/25", + "version":57607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.19.0", + "prefixLen":25, + "network":"193.232.19.0\/25", + "version":57607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.19.128", + "prefixLen":25, + "network":"193.232.19.128\/25", + "version":57606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.19.128", + "prefixLen":25, + "network":"193.232.19.128\/25", + "version":57606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.32.0", + "prefixLen":25, + "network":"193.232.32.0\/25", + "version":57605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.32.0", + "prefixLen":25, + "network":"193.232.32.0\/25", + "version":57605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.32.128", + "prefixLen":25, + "network":"193.232.32.128\/25", + "version":57604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.32.128", + "prefixLen":25, + "network":"193.232.32.128\/25", + "version":57604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.33.0", + "prefixLen":25, + "network":"193.232.33.0\/25", + "version":57603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.33.0", + "prefixLen":25, + "network":"193.232.33.0\/25", + "version":57603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.33.128", + "prefixLen":25, + "network":"193.232.33.128\/25", + "version":57602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.33.128", + "prefixLen":25, + "network":"193.232.33.128\/25", + "version":57602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.34.0", + "prefixLen":25, + "network":"193.232.34.0\/25", + "version":57601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.34.0", + "prefixLen":25, + "network":"193.232.34.0\/25", + "version":57601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.34.128", + "prefixLen":25, + "network":"193.232.34.128\/25", + "version":57600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.34.128", + "prefixLen":25, + "network":"193.232.34.128\/25", + "version":57600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.35.0", + "prefixLen":25, + "network":"193.232.35.0\/25", + "version":57599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.35.0", + "prefixLen":25, + "network":"193.232.35.0\/25", + "version":57599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.35.128", + "prefixLen":25, + "network":"193.232.35.128\/25", + "version":57598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.35.128", + "prefixLen":25, + "network":"193.232.35.128\/25", + "version":57598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.48.0", + "prefixLen":25, + "network":"193.232.48.0\/25", + "version":57597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.48.0", + "prefixLen":25, + "network":"193.232.48.0\/25", + "version":57597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.48.128", + "prefixLen":25, + "network":"193.232.48.128\/25", + "version":57596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.48.128", + "prefixLen":25, + "network":"193.232.48.128\/25", + "version":57596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.49.0", + "prefixLen":25, + "network":"193.232.49.0\/25", + "version":57595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.49.0", + "prefixLen":25, + "network":"193.232.49.0\/25", + "version":57595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.49.128", + "prefixLen":25, + "network":"193.232.49.128\/25", + "version":57594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.49.128", + "prefixLen":25, + "network":"193.232.49.128\/25", + "version":57594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.50.0", + "prefixLen":25, + "network":"193.232.50.0\/25", + "version":57593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.50.0", + "prefixLen":25, + "network":"193.232.50.0\/25", + "version":57593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.50.128", + "prefixLen":25, + "network":"193.232.50.128\/25", + "version":57592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.50.128", + "prefixLen":25, + "network":"193.232.50.128\/25", + "version":57592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.51.0", + "prefixLen":25, + "network":"193.232.51.0\/25", + "version":57591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.51.0", + "prefixLen":25, + "network":"193.232.51.0\/25", + "version":57591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.51.128", + "prefixLen":25, + "network":"193.232.51.128\/25", + "version":57590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.51.128", + "prefixLen":25, + "network":"193.232.51.128\/25", + "version":57590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.64.0", + "prefixLen":25, + "network":"193.232.64.0\/25", + "version":57589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.64.0", + "prefixLen":25, + "network":"193.232.64.0\/25", + "version":57589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.64.128", + "prefixLen":25, + "network":"193.232.64.128\/25", + "version":57588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.64.128", + "prefixLen":25, + "network":"193.232.64.128\/25", + "version":57588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.65.0", + "prefixLen":25, + "network":"193.232.65.0\/25", + "version":57587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.65.0", + "prefixLen":25, + "network":"193.232.65.0\/25", + "version":57587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.65.128", + "prefixLen":25, + "network":"193.232.65.128\/25", + "version":57586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.65.128", + "prefixLen":25, + "network":"193.232.65.128\/25", + "version":57586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.66.0", + "prefixLen":25, + "network":"193.232.66.0\/25", + "version":57585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.66.0", + "prefixLen":25, + "network":"193.232.66.0\/25", + "version":57585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.66.128", + "prefixLen":25, + "network":"193.232.66.128\/25", + "version":57584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.66.128", + "prefixLen":25, + "network":"193.232.66.128\/25", + "version":57584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.67.0", + "prefixLen":25, + "network":"193.232.67.0\/25", + "version":57583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.67.0", + "prefixLen":25, + "network":"193.232.67.0\/25", + "version":57583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.67.128", + "prefixLen":25, + "network":"193.232.67.128\/25", + "version":57582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.67.128", + "prefixLen":25, + "network":"193.232.67.128\/25", + "version":57582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.80.0", + "prefixLen":25, + "network":"193.232.80.0\/25", + "version":57581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.80.0", + "prefixLen":25, + "network":"193.232.80.0\/25", + "version":57581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.80.128", + "prefixLen":25, + "network":"193.232.80.128\/25", + "version":57580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.80.128", + "prefixLen":25, + "network":"193.232.80.128\/25", + "version":57580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.81.0", + "prefixLen":25, + "network":"193.232.81.0\/25", + "version":57579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.81.0", + "prefixLen":25, + "network":"193.232.81.0\/25", + "version":57579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.81.128", + "prefixLen":25, + "network":"193.232.81.128\/25", + "version":57578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.81.128", + "prefixLen":25, + "network":"193.232.81.128\/25", + "version":57578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.82.0", + "prefixLen":25, + "network":"193.232.82.0\/25", + "version":57577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.82.0", + "prefixLen":25, + "network":"193.232.82.0\/25", + "version":57577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.82.128", + "prefixLen":25, + "network":"193.232.82.128\/25", + "version":57576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.82.128", + "prefixLen":25, + "network":"193.232.82.128\/25", + "version":57576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.83.0", + "prefixLen":25, + "network":"193.232.83.0\/25", + "version":57575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.83.0", + "prefixLen":25, + "network":"193.232.83.0\/25", + "version":57575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.83.128", + "prefixLen":25, + "network":"193.232.83.128\/25", + "version":57574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.83.128", + "prefixLen":25, + "network":"193.232.83.128\/25", + "version":57574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.96.0", + "prefixLen":25, + "network":"193.232.96.0\/25", + "version":57573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.96.0", + "prefixLen":25, + "network":"193.232.96.0\/25", + "version":57573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.96.128", + "prefixLen":25, + "network":"193.232.96.128\/25", + "version":57572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.96.128", + "prefixLen":25, + "network":"193.232.96.128\/25", + "version":57572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.97.0", + "prefixLen":25, + "network":"193.232.97.0\/25", + "version":57571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.97.0", + "prefixLen":25, + "network":"193.232.97.0\/25", + "version":57571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.97.128", + "prefixLen":25, + "network":"193.232.97.128\/25", + "version":57570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.97.128", + "prefixLen":25, + "network":"193.232.97.128\/25", + "version":57570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.98.0", + "prefixLen":25, + "network":"193.232.98.0\/25", + "version":57569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.98.0", + "prefixLen":25, + "network":"193.232.98.0\/25", + "version":57569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.98.128", + "prefixLen":25, + "network":"193.232.98.128\/25", + "version":57568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.98.128", + "prefixLen":25, + "network":"193.232.98.128\/25", + "version":57568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.99.0", + "prefixLen":25, + "network":"193.232.99.0\/25", + "version":57567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.99.0", + "prefixLen":25, + "network":"193.232.99.0\/25", + "version":57567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.99.128", + "prefixLen":25, + "network":"193.232.99.128\/25", + "version":57566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.99.128", + "prefixLen":25, + "network":"193.232.99.128\/25", + "version":57566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.112.0", + "prefixLen":25, + "network":"193.232.112.0\/25", + "version":57565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.112.0", + "prefixLen":25, + "network":"193.232.112.0\/25", + "version":57565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.112.128", + "prefixLen":25, + "network":"193.232.112.128\/25", + "version":57564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.112.128", + "prefixLen":25, + "network":"193.232.112.128\/25", + "version":57564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.113.0", + "prefixLen":25, + "network":"193.232.113.0\/25", + "version":57563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.113.0", + "prefixLen":25, + "network":"193.232.113.0\/25", + "version":57563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.113.128", + "prefixLen":25, + "network":"193.232.113.128\/25", + "version":57562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.113.128", + "prefixLen":25, + "network":"193.232.113.128\/25", + "version":57562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.114.0", + "prefixLen":25, + "network":"193.232.114.0\/25", + "version":57561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.114.0", + "prefixLen":25, + "network":"193.232.114.0\/25", + "version":57561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.114.128", + "prefixLen":25, + "network":"193.232.114.128\/25", + "version":57560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.114.128", + "prefixLen":25, + "network":"193.232.114.128\/25", + "version":57560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.115.0", + "prefixLen":25, + "network":"193.232.115.0\/25", + "version":57559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.115.0", + "prefixLen":25, + "network":"193.232.115.0\/25", + "version":57559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.115.128", + "prefixLen":25, + "network":"193.232.115.128\/25", + "version":57558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.115.128", + "prefixLen":25, + "network":"193.232.115.128\/25", + "version":57558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.128.0", + "prefixLen":25, + "network":"193.232.128.0\/25", + "version":57557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.128.0", + "prefixLen":25, + "network":"193.232.128.0\/25", + "version":57557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.128.128", + "prefixLen":25, + "network":"193.232.128.128\/25", + "version":57556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.128.128", + "prefixLen":25, + "network":"193.232.128.128\/25", + "version":57556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.129.0", + "prefixLen":25, + "network":"193.232.129.0\/25", + "version":57555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.129.0", + "prefixLen":25, + "network":"193.232.129.0\/25", + "version":57555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.129.128", + "prefixLen":25, + "network":"193.232.129.128\/25", + "version":57554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.129.128", + "prefixLen":25, + "network":"193.232.129.128\/25", + "version":57554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.130.0", + "prefixLen":25, + "network":"193.232.130.0\/25", + "version":57553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.130.0", + "prefixLen":25, + "network":"193.232.130.0\/25", + "version":57553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.130.128", + "prefixLen":25, + "network":"193.232.130.128\/25", + "version":57552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.130.128", + "prefixLen":25, + "network":"193.232.130.128\/25", + "version":57552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.131.0", + "prefixLen":25, + "network":"193.232.131.0\/25", + "version":57551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.131.0", + "prefixLen":25, + "network":"193.232.131.0\/25", + "version":57551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.131.128", + "prefixLen":25, + "network":"193.232.131.128\/25", + "version":57550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.131.128", + "prefixLen":25, + "network":"193.232.131.128\/25", + "version":57550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.144.0", + "prefixLen":25, + "network":"193.232.144.0\/25", + "version":57549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.144.0", + "prefixLen":25, + "network":"193.232.144.0\/25", + "version":57549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.144.128", + "prefixLen":25, + "network":"193.232.144.128\/25", + "version":57548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.144.128", + "prefixLen":25, + "network":"193.232.144.128\/25", + "version":57548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.145.0", + "prefixLen":25, + "network":"193.232.145.0\/25", + "version":57547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.145.0", + "prefixLen":25, + "network":"193.232.145.0\/25", + "version":57547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.145.128", + "prefixLen":25, + "network":"193.232.145.128\/25", + "version":57546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.145.128", + "prefixLen":25, + "network":"193.232.145.128\/25", + "version":57546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.146.0", + "prefixLen":25, + "network":"193.232.146.0\/25", + "version":57545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.146.0", + "prefixLen":25, + "network":"193.232.146.0\/25", + "version":57545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.146.128", + "prefixLen":25, + "network":"193.232.146.128\/25", + "version":57544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.146.128", + "prefixLen":25, + "network":"193.232.146.128\/25", + "version":57544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.147.0", + "prefixLen":25, + "network":"193.232.147.0\/25", + "version":57543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.147.0", + "prefixLen":25, + "network":"193.232.147.0\/25", + "version":57543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.147.128", + "prefixLen":25, + "network":"193.232.147.128\/25", + "version":57542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.147.128", + "prefixLen":25, + "network":"193.232.147.128\/25", + "version":57542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.160.0", + "prefixLen":25, + "network":"193.232.160.0\/25", + "version":57541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.160.0", + "prefixLen":25, + "network":"193.232.160.0\/25", + "version":57541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.160.128", + "prefixLen":25, + "network":"193.232.160.128\/25", + "version":57540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.160.128", + "prefixLen":25, + "network":"193.232.160.128\/25", + "version":57540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.161.0", + "prefixLen":25, + "network":"193.232.161.0\/25", + "version":57539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.161.0", + "prefixLen":25, + "network":"193.232.161.0\/25", + "version":57539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.161.128", + "prefixLen":25, + "network":"193.232.161.128\/25", + "version":57538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.161.128", + "prefixLen":25, + "network":"193.232.161.128\/25", + "version":57538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.162.0", + "prefixLen":25, + "network":"193.232.162.0\/25", + "version":57537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.162.0", + "prefixLen":25, + "network":"193.232.162.0\/25", + "version":57537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.162.128", + "prefixLen":25, + "network":"193.232.162.128\/25", + "version":57536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.162.128", + "prefixLen":25, + "network":"193.232.162.128\/25", + "version":57536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.163.0", + "prefixLen":25, + "network":"193.232.163.0\/25", + "version":57535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.163.0", + "prefixLen":25, + "network":"193.232.163.0\/25", + "version":57535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.163.128", + "prefixLen":25, + "network":"193.232.163.128\/25", + "version":57534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.163.128", + "prefixLen":25, + "network":"193.232.163.128\/25", + "version":57534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.176.0", + "prefixLen":25, + "network":"193.232.176.0\/25", + "version":57533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.176.0", + "prefixLen":25, + "network":"193.232.176.0\/25", + "version":57533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.176.128", + "prefixLen":25, + "network":"193.232.176.128\/25", + "version":57532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.176.128", + "prefixLen":25, + "network":"193.232.176.128\/25", + "version":57532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.177.0", + "prefixLen":25, + "network":"193.232.177.0\/25", + "version":57531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.177.0", + "prefixLen":25, + "network":"193.232.177.0\/25", + "version":57531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.177.128", + "prefixLen":25, + "network":"193.232.177.128\/25", + "version":57530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.177.128", + "prefixLen":25, + "network":"193.232.177.128\/25", + "version":57530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.178.0", + "prefixLen":25, + "network":"193.232.178.0\/25", + "version":57529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.178.0", + "prefixLen":25, + "network":"193.232.178.0\/25", + "version":57529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.178.128", + "prefixLen":25, + "network":"193.232.178.128\/25", + "version":57528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.178.128", + "prefixLen":25, + "network":"193.232.178.128\/25", + "version":57528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.179.0", + "prefixLen":25, + "network":"193.232.179.0\/25", + "version":57527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.179.0", + "prefixLen":25, + "network":"193.232.179.0\/25", + "version":57527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.179.128", + "prefixLen":25, + "network":"193.232.179.128\/25", + "version":57526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.179.128", + "prefixLen":25, + "network":"193.232.179.128\/25", + "version":57526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.192.0", + "prefixLen":25, + "network":"193.232.192.0\/25", + "version":57525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.192.0", + "prefixLen":25, + "network":"193.232.192.0\/25", + "version":57525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.192.128", + "prefixLen":25, + "network":"193.232.192.128\/25", + "version":57524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.192.128", + "prefixLen":25, + "network":"193.232.192.128\/25", + "version":57524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.193.0", + "prefixLen":25, + "network":"193.232.193.0\/25", + "version":57523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.193.0", + "prefixLen":25, + "network":"193.232.193.0\/25", + "version":57523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.193.128", + "prefixLen":25, + "network":"193.232.193.128\/25", + "version":57522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.193.128", + "prefixLen":25, + "network":"193.232.193.128\/25", + "version":57522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.194.0", + "prefixLen":25, + "network":"193.232.194.0\/25", + "version":57521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.194.0", + "prefixLen":25, + "network":"193.232.194.0\/25", + "version":57521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.194.128", + "prefixLen":25, + "network":"193.232.194.128\/25", + "version":57520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.194.128", + "prefixLen":25, + "network":"193.232.194.128\/25", + "version":57520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.195.0", + "prefixLen":25, + "network":"193.232.195.0\/25", + "version":57519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.195.0", + "prefixLen":25, + "network":"193.232.195.0\/25", + "version":57519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.195.128", + "prefixLen":25, + "network":"193.232.195.128\/25", + "version":57518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.195.128", + "prefixLen":25, + "network":"193.232.195.128\/25", + "version":57518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.208.0", + "prefixLen":25, + "network":"193.232.208.0\/25", + "version":57517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.208.0", + "prefixLen":25, + "network":"193.232.208.0\/25", + "version":57517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.208.128", + "prefixLen":25, + "network":"193.232.208.128\/25", + "version":57516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.208.128", + "prefixLen":25, + "network":"193.232.208.128\/25", + "version":57516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.209.0", + "prefixLen":25, + "network":"193.232.209.0\/25", + "version":57515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.209.0", + "prefixLen":25, + "network":"193.232.209.0\/25", + "version":57515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.209.128", + "prefixLen":25, + "network":"193.232.209.128\/25", + "version":57514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.209.128", + "prefixLen":25, + "network":"193.232.209.128\/25", + "version":57514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.210.0", + "prefixLen":25, + "network":"193.232.210.0\/25", + "version":57513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.210.0", + "prefixLen":25, + "network":"193.232.210.0\/25", + "version":57513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.210.128", + "prefixLen":25, + "network":"193.232.210.128\/25", + "version":57512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.210.128", + "prefixLen":25, + "network":"193.232.210.128\/25", + "version":57512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.211.0", + "prefixLen":25, + "network":"193.232.211.0\/25", + "version":57511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.211.0", + "prefixLen":25, + "network":"193.232.211.0\/25", + "version":57511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.211.128", + "prefixLen":25, + "network":"193.232.211.128\/25", + "version":57510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.211.128", + "prefixLen":25, + "network":"193.232.211.128\/25", + "version":57510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.224.0", + "prefixLen":25, + "network":"193.232.224.0\/25", + "version":57509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.224.0", + "prefixLen":25, + "network":"193.232.224.0\/25", + "version":57509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.224.128", + "prefixLen":25, + "network":"193.232.224.128\/25", + "version":57508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.224.128", + "prefixLen":25, + "network":"193.232.224.128\/25", + "version":57508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.225.0", + "prefixLen":25, + "network":"193.232.225.0\/25", + "version":57507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.225.0", + "prefixLen":25, + "network":"193.232.225.0\/25", + "version":57507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.225.128", + "prefixLen":25, + "network":"193.232.225.128\/25", + "version":57506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.225.128", + "prefixLen":25, + "network":"193.232.225.128\/25", + "version":57506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.226.0", + "prefixLen":25, + "network":"193.232.226.0\/25", + "version":57505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.226.0", + "prefixLen":25, + "network":"193.232.226.0\/25", + "version":57505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.226.128", + "prefixLen":25, + "network":"193.232.226.128\/25", + "version":57504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.226.128", + "prefixLen":25, + "network":"193.232.226.128\/25", + "version":57504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.227.0", + "prefixLen":25, + "network":"193.232.227.0\/25", + "version":57503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.227.0", + "prefixLen":25, + "network":"193.232.227.0\/25", + "version":57503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.227.128", + "prefixLen":25, + "network":"193.232.227.128\/25", + "version":57502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.227.128", + "prefixLen":25, + "network":"193.232.227.128\/25", + "version":57502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.240.0", + "prefixLen":25, + "network":"193.232.240.0\/25", + "version":57501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.240.0", + "prefixLen":25, + "network":"193.232.240.0\/25", + "version":57501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.240.128", + "prefixLen":25, + "network":"193.232.240.128\/25", + "version":57500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.240.128", + "prefixLen":25, + "network":"193.232.240.128\/25", + "version":57500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.241.0", + "prefixLen":25, + "network":"193.232.241.0\/25", + "version":57499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.241.0", + "prefixLen":25, + "network":"193.232.241.0\/25", + "version":57499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.241.128", + "prefixLen":25, + "network":"193.232.241.128\/25", + "version":57498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.241.128", + "prefixLen":25, + "network":"193.232.241.128\/25", + "version":57498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.242.0", + "prefixLen":25, + "network":"193.232.242.0\/25", + "version":57497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.242.0", + "prefixLen":25, + "network":"193.232.242.0\/25", + "version":57497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.242.128", + "prefixLen":25, + "network":"193.232.242.128\/25", + "version":57496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.242.128", + "prefixLen":25, + "network":"193.232.242.128\/25", + "version":57496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.243.0", + "prefixLen":25, + "network":"193.232.243.0\/25", + "version":57495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.243.0", + "prefixLen":25, + "network":"193.232.243.0\/25", + "version":57495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.232.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.232.243.128", + "prefixLen":25, + "network":"193.232.243.128\/25", + "version":57494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.232.243.128", + "prefixLen":25, + "network":"193.232.243.128\/25", + "version":57494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64920 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.0.0", + "prefixLen":25, + "network":"193.233.0.0\/25", + "version":57621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.0.0", + "prefixLen":25, + "network":"193.233.0.0\/25", + "version":57621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.0.128", + "prefixLen":25, + "network":"193.233.0.128\/25", + "version":57748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.0.128", + "prefixLen":25, + "network":"193.233.0.128\/25", + "version":57748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.1.0", + "prefixLen":25, + "network":"193.233.1.0\/25", + "version":57747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.1.0", + "prefixLen":25, + "network":"193.233.1.0\/25", + "version":57747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.1.128", + "prefixLen":25, + "network":"193.233.1.128\/25", + "version":57746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.1.128", + "prefixLen":25, + "network":"193.233.1.128\/25", + "version":57746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.2.0", + "prefixLen":25, + "network":"193.233.2.0\/25", + "version":57745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.2.0", + "prefixLen":25, + "network":"193.233.2.0\/25", + "version":57745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.2.128", + "prefixLen":25, + "network":"193.233.2.128\/25", + "version":57744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.2.128", + "prefixLen":25, + "network":"193.233.2.128\/25", + "version":57744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.3.0", + "prefixLen":25, + "network":"193.233.3.0\/25", + "version":57743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.3.0", + "prefixLen":25, + "network":"193.233.3.0\/25", + "version":57743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.3.128", + "prefixLen":25, + "network":"193.233.3.128\/25", + "version":57742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.3.128", + "prefixLen":25, + "network":"193.233.3.128\/25", + "version":57742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.16.0", + "prefixLen":25, + "network":"193.233.16.0\/25", + "version":57741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.16.0", + "prefixLen":25, + "network":"193.233.16.0\/25", + "version":57741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.16.128", + "prefixLen":25, + "network":"193.233.16.128\/25", + "version":57740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.16.128", + "prefixLen":25, + "network":"193.233.16.128\/25", + "version":57740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.17.0", + "prefixLen":25, + "network":"193.233.17.0\/25", + "version":57739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.17.0", + "prefixLen":25, + "network":"193.233.17.0\/25", + "version":57739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.17.128", + "prefixLen":25, + "network":"193.233.17.128\/25", + "version":57738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.17.128", + "prefixLen":25, + "network":"193.233.17.128\/25", + "version":57738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.18.0", + "prefixLen":25, + "network":"193.233.18.0\/25", + "version":57737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.18.0", + "prefixLen":25, + "network":"193.233.18.0\/25", + "version":57737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.18.128", + "prefixLen":25, + "network":"193.233.18.128\/25", + "version":57736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.18.128", + "prefixLen":25, + "network":"193.233.18.128\/25", + "version":57736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.19.0", + "prefixLen":25, + "network":"193.233.19.0\/25", + "version":57735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.19.0", + "prefixLen":25, + "network":"193.233.19.0\/25", + "version":57735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.19.128", + "prefixLen":25, + "network":"193.233.19.128\/25", + "version":57734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.19.128", + "prefixLen":25, + "network":"193.233.19.128\/25", + "version":57734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.32.0", + "prefixLen":25, + "network":"193.233.32.0\/25", + "version":57733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.32.0", + "prefixLen":25, + "network":"193.233.32.0\/25", + "version":57733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.32.128", + "prefixLen":25, + "network":"193.233.32.128\/25", + "version":57732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.32.128", + "prefixLen":25, + "network":"193.233.32.128\/25", + "version":57732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.33.0", + "prefixLen":25, + "network":"193.233.33.0\/25", + "version":57731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.33.0", + "prefixLen":25, + "network":"193.233.33.0\/25", + "version":57731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.33.128", + "prefixLen":25, + "network":"193.233.33.128\/25", + "version":57730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.33.128", + "prefixLen":25, + "network":"193.233.33.128\/25", + "version":57730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.34.0", + "prefixLen":25, + "network":"193.233.34.0\/25", + "version":57729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.34.0", + "prefixLen":25, + "network":"193.233.34.0\/25", + "version":57729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.34.128", + "prefixLen":25, + "network":"193.233.34.128\/25", + "version":57728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.34.128", + "prefixLen":25, + "network":"193.233.34.128\/25", + "version":57728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.35.0", + "prefixLen":25, + "network":"193.233.35.0\/25", + "version":57727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.35.0", + "prefixLen":25, + "network":"193.233.35.0\/25", + "version":57727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.35.128", + "prefixLen":25, + "network":"193.233.35.128\/25", + "version":57726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.35.128", + "prefixLen":25, + "network":"193.233.35.128\/25", + "version":57726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.48.0", + "prefixLen":25, + "network":"193.233.48.0\/25", + "version":57725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.48.0", + "prefixLen":25, + "network":"193.233.48.0\/25", + "version":57725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.48.128", + "prefixLen":25, + "network":"193.233.48.128\/25", + "version":57724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.48.128", + "prefixLen":25, + "network":"193.233.48.128\/25", + "version":57724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.49.0", + "prefixLen":25, + "network":"193.233.49.0\/25", + "version":57723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.49.0", + "prefixLen":25, + "network":"193.233.49.0\/25", + "version":57723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.49.128", + "prefixLen":25, + "network":"193.233.49.128\/25", + "version":57722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.49.128", + "prefixLen":25, + "network":"193.233.49.128\/25", + "version":57722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.50.0", + "prefixLen":25, + "network":"193.233.50.0\/25", + "version":57721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.50.0", + "prefixLen":25, + "network":"193.233.50.0\/25", + "version":57721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.50.128", + "prefixLen":25, + "network":"193.233.50.128\/25", + "version":57720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.50.128", + "prefixLen":25, + "network":"193.233.50.128\/25", + "version":57720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.51.0", + "prefixLen":25, + "network":"193.233.51.0\/25", + "version":57719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.51.0", + "prefixLen":25, + "network":"193.233.51.0\/25", + "version":57719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.51.128", + "prefixLen":25, + "network":"193.233.51.128\/25", + "version":57718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.51.128", + "prefixLen":25, + "network":"193.233.51.128\/25", + "version":57718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.64.0", + "prefixLen":25, + "network":"193.233.64.0\/25", + "version":57717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.64.0", + "prefixLen":25, + "network":"193.233.64.0\/25", + "version":57717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.64.128", + "prefixLen":25, + "network":"193.233.64.128\/25", + "version":57716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.64.128", + "prefixLen":25, + "network":"193.233.64.128\/25", + "version":57716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.65.0", + "prefixLen":25, + "network":"193.233.65.0\/25", + "version":57715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.65.0", + "prefixLen":25, + "network":"193.233.65.0\/25", + "version":57715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.65.128", + "prefixLen":25, + "network":"193.233.65.128\/25", + "version":57714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.65.128", + "prefixLen":25, + "network":"193.233.65.128\/25", + "version":57714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.66.0", + "prefixLen":25, + "network":"193.233.66.0\/25", + "version":57713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.66.0", + "prefixLen":25, + "network":"193.233.66.0\/25", + "version":57713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.66.128", + "prefixLen":25, + "network":"193.233.66.128\/25", + "version":57712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.66.128", + "prefixLen":25, + "network":"193.233.66.128\/25", + "version":57712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.67.0", + "prefixLen":25, + "network":"193.233.67.0\/25", + "version":57711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.67.0", + "prefixLen":25, + "network":"193.233.67.0\/25", + "version":57711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.67.128", + "prefixLen":25, + "network":"193.233.67.128\/25", + "version":57710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.67.128", + "prefixLen":25, + "network":"193.233.67.128\/25", + "version":57710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.80.0", + "prefixLen":25, + "network":"193.233.80.0\/25", + "version":57709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.80.0", + "prefixLen":25, + "network":"193.233.80.0\/25", + "version":57709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.80.128", + "prefixLen":25, + "network":"193.233.80.128\/25", + "version":57708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.80.128", + "prefixLen":25, + "network":"193.233.80.128\/25", + "version":57708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.81.0", + "prefixLen":25, + "network":"193.233.81.0\/25", + "version":57707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.81.0", + "prefixLen":25, + "network":"193.233.81.0\/25", + "version":57707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.81.128", + "prefixLen":25, + "network":"193.233.81.128\/25", + "version":57706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.81.128", + "prefixLen":25, + "network":"193.233.81.128\/25", + "version":57706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.82.0", + "prefixLen":25, + "network":"193.233.82.0\/25", + "version":57705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.82.0", + "prefixLen":25, + "network":"193.233.82.0\/25", + "version":57705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.82.128", + "prefixLen":25, + "network":"193.233.82.128\/25", + "version":57704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.82.128", + "prefixLen":25, + "network":"193.233.82.128\/25", + "version":57704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.83.0", + "prefixLen":25, + "network":"193.233.83.0\/25", + "version":57703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.83.0", + "prefixLen":25, + "network":"193.233.83.0\/25", + "version":57703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.83.128", + "prefixLen":25, + "network":"193.233.83.128\/25", + "version":57702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.83.128", + "prefixLen":25, + "network":"193.233.83.128\/25", + "version":57702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.96.0", + "prefixLen":25, + "network":"193.233.96.0\/25", + "version":57701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.96.0", + "prefixLen":25, + "network":"193.233.96.0\/25", + "version":57701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.96.128", + "prefixLen":25, + "network":"193.233.96.128\/25", + "version":57700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.96.128", + "prefixLen":25, + "network":"193.233.96.128\/25", + "version":57700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.97.0", + "prefixLen":25, + "network":"193.233.97.0\/25", + "version":57699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.97.0", + "prefixLen":25, + "network":"193.233.97.0\/25", + "version":57699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.97.128", + "prefixLen":25, + "network":"193.233.97.128\/25", + "version":57698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.97.128", + "prefixLen":25, + "network":"193.233.97.128\/25", + "version":57698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.98.0", + "prefixLen":25, + "network":"193.233.98.0\/25", + "version":57697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.98.0", + "prefixLen":25, + "network":"193.233.98.0\/25", + "version":57697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.98.128", + "prefixLen":25, + "network":"193.233.98.128\/25", + "version":57696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.98.128", + "prefixLen":25, + "network":"193.233.98.128\/25", + "version":57696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.99.0", + "prefixLen":25, + "network":"193.233.99.0\/25", + "version":57695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.99.0", + "prefixLen":25, + "network":"193.233.99.0\/25", + "version":57695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.99.128", + "prefixLen":25, + "network":"193.233.99.128\/25", + "version":57694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.99.128", + "prefixLen":25, + "network":"193.233.99.128\/25", + "version":57694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.112.0", + "prefixLen":25, + "network":"193.233.112.0\/25", + "version":57693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.112.0", + "prefixLen":25, + "network":"193.233.112.0\/25", + "version":57693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.112.128", + "prefixLen":25, + "network":"193.233.112.128\/25", + "version":57692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.112.128", + "prefixLen":25, + "network":"193.233.112.128\/25", + "version":57692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.113.0", + "prefixLen":25, + "network":"193.233.113.0\/25", + "version":57691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.113.0", + "prefixLen":25, + "network":"193.233.113.0\/25", + "version":57691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.113.128", + "prefixLen":25, + "network":"193.233.113.128\/25", + "version":57690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.113.128", + "prefixLen":25, + "network":"193.233.113.128\/25", + "version":57690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.114.0", + "prefixLen":25, + "network":"193.233.114.0\/25", + "version":57689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.114.0", + "prefixLen":25, + "network":"193.233.114.0\/25", + "version":57689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.114.128", + "prefixLen":25, + "network":"193.233.114.128\/25", + "version":57688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.114.128", + "prefixLen":25, + "network":"193.233.114.128\/25", + "version":57688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.115.0", + "prefixLen":25, + "network":"193.233.115.0\/25", + "version":57687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.115.0", + "prefixLen":25, + "network":"193.233.115.0\/25", + "version":57687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.115.128", + "prefixLen":25, + "network":"193.233.115.128\/25", + "version":57686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.115.128", + "prefixLen":25, + "network":"193.233.115.128\/25", + "version":57686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.128.0", + "prefixLen":25, + "network":"193.233.128.0\/25", + "version":57685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.128.0", + "prefixLen":25, + "network":"193.233.128.0\/25", + "version":57685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.128.128", + "prefixLen":25, + "network":"193.233.128.128\/25", + "version":57684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.128.128", + "prefixLen":25, + "network":"193.233.128.128\/25", + "version":57684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.129.0", + "prefixLen":25, + "network":"193.233.129.0\/25", + "version":57683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.129.0", + "prefixLen":25, + "network":"193.233.129.0\/25", + "version":57683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.129.128", + "prefixLen":25, + "network":"193.233.129.128\/25", + "version":57682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.129.128", + "prefixLen":25, + "network":"193.233.129.128\/25", + "version":57682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.130.0", + "prefixLen":25, + "network":"193.233.130.0\/25", + "version":57681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.130.0", + "prefixLen":25, + "network":"193.233.130.0\/25", + "version":57681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.130.128", + "prefixLen":25, + "network":"193.233.130.128\/25", + "version":57680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.130.128", + "prefixLen":25, + "network":"193.233.130.128\/25", + "version":57680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.131.0", + "prefixLen":25, + "network":"193.233.131.0\/25", + "version":57679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.131.0", + "prefixLen":25, + "network":"193.233.131.0\/25", + "version":57679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.131.128", + "prefixLen":25, + "network":"193.233.131.128\/25", + "version":57678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.131.128", + "prefixLen":25, + "network":"193.233.131.128\/25", + "version":57678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.144.0", + "prefixLen":25, + "network":"193.233.144.0\/25", + "version":57677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.144.0", + "prefixLen":25, + "network":"193.233.144.0\/25", + "version":57677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.144.128", + "prefixLen":25, + "network":"193.233.144.128\/25", + "version":57676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.144.128", + "prefixLen":25, + "network":"193.233.144.128\/25", + "version":57676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.145.0", + "prefixLen":25, + "network":"193.233.145.0\/25", + "version":57675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.145.0", + "prefixLen":25, + "network":"193.233.145.0\/25", + "version":57675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.145.128", + "prefixLen":25, + "network":"193.233.145.128\/25", + "version":57674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.145.128", + "prefixLen":25, + "network":"193.233.145.128\/25", + "version":57674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.146.0", + "prefixLen":25, + "network":"193.233.146.0\/25", + "version":57673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.146.0", + "prefixLen":25, + "network":"193.233.146.0\/25", + "version":57673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.146.128", + "prefixLen":25, + "network":"193.233.146.128\/25", + "version":57672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.146.128", + "prefixLen":25, + "network":"193.233.146.128\/25", + "version":57672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.147.0", + "prefixLen":25, + "network":"193.233.147.0\/25", + "version":57671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.147.0", + "prefixLen":25, + "network":"193.233.147.0\/25", + "version":57671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.147.128", + "prefixLen":25, + "network":"193.233.147.128\/25", + "version":57670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.147.128", + "prefixLen":25, + "network":"193.233.147.128\/25", + "version":57670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.160.0", + "prefixLen":25, + "network":"193.233.160.0\/25", + "version":57669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.160.0", + "prefixLen":25, + "network":"193.233.160.0\/25", + "version":57669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.160.128", + "prefixLen":25, + "network":"193.233.160.128\/25", + "version":57668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.160.128", + "prefixLen":25, + "network":"193.233.160.128\/25", + "version":57668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.161.0", + "prefixLen":25, + "network":"193.233.161.0\/25", + "version":57667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.161.0", + "prefixLen":25, + "network":"193.233.161.0\/25", + "version":57667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.161.128", + "prefixLen":25, + "network":"193.233.161.128\/25", + "version":57666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.161.128", + "prefixLen":25, + "network":"193.233.161.128\/25", + "version":57666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.162.0", + "prefixLen":25, + "network":"193.233.162.0\/25", + "version":57665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.162.0", + "prefixLen":25, + "network":"193.233.162.0\/25", + "version":57665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.162.128", + "prefixLen":25, + "network":"193.233.162.128\/25", + "version":57664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.162.128", + "prefixLen":25, + "network":"193.233.162.128\/25", + "version":57664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.163.0", + "prefixLen":25, + "network":"193.233.163.0\/25", + "version":57663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.163.0", + "prefixLen":25, + "network":"193.233.163.0\/25", + "version":57663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.163.128", + "prefixLen":25, + "network":"193.233.163.128\/25", + "version":57662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.163.128", + "prefixLen":25, + "network":"193.233.163.128\/25", + "version":57662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.176.0", + "prefixLen":25, + "network":"193.233.176.0\/25", + "version":57661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.176.0", + "prefixLen":25, + "network":"193.233.176.0\/25", + "version":57661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.176.128", + "prefixLen":25, + "network":"193.233.176.128\/25", + "version":57660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.176.128", + "prefixLen":25, + "network":"193.233.176.128\/25", + "version":57660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.177.0", + "prefixLen":25, + "network":"193.233.177.0\/25", + "version":57659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.177.0", + "prefixLen":25, + "network":"193.233.177.0\/25", + "version":57659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.177.128", + "prefixLen":25, + "network":"193.233.177.128\/25", + "version":57658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.177.128", + "prefixLen":25, + "network":"193.233.177.128\/25", + "version":57658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.178.0", + "prefixLen":25, + "network":"193.233.178.0\/25", + "version":57657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.178.0", + "prefixLen":25, + "network":"193.233.178.0\/25", + "version":57657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.178.128", + "prefixLen":25, + "network":"193.233.178.128\/25", + "version":57656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.178.128", + "prefixLen":25, + "network":"193.233.178.128\/25", + "version":57656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.179.0", + "prefixLen":25, + "network":"193.233.179.0\/25", + "version":57655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.179.0", + "prefixLen":25, + "network":"193.233.179.0\/25", + "version":57655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.179.128", + "prefixLen":25, + "network":"193.233.179.128\/25", + "version":57654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.179.128", + "prefixLen":25, + "network":"193.233.179.128\/25", + "version":57654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.192.0", + "prefixLen":25, + "network":"193.233.192.0\/25", + "version":57653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.192.0", + "prefixLen":25, + "network":"193.233.192.0\/25", + "version":57653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.192.128", + "prefixLen":25, + "network":"193.233.192.128\/25", + "version":57652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.192.128", + "prefixLen":25, + "network":"193.233.192.128\/25", + "version":57652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.193.0", + "prefixLen":25, + "network":"193.233.193.0\/25", + "version":57651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.193.0", + "prefixLen":25, + "network":"193.233.193.0\/25", + "version":57651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.193.128", + "prefixLen":25, + "network":"193.233.193.128\/25", + "version":57650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.193.128", + "prefixLen":25, + "network":"193.233.193.128\/25", + "version":57650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.194.0", + "prefixLen":25, + "network":"193.233.194.0\/25", + "version":57649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.194.0", + "prefixLen":25, + "network":"193.233.194.0\/25", + "version":57649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.194.128", + "prefixLen":25, + "network":"193.233.194.128\/25", + "version":57648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.194.128", + "prefixLen":25, + "network":"193.233.194.128\/25", + "version":57648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.195.0", + "prefixLen":25, + "network":"193.233.195.0\/25", + "version":57647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.195.0", + "prefixLen":25, + "network":"193.233.195.0\/25", + "version":57647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.195.128", + "prefixLen":25, + "network":"193.233.195.128\/25", + "version":57646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.195.128", + "prefixLen":25, + "network":"193.233.195.128\/25", + "version":57646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.208.0", + "prefixLen":25, + "network":"193.233.208.0\/25", + "version":57645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.208.0", + "prefixLen":25, + "network":"193.233.208.0\/25", + "version":57645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.208.128", + "prefixLen":25, + "network":"193.233.208.128\/25", + "version":57644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.208.128", + "prefixLen":25, + "network":"193.233.208.128\/25", + "version":57644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.209.0", + "prefixLen":25, + "network":"193.233.209.0\/25", + "version":57643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.209.0", + "prefixLen":25, + "network":"193.233.209.0\/25", + "version":57643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.209.128", + "prefixLen":25, + "network":"193.233.209.128\/25", + "version":57642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.209.128", + "prefixLen":25, + "network":"193.233.209.128\/25", + "version":57642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.210.0", + "prefixLen":25, + "network":"193.233.210.0\/25", + "version":57641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.210.0", + "prefixLen":25, + "network":"193.233.210.0\/25", + "version":57641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.210.128", + "prefixLen":25, + "network":"193.233.210.128\/25", + "version":57640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.210.128", + "prefixLen":25, + "network":"193.233.210.128\/25", + "version":57640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.211.0", + "prefixLen":25, + "network":"193.233.211.0\/25", + "version":57639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.211.0", + "prefixLen":25, + "network":"193.233.211.0\/25", + "version":57639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.211.128", + "prefixLen":25, + "network":"193.233.211.128\/25", + "version":57638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.211.128", + "prefixLen":25, + "network":"193.233.211.128\/25", + "version":57638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.224.0", + "prefixLen":25, + "network":"193.233.224.0\/25", + "version":57637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.224.0", + "prefixLen":25, + "network":"193.233.224.0\/25", + "version":57637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.224.128", + "prefixLen":25, + "network":"193.233.224.128\/25", + "version":57636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.224.128", + "prefixLen":25, + "network":"193.233.224.128\/25", + "version":57636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.225.0", + "prefixLen":25, + "network":"193.233.225.0\/25", + "version":57635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.225.0", + "prefixLen":25, + "network":"193.233.225.0\/25", + "version":57635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.225.128", + "prefixLen":25, + "network":"193.233.225.128\/25", + "version":57634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.225.128", + "prefixLen":25, + "network":"193.233.225.128\/25", + "version":57634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.226.0", + "prefixLen":25, + "network":"193.233.226.0\/25", + "version":57633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.226.0", + "prefixLen":25, + "network":"193.233.226.0\/25", + "version":57633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.226.128", + "prefixLen":25, + "network":"193.233.226.128\/25", + "version":57632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.226.128", + "prefixLen":25, + "network":"193.233.226.128\/25", + "version":57632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.227.0", + "prefixLen":25, + "network":"193.233.227.0\/25", + "version":57631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.227.0", + "prefixLen":25, + "network":"193.233.227.0\/25", + "version":57631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.227.128", + "prefixLen":25, + "network":"193.233.227.128\/25", + "version":57630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.227.128", + "prefixLen":25, + "network":"193.233.227.128\/25", + "version":57630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.240.0", + "prefixLen":25, + "network":"193.233.240.0\/25", + "version":57629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.240.0", + "prefixLen":25, + "network":"193.233.240.0\/25", + "version":57629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.240.128", + "prefixLen":25, + "network":"193.233.240.128\/25", + "version":57628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.240.128", + "prefixLen":25, + "network":"193.233.240.128\/25", + "version":57628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.241.0", + "prefixLen":25, + "network":"193.233.241.0\/25", + "version":57627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.241.0", + "prefixLen":25, + "network":"193.233.241.0\/25", + "version":57627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.241.128", + "prefixLen":25, + "network":"193.233.241.128\/25", + "version":57626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.241.128", + "prefixLen":25, + "network":"193.233.241.128\/25", + "version":57626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.242.0", + "prefixLen":25, + "network":"193.233.242.0\/25", + "version":57625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.242.0", + "prefixLen":25, + "network":"193.233.242.0\/25", + "version":57625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.242.128", + "prefixLen":25, + "network":"193.233.242.128\/25", + "version":57624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.242.128", + "prefixLen":25, + "network":"193.233.242.128\/25", + "version":57624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.243.0", + "prefixLen":25, + "network":"193.233.243.0\/25", + "version":57623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.243.0", + "prefixLen":25, + "network":"193.233.243.0\/25", + "version":57623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.233.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.233.243.128", + "prefixLen":25, + "network":"193.233.243.128\/25", + "version":57622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.233.243.128", + "prefixLen":25, + "network":"193.233.243.128\/25", + "version":57622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64921 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.0.0", + "prefixLen":25, + "network":"193.234.0.0\/25", + "version":57749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.0.0", + "prefixLen":25, + "network":"193.234.0.0\/25", + "version":57749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.0.128", + "prefixLen":25, + "network":"193.234.0.128\/25", + "version":57876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.0.128", + "prefixLen":25, + "network":"193.234.0.128\/25", + "version":57876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.1.0", + "prefixLen":25, + "network":"193.234.1.0\/25", + "version":57875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.1.0", + "prefixLen":25, + "network":"193.234.1.0\/25", + "version":57875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.1.128", + "prefixLen":25, + "network":"193.234.1.128\/25", + "version":57874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.1.128", + "prefixLen":25, + "network":"193.234.1.128\/25", + "version":57874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.2.0", + "prefixLen":25, + "network":"193.234.2.0\/25", + "version":57873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.2.0", + "prefixLen":25, + "network":"193.234.2.0\/25", + "version":57873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.2.128", + "prefixLen":25, + "network":"193.234.2.128\/25", + "version":57872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.2.128", + "prefixLen":25, + "network":"193.234.2.128\/25", + "version":57872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.3.0", + "prefixLen":25, + "network":"193.234.3.0\/25", + "version":57871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.3.0", + "prefixLen":25, + "network":"193.234.3.0\/25", + "version":57871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.3.128", + "prefixLen":25, + "network":"193.234.3.128\/25", + "version":57870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.3.128", + "prefixLen":25, + "network":"193.234.3.128\/25", + "version":57870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.16.0", + "prefixLen":25, + "network":"193.234.16.0\/25", + "version":57869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.16.0", + "prefixLen":25, + "network":"193.234.16.0\/25", + "version":57869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.16.128", + "prefixLen":25, + "network":"193.234.16.128\/25", + "version":57868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.16.128", + "prefixLen":25, + "network":"193.234.16.128\/25", + "version":57868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.17.0", + "prefixLen":25, + "network":"193.234.17.0\/25", + "version":57867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.17.0", + "prefixLen":25, + "network":"193.234.17.0\/25", + "version":57867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.17.128", + "prefixLen":25, + "network":"193.234.17.128\/25", + "version":57866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.17.128", + "prefixLen":25, + "network":"193.234.17.128\/25", + "version":57866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.18.0", + "prefixLen":25, + "network":"193.234.18.0\/25", + "version":57865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.18.0", + "prefixLen":25, + "network":"193.234.18.0\/25", + "version":57865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.18.128", + "prefixLen":25, + "network":"193.234.18.128\/25", + "version":57864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.18.128", + "prefixLen":25, + "network":"193.234.18.128\/25", + "version":57864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.19.0", + "prefixLen":25, + "network":"193.234.19.0\/25", + "version":57863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.19.0", + "prefixLen":25, + "network":"193.234.19.0\/25", + "version":57863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.19.128", + "prefixLen":25, + "network":"193.234.19.128\/25", + "version":57862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.19.128", + "prefixLen":25, + "network":"193.234.19.128\/25", + "version":57862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.32.0", + "prefixLen":25, + "network":"193.234.32.0\/25", + "version":57861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.32.0", + "prefixLen":25, + "network":"193.234.32.0\/25", + "version":57861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.32.128", + "prefixLen":25, + "network":"193.234.32.128\/25", + "version":57860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.32.128", + "prefixLen":25, + "network":"193.234.32.128\/25", + "version":57860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.33.0", + "prefixLen":25, + "network":"193.234.33.0\/25", + "version":57859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.33.0", + "prefixLen":25, + "network":"193.234.33.0\/25", + "version":57859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.33.128", + "prefixLen":25, + "network":"193.234.33.128\/25", + "version":57858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.33.128", + "prefixLen":25, + "network":"193.234.33.128\/25", + "version":57858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.34.0", + "prefixLen":25, + "network":"193.234.34.0\/25", + "version":57857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.34.0", + "prefixLen":25, + "network":"193.234.34.0\/25", + "version":57857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.34.128", + "prefixLen":25, + "network":"193.234.34.128\/25", + "version":57856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.34.128", + "prefixLen":25, + "network":"193.234.34.128\/25", + "version":57856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.35.0", + "prefixLen":25, + "network":"193.234.35.0\/25", + "version":57855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.35.0", + "prefixLen":25, + "network":"193.234.35.0\/25", + "version":57855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.35.128", + "prefixLen":25, + "network":"193.234.35.128\/25", + "version":57854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.35.128", + "prefixLen":25, + "network":"193.234.35.128\/25", + "version":57854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.48.0", + "prefixLen":25, + "network":"193.234.48.0\/25", + "version":57853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.48.0", + "prefixLen":25, + "network":"193.234.48.0\/25", + "version":57853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.48.128", + "prefixLen":25, + "network":"193.234.48.128\/25", + "version":57852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.48.128", + "prefixLen":25, + "network":"193.234.48.128\/25", + "version":57852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.49.0", + "prefixLen":25, + "network":"193.234.49.0\/25", + "version":57851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.49.0", + "prefixLen":25, + "network":"193.234.49.0\/25", + "version":57851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.49.128", + "prefixLen":25, + "network":"193.234.49.128\/25", + "version":57850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.49.128", + "prefixLen":25, + "network":"193.234.49.128\/25", + "version":57850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.50.0", + "prefixLen":25, + "network":"193.234.50.0\/25", + "version":57849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.50.0", + "prefixLen":25, + "network":"193.234.50.0\/25", + "version":57849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.50.128", + "prefixLen":25, + "network":"193.234.50.128\/25", + "version":57848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.50.128", + "prefixLen":25, + "network":"193.234.50.128\/25", + "version":57848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.51.0", + "prefixLen":25, + "network":"193.234.51.0\/25", + "version":57847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.51.0", + "prefixLen":25, + "network":"193.234.51.0\/25", + "version":57847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.51.128", + "prefixLen":25, + "network":"193.234.51.128\/25", + "version":57846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.51.128", + "prefixLen":25, + "network":"193.234.51.128\/25", + "version":57846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.64.0", + "prefixLen":25, + "network":"193.234.64.0\/25", + "version":57845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.64.0", + "prefixLen":25, + "network":"193.234.64.0\/25", + "version":57845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.64.128", + "prefixLen":25, + "network":"193.234.64.128\/25", + "version":57844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.64.128", + "prefixLen":25, + "network":"193.234.64.128\/25", + "version":57844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.65.0", + "prefixLen":25, + "network":"193.234.65.0\/25", + "version":57843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.65.0", + "prefixLen":25, + "network":"193.234.65.0\/25", + "version":57843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.65.128", + "prefixLen":25, + "network":"193.234.65.128\/25", + "version":57842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.65.128", + "prefixLen":25, + "network":"193.234.65.128\/25", + "version":57842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.66.0", + "prefixLen":25, + "network":"193.234.66.0\/25", + "version":57841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.66.0", + "prefixLen":25, + "network":"193.234.66.0\/25", + "version":57841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.66.128", + "prefixLen":25, + "network":"193.234.66.128\/25", + "version":57840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.66.128", + "prefixLen":25, + "network":"193.234.66.128\/25", + "version":57840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.67.0", + "prefixLen":25, + "network":"193.234.67.0\/25", + "version":57839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.67.0", + "prefixLen":25, + "network":"193.234.67.0\/25", + "version":57839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.67.128", + "prefixLen":25, + "network":"193.234.67.128\/25", + "version":57838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.67.128", + "prefixLen":25, + "network":"193.234.67.128\/25", + "version":57838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.80.0", + "prefixLen":25, + "network":"193.234.80.0\/25", + "version":57837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.80.0", + "prefixLen":25, + "network":"193.234.80.0\/25", + "version":57837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.80.128", + "prefixLen":25, + "network":"193.234.80.128\/25", + "version":57836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.80.128", + "prefixLen":25, + "network":"193.234.80.128\/25", + "version":57836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.81.0", + "prefixLen":25, + "network":"193.234.81.0\/25", + "version":57835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.81.0", + "prefixLen":25, + "network":"193.234.81.0\/25", + "version":57835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.81.128", + "prefixLen":25, + "network":"193.234.81.128\/25", + "version":57834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.81.128", + "prefixLen":25, + "network":"193.234.81.128\/25", + "version":57834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.82.0", + "prefixLen":25, + "network":"193.234.82.0\/25", + "version":57833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.82.0", + "prefixLen":25, + "network":"193.234.82.0\/25", + "version":57833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.82.128", + "prefixLen":25, + "network":"193.234.82.128\/25", + "version":57832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.82.128", + "prefixLen":25, + "network":"193.234.82.128\/25", + "version":57832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.83.0", + "prefixLen":25, + "network":"193.234.83.0\/25", + "version":57831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.83.0", + "prefixLen":25, + "network":"193.234.83.0\/25", + "version":57831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.83.128", + "prefixLen":25, + "network":"193.234.83.128\/25", + "version":57830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.83.128", + "prefixLen":25, + "network":"193.234.83.128\/25", + "version":57830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.96.0", + "prefixLen":25, + "network":"193.234.96.0\/25", + "version":57829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.96.0", + "prefixLen":25, + "network":"193.234.96.0\/25", + "version":57829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.96.128", + "prefixLen":25, + "network":"193.234.96.128\/25", + "version":57828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.96.128", + "prefixLen":25, + "network":"193.234.96.128\/25", + "version":57828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.97.0", + "prefixLen":25, + "network":"193.234.97.0\/25", + "version":57827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.97.0", + "prefixLen":25, + "network":"193.234.97.0\/25", + "version":57827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.97.128", + "prefixLen":25, + "network":"193.234.97.128\/25", + "version":57826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.97.128", + "prefixLen":25, + "network":"193.234.97.128\/25", + "version":57826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.98.0", + "prefixLen":25, + "network":"193.234.98.0\/25", + "version":57825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.98.0", + "prefixLen":25, + "network":"193.234.98.0\/25", + "version":57825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.98.128", + "prefixLen":25, + "network":"193.234.98.128\/25", + "version":57824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.98.128", + "prefixLen":25, + "network":"193.234.98.128\/25", + "version":57824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.99.0", + "prefixLen":25, + "network":"193.234.99.0\/25", + "version":57823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.99.0", + "prefixLen":25, + "network":"193.234.99.0\/25", + "version":57823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.99.128", + "prefixLen":25, + "network":"193.234.99.128\/25", + "version":57822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.99.128", + "prefixLen":25, + "network":"193.234.99.128\/25", + "version":57822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.112.0", + "prefixLen":25, + "network":"193.234.112.0\/25", + "version":57821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.112.0", + "prefixLen":25, + "network":"193.234.112.0\/25", + "version":57821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.112.128", + "prefixLen":25, + "network":"193.234.112.128\/25", + "version":57820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.112.128", + "prefixLen":25, + "network":"193.234.112.128\/25", + "version":57820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.113.0", + "prefixLen":25, + "network":"193.234.113.0\/25", + "version":57819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.113.0", + "prefixLen":25, + "network":"193.234.113.0\/25", + "version":57819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.113.128", + "prefixLen":25, + "network":"193.234.113.128\/25", + "version":57818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.113.128", + "prefixLen":25, + "network":"193.234.113.128\/25", + "version":57818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.114.0", + "prefixLen":25, + "network":"193.234.114.0\/25", + "version":57817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.114.0", + "prefixLen":25, + "network":"193.234.114.0\/25", + "version":57817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.114.128", + "prefixLen":25, + "network":"193.234.114.128\/25", + "version":57816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.114.128", + "prefixLen":25, + "network":"193.234.114.128\/25", + "version":57816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.115.0", + "prefixLen":25, + "network":"193.234.115.0\/25", + "version":57815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.115.0", + "prefixLen":25, + "network":"193.234.115.0\/25", + "version":57815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.115.128", + "prefixLen":25, + "network":"193.234.115.128\/25", + "version":57814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.115.128", + "prefixLen":25, + "network":"193.234.115.128\/25", + "version":57814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.128.0", + "prefixLen":25, + "network":"193.234.128.0\/25", + "version":57813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.128.0", + "prefixLen":25, + "network":"193.234.128.0\/25", + "version":57813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.128.128", + "prefixLen":25, + "network":"193.234.128.128\/25", + "version":57812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.128.128", + "prefixLen":25, + "network":"193.234.128.128\/25", + "version":57812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.129.0", + "prefixLen":25, + "network":"193.234.129.0\/25", + "version":57811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.129.0", + "prefixLen":25, + "network":"193.234.129.0\/25", + "version":57811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.129.128", + "prefixLen":25, + "network":"193.234.129.128\/25", + "version":57810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.129.128", + "prefixLen":25, + "network":"193.234.129.128\/25", + "version":57810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.130.0", + "prefixLen":25, + "network":"193.234.130.0\/25", + "version":57809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.130.0", + "prefixLen":25, + "network":"193.234.130.0\/25", + "version":57809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.130.128", + "prefixLen":25, + "network":"193.234.130.128\/25", + "version":57808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.130.128", + "prefixLen":25, + "network":"193.234.130.128\/25", + "version":57808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.131.0", + "prefixLen":25, + "network":"193.234.131.0\/25", + "version":57807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.131.0", + "prefixLen":25, + "network":"193.234.131.0\/25", + "version":57807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.131.128", + "prefixLen":25, + "network":"193.234.131.128\/25", + "version":57806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.131.128", + "prefixLen":25, + "network":"193.234.131.128\/25", + "version":57806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.144.0", + "prefixLen":25, + "network":"193.234.144.0\/25", + "version":57805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.144.0", + "prefixLen":25, + "network":"193.234.144.0\/25", + "version":57805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.144.128", + "prefixLen":25, + "network":"193.234.144.128\/25", + "version":57804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.144.128", + "prefixLen":25, + "network":"193.234.144.128\/25", + "version":57804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.145.0", + "prefixLen":25, + "network":"193.234.145.0\/25", + "version":57803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.145.0", + "prefixLen":25, + "network":"193.234.145.0\/25", + "version":57803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.145.128", + "prefixLen":25, + "network":"193.234.145.128\/25", + "version":57802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.145.128", + "prefixLen":25, + "network":"193.234.145.128\/25", + "version":57802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.146.0", + "prefixLen":25, + "network":"193.234.146.0\/25", + "version":57801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.146.0", + "prefixLen":25, + "network":"193.234.146.0\/25", + "version":57801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.146.128", + "prefixLen":25, + "network":"193.234.146.128\/25", + "version":57800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.146.128", + "prefixLen":25, + "network":"193.234.146.128\/25", + "version":57800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.147.0", + "prefixLen":25, + "network":"193.234.147.0\/25", + "version":57799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.147.0", + "prefixLen":25, + "network":"193.234.147.0\/25", + "version":57799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.147.128", + "prefixLen":25, + "network":"193.234.147.128\/25", + "version":57798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.147.128", + "prefixLen":25, + "network":"193.234.147.128\/25", + "version":57798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.160.0", + "prefixLen":25, + "network":"193.234.160.0\/25", + "version":57797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.160.0", + "prefixLen":25, + "network":"193.234.160.0\/25", + "version":57797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.160.128", + "prefixLen":25, + "network":"193.234.160.128\/25", + "version":57796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.160.128", + "prefixLen":25, + "network":"193.234.160.128\/25", + "version":57796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.161.0", + "prefixLen":25, + "network":"193.234.161.0\/25", + "version":57795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.161.0", + "prefixLen":25, + "network":"193.234.161.0\/25", + "version":57795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.161.128", + "prefixLen":25, + "network":"193.234.161.128\/25", + "version":57794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.161.128", + "prefixLen":25, + "network":"193.234.161.128\/25", + "version":57794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.162.0", + "prefixLen":25, + "network":"193.234.162.0\/25", + "version":57793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.162.0", + "prefixLen":25, + "network":"193.234.162.0\/25", + "version":57793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.162.128", + "prefixLen":25, + "network":"193.234.162.128\/25", + "version":57792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.162.128", + "prefixLen":25, + "network":"193.234.162.128\/25", + "version":57792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.163.0", + "prefixLen":25, + "network":"193.234.163.0\/25", + "version":57791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.163.0", + "prefixLen":25, + "network":"193.234.163.0\/25", + "version":57791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.163.128", + "prefixLen":25, + "network":"193.234.163.128\/25", + "version":57790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.163.128", + "prefixLen":25, + "network":"193.234.163.128\/25", + "version":57790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.176.0", + "prefixLen":25, + "network":"193.234.176.0\/25", + "version":57789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.176.0", + "prefixLen":25, + "network":"193.234.176.0\/25", + "version":57789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.176.128", + "prefixLen":25, + "network":"193.234.176.128\/25", + "version":57788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.176.128", + "prefixLen":25, + "network":"193.234.176.128\/25", + "version":57788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.177.0", + "prefixLen":25, + "network":"193.234.177.0\/25", + "version":57787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.177.0", + "prefixLen":25, + "network":"193.234.177.0\/25", + "version":57787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.177.128", + "prefixLen":25, + "network":"193.234.177.128\/25", + "version":57786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.177.128", + "prefixLen":25, + "network":"193.234.177.128\/25", + "version":57786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.178.0", + "prefixLen":25, + "network":"193.234.178.0\/25", + "version":57785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.178.0", + "prefixLen":25, + "network":"193.234.178.0\/25", + "version":57785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.178.128", + "prefixLen":25, + "network":"193.234.178.128\/25", + "version":57784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.178.128", + "prefixLen":25, + "network":"193.234.178.128\/25", + "version":57784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.179.0", + "prefixLen":25, + "network":"193.234.179.0\/25", + "version":57783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.179.0", + "prefixLen":25, + "network":"193.234.179.0\/25", + "version":57783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.179.128", + "prefixLen":25, + "network":"193.234.179.128\/25", + "version":57782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.179.128", + "prefixLen":25, + "network":"193.234.179.128\/25", + "version":57782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.192.0", + "prefixLen":25, + "network":"193.234.192.0\/25", + "version":57781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.192.0", + "prefixLen":25, + "network":"193.234.192.0\/25", + "version":57781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.192.128", + "prefixLen":25, + "network":"193.234.192.128\/25", + "version":57780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.192.128", + "prefixLen":25, + "network":"193.234.192.128\/25", + "version":57780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.193.0", + "prefixLen":25, + "network":"193.234.193.0\/25", + "version":57779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.193.0", + "prefixLen":25, + "network":"193.234.193.0\/25", + "version":57779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.193.128", + "prefixLen":25, + "network":"193.234.193.128\/25", + "version":57778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.193.128", + "prefixLen":25, + "network":"193.234.193.128\/25", + "version":57778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.194.0", + "prefixLen":25, + "network":"193.234.194.0\/25", + "version":57777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.194.0", + "prefixLen":25, + "network":"193.234.194.0\/25", + "version":57777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.194.128", + "prefixLen":25, + "network":"193.234.194.128\/25", + "version":57776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.194.128", + "prefixLen":25, + "network":"193.234.194.128\/25", + "version":57776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.195.0", + "prefixLen":25, + "network":"193.234.195.0\/25", + "version":57775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.195.0", + "prefixLen":25, + "network":"193.234.195.0\/25", + "version":57775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.195.128", + "prefixLen":25, + "network":"193.234.195.128\/25", + "version":57774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.195.128", + "prefixLen":25, + "network":"193.234.195.128\/25", + "version":57774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.208.0", + "prefixLen":25, + "network":"193.234.208.0\/25", + "version":57773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.208.0", + "prefixLen":25, + "network":"193.234.208.0\/25", + "version":57773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.208.128", + "prefixLen":25, + "network":"193.234.208.128\/25", + "version":57772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.208.128", + "prefixLen":25, + "network":"193.234.208.128\/25", + "version":57772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.209.0", + "prefixLen":25, + "network":"193.234.209.0\/25", + "version":57771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.209.0", + "prefixLen":25, + "network":"193.234.209.0\/25", + "version":57771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.209.128", + "prefixLen":25, + "network":"193.234.209.128\/25", + "version":57770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.209.128", + "prefixLen":25, + "network":"193.234.209.128\/25", + "version":57770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.210.0", + "prefixLen":25, + "network":"193.234.210.0\/25", + "version":57769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.210.0", + "prefixLen":25, + "network":"193.234.210.0\/25", + "version":57769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.210.128", + "prefixLen":25, + "network":"193.234.210.128\/25", + "version":57768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.210.128", + "prefixLen":25, + "network":"193.234.210.128\/25", + "version":57768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.211.0", + "prefixLen":25, + "network":"193.234.211.0\/25", + "version":57767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.211.0", + "prefixLen":25, + "network":"193.234.211.0\/25", + "version":57767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.211.128", + "prefixLen":25, + "network":"193.234.211.128\/25", + "version":57766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.211.128", + "prefixLen":25, + "network":"193.234.211.128\/25", + "version":57766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.224.0", + "prefixLen":25, + "network":"193.234.224.0\/25", + "version":57765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.224.0", + "prefixLen":25, + "network":"193.234.224.0\/25", + "version":57765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.224.128", + "prefixLen":25, + "network":"193.234.224.128\/25", + "version":57764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.224.128", + "prefixLen":25, + "network":"193.234.224.128\/25", + "version":57764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.225.0", + "prefixLen":25, + "network":"193.234.225.0\/25", + "version":57763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.225.0", + "prefixLen":25, + "network":"193.234.225.0\/25", + "version":57763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.225.128", + "prefixLen":25, + "network":"193.234.225.128\/25", + "version":57762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.225.128", + "prefixLen":25, + "network":"193.234.225.128\/25", + "version":57762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.226.0", + "prefixLen":25, + "network":"193.234.226.0\/25", + "version":57761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.226.0", + "prefixLen":25, + "network":"193.234.226.0\/25", + "version":57761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.226.128", + "prefixLen":25, + "network":"193.234.226.128\/25", + "version":57760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.226.128", + "prefixLen":25, + "network":"193.234.226.128\/25", + "version":57760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.227.0", + "prefixLen":25, + "network":"193.234.227.0\/25", + "version":57759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.227.0", + "prefixLen":25, + "network":"193.234.227.0\/25", + "version":57759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.227.128", + "prefixLen":25, + "network":"193.234.227.128\/25", + "version":57758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.227.128", + "prefixLen":25, + "network":"193.234.227.128\/25", + "version":57758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.240.0", + "prefixLen":25, + "network":"193.234.240.0\/25", + "version":57757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.240.0", + "prefixLen":25, + "network":"193.234.240.0\/25", + "version":57757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.240.128", + "prefixLen":25, + "network":"193.234.240.128\/25", + "version":57756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.240.128", + "prefixLen":25, + "network":"193.234.240.128\/25", + "version":57756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.241.0", + "prefixLen":25, + "network":"193.234.241.0\/25", + "version":57755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.241.0", + "prefixLen":25, + "network":"193.234.241.0\/25", + "version":57755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.241.128", + "prefixLen":25, + "network":"193.234.241.128\/25", + "version":57754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.241.128", + "prefixLen":25, + "network":"193.234.241.128\/25", + "version":57754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.242.0", + "prefixLen":25, + "network":"193.234.242.0\/25", + "version":57753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.242.0", + "prefixLen":25, + "network":"193.234.242.0\/25", + "version":57753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.242.128", + "prefixLen":25, + "network":"193.234.242.128\/25", + "version":57752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.242.128", + "prefixLen":25, + "network":"193.234.242.128\/25", + "version":57752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.243.0", + "prefixLen":25, + "network":"193.234.243.0\/25", + "version":57751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.243.0", + "prefixLen":25, + "network":"193.234.243.0\/25", + "version":57751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.234.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.234.243.128", + "prefixLen":25, + "network":"193.234.243.128\/25", + "version":57750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.234.243.128", + "prefixLen":25, + "network":"193.234.243.128\/25", + "version":57750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64922 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.0.0", + "prefixLen":25, + "network":"193.235.0.0\/25", + "version":57877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.0.0", + "prefixLen":25, + "network":"193.235.0.0\/25", + "version":57877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.0.128", + "prefixLen":25, + "network":"193.235.0.128\/25", + "version":58004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.0.128", + "prefixLen":25, + "network":"193.235.0.128\/25", + "version":58004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.1.0", + "prefixLen":25, + "network":"193.235.1.0\/25", + "version":58003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.1.0", + "prefixLen":25, + "network":"193.235.1.0\/25", + "version":58003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.1.128", + "prefixLen":25, + "network":"193.235.1.128\/25", + "version":58002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.1.128", + "prefixLen":25, + "network":"193.235.1.128\/25", + "version":58002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.2.0", + "prefixLen":25, + "network":"193.235.2.0\/25", + "version":58001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.2.0", + "prefixLen":25, + "network":"193.235.2.0\/25", + "version":58001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.2.128", + "prefixLen":25, + "network":"193.235.2.128\/25", + "version":58000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.2.128", + "prefixLen":25, + "network":"193.235.2.128\/25", + "version":58000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.3.0", + "prefixLen":25, + "network":"193.235.3.0\/25", + "version":57999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.3.0", + "prefixLen":25, + "network":"193.235.3.0\/25", + "version":57999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.3.128", + "prefixLen":25, + "network":"193.235.3.128\/25", + "version":57998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.3.128", + "prefixLen":25, + "network":"193.235.3.128\/25", + "version":57998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.16.0", + "prefixLen":25, + "network":"193.235.16.0\/25", + "version":57997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.16.0", + "prefixLen":25, + "network":"193.235.16.0\/25", + "version":57997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.16.128", + "prefixLen":25, + "network":"193.235.16.128\/25", + "version":57996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.16.128", + "prefixLen":25, + "network":"193.235.16.128\/25", + "version":57996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.17.0", + "prefixLen":25, + "network":"193.235.17.0\/25", + "version":57995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.17.0", + "prefixLen":25, + "network":"193.235.17.0\/25", + "version":57995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.17.128", + "prefixLen":25, + "network":"193.235.17.128\/25", + "version":57994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.17.128", + "prefixLen":25, + "network":"193.235.17.128\/25", + "version":57994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.18.0", + "prefixLen":25, + "network":"193.235.18.0\/25", + "version":57993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.18.0", + "prefixLen":25, + "network":"193.235.18.0\/25", + "version":57993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.18.128", + "prefixLen":25, + "network":"193.235.18.128\/25", + "version":57992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.18.128", + "prefixLen":25, + "network":"193.235.18.128\/25", + "version":57992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.19.0", + "prefixLen":25, + "network":"193.235.19.0\/25", + "version":57991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.19.0", + "prefixLen":25, + "network":"193.235.19.0\/25", + "version":57991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.19.128", + "prefixLen":25, + "network":"193.235.19.128\/25", + "version":57990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.19.128", + "prefixLen":25, + "network":"193.235.19.128\/25", + "version":57990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.32.0", + "prefixLen":25, + "network":"193.235.32.0\/25", + "version":57989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.32.0", + "prefixLen":25, + "network":"193.235.32.0\/25", + "version":57989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.32.128", + "prefixLen":25, + "network":"193.235.32.128\/25", + "version":57988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.32.128", + "prefixLen":25, + "network":"193.235.32.128\/25", + "version":57988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.33.0", + "prefixLen":25, + "network":"193.235.33.0\/25", + "version":57987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.33.0", + "prefixLen":25, + "network":"193.235.33.0\/25", + "version":57987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.33.128", + "prefixLen":25, + "network":"193.235.33.128\/25", + "version":57986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.33.128", + "prefixLen":25, + "network":"193.235.33.128\/25", + "version":57986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.34.0", + "prefixLen":25, + "network":"193.235.34.0\/25", + "version":57985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.34.0", + "prefixLen":25, + "network":"193.235.34.0\/25", + "version":57985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.34.128", + "prefixLen":25, + "network":"193.235.34.128\/25", + "version":57984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.34.128", + "prefixLen":25, + "network":"193.235.34.128\/25", + "version":57984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.35.0", + "prefixLen":25, + "network":"193.235.35.0\/25", + "version":57983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.35.0", + "prefixLen":25, + "network":"193.235.35.0\/25", + "version":57983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.35.128", + "prefixLen":25, + "network":"193.235.35.128\/25", + "version":57982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.35.128", + "prefixLen":25, + "network":"193.235.35.128\/25", + "version":57982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.48.0", + "prefixLen":25, + "network":"193.235.48.0\/25", + "version":57981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.48.0", + "prefixLen":25, + "network":"193.235.48.0\/25", + "version":57981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.48.128", + "prefixLen":25, + "network":"193.235.48.128\/25", + "version":57980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.48.128", + "prefixLen":25, + "network":"193.235.48.128\/25", + "version":57980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.49.0", + "prefixLen":25, + "network":"193.235.49.0\/25", + "version":57979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.49.0", + "prefixLen":25, + "network":"193.235.49.0\/25", + "version":57979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.49.128", + "prefixLen":25, + "network":"193.235.49.128\/25", + "version":57978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.49.128", + "prefixLen":25, + "network":"193.235.49.128\/25", + "version":57978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.50.0", + "prefixLen":25, + "network":"193.235.50.0\/25", + "version":57977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.50.0", + "prefixLen":25, + "network":"193.235.50.0\/25", + "version":57977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.50.128", + "prefixLen":25, + "network":"193.235.50.128\/25", + "version":57976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.50.128", + "prefixLen":25, + "network":"193.235.50.128\/25", + "version":57976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.51.0", + "prefixLen":25, + "network":"193.235.51.0\/25", + "version":57975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.51.0", + "prefixLen":25, + "network":"193.235.51.0\/25", + "version":57975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.51.128", + "prefixLen":25, + "network":"193.235.51.128\/25", + "version":57974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.51.128", + "prefixLen":25, + "network":"193.235.51.128\/25", + "version":57974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.64.0", + "prefixLen":25, + "network":"193.235.64.0\/25", + "version":57973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.64.0", + "prefixLen":25, + "network":"193.235.64.0\/25", + "version":57973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.64.128", + "prefixLen":25, + "network":"193.235.64.128\/25", + "version":57972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.64.128", + "prefixLen":25, + "network":"193.235.64.128\/25", + "version":57972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.65.0", + "prefixLen":25, + "network":"193.235.65.0\/25", + "version":57971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.65.0", + "prefixLen":25, + "network":"193.235.65.0\/25", + "version":57971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.65.128", + "prefixLen":25, + "network":"193.235.65.128\/25", + "version":57970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.65.128", + "prefixLen":25, + "network":"193.235.65.128\/25", + "version":57970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.66.0", + "prefixLen":25, + "network":"193.235.66.0\/25", + "version":57969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.66.0", + "prefixLen":25, + "network":"193.235.66.0\/25", + "version":57969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.66.128", + "prefixLen":25, + "network":"193.235.66.128\/25", + "version":57968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.66.128", + "prefixLen":25, + "network":"193.235.66.128\/25", + "version":57968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.67.0", + "prefixLen":25, + "network":"193.235.67.0\/25", + "version":57967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.67.0", + "prefixLen":25, + "network":"193.235.67.0\/25", + "version":57967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.67.128", + "prefixLen":25, + "network":"193.235.67.128\/25", + "version":57966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.67.128", + "prefixLen":25, + "network":"193.235.67.128\/25", + "version":57966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.80.0", + "prefixLen":25, + "network":"193.235.80.0\/25", + "version":57965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.80.0", + "prefixLen":25, + "network":"193.235.80.0\/25", + "version":57965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.80.128", + "prefixLen":25, + "network":"193.235.80.128\/25", + "version":57964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.80.128", + "prefixLen":25, + "network":"193.235.80.128\/25", + "version":57964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.81.0", + "prefixLen":25, + "network":"193.235.81.0\/25", + "version":57963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.81.0", + "prefixLen":25, + "network":"193.235.81.0\/25", + "version":57963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.81.128", + "prefixLen":25, + "network":"193.235.81.128\/25", + "version":57962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.81.128", + "prefixLen":25, + "network":"193.235.81.128\/25", + "version":57962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.82.0", + "prefixLen":25, + "network":"193.235.82.0\/25", + "version":57961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.82.0", + "prefixLen":25, + "network":"193.235.82.0\/25", + "version":57961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.82.128", + "prefixLen":25, + "network":"193.235.82.128\/25", + "version":57960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.82.128", + "prefixLen":25, + "network":"193.235.82.128\/25", + "version":57960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.83.0", + "prefixLen":25, + "network":"193.235.83.0\/25", + "version":57959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.83.0", + "prefixLen":25, + "network":"193.235.83.0\/25", + "version":57959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.83.128", + "prefixLen":25, + "network":"193.235.83.128\/25", + "version":57958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.83.128", + "prefixLen":25, + "network":"193.235.83.128\/25", + "version":57958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.96.0", + "prefixLen":25, + "network":"193.235.96.0\/25", + "version":57957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.96.0", + "prefixLen":25, + "network":"193.235.96.0\/25", + "version":57957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.96.128", + "prefixLen":25, + "network":"193.235.96.128\/25", + "version":57956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.96.128", + "prefixLen":25, + "network":"193.235.96.128\/25", + "version":57956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.97.0", + "prefixLen":25, + "network":"193.235.97.0\/25", + "version":57955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.97.0", + "prefixLen":25, + "network":"193.235.97.0\/25", + "version":57955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.97.128", + "prefixLen":25, + "network":"193.235.97.128\/25", + "version":57954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.97.128", + "prefixLen":25, + "network":"193.235.97.128\/25", + "version":57954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.98.0", + "prefixLen":25, + "network":"193.235.98.0\/25", + "version":57953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.98.0", + "prefixLen":25, + "network":"193.235.98.0\/25", + "version":57953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.98.128", + "prefixLen":25, + "network":"193.235.98.128\/25", + "version":57952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.98.128", + "prefixLen":25, + "network":"193.235.98.128\/25", + "version":57952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.99.0", + "prefixLen":25, + "network":"193.235.99.0\/25", + "version":57951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.99.0", + "prefixLen":25, + "network":"193.235.99.0\/25", + "version":57951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.99.128", + "prefixLen":25, + "network":"193.235.99.128\/25", + "version":57950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.99.128", + "prefixLen":25, + "network":"193.235.99.128\/25", + "version":57950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.112.0", + "prefixLen":25, + "network":"193.235.112.0\/25", + "version":57949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.112.0", + "prefixLen":25, + "network":"193.235.112.0\/25", + "version":57949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.112.128", + "prefixLen":25, + "network":"193.235.112.128\/25", + "version":57948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.112.128", + "prefixLen":25, + "network":"193.235.112.128\/25", + "version":57948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.113.0", + "prefixLen":25, + "network":"193.235.113.0\/25", + "version":57947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.113.0", + "prefixLen":25, + "network":"193.235.113.0\/25", + "version":57947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.113.128", + "prefixLen":25, + "network":"193.235.113.128\/25", + "version":57946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.113.128", + "prefixLen":25, + "network":"193.235.113.128\/25", + "version":57946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.114.0", + "prefixLen":25, + "network":"193.235.114.0\/25", + "version":57945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.114.0", + "prefixLen":25, + "network":"193.235.114.0\/25", + "version":57945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.114.128", + "prefixLen":25, + "network":"193.235.114.128\/25", + "version":57944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.114.128", + "prefixLen":25, + "network":"193.235.114.128\/25", + "version":57944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.115.0", + "prefixLen":25, + "network":"193.235.115.0\/25", + "version":57943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.115.0", + "prefixLen":25, + "network":"193.235.115.0\/25", + "version":57943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.115.128", + "prefixLen":25, + "network":"193.235.115.128\/25", + "version":57942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.115.128", + "prefixLen":25, + "network":"193.235.115.128\/25", + "version":57942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.128.0", + "prefixLen":25, + "network":"193.235.128.0\/25", + "version":57941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.128.0", + "prefixLen":25, + "network":"193.235.128.0\/25", + "version":57941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.128.128", + "prefixLen":25, + "network":"193.235.128.128\/25", + "version":57940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.128.128", + "prefixLen":25, + "network":"193.235.128.128\/25", + "version":57940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.129.0", + "prefixLen":25, + "network":"193.235.129.0\/25", + "version":57939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.129.0", + "prefixLen":25, + "network":"193.235.129.0\/25", + "version":57939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.129.128", + "prefixLen":25, + "network":"193.235.129.128\/25", + "version":57938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.129.128", + "prefixLen":25, + "network":"193.235.129.128\/25", + "version":57938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.130.0", + "prefixLen":25, + "network":"193.235.130.0\/25", + "version":57937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.130.0", + "prefixLen":25, + "network":"193.235.130.0\/25", + "version":57937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.130.128", + "prefixLen":25, + "network":"193.235.130.128\/25", + "version":57936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.130.128", + "prefixLen":25, + "network":"193.235.130.128\/25", + "version":57936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.131.0", + "prefixLen":25, + "network":"193.235.131.0\/25", + "version":57935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.131.0", + "prefixLen":25, + "network":"193.235.131.0\/25", + "version":57935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.131.128", + "prefixLen":25, + "network":"193.235.131.128\/25", + "version":57934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.131.128", + "prefixLen":25, + "network":"193.235.131.128\/25", + "version":57934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.144.0", + "prefixLen":25, + "network":"193.235.144.0\/25", + "version":57933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.144.0", + "prefixLen":25, + "network":"193.235.144.0\/25", + "version":57933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.144.128", + "prefixLen":25, + "network":"193.235.144.128\/25", + "version":57932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.144.128", + "prefixLen":25, + "network":"193.235.144.128\/25", + "version":57932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.145.0", + "prefixLen":25, + "network":"193.235.145.0\/25", + "version":57931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.145.0", + "prefixLen":25, + "network":"193.235.145.0\/25", + "version":57931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.145.128", + "prefixLen":25, + "network":"193.235.145.128\/25", + "version":57930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.145.128", + "prefixLen":25, + "network":"193.235.145.128\/25", + "version":57930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.146.0", + "prefixLen":25, + "network":"193.235.146.0\/25", + "version":57929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.146.0", + "prefixLen":25, + "network":"193.235.146.0\/25", + "version":57929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.146.128", + "prefixLen":25, + "network":"193.235.146.128\/25", + "version":57928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.146.128", + "prefixLen":25, + "network":"193.235.146.128\/25", + "version":57928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.147.0", + "prefixLen":25, + "network":"193.235.147.0\/25", + "version":57927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.147.0", + "prefixLen":25, + "network":"193.235.147.0\/25", + "version":57927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.147.128", + "prefixLen":25, + "network":"193.235.147.128\/25", + "version":57926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.147.128", + "prefixLen":25, + "network":"193.235.147.128\/25", + "version":57926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.160.0", + "prefixLen":25, + "network":"193.235.160.0\/25", + "version":57925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.160.0", + "prefixLen":25, + "network":"193.235.160.0\/25", + "version":57925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.160.128", + "prefixLen":25, + "network":"193.235.160.128\/25", + "version":57924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.160.128", + "prefixLen":25, + "network":"193.235.160.128\/25", + "version":57924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.161.0", + "prefixLen":25, + "network":"193.235.161.0\/25", + "version":57923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.161.0", + "prefixLen":25, + "network":"193.235.161.0\/25", + "version":57923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.161.128", + "prefixLen":25, + "network":"193.235.161.128\/25", + "version":57922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.161.128", + "prefixLen":25, + "network":"193.235.161.128\/25", + "version":57922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.162.0", + "prefixLen":25, + "network":"193.235.162.0\/25", + "version":57921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.162.0", + "prefixLen":25, + "network":"193.235.162.0\/25", + "version":57921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.162.128", + "prefixLen":25, + "network":"193.235.162.128\/25", + "version":57920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.162.128", + "prefixLen":25, + "network":"193.235.162.128\/25", + "version":57920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.163.0", + "prefixLen":25, + "network":"193.235.163.0\/25", + "version":57919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.163.0", + "prefixLen":25, + "network":"193.235.163.0\/25", + "version":57919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.163.128", + "prefixLen":25, + "network":"193.235.163.128\/25", + "version":57918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.163.128", + "prefixLen":25, + "network":"193.235.163.128\/25", + "version":57918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.176.0", + "prefixLen":25, + "network":"193.235.176.0\/25", + "version":57917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.176.0", + "prefixLen":25, + "network":"193.235.176.0\/25", + "version":57917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.176.128", + "prefixLen":25, + "network":"193.235.176.128\/25", + "version":57916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.176.128", + "prefixLen":25, + "network":"193.235.176.128\/25", + "version":57916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.177.0", + "prefixLen":25, + "network":"193.235.177.0\/25", + "version":57915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.177.0", + "prefixLen":25, + "network":"193.235.177.0\/25", + "version":57915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.177.128", + "prefixLen":25, + "network":"193.235.177.128\/25", + "version":57914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.177.128", + "prefixLen":25, + "network":"193.235.177.128\/25", + "version":57914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.178.0", + "prefixLen":25, + "network":"193.235.178.0\/25", + "version":57913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.178.0", + "prefixLen":25, + "network":"193.235.178.0\/25", + "version":57913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.178.128", + "prefixLen":25, + "network":"193.235.178.128\/25", + "version":57912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.178.128", + "prefixLen":25, + "network":"193.235.178.128\/25", + "version":57912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.179.0", + "prefixLen":25, + "network":"193.235.179.0\/25", + "version":57911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.179.0", + "prefixLen":25, + "network":"193.235.179.0\/25", + "version":57911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.179.128", + "prefixLen":25, + "network":"193.235.179.128\/25", + "version":57910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.179.128", + "prefixLen":25, + "network":"193.235.179.128\/25", + "version":57910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.192.0", + "prefixLen":25, + "network":"193.235.192.0\/25", + "version":57909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.192.0", + "prefixLen":25, + "network":"193.235.192.0\/25", + "version":57909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.192.128", + "prefixLen":25, + "network":"193.235.192.128\/25", + "version":57908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.192.128", + "prefixLen":25, + "network":"193.235.192.128\/25", + "version":57908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.193.0", + "prefixLen":25, + "network":"193.235.193.0\/25", + "version":57907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.193.0", + "prefixLen":25, + "network":"193.235.193.0\/25", + "version":57907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.193.128", + "prefixLen":25, + "network":"193.235.193.128\/25", + "version":57906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.193.128", + "prefixLen":25, + "network":"193.235.193.128\/25", + "version":57906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.194.0", + "prefixLen":25, + "network":"193.235.194.0\/25", + "version":57905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.194.0", + "prefixLen":25, + "network":"193.235.194.0\/25", + "version":57905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.194.128", + "prefixLen":25, + "network":"193.235.194.128\/25", + "version":57904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.194.128", + "prefixLen":25, + "network":"193.235.194.128\/25", + "version":57904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.195.0", + "prefixLen":25, + "network":"193.235.195.0\/25", + "version":57903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.195.0", + "prefixLen":25, + "network":"193.235.195.0\/25", + "version":57903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.195.128", + "prefixLen":25, + "network":"193.235.195.128\/25", + "version":57902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.195.128", + "prefixLen":25, + "network":"193.235.195.128\/25", + "version":57902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.208.0", + "prefixLen":25, + "network":"193.235.208.0\/25", + "version":57901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.208.0", + "prefixLen":25, + "network":"193.235.208.0\/25", + "version":57901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.208.128", + "prefixLen":25, + "network":"193.235.208.128\/25", + "version":57900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.208.128", + "prefixLen":25, + "network":"193.235.208.128\/25", + "version":57900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.209.0", + "prefixLen":25, + "network":"193.235.209.0\/25", + "version":57899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.209.0", + "prefixLen":25, + "network":"193.235.209.0\/25", + "version":57899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.209.128", + "prefixLen":25, + "network":"193.235.209.128\/25", + "version":57898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.209.128", + "prefixLen":25, + "network":"193.235.209.128\/25", + "version":57898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.210.0", + "prefixLen":25, + "network":"193.235.210.0\/25", + "version":57897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.210.0", + "prefixLen":25, + "network":"193.235.210.0\/25", + "version":57897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.210.128", + "prefixLen":25, + "network":"193.235.210.128\/25", + "version":57896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.210.128", + "prefixLen":25, + "network":"193.235.210.128\/25", + "version":57896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.211.0", + "prefixLen":25, + "network":"193.235.211.0\/25", + "version":57895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.211.0", + "prefixLen":25, + "network":"193.235.211.0\/25", + "version":57895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.211.128", + "prefixLen":25, + "network":"193.235.211.128\/25", + "version":57894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.211.128", + "prefixLen":25, + "network":"193.235.211.128\/25", + "version":57894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.224.0", + "prefixLen":25, + "network":"193.235.224.0\/25", + "version":57893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.224.0", + "prefixLen":25, + "network":"193.235.224.0\/25", + "version":57893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.224.128", + "prefixLen":25, + "network":"193.235.224.128\/25", + "version":57892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.224.128", + "prefixLen":25, + "network":"193.235.224.128\/25", + "version":57892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.225.0", + "prefixLen":25, + "network":"193.235.225.0\/25", + "version":57891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.225.0", + "prefixLen":25, + "network":"193.235.225.0\/25", + "version":57891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.225.128", + "prefixLen":25, + "network":"193.235.225.128\/25", + "version":57890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.225.128", + "prefixLen":25, + "network":"193.235.225.128\/25", + "version":57890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.226.0", + "prefixLen":25, + "network":"193.235.226.0\/25", + "version":57889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.226.0", + "prefixLen":25, + "network":"193.235.226.0\/25", + "version":57889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.226.128", + "prefixLen":25, + "network":"193.235.226.128\/25", + "version":57888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.226.128", + "prefixLen":25, + "network":"193.235.226.128\/25", + "version":57888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.227.0", + "prefixLen":25, + "network":"193.235.227.0\/25", + "version":57887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.227.0", + "prefixLen":25, + "network":"193.235.227.0\/25", + "version":57887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.227.128", + "prefixLen":25, + "network":"193.235.227.128\/25", + "version":57886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.227.128", + "prefixLen":25, + "network":"193.235.227.128\/25", + "version":57886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.240.0", + "prefixLen":25, + "network":"193.235.240.0\/25", + "version":57885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.240.0", + "prefixLen":25, + "network":"193.235.240.0\/25", + "version":57885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.240.128", + "prefixLen":25, + "network":"193.235.240.128\/25", + "version":57884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.240.128", + "prefixLen":25, + "network":"193.235.240.128\/25", + "version":57884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.241.0", + "prefixLen":25, + "network":"193.235.241.0\/25", + "version":57883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.241.0", + "prefixLen":25, + "network":"193.235.241.0\/25", + "version":57883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.241.128", + "prefixLen":25, + "network":"193.235.241.128\/25", + "version":57882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.241.128", + "prefixLen":25, + "network":"193.235.241.128\/25", + "version":57882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.242.0", + "prefixLen":25, + "network":"193.235.242.0\/25", + "version":57881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.242.0", + "prefixLen":25, + "network":"193.235.242.0\/25", + "version":57881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.242.128", + "prefixLen":25, + "network":"193.235.242.128\/25", + "version":57880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.242.128", + "prefixLen":25, + "network":"193.235.242.128\/25", + "version":57880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.243.0", + "prefixLen":25, + "network":"193.235.243.0\/25", + "version":57879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.243.0", + "prefixLen":25, + "network":"193.235.243.0\/25", + "version":57879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.235.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.235.243.128", + "prefixLen":25, + "network":"193.235.243.128\/25", + "version":57878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.235.243.128", + "prefixLen":25, + "network":"193.235.243.128\/25", + "version":57878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64923 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.0.0", + "prefixLen":25, + "network":"193.236.0.0\/25", + "version":58005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.0.0", + "prefixLen":25, + "network":"193.236.0.0\/25", + "version":58005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.0.128", + "prefixLen":25, + "network":"193.236.0.128\/25", + "version":58132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.0.128", + "prefixLen":25, + "network":"193.236.0.128\/25", + "version":58132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.1.0", + "prefixLen":25, + "network":"193.236.1.0\/25", + "version":58131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.1.0", + "prefixLen":25, + "network":"193.236.1.0\/25", + "version":58131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.1.128", + "prefixLen":25, + "network":"193.236.1.128\/25", + "version":58130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.1.128", + "prefixLen":25, + "network":"193.236.1.128\/25", + "version":58130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.2.0", + "prefixLen":25, + "network":"193.236.2.0\/25", + "version":58129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.2.0", + "prefixLen":25, + "network":"193.236.2.0\/25", + "version":58129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.2.128", + "prefixLen":25, + "network":"193.236.2.128\/25", + "version":58128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.2.128", + "prefixLen":25, + "network":"193.236.2.128\/25", + "version":58128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.3.0", + "prefixLen":25, + "network":"193.236.3.0\/25", + "version":58127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.3.0", + "prefixLen":25, + "network":"193.236.3.0\/25", + "version":58127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.3.128", + "prefixLen":25, + "network":"193.236.3.128\/25", + "version":58126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.3.128", + "prefixLen":25, + "network":"193.236.3.128\/25", + "version":58126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.16.0", + "prefixLen":25, + "network":"193.236.16.0\/25", + "version":58125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.16.0", + "prefixLen":25, + "network":"193.236.16.0\/25", + "version":58125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.16.128", + "prefixLen":25, + "network":"193.236.16.128\/25", + "version":58124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.16.128", + "prefixLen":25, + "network":"193.236.16.128\/25", + "version":58124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.17.0", + "prefixLen":25, + "network":"193.236.17.0\/25", + "version":58123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.17.0", + "prefixLen":25, + "network":"193.236.17.0\/25", + "version":58123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.17.128", + "prefixLen":25, + "network":"193.236.17.128\/25", + "version":58122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.17.128", + "prefixLen":25, + "network":"193.236.17.128\/25", + "version":58122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.18.0", + "prefixLen":25, + "network":"193.236.18.0\/25", + "version":58121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.18.0", + "prefixLen":25, + "network":"193.236.18.0\/25", + "version":58121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.18.128", + "prefixLen":25, + "network":"193.236.18.128\/25", + "version":58120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.18.128", + "prefixLen":25, + "network":"193.236.18.128\/25", + "version":58120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.19.0", + "prefixLen":25, + "network":"193.236.19.0\/25", + "version":58119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.19.0", + "prefixLen":25, + "network":"193.236.19.0\/25", + "version":58119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.19.128", + "prefixLen":25, + "network":"193.236.19.128\/25", + "version":58118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.19.128", + "prefixLen":25, + "network":"193.236.19.128\/25", + "version":58118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.32.0", + "prefixLen":25, + "network":"193.236.32.0\/25", + "version":58117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.32.0", + "prefixLen":25, + "network":"193.236.32.0\/25", + "version":58117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.32.128", + "prefixLen":25, + "network":"193.236.32.128\/25", + "version":58116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.32.128", + "prefixLen":25, + "network":"193.236.32.128\/25", + "version":58116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.33.0", + "prefixLen":25, + "network":"193.236.33.0\/25", + "version":58115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.33.0", + "prefixLen":25, + "network":"193.236.33.0\/25", + "version":58115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.33.128", + "prefixLen":25, + "network":"193.236.33.128\/25", + "version":58114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.33.128", + "prefixLen":25, + "network":"193.236.33.128\/25", + "version":58114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.34.0", + "prefixLen":25, + "network":"193.236.34.0\/25", + "version":58113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.34.0", + "prefixLen":25, + "network":"193.236.34.0\/25", + "version":58113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.34.128", + "prefixLen":25, + "network":"193.236.34.128\/25", + "version":58112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.34.128", + "prefixLen":25, + "network":"193.236.34.128\/25", + "version":58112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.35.0", + "prefixLen":25, + "network":"193.236.35.0\/25", + "version":58111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.35.0", + "prefixLen":25, + "network":"193.236.35.0\/25", + "version":58111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.35.128", + "prefixLen":25, + "network":"193.236.35.128\/25", + "version":58110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.35.128", + "prefixLen":25, + "network":"193.236.35.128\/25", + "version":58110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.48.0", + "prefixLen":25, + "network":"193.236.48.0\/25", + "version":58109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.48.0", + "prefixLen":25, + "network":"193.236.48.0\/25", + "version":58109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.48.128", + "prefixLen":25, + "network":"193.236.48.128\/25", + "version":58108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.48.128", + "prefixLen":25, + "network":"193.236.48.128\/25", + "version":58108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.49.0", + "prefixLen":25, + "network":"193.236.49.0\/25", + "version":58107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.49.0", + "prefixLen":25, + "network":"193.236.49.0\/25", + "version":58107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.49.128", + "prefixLen":25, + "network":"193.236.49.128\/25", + "version":58106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.49.128", + "prefixLen":25, + "network":"193.236.49.128\/25", + "version":58106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.50.0", + "prefixLen":25, + "network":"193.236.50.0\/25", + "version":58105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.50.0", + "prefixLen":25, + "network":"193.236.50.0\/25", + "version":58105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.50.128", + "prefixLen":25, + "network":"193.236.50.128\/25", + "version":58104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.50.128", + "prefixLen":25, + "network":"193.236.50.128\/25", + "version":58104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.51.0", + "prefixLen":25, + "network":"193.236.51.0\/25", + "version":58103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.51.0", + "prefixLen":25, + "network":"193.236.51.0\/25", + "version":58103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.51.128", + "prefixLen":25, + "network":"193.236.51.128\/25", + "version":58102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.51.128", + "prefixLen":25, + "network":"193.236.51.128\/25", + "version":58102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.64.0", + "prefixLen":25, + "network":"193.236.64.0\/25", + "version":58101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.64.0", + "prefixLen":25, + "network":"193.236.64.0\/25", + "version":58101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.64.128", + "prefixLen":25, + "network":"193.236.64.128\/25", + "version":58100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.64.128", + "prefixLen":25, + "network":"193.236.64.128\/25", + "version":58100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.65.0", + "prefixLen":25, + "network":"193.236.65.0\/25", + "version":58099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.65.0", + "prefixLen":25, + "network":"193.236.65.0\/25", + "version":58099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.65.128", + "prefixLen":25, + "network":"193.236.65.128\/25", + "version":58098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.65.128", + "prefixLen":25, + "network":"193.236.65.128\/25", + "version":58098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.66.0", + "prefixLen":25, + "network":"193.236.66.0\/25", + "version":58097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.66.0", + "prefixLen":25, + "network":"193.236.66.0\/25", + "version":58097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.66.128", + "prefixLen":25, + "network":"193.236.66.128\/25", + "version":58096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.66.128", + "prefixLen":25, + "network":"193.236.66.128\/25", + "version":58096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.67.0", + "prefixLen":25, + "network":"193.236.67.0\/25", + "version":58095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.67.0", + "prefixLen":25, + "network":"193.236.67.0\/25", + "version":58095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.67.128", + "prefixLen":25, + "network":"193.236.67.128\/25", + "version":58094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.67.128", + "prefixLen":25, + "network":"193.236.67.128\/25", + "version":58094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.80.0", + "prefixLen":25, + "network":"193.236.80.0\/25", + "version":58093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.80.0", + "prefixLen":25, + "network":"193.236.80.0\/25", + "version":58093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.80.128", + "prefixLen":25, + "network":"193.236.80.128\/25", + "version":58092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.80.128", + "prefixLen":25, + "network":"193.236.80.128\/25", + "version":58092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.81.0", + "prefixLen":25, + "network":"193.236.81.0\/25", + "version":58091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.81.0", + "prefixLen":25, + "network":"193.236.81.0\/25", + "version":58091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.81.128", + "prefixLen":25, + "network":"193.236.81.128\/25", + "version":58090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.81.128", + "prefixLen":25, + "network":"193.236.81.128\/25", + "version":58090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.82.0", + "prefixLen":25, + "network":"193.236.82.0\/25", + "version":58089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.82.0", + "prefixLen":25, + "network":"193.236.82.0\/25", + "version":58089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.82.128", + "prefixLen":25, + "network":"193.236.82.128\/25", + "version":58088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.82.128", + "prefixLen":25, + "network":"193.236.82.128\/25", + "version":58088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.83.0", + "prefixLen":25, + "network":"193.236.83.0\/25", + "version":58087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.83.0", + "prefixLen":25, + "network":"193.236.83.0\/25", + "version":58087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.83.128", + "prefixLen":25, + "network":"193.236.83.128\/25", + "version":58086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.83.128", + "prefixLen":25, + "network":"193.236.83.128\/25", + "version":58086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.96.0", + "prefixLen":25, + "network":"193.236.96.0\/25", + "version":58085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.96.0", + "prefixLen":25, + "network":"193.236.96.0\/25", + "version":58085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.96.128", + "prefixLen":25, + "network":"193.236.96.128\/25", + "version":58084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.96.128", + "prefixLen":25, + "network":"193.236.96.128\/25", + "version":58084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.97.0", + "prefixLen":25, + "network":"193.236.97.0\/25", + "version":58083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.97.0", + "prefixLen":25, + "network":"193.236.97.0\/25", + "version":58083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.97.128", + "prefixLen":25, + "network":"193.236.97.128\/25", + "version":58082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.97.128", + "prefixLen":25, + "network":"193.236.97.128\/25", + "version":58082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.98.0", + "prefixLen":25, + "network":"193.236.98.0\/25", + "version":58081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.98.0", + "prefixLen":25, + "network":"193.236.98.0\/25", + "version":58081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.98.128", + "prefixLen":25, + "network":"193.236.98.128\/25", + "version":58080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.98.128", + "prefixLen":25, + "network":"193.236.98.128\/25", + "version":58080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.99.0", + "prefixLen":25, + "network":"193.236.99.0\/25", + "version":58079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.99.0", + "prefixLen":25, + "network":"193.236.99.0\/25", + "version":58079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.99.128", + "prefixLen":25, + "network":"193.236.99.128\/25", + "version":58078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.99.128", + "prefixLen":25, + "network":"193.236.99.128\/25", + "version":58078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.112.0", + "prefixLen":25, + "network":"193.236.112.0\/25", + "version":58077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.112.0", + "prefixLen":25, + "network":"193.236.112.0\/25", + "version":58077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.112.128", + "prefixLen":25, + "network":"193.236.112.128\/25", + "version":58076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.112.128", + "prefixLen":25, + "network":"193.236.112.128\/25", + "version":58076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.113.0", + "prefixLen":25, + "network":"193.236.113.0\/25", + "version":58075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.113.0", + "prefixLen":25, + "network":"193.236.113.0\/25", + "version":58075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.113.128", + "prefixLen":25, + "network":"193.236.113.128\/25", + "version":58074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.113.128", + "prefixLen":25, + "network":"193.236.113.128\/25", + "version":58074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.114.0", + "prefixLen":25, + "network":"193.236.114.0\/25", + "version":58073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.114.0", + "prefixLen":25, + "network":"193.236.114.0\/25", + "version":58073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.114.128", + "prefixLen":25, + "network":"193.236.114.128\/25", + "version":58072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.114.128", + "prefixLen":25, + "network":"193.236.114.128\/25", + "version":58072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.115.0", + "prefixLen":25, + "network":"193.236.115.0\/25", + "version":58071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.115.0", + "prefixLen":25, + "network":"193.236.115.0\/25", + "version":58071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.115.128", + "prefixLen":25, + "network":"193.236.115.128\/25", + "version":58070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.115.128", + "prefixLen":25, + "network":"193.236.115.128\/25", + "version":58070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.128.0", + "prefixLen":25, + "network":"193.236.128.0\/25", + "version":58069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.128.0", + "prefixLen":25, + "network":"193.236.128.0\/25", + "version":58069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.128.128", + "prefixLen":25, + "network":"193.236.128.128\/25", + "version":58068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.128.128", + "prefixLen":25, + "network":"193.236.128.128\/25", + "version":58068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.129.0", + "prefixLen":25, + "network":"193.236.129.0\/25", + "version":58067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.129.0", + "prefixLen":25, + "network":"193.236.129.0\/25", + "version":58067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.129.128", + "prefixLen":25, + "network":"193.236.129.128\/25", + "version":58066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.129.128", + "prefixLen":25, + "network":"193.236.129.128\/25", + "version":58066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.130.0", + "prefixLen":25, + "network":"193.236.130.0\/25", + "version":58065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.130.0", + "prefixLen":25, + "network":"193.236.130.0\/25", + "version":58065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.130.128", + "prefixLen":25, + "network":"193.236.130.128\/25", + "version":58064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.130.128", + "prefixLen":25, + "network":"193.236.130.128\/25", + "version":58064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.131.0", + "prefixLen":25, + "network":"193.236.131.0\/25", + "version":58063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.131.0", + "prefixLen":25, + "network":"193.236.131.0\/25", + "version":58063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.131.128", + "prefixLen":25, + "network":"193.236.131.128\/25", + "version":58062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.131.128", + "prefixLen":25, + "network":"193.236.131.128\/25", + "version":58062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.144.0", + "prefixLen":25, + "network":"193.236.144.0\/25", + "version":58061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.144.0", + "prefixLen":25, + "network":"193.236.144.0\/25", + "version":58061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.144.128", + "prefixLen":25, + "network":"193.236.144.128\/25", + "version":58060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.144.128", + "prefixLen":25, + "network":"193.236.144.128\/25", + "version":58060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.145.0", + "prefixLen":25, + "network":"193.236.145.0\/25", + "version":58059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.145.0", + "prefixLen":25, + "network":"193.236.145.0\/25", + "version":58059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.145.128", + "prefixLen":25, + "network":"193.236.145.128\/25", + "version":58058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.145.128", + "prefixLen":25, + "network":"193.236.145.128\/25", + "version":58058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.146.0", + "prefixLen":25, + "network":"193.236.146.0\/25", + "version":58057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.146.0", + "prefixLen":25, + "network":"193.236.146.0\/25", + "version":58057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.146.128", + "prefixLen":25, + "network":"193.236.146.128\/25", + "version":58056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.146.128", + "prefixLen":25, + "network":"193.236.146.128\/25", + "version":58056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.147.0", + "prefixLen":25, + "network":"193.236.147.0\/25", + "version":58055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.147.0", + "prefixLen":25, + "network":"193.236.147.0\/25", + "version":58055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.147.128", + "prefixLen":25, + "network":"193.236.147.128\/25", + "version":58054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.147.128", + "prefixLen":25, + "network":"193.236.147.128\/25", + "version":58054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.160.0", + "prefixLen":25, + "network":"193.236.160.0\/25", + "version":58053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.160.0", + "prefixLen":25, + "network":"193.236.160.0\/25", + "version":58053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.160.128", + "prefixLen":25, + "network":"193.236.160.128\/25", + "version":58052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.160.128", + "prefixLen":25, + "network":"193.236.160.128\/25", + "version":58052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.161.0", + "prefixLen":25, + "network":"193.236.161.0\/25", + "version":58051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.161.0", + "prefixLen":25, + "network":"193.236.161.0\/25", + "version":58051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.161.128", + "prefixLen":25, + "network":"193.236.161.128\/25", + "version":58050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.161.128", + "prefixLen":25, + "network":"193.236.161.128\/25", + "version":58050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.162.0", + "prefixLen":25, + "network":"193.236.162.0\/25", + "version":58049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.162.0", + "prefixLen":25, + "network":"193.236.162.0\/25", + "version":58049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.162.128", + "prefixLen":25, + "network":"193.236.162.128\/25", + "version":58048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.162.128", + "prefixLen":25, + "network":"193.236.162.128\/25", + "version":58048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.163.0", + "prefixLen":25, + "network":"193.236.163.0\/25", + "version":58047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.163.0", + "prefixLen":25, + "network":"193.236.163.0\/25", + "version":58047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.163.128", + "prefixLen":25, + "network":"193.236.163.128\/25", + "version":58046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.163.128", + "prefixLen":25, + "network":"193.236.163.128\/25", + "version":58046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.176.0", + "prefixLen":25, + "network":"193.236.176.0\/25", + "version":58045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.176.0", + "prefixLen":25, + "network":"193.236.176.0\/25", + "version":58045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.176.128", + "prefixLen":25, + "network":"193.236.176.128\/25", + "version":58044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.176.128", + "prefixLen":25, + "network":"193.236.176.128\/25", + "version":58044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.177.0", + "prefixLen":25, + "network":"193.236.177.0\/25", + "version":58043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.177.0", + "prefixLen":25, + "network":"193.236.177.0\/25", + "version":58043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.177.128", + "prefixLen":25, + "network":"193.236.177.128\/25", + "version":58042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.177.128", + "prefixLen":25, + "network":"193.236.177.128\/25", + "version":58042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.178.0", + "prefixLen":25, + "network":"193.236.178.0\/25", + "version":58041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.178.0", + "prefixLen":25, + "network":"193.236.178.0\/25", + "version":58041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.178.128", + "prefixLen":25, + "network":"193.236.178.128\/25", + "version":58040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.178.128", + "prefixLen":25, + "network":"193.236.178.128\/25", + "version":58040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.179.0", + "prefixLen":25, + "network":"193.236.179.0\/25", + "version":58039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.179.0", + "prefixLen":25, + "network":"193.236.179.0\/25", + "version":58039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.179.128", + "prefixLen":25, + "network":"193.236.179.128\/25", + "version":58038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.179.128", + "prefixLen":25, + "network":"193.236.179.128\/25", + "version":58038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.192.0", + "prefixLen":25, + "network":"193.236.192.0\/25", + "version":58037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.192.0", + "prefixLen":25, + "network":"193.236.192.0\/25", + "version":58037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.192.128", + "prefixLen":25, + "network":"193.236.192.128\/25", + "version":58036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.192.128", + "prefixLen":25, + "network":"193.236.192.128\/25", + "version":58036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.193.0", + "prefixLen":25, + "network":"193.236.193.0\/25", + "version":58035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.193.0", + "prefixLen":25, + "network":"193.236.193.0\/25", + "version":58035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.193.128", + "prefixLen":25, + "network":"193.236.193.128\/25", + "version":58034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.193.128", + "prefixLen":25, + "network":"193.236.193.128\/25", + "version":58034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.194.0", + "prefixLen":25, + "network":"193.236.194.0\/25", + "version":58033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.194.0", + "prefixLen":25, + "network":"193.236.194.0\/25", + "version":58033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.194.128", + "prefixLen":25, + "network":"193.236.194.128\/25", + "version":58032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.194.128", + "prefixLen":25, + "network":"193.236.194.128\/25", + "version":58032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.195.0", + "prefixLen":25, + "network":"193.236.195.0\/25", + "version":58031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.195.0", + "prefixLen":25, + "network":"193.236.195.0\/25", + "version":58031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.195.128", + "prefixLen":25, + "network":"193.236.195.128\/25", + "version":58030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.195.128", + "prefixLen":25, + "network":"193.236.195.128\/25", + "version":58030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.208.0", + "prefixLen":25, + "network":"193.236.208.0\/25", + "version":58029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.208.0", + "prefixLen":25, + "network":"193.236.208.0\/25", + "version":58029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.208.128", + "prefixLen":25, + "network":"193.236.208.128\/25", + "version":58028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.208.128", + "prefixLen":25, + "network":"193.236.208.128\/25", + "version":58028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.209.0", + "prefixLen":25, + "network":"193.236.209.0\/25", + "version":58027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.209.0", + "prefixLen":25, + "network":"193.236.209.0\/25", + "version":58027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.209.128", + "prefixLen":25, + "network":"193.236.209.128\/25", + "version":58026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.209.128", + "prefixLen":25, + "network":"193.236.209.128\/25", + "version":58026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.210.0", + "prefixLen":25, + "network":"193.236.210.0\/25", + "version":58025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.210.0", + "prefixLen":25, + "network":"193.236.210.0\/25", + "version":58025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.210.128", + "prefixLen":25, + "network":"193.236.210.128\/25", + "version":58024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.210.128", + "prefixLen":25, + "network":"193.236.210.128\/25", + "version":58024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.211.0", + "prefixLen":25, + "network":"193.236.211.0\/25", + "version":58023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.211.0", + "prefixLen":25, + "network":"193.236.211.0\/25", + "version":58023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.211.128", + "prefixLen":25, + "network":"193.236.211.128\/25", + "version":58022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.211.128", + "prefixLen":25, + "network":"193.236.211.128\/25", + "version":58022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.224.0", + "prefixLen":25, + "network":"193.236.224.0\/25", + "version":58021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.224.0", + "prefixLen":25, + "network":"193.236.224.0\/25", + "version":58021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.224.128", + "prefixLen":25, + "network":"193.236.224.128\/25", + "version":58020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.224.128", + "prefixLen":25, + "network":"193.236.224.128\/25", + "version":58020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.225.0", + "prefixLen":25, + "network":"193.236.225.0\/25", + "version":58019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.225.0", + "prefixLen":25, + "network":"193.236.225.0\/25", + "version":58019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.225.128", + "prefixLen":25, + "network":"193.236.225.128\/25", + "version":58018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.225.128", + "prefixLen":25, + "network":"193.236.225.128\/25", + "version":58018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.226.0", + "prefixLen":25, + "network":"193.236.226.0\/25", + "version":58017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.226.0", + "prefixLen":25, + "network":"193.236.226.0\/25", + "version":58017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.226.128", + "prefixLen":25, + "network":"193.236.226.128\/25", + "version":58016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.226.128", + "prefixLen":25, + "network":"193.236.226.128\/25", + "version":58016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.227.0", + "prefixLen":25, + "network":"193.236.227.0\/25", + "version":58015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.227.0", + "prefixLen":25, + "network":"193.236.227.0\/25", + "version":58015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.227.128", + "prefixLen":25, + "network":"193.236.227.128\/25", + "version":58014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.227.128", + "prefixLen":25, + "network":"193.236.227.128\/25", + "version":58014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.240.0", + "prefixLen":25, + "network":"193.236.240.0\/25", + "version":58013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.240.0", + "prefixLen":25, + "network":"193.236.240.0\/25", + "version":58013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.240.128", + "prefixLen":25, + "network":"193.236.240.128\/25", + "version":58012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.240.128", + "prefixLen":25, + "network":"193.236.240.128\/25", + "version":58012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.241.0", + "prefixLen":25, + "network":"193.236.241.0\/25", + "version":58011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.241.0", + "prefixLen":25, + "network":"193.236.241.0\/25", + "version":58011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.241.128", + "prefixLen":25, + "network":"193.236.241.128\/25", + "version":58010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.241.128", + "prefixLen":25, + "network":"193.236.241.128\/25", + "version":58010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.242.0", + "prefixLen":25, + "network":"193.236.242.0\/25", + "version":58009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.242.0", + "prefixLen":25, + "network":"193.236.242.0\/25", + "version":58009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.242.128", + "prefixLen":25, + "network":"193.236.242.128\/25", + "version":58008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.242.128", + "prefixLen":25, + "network":"193.236.242.128\/25", + "version":58008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.243.0", + "prefixLen":25, + "network":"193.236.243.0\/25", + "version":58007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.243.0", + "prefixLen":25, + "network":"193.236.243.0\/25", + "version":58007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.236.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.236.243.128", + "prefixLen":25, + "network":"193.236.243.128\/25", + "version":58006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.236.243.128", + "prefixLen":25, + "network":"193.236.243.128\/25", + "version":58006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64924 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.0.0", + "prefixLen":25, + "network":"193.237.0.0\/25", + "version":58133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.0.0", + "prefixLen":25, + "network":"193.237.0.0\/25", + "version":58133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.0.128", + "prefixLen":25, + "network":"193.237.0.128\/25", + "version":58260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.0.128", + "prefixLen":25, + "network":"193.237.0.128\/25", + "version":58260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.1.0", + "prefixLen":25, + "network":"193.237.1.0\/25", + "version":58259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.1.0", + "prefixLen":25, + "network":"193.237.1.0\/25", + "version":58259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.1.128", + "prefixLen":25, + "network":"193.237.1.128\/25", + "version":58258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.1.128", + "prefixLen":25, + "network":"193.237.1.128\/25", + "version":58258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.2.0", + "prefixLen":25, + "network":"193.237.2.0\/25", + "version":58257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.2.0", + "prefixLen":25, + "network":"193.237.2.0\/25", + "version":58257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.2.128", + "prefixLen":25, + "network":"193.237.2.128\/25", + "version":58256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.2.128", + "prefixLen":25, + "network":"193.237.2.128\/25", + "version":58256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.3.0", + "prefixLen":25, + "network":"193.237.3.0\/25", + "version":58255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.3.0", + "prefixLen":25, + "network":"193.237.3.0\/25", + "version":58255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.3.128", + "prefixLen":25, + "network":"193.237.3.128\/25", + "version":58254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.3.128", + "prefixLen":25, + "network":"193.237.3.128\/25", + "version":58254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.16.0", + "prefixLen":25, + "network":"193.237.16.0\/25", + "version":58253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.16.0", + "prefixLen":25, + "network":"193.237.16.0\/25", + "version":58253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.16.128", + "prefixLen":25, + "network":"193.237.16.128\/25", + "version":58252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.16.128", + "prefixLen":25, + "network":"193.237.16.128\/25", + "version":58252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.17.0", + "prefixLen":25, + "network":"193.237.17.0\/25", + "version":58251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.17.0", + "prefixLen":25, + "network":"193.237.17.0\/25", + "version":58251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.17.128", + "prefixLen":25, + "network":"193.237.17.128\/25", + "version":58250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.17.128", + "prefixLen":25, + "network":"193.237.17.128\/25", + "version":58250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.18.0", + "prefixLen":25, + "network":"193.237.18.0\/25", + "version":58249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.18.0", + "prefixLen":25, + "network":"193.237.18.0\/25", + "version":58249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.18.128", + "prefixLen":25, + "network":"193.237.18.128\/25", + "version":58248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.18.128", + "prefixLen":25, + "network":"193.237.18.128\/25", + "version":58248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.19.0", + "prefixLen":25, + "network":"193.237.19.0\/25", + "version":58247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.19.0", + "prefixLen":25, + "network":"193.237.19.0\/25", + "version":58247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.19.128", + "prefixLen":25, + "network":"193.237.19.128\/25", + "version":58246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.19.128", + "prefixLen":25, + "network":"193.237.19.128\/25", + "version":58246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.32.0", + "prefixLen":25, + "network":"193.237.32.0\/25", + "version":58245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.32.0", + "prefixLen":25, + "network":"193.237.32.0\/25", + "version":58245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.32.128", + "prefixLen":25, + "network":"193.237.32.128\/25", + "version":58244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.32.128", + "prefixLen":25, + "network":"193.237.32.128\/25", + "version":58244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.33.0", + "prefixLen":25, + "network":"193.237.33.0\/25", + "version":58243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.33.0", + "prefixLen":25, + "network":"193.237.33.0\/25", + "version":58243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.33.128", + "prefixLen":25, + "network":"193.237.33.128\/25", + "version":58242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.33.128", + "prefixLen":25, + "network":"193.237.33.128\/25", + "version":58242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.34.0", + "prefixLen":25, + "network":"193.237.34.0\/25", + "version":58241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.34.0", + "prefixLen":25, + "network":"193.237.34.0\/25", + "version":58241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.34.128", + "prefixLen":25, + "network":"193.237.34.128\/25", + "version":58240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.34.128", + "prefixLen":25, + "network":"193.237.34.128\/25", + "version":58240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.35.0", + "prefixLen":25, + "network":"193.237.35.0\/25", + "version":58239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.35.0", + "prefixLen":25, + "network":"193.237.35.0\/25", + "version":58239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.35.128", + "prefixLen":25, + "network":"193.237.35.128\/25", + "version":58238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.35.128", + "prefixLen":25, + "network":"193.237.35.128\/25", + "version":58238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.48.0", + "prefixLen":25, + "network":"193.237.48.0\/25", + "version":58237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.48.0", + "prefixLen":25, + "network":"193.237.48.0\/25", + "version":58237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.48.128", + "prefixLen":25, + "network":"193.237.48.128\/25", + "version":58236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.48.128", + "prefixLen":25, + "network":"193.237.48.128\/25", + "version":58236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.49.0", + "prefixLen":25, + "network":"193.237.49.0\/25", + "version":58235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.49.0", + "prefixLen":25, + "network":"193.237.49.0\/25", + "version":58235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.49.128", + "prefixLen":25, + "network":"193.237.49.128\/25", + "version":58234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.49.128", + "prefixLen":25, + "network":"193.237.49.128\/25", + "version":58234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.50.0", + "prefixLen":25, + "network":"193.237.50.0\/25", + "version":58233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.50.0", + "prefixLen":25, + "network":"193.237.50.0\/25", + "version":58233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.50.128", + "prefixLen":25, + "network":"193.237.50.128\/25", + "version":58232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.50.128", + "prefixLen":25, + "network":"193.237.50.128\/25", + "version":58232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.51.0", + "prefixLen":25, + "network":"193.237.51.0\/25", + "version":58231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.51.0", + "prefixLen":25, + "network":"193.237.51.0\/25", + "version":58231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.51.128", + "prefixLen":25, + "network":"193.237.51.128\/25", + "version":58230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.51.128", + "prefixLen":25, + "network":"193.237.51.128\/25", + "version":58230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.64.0", + "prefixLen":25, + "network":"193.237.64.0\/25", + "version":58229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.64.0", + "prefixLen":25, + "network":"193.237.64.0\/25", + "version":58229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.64.128", + "prefixLen":25, + "network":"193.237.64.128\/25", + "version":58228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.64.128", + "prefixLen":25, + "network":"193.237.64.128\/25", + "version":58228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.65.0", + "prefixLen":25, + "network":"193.237.65.0\/25", + "version":58227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.65.0", + "prefixLen":25, + "network":"193.237.65.0\/25", + "version":58227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.65.128", + "prefixLen":25, + "network":"193.237.65.128\/25", + "version":58226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.65.128", + "prefixLen":25, + "network":"193.237.65.128\/25", + "version":58226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.66.0", + "prefixLen":25, + "network":"193.237.66.0\/25", + "version":58225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.66.0", + "prefixLen":25, + "network":"193.237.66.0\/25", + "version":58225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.66.128", + "prefixLen":25, + "network":"193.237.66.128\/25", + "version":58224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.66.128", + "prefixLen":25, + "network":"193.237.66.128\/25", + "version":58224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.67.0", + "prefixLen":25, + "network":"193.237.67.0\/25", + "version":58223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.67.0", + "prefixLen":25, + "network":"193.237.67.0\/25", + "version":58223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.67.128", + "prefixLen":25, + "network":"193.237.67.128\/25", + "version":58222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.67.128", + "prefixLen":25, + "network":"193.237.67.128\/25", + "version":58222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.80.0", + "prefixLen":25, + "network":"193.237.80.0\/25", + "version":58221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.80.0", + "prefixLen":25, + "network":"193.237.80.0\/25", + "version":58221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.80.128", + "prefixLen":25, + "network":"193.237.80.128\/25", + "version":58220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.80.128", + "prefixLen":25, + "network":"193.237.80.128\/25", + "version":58220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.81.0", + "prefixLen":25, + "network":"193.237.81.0\/25", + "version":58219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.81.0", + "prefixLen":25, + "network":"193.237.81.0\/25", + "version":58219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.81.128", + "prefixLen":25, + "network":"193.237.81.128\/25", + "version":58218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.81.128", + "prefixLen":25, + "network":"193.237.81.128\/25", + "version":58218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.82.0", + "prefixLen":25, + "network":"193.237.82.0\/25", + "version":58217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.82.0", + "prefixLen":25, + "network":"193.237.82.0\/25", + "version":58217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.82.128", + "prefixLen":25, + "network":"193.237.82.128\/25", + "version":58216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.82.128", + "prefixLen":25, + "network":"193.237.82.128\/25", + "version":58216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.83.0", + "prefixLen":25, + "network":"193.237.83.0\/25", + "version":58215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.83.0", + "prefixLen":25, + "network":"193.237.83.0\/25", + "version":58215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.83.128", + "prefixLen":25, + "network":"193.237.83.128\/25", + "version":58214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.83.128", + "prefixLen":25, + "network":"193.237.83.128\/25", + "version":58214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.96.0", + "prefixLen":25, + "network":"193.237.96.0\/25", + "version":58213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.96.0", + "prefixLen":25, + "network":"193.237.96.0\/25", + "version":58213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.96.128", + "prefixLen":25, + "network":"193.237.96.128\/25", + "version":58212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.96.128", + "prefixLen":25, + "network":"193.237.96.128\/25", + "version":58212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.97.0", + "prefixLen":25, + "network":"193.237.97.0\/25", + "version":58211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.97.0", + "prefixLen":25, + "network":"193.237.97.0\/25", + "version":58211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.97.128", + "prefixLen":25, + "network":"193.237.97.128\/25", + "version":58210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.97.128", + "prefixLen":25, + "network":"193.237.97.128\/25", + "version":58210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.98.0", + "prefixLen":25, + "network":"193.237.98.0\/25", + "version":58209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.98.0", + "prefixLen":25, + "network":"193.237.98.0\/25", + "version":58209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.98.128", + "prefixLen":25, + "network":"193.237.98.128\/25", + "version":58208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.98.128", + "prefixLen":25, + "network":"193.237.98.128\/25", + "version":58208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.99.0", + "prefixLen":25, + "network":"193.237.99.0\/25", + "version":58207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.99.0", + "prefixLen":25, + "network":"193.237.99.0\/25", + "version":58207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.99.128", + "prefixLen":25, + "network":"193.237.99.128\/25", + "version":58206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.99.128", + "prefixLen":25, + "network":"193.237.99.128\/25", + "version":58206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.112.0", + "prefixLen":25, + "network":"193.237.112.0\/25", + "version":58205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.112.0", + "prefixLen":25, + "network":"193.237.112.0\/25", + "version":58205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.112.128", + "prefixLen":25, + "network":"193.237.112.128\/25", + "version":58204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.112.128", + "prefixLen":25, + "network":"193.237.112.128\/25", + "version":58204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.113.0", + "prefixLen":25, + "network":"193.237.113.0\/25", + "version":58203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.113.0", + "prefixLen":25, + "network":"193.237.113.0\/25", + "version":58203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.113.128", + "prefixLen":25, + "network":"193.237.113.128\/25", + "version":58202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.113.128", + "prefixLen":25, + "network":"193.237.113.128\/25", + "version":58202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.114.0", + "prefixLen":25, + "network":"193.237.114.0\/25", + "version":58201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.114.0", + "prefixLen":25, + "network":"193.237.114.0\/25", + "version":58201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.114.128", + "prefixLen":25, + "network":"193.237.114.128\/25", + "version":58200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.114.128", + "prefixLen":25, + "network":"193.237.114.128\/25", + "version":58200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.115.0", + "prefixLen":25, + "network":"193.237.115.0\/25", + "version":58199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.115.0", + "prefixLen":25, + "network":"193.237.115.0\/25", + "version":58199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.115.128", + "prefixLen":25, + "network":"193.237.115.128\/25", + "version":58198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.115.128", + "prefixLen":25, + "network":"193.237.115.128\/25", + "version":58198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.128.0", + "prefixLen":25, + "network":"193.237.128.0\/25", + "version":58197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.128.0", + "prefixLen":25, + "network":"193.237.128.0\/25", + "version":58197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.128.128", + "prefixLen":25, + "network":"193.237.128.128\/25", + "version":58196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.128.128", + "prefixLen":25, + "network":"193.237.128.128\/25", + "version":58196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.129.0", + "prefixLen":25, + "network":"193.237.129.0\/25", + "version":58195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.129.0", + "prefixLen":25, + "network":"193.237.129.0\/25", + "version":58195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.129.128", + "prefixLen":25, + "network":"193.237.129.128\/25", + "version":58194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.129.128", + "prefixLen":25, + "network":"193.237.129.128\/25", + "version":58194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.130.0", + "prefixLen":25, + "network":"193.237.130.0\/25", + "version":58193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.130.0", + "prefixLen":25, + "network":"193.237.130.0\/25", + "version":58193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.130.128", + "prefixLen":25, + "network":"193.237.130.128\/25", + "version":58192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.130.128", + "prefixLen":25, + "network":"193.237.130.128\/25", + "version":58192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.131.0", + "prefixLen":25, + "network":"193.237.131.0\/25", + "version":58191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.131.0", + "prefixLen":25, + "network":"193.237.131.0\/25", + "version":58191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.131.128", + "prefixLen":25, + "network":"193.237.131.128\/25", + "version":58190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.131.128", + "prefixLen":25, + "network":"193.237.131.128\/25", + "version":58190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.144.0", + "prefixLen":25, + "network":"193.237.144.0\/25", + "version":58189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.144.0", + "prefixLen":25, + "network":"193.237.144.0\/25", + "version":58189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.144.128", + "prefixLen":25, + "network":"193.237.144.128\/25", + "version":58188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.144.128", + "prefixLen":25, + "network":"193.237.144.128\/25", + "version":58188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.145.0", + "prefixLen":25, + "network":"193.237.145.0\/25", + "version":58187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.145.0", + "prefixLen":25, + "network":"193.237.145.0\/25", + "version":58187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.145.128", + "prefixLen":25, + "network":"193.237.145.128\/25", + "version":58186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.145.128", + "prefixLen":25, + "network":"193.237.145.128\/25", + "version":58186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.146.0", + "prefixLen":25, + "network":"193.237.146.0\/25", + "version":58185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.146.0", + "prefixLen":25, + "network":"193.237.146.0\/25", + "version":58185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.146.128", + "prefixLen":25, + "network":"193.237.146.128\/25", + "version":58184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.146.128", + "prefixLen":25, + "network":"193.237.146.128\/25", + "version":58184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.147.0", + "prefixLen":25, + "network":"193.237.147.0\/25", + "version":58183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.147.0", + "prefixLen":25, + "network":"193.237.147.0\/25", + "version":58183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.147.128", + "prefixLen":25, + "network":"193.237.147.128\/25", + "version":58182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.147.128", + "prefixLen":25, + "network":"193.237.147.128\/25", + "version":58182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.160.0", + "prefixLen":25, + "network":"193.237.160.0\/25", + "version":58181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.160.0", + "prefixLen":25, + "network":"193.237.160.0\/25", + "version":58181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.160.128", + "prefixLen":25, + "network":"193.237.160.128\/25", + "version":58180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.160.128", + "prefixLen":25, + "network":"193.237.160.128\/25", + "version":58180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.161.0", + "prefixLen":25, + "network":"193.237.161.0\/25", + "version":58179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.161.0", + "prefixLen":25, + "network":"193.237.161.0\/25", + "version":58179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.161.128", + "prefixLen":25, + "network":"193.237.161.128\/25", + "version":58178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.161.128", + "prefixLen":25, + "network":"193.237.161.128\/25", + "version":58178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.162.0", + "prefixLen":25, + "network":"193.237.162.0\/25", + "version":58177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.162.0", + "prefixLen":25, + "network":"193.237.162.0\/25", + "version":58177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.162.128", + "prefixLen":25, + "network":"193.237.162.128\/25", + "version":58176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.162.128", + "prefixLen":25, + "network":"193.237.162.128\/25", + "version":58176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.163.0", + "prefixLen":25, + "network":"193.237.163.0\/25", + "version":58175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.163.0", + "prefixLen":25, + "network":"193.237.163.0\/25", + "version":58175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.163.128", + "prefixLen":25, + "network":"193.237.163.128\/25", + "version":58174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.163.128", + "prefixLen":25, + "network":"193.237.163.128\/25", + "version":58174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.176.0", + "prefixLen":25, + "network":"193.237.176.0\/25", + "version":58173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.176.0", + "prefixLen":25, + "network":"193.237.176.0\/25", + "version":58173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.176.128", + "prefixLen":25, + "network":"193.237.176.128\/25", + "version":58172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.176.128", + "prefixLen":25, + "network":"193.237.176.128\/25", + "version":58172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.177.0", + "prefixLen":25, + "network":"193.237.177.0\/25", + "version":58171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.177.0", + "prefixLen":25, + "network":"193.237.177.0\/25", + "version":58171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.177.128", + "prefixLen":25, + "network":"193.237.177.128\/25", + "version":58170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.177.128", + "prefixLen":25, + "network":"193.237.177.128\/25", + "version":58170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.178.0", + "prefixLen":25, + "network":"193.237.178.0\/25", + "version":58169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.178.0", + "prefixLen":25, + "network":"193.237.178.0\/25", + "version":58169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.178.128", + "prefixLen":25, + "network":"193.237.178.128\/25", + "version":58168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.178.128", + "prefixLen":25, + "network":"193.237.178.128\/25", + "version":58168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.179.0", + "prefixLen":25, + "network":"193.237.179.0\/25", + "version":58167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.179.0", + "prefixLen":25, + "network":"193.237.179.0\/25", + "version":58167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.179.128", + "prefixLen":25, + "network":"193.237.179.128\/25", + "version":58166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.179.128", + "prefixLen":25, + "network":"193.237.179.128\/25", + "version":58166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.192.0", + "prefixLen":25, + "network":"193.237.192.0\/25", + "version":58165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.192.0", + "prefixLen":25, + "network":"193.237.192.0\/25", + "version":58165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.192.128", + "prefixLen":25, + "network":"193.237.192.128\/25", + "version":58164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.192.128", + "prefixLen":25, + "network":"193.237.192.128\/25", + "version":58164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.193.0", + "prefixLen":25, + "network":"193.237.193.0\/25", + "version":58163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.193.0", + "prefixLen":25, + "network":"193.237.193.0\/25", + "version":58163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.193.128", + "prefixLen":25, + "network":"193.237.193.128\/25", + "version":58162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.193.128", + "prefixLen":25, + "network":"193.237.193.128\/25", + "version":58162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.194.0", + "prefixLen":25, + "network":"193.237.194.0\/25", + "version":58161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.194.0", + "prefixLen":25, + "network":"193.237.194.0\/25", + "version":58161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.194.128", + "prefixLen":25, + "network":"193.237.194.128\/25", + "version":58160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.194.128", + "prefixLen":25, + "network":"193.237.194.128\/25", + "version":58160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.195.0", + "prefixLen":25, + "network":"193.237.195.0\/25", + "version":58159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.195.0", + "prefixLen":25, + "network":"193.237.195.0\/25", + "version":58159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.195.128", + "prefixLen":25, + "network":"193.237.195.128\/25", + "version":58158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.195.128", + "prefixLen":25, + "network":"193.237.195.128\/25", + "version":58158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.208.0", + "prefixLen":25, + "network":"193.237.208.0\/25", + "version":58157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.208.0", + "prefixLen":25, + "network":"193.237.208.0\/25", + "version":58157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.208.128", + "prefixLen":25, + "network":"193.237.208.128\/25", + "version":58156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.208.128", + "prefixLen":25, + "network":"193.237.208.128\/25", + "version":58156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.209.0", + "prefixLen":25, + "network":"193.237.209.0\/25", + "version":58155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.209.0", + "prefixLen":25, + "network":"193.237.209.0\/25", + "version":58155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.209.128", + "prefixLen":25, + "network":"193.237.209.128\/25", + "version":58154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.209.128", + "prefixLen":25, + "network":"193.237.209.128\/25", + "version":58154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.210.0", + "prefixLen":25, + "network":"193.237.210.0\/25", + "version":58153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.210.0", + "prefixLen":25, + "network":"193.237.210.0\/25", + "version":58153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.210.128", + "prefixLen":25, + "network":"193.237.210.128\/25", + "version":58152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.210.128", + "prefixLen":25, + "network":"193.237.210.128\/25", + "version":58152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.211.0", + "prefixLen":25, + "network":"193.237.211.0\/25", + "version":58151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.211.0", + "prefixLen":25, + "network":"193.237.211.0\/25", + "version":58151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.211.128", + "prefixLen":25, + "network":"193.237.211.128\/25", + "version":58150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.211.128", + "prefixLen":25, + "network":"193.237.211.128\/25", + "version":58150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.224.0", + "prefixLen":25, + "network":"193.237.224.0\/25", + "version":58149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.224.0", + "prefixLen":25, + "network":"193.237.224.0\/25", + "version":58149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.224.128", + "prefixLen":25, + "network":"193.237.224.128\/25", + "version":58148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.224.128", + "prefixLen":25, + "network":"193.237.224.128\/25", + "version":58148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.225.0", + "prefixLen":25, + "network":"193.237.225.0\/25", + "version":58147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.225.0", + "prefixLen":25, + "network":"193.237.225.0\/25", + "version":58147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.225.128", + "prefixLen":25, + "network":"193.237.225.128\/25", + "version":58146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.225.128", + "prefixLen":25, + "network":"193.237.225.128\/25", + "version":58146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.226.0", + "prefixLen":25, + "network":"193.237.226.0\/25", + "version":58145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.226.0", + "prefixLen":25, + "network":"193.237.226.0\/25", + "version":58145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.226.128", + "prefixLen":25, + "network":"193.237.226.128\/25", + "version":58144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.226.128", + "prefixLen":25, + "network":"193.237.226.128\/25", + "version":58144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.227.0", + "prefixLen":25, + "network":"193.237.227.0\/25", + "version":58143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.227.0", + "prefixLen":25, + "network":"193.237.227.0\/25", + "version":58143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.227.128", + "prefixLen":25, + "network":"193.237.227.128\/25", + "version":58142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.227.128", + "prefixLen":25, + "network":"193.237.227.128\/25", + "version":58142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.240.0", + "prefixLen":25, + "network":"193.237.240.0\/25", + "version":58141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.240.0", + "prefixLen":25, + "network":"193.237.240.0\/25", + "version":58141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.240.128", + "prefixLen":25, + "network":"193.237.240.128\/25", + "version":58140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.240.128", + "prefixLen":25, + "network":"193.237.240.128\/25", + "version":58140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.241.0", + "prefixLen":25, + "network":"193.237.241.0\/25", + "version":58139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.241.0", + "prefixLen":25, + "network":"193.237.241.0\/25", + "version":58139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.241.128", + "prefixLen":25, + "network":"193.237.241.128\/25", + "version":58138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.241.128", + "prefixLen":25, + "network":"193.237.241.128\/25", + "version":58138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.242.0", + "prefixLen":25, + "network":"193.237.242.0\/25", + "version":58137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.242.0", + "prefixLen":25, + "network":"193.237.242.0\/25", + "version":58137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.242.128", + "prefixLen":25, + "network":"193.237.242.128\/25", + "version":58136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.242.128", + "prefixLen":25, + "network":"193.237.242.128\/25", + "version":58136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.243.0", + "prefixLen":25, + "network":"193.237.243.0\/25", + "version":58135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.243.0", + "prefixLen":25, + "network":"193.237.243.0\/25", + "version":58135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.237.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.237.243.128", + "prefixLen":25, + "network":"193.237.243.128\/25", + "version":58134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.237.243.128", + "prefixLen":25, + "network":"193.237.243.128\/25", + "version":58134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64925 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.0.0", + "prefixLen":25, + "network":"193.238.0.0\/25", + "version":58261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.0.0", + "prefixLen":25, + "network":"193.238.0.0\/25", + "version":58261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.0.128", + "prefixLen":25, + "network":"193.238.0.128\/25", + "version":58388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.0.128", + "prefixLen":25, + "network":"193.238.0.128\/25", + "version":58388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.1.0", + "prefixLen":25, + "network":"193.238.1.0\/25", + "version":58387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.1.0", + "prefixLen":25, + "network":"193.238.1.0\/25", + "version":58387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.1.128", + "prefixLen":25, + "network":"193.238.1.128\/25", + "version":58386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.1.128", + "prefixLen":25, + "network":"193.238.1.128\/25", + "version":58386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.2.0", + "prefixLen":25, + "network":"193.238.2.0\/25", + "version":58385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.2.0", + "prefixLen":25, + "network":"193.238.2.0\/25", + "version":58385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.2.128", + "prefixLen":25, + "network":"193.238.2.128\/25", + "version":58384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.2.128", + "prefixLen":25, + "network":"193.238.2.128\/25", + "version":58384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.3.0", + "prefixLen":25, + "network":"193.238.3.0\/25", + "version":58383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.3.0", + "prefixLen":25, + "network":"193.238.3.0\/25", + "version":58383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.3.128", + "prefixLen":25, + "network":"193.238.3.128\/25", + "version":58382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.3.128", + "prefixLen":25, + "network":"193.238.3.128\/25", + "version":58382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.16.0", + "prefixLen":25, + "network":"193.238.16.0\/25", + "version":58381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.16.0", + "prefixLen":25, + "network":"193.238.16.0\/25", + "version":58381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.16.128", + "prefixLen":25, + "network":"193.238.16.128\/25", + "version":58380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.16.128", + "prefixLen":25, + "network":"193.238.16.128\/25", + "version":58380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.17.0", + "prefixLen":25, + "network":"193.238.17.0\/25", + "version":58379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.17.0", + "prefixLen":25, + "network":"193.238.17.0\/25", + "version":58379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.17.128", + "prefixLen":25, + "network":"193.238.17.128\/25", + "version":58378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.17.128", + "prefixLen":25, + "network":"193.238.17.128\/25", + "version":58378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.18.0", + "prefixLen":25, + "network":"193.238.18.0\/25", + "version":58377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.18.0", + "prefixLen":25, + "network":"193.238.18.0\/25", + "version":58377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.18.128", + "prefixLen":25, + "network":"193.238.18.128\/25", + "version":58376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.18.128", + "prefixLen":25, + "network":"193.238.18.128\/25", + "version":58376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.19.0", + "prefixLen":25, + "network":"193.238.19.0\/25", + "version":58375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.19.0", + "prefixLen":25, + "network":"193.238.19.0\/25", + "version":58375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.19.128", + "prefixLen":25, + "network":"193.238.19.128\/25", + "version":58374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.19.128", + "prefixLen":25, + "network":"193.238.19.128\/25", + "version":58374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.32.0", + "prefixLen":25, + "network":"193.238.32.0\/25", + "version":58373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.32.0", + "prefixLen":25, + "network":"193.238.32.0\/25", + "version":58373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.32.128", + "prefixLen":25, + "network":"193.238.32.128\/25", + "version":58372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.32.128", + "prefixLen":25, + "network":"193.238.32.128\/25", + "version":58372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.33.0", + "prefixLen":25, + "network":"193.238.33.0\/25", + "version":58371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.33.0", + "prefixLen":25, + "network":"193.238.33.0\/25", + "version":58371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.33.128", + "prefixLen":25, + "network":"193.238.33.128\/25", + "version":58370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.33.128", + "prefixLen":25, + "network":"193.238.33.128\/25", + "version":58370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.34.0", + "prefixLen":25, + "network":"193.238.34.0\/25", + "version":58369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.34.0", + "prefixLen":25, + "network":"193.238.34.0\/25", + "version":58369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.34.128", + "prefixLen":25, + "network":"193.238.34.128\/25", + "version":58368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.34.128", + "prefixLen":25, + "network":"193.238.34.128\/25", + "version":58368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.35.0", + "prefixLen":25, + "network":"193.238.35.0\/25", + "version":58367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.35.0", + "prefixLen":25, + "network":"193.238.35.0\/25", + "version":58367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.35.128", + "prefixLen":25, + "network":"193.238.35.128\/25", + "version":58366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.35.128", + "prefixLen":25, + "network":"193.238.35.128\/25", + "version":58366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.48.0", + "prefixLen":25, + "network":"193.238.48.0\/25", + "version":58365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.48.0", + "prefixLen":25, + "network":"193.238.48.0\/25", + "version":58365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.48.128", + "prefixLen":25, + "network":"193.238.48.128\/25", + "version":58364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.48.128", + "prefixLen":25, + "network":"193.238.48.128\/25", + "version":58364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.49.0", + "prefixLen":25, + "network":"193.238.49.0\/25", + "version":58363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.49.0", + "prefixLen":25, + "network":"193.238.49.0\/25", + "version":58363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.49.128", + "prefixLen":25, + "network":"193.238.49.128\/25", + "version":58362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.49.128", + "prefixLen":25, + "network":"193.238.49.128\/25", + "version":58362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.50.0", + "prefixLen":25, + "network":"193.238.50.0\/25", + "version":58361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.50.0", + "prefixLen":25, + "network":"193.238.50.0\/25", + "version":58361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.50.128", + "prefixLen":25, + "network":"193.238.50.128\/25", + "version":58360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.50.128", + "prefixLen":25, + "network":"193.238.50.128\/25", + "version":58360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.51.0", + "prefixLen":25, + "network":"193.238.51.0\/25", + "version":58359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.51.0", + "prefixLen":25, + "network":"193.238.51.0\/25", + "version":58359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.51.128", + "prefixLen":25, + "network":"193.238.51.128\/25", + "version":58358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.51.128", + "prefixLen":25, + "network":"193.238.51.128\/25", + "version":58358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.64.0", + "prefixLen":25, + "network":"193.238.64.0\/25", + "version":58357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.64.0", + "prefixLen":25, + "network":"193.238.64.0\/25", + "version":58357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.64.128", + "prefixLen":25, + "network":"193.238.64.128\/25", + "version":58356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.64.128", + "prefixLen":25, + "network":"193.238.64.128\/25", + "version":58356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.65.0", + "prefixLen":25, + "network":"193.238.65.0\/25", + "version":58355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.65.0", + "prefixLen":25, + "network":"193.238.65.0\/25", + "version":58355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.65.128", + "prefixLen":25, + "network":"193.238.65.128\/25", + "version":58354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.65.128", + "prefixLen":25, + "network":"193.238.65.128\/25", + "version":58354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.66.0", + "prefixLen":25, + "network":"193.238.66.0\/25", + "version":58353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.66.0", + "prefixLen":25, + "network":"193.238.66.0\/25", + "version":58353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.66.128", + "prefixLen":25, + "network":"193.238.66.128\/25", + "version":58352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.66.128", + "prefixLen":25, + "network":"193.238.66.128\/25", + "version":58352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.67.0", + "prefixLen":25, + "network":"193.238.67.0\/25", + "version":58351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.67.0", + "prefixLen":25, + "network":"193.238.67.0\/25", + "version":58351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.67.128", + "prefixLen":25, + "network":"193.238.67.128\/25", + "version":58350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.67.128", + "prefixLen":25, + "network":"193.238.67.128\/25", + "version":58350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.80.0", + "prefixLen":25, + "network":"193.238.80.0\/25", + "version":58349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.80.0", + "prefixLen":25, + "network":"193.238.80.0\/25", + "version":58349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.80.128", + "prefixLen":25, + "network":"193.238.80.128\/25", + "version":58348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.80.128", + "prefixLen":25, + "network":"193.238.80.128\/25", + "version":58348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.81.0", + "prefixLen":25, + "network":"193.238.81.0\/25", + "version":58347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.81.0", + "prefixLen":25, + "network":"193.238.81.0\/25", + "version":58347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.81.128", + "prefixLen":25, + "network":"193.238.81.128\/25", + "version":58346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.81.128", + "prefixLen":25, + "network":"193.238.81.128\/25", + "version":58346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.82.0", + "prefixLen":25, + "network":"193.238.82.0\/25", + "version":58345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.82.0", + "prefixLen":25, + "network":"193.238.82.0\/25", + "version":58345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.82.128", + "prefixLen":25, + "network":"193.238.82.128\/25", + "version":58344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.82.128", + "prefixLen":25, + "network":"193.238.82.128\/25", + "version":58344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.83.0", + "prefixLen":25, + "network":"193.238.83.0\/25", + "version":58343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.83.0", + "prefixLen":25, + "network":"193.238.83.0\/25", + "version":58343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.83.128", + "prefixLen":25, + "network":"193.238.83.128\/25", + "version":58342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.83.128", + "prefixLen":25, + "network":"193.238.83.128\/25", + "version":58342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.96.0", + "prefixLen":25, + "network":"193.238.96.0\/25", + "version":58341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.96.0", + "prefixLen":25, + "network":"193.238.96.0\/25", + "version":58341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.96.128", + "prefixLen":25, + "network":"193.238.96.128\/25", + "version":58340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.96.128", + "prefixLen":25, + "network":"193.238.96.128\/25", + "version":58340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.97.0", + "prefixLen":25, + "network":"193.238.97.0\/25", + "version":58339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.97.0", + "prefixLen":25, + "network":"193.238.97.0\/25", + "version":58339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.97.128", + "prefixLen":25, + "network":"193.238.97.128\/25", + "version":58338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.97.128", + "prefixLen":25, + "network":"193.238.97.128\/25", + "version":58338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.98.0", + "prefixLen":25, + "network":"193.238.98.0\/25", + "version":58337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.98.0", + "prefixLen":25, + "network":"193.238.98.0\/25", + "version":58337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.98.128", + "prefixLen":25, + "network":"193.238.98.128\/25", + "version":58336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.98.128", + "prefixLen":25, + "network":"193.238.98.128\/25", + "version":58336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.99.0", + "prefixLen":25, + "network":"193.238.99.0\/25", + "version":58335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.99.0", + "prefixLen":25, + "network":"193.238.99.0\/25", + "version":58335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.99.128", + "prefixLen":25, + "network":"193.238.99.128\/25", + "version":58334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.99.128", + "prefixLen":25, + "network":"193.238.99.128\/25", + "version":58334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.112.0", + "prefixLen":25, + "network":"193.238.112.0\/25", + "version":58333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.112.0", + "prefixLen":25, + "network":"193.238.112.0\/25", + "version":58333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.112.128", + "prefixLen":25, + "network":"193.238.112.128\/25", + "version":58332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.112.128", + "prefixLen":25, + "network":"193.238.112.128\/25", + "version":58332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.113.0", + "prefixLen":25, + "network":"193.238.113.0\/25", + "version":58331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.113.0", + "prefixLen":25, + "network":"193.238.113.0\/25", + "version":58331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.113.128", + "prefixLen":25, + "network":"193.238.113.128\/25", + "version":58330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.113.128", + "prefixLen":25, + "network":"193.238.113.128\/25", + "version":58330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.114.0", + "prefixLen":25, + "network":"193.238.114.0\/25", + "version":58329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.114.0", + "prefixLen":25, + "network":"193.238.114.0\/25", + "version":58329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.114.128", + "prefixLen":25, + "network":"193.238.114.128\/25", + "version":58328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.114.128", + "prefixLen":25, + "network":"193.238.114.128\/25", + "version":58328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.115.0", + "prefixLen":25, + "network":"193.238.115.0\/25", + "version":58327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.115.0", + "prefixLen":25, + "network":"193.238.115.0\/25", + "version":58327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.115.128", + "prefixLen":25, + "network":"193.238.115.128\/25", + "version":58326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.115.128", + "prefixLen":25, + "network":"193.238.115.128\/25", + "version":58326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.128.0", + "prefixLen":25, + "network":"193.238.128.0\/25", + "version":58325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.128.0", + "prefixLen":25, + "network":"193.238.128.0\/25", + "version":58325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.128.128", + "prefixLen":25, + "network":"193.238.128.128\/25", + "version":58324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.128.128", + "prefixLen":25, + "network":"193.238.128.128\/25", + "version":58324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.129.0", + "prefixLen":25, + "network":"193.238.129.0\/25", + "version":58323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.129.0", + "prefixLen":25, + "network":"193.238.129.0\/25", + "version":58323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.129.128", + "prefixLen":25, + "network":"193.238.129.128\/25", + "version":58322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.129.128", + "prefixLen":25, + "network":"193.238.129.128\/25", + "version":58322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.130.0", + "prefixLen":25, + "network":"193.238.130.0\/25", + "version":58321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.130.0", + "prefixLen":25, + "network":"193.238.130.0\/25", + "version":58321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.130.128", + "prefixLen":25, + "network":"193.238.130.128\/25", + "version":58320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.130.128", + "prefixLen":25, + "network":"193.238.130.128\/25", + "version":58320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.131.0", + "prefixLen":25, + "network":"193.238.131.0\/25", + "version":58319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.131.0", + "prefixLen":25, + "network":"193.238.131.0\/25", + "version":58319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.131.128", + "prefixLen":25, + "network":"193.238.131.128\/25", + "version":58318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.131.128", + "prefixLen":25, + "network":"193.238.131.128\/25", + "version":58318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.144.0", + "prefixLen":25, + "network":"193.238.144.0\/25", + "version":58317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.144.0", + "prefixLen":25, + "network":"193.238.144.0\/25", + "version":58317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.144.128", + "prefixLen":25, + "network":"193.238.144.128\/25", + "version":58316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.144.128", + "prefixLen":25, + "network":"193.238.144.128\/25", + "version":58316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.145.0", + "prefixLen":25, + "network":"193.238.145.0\/25", + "version":58315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.145.0", + "prefixLen":25, + "network":"193.238.145.0\/25", + "version":58315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.145.128", + "prefixLen":25, + "network":"193.238.145.128\/25", + "version":58314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.145.128", + "prefixLen":25, + "network":"193.238.145.128\/25", + "version":58314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.146.0", + "prefixLen":25, + "network":"193.238.146.0\/25", + "version":58313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.146.0", + "prefixLen":25, + "network":"193.238.146.0\/25", + "version":58313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.146.128", + "prefixLen":25, + "network":"193.238.146.128\/25", + "version":58312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.146.128", + "prefixLen":25, + "network":"193.238.146.128\/25", + "version":58312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.147.0", + "prefixLen":25, + "network":"193.238.147.0\/25", + "version":58311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.147.0", + "prefixLen":25, + "network":"193.238.147.0\/25", + "version":58311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.147.128", + "prefixLen":25, + "network":"193.238.147.128\/25", + "version":58310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.147.128", + "prefixLen":25, + "network":"193.238.147.128\/25", + "version":58310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.160.0", + "prefixLen":25, + "network":"193.238.160.0\/25", + "version":58309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.160.0", + "prefixLen":25, + "network":"193.238.160.0\/25", + "version":58309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.160.128", + "prefixLen":25, + "network":"193.238.160.128\/25", + "version":58308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.160.128", + "prefixLen":25, + "network":"193.238.160.128\/25", + "version":58308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.161.0", + "prefixLen":25, + "network":"193.238.161.0\/25", + "version":58307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.161.0", + "prefixLen":25, + "network":"193.238.161.0\/25", + "version":58307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.161.128", + "prefixLen":25, + "network":"193.238.161.128\/25", + "version":58306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.161.128", + "prefixLen":25, + "network":"193.238.161.128\/25", + "version":58306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.162.0", + "prefixLen":25, + "network":"193.238.162.0\/25", + "version":58305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.162.0", + "prefixLen":25, + "network":"193.238.162.0\/25", + "version":58305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.162.128", + "prefixLen":25, + "network":"193.238.162.128\/25", + "version":58304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.162.128", + "prefixLen":25, + "network":"193.238.162.128\/25", + "version":58304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.163.0", + "prefixLen":25, + "network":"193.238.163.0\/25", + "version":58303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.163.0", + "prefixLen":25, + "network":"193.238.163.0\/25", + "version":58303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.163.128", + "prefixLen":25, + "network":"193.238.163.128\/25", + "version":58302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.163.128", + "prefixLen":25, + "network":"193.238.163.128\/25", + "version":58302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.176.0", + "prefixLen":25, + "network":"193.238.176.0\/25", + "version":58301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.176.0", + "prefixLen":25, + "network":"193.238.176.0\/25", + "version":58301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.176.128", + "prefixLen":25, + "network":"193.238.176.128\/25", + "version":58300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.176.128", + "prefixLen":25, + "network":"193.238.176.128\/25", + "version":58300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.177.0", + "prefixLen":25, + "network":"193.238.177.0\/25", + "version":58299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.177.0", + "prefixLen":25, + "network":"193.238.177.0\/25", + "version":58299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.177.128", + "prefixLen":25, + "network":"193.238.177.128\/25", + "version":58298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.177.128", + "prefixLen":25, + "network":"193.238.177.128\/25", + "version":58298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.178.0", + "prefixLen":25, + "network":"193.238.178.0\/25", + "version":58297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.178.0", + "prefixLen":25, + "network":"193.238.178.0\/25", + "version":58297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.178.128", + "prefixLen":25, + "network":"193.238.178.128\/25", + "version":58296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.178.128", + "prefixLen":25, + "network":"193.238.178.128\/25", + "version":58296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.179.0", + "prefixLen":25, + "network":"193.238.179.0\/25", + "version":58295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.179.0", + "prefixLen":25, + "network":"193.238.179.0\/25", + "version":58295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.179.128", + "prefixLen":25, + "network":"193.238.179.128\/25", + "version":58294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.179.128", + "prefixLen":25, + "network":"193.238.179.128\/25", + "version":58294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.192.0", + "prefixLen":25, + "network":"193.238.192.0\/25", + "version":58293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.192.0", + "prefixLen":25, + "network":"193.238.192.0\/25", + "version":58293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.192.128", + "prefixLen":25, + "network":"193.238.192.128\/25", + "version":58292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.192.128", + "prefixLen":25, + "network":"193.238.192.128\/25", + "version":58292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.193.0", + "prefixLen":25, + "network":"193.238.193.0\/25", + "version":58291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.193.0", + "prefixLen":25, + "network":"193.238.193.0\/25", + "version":58291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.193.128", + "prefixLen":25, + "network":"193.238.193.128\/25", + "version":58290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.193.128", + "prefixLen":25, + "network":"193.238.193.128\/25", + "version":58290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.194.0", + "prefixLen":25, + "network":"193.238.194.0\/25", + "version":58289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.194.0", + "prefixLen":25, + "network":"193.238.194.0\/25", + "version":58289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.194.128", + "prefixLen":25, + "network":"193.238.194.128\/25", + "version":58288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.194.128", + "prefixLen":25, + "network":"193.238.194.128\/25", + "version":58288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.195.0", + "prefixLen":25, + "network":"193.238.195.0\/25", + "version":58287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.195.0", + "prefixLen":25, + "network":"193.238.195.0\/25", + "version":58287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.195.128", + "prefixLen":25, + "network":"193.238.195.128\/25", + "version":58286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.195.128", + "prefixLen":25, + "network":"193.238.195.128\/25", + "version":58286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.208.0", + "prefixLen":25, + "network":"193.238.208.0\/25", + "version":58285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.208.0", + "prefixLen":25, + "network":"193.238.208.0\/25", + "version":58285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.208.128", + "prefixLen":25, + "network":"193.238.208.128\/25", + "version":58284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.208.128", + "prefixLen":25, + "network":"193.238.208.128\/25", + "version":58284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.209.0", + "prefixLen":25, + "network":"193.238.209.0\/25", + "version":58283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.209.0", + "prefixLen":25, + "network":"193.238.209.0\/25", + "version":58283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.209.128", + "prefixLen":25, + "network":"193.238.209.128\/25", + "version":58282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.209.128", + "prefixLen":25, + "network":"193.238.209.128\/25", + "version":58282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.210.0", + "prefixLen":25, + "network":"193.238.210.0\/25", + "version":58281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.210.0", + "prefixLen":25, + "network":"193.238.210.0\/25", + "version":58281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.210.128", + "prefixLen":25, + "network":"193.238.210.128\/25", + "version":58280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.210.128", + "prefixLen":25, + "network":"193.238.210.128\/25", + "version":58280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.211.0", + "prefixLen":25, + "network":"193.238.211.0\/25", + "version":58279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.211.0", + "prefixLen":25, + "network":"193.238.211.0\/25", + "version":58279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.211.128", + "prefixLen":25, + "network":"193.238.211.128\/25", + "version":58278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.211.128", + "prefixLen":25, + "network":"193.238.211.128\/25", + "version":58278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.224.0", + "prefixLen":25, + "network":"193.238.224.0\/25", + "version":58277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.224.0", + "prefixLen":25, + "network":"193.238.224.0\/25", + "version":58277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.224.128", + "prefixLen":25, + "network":"193.238.224.128\/25", + "version":58276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.224.128", + "prefixLen":25, + "network":"193.238.224.128\/25", + "version":58276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.225.0", + "prefixLen":25, + "network":"193.238.225.0\/25", + "version":58275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.225.0", + "prefixLen":25, + "network":"193.238.225.0\/25", + "version":58275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.225.128", + "prefixLen":25, + "network":"193.238.225.128\/25", + "version":58274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.225.128", + "prefixLen":25, + "network":"193.238.225.128\/25", + "version":58274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.226.0", + "prefixLen":25, + "network":"193.238.226.0\/25", + "version":58273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.226.0", + "prefixLen":25, + "network":"193.238.226.0\/25", + "version":58273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.226.128", + "prefixLen":25, + "network":"193.238.226.128\/25", + "version":58272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.226.128", + "prefixLen":25, + "network":"193.238.226.128\/25", + "version":58272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.227.0", + "prefixLen":25, + "network":"193.238.227.0\/25", + "version":58271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.227.0", + "prefixLen":25, + "network":"193.238.227.0\/25", + "version":58271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.227.128", + "prefixLen":25, + "network":"193.238.227.128\/25", + "version":58270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.227.128", + "prefixLen":25, + "network":"193.238.227.128\/25", + "version":58270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.240.0", + "prefixLen":25, + "network":"193.238.240.0\/25", + "version":58269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.240.0", + "prefixLen":25, + "network":"193.238.240.0\/25", + "version":58269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.240.128", + "prefixLen":25, + "network":"193.238.240.128\/25", + "version":58268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.240.128", + "prefixLen":25, + "network":"193.238.240.128\/25", + "version":58268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.241.0", + "prefixLen":25, + "network":"193.238.241.0\/25", + "version":58267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.241.0", + "prefixLen":25, + "network":"193.238.241.0\/25", + "version":58267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.241.128", + "prefixLen":25, + "network":"193.238.241.128\/25", + "version":58266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.241.128", + "prefixLen":25, + "network":"193.238.241.128\/25", + "version":58266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.242.0", + "prefixLen":25, + "network":"193.238.242.0\/25", + "version":58265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.242.0", + "prefixLen":25, + "network":"193.238.242.0\/25", + "version":58265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.242.128", + "prefixLen":25, + "network":"193.238.242.128\/25", + "version":58264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.242.128", + "prefixLen":25, + "network":"193.238.242.128\/25", + "version":58264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.243.0", + "prefixLen":25, + "network":"193.238.243.0\/25", + "version":58263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.243.0", + "prefixLen":25, + "network":"193.238.243.0\/25", + "version":58263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.238.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.238.243.128", + "prefixLen":25, + "network":"193.238.243.128\/25", + "version":58262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.238.243.128", + "prefixLen":25, + "network":"193.238.243.128\/25", + "version":58262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64926 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.0.0", + "prefixLen":25, + "network":"193.239.0.0\/25", + "version":58389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.0.0", + "prefixLen":25, + "network":"193.239.0.0\/25", + "version":58389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.0.128", + "prefixLen":25, + "network":"193.239.0.128\/25", + "version":58516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.0.128", + "prefixLen":25, + "network":"193.239.0.128\/25", + "version":58516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.1.0", + "prefixLen":25, + "network":"193.239.1.0\/25", + "version":58515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.1.0", + "prefixLen":25, + "network":"193.239.1.0\/25", + "version":58515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.1.128", + "prefixLen":25, + "network":"193.239.1.128\/25", + "version":58514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.1.128", + "prefixLen":25, + "network":"193.239.1.128\/25", + "version":58514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.2.0", + "prefixLen":25, + "network":"193.239.2.0\/25", + "version":58513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.2.0", + "prefixLen":25, + "network":"193.239.2.0\/25", + "version":58513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.2.128", + "prefixLen":25, + "network":"193.239.2.128\/25", + "version":58512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.2.128", + "prefixLen":25, + "network":"193.239.2.128\/25", + "version":58512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.3.0", + "prefixLen":25, + "network":"193.239.3.0\/25", + "version":58511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.3.0", + "prefixLen":25, + "network":"193.239.3.0\/25", + "version":58511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.3.128", + "prefixLen":25, + "network":"193.239.3.128\/25", + "version":58510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.3.128", + "prefixLen":25, + "network":"193.239.3.128\/25", + "version":58510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.16.0", + "prefixLen":25, + "network":"193.239.16.0\/25", + "version":58509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.16.0", + "prefixLen":25, + "network":"193.239.16.0\/25", + "version":58509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.16.128", + "prefixLen":25, + "network":"193.239.16.128\/25", + "version":58508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.16.128", + "prefixLen":25, + "network":"193.239.16.128\/25", + "version":58508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.17.0", + "prefixLen":25, + "network":"193.239.17.0\/25", + "version":58507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.17.0", + "prefixLen":25, + "network":"193.239.17.0\/25", + "version":58507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.17.128", + "prefixLen":25, + "network":"193.239.17.128\/25", + "version":58506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.17.128", + "prefixLen":25, + "network":"193.239.17.128\/25", + "version":58506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.18.0", + "prefixLen":25, + "network":"193.239.18.0\/25", + "version":58505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.18.0", + "prefixLen":25, + "network":"193.239.18.0\/25", + "version":58505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.18.128", + "prefixLen":25, + "network":"193.239.18.128\/25", + "version":58504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.18.128", + "prefixLen":25, + "network":"193.239.18.128\/25", + "version":58504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.19.0", + "prefixLen":25, + "network":"193.239.19.0\/25", + "version":58503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.19.0", + "prefixLen":25, + "network":"193.239.19.0\/25", + "version":58503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.19.128", + "prefixLen":25, + "network":"193.239.19.128\/25", + "version":58502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.19.128", + "prefixLen":25, + "network":"193.239.19.128\/25", + "version":58502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.32.0", + "prefixLen":25, + "network":"193.239.32.0\/25", + "version":58501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.32.0", + "prefixLen":25, + "network":"193.239.32.0\/25", + "version":58501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.32.128", + "prefixLen":25, + "network":"193.239.32.128\/25", + "version":58500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.32.128", + "prefixLen":25, + "network":"193.239.32.128\/25", + "version":58500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.33.0", + "prefixLen":25, + "network":"193.239.33.0\/25", + "version":58499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.33.0", + "prefixLen":25, + "network":"193.239.33.0\/25", + "version":58499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.33.128", + "prefixLen":25, + "network":"193.239.33.128\/25", + "version":58498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.33.128", + "prefixLen":25, + "network":"193.239.33.128\/25", + "version":58498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.34.0", + "prefixLen":25, + "network":"193.239.34.0\/25", + "version":58497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.34.0", + "prefixLen":25, + "network":"193.239.34.0\/25", + "version":58497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.34.128", + "prefixLen":25, + "network":"193.239.34.128\/25", + "version":58496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.34.128", + "prefixLen":25, + "network":"193.239.34.128\/25", + "version":58496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.35.0", + "prefixLen":25, + "network":"193.239.35.0\/25", + "version":58495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.35.0", + "prefixLen":25, + "network":"193.239.35.0\/25", + "version":58495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.35.128", + "prefixLen":25, + "network":"193.239.35.128\/25", + "version":58494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.35.128", + "prefixLen":25, + "network":"193.239.35.128\/25", + "version":58494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.48.0", + "prefixLen":25, + "network":"193.239.48.0\/25", + "version":58493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.48.0", + "prefixLen":25, + "network":"193.239.48.0\/25", + "version":58493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.48.128", + "prefixLen":25, + "network":"193.239.48.128\/25", + "version":58492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.48.128", + "prefixLen":25, + "network":"193.239.48.128\/25", + "version":58492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.49.0", + "prefixLen":25, + "network":"193.239.49.0\/25", + "version":58491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.49.0", + "prefixLen":25, + "network":"193.239.49.0\/25", + "version":58491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.49.128", + "prefixLen":25, + "network":"193.239.49.128\/25", + "version":58490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.49.128", + "prefixLen":25, + "network":"193.239.49.128\/25", + "version":58490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.50.0", + "prefixLen":25, + "network":"193.239.50.0\/25", + "version":58489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.50.0", + "prefixLen":25, + "network":"193.239.50.0\/25", + "version":58489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.50.128", + "prefixLen":25, + "network":"193.239.50.128\/25", + "version":58488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.50.128", + "prefixLen":25, + "network":"193.239.50.128\/25", + "version":58488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.51.0", + "prefixLen":25, + "network":"193.239.51.0\/25", + "version":58487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.51.0", + "prefixLen":25, + "network":"193.239.51.0\/25", + "version":58487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.51.128", + "prefixLen":25, + "network":"193.239.51.128\/25", + "version":58486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.51.128", + "prefixLen":25, + "network":"193.239.51.128\/25", + "version":58486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.64.0", + "prefixLen":25, + "network":"193.239.64.0\/25", + "version":58485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.64.0", + "prefixLen":25, + "network":"193.239.64.0\/25", + "version":58485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.64.128", + "prefixLen":25, + "network":"193.239.64.128\/25", + "version":58484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.64.128", + "prefixLen":25, + "network":"193.239.64.128\/25", + "version":58484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.65.0", + "prefixLen":25, + "network":"193.239.65.0\/25", + "version":58483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.65.0", + "prefixLen":25, + "network":"193.239.65.0\/25", + "version":58483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.65.128", + "prefixLen":25, + "network":"193.239.65.128\/25", + "version":58482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.65.128", + "prefixLen":25, + "network":"193.239.65.128\/25", + "version":58482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.66.0", + "prefixLen":25, + "network":"193.239.66.0\/25", + "version":58481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.66.0", + "prefixLen":25, + "network":"193.239.66.0\/25", + "version":58481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.66.128", + "prefixLen":25, + "network":"193.239.66.128\/25", + "version":58480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.66.128", + "prefixLen":25, + "network":"193.239.66.128\/25", + "version":58480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.67.0", + "prefixLen":25, + "network":"193.239.67.0\/25", + "version":58479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.67.0", + "prefixLen":25, + "network":"193.239.67.0\/25", + "version":58479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.67.128", + "prefixLen":25, + "network":"193.239.67.128\/25", + "version":58478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.67.128", + "prefixLen":25, + "network":"193.239.67.128\/25", + "version":58478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.80.0", + "prefixLen":25, + "network":"193.239.80.0\/25", + "version":58477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.80.0", + "prefixLen":25, + "network":"193.239.80.0\/25", + "version":58477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.80.128", + "prefixLen":25, + "network":"193.239.80.128\/25", + "version":58476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.80.128", + "prefixLen":25, + "network":"193.239.80.128\/25", + "version":58476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.81.0", + "prefixLen":25, + "network":"193.239.81.0\/25", + "version":58475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.81.0", + "prefixLen":25, + "network":"193.239.81.0\/25", + "version":58475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.81.128", + "prefixLen":25, + "network":"193.239.81.128\/25", + "version":58474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.81.128", + "prefixLen":25, + "network":"193.239.81.128\/25", + "version":58474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.82.0", + "prefixLen":25, + "network":"193.239.82.0\/25", + "version":58473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.82.0", + "prefixLen":25, + "network":"193.239.82.0\/25", + "version":58473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.82.128", + "prefixLen":25, + "network":"193.239.82.128\/25", + "version":58472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.82.128", + "prefixLen":25, + "network":"193.239.82.128\/25", + "version":58472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.83.0", + "prefixLen":25, + "network":"193.239.83.0\/25", + "version":58471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.83.0", + "prefixLen":25, + "network":"193.239.83.0\/25", + "version":58471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.83.128", + "prefixLen":25, + "network":"193.239.83.128\/25", + "version":58470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.83.128", + "prefixLen":25, + "network":"193.239.83.128\/25", + "version":58470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.96.0", + "prefixLen":25, + "network":"193.239.96.0\/25", + "version":58469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.96.0", + "prefixLen":25, + "network":"193.239.96.0\/25", + "version":58469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.96.128", + "prefixLen":25, + "network":"193.239.96.128\/25", + "version":58468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.96.128", + "prefixLen":25, + "network":"193.239.96.128\/25", + "version":58468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.97.0", + "prefixLen":25, + "network":"193.239.97.0\/25", + "version":58467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.97.0", + "prefixLen":25, + "network":"193.239.97.0\/25", + "version":58467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.97.128", + "prefixLen":25, + "network":"193.239.97.128\/25", + "version":58466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.97.128", + "prefixLen":25, + "network":"193.239.97.128\/25", + "version":58466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.98.0", + "prefixLen":25, + "network":"193.239.98.0\/25", + "version":58465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.98.0", + "prefixLen":25, + "network":"193.239.98.0\/25", + "version":58465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.98.128", + "prefixLen":25, + "network":"193.239.98.128\/25", + "version":58464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.98.128", + "prefixLen":25, + "network":"193.239.98.128\/25", + "version":58464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.99.0", + "prefixLen":25, + "network":"193.239.99.0\/25", + "version":58463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.99.0", + "prefixLen":25, + "network":"193.239.99.0\/25", + "version":58463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.99.128", + "prefixLen":25, + "network":"193.239.99.128\/25", + "version":58462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.99.128", + "prefixLen":25, + "network":"193.239.99.128\/25", + "version":58462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.112.0", + "prefixLen":25, + "network":"193.239.112.0\/25", + "version":58461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.112.0", + "prefixLen":25, + "network":"193.239.112.0\/25", + "version":58461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.112.128", + "prefixLen":25, + "network":"193.239.112.128\/25", + "version":58460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.112.128", + "prefixLen":25, + "network":"193.239.112.128\/25", + "version":58460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.113.0", + "prefixLen":25, + "network":"193.239.113.0\/25", + "version":58459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.113.0", + "prefixLen":25, + "network":"193.239.113.0\/25", + "version":58459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.113.128", + "prefixLen":25, + "network":"193.239.113.128\/25", + "version":58458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.113.128", + "prefixLen":25, + "network":"193.239.113.128\/25", + "version":58458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.114.0", + "prefixLen":25, + "network":"193.239.114.0\/25", + "version":58457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.114.0", + "prefixLen":25, + "network":"193.239.114.0\/25", + "version":58457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.114.128", + "prefixLen":25, + "network":"193.239.114.128\/25", + "version":58456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.114.128", + "prefixLen":25, + "network":"193.239.114.128\/25", + "version":58456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.115.0", + "prefixLen":25, + "network":"193.239.115.0\/25", + "version":58455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.115.0", + "prefixLen":25, + "network":"193.239.115.0\/25", + "version":58455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.115.128", + "prefixLen":25, + "network":"193.239.115.128\/25", + "version":58454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.115.128", + "prefixLen":25, + "network":"193.239.115.128\/25", + "version":58454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.128.0", + "prefixLen":25, + "network":"193.239.128.0\/25", + "version":58453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.128.0", + "prefixLen":25, + "network":"193.239.128.0\/25", + "version":58453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.128.128", + "prefixLen":25, + "network":"193.239.128.128\/25", + "version":58452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.128.128", + "prefixLen":25, + "network":"193.239.128.128\/25", + "version":58452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.129.0", + "prefixLen":25, + "network":"193.239.129.0\/25", + "version":58451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.129.0", + "prefixLen":25, + "network":"193.239.129.0\/25", + "version":58451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.129.128", + "prefixLen":25, + "network":"193.239.129.128\/25", + "version":58450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.129.128", + "prefixLen":25, + "network":"193.239.129.128\/25", + "version":58450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.130.0", + "prefixLen":25, + "network":"193.239.130.0\/25", + "version":58449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.130.0", + "prefixLen":25, + "network":"193.239.130.0\/25", + "version":58449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.130.128", + "prefixLen":25, + "network":"193.239.130.128\/25", + "version":58448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.130.128", + "prefixLen":25, + "network":"193.239.130.128\/25", + "version":58448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.131.0", + "prefixLen":25, + "network":"193.239.131.0\/25", + "version":58447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.131.0", + "prefixLen":25, + "network":"193.239.131.0\/25", + "version":58447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.131.128", + "prefixLen":25, + "network":"193.239.131.128\/25", + "version":58446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.131.128", + "prefixLen":25, + "network":"193.239.131.128\/25", + "version":58446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.144.0", + "prefixLen":25, + "network":"193.239.144.0\/25", + "version":58445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.144.0", + "prefixLen":25, + "network":"193.239.144.0\/25", + "version":58445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.144.128", + "prefixLen":25, + "network":"193.239.144.128\/25", + "version":58444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.144.128", + "prefixLen":25, + "network":"193.239.144.128\/25", + "version":58444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.145.0", + "prefixLen":25, + "network":"193.239.145.0\/25", + "version":58443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.145.0", + "prefixLen":25, + "network":"193.239.145.0\/25", + "version":58443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.145.128", + "prefixLen":25, + "network":"193.239.145.128\/25", + "version":58442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.145.128", + "prefixLen":25, + "network":"193.239.145.128\/25", + "version":58442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.146.0", + "prefixLen":25, + "network":"193.239.146.0\/25", + "version":58441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.146.0", + "prefixLen":25, + "network":"193.239.146.0\/25", + "version":58441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.146.128", + "prefixLen":25, + "network":"193.239.146.128\/25", + "version":58440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.146.128", + "prefixLen":25, + "network":"193.239.146.128\/25", + "version":58440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.147.0", + "prefixLen":25, + "network":"193.239.147.0\/25", + "version":58439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.147.0", + "prefixLen":25, + "network":"193.239.147.0\/25", + "version":58439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.147.128", + "prefixLen":25, + "network":"193.239.147.128\/25", + "version":58438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.147.128", + "prefixLen":25, + "network":"193.239.147.128\/25", + "version":58438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.160.0", + "prefixLen":25, + "network":"193.239.160.0\/25", + "version":58437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.160.0", + "prefixLen":25, + "network":"193.239.160.0\/25", + "version":58437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.160.128", + "prefixLen":25, + "network":"193.239.160.128\/25", + "version":58436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.160.128", + "prefixLen":25, + "network":"193.239.160.128\/25", + "version":58436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.161.0", + "prefixLen":25, + "network":"193.239.161.0\/25", + "version":58435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.161.0", + "prefixLen":25, + "network":"193.239.161.0\/25", + "version":58435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.161.128", + "prefixLen":25, + "network":"193.239.161.128\/25", + "version":58434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.161.128", + "prefixLen":25, + "network":"193.239.161.128\/25", + "version":58434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.162.0", + "prefixLen":25, + "network":"193.239.162.0\/25", + "version":58433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.162.0", + "prefixLen":25, + "network":"193.239.162.0\/25", + "version":58433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.162.128", + "prefixLen":25, + "network":"193.239.162.128\/25", + "version":58432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.162.128", + "prefixLen":25, + "network":"193.239.162.128\/25", + "version":58432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.163.0", + "prefixLen":25, + "network":"193.239.163.0\/25", + "version":58431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.163.0", + "prefixLen":25, + "network":"193.239.163.0\/25", + "version":58431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.163.128", + "prefixLen":25, + "network":"193.239.163.128\/25", + "version":58430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.163.128", + "prefixLen":25, + "network":"193.239.163.128\/25", + "version":58430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.176.0", + "prefixLen":25, + "network":"193.239.176.0\/25", + "version":58429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.176.0", + "prefixLen":25, + "network":"193.239.176.0\/25", + "version":58429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.176.128", + "prefixLen":25, + "network":"193.239.176.128\/25", + "version":58428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.176.128", + "prefixLen":25, + "network":"193.239.176.128\/25", + "version":58428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.177.0", + "prefixLen":25, + "network":"193.239.177.0\/25", + "version":58427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.177.0", + "prefixLen":25, + "network":"193.239.177.0\/25", + "version":58427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.177.128", + "prefixLen":25, + "network":"193.239.177.128\/25", + "version":58426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.177.128", + "prefixLen":25, + "network":"193.239.177.128\/25", + "version":58426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.178.0", + "prefixLen":25, + "network":"193.239.178.0\/25", + "version":58425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.178.0", + "prefixLen":25, + "network":"193.239.178.0\/25", + "version":58425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.178.128", + "prefixLen":25, + "network":"193.239.178.128\/25", + "version":58424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.178.128", + "prefixLen":25, + "network":"193.239.178.128\/25", + "version":58424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.179.0", + "prefixLen":25, + "network":"193.239.179.0\/25", + "version":58423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.179.0", + "prefixLen":25, + "network":"193.239.179.0\/25", + "version":58423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.179.128", + "prefixLen":25, + "network":"193.239.179.128\/25", + "version":58422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.179.128", + "prefixLen":25, + "network":"193.239.179.128\/25", + "version":58422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.192.0", + "prefixLen":25, + "network":"193.239.192.0\/25", + "version":58421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.192.0", + "prefixLen":25, + "network":"193.239.192.0\/25", + "version":58421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.192.128", + "prefixLen":25, + "network":"193.239.192.128\/25", + "version":58420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.192.128", + "prefixLen":25, + "network":"193.239.192.128\/25", + "version":58420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.193.0", + "prefixLen":25, + "network":"193.239.193.0\/25", + "version":58419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.193.0", + "prefixLen":25, + "network":"193.239.193.0\/25", + "version":58419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.193.128", + "prefixLen":25, + "network":"193.239.193.128\/25", + "version":58418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.193.128", + "prefixLen":25, + "network":"193.239.193.128\/25", + "version":58418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.194.0", + "prefixLen":25, + "network":"193.239.194.0\/25", + "version":58417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.194.0", + "prefixLen":25, + "network":"193.239.194.0\/25", + "version":58417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.194.128", + "prefixLen":25, + "network":"193.239.194.128\/25", + "version":58416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.194.128", + "prefixLen":25, + "network":"193.239.194.128\/25", + "version":58416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.195.0", + "prefixLen":25, + "network":"193.239.195.0\/25", + "version":58415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.195.0", + "prefixLen":25, + "network":"193.239.195.0\/25", + "version":58415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.195.128", + "prefixLen":25, + "network":"193.239.195.128\/25", + "version":58414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.195.128", + "prefixLen":25, + "network":"193.239.195.128\/25", + "version":58414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.208.0", + "prefixLen":25, + "network":"193.239.208.0\/25", + "version":58413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.208.0", + "prefixLen":25, + "network":"193.239.208.0\/25", + "version":58413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.208.128", + "prefixLen":25, + "network":"193.239.208.128\/25", + "version":58412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.208.128", + "prefixLen":25, + "network":"193.239.208.128\/25", + "version":58412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.209.0", + "prefixLen":25, + "network":"193.239.209.0\/25", + "version":58411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.209.0", + "prefixLen":25, + "network":"193.239.209.0\/25", + "version":58411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.209.128", + "prefixLen":25, + "network":"193.239.209.128\/25", + "version":58410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.209.128", + "prefixLen":25, + "network":"193.239.209.128\/25", + "version":58410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.210.0", + "prefixLen":25, + "network":"193.239.210.0\/25", + "version":58409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.210.0", + "prefixLen":25, + "network":"193.239.210.0\/25", + "version":58409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.210.128", + "prefixLen":25, + "network":"193.239.210.128\/25", + "version":58408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.210.128", + "prefixLen":25, + "network":"193.239.210.128\/25", + "version":58408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.211.0", + "prefixLen":25, + "network":"193.239.211.0\/25", + "version":58407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.211.0", + "prefixLen":25, + "network":"193.239.211.0\/25", + "version":58407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.211.128", + "prefixLen":25, + "network":"193.239.211.128\/25", + "version":58406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.211.128", + "prefixLen":25, + "network":"193.239.211.128\/25", + "version":58406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.224.0", + "prefixLen":25, + "network":"193.239.224.0\/25", + "version":58405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.224.0", + "prefixLen":25, + "network":"193.239.224.0\/25", + "version":58405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.224.128", + "prefixLen":25, + "network":"193.239.224.128\/25", + "version":58404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.224.128", + "prefixLen":25, + "network":"193.239.224.128\/25", + "version":58404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.225.0", + "prefixLen":25, + "network":"193.239.225.0\/25", + "version":58403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.225.0", + "prefixLen":25, + "network":"193.239.225.0\/25", + "version":58403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.225.128", + "prefixLen":25, + "network":"193.239.225.128\/25", + "version":58402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.225.128", + "prefixLen":25, + "network":"193.239.225.128\/25", + "version":58402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.226.0", + "prefixLen":25, + "network":"193.239.226.0\/25", + "version":58401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.226.0", + "prefixLen":25, + "network":"193.239.226.0\/25", + "version":58401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.226.128", + "prefixLen":25, + "network":"193.239.226.128\/25", + "version":58400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.226.128", + "prefixLen":25, + "network":"193.239.226.128\/25", + "version":58400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.227.0", + "prefixLen":25, + "network":"193.239.227.0\/25", + "version":58399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.227.0", + "prefixLen":25, + "network":"193.239.227.0\/25", + "version":58399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.227.128", + "prefixLen":25, + "network":"193.239.227.128\/25", + "version":58398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.227.128", + "prefixLen":25, + "network":"193.239.227.128\/25", + "version":58398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.240.0", + "prefixLen":25, + "network":"193.239.240.0\/25", + "version":58397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.240.0", + "prefixLen":25, + "network":"193.239.240.0\/25", + "version":58397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.240.128", + "prefixLen":25, + "network":"193.239.240.128\/25", + "version":58396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.240.128", + "prefixLen":25, + "network":"193.239.240.128\/25", + "version":58396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.241.0", + "prefixLen":25, + "network":"193.239.241.0\/25", + "version":58395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.241.0", + "prefixLen":25, + "network":"193.239.241.0\/25", + "version":58395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.241.128", + "prefixLen":25, + "network":"193.239.241.128\/25", + "version":58394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.241.128", + "prefixLen":25, + "network":"193.239.241.128\/25", + "version":58394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.242.0", + "prefixLen":25, + "network":"193.239.242.0\/25", + "version":58393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.242.0", + "prefixLen":25, + "network":"193.239.242.0\/25", + "version":58393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.242.128", + "prefixLen":25, + "network":"193.239.242.128\/25", + "version":58392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.242.128", + "prefixLen":25, + "network":"193.239.242.128\/25", + "version":58392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.243.0", + "prefixLen":25, + "network":"193.239.243.0\/25", + "version":58391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.243.0", + "prefixLen":25, + "network":"193.239.243.0\/25", + "version":58391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.239.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.239.243.128", + "prefixLen":25, + "network":"193.239.243.128\/25", + "version":58390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.239.243.128", + "prefixLen":25, + "network":"193.239.243.128\/25", + "version":58390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64927 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.0.0", + "prefixLen":25, + "network":"193.240.0.0\/25", + "version":58517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.0.0", + "prefixLen":25, + "network":"193.240.0.0\/25", + "version":58517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.0.128", + "prefixLen":25, + "network":"193.240.0.128\/25", + "version":58644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.0.128", + "prefixLen":25, + "network":"193.240.0.128\/25", + "version":58644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.1.0", + "prefixLen":25, + "network":"193.240.1.0\/25", + "version":58643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.1.0", + "prefixLen":25, + "network":"193.240.1.0\/25", + "version":58643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.1.128", + "prefixLen":25, + "network":"193.240.1.128\/25", + "version":58642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.1.128", + "prefixLen":25, + "network":"193.240.1.128\/25", + "version":58642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.2.0", + "prefixLen":25, + "network":"193.240.2.0\/25", + "version":58641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.2.0", + "prefixLen":25, + "network":"193.240.2.0\/25", + "version":58641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.2.128", + "prefixLen":25, + "network":"193.240.2.128\/25", + "version":58640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.2.128", + "prefixLen":25, + "network":"193.240.2.128\/25", + "version":58640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.3.0", + "prefixLen":25, + "network":"193.240.3.0\/25", + "version":58639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.3.0", + "prefixLen":25, + "network":"193.240.3.0\/25", + "version":58639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.3.128", + "prefixLen":25, + "network":"193.240.3.128\/25", + "version":58638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.3.128", + "prefixLen":25, + "network":"193.240.3.128\/25", + "version":58638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.16.0", + "prefixLen":25, + "network":"193.240.16.0\/25", + "version":58637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.16.0", + "prefixLen":25, + "network":"193.240.16.0\/25", + "version":58637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.16.128", + "prefixLen":25, + "network":"193.240.16.128\/25", + "version":58636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.16.128", + "prefixLen":25, + "network":"193.240.16.128\/25", + "version":58636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.17.0", + "prefixLen":25, + "network":"193.240.17.0\/25", + "version":58635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.17.0", + "prefixLen":25, + "network":"193.240.17.0\/25", + "version":58635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.17.128", + "prefixLen":25, + "network":"193.240.17.128\/25", + "version":58634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.17.128", + "prefixLen":25, + "network":"193.240.17.128\/25", + "version":58634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.18.0", + "prefixLen":25, + "network":"193.240.18.0\/25", + "version":58633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.18.0", + "prefixLen":25, + "network":"193.240.18.0\/25", + "version":58633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.18.128", + "prefixLen":25, + "network":"193.240.18.128\/25", + "version":58632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.18.128", + "prefixLen":25, + "network":"193.240.18.128\/25", + "version":58632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.19.0", + "prefixLen":25, + "network":"193.240.19.0\/25", + "version":58631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.19.0", + "prefixLen":25, + "network":"193.240.19.0\/25", + "version":58631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.19.128", + "prefixLen":25, + "network":"193.240.19.128\/25", + "version":58630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.19.128", + "prefixLen":25, + "network":"193.240.19.128\/25", + "version":58630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.32.0", + "prefixLen":25, + "network":"193.240.32.0\/25", + "version":58629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.32.0", + "prefixLen":25, + "network":"193.240.32.0\/25", + "version":58629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.32.128", + "prefixLen":25, + "network":"193.240.32.128\/25", + "version":58628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.32.128", + "prefixLen":25, + "network":"193.240.32.128\/25", + "version":58628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.33.0", + "prefixLen":25, + "network":"193.240.33.0\/25", + "version":58627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.33.0", + "prefixLen":25, + "network":"193.240.33.0\/25", + "version":58627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.33.128", + "prefixLen":25, + "network":"193.240.33.128\/25", + "version":58626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.33.128", + "prefixLen":25, + "network":"193.240.33.128\/25", + "version":58626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.34.0", + "prefixLen":25, + "network":"193.240.34.0\/25", + "version":58625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.34.0", + "prefixLen":25, + "network":"193.240.34.0\/25", + "version":58625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.34.128", + "prefixLen":25, + "network":"193.240.34.128\/25", + "version":58624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.34.128", + "prefixLen":25, + "network":"193.240.34.128\/25", + "version":58624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.35.0", + "prefixLen":25, + "network":"193.240.35.0\/25", + "version":58623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.35.0", + "prefixLen":25, + "network":"193.240.35.0\/25", + "version":58623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.35.128", + "prefixLen":25, + "network":"193.240.35.128\/25", + "version":58622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.35.128", + "prefixLen":25, + "network":"193.240.35.128\/25", + "version":58622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.48.0", + "prefixLen":25, + "network":"193.240.48.0\/25", + "version":58621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.48.0", + "prefixLen":25, + "network":"193.240.48.0\/25", + "version":58621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.48.128", + "prefixLen":25, + "network":"193.240.48.128\/25", + "version":58620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.48.128", + "prefixLen":25, + "network":"193.240.48.128\/25", + "version":58620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.49.0", + "prefixLen":25, + "network":"193.240.49.0\/25", + "version":58619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.49.0", + "prefixLen":25, + "network":"193.240.49.0\/25", + "version":58619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.49.128", + "prefixLen":25, + "network":"193.240.49.128\/25", + "version":58618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.49.128", + "prefixLen":25, + "network":"193.240.49.128\/25", + "version":58618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.50.0", + "prefixLen":25, + "network":"193.240.50.0\/25", + "version":58617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.50.0", + "prefixLen":25, + "network":"193.240.50.0\/25", + "version":58617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.50.128", + "prefixLen":25, + "network":"193.240.50.128\/25", + "version":58616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.50.128", + "prefixLen":25, + "network":"193.240.50.128\/25", + "version":58616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.51.0", + "prefixLen":25, + "network":"193.240.51.0\/25", + "version":58615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.51.0", + "prefixLen":25, + "network":"193.240.51.0\/25", + "version":58615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.51.128", + "prefixLen":25, + "network":"193.240.51.128\/25", + "version":58614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.51.128", + "prefixLen":25, + "network":"193.240.51.128\/25", + "version":58614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.64.0", + "prefixLen":25, + "network":"193.240.64.0\/25", + "version":58613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.64.0", + "prefixLen":25, + "network":"193.240.64.0\/25", + "version":58613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.64.128", + "prefixLen":25, + "network":"193.240.64.128\/25", + "version":58612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.64.128", + "prefixLen":25, + "network":"193.240.64.128\/25", + "version":58612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.65.0", + "prefixLen":25, + "network":"193.240.65.0\/25", + "version":58611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.65.0", + "prefixLen":25, + "network":"193.240.65.0\/25", + "version":58611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.65.128", + "prefixLen":25, + "network":"193.240.65.128\/25", + "version":58610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.65.128", + "prefixLen":25, + "network":"193.240.65.128\/25", + "version":58610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.66.0", + "prefixLen":25, + "network":"193.240.66.0\/25", + "version":58609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.66.0", + "prefixLen":25, + "network":"193.240.66.0\/25", + "version":58609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.66.128", + "prefixLen":25, + "network":"193.240.66.128\/25", + "version":58608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.66.128", + "prefixLen":25, + "network":"193.240.66.128\/25", + "version":58608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.67.0", + "prefixLen":25, + "network":"193.240.67.0\/25", + "version":58607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.67.0", + "prefixLen":25, + "network":"193.240.67.0\/25", + "version":58607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.67.128", + "prefixLen":25, + "network":"193.240.67.128\/25", + "version":58606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.67.128", + "prefixLen":25, + "network":"193.240.67.128\/25", + "version":58606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.80.0", + "prefixLen":25, + "network":"193.240.80.0\/25", + "version":58605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.80.0", + "prefixLen":25, + "network":"193.240.80.0\/25", + "version":58605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.80.128", + "prefixLen":25, + "network":"193.240.80.128\/25", + "version":58604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.80.128", + "prefixLen":25, + "network":"193.240.80.128\/25", + "version":58604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.81.0", + "prefixLen":25, + "network":"193.240.81.0\/25", + "version":58603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.81.0", + "prefixLen":25, + "network":"193.240.81.0\/25", + "version":58603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.81.128", + "prefixLen":25, + "network":"193.240.81.128\/25", + "version":58602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.81.128", + "prefixLen":25, + "network":"193.240.81.128\/25", + "version":58602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.82.0", + "prefixLen":25, + "network":"193.240.82.0\/25", + "version":58601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.82.0", + "prefixLen":25, + "network":"193.240.82.0\/25", + "version":58601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.82.128", + "prefixLen":25, + "network":"193.240.82.128\/25", + "version":58600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.82.128", + "prefixLen":25, + "network":"193.240.82.128\/25", + "version":58600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.83.0", + "prefixLen":25, + "network":"193.240.83.0\/25", + "version":58599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.83.0", + "prefixLen":25, + "network":"193.240.83.0\/25", + "version":58599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.83.128", + "prefixLen":25, + "network":"193.240.83.128\/25", + "version":58598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.83.128", + "prefixLen":25, + "network":"193.240.83.128\/25", + "version":58598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.96.0", + "prefixLen":25, + "network":"193.240.96.0\/25", + "version":58597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.96.0", + "prefixLen":25, + "network":"193.240.96.0\/25", + "version":58597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.96.128", + "prefixLen":25, + "network":"193.240.96.128\/25", + "version":58596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.96.128", + "prefixLen":25, + "network":"193.240.96.128\/25", + "version":58596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.97.0", + "prefixLen":25, + "network":"193.240.97.0\/25", + "version":58595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.97.0", + "prefixLen":25, + "network":"193.240.97.0\/25", + "version":58595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.97.128", + "prefixLen":25, + "network":"193.240.97.128\/25", + "version":58594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.97.128", + "prefixLen":25, + "network":"193.240.97.128\/25", + "version":58594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.98.0", + "prefixLen":25, + "network":"193.240.98.0\/25", + "version":58593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.98.0", + "prefixLen":25, + "network":"193.240.98.0\/25", + "version":58593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.98.128", + "prefixLen":25, + "network":"193.240.98.128\/25", + "version":58592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.98.128", + "prefixLen":25, + "network":"193.240.98.128\/25", + "version":58592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.99.0", + "prefixLen":25, + "network":"193.240.99.0\/25", + "version":58591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.99.0", + "prefixLen":25, + "network":"193.240.99.0\/25", + "version":58591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.99.128", + "prefixLen":25, + "network":"193.240.99.128\/25", + "version":58590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.99.128", + "prefixLen":25, + "network":"193.240.99.128\/25", + "version":58590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.112.0", + "prefixLen":25, + "network":"193.240.112.0\/25", + "version":58589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.112.0", + "prefixLen":25, + "network":"193.240.112.0\/25", + "version":58589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.112.128", + "prefixLen":25, + "network":"193.240.112.128\/25", + "version":58588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.112.128", + "prefixLen":25, + "network":"193.240.112.128\/25", + "version":58588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.113.0", + "prefixLen":25, + "network":"193.240.113.0\/25", + "version":58587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.113.0", + "prefixLen":25, + "network":"193.240.113.0\/25", + "version":58587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.113.128", + "prefixLen":25, + "network":"193.240.113.128\/25", + "version":58586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.113.128", + "prefixLen":25, + "network":"193.240.113.128\/25", + "version":58586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.114.0", + "prefixLen":25, + "network":"193.240.114.0\/25", + "version":58585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.114.0", + "prefixLen":25, + "network":"193.240.114.0\/25", + "version":58585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.114.128", + "prefixLen":25, + "network":"193.240.114.128\/25", + "version":58584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.114.128", + "prefixLen":25, + "network":"193.240.114.128\/25", + "version":58584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.115.0", + "prefixLen":25, + "network":"193.240.115.0\/25", + "version":58583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.115.0", + "prefixLen":25, + "network":"193.240.115.0\/25", + "version":58583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.115.128", + "prefixLen":25, + "network":"193.240.115.128\/25", + "version":58582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.115.128", + "prefixLen":25, + "network":"193.240.115.128\/25", + "version":58582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.128.0", + "prefixLen":25, + "network":"193.240.128.0\/25", + "version":58581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.128.0", + "prefixLen":25, + "network":"193.240.128.0\/25", + "version":58581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.128.128", + "prefixLen":25, + "network":"193.240.128.128\/25", + "version":58580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.128.128", + "prefixLen":25, + "network":"193.240.128.128\/25", + "version":58580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.129.0", + "prefixLen":25, + "network":"193.240.129.0\/25", + "version":58579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.129.0", + "prefixLen":25, + "network":"193.240.129.0\/25", + "version":58579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.129.128", + "prefixLen":25, + "network":"193.240.129.128\/25", + "version":58578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.129.128", + "prefixLen":25, + "network":"193.240.129.128\/25", + "version":58578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.130.0", + "prefixLen":25, + "network":"193.240.130.0\/25", + "version":58577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.130.0", + "prefixLen":25, + "network":"193.240.130.0\/25", + "version":58577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.130.128", + "prefixLen":25, + "network":"193.240.130.128\/25", + "version":58576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.130.128", + "prefixLen":25, + "network":"193.240.130.128\/25", + "version":58576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.131.0", + "prefixLen":25, + "network":"193.240.131.0\/25", + "version":58575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.131.0", + "prefixLen":25, + "network":"193.240.131.0\/25", + "version":58575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.131.128", + "prefixLen":25, + "network":"193.240.131.128\/25", + "version":58574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.131.128", + "prefixLen":25, + "network":"193.240.131.128\/25", + "version":58574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.144.0", + "prefixLen":25, + "network":"193.240.144.0\/25", + "version":58573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.144.0", + "prefixLen":25, + "network":"193.240.144.0\/25", + "version":58573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.144.128", + "prefixLen":25, + "network":"193.240.144.128\/25", + "version":58572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.144.128", + "prefixLen":25, + "network":"193.240.144.128\/25", + "version":58572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.145.0", + "prefixLen":25, + "network":"193.240.145.0\/25", + "version":58571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.145.0", + "prefixLen":25, + "network":"193.240.145.0\/25", + "version":58571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.145.128", + "prefixLen":25, + "network":"193.240.145.128\/25", + "version":58570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.145.128", + "prefixLen":25, + "network":"193.240.145.128\/25", + "version":58570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.146.0", + "prefixLen":25, + "network":"193.240.146.0\/25", + "version":58569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.146.0", + "prefixLen":25, + "network":"193.240.146.0\/25", + "version":58569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.146.128", + "prefixLen":25, + "network":"193.240.146.128\/25", + "version":58568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.146.128", + "prefixLen":25, + "network":"193.240.146.128\/25", + "version":58568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.147.0", + "prefixLen":25, + "network":"193.240.147.0\/25", + "version":58567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.147.0", + "prefixLen":25, + "network":"193.240.147.0\/25", + "version":58567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.147.128", + "prefixLen":25, + "network":"193.240.147.128\/25", + "version":58566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.147.128", + "prefixLen":25, + "network":"193.240.147.128\/25", + "version":58566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.160.0", + "prefixLen":25, + "network":"193.240.160.0\/25", + "version":58565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.160.0", + "prefixLen":25, + "network":"193.240.160.0\/25", + "version":58565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.160.128", + "prefixLen":25, + "network":"193.240.160.128\/25", + "version":58564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.160.128", + "prefixLen":25, + "network":"193.240.160.128\/25", + "version":58564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.161.0", + "prefixLen":25, + "network":"193.240.161.0\/25", + "version":58563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.161.0", + "prefixLen":25, + "network":"193.240.161.0\/25", + "version":58563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.161.128", + "prefixLen":25, + "network":"193.240.161.128\/25", + "version":58562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.161.128", + "prefixLen":25, + "network":"193.240.161.128\/25", + "version":58562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.162.0", + "prefixLen":25, + "network":"193.240.162.0\/25", + "version":58561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.162.0", + "prefixLen":25, + "network":"193.240.162.0\/25", + "version":58561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.162.128", + "prefixLen":25, + "network":"193.240.162.128\/25", + "version":58560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.162.128", + "prefixLen":25, + "network":"193.240.162.128\/25", + "version":58560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.163.0", + "prefixLen":25, + "network":"193.240.163.0\/25", + "version":58559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.163.0", + "prefixLen":25, + "network":"193.240.163.0\/25", + "version":58559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.163.128", + "prefixLen":25, + "network":"193.240.163.128\/25", + "version":58558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.163.128", + "prefixLen":25, + "network":"193.240.163.128\/25", + "version":58558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.176.0", + "prefixLen":25, + "network":"193.240.176.0\/25", + "version":58557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.176.0", + "prefixLen":25, + "network":"193.240.176.0\/25", + "version":58557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.176.128", + "prefixLen":25, + "network":"193.240.176.128\/25", + "version":58556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.176.128", + "prefixLen":25, + "network":"193.240.176.128\/25", + "version":58556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.177.0", + "prefixLen":25, + "network":"193.240.177.0\/25", + "version":58555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.177.0", + "prefixLen":25, + "network":"193.240.177.0\/25", + "version":58555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.177.128", + "prefixLen":25, + "network":"193.240.177.128\/25", + "version":58554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.177.128", + "prefixLen":25, + "network":"193.240.177.128\/25", + "version":58554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.178.0", + "prefixLen":25, + "network":"193.240.178.0\/25", + "version":58553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.178.0", + "prefixLen":25, + "network":"193.240.178.0\/25", + "version":58553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.178.128", + "prefixLen":25, + "network":"193.240.178.128\/25", + "version":58552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.178.128", + "prefixLen":25, + "network":"193.240.178.128\/25", + "version":58552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.179.0", + "prefixLen":25, + "network":"193.240.179.0\/25", + "version":58551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.179.0", + "prefixLen":25, + "network":"193.240.179.0\/25", + "version":58551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.179.128", + "prefixLen":25, + "network":"193.240.179.128\/25", + "version":58550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.179.128", + "prefixLen":25, + "network":"193.240.179.128\/25", + "version":58550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.192.0", + "prefixLen":25, + "network":"193.240.192.0\/25", + "version":58549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.192.0", + "prefixLen":25, + "network":"193.240.192.0\/25", + "version":58549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.192.128", + "prefixLen":25, + "network":"193.240.192.128\/25", + "version":58548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.192.128", + "prefixLen":25, + "network":"193.240.192.128\/25", + "version":58548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.193.0", + "prefixLen":25, + "network":"193.240.193.0\/25", + "version":58547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.193.0", + "prefixLen":25, + "network":"193.240.193.0\/25", + "version":58547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.193.128", + "prefixLen":25, + "network":"193.240.193.128\/25", + "version":58546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.193.128", + "prefixLen":25, + "network":"193.240.193.128\/25", + "version":58546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.194.0", + "prefixLen":25, + "network":"193.240.194.0\/25", + "version":58545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.194.0", + "prefixLen":25, + "network":"193.240.194.0\/25", + "version":58545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.194.128", + "prefixLen":25, + "network":"193.240.194.128\/25", + "version":58544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.194.128", + "prefixLen":25, + "network":"193.240.194.128\/25", + "version":58544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.195.0", + "prefixLen":25, + "network":"193.240.195.0\/25", + "version":58543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.195.0", + "prefixLen":25, + "network":"193.240.195.0\/25", + "version":58543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.195.128", + "prefixLen":25, + "network":"193.240.195.128\/25", + "version":58542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.195.128", + "prefixLen":25, + "network":"193.240.195.128\/25", + "version":58542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.208.0", + "prefixLen":25, + "network":"193.240.208.0\/25", + "version":58541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.208.0", + "prefixLen":25, + "network":"193.240.208.0\/25", + "version":58541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.208.128", + "prefixLen":25, + "network":"193.240.208.128\/25", + "version":58540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.208.128", + "prefixLen":25, + "network":"193.240.208.128\/25", + "version":58540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.209.0", + "prefixLen":25, + "network":"193.240.209.0\/25", + "version":58539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.209.0", + "prefixLen":25, + "network":"193.240.209.0\/25", + "version":58539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.209.128", + "prefixLen":25, + "network":"193.240.209.128\/25", + "version":58538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.209.128", + "prefixLen":25, + "network":"193.240.209.128\/25", + "version":58538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.210.0", + "prefixLen":25, + "network":"193.240.210.0\/25", + "version":58537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.210.0", + "prefixLen":25, + "network":"193.240.210.0\/25", + "version":58537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.210.128", + "prefixLen":25, + "network":"193.240.210.128\/25", + "version":58536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.210.128", + "prefixLen":25, + "network":"193.240.210.128\/25", + "version":58536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.211.0", + "prefixLen":25, + "network":"193.240.211.0\/25", + "version":58535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.211.0", + "prefixLen":25, + "network":"193.240.211.0\/25", + "version":58535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.211.128", + "prefixLen":25, + "network":"193.240.211.128\/25", + "version":58534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.211.128", + "prefixLen":25, + "network":"193.240.211.128\/25", + "version":58534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.224.0", + "prefixLen":25, + "network":"193.240.224.0\/25", + "version":58533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.224.0", + "prefixLen":25, + "network":"193.240.224.0\/25", + "version":58533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.224.128", + "prefixLen":25, + "network":"193.240.224.128\/25", + "version":58532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.224.128", + "prefixLen":25, + "network":"193.240.224.128\/25", + "version":58532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.225.0", + "prefixLen":25, + "network":"193.240.225.0\/25", + "version":58531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.225.0", + "prefixLen":25, + "network":"193.240.225.0\/25", + "version":58531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.225.128", + "prefixLen":25, + "network":"193.240.225.128\/25", + "version":58530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.225.128", + "prefixLen":25, + "network":"193.240.225.128\/25", + "version":58530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.226.0", + "prefixLen":25, + "network":"193.240.226.0\/25", + "version":58529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.226.0", + "prefixLen":25, + "network":"193.240.226.0\/25", + "version":58529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.226.128", + "prefixLen":25, + "network":"193.240.226.128\/25", + "version":58528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.226.128", + "prefixLen":25, + "network":"193.240.226.128\/25", + "version":58528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.227.0", + "prefixLen":25, + "network":"193.240.227.0\/25", + "version":58527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.227.0", + "prefixLen":25, + "network":"193.240.227.0\/25", + "version":58527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.227.128", + "prefixLen":25, + "network":"193.240.227.128\/25", + "version":58526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.227.128", + "prefixLen":25, + "network":"193.240.227.128\/25", + "version":58526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.240.0", + "prefixLen":25, + "network":"193.240.240.0\/25", + "version":58525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.240.0", + "prefixLen":25, + "network":"193.240.240.0\/25", + "version":58525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.240.128", + "prefixLen":25, + "network":"193.240.240.128\/25", + "version":58524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.240.128", + "prefixLen":25, + "network":"193.240.240.128\/25", + "version":58524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.241.0", + "prefixLen":25, + "network":"193.240.241.0\/25", + "version":58523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.241.0", + "prefixLen":25, + "network":"193.240.241.0\/25", + "version":58523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.241.128", + "prefixLen":25, + "network":"193.240.241.128\/25", + "version":58522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.241.128", + "prefixLen":25, + "network":"193.240.241.128\/25", + "version":58522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.242.0", + "prefixLen":25, + "network":"193.240.242.0\/25", + "version":58521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.242.0", + "prefixLen":25, + "network":"193.240.242.0\/25", + "version":58521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.242.128", + "prefixLen":25, + "network":"193.240.242.128\/25", + "version":58520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.242.128", + "prefixLen":25, + "network":"193.240.242.128\/25", + "version":58520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.243.0", + "prefixLen":25, + "network":"193.240.243.0\/25", + "version":58519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.243.0", + "prefixLen":25, + "network":"193.240.243.0\/25", + "version":58519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.240.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.240.243.128", + "prefixLen":25, + "network":"193.240.243.128\/25", + "version":58518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.240.243.128", + "prefixLen":25, + "network":"193.240.243.128\/25", + "version":58518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64928 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.0.0", + "prefixLen":25, + "network":"193.241.0.0\/25", + "version":58645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.0.0", + "prefixLen":25, + "network":"193.241.0.0\/25", + "version":58645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.0.128", + "prefixLen":25, + "network":"193.241.0.128\/25", + "version":58772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.0.128", + "prefixLen":25, + "network":"193.241.0.128\/25", + "version":58772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.1.0", + "prefixLen":25, + "network":"193.241.1.0\/25", + "version":58771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.1.0", + "prefixLen":25, + "network":"193.241.1.0\/25", + "version":58771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.1.128", + "prefixLen":25, + "network":"193.241.1.128\/25", + "version":58770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.1.128", + "prefixLen":25, + "network":"193.241.1.128\/25", + "version":58770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.2.0", + "prefixLen":25, + "network":"193.241.2.0\/25", + "version":58769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.2.0", + "prefixLen":25, + "network":"193.241.2.0\/25", + "version":58769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.2.128", + "prefixLen":25, + "network":"193.241.2.128\/25", + "version":58768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.2.128", + "prefixLen":25, + "network":"193.241.2.128\/25", + "version":58768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.3.0", + "prefixLen":25, + "network":"193.241.3.0\/25", + "version":58767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.3.0", + "prefixLen":25, + "network":"193.241.3.0\/25", + "version":58767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.3.128", + "prefixLen":25, + "network":"193.241.3.128\/25", + "version":58766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.3.128", + "prefixLen":25, + "network":"193.241.3.128\/25", + "version":58766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.16.0", + "prefixLen":25, + "network":"193.241.16.0\/25", + "version":58765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.16.0", + "prefixLen":25, + "network":"193.241.16.0\/25", + "version":58765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.16.128", + "prefixLen":25, + "network":"193.241.16.128\/25", + "version":58764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.16.128", + "prefixLen":25, + "network":"193.241.16.128\/25", + "version":58764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.17.0", + "prefixLen":25, + "network":"193.241.17.0\/25", + "version":58763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.17.0", + "prefixLen":25, + "network":"193.241.17.0\/25", + "version":58763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.17.128", + "prefixLen":25, + "network":"193.241.17.128\/25", + "version":58762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.17.128", + "prefixLen":25, + "network":"193.241.17.128\/25", + "version":58762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.18.0", + "prefixLen":25, + "network":"193.241.18.0\/25", + "version":58761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.18.0", + "prefixLen":25, + "network":"193.241.18.0\/25", + "version":58761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.18.128", + "prefixLen":25, + "network":"193.241.18.128\/25", + "version":58760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.18.128", + "prefixLen":25, + "network":"193.241.18.128\/25", + "version":58760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.19.0", + "prefixLen":25, + "network":"193.241.19.0\/25", + "version":58759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.19.0", + "prefixLen":25, + "network":"193.241.19.0\/25", + "version":58759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.19.128", + "prefixLen":25, + "network":"193.241.19.128\/25", + "version":58758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.19.128", + "prefixLen":25, + "network":"193.241.19.128\/25", + "version":58758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.32.0", + "prefixLen":25, + "network":"193.241.32.0\/25", + "version":58757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.32.0", + "prefixLen":25, + "network":"193.241.32.0\/25", + "version":58757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.32.128", + "prefixLen":25, + "network":"193.241.32.128\/25", + "version":58756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.32.128", + "prefixLen":25, + "network":"193.241.32.128\/25", + "version":58756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.33.0", + "prefixLen":25, + "network":"193.241.33.0\/25", + "version":58755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.33.0", + "prefixLen":25, + "network":"193.241.33.0\/25", + "version":58755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.33.128", + "prefixLen":25, + "network":"193.241.33.128\/25", + "version":58754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.33.128", + "prefixLen":25, + "network":"193.241.33.128\/25", + "version":58754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.34.0", + "prefixLen":25, + "network":"193.241.34.0\/25", + "version":58753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.34.0", + "prefixLen":25, + "network":"193.241.34.0\/25", + "version":58753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.34.128", + "prefixLen":25, + "network":"193.241.34.128\/25", + "version":58752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.34.128", + "prefixLen":25, + "network":"193.241.34.128\/25", + "version":58752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.35.0", + "prefixLen":25, + "network":"193.241.35.0\/25", + "version":58751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.35.0", + "prefixLen":25, + "network":"193.241.35.0\/25", + "version":58751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.35.128", + "prefixLen":25, + "network":"193.241.35.128\/25", + "version":58750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.35.128", + "prefixLen":25, + "network":"193.241.35.128\/25", + "version":58750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.48.0", + "prefixLen":25, + "network":"193.241.48.0\/25", + "version":58749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.48.0", + "prefixLen":25, + "network":"193.241.48.0\/25", + "version":58749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.48.128", + "prefixLen":25, + "network":"193.241.48.128\/25", + "version":58748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.48.128", + "prefixLen":25, + "network":"193.241.48.128\/25", + "version":58748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.49.0", + "prefixLen":25, + "network":"193.241.49.0\/25", + "version":58747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.49.0", + "prefixLen":25, + "network":"193.241.49.0\/25", + "version":58747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.49.128", + "prefixLen":25, + "network":"193.241.49.128\/25", + "version":58746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.49.128", + "prefixLen":25, + "network":"193.241.49.128\/25", + "version":58746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.50.0", + "prefixLen":25, + "network":"193.241.50.0\/25", + "version":58745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.50.0", + "prefixLen":25, + "network":"193.241.50.0\/25", + "version":58745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.50.128", + "prefixLen":25, + "network":"193.241.50.128\/25", + "version":58744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.50.128", + "prefixLen":25, + "network":"193.241.50.128\/25", + "version":58744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.51.0", + "prefixLen":25, + "network":"193.241.51.0\/25", + "version":58743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.51.0", + "prefixLen":25, + "network":"193.241.51.0\/25", + "version":58743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.51.128", + "prefixLen":25, + "network":"193.241.51.128\/25", + "version":58742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.51.128", + "prefixLen":25, + "network":"193.241.51.128\/25", + "version":58742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.64.0", + "prefixLen":25, + "network":"193.241.64.0\/25", + "version":58741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.64.0", + "prefixLen":25, + "network":"193.241.64.0\/25", + "version":58741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.64.128", + "prefixLen":25, + "network":"193.241.64.128\/25", + "version":58740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.64.128", + "prefixLen":25, + "network":"193.241.64.128\/25", + "version":58740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.65.0", + "prefixLen":25, + "network":"193.241.65.0\/25", + "version":58739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.65.0", + "prefixLen":25, + "network":"193.241.65.0\/25", + "version":58739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.65.128", + "prefixLen":25, + "network":"193.241.65.128\/25", + "version":58738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.65.128", + "prefixLen":25, + "network":"193.241.65.128\/25", + "version":58738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.66.0", + "prefixLen":25, + "network":"193.241.66.0\/25", + "version":58737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.66.0", + "prefixLen":25, + "network":"193.241.66.0\/25", + "version":58737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.66.128", + "prefixLen":25, + "network":"193.241.66.128\/25", + "version":58736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.66.128", + "prefixLen":25, + "network":"193.241.66.128\/25", + "version":58736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.67.0", + "prefixLen":25, + "network":"193.241.67.0\/25", + "version":58735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.67.0", + "prefixLen":25, + "network":"193.241.67.0\/25", + "version":58735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.67.128", + "prefixLen":25, + "network":"193.241.67.128\/25", + "version":58734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.67.128", + "prefixLen":25, + "network":"193.241.67.128\/25", + "version":58734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.80.0", + "prefixLen":25, + "network":"193.241.80.0\/25", + "version":58733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.80.0", + "prefixLen":25, + "network":"193.241.80.0\/25", + "version":58733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.80.128", + "prefixLen":25, + "network":"193.241.80.128\/25", + "version":58732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.80.128", + "prefixLen":25, + "network":"193.241.80.128\/25", + "version":58732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.81.0", + "prefixLen":25, + "network":"193.241.81.0\/25", + "version":58731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.81.0", + "prefixLen":25, + "network":"193.241.81.0\/25", + "version":58731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.81.128", + "prefixLen":25, + "network":"193.241.81.128\/25", + "version":58730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.81.128", + "prefixLen":25, + "network":"193.241.81.128\/25", + "version":58730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.82.0", + "prefixLen":25, + "network":"193.241.82.0\/25", + "version":58729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.82.0", + "prefixLen":25, + "network":"193.241.82.0\/25", + "version":58729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.82.128", + "prefixLen":25, + "network":"193.241.82.128\/25", + "version":58728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.82.128", + "prefixLen":25, + "network":"193.241.82.128\/25", + "version":58728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.83.0", + "prefixLen":25, + "network":"193.241.83.0\/25", + "version":58727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.83.0", + "prefixLen":25, + "network":"193.241.83.0\/25", + "version":58727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.83.128", + "prefixLen":25, + "network":"193.241.83.128\/25", + "version":58726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.83.128", + "prefixLen":25, + "network":"193.241.83.128\/25", + "version":58726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.96.0", + "prefixLen":25, + "network":"193.241.96.0\/25", + "version":58725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.96.0", + "prefixLen":25, + "network":"193.241.96.0\/25", + "version":58725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.96.128", + "prefixLen":25, + "network":"193.241.96.128\/25", + "version":58724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.96.128", + "prefixLen":25, + "network":"193.241.96.128\/25", + "version":58724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.97.0", + "prefixLen":25, + "network":"193.241.97.0\/25", + "version":58723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.97.0", + "prefixLen":25, + "network":"193.241.97.0\/25", + "version":58723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.97.128", + "prefixLen":25, + "network":"193.241.97.128\/25", + "version":58722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.97.128", + "prefixLen":25, + "network":"193.241.97.128\/25", + "version":58722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.98.0", + "prefixLen":25, + "network":"193.241.98.0\/25", + "version":58721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.98.0", + "prefixLen":25, + "network":"193.241.98.0\/25", + "version":58721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.98.128", + "prefixLen":25, + "network":"193.241.98.128\/25", + "version":58720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.98.128", + "prefixLen":25, + "network":"193.241.98.128\/25", + "version":58720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.99.0", + "prefixLen":25, + "network":"193.241.99.0\/25", + "version":58719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.99.0", + "prefixLen":25, + "network":"193.241.99.0\/25", + "version":58719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.99.128", + "prefixLen":25, + "network":"193.241.99.128\/25", + "version":58718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.99.128", + "prefixLen":25, + "network":"193.241.99.128\/25", + "version":58718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.112.0", + "prefixLen":25, + "network":"193.241.112.0\/25", + "version":58717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.112.0", + "prefixLen":25, + "network":"193.241.112.0\/25", + "version":58717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.112.128", + "prefixLen":25, + "network":"193.241.112.128\/25", + "version":58716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.112.128", + "prefixLen":25, + "network":"193.241.112.128\/25", + "version":58716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.113.0", + "prefixLen":25, + "network":"193.241.113.0\/25", + "version":58715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.113.0", + "prefixLen":25, + "network":"193.241.113.0\/25", + "version":58715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.113.128", + "prefixLen":25, + "network":"193.241.113.128\/25", + "version":58714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.113.128", + "prefixLen":25, + "network":"193.241.113.128\/25", + "version":58714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.114.0", + "prefixLen":25, + "network":"193.241.114.0\/25", + "version":58713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.114.0", + "prefixLen":25, + "network":"193.241.114.0\/25", + "version":58713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.114.128", + "prefixLen":25, + "network":"193.241.114.128\/25", + "version":58712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.114.128", + "prefixLen":25, + "network":"193.241.114.128\/25", + "version":58712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.115.0", + "prefixLen":25, + "network":"193.241.115.0\/25", + "version":58711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.115.0", + "prefixLen":25, + "network":"193.241.115.0\/25", + "version":58711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.115.128", + "prefixLen":25, + "network":"193.241.115.128\/25", + "version":58710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.115.128", + "prefixLen":25, + "network":"193.241.115.128\/25", + "version":58710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.128.0", + "prefixLen":25, + "network":"193.241.128.0\/25", + "version":58709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.128.0", + "prefixLen":25, + "network":"193.241.128.0\/25", + "version":58709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.128.128", + "prefixLen":25, + "network":"193.241.128.128\/25", + "version":58708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.128.128", + "prefixLen":25, + "network":"193.241.128.128\/25", + "version":58708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.129.0", + "prefixLen":25, + "network":"193.241.129.0\/25", + "version":58707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.129.0", + "prefixLen":25, + "network":"193.241.129.0\/25", + "version":58707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.129.128", + "prefixLen":25, + "network":"193.241.129.128\/25", + "version":58706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.129.128", + "prefixLen":25, + "network":"193.241.129.128\/25", + "version":58706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.130.0", + "prefixLen":25, + "network":"193.241.130.0\/25", + "version":58705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.130.0", + "prefixLen":25, + "network":"193.241.130.0\/25", + "version":58705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.130.128", + "prefixLen":25, + "network":"193.241.130.128\/25", + "version":58704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.130.128", + "prefixLen":25, + "network":"193.241.130.128\/25", + "version":58704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.131.0", + "prefixLen":25, + "network":"193.241.131.0\/25", + "version":58703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.131.0", + "prefixLen":25, + "network":"193.241.131.0\/25", + "version":58703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.131.128", + "prefixLen":25, + "network":"193.241.131.128\/25", + "version":58702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.131.128", + "prefixLen":25, + "network":"193.241.131.128\/25", + "version":58702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.144.0", + "prefixLen":25, + "network":"193.241.144.0\/25", + "version":58701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.144.0", + "prefixLen":25, + "network":"193.241.144.0\/25", + "version":58701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.144.128", + "prefixLen":25, + "network":"193.241.144.128\/25", + "version":58700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.144.128", + "prefixLen":25, + "network":"193.241.144.128\/25", + "version":58700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.145.0", + "prefixLen":25, + "network":"193.241.145.0\/25", + "version":58699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.145.0", + "prefixLen":25, + "network":"193.241.145.0\/25", + "version":58699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.145.128", + "prefixLen":25, + "network":"193.241.145.128\/25", + "version":58698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.145.128", + "prefixLen":25, + "network":"193.241.145.128\/25", + "version":58698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.146.0", + "prefixLen":25, + "network":"193.241.146.0\/25", + "version":58697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.146.0", + "prefixLen":25, + "network":"193.241.146.0\/25", + "version":58697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.146.128", + "prefixLen":25, + "network":"193.241.146.128\/25", + "version":58696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.146.128", + "prefixLen":25, + "network":"193.241.146.128\/25", + "version":58696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.147.0", + "prefixLen":25, + "network":"193.241.147.0\/25", + "version":58695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.147.0", + "prefixLen":25, + "network":"193.241.147.0\/25", + "version":58695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.147.128", + "prefixLen":25, + "network":"193.241.147.128\/25", + "version":58694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.147.128", + "prefixLen":25, + "network":"193.241.147.128\/25", + "version":58694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.160.0", + "prefixLen":25, + "network":"193.241.160.0\/25", + "version":58693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.160.0", + "prefixLen":25, + "network":"193.241.160.0\/25", + "version":58693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.160.128", + "prefixLen":25, + "network":"193.241.160.128\/25", + "version":58692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.160.128", + "prefixLen":25, + "network":"193.241.160.128\/25", + "version":58692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.161.0", + "prefixLen":25, + "network":"193.241.161.0\/25", + "version":58691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.161.0", + "prefixLen":25, + "network":"193.241.161.0\/25", + "version":58691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.161.128", + "prefixLen":25, + "network":"193.241.161.128\/25", + "version":58690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.161.128", + "prefixLen":25, + "network":"193.241.161.128\/25", + "version":58690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.162.0", + "prefixLen":25, + "network":"193.241.162.0\/25", + "version":58689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.162.0", + "prefixLen":25, + "network":"193.241.162.0\/25", + "version":58689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.162.128", + "prefixLen":25, + "network":"193.241.162.128\/25", + "version":58688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.162.128", + "prefixLen":25, + "network":"193.241.162.128\/25", + "version":58688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.163.0", + "prefixLen":25, + "network":"193.241.163.0\/25", + "version":58687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.163.0", + "prefixLen":25, + "network":"193.241.163.0\/25", + "version":58687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.163.128", + "prefixLen":25, + "network":"193.241.163.128\/25", + "version":58686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.163.128", + "prefixLen":25, + "network":"193.241.163.128\/25", + "version":58686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.176.0", + "prefixLen":25, + "network":"193.241.176.0\/25", + "version":58685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.176.0", + "prefixLen":25, + "network":"193.241.176.0\/25", + "version":58685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.176.128", + "prefixLen":25, + "network":"193.241.176.128\/25", + "version":58684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.176.128", + "prefixLen":25, + "network":"193.241.176.128\/25", + "version":58684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.177.0", + "prefixLen":25, + "network":"193.241.177.0\/25", + "version":58683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.177.0", + "prefixLen":25, + "network":"193.241.177.0\/25", + "version":58683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.177.128", + "prefixLen":25, + "network":"193.241.177.128\/25", + "version":58682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.177.128", + "prefixLen":25, + "network":"193.241.177.128\/25", + "version":58682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.178.0", + "prefixLen":25, + "network":"193.241.178.0\/25", + "version":58681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.178.0", + "prefixLen":25, + "network":"193.241.178.0\/25", + "version":58681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.178.128", + "prefixLen":25, + "network":"193.241.178.128\/25", + "version":58680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.178.128", + "prefixLen":25, + "network":"193.241.178.128\/25", + "version":58680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.179.0", + "prefixLen":25, + "network":"193.241.179.0\/25", + "version":58679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.179.0", + "prefixLen":25, + "network":"193.241.179.0\/25", + "version":58679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.179.128", + "prefixLen":25, + "network":"193.241.179.128\/25", + "version":58678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.179.128", + "prefixLen":25, + "network":"193.241.179.128\/25", + "version":58678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.192.0", + "prefixLen":25, + "network":"193.241.192.0\/25", + "version":58677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.192.0", + "prefixLen":25, + "network":"193.241.192.0\/25", + "version":58677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.192.128", + "prefixLen":25, + "network":"193.241.192.128\/25", + "version":58676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.192.128", + "prefixLen":25, + "network":"193.241.192.128\/25", + "version":58676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.193.0", + "prefixLen":25, + "network":"193.241.193.0\/25", + "version":58675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.193.0", + "prefixLen":25, + "network":"193.241.193.0\/25", + "version":58675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.193.128", + "prefixLen":25, + "network":"193.241.193.128\/25", + "version":58674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.193.128", + "prefixLen":25, + "network":"193.241.193.128\/25", + "version":58674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.194.0", + "prefixLen":25, + "network":"193.241.194.0\/25", + "version":58673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.194.0", + "prefixLen":25, + "network":"193.241.194.0\/25", + "version":58673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.194.128", + "prefixLen":25, + "network":"193.241.194.128\/25", + "version":58672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.194.128", + "prefixLen":25, + "network":"193.241.194.128\/25", + "version":58672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.195.0", + "prefixLen":25, + "network":"193.241.195.0\/25", + "version":58671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.195.0", + "prefixLen":25, + "network":"193.241.195.0\/25", + "version":58671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.195.128", + "prefixLen":25, + "network":"193.241.195.128\/25", + "version":58670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.195.128", + "prefixLen":25, + "network":"193.241.195.128\/25", + "version":58670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.208.0", + "prefixLen":25, + "network":"193.241.208.0\/25", + "version":58669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.208.0", + "prefixLen":25, + "network":"193.241.208.0\/25", + "version":58669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.208.128", + "prefixLen":25, + "network":"193.241.208.128\/25", + "version":58668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.208.128", + "prefixLen":25, + "network":"193.241.208.128\/25", + "version":58668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.209.0", + "prefixLen":25, + "network":"193.241.209.0\/25", + "version":58667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.209.0", + "prefixLen":25, + "network":"193.241.209.0\/25", + "version":58667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.209.128", + "prefixLen":25, + "network":"193.241.209.128\/25", + "version":58666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.209.128", + "prefixLen":25, + "network":"193.241.209.128\/25", + "version":58666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.210.0", + "prefixLen":25, + "network":"193.241.210.0\/25", + "version":58665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.210.0", + "prefixLen":25, + "network":"193.241.210.0\/25", + "version":58665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.210.128", + "prefixLen":25, + "network":"193.241.210.128\/25", + "version":58664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.210.128", + "prefixLen":25, + "network":"193.241.210.128\/25", + "version":58664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.211.0", + "prefixLen":25, + "network":"193.241.211.0\/25", + "version":58663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.211.0", + "prefixLen":25, + "network":"193.241.211.0\/25", + "version":58663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.211.128", + "prefixLen":25, + "network":"193.241.211.128\/25", + "version":58662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.211.128", + "prefixLen":25, + "network":"193.241.211.128\/25", + "version":58662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.224.0", + "prefixLen":25, + "network":"193.241.224.0\/25", + "version":58661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.224.0", + "prefixLen":25, + "network":"193.241.224.0\/25", + "version":58661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.224.128", + "prefixLen":25, + "network":"193.241.224.128\/25", + "version":58660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.224.128", + "prefixLen":25, + "network":"193.241.224.128\/25", + "version":58660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.225.0", + "prefixLen":25, + "network":"193.241.225.0\/25", + "version":58659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.225.0", + "prefixLen":25, + "network":"193.241.225.0\/25", + "version":58659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.225.128", + "prefixLen":25, + "network":"193.241.225.128\/25", + "version":58658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.225.128", + "prefixLen":25, + "network":"193.241.225.128\/25", + "version":58658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.226.0", + "prefixLen":25, + "network":"193.241.226.0\/25", + "version":58657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.226.0", + "prefixLen":25, + "network":"193.241.226.0\/25", + "version":58657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.226.128", + "prefixLen":25, + "network":"193.241.226.128\/25", + "version":58656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.226.128", + "prefixLen":25, + "network":"193.241.226.128\/25", + "version":58656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.227.0", + "prefixLen":25, + "network":"193.241.227.0\/25", + "version":58655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.227.0", + "prefixLen":25, + "network":"193.241.227.0\/25", + "version":58655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.227.128", + "prefixLen":25, + "network":"193.241.227.128\/25", + "version":58654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.227.128", + "prefixLen":25, + "network":"193.241.227.128\/25", + "version":58654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.240.0", + "prefixLen":25, + "network":"193.241.240.0\/25", + "version":58653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.240.0", + "prefixLen":25, + "network":"193.241.240.0\/25", + "version":58653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.240.128", + "prefixLen":25, + "network":"193.241.240.128\/25", + "version":58652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.240.128", + "prefixLen":25, + "network":"193.241.240.128\/25", + "version":58652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.241.0", + "prefixLen":25, + "network":"193.241.241.0\/25", + "version":58651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.241.0", + "prefixLen":25, + "network":"193.241.241.0\/25", + "version":58651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.241.128", + "prefixLen":25, + "network":"193.241.241.128\/25", + "version":58650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.241.128", + "prefixLen":25, + "network":"193.241.241.128\/25", + "version":58650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.242.0", + "prefixLen":25, + "network":"193.241.242.0\/25", + "version":58649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.242.0", + "prefixLen":25, + "network":"193.241.242.0\/25", + "version":58649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.242.128", + "prefixLen":25, + "network":"193.241.242.128\/25", + "version":58648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.242.128", + "prefixLen":25, + "network":"193.241.242.128\/25", + "version":58648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.243.0", + "prefixLen":25, + "network":"193.241.243.0\/25", + "version":58647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.243.0", + "prefixLen":25, + "network":"193.241.243.0\/25", + "version":58647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.241.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.241.243.128", + "prefixLen":25, + "network":"193.241.243.128\/25", + "version":58646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.241.243.128", + "prefixLen":25, + "network":"193.241.243.128\/25", + "version":58646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64929 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.0.0", + "prefixLen":25, + "network":"193.242.0.0\/25", + "version":58773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.0.0", + "prefixLen":25, + "network":"193.242.0.0\/25", + "version":58773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.0.128", + "prefixLen":25, + "network":"193.242.0.128\/25", + "version":58900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.0.128", + "prefixLen":25, + "network":"193.242.0.128\/25", + "version":58900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.1.0", + "prefixLen":25, + "network":"193.242.1.0\/25", + "version":58899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.1.0", + "prefixLen":25, + "network":"193.242.1.0\/25", + "version":58899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.1.128", + "prefixLen":25, + "network":"193.242.1.128\/25", + "version":58898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.1.128", + "prefixLen":25, + "network":"193.242.1.128\/25", + "version":58898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.2.0", + "prefixLen":25, + "network":"193.242.2.0\/25", + "version":58897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.2.0", + "prefixLen":25, + "network":"193.242.2.0\/25", + "version":58897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.2.128", + "prefixLen":25, + "network":"193.242.2.128\/25", + "version":58896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.2.128", + "prefixLen":25, + "network":"193.242.2.128\/25", + "version":58896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.3.0", + "prefixLen":25, + "network":"193.242.3.0\/25", + "version":58895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.3.0", + "prefixLen":25, + "network":"193.242.3.0\/25", + "version":58895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.3.128", + "prefixLen":25, + "network":"193.242.3.128\/25", + "version":58894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.3.128", + "prefixLen":25, + "network":"193.242.3.128\/25", + "version":58894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.16.0", + "prefixLen":25, + "network":"193.242.16.0\/25", + "version":58893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.16.0", + "prefixLen":25, + "network":"193.242.16.0\/25", + "version":58893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.16.128", + "prefixLen":25, + "network":"193.242.16.128\/25", + "version":58892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.16.128", + "prefixLen":25, + "network":"193.242.16.128\/25", + "version":58892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.17.0", + "prefixLen":25, + "network":"193.242.17.0\/25", + "version":58891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.17.0", + "prefixLen":25, + "network":"193.242.17.0\/25", + "version":58891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.17.128", + "prefixLen":25, + "network":"193.242.17.128\/25", + "version":58890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.17.128", + "prefixLen":25, + "network":"193.242.17.128\/25", + "version":58890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.18.0", + "prefixLen":25, + "network":"193.242.18.0\/25", + "version":58889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.18.0", + "prefixLen":25, + "network":"193.242.18.0\/25", + "version":58889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.18.128", + "prefixLen":25, + "network":"193.242.18.128\/25", + "version":58888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.18.128", + "prefixLen":25, + "network":"193.242.18.128\/25", + "version":58888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.19.0", + "prefixLen":25, + "network":"193.242.19.0\/25", + "version":58887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.19.0", + "prefixLen":25, + "network":"193.242.19.0\/25", + "version":58887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.19.128", + "prefixLen":25, + "network":"193.242.19.128\/25", + "version":58886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.19.128", + "prefixLen":25, + "network":"193.242.19.128\/25", + "version":58886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.32.0", + "prefixLen":25, + "network":"193.242.32.0\/25", + "version":58885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.32.0", + "prefixLen":25, + "network":"193.242.32.0\/25", + "version":58885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.32.128", + "prefixLen":25, + "network":"193.242.32.128\/25", + "version":58884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.32.128", + "prefixLen":25, + "network":"193.242.32.128\/25", + "version":58884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.33.0", + "prefixLen":25, + "network":"193.242.33.0\/25", + "version":58883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.33.0", + "prefixLen":25, + "network":"193.242.33.0\/25", + "version":58883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.33.128", + "prefixLen":25, + "network":"193.242.33.128\/25", + "version":58882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.33.128", + "prefixLen":25, + "network":"193.242.33.128\/25", + "version":58882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.34.0", + "prefixLen":25, + "network":"193.242.34.0\/25", + "version":58881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.34.0", + "prefixLen":25, + "network":"193.242.34.0\/25", + "version":58881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.34.128", + "prefixLen":25, + "network":"193.242.34.128\/25", + "version":58880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.34.128", + "prefixLen":25, + "network":"193.242.34.128\/25", + "version":58880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.35.0", + "prefixLen":25, + "network":"193.242.35.0\/25", + "version":58879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.35.0", + "prefixLen":25, + "network":"193.242.35.0\/25", + "version":58879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.35.128", + "prefixLen":25, + "network":"193.242.35.128\/25", + "version":58878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.35.128", + "prefixLen":25, + "network":"193.242.35.128\/25", + "version":58878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.48.0", + "prefixLen":25, + "network":"193.242.48.0\/25", + "version":58877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.48.0", + "prefixLen":25, + "network":"193.242.48.0\/25", + "version":58877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.48.128", + "prefixLen":25, + "network":"193.242.48.128\/25", + "version":58876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.48.128", + "prefixLen":25, + "network":"193.242.48.128\/25", + "version":58876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.49.0", + "prefixLen":25, + "network":"193.242.49.0\/25", + "version":58875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.49.0", + "prefixLen":25, + "network":"193.242.49.0\/25", + "version":58875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.49.128", + "prefixLen":25, + "network":"193.242.49.128\/25", + "version":58874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.49.128", + "prefixLen":25, + "network":"193.242.49.128\/25", + "version":58874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.50.0", + "prefixLen":25, + "network":"193.242.50.0\/25", + "version":58873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.50.0", + "prefixLen":25, + "network":"193.242.50.0\/25", + "version":58873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.50.128", + "prefixLen":25, + "network":"193.242.50.128\/25", + "version":58872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.50.128", + "prefixLen":25, + "network":"193.242.50.128\/25", + "version":58872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.51.0", + "prefixLen":25, + "network":"193.242.51.0\/25", + "version":58871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.51.0", + "prefixLen":25, + "network":"193.242.51.0\/25", + "version":58871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.51.128", + "prefixLen":25, + "network":"193.242.51.128\/25", + "version":58870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.51.128", + "prefixLen":25, + "network":"193.242.51.128\/25", + "version":58870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.64.0", + "prefixLen":25, + "network":"193.242.64.0\/25", + "version":58869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.64.0", + "prefixLen":25, + "network":"193.242.64.0\/25", + "version":58869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.64.128", + "prefixLen":25, + "network":"193.242.64.128\/25", + "version":58868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.64.128", + "prefixLen":25, + "network":"193.242.64.128\/25", + "version":58868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.65.0", + "prefixLen":25, + "network":"193.242.65.0\/25", + "version":58867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.65.0", + "prefixLen":25, + "network":"193.242.65.0\/25", + "version":58867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.65.128", + "prefixLen":25, + "network":"193.242.65.128\/25", + "version":58866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.65.128", + "prefixLen":25, + "network":"193.242.65.128\/25", + "version":58866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.66.0", + "prefixLen":25, + "network":"193.242.66.0\/25", + "version":58865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.66.0", + "prefixLen":25, + "network":"193.242.66.0\/25", + "version":58865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.66.128", + "prefixLen":25, + "network":"193.242.66.128\/25", + "version":58864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.66.128", + "prefixLen":25, + "network":"193.242.66.128\/25", + "version":58864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.67.0", + "prefixLen":25, + "network":"193.242.67.0\/25", + "version":58863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.67.0", + "prefixLen":25, + "network":"193.242.67.0\/25", + "version":58863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.67.128", + "prefixLen":25, + "network":"193.242.67.128\/25", + "version":58862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.67.128", + "prefixLen":25, + "network":"193.242.67.128\/25", + "version":58862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.80.0", + "prefixLen":25, + "network":"193.242.80.0\/25", + "version":58861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.80.0", + "prefixLen":25, + "network":"193.242.80.0\/25", + "version":58861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.80.128", + "prefixLen":25, + "network":"193.242.80.128\/25", + "version":58860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.80.128", + "prefixLen":25, + "network":"193.242.80.128\/25", + "version":58860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.81.0", + "prefixLen":25, + "network":"193.242.81.0\/25", + "version":58859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.81.0", + "prefixLen":25, + "network":"193.242.81.0\/25", + "version":58859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.81.128", + "prefixLen":25, + "network":"193.242.81.128\/25", + "version":58858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.81.128", + "prefixLen":25, + "network":"193.242.81.128\/25", + "version":58858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.82.0", + "prefixLen":25, + "network":"193.242.82.0\/25", + "version":58857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.82.0", + "prefixLen":25, + "network":"193.242.82.0\/25", + "version":58857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.82.128", + "prefixLen":25, + "network":"193.242.82.128\/25", + "version":58856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.82.128", + "prefixLen":25, + "network":"193.242.82.128\/25", + "version":58856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.83.0", + "prefixLen":25, + "network":"193.242.83.0\/25", + "version":58855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.83.0", + "prefixLen":25, + "network":"193.242.83.0\/25", + "version":58855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.83.128", + "prefixLen":25, + "network":"193.242.83.128\/25", + "version":58854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.83.128", + "prefixLen":25, + "network":"193.242.83.128\/25", + "version":58854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.96.0", + "prefixLen":25, + "network":"193.242.96.0\/25", + "version":58853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.96.0", + "prefixLen":25, + "network":"193.242.96.0\/25", + "version":58853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.96.128", + "prefixLen":25, + "network":"193.242.96.128\/25", + "version":58852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.96.128", + "prefixLen":25, + "network":"193.242.96.128\/25", + "version":58852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.97.0", + "prefixLen":25, + "network":"193.242.97.0\/25", + "version":58851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.97.0", + "prefixLen":25, + "network":"193.242.97.0\/25", + "version":58851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.97.128", + "prefixLen":25, + "network":"193.242.97.128\/25", + "version":58850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.97.128", + "prefixLen":25, + "network":"193.242.97.128\/25", + "version":58850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.98.0", + "prefixLen":25, + "network":"193.242.98.0\/25", + "version":58849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.98.0", + "prefixLen":25, + "network":"193.242.98.0\/25", + "version":58849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.98.128", + "prefixLen":25, + "network":"193.242.98.128\/25", + "version":58848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.98.128", + "prefixLen":25, + "network":"193.242.98.128\/25", + "version":58848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.99.0", + "prefixLen":25, + "network":"193.242.99.0\/25", + "version":58847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.99.0", + "prefixLen":25, + "network":"193.242.99.0\/25", + "version":58847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.99.128", + "prefixLen":25, + "network":"193.242.99.128\/25", + "version":58846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.99.128", + "prefixLen":25, + "network":"193.242.99.128\/25", + "version":58846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.112.0", + "prefixLen":25, + "network":"193.242.112.0\/25", + "version":58845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.112.0", + "prefixLen":25, + "network":"193.242.112.0\/25", + "version":58845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.112.128", + "prefixLen":25, + "network":"193.242.112.128\/25", + "version":58844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.112.128", + "prefixLen":25, + "network":"193.242.112.128\/25", + "version":58844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.113.0", + "prefixLen":25, + "network":"193.242.113.0\/25", + "version":58843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.113.0", + "prefixLen":25, + "network":"193.242.113.0\/25", + "version":58843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.113.128", + "prefixLen":25, + "network":"193.242.113.128\/25", + "version":58842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.113.128", + "prefixLen":25, + "network":"193.242.113.128\/25", + "version":58842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.114.0", + "prefixLen":25, + "network":"193.242.114.0\/25", + "version":58841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.114.0", + "prefixLen":25, + "network":"193.242.114.0\/25", + "version":58841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.114.128", + "prefixLen":25, + "network":"193.242.114.128\/25", + "version":58840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.114.128", + "prefixLen":25, + "network":"193.242.114.128\/25", + "version":58840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.115.0", + "prefixLen":25, + "network":"193.242.115.0\/25", + "version":58839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.115.0", + "prefixLen":25, + "network":"193.242.115.0\/25", + "version":58839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.115.128", + "prefixLen":25, + "network":"193.242.115.128\/25", + "version":58838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.115.128", + "prefixLen":25, + "network":"193.242.115.128\/25", + "version":58838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.128.0", + "prefixLen":25, + "network":"193.242.128.0\/25", + "version":58837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.128.0", + "prefixLen":25, + "network":"193.242.128.0\/25", + "version":58837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.128.128", + "prefixLen":25, + "network":"193.242.128.128\/25", + "version":58836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.128.128", + "prefixLen":25, + "network":"193.242.128.128\/25", + "version":58836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.129.0", + "prefixLen":25, + "network":"193.242.129.0\/25", + "version":58835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.129.0", + "prefixLen":25, + "network":"193.242.129.0\/25", + "version":58835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.129.128", + "prefixLen":25, + "network":"193.242.129.128\/25", + "version":58834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.129.128", + "prefixLen":25, + "network":"193.242.129.128\/25", + "version":58834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.130.0", + "prefixLen":25, + "network":"193.242.130.0\/25", + "version":58833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.130.0", + "prefixLen":25, + "network":"193.242.130.0\/25", + "version":58833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.130.128", + "prefixLen":25, + "network":"193.242.130.128\/25", + "version":58832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.130.128", + "prefixLen":25, + "network":"193.242.130.128\/25", + "version":58832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.131.0", + "prefixLen":25, + "network":"193.242.131.0\/25", + "version":58831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.131.0", + "prefixLen":25, + "network":"193.242.131.0\/25", + "version":58831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.131.128", + "prefixLen":25, + "network":"193.242.131.128\/25", + "version":58830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.131.128", + "prefixLen":25, + "network":"193.242.131.128\/25", + "version":58830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.144.0", + "prefixLen":25, + "network":"193.242.144.0\/25", + "version":58829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.144.0", + "prefixLen":25, + "network":"193.242.144.0\/25", + "version":58829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.144.128", + "prefixLen":25, + "network":"193.242.144.128\/25", + "version":58828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.144.128", + "prefixLen":25, + "network":"193.242.144.128\/25", + "version":58828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.145.0", + "prefixLen":25, + "network":"193.242.145.0\/25", + "version":58827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.145.0", + "prefixLen":25, + "network":"193.242.145.0\/25", + "version":58827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.145.128", + "prefixLen":25, + "network":"193.242.145.128\/25", + "version":58826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.145.128", + "prefixLen":25, + "network":"193.242.145.128\/25", + "version":58826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.146.0", + "prefixLen":25, + "network":"193.242.146.0\/25", + "version":58825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.146.0", + "prefixLen":25, + "network":"193.242.146.0\/25", + "version":58825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.146.128", + "prefixLen":25, + "network":"193.242.146.128\/25", + "version":58824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.146.128", + "prefixLen":25, + "network":"193.242.146.128\/25", + "version":58824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.147.0", + "prefixLen":25, + "network":"193.242.147.0\/25", + "version":58823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.147.0", + "prefixLen":25, + "network":"193.242.147.0\/25", + "version":58823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.147.128", + "prefixLen":25, + "network":"193.242.147.128\/25", + "version":58822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.147.128", + "prefixLen":25, + "network":"193.242.147.128\/25", + "version":58822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.160.0", + "prefixLen":25, + "network":"193.242.160.0\/25", + "version":58821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.160.0", + "prefixLen":25, + "network":"193.242.160.0\/25", + "version":58821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.160.128", + "prefixLen":25, + "network":"193.242.160.128\/25", + "version":58820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.160.128", + "prefixLen":25, + "network":"193.242.160.128\/25", + "version":58820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.161.0", + "prefixLen":25, + "network":"193.242.161.0\/25", + "version":58819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.161.0", + "prefixLen":25, + "network":"193.242.161.0\/25", + "version":58819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.161.128", + "prefixLen":25, + "network":"193.242.161.128\/25", + "version":58818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.161.128", + "prefixLen":25, + "network":"193.242.161.128\/25", + "version":58818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.162.0", + "prefixLen":25, + "network":"193.242.162.0\/25", + "version":58817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.162.0", + "prefixLen":25, + "network":"193.242.162.0\/25", + "version":58817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.162.128", + "prefixLen":25, + "network":"193.242.162.128\/25", + "version":58816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.162.128", + "prefixLen":25, + "network":"193.242.162.128\/25", + "version":58816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.163.0", + "prefixLen":25, + "network":"193.242.163.0\/25", + "version":58815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.163.0", + "prefixLen":25, + "network":"193.242.163.0\/25", + "version":58815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.163.128", + "prefixLen":25, + "network":"193.242.163.128\/25", + "version":58814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.163.128", + "prefixLen":25, + "network":"193.242.163.128\/25", + "version":58814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.176.0", + "prefixLen":25, + "network":"193.242.176.0\/25", + "version":58813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.176.0", + "prefixLen":25, + "network":"193.242.176.0\/25", + "version":58813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.176.128", + "prefixLen":25, + "network":"193.242.176.128\/25", + "version":58812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.176.128", + "prefixLen":25, + "network":"193.242.176.128\/25", + "version":58812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.177.0", + "prefixLen":25, + "network":"193.242.177.0\/25", + "version":58811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.177.0", + "prefixLen":25, + "network":"193.242.177.0\/25", + "version":58811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.177.128", + "prefixLen":25, + "network":"193.242.177.128\/25", + "version":58810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.177.128", + "prefixLen":25, + "network":"193.242.177.128\/25", + "version":58810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.178.0", + "prefixLen":25, + "network":"193.242.178.0\/25", + "version":58809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.178.0", + "prefixLen":25, + "network":"193.242.178.0\/25", + "version":58809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.178.128", + "prefixLen":25, + "network":"193.242.178.128\/25", + "version":58808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.178.128", + "prefixLen":25, + "network":"193.242.178.128\/25", + "version":58808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.179.0", + "prefixLen":25, + "network":"193.242.179.0\/25", + "version":58807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.179.0", + "prefixLen":25, + "network":"193.242.179.0\/25", + "version":58807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.179.128", + "prefixLen":25, + "network":"193.242.179.128\/25", + "version":58806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.179.128", + "prefixLen":25, + "network":"193.242.179.128\/25", + "version":58806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.192.0", + "prefixLen":25, + "network":"193.242.192.0\/25", + "version":58805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.192.0", + "prefixLen":25, + "network":"193.242.192.0\/25", + "version":58805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.192.128", + "prefixLen":25, + "network":"193.242.192.128\/25", + "version":58804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.192.128", + "prefixLen":25, + "network":"193.242.192.128\/25", + "version":58804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.193.0", + "prefixLen":25, + "network":"193.242.193.0\/25", + "version":58803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.193.0", + "prefixLen":25, + "network":"193.242.193.0\/25", + "version":58803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.193.128", + "prefixLen":25, + "network":"193.242.193.128\/25", + "version":58802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.193.128", + "prefixLen":25, + "network":"193.242.193.128\/25", + "version":58802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.194.0", + "prefixLen":25, + "network":"193.242.194.0\/25", + "version":58801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.194.0", + "prefixLen":25, + "network":"193.242.194.0\/25", + "version":58801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.194.128", + "prefixLen":25, + "network":"193.242.194.128\/25", + "version":58800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.194.128", + "prefixLen":25, + "network":"193.242.194.128\/25", + "version":58800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.195.0", + "prefixLen":25, + "network":"193.242.195.0\/25", + "version":58799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.195.0", + "prefixLen":25, + "network":"193.242.195.0\/25", + "version":58799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.195.128", + "prefixLen":25, + "network":"193.242.195.128\/25", + "version":58798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.195.128", + "prefixLen":25, + "network":"193.242.195.128\/25", + "version":58798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.208.0", + "prefixLen":25, + "network":"193.242.208.0\/25", + "version":58797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.208.0", + "prefixLen":25, + "network":"193.242.208.0\/25", + "version":58797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.208.128", + "prefixLen":25, + "network":"193.242.208.128\/25", + "version":58796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.208.128", + "prefixLen":25, + "network":"193.242.208.128\/25", + "version":58796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.209.0", + "prefixLen":25, + "network":"193.242.209.0\/25", + "version":58795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.209.0", + "prefixLen":25, + "network":"193.242.209.0\/25", + "version":58795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.209.128", + "prefixLen":25, + "network":"193.242.209.128\/25", + "version":58794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.209.128", + "prefixLen":25, + "network":"193.242.209.128\/25", + "version":58794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.210.0", + "prefixLen":25, + "network":"193.242.210.0\/25", + "version":58793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.210.0", + "prefixLen":25, + "network":"193.242.210.0\/25", + "version":58793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.210.128", + "prefixLen":25, + "network":"193.242.210.128\/25", + "version":58792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.210.128", + "prefixLen":25, + "network":"193.242.210.128\/25", + "version":58792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.211.0", + "prefixLen":25, + "network":"193.242.211.0\/25", + "version":58791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.211.0", + "prefixLen":25, + "network":"193.242.211.0\/25", + "version":58791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.211.128", + "prefixLen":25, + "network":"193.242.211.128\/25", + "version":58790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.211.128", + "prefixLen":25, + "network":"193.242.211.128\/25", + "version":58790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.224.0", + "prefixLen":25, + "network":"193.242.224.0\/25", + "version":58789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.224.0", + "prefixLen":25, + "network":"193.242.224.0\/25", + "version":58789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.224.128", + "prefixLen":25, + "network":"193.242.224.128\/25", + "version":58788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.224.128", + "prefixLen":25, + "network":"193.242.224.128\/25", + "version":58788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.225.0", + "prefixLen":25, + "network":"193.242.225.0\/25", + "version":58787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.225.0", + "prefixLen":25, + "network":"193.242.225.0\/25", + "version":58787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.225.128", + "prefixLen":25, + "network":"193.242.225.128\/25", + "version":58786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.225.128", + "prefixLen":25, + "network":"193.242.225.128\/25", + "version":58786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.226.0", + "prefixLen":25, + "network":"193.242.226.0\/25", + "version":58785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.226.0", + "prefixLen":25, + "network":"193.242.226.0\/25", + "version":58785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.226.128", + "prefixLen":25, + "network":"193.242.226.128\/25", + "version":58784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.226.128", + "prefixLen":25, + "network":"193.242.226.128\/25", + "version":58784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.227.0", + "prefixLen":25, + "network":"193.242.227.0\/25", + "version":58783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.227.0", + "prefixLen":25, + "network":"193.242.227.0\/25", + "version":58783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.227.128", + "prefixLen":25, + "network":"193.242.227.128\/25", + "version":58782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.227.128", + "prefixLen":25, + "network":"193.242.227.128\/25", + "version":58782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.240.0", + "prefixLen":25, + "network":"193.242.240.0\/25", + "version":58781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.240.0", + "prefixLen":25, + "network":"193.242.240.0\/25", + "version":58781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.240.128", + "prefixLen":25, + "network":"193.242.240.128\/25", + "version":58780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.240.128", + "prefixLen":25, + "network":"193.242.240.128\/25", + "version":58780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.241.0", + "prefixLen":25, + "network":"193.242.241.0\/25", + "version":58779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.241.0", + "prefixLen":25, + "network":"193.242.241.0\/25", + "version":58779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.241.128", + "prefixLen":25, + "network":"193.242.241.128\/25", + "version":58778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.241.128", + "prefixLen":25, + "network":"193.242.241.128\/25", + "version":58778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.242.0", + "prefixLen":25, + "network":"193.242.242.0\/25", + "version":58777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.242.0", + "prefixLen":25, + "network":"193.242.242.0\/25", + "version":58777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.242.128", + "prefixLen":25, + "network":"193.242.242.128\/25", + "version":58776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.242.128", + "prefixLen":25, + "network":"193.242.242.128\/25", + "version":58776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.243.0", + "prefixLen":25, + "network":"193.242.243.0\/25", + "version":58775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.243.0", + "prefixLen":25, + "network":"193.242.243.0\/25", + "version":58775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.242.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.242.243.128", + "prefixLen":25, + "network":"193.242.243.128\/25", + "version":58774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.242.243.128", + "prefixLen":25, + "network":"193.242.243.128\/25", + "version":58774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64930 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.0.0", + "prefixLen":25, + "network":"193.243.0.0\/25", + "version":58901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.0.0", + "prefixLen":25, + "network":"193.243.0.0\/25", + "version":58901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.0.128", + "prefixLen":25, + "network":"193.243.0.128\/25", + "version":59028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.0.128", + "prefixLen":25, + "network":"193.243.0.128\/25", + "version":59028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.1.0", + "prefixLen":25, + "network":"193.243.1.0\/25", + "version":59027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.1.0", + "prefixLen":25, + "network":"193.243.1.0\/25", + "version":59027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.1.128", + "prefixLen":25, + "network":"193.243.1.128\/25", + "version":59026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.1.128", + "prefixLen":25, + "network":"193.243.1.128\/25", + "version":59026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.2.0", + "prefixLen":25, + "network":"193.243.2.0\/25", + "version":59025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.2.0", + "prefixLen":25, + "network":"193.243.2.0\/25", + "version":59025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.2.128", + "prefixLen":25, + "network":"193.243.2.128\/25", + "version":59024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.2.128", + "prefixLen":25, + "network":"193.243.2.128\/25", + "version":59024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.3.0", + "prefixLen":25, + "network":"193.243.3.0\/25", + "version":59023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.3.0", + "prefixLen":25, + "network":"193.243.3.0\/25", + "version":59023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.3.128", + "prefixLen":25, + "network":"193.243.3.128\/25", + "version":59022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.3.128", + "prefixLen":25, + "network":"193.243.3.128\/25", + "version":59022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.16.0", + "prefixLen":25, + "network":"193.243.16.0\/25", + "version":59021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.16.0", + "prefixLen":25, + "network":"193.243.16.0\/25", + "version":59021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.16.128", + "prefixLen":25, + "network":"193.243.16.128\/25", + "version":59020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.16.128", + "prefixLen":25, + "network":"193.243.16.128\/25", + "version":59020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.17.0", + "prefixLen":25, + "network":"193.243.17.0\/25", + "version":59019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.17.0", + "prefixLen":25, + "network":"193.243.17.0\/25", + "version":59019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.17.128", + "prefixLen":25, + "network":"193.243.17.128\/25", + "version":59018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.17.128", + "prefixLen":25, + "network":"193.243.17.128\/25", + "version":59018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.18.0", + "prefixLen":25, + "network":"193.243.18.0\/25", + "version":59017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.18.0", + "prefixLen":25, + "network":"193.243.18.0\/25", + "version":59017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.18.128", + "prefixLen":25, + "network":"193.243.18.128\/25", + "version":59016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.18.128", + "prefixLen":25, + "network":"193.243.18.128\/25", + "version":59016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.19.0", + "prefixLen":25, + "network":"193.243.19.0\/25", + "version":59015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.19.0", + "prefixLen":25, + "network":"193.243.19.0\/25", + "version":59015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.19.128", + "prefixLen":25, + "network":"193.243.19.128\/25", + "version":59014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.19.128", + "prefixLen":25, + "network":"193.243.19.128\/25", + "version":59014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.32.0", + "prefixLen":25, + "network":"193.243.32.0\/25", + "version":59013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.32.0", + "prefixLen":25, + "network":"193.243.32.0\/25", + "version":59013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.32.128", + "prefixLen":25, + "network":"193.243.32.128\/25", + "version":59012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.32.128", + "prefixLen":25, + "network":"193.243.32.128\/25", + "version":59012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.33.0", + "prefixLen":25, + "network":"193.243.33.0\/25", + "version":59011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.33.0", + "prefixLen":25, + "network":"193.243.33.0\/25", + "version":59011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.33.128", + "prefixLen":25, + "network":"193.243.33.128\/25", + "version":59010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.33.128", + "prefixLen":25, + "network":"193.243.33.128\/25", + "version":59010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.34.0", + "prefixLen":25, + "network":"193.243.34.0\/25", + "version":59009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.34.0", + "prefixLen":25, + "network":"193.243.34.0\/25", + "version":59009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.34.128", + "prefixLen":25, + "network":"193.243.34.128\/25", + "version":59008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.34.128", + "prefixLen":25, + "network":"193.243.34.128\/25", + "version":59008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.35.0", + "prefixLen":25, + "network":"193.243.35.0\/25", + "version":59007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.35.0", + "prefixLen":25, + "network":"193.243.35.0\/25", + "version":59007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.35.128", + "prefixLen":25, + "network":"193.243.35.128\/25", + "version":59006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.35.128", + "prefixLen":25, + "network":"193.243.35.128\/25", + "version":59006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.48.0", + "prefixLen":25, + "network":"193.243.48.0\/25", + "version":59005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.48.0", + "prefixLen":25, + "network":"193.243.48.0\/25", + "version":59005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.48.128", + "prefixLen":25, + "network":"193.243.48.128\/25", + "version":59004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.48.128", + "prefixLen":25, + "network":"193.243.48.128\/25", + "version":59004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.49.0", + "prefixLen":25, + "network":"193.243.49.0\/25", + "version":59003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.49.0", + "prefixLen":25, + "network":"193.243.49.0\/25", + "version":59003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.49.128", + "prefixLen":25, + "network":"193.243.49.128\/25", + "version":59002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.49.128", + "prefixLen":25, + "network":"193.243.49.128\/25", + "version":59002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.50.0", + "prefixLen":25, + "network":"193.243.50.0\/25", + "version":59001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.50.0", + "prefixLen":25, + "network":"193.243.50.0\/25", + "version":59001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.50.128", + "prefixLen":25, + "network":"193.243.50.128\/25", + "version":59000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.50.128", + "prefixLen":25, + "network":"193.243.50.128\/25", + "version":59000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.51.0", + "prefixLen":25, + "network":"193.243.51.0\/25", + "version":58999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.51.0", + "prefixLen":25, + "network":"193.243.51.0\/25", + "version":58999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.51.128", + "prefixLen":25, + "network":"193.243.51.128\/25", + "version":58998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.51.128", + "prefixLen":25, + "network":"193.243.51.128\/25", + "version":58998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.64.0", + "prefixLen":25, + "network":"193.243.64.0\/25", + "version":58997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.64.0", + "prefixLen":25, + "network":"193.243.64.0\/25", + "version":58997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.64.128", + "prefixLen":25, + "network":"193.243.64.128\/25", + "version":58996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.64.128", + "prefixLen":25, + "network":"193.243.64.128\/25", + "version":58996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.65.0", + "prefixLen":25, + "network":"193.243.65.0\/25", + "version":58995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.65.0", + "prefixLen":25, + "network":"193.243.65.0\/25", + "version":58995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.65.128", + "prefixLen":25, + "network":"193.243.65.128\/25", + "version":58994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.65.128", + "prefixLen":25, + "network":"193.243.65.128\/25", + "version":58994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.66.0", + "prefixLen":25, + "network":"193.243.66.0\/25", + "version":58993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.66.0", + "prefixLen":25, + "network":"193.243.66.0\/25", + "version":58993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.66.128", + "prefixLen":25, + "network":"193.243.66.128\/25", + "version":58992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.66.128", + "prefixLen":25, + "network":"193.243.66.128\/25", + "version":58992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.67.0", + "prefixLen":25, + "network":"193.243.67.0\/25", + "version":58991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.67.0", + "prefixLen":25, + "network":"193.243.67.0\/25", + "version":58991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.67.128", + "prefixLen":25, + "network":"193.243.67.128\/25", + "version":58990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.67.128", + "prefixLen":25, + "network":"193.243.67.128\/25", + "version":58990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.80.0", + "prefixLen":25, + "network":"193.243.80.0\/25", + "version":58989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.80.0", + "prefixLen":25, + "network":"193.243.80.0\/25", + "version":58989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.80.128", + "prefixLen":25, + "network":"193.243.80.128\/25", + "version":58988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.80.128", + "prefixLen":25, + "network":"193.243.80.128\/25", + "version":58988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.81.0", + "prefixLen":25, + "network":"193.243.81.0\/25", + "version":58987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.81.0", + "prefixLen":25, + "network":"193.243.81.0\/25", + "version":58987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.81.128", + "prefixLen":25, + "network":"193.243.81.128\/25", + "version":58986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.81.128", + "prefixLen":25, + "network":"193.243.81.128\/25", + "version":58986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.82.0", + "prefixLen":25, + "network":"193.243.82.0\/25", + "version":58985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.82.0", + "prefixLen":25, + "network":"193.243.82.0\/25", + "version":58985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.82.128", + "prefixLen":25, + "network":"193.243.82.128\/25", + "version":58984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.82.128", + "prefixLen":25, + "network":"193.243.82.128\/25", + "version":58984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.83.0", + "prefixLen":25, + "network":"193.243.83.0\/25", + "version":58983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.83.0", + "prefixLen":25, + "network":"193.243.83.0\/25", + "version":58983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.83.128", + "prefixLen":25, + "network":"193.243.83.128\/25", + "version":58982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.83.128", + "prefixLen":25, + "network":"193.243.83.128\/25", + "version":58982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.96.0", + "prefixLen":25, + "network":"193.243.96.0\/25", + "version":58981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.96.0", + "prefixLen":25, + "network":"193.243.96.0\/25", + "version":58981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.96.128", + "prefixLen":25, + "network":"193.243.96.128\/25", + "version":58980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.96.128", + "prefixLen":25, + "network":"193.243.96.128\/25", + "version":58980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.97.0", + "prefixLen":25, + "network":"193.243.97.0\/25", + "version":58979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.97.0", + "prefixLen":25, + "network":"193.243.97.0\/25", + "version":58979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.97.128", + "prefixLen":25, + "network":"193.243.97.128\/25", + "version":58978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.97.128", + "prefixLen":25, + "network":"193.243.97.128\/25", + "version":58978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.98.0", + "prefixLen":25, + "network":"193.243.98.0\/25", + "version":58977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.98.0", + "prefixLen":25, + "network":"193.243.98.0\/25", + "version":58977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.98.128", + "prefixLen":25, + "network":"193.243.98.128\/25", + "version":58976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.98.128", + "prefixLen":25, + "network":"193.243.98.128\/25", + "version":58976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.99.0", + "prefixLen":25, + "network":"193.243.99.0\/25", + "version":58975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.99.0", + "prefixLen":25, + "network":"193.243.99.0\/25", + "version":58975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.99.128", + "prefixLen":25, + "network":"193.243.99.128\/25", + "version":58974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.99.128", + "prefixLen":25, + "network":"193.243.99.128\/25", + "version":58974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.112.0", + "prefixLen":25, + "network":"193.243.112.0\/25", + "version":58973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.112.0", + "prefixLen":25, + "network":"193.243.112.0\/25", + "version":58973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.112.128", + "prefixLen":25, + "network":"193.243.112.128\/25", + "version":58972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.112.128", + "prefixLen":25, + "network":"193.243.112.128\/25", + "version":58972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.113.0", + "prefixLen":25, + "network":"193.243.113.0\/25", + "version":58971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.113.0", + "prefixLen":25, + "network":"193.243.113.0\/25", + "version":58971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.113.128", + "prefixLen":25, + "network":"193.243.113.128\/25", + "version":58970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.113.128", + "prefixLen":25, + "network":"193.243.113.128\/25", + "version":58970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.114.0", + "prefixLen":25, + "network":"193.243.114.0\/25", + "version":58969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.114.0", + "prefixLen":25, + "network":"193.243.114.0\/25", + "version":58969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.114.128", + "prefixLen":25, + "network":"193.243.114.128\/25", + "version":58968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.114.128", + "prefixLen":25, + "network":"193.243.114.128\/25", + "version":58968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.115.0", + "prefixLen":25, + "network":"193.243.115.0\/25", + "version":58967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.115.0", + "prefixLen":25, + "network":"193.243.115.0\/25", + "version":58967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.115.128", + "prefixLen":25, + "network":"193.243.115.128\/25", + "version":58966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.115.128", + "prefixLen":25, + "network":"193.243.115.128\/25", + "version":58966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.128.0", + "prefixLen":25, + "network":"193.243.128.0\/25", + "version":58965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.128.0", + "prefixLen":25, + "network":"193.243.128.0\/25", + "version":58965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.128.128", + "prefixLen":25, + "network":"193.243.128.128\/25", + "version":58964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.128.128", + "prefixLen":25, + "network":"193.243.128.128\/25", + "version":58964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.129.0", + "prefixLen":25, + "network":"193.243.129.0\/25", + "version":58963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.129.0", + "prefixLen":25, + "network":"193.243.129.0\/25", + "version":58963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.129.128", + "prefixLen":25, + "network":"193.243.129.128\/25", + "version":58962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.129.128", + "prefixLen":25, + "network":"193.243.129.128\/25", + "version":58962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.130.0", + "prefixLen":25, + "network":"193.243.130.0\/25", + "version":58961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.130.0", + "prefixLen":25, + "network":"193.243.130.0\/25", + "version":58961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.130.128", + "prefixLen":25, + "network":"193.243.130.128\/25", + "version":58960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.130.128", + "prefixLen":25, + "network":"193.243.130.128\/25", + "version":58960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.131.0", + "prefixLen":25, + "network":"193.243.131.0\/25", + "version":58959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.131.0", + "prefixLen":25, + "network":"193.243.131.0\/25", + "version":58959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.131.128", + "prefixLen":25, + "network":"193.243.131.128\/25", + "version":58958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.131.128", + "prefixLen":25, + "network":"193.243.131.128\/25", + "version":58958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.144.0", + "prefixLen":25, + "network":"193.243.144.0\/25", + "version":58957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.144.0", + "prefixLen":25, + "network":"193.243.144.0\/25", + "version":58957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.144.128", + "prefixLen":25, + "network":"193.243.144.128\/25", + "version":58956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.144.128", + "prefixLen":25, + "network":"193.243.144.128\/25", + "version":58956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.145.0", + "prefixLen":25, + "network":"193.243.145.0\/25", + "version":58955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.145.0", + "prefixLen":25, + "network":"193.243.145.0\/25", + "version":58955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.145.128", + "prefixLen":25, + "network":"193.243.145.128\/25", + "version":58954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.145.128", + "prefixLen":25, + "network":"193.243.145.128\/25", + "version":58954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.146.0", + "prefixLen":25, + "network":"193.243.146.0\/25", + "version":58953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.146.0", + "prefixLen":25, + "network":"193.243.146.0\/25", + "version":58953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.146.128", + "prefixLen":25, + "network":"193.243.146.128\/25", + "version":58952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.146.128", + "prefixLen":25, + "network":"193.243.146.128\/25", + "version":58952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.147.0", + "prefixLen":25, + "network":"193.243.147.0\/25", + "version":58951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.147.0", + "prefixLen":25, + "network":"193.243.147.0\/25", + "version":58951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.147.128", + "prefixLen":25, + "network":"193.243.147.128\/25", + "version":58950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.147.128", + "prefixLen":25, + "network":"193.243.147.128\/25", + "version":58950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.160.0", + "prefixLen":25, + "network":"193.243.160.0\/25", + "version":58949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.160.0", + "prefixLen":25, + "network":"193.243.160.0\/25", + "version":58949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.160.128", + "prefixLen":25, + "network":"193.243.160.128\/25", + "version":58948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.160.128", + "prefixLen":25, + "network":"193.243.160.128\/25", + "version":58948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.161.0", + "prefixLen":25, + "network":"193.243.161.0\/25", + "version":58947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.161.0", + "prefixLen":25, + "network":"193.243.161.0\/25", + "version":58947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.161.128", + "prefixLen":25, + "network":"193.243.161.128\/25", + "version":58946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.161.128", + "prefixLen":25, + "network":"193.243.161.128\/25", + "version":58946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.162.0", + "prefixLen":25, + "network":"193.243.162.0\/25", + "version":58945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.162.0", + "prefixLen":25, + "network":"193.243.162.0\/25", + "version":58945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.162.128", + "prefixLen":25, + "network":"193.243.162.128\/25", + "version":58944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.162.128", + "prefixLen":25, + "network":"193.243.162.128\/25", + "version":58944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.163.0", + "prefixLen":25, + "network":"193.243.163.0\/25", + "version":58943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.163.0", + "prefixLen":25, + "network":"193.243.163.0\/25", + "version":58943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.163.128", + "prefixLen":25, + "network":"193.243.163.128\/25", + "version":58942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.163.128", + "prefixLen":25, + "network":"193.243.163.128\/25", + "version":58942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.176.0", + "prefixLen":25, + "network":"193.243.176.0\/25", + "version":58941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.176.0", + "prefixLen":25, + "network":"193.243.176.0\/25", + "version":58941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.176.128", + "prefixLen":25, + "network":"193.243.176.128\/25", + "version":58940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.176.128", + "prefixLen":25, + "network":"193.243.176.128\/25", + "version":58940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.177.0", + "prefixLen":25, + "network":"193.243.177.0\/25", + "version":58939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.177.0", + "prefixLen":25, + "network":"193.243.177.0\/25", + "version":58939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.177.128", + "prefixLen":25, + "network":"193.243.177.128\/25", + "version":58938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.177.128", + "prefixLen":25, + "network":"193.243.177.128\/25", + "version":58938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.178.0", + "prefixLen":25, + "network":"193.243.178.0\/25", + "version":58937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.178.0", + "prefixLen":25, + "network":"193.243.178.0\/25", + "version":58937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.178.128", + "prefixLen":25, + "network":"193.243.178.128\/25", + "version":58936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.178.128", + "prefixLen":25, + "network":"193.243.178.128\/25", + "version":58936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.179.0", + "prefixLen":25, + "network":"193.243.179.0\/25", + "version":58935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.179.0", + "prefixLen":25, + "network":"193.243.179.0\/25", + "version":58935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.179.128", + "prefixLen":25, + "network":"193.243.179.128\/25", + "version":58934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.179.128", + "prefixLen":25, + "network":"193.243.179.128\/25", + "version":58934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.192.0", + "prefixLen":25, + "network":"193.243.192.0\/25", + "version":58933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.192.0", + "prefixLen":25, + "network":"193.243.192.0\/25", + "version":58933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.192.128", + "prefixLen":25, + "network":"193.243.192.128\/25", + "version":58932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.192.128", + "prefixLen":25, + "network":"193.243.192.128\/25", + "version":58932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.193.0", + "prefixLen":25, + "network":"193.243.193.0\/25", + "version":58931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.193.0", + "prefixLen":25, + "network":"193.243.193.0\/25", + "version":58931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.193.128", + "prefixLen":25, + "network":"193.243.193.128\/25", + "version":58930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.193.128", + "prefixLen":25, + "network":"193.243.193.128\/25", + "version":58930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.194.0", + "prefixLen":25, + "network":"193.243.194.0\/25", + "version":58929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.194.0", + "prefixLen":25, + "network":"193.243.194.0\/25", + "version":58929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.194.128", + "prefixLen":25, + "network":"193.243.194.128\/25", + "version":58928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.194.128", + "prefixLen":25, + "network":"193.243.194.128\/25", + "version":58928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.195.0", + "prefixLen":25, + "network":"193.243.195.0\/25", + "version":58927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.195.0", + "prefixLen":25, + "network":"193.243.195.0\/25", + "version":58927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.195.128", + "prefixLen":25, + "network":"193.243.195.128\/25", + "version":58926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.195.128", + "prefixLen":25, + "network":"193.243.195.128\/25", + "version":58926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.208.0", + "prefixLen":25, + "network":"193.243.208.0\/25", + "version":58925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.208.0", + "prefixLen":25, + "network":"193.243.208.0\/25", + "version":58925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.208.128", + "prefixLen":25, + "network":"193.243.208.128\/25", + "version":58924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.208.128", + "prefixLen":25, + "network":"193.243.208.128\/25", + "version":58924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.209.0", + "prefixLen":25, + "network":"193.243.209.0\/25", + "version":58923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.209.0", + "prefixLen":25, + "network":"193.243.209.0\/25", + "version":58923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.209.128", + "prefixLen":25, + "network":"193.243.209.128\/25", + "version":58922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.209.128", + "prefixLen":25, + "network":"193.243.209.128\/25", + "version":58922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.210.0", + "prefixLen":25, + "network":"193.243.210.0\/25", + "version":58921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.210.0", + "prefixLen":25, + "network":"193.243.210.0\/25", + "version":58921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.210.128", + "prefixLen":25, + "network":"193.243.210.128\/25", + "version":58920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.210.128", + "prefixLen":25, + "network":"193.243.210.128\/25", + "version":58920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.211.0", + "prefixLen":25, + "network":"193.243.211.0\/25", + "version":58919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.211.0", + "prefixLen":25, + "network":"193.243.211.0\/25", + "version":58919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.211.128", + "prefixLen":25, + "network":"193.243.211.128\/25", + "version":58918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.211.128", + "prefixLen":25, + "network":"193.243.211.128\/25", + "version":58918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.224.0", + "prefixLen":25, + "network":"193.243.224.0\/25", + "version":58917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.224.0", + "prefixLen":25, + "network":"193.243.224.0\/25", + "version":58917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.224.128", + "prefixLen":25, + "network":"193.243.224.128\/25", + "version":58916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.224.128", + "prefixLen":25, + "network":"193.243.224.128\/25", + "version":58916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.225.0", + "prefixLen":25, + "network":"193.243.225.0\/25", + "version":58915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.225.0", + "prefixLen":25, + "network":"193.243.225.0\/25", + "version":58915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.225.128", + "prefixLen":25, + "network":"193.243.225.128\/25", + "version":58914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.225.128", + "prefixLen":25, + "network":"193.243.225.128\/25", + "version":58914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.226.0", + "prefixLen":25, + "network":"193.243.226.0\/25", + "version":58913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.226.0", + "prefixLen":25, + "network":"193.243.226.0\/25", + "version":58913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.226.128", + "prefixLen":25, + "network":"193.243.226.128\/25", + "version":58912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.226.128", + "prefixLen":25, + "network":"193.243.226.128\/25", + "version":58912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.227.0", + "prefixLen":25, + "network":"193.243.227.0\/25", + "version":58911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.227.0", + "prefixLen":25, + "network":"193.243.227.0\/25", + "version":58911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.227.128", + "prefixLen":25, + "network":"193.243.227.128\/25", + "version":58910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.227.128", + "prefixLen":25, + "network":"193.243.227.128\/25", + "version":58910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.240.0", + "prefixLen":25, + "network":"193.243.240.0\/25", + "version":58909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.240.0", + "prefixLen":25, + "network":"193.243.240.0\/25", + "version":58909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.240.128", + "prefixLen":25, + "network":"193.243.240.128\/25", + "version":58908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.240.128", + "prefixLen":25, + "network":"193.243.240.128\/25", + "version":58908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.241.0", + "prefixLen":25, + "network":"193.243.241.0\/25", + "version":58907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.241.0", + "prefixLen":25, + "network":"193.243.241.0\/25", + "version":58907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.241.128", + "prefixLen":25, + "network":"193.243.241.128\/25", + "version":58906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.241.128", + "prefixLen":25, + "network":"193.243.241.128\/25", + "version":58906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.242.0", + "prefixLen":25, + "network":"193.243.242.0\/25", + "version":58905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.242.0", + "prefixLen":25, + "network":"193.243.242.0\/25", + "version":58905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.242.128", + "prefixLen":25, + "network":"193.243.242.128\/25", + "version":58904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.242.128", + "prefixLen":25, + "network":"193.243.242.128\/25", + "version":58904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.243.0", + "prefixLen":25, + "network":"193.243.243.0\/25", + "version":58903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.243.0", + "prefixLen":25, + "network":"193.243.243.0\/25", + "version":58903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.243.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.243.243.128", + "prefixLen":25, + "network":"193.243.243.128\/25", + "version":58902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.243.243.128", + "prefixLen":25, + "network":"193.243.243.128\/25", + "version":58902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64931 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.0.0", + "prefixLen":25, + "network":"193.244.0.0\/25", + "version":59029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.0.0", + "prefixLen":25, + "network":"193.244.0.0\/25", + "version":59029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.0.128", + "prefixLen":25, + "network":"193.244.0.128\/25", + "version":59156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.0.128", + "prefixLen":25, + "network":"193.244.0.128\/25", + "version":59156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.1.0", + "prefixLen":25, + "network":"193.244.1.0\/25", + "version":59155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.1.0", + "prefixLen":25, + "network":"193.244.1.0\/25", + "version":59155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.1.128", + "prefixLen":25, + "network":"193.244.1.128\/25", + "version":59154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.1.128", + "prefixLen":25, + "network":"193.244.1.128\/25", + "version":59154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.2.0", + "prefixLen":25, + "network":"193.244.2.0\/25", + "version":59153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.2.0", + "prefixLen":25, + "network":"193.244.2.0\/25", + "version":59153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.2.128", + "prefixLen":25, + "network":"193.244.2.128\/25", + "version":59152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.2.128", + "prefixLen":25, + "network":"193.244.2.128\/25", + "version":59152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.3.0", + "prefixLen":25, + "network":"193.244.3.0\/25", + "version":59151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.3.0", + "prefixLen":25, + "network":"193.244.3.0\/25", + "version":59151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.3.128", + "prefixLen":25, + "network":"193.244.3.128\/25", + "version":59150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.3.128", + "prefixLen":25, + "network":"193.244.3.128\/25", + "version":59150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.16.0", + "prefixLen":25, + "network":"193.244.16.0\/25", + "version":59149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.16.0", + "prefixLen":25, + "network":"193.244.16.0\/25", + "version":59149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.16.128", + "prefixLen":25, + "network":"193.244.16.128\/25", + "version":59148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.16.128", + "prefixLen":25, + "network":"193.244.16.128\/25", + "version":59148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.17.0", + "prefixLen":25, + "network":"193.244.17.0\/25", + "version":59147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.17.0", + "prefixLen":25, + "network":"193.244.17.0\/25", + "version":59147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.17.128", + "prefixLen":25, + "network":"193.244.17.128\/25", + "version":59146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.17.128", + "prefixLen":25, + "network":"193.244.17.128\/25", + "version":59146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.18.0", + "prefixLen":25, + "network":"193.244.18.0\/25", + "version":59145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.18.0", + "prefixLen":25, + "network":"193.244.18.0\/25", + "version":59145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.18.128", + "prefixLen":25, + "network":"193.244.18.128\/25", + "version":59144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.18.128", + "prefixLen":25, + "network":"193.244.18.128\/25", + "version":59144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.19.0", + "prefixLen":25, + "network":"193.244.19.0\/25", + "version":59143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.19.0", + "prefixLen":25, + "network":"193.244.19.0\/25", + "version":59143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.19.128", + "prefixLen":25, + "network":"193.244.19.128\/25", + "version":59142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.19.128", + "prefixLen":25, + "network":"193.244.19.128\/25", + "version":59142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.32.0", + "prefixLen":25, + "network":"193.244.32.0\/25", + "version":59141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.32.0", + "prefixLen":25, + "network":"193.244.32.0\/25", + "version":59141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.32.128", + "prefixLen":25, + "network":"193.244.32.128\/25", + "version":59140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.32.128", + "prefixLen":25, + "network":"193.244.32.128\/25", + "version":59140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.33.0", + "prefixLen":25, + "network":"193.244.33.0\/25", + "version":59139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.33.0", + "prefixLen":25, + "network":"193.244.33.0\/25", + "version":59139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.33.128", + "prefixLen":25, + "network":"193.244.33.128\/25", + "version":59138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.33.128", + "prefixLen":25, + "network":"193.244.33.128\/25", + "version":59138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.34.0", + "prefixLen":25, + "network":"193.244.34.0\/25", + "version":59137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.34.0", + "prefixLen":25, + "network":"193.244.34.0\/25", + "version":59137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.34.128", + "prefixLen":25, + "network":"193.244.34.128\/25", + "version":59136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.34.128", + "prefixLen":25, + "network":"193.244.34.128\/25", + "version":59136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.35.0", + "prefixLen":25, + "network":"193.244.35.0\/25", + "version":59135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.35.0", + "prefixLen":25, + "network":"193.244.35.0\/25", + "version":59135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.35.128", + "prefixLen":25, + "network":"193.244.35.128\/25", + "version":59134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.35.128", + "prefixLen":25, + "network":"193.244.35.128\/25", + "version":59134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.48.0", + "prefixLen":25, + "network":"193.244.48.0\/25", + "version":59133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.48.0", + "prefixLen":25, + "network":"193.244.48.0\/25", + "version":59133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.48.128", + "prefixLen":25, + "network":"193.244.48.128\/25", + "version":59132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.48.128", + "prefixLen":25, + "network":"193.244.48.128\/25", + "version":59132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.49.0", + "prefixLen":25, + "network":"193.244.49.0\/25", + "version":59131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.49.0", + "prefixLen":25, + "network":"193.244.49.0\/25", + "version":59131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.49.128", + "prefixLen":25, + "network":"193.244.49.128\/25", + "version":59130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.49.128", + "prefixLen":25, + "network":"193.244.49.128\/25", + "version":59130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.50.0", + "prefixLen":25, + "network":"193.244.50.0\/25", + "version":59129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.50.0", + "prefixLen":25, + "network":"193.244.50.0\/25", + "version":59129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.50.128", + "prefixLen":25, + "network":"193.244.50.128\/25", + "version":59128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.50.128", + "prefixLen":25, + "network":"193.244.50.128\/25", + "version":59128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.51.0", + "prefixLen":25, + "network":"193.244.51.0\/25", + "version":59127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.51.0", + "prefixLen":25, + "network":"193.244.51.0\/25", + "version":59127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.51.128", + "prefixLen":25, + "network":"193.244.51.128\/25", + "version":59126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.51.128", + "prefixLen":25, + "network":"193.244.51.128\/25", + "version":59126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.64.0", + "prefixLen":25, + "network":"193.244.64.0\/25", + "version":59125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.64.0", + "prefixLen":25, + "network":"193.244.64.0\/25", + "version":59125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.64.128", + "prefixLen":25, + "network":"193.244.64.128\/25", + "version":59124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.64.128", + "prefixLen":25, + "network":"193.244.64.128\/25", + "version":59124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.65.0", + "prefixLen":25, + "network":"193.244.65.0\/25", + "version":59123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.65.0", + "prefixLen":25, + "network":"193.244.65.0\/25", + "version":59123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.65.128", + "prefixLen":25, + "network":"193.244.65.128\/25", + "version":59122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.65.128", + "prefixLen":25, + "network":"193.244.65.128\/25", + "version":59122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.66.0", + "prefixLen":25, + "network":"193.244.66.0\/25", + "version":59121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.66.0", + "prefixLen":25, + "network":"193.244.66.0\/25", + "version":59121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.66.128", + "prefixLen":25, + "network":"193.244.66.128\/25", + "version":59120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.66.128", + "prefixLen":25, + "network":"193.244.66.128\/25", + "version":59120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.67.0", + "prefixLen":25, + "network":"193.244.67.0\/25", + "version":59119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.67.0", + "prefixLen":25, + "network":"193.244.67.0\/25", + "version":59119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.67.128", + "prefixLen":25, + "network":"193.244.67.128\/25", + "version":59118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.67.128", + "prefixLen":25, + "network":"193.244.67.128\/25", + "version":59118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.80.0", + "prefixLen":25, + "network":"193.244.80.0\/25", + "version":59117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.80.0", + "prefixLen":25, + "network":"193.244.80.0\/25", + "version":59117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.80.128", + "prefixLen":25, + "network":"193.244.80.128\/25", + "version":59116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.80.128", + "prefixLen":25, + "network":"193.244.80.128\/25", + "version":59116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.81.0", + "prefixLen":25, + "network":"193.244.81.0\/25", + "version":59115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.81.0", + "prefixLen":25, + "network":"193.244.81.0\/25", + "version":59115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.81.128", + "prefixLen":25, + "network":"193.244.81.128\/25", + "version":59114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.81.128", + "prefixLen":25, + "network":"193.244.81.128\/25", + "version":59114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.82.0", + "prefixLen":25, + "network":"193.244.82.0\/25", + "version":59113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.82.0", + "prefixLen":25, + "network":"193.244.82.0\/25", + "version":59113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.82.128", + "prefixLen":25, + "network":"193.244.82.128\/25", + "version":59112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.82.128", + "prefixLen":25, + "network":"193.244.82.128\/25", + "version":59112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.83.0", + "prefixLen":25, + "network":"193.244.83.0\/25", + "version":59111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.83.0", + "prefixLen":25, + "network":"193.244.83.0\/25", + "version":59111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.83.128", + "prefixLen":25, + "network":"193.244.83.128\/25", + "version":59110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.83.128", + "prefixLen":25, + "network":"193.244.83.128\/25", + "version":59110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.96.0", + "prefixLen":25, + "network":"193.244.96.0\/25", + "version":59109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.96.0", + "prefixLen":25, + "network":"193.244.96.0\/25", + "version":59109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.96.128", + "prefixLen":25, + "network":"193.244.96.128\/25", + "version":59108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.96.128", + "prefixLen":25, + "network":"193.244.96.128\/25", + "version":59108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.97.0", + "prefixLen":25, + "network":"193.244.97.0\/25", + "version":59107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.97.0", + "prefixLen":25, + "network":"193.244.97.0\/25", + "version":59107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.97.128", + "prefixLen":25, + "network":"193.244.97.128\/25", + "version":59106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.97.128", + "prefixLen":25, + "network":"193.244.97.128\/25", + "version":59106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.98.0", + "prefixLen":25, + "network":"193.244.98.0\/25", + "version":59105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.98.0", + "prefixLen":25, + "network":"193.244.98.0\/25", + "version":59105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.98.128", + "prefixLen":25, + "network":"193.244.98.128\/25", + "version":59104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.98.128", + "prefixLen":25, + "network":"193.244.98.128\/25", + "version":59104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.99.0", + "prefixLen":25, + "network":"193.244.99.0\/25", + "version":59103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.99.0", + "prefixLen":25, + "network":"193.244.99.0\/25", + "version":59103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.99.128", + "prefixLen":25, + "network":"193.244.99.128\/25", + "version":59102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.99.128", + "prefixLen":25, + "network":"193.244.99.128\/25", + "version":59102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.112.0", + "prefixLen":25, + "network":"193.244.112.0\/25", + "version":59101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.112.0", + "prefixLen":25, + "network":"193.244.112.0\/25", + "version":59101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.112.128", + "prefixLen":25, + "network":"193.244.112.128\/25", + "version":59100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.112.128", + "prefixLen":25, + "network":"193.244.112.128\/25", + "version":59100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.113.0", + "prefixLen":25, + "network":"193.244.113.0\/25", + "version":59099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.113.0", + "prefixLen":25, + "network":"193.244.113.0\/25", + "version":59099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.113.128", + "prefixLen":25, + "network":"193.244.113.128\/25", + "version":59098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.113.128", + "prefixLen":25, + "network":"193.244.113.128\/25", + "version":59098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.114.0", + "prefixLen":25, + "network":"193.244.114.0\/25", + "version":59097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.114.0", + "prefixLen":25, + "network":"193.244.114.0\/25", + "version":59097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.114.128", + "prefixLen":25, + "network":"193.244.114.128\/25", + "version":59096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.114.128", + "prefixLen":25, + "network":"193.244.114.128\/25", + "version":59096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.115.0", + "prefixLen":25, + "network":"193.244.115.0\/25", + "version":59095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.115.0", + "prefixLen":25, + "network":"193.244.115.0\/25", + "version":59095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.115.128", + "prefixLen":25, + "network":"193.244.115.128\/25", + "version":59094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.115.128", + "prefixLen":25, + "network":"193.244.115.128\/25", + "version":59094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.128.0", + "prefixLen":25, + "network":"193.244.128.0\/25", + "version":59093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.128.0", + "prefixLen":25, + "network":"193.244.128.0\/25", + "version":59093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.128.128", + "prefixLen":25, + "network":"193.244.128.128\/25", + "version":59092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.128.128", + "prefixLen":25, + "network":"193.244.128.128\/25", + "version":59092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.129.0", + "prefixLen":25, + "network":"193.244.129.0\/25", + "version":59091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.129.0", + "prefixLen":25, + "network":"193.244.129.0\/25", + "version":59091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.129.128", + "prefixLen":25, + "network":"193.244.129.128\/25", + "version":59090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.129.128", + "prefixLen":25, + "network":"193.244.129.128\/25", + "version":59090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.130.0", + "prefixLen":25, + "network":"193.244.130.0\/25", + "version":59089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.130.0", + "prefixLen":25, + "network":"193.244.130.0\/25", + "version":59089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.130.128", + "prefixLen":25, + "network":"193.244.130.128\/25", + "version":59088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.130.128", + "prefixLen":25, + "network":"193.244.130.128\/25", + "version":59088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.131.0", + "prefixLen":25, + "network":"193.244.131.0\/25", + "version":59087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.131.0", + "prefixLen":25, + "network":"193.244.131.0\/25", + "version":59087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.131.128", + "prefixLen":25, + "network":"193.244.131.128\/25", + "version":59086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.131.128", + "prefixLen":25, + "network":"193.244.131.128\/25", + "version":59086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.144.0", + "prefixLen":25, + "network":"193.244.144.0\/25", + "version":59085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.144.0", + "prefixLen":25, + "network":"193.244.144.0\/25", + "version":59085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.144.128", + "prefixLen":25, + "network":"193.244.144.128\/25", + "version":59084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.144.128", + "prefixLen":25, + "network":"193.244.144.128\/25", + "version":59084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.145.0", + "prefixLen":25, + "network":"193.244.145.0\/25", + "version":59083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.145.0", + "prefixLen":25, + "network":"193.244.145.0\/25", + "version":59083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.145.128", + "prefixLen":25, + "network":"193.244.145.128\/25", + "version":59082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.145.128", + "prefixLen":25, + "network":"193.244.145.128\/25", + "version":59082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.146.0", + "prefixLen":25, + "network":"193.244.146.0\/25", + "version":59081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.146.0", + "prefixLen":25, + "network":"193.244.146.0\/25", + "version":59081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.146.128", + "prefixLen":25, + "network":"193.244.146.128\/25", + "version":59080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.146.128", + "prefixLen":25, + "network":"193.244.146.128\/25", + "version":59080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.147.0", + "prefixLen":25, + "network":"193.244.147.0\/25", + "version":59079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.147.0", + "prefixLen":25, + "network":"193.244.147.0\/25", + "version":59079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.147.128", + "prefixLen":25, + "network":"193.244.147.128\/25", + "version":59078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.147.128", + "prefixLen":25, + "network":"193.244.147.128\/25", + "version":59078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.160.0", + "prefixLen":25, + "network":"193.244.160.0\/25", + "version":59077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.160.0", + "prefixLen":25, + "network":"193.244.160.0\/25", + "version":59077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.160.128", + "prefixLen":25, + "network":"193.244.160.128\/25", + "version":59076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.160.128", + "prefixLen":25, + "network":"193.244.160.128\/25", + "version":59076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.161.0", + "prefixLen":25, + "network":"193.244.161.0\/25", + "version":59075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.161.0", + "prefixLen":25, + "network":"193.244.161.0\/25", + "version":59075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.161.128", + "prefixLen":25, + "network":"193.244.161.128\/25", + "version":59074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.161.128", + "prefixLen":25, + "network":"193.244.161.128\/25", + "version":59074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.162.0", + "prefixLen":25, + "network":"193.244.162.0\/25", + "version":59073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.162.0", + "prefixLen":25, + "network":"193.244.162.0\/25", + "version":59073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.162.128", + "prefixLen":25, + "network":"193.244.162.128\/25", + "version":59072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.162.128", + "prefixLen":25, + "network":"193.244.162.128\/25", + "version":59072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.163.0", + "prefixLen":25, + "network":"193.244.163.0\/25", + "version":59071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.163.0", + "prefixLen":25, + "network":"193.244.163.0\/25", + "version":59071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.163.128", + "prefixLen":25, + "network":"193.244.163.128\/25", + "version":59070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.163.128", + "prefixLen":25, + "network":"193.244.163.128\/25", + "version":59070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.176.0", + "prefixLen":25, + "network":"193.244.176.0\/25", + "version":59069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.176.0", + "prefixLen":25, + "network":"193.244.176.0\/25", + "version":59069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.176.128", + "prefixLen":25, + "network":"193.244.176.128\/25", + "version":59068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.176.128", + "prefixLen":25, + "network":"193.244.176.128\/25", + "version":59068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.177.0", + "prefixLen":25, + "network":"193.244.177.0\/25", + "version":59067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.177.0", + "prefixLen":25, + "network":"193.244.177.0\/25", + "version":59067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.177.128", + "prefixLen":25, + "network":"193.244.177.128\/25", + "version":59066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.177.128", + "prefixLen":25, + "network":"193.244.177.128\/25", + "version":59066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.178.0", + "prefixLen":25, + "network":"193.244.178.0\/25", + "version":59065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.178.0", + "prefixLen":25, + "network":"193.244.178.0\/25", + "version":59065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.178.128", + "prefixLen":25, + "network":"193.244.178.128\/25", + "version":59064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.178.128", + "prefixLen":25, + "network":"193.244.178.128\/25", + "version":59064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.179.0", + "prefixLen":25, + "network":"193.244.179.0\/25", + "version":59063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.179.0", + "prefixLen":25, + "network":"193.244.179.0\/25", + "version":59063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.179.128", + "prefixLen":25, + "network":"193.244.179.128\/25", + "version":59062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.179.128", + "prefixLen":25, + "network":"193.244.179.128\/25", + "version":59062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.192.0", + "prefixLen":25, + "network":"193.244.192.0\/25", + "version":59061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.192.0", + "prefixLen":25, + "network":"193.244.192.0\/25", + "version":59061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.192.128", + "prefixLen":25, + "network":"193.244.192.128\/25", + "version":59060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.192.128", + "prefixLen":25, + "network":"193.244.192.128\/25", + "version":59060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.193.0", + "prefixLen":25, + "network":"193.244.193.0\/25", + "version":59059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.193.0", + "prefixLen":25, + "network":"193.244.193.0\/25", + "version":59059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.193.128", + "prefixLen":25, + "network":"193.244.193.128\/25", + "version":59058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.193.128", + "prefixLen":25, + "network":"193.244.193.128\/25", + "version":59058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.194.0", + "prefixLen":25, + "network":"193.244.194.0\/25", + "version":59057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.194.0", + "prefixLen":25, + "network":"193.244.194.0\/25", + "version":59057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.194.128", + "prefixLen":25, + "network":"193.244.194.128\/25", + "version":59056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.194.128", + "prefixLen":25, + "network":"193.244.194.128\/25", + "version":59056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.195.0", + "prefixLen":25, + "network":"193.244.195.0\/25", + "version":59055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.195.0", + "prefixLen":25, + "network":"193.244.195.0\/25", + "version":59055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.195.128", + "prefixLen":25, + "network":"193.244.195.128\/25", + "version":59054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.195.128", + "prefixLen":25, + "network":"193.244.195.128\/25", + "version":59054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.208.0", + "prefixLen":25, + "network":"193.244.208.0\/25", + "version":59053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.208.0", + "prefixLen":25, + "network":"193.244.208.0\/25", + "version":59053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.208.128", + "prefixLen":25, + "network":"193.244.208.128\/25", + "version":59052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.208.128", + "prefixLen":25, + "network":"193.244.208.128\/25", + "version":59052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.209.0", + "prefixLen":25, + "network":"193.244.209.0\/25", + "version":59051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.209.0", + "prefixLen":25, + "network":"193.244.209.0\/25", + "version":59051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.209.128", + "prefixLen":25, + "network":"193.244.209.128\/25", + "version":59050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.209.128", + "prefixLen":25, + "network":"193.244.209.128\/25", + "version":59050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.210.0", + "prefixLen":25, + "network":"193.244.210.0\/25", + "version":59049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.210.0", + "prefixLen":25, + "network":"193.244.210.0\/25", + "version":59049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.210.128", + "prefixLen":25, + "network":"193.244.210.128\/25", + "version":59048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.210.128", + "prefixLen":25, + "network":"193.244.210.128\/25", + "version":59048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.211.0", + "prefixLen":25, + "network":"193.244.211.0\/25", + "version":59047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.211.0", + "prefixLen":25, + "network":"193.244.211.0\/25", + "version":59047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.211.128", + "prefixLen":25, + "network":"193.244.211.128\/25", + "version":59046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.211.128", + "prefixLen":25, + "network":"193.244.211.128\/25", + "version":59046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.224.0", + "prefixLen":25, + "network":"193.244.224.0\/25", + "version":59045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.224.0", + "prefixLen":25, + "network":"193.244.224.0\/25", + "version":59045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.224.128", + "prefixLen":25, + "network":"193.244.224.128\/25", + "version":59044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.224.128", + "prefixLen":25, + "network":"193.244.224.128\/25", + "version":59044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.225.0", + "prefixLen":25, + "network":"193.244.225.0\/25", + "version":59043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.225.0", + "prefixLen":25, + "network":"193.244.225.0\/25", + "version":59043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.225.128", + "prefixLen":25, + "network":"193.244.225.128\/25", + "version":59042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.225.128", + "prefixLen":25, + "network":"193.244.225.128\/25", + "version":59042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.226.0", + "prefixLen":25, + "network":"193.244.226.0\/25", + "version":59041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.226.0", + "prefixLen":25, + "network":"193.244.226.0\/25", + "version":59041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.226.128", + "prefixLen":25, + "network":"193.244.226.128\/25", + "version":59040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.226.128", + "prefixLen":25, + "network":"193.244.226.128\/25", + "version":59040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.227.0", + "prefixLen":25, + "network":"193.244.227.0\/25", + "version":59039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.227.0", + "prefixLen":25, + "network":"193.244.227.0\/25", + "version":59039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.227.128", + "prefixLen":25, + "network":"193.244.227.128\/25", + "version":59038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.227.128", + "prefixLen":25, + "network":"193.244.227.128\/25", + "version":59038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.240.0", + "prefixLen":25, + "network":"193.244.240.0\/25", + "version":59037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.240.0", + "prefixLen":25, + "network":"193.244.240.0\/25", + "version":59037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.240.128", + "prefixLen":25, + "network":"193.244.240.128\/25", + "version":59036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.240.128", + "prefixLen":25, + "network":"193.244.240.128\/25", + "version":59036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.241.0", + "prefixLen":25, + "network":"193.244.241.0\/25", + "version":59035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.241.0", + "prefixLen":25, + "network":"193.244.241.0\/25", + "version":59035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.241.128", + "prefixLen":25, + "network":"193.244.241.128\/25", + "version":59034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.241.128", + "prefixLen":25, + "network":"193.244.241.128\/25", + "version":59034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.242.0", + "prefixLen":25, + "network":"193.244.242.0\/25", + "version":59033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.242.0", + "prefixLen":25, + "network":"193.244.242.0\/25", + "version":59033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.242.128", + "prefixLen":25, + "network":"193.244.242.128\/25", + "version":59032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.242.128", + "prefixLen":25, + "network":"193.244.242.128\/25", + "version":59032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.243.0", + "prefixLen":25, + "network":"193.244.243.0\/25", + "version":59031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.243.0", + "prefixLen":25, + "network":"193.244.243.0\/25", + "version":59031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.244.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.244.243.128", + "prefixLen":25, + "network":"193.244.243.128\/25", + "version":59030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.244.243.128", + "prefixLen":25, + "network":"193.244.243.128\/25", + "version":59030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64932 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.0.0", + "prefixLen":25, + "network":"193.245.0.0\/25", + "version":59157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.0.0", + "prefixLen":25, + "network":"193.245.0.0\/25", + "version":59157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.0.128", + "prefixLen":25, + "network":"193.245.0.128\/25", + "version":59284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.0.128", + "prefixLen":25, + "network":"193.245.0.128\/25", + "version":59284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.1.0", + "prefixLen":25, + "network":"193.245.1.0\/25", + "version":59283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.1.0", + "prefixLen":25, + "network":"193.245.1.0\/25", + "version":59283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.1.128", + "prefixLen":25, + "network":"193.245.1.128\/25", + "version":59282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.1.128", + "prefixLen":25, + "network":"193.245.1.128\/25", + "version":59282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.2.0", + "prefixLen":25, + "network":"193.245.2.0\/25", + "version":59281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.2.0", + "prefixLen":25, + "network":"193.245.2.0\/25", + "version":59281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.2.128", + "prefixLen":25, + "network":"193.245.2.128\/25", + "version":59280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.2.128", + "prefixLen":25, + "network":"193.245.2.128\/25", + "version":59280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.3.0", + "prefixLen":25, + "network":"193.245.3.0\/25", + "version":59279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.3.0", + "prefixLen":25, + "network":"193.245.3.0\/25", + "version":59279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.3.128", + "prefixLen":25, + "network":"193.245.3.128\/25", + "version":59278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.3.128", + "prefixLen":25, + "network":"193.245.3.128\/25", + "version":59278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.16.0", + "prefixLen":25, + "network":"193.245.16.0\/25", + "version":59277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.16.0", + "prefixLen":25, + "network":"193.245.16.0\/25", + "version":59277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.16.128", + "prefixLen":25, + "network":"193.245.16.128\/25", + "version":59276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.16.128", + "prefixLen":25, + "network":"193.245.16.128\/25", + "version":59276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.17.0", + "prefixLen":25, + "network":"193.245.17.0\/25", + "version":59275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.17.0", + "prefixLen":25, + "network":"193.245.17.0\/25", + "version":59275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.17.128", + "prefixLen":25, + "network":"193.245.17.128\/25", + "version":59274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.17.128", + "prefixLen":25, + "network":"193.245.17.128\/25", + "version":59274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.18.0", + "prefixLen":25, + "network":"193.245.18.0\/25", + "version":59273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.18.0", + "prefixLen":25, + "network":"193.245.18.0\/25", + "version":59273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.18.128", + "prefixLen":25, + "network":"193.245.18.128\/25", + "version":59272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.18.128", + "prefixLen":25, + "network":"193.245.18.128\/25", + "version":59272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.19.0", + "prefixLen":25, + "network":"193.245.19.0\/25", + "version":59271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.19.0", + "prefixLen":25, + "network":"193.245.19.0\/25", + "version":59271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.19.128", + "prefixLen":25, + "network":"193.245.19.128\/25", + "version":59270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.19.128", + "prefixLen":25, + "network":"193.245.19.128\/25", + "version":59270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.32.0", + "prefixLen":25, + "network":"193.245.32.0\/25", + "version":59269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.32.0", + "prefixLen":25, + "network":"193.245.32.0\/25", + "version":59269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.32.128", + "prefixLen":25, + "network":"193.245.32.128\/25", + "version":59268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.32.128", + "prefixLen":25, + "network":"193.245.32.128\/25", + "version":59268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.33.0", + "prefixLen":25, + "network":"193.245.33.0\/25", + "version":59267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.33.0", + "prefixLen":25, + "network":"193.245.33.0\/25", + "version":59267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.33.128", + "prefixLen":25, + "network":"193.245.33.128\/25", + "version":59266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.33.128", + "prefixLen":25, + "network":"193.245.33.128\/25", + "version":59266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.34.0", + "prefixLen":25, + "network":"193.245.34.0\/25", + "version":59265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.34.0", + "prefixLen":25, + "network":"193.245.34.0\/25", + "version":59265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.34.128", + "prefixLen":25, + "network":"193.245.34.128\/25", + "version":59264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.34.128", + "prefixLen":25, + "network":"193.245.34.128\/25", + "version":59264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.35.0", + "prefixLen":25, + "network":"193.245.35.0\/25", + "version":59263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.35.0", + "prefixLen":25, + "network":"193.245.35.0\/25", + "version":59263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.35.128", + "prefixLen":25, + "network":"193.245.35.128\/25", + "version":59262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.35.128", + "prefixLen":25, + "network":"193.245.35.128\/25", + "version":59262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.48.0", + "prefixLen":25, + "network":"193.245.48.0\/25", + "version":59261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.48.0", + "prefixLen":25, + "network":"193.245.48.0\/25", + "version":59261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.48.128", + "prefixLen":25, + "network":"193.245.48.128\/25", + "version":59260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.48.128", + "prefixLen":25, + "network":"193.245.48.128\/25", + "version":59260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.49.0", + "prefixLen":25, + "network":"193.245.49.0\/25", + "version":59259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.49.0", + "prefixLen":25, + "network":"193.245.49.0\/25", + "version":59259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.49.128", + "prefixLen":25, + "network":"193.245.49.128\/25", + "version":59258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.49.128", + "prefixLen":25, + "network":"193.245.49.128\/25", + "version":59258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.50.0", + "prefixLen":25, + "network":"193.245.50.0\/25", + "version":59257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.50.0", + "prefixLen":25, + "network":"193.245.50.0\/25", + "version":59257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.50.128", + "prefixLen":25, + "network":"193.245.50.128\/25", + "version":59256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.50.128", + "prefixLen":25, + "network":"193.245.50.128\/25", + "version":59256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.51.0", + "prefixLen":25, + "network":"193.245.51.0\/25", + "version":59255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.51.0", + "prefixLen":25, + "network":"193.245.51.0\/25", + "version":59255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.51.128", + "prefixLen":25, + "network":"193.245.51.128\/25", + "version":59254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.51.128", + "prefixLen":25, + "network":"193.245.51.128\/25", + "version":59254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.64.0", + "prefixLen":25, + "network":"193.245.64.0\/25", + "version":59253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.64.0", + "prefixLen":25, + "network":"193.245.64.0\/25", + "version":59253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.64.128", + "prefixLen":25, + "network":"193.245.64.128\/25", + "version":59252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.64.128", + "prefixLen":25, + "network":"193.245.64.128\/25", + "version":59252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.65.0", + "prefixLen":25, + "network":"193.245.65.0\/25", + "version":59251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.65.0", + "prefixLen":25, + "network":"193.245.65.0\/25", + "version":59251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.65.128", + "prefixLen":25, + "network":"193.245.65.128\/25", + "version":59250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.65.128", + "prefixLen":25, + "network":"193.245.65.128\/25", + "version":59250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.66.0", + "prefixLen":25, + "network":"193.245.66.0\/25", + "version":59249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.66.0", + "prefixLen":25, + "network":"193.245.66.0\/25", + "version":59249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.66.128", + "prefixLen":25, + "network":"193.245.66.128\/25", + "version":59248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.66.128", + "prefixLen":25, + "network":"193.245.66.128\/25", + "version":59248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.67.0", + "prefixLen":25, + "network":"193.245.67.0\/25", + "version":59247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.67.0", + "prefixLen":25, + "network":"193.245.67.0\/25", + "version":59247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.67.128", + "prefixLen":25, + "network":"193.245.67.128\/25", + "version":59246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.67.128", + "prefixLen":25, + "network":"193.245.67.128\/25", + "version":59246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.80.0", + "prefixLen":25, + "network":"193.245.80.0\/25", + "version":59245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.80.0", + "prefixLen":25, + "network":"193.245.80.0\/25", + "version":59245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.80.128", + "prefixLen":25, + "network":"193.245.80.128\/25", + "version":59244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.80.128", + "prefixLen":25, + "network":"193.245.80.128\/25", + "version":59244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.81.0", + "prefixLen":25, + "network":"193.245.81.0\/25", + "version":59243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.81.0", + "prefixLen":25, + "network":"193.245.81.0\/25", + "version":59243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.81.128", + "prefixLen":25, + "network":"193.245.81.128\/25", + "version":59242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.81.128", + "prefixLen":25, + "network":"193.245.81.128\/25", + "version":59242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.82.0", + "prefixLen":25, + "network":"193.245.82.0\/25", + "version":59241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.82.0", + "prefixLen":25, + "network":"193.245.82.0\/25", + "version":59241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.82.128", + "prefixLen":25, + "network":"193.245.82.128\/25", + "version":59240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.82.128", + "prefixLen":25, + "network":"193.245.82.128\/25", + "version":59240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.83.0", + "prefixLen":25, + "network":"193.245.83.0\/25", + "version":59239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.83.0", + "prefixLen":25, + "network":"193.245.83.0\/25", + "version":59239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.83.128", + "prefixLen":25, + "network":"193.245.83.128\/25", + "version":59238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.83.128", + "prefixLen":25, + "network":"193.245.83.128\/25", + "version":59238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.96.0", + "prefixLen":25, + "network":"193.245.96.0\/25", + "version":59237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.96.0", + "prefixLen":25, + "network":"193.245.96.0\/25", + "version":59237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.96.128", + "prefixLen":25, + "network":"193.245.96.128\/25", + "version":59236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.96.128", + "prefixLen":25, + "network":"193.245.96.128\/25", + "version":59236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.97.0", + "prefixLen":25, + "network":"193.245.97.0\/25", + "version":59235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.97.0", + "prefixLen":25, + "network":"193.245.97.0\/25", + "version":59235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.97.128", + "prefixLen":25, + "network":"193.245.97.128\/25", + "version":59234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.97.128", + "prefixLen":25, + "network":"193.245.97.128\/25", + "version":59234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.98.0", + "prefixLen":25, + "network":"193.245.98.0\/25", + "version":59233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.98.0", + "prefixLen":25, + "network":"193.245.98.0\/25", + "version":59233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.98.128", + "prefixLen":25, + "network":"193.245.98.128\/25", + "version":59232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.98.128", + "prefixLen":25, + "network":"193.245.98.128\/25", + "version":59232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.99.0", + "prefixLen":25, + "network":"193.245.99.0\/25", + "version":59231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.99.0", + "prefixLen":25, + "network":"193.245.99.0\/25", + "version":59231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.99.128", + "prefixLen":25, + "network":"193.245.99.128\/25", + "version":59230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.99.128", + "prefixLen":25, + "network":"193.245.99.128\/25", + "version":59230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.112.0", + "prefixLen":25, + "network":"193.245.112.0\/25", + "version":59229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.112.0", + "prefixLen":25, + "network":"193.245.112.0\/25", + "version":59229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.112.128", + "prefixLen":25, + "network":"193.245.112.128\/25", + "version":59228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.112.128", + "prefixLen":25, + "network":"193.245.112.128\/25", + "version":59228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.113.0", + "prefixLen":25, + "network":"193.245.113.0\/25", + "version":59227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.113.0", + "prefixLen":25, + "network":"193.245.113.0\/25", + "version":59227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.113.128", + "prefixLen":25, + "network":"193.245.113.128\/25", + "version":59226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.113.128", + "prefixLen":25, + "network":"193.245.113.128\/25", + "version":59226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.114.0", + "prefixLen":25, + "network":"193.245.114.0\/25", + "version":59225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.114.0", + "prefixLen":25, + "network":"193.245.114.0\/25", + "version":59225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.114.128", + "prefixLen":25, + "network":"193.245.114.128\/25", + "version":59224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.114.128", + "prefixLen":25, + "network":"193.245.114.128\/25", + "version":59224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.115.0", + "prefixLen":25, + "network":"193.245.115.0\/25", + "version":59223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.115.0", + "prefixLen":25, + "network":"193.245.115.0\/25", + "version":59223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.115.128", + "prefixLen":25, + "network":"193.245.115.128\/25", + "version":59222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.115.128", + "prefixLen":25, + "network":"193.245.115.128\/25", + "version":59222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.128.0", + "prefixLen":25, + "network":"193.245.128.0\/25", + "version":59221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.128.0", + "prefixLen":25, + "network":"193.245.128.0\/25", + "version":59221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.128.128", + "prefixLen":25, + "network":"193.245.128.128\/25", + "version":59220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.128.128", + "prefixLen":25, + "network":"193.245.128.128\/25", + "version":59220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.129.0", + "prefixLen":25, + "network":"193.245.129.0\/25", + "version":59219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.129.0", + "prefixLen":25, + "network":"193.245.129.0\/25", + "version":59219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.129.128", + "prefixLen":25, + "network":"193.245.129.128\/25", + "version":59218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.129.128", + "prefixLen":25, + "network":"193.245.129.128\/25", + "version":59218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.130.0", + "prefixLen":25, + "network":"193.245.130.0\/25", + "version":59217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.130.0", + "prefixLen":25, + "network":"193.245.130.0\/25", + "version":59217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.130.128", + "prefixLen":25, + "network":"193.245.130.128\/25", + "version":59216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.130.128", + "prefixLen":25, + "network":"193.245.130.128\/25", + "version":59216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.131.0", + "prefixLen":25, + "network":"193.245.131.0\/25", + "version":59215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.131.0", + "prefixLen":25, + "network":"193.245.131.0\/25", + "version":59215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.131.128", + "prefixLen":25, + "network":"193.245.131.128\/25", + "version":59214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.131.128", + "prefixLen":25, + "network":"193.245.131.128\/25", + "version":59214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.144.0", + "prefixLen":25, + "network":"193.245.144.0\/25", + "version":59213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.144.0", + "prefixLen":25, + "network":"193.245.144.0\/25", + "version":59213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.144.128", + "prefixLen":25, + "network":"193.245.144.128\/25", + "version":59212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.144.128", + "prefixLen":25, + "network":"193.245.144.128\/25", + "version":59212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.145.0", + "prefixLen":25, + "network":"193.245.145.0\/25", + "version":59211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.145.0", + "prefixLen":25, + "network":"193.245.145.0\/25", + "version":59211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.145.128", + "prefixLen":25, + "network":"193.245.145.128\/25", + "version":59210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.145.128", + "prefixLen":25, + "network":"193.245.145.128\/25", + "version":59210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.146.0", + "prefixLen":25, + "network":"193.245.146.0\/25", + "version":59209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.146.0", + "prefixLen":25, + "network":"193.245.146.0\/25", + "version":59209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.146.128", + "prefixLen":25, + "network":"193.245.146.128\/25", + "version":59208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.146.128", + "prefixLen":25, + "network":"193.245.146.128\/25", + "version":59208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.147.0", + "prefixLen":25, + "network":"193.245.147.0\/25", + "version":59207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.147.0", + "prefixLen":25, + "network":"193.245.147.0\/25", + "version":59207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.147.128", + "prefixLen":25, + "network":"193.245.147.128\/25", + "version":59206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.147.128", + "prefixLen":25, + "network":"193.245.147.128\/25", + "version":59206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.160.0", + "prefixLen":25, + "network":"193.245.160.0\/25", + "version":59205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.160.0", + "prefixLen":25, + "network":"193.245.160.0\/25", + "version":59205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.160.128", + "prefixLen":25, + "network":"193.245.160.128\/25", + "version":59204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.160.128", + "prefixLen":25, + "network":"193.245.160.128\/25", + "version":59204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.161.0", + "prefixLen":25, + "network":"193.245.161.0\/25", + "version":59203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.161.0", + "prefixLen":25, + "network":"193.245.161.0\/25", + "version":59203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.161.128", + "prefixLen":25, + "network":"193.245.161.128\/25", + "version":59202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.161.128", + "prefixLen":25, + "network":"193.245.161.128\/25", + "version":59202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.162.0", + "prefixLen":25, + "network":"193.245.162.0\/25", + "version":59201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.162.0", + "prefixLen":25, + "network":"193.245.162.0\/25", + "version":59201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.162.128", + "prefixLen":25, + "network":"193.245.162.128\/25", + "version":59200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.162.128", + "prefixLen":25, + "network":"193.245.162.128\/25", + "version":59200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.163.0", + "prefixLen":25, + "network":"193.245.163.0\/25", + "version":59199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.163.0", + "prefixLen":25, + "network":"193.245.163.0\/25", + "version":59199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.163.128", + "prefixLen":25, + "network":"193.245.163.128\/25", + "version":59198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.163.128", + "prefixLen":25, + "network":"193.245.163.128\/25", + "version":59198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.176.0", + "prefixLen":25, + "network":"193.245.176.0\/25", + "version":59197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.176.0", + "prefixLen":25, + "network":"193.245.176.0\/25", + "version":59197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.176.128", + "prefixLen":25, + "network":"193.245.176.128\/25", + "version":59196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.176.128", + "prefixLen":25, + "network":"193.245.176.128\/25", + "version":59196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.177.0", + "prefixLen":25, + "network":"193.245.177.0\/25", + "version":59195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.177.0", + "prefixLen":25, + "network":"193.245.177.0\/25", + "version":59195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.177.128", + "prefixLen":25, + "network":"193.245.177.128\/25", + "version":59194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.177.128", + "prefixLen":25, + "network":"193.245.177.128\/25", + "version":59194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.178.0", + "prefixLen":25, + "network":"193.245.178.0\/25", + "version":59193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.178.0", + "prefixLen":25, + "network":"193.245.178.0\/25", + "version":59193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.178.128", + "prefixLen":25, + "network":"193.245.178.128\/25", + "version":59192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.178.128", + "prefixLen":25, + "network":"193.245.178.128\/25", + "version":59192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.179.0", + "prefixLen":25, + "network":"193.245.179.0\/25", + "version":59191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.179.0", + "prefixLen":25, + "network":"193.245.179.0\/25", + "version":59191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.179.128", + "prefixLen":25, + "network":"193.245.179.128\/25", + "version":59190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.179.128", + "prefixLen":25, + "network":"193.245.179.128\/25", + "version":59190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.192.0", + "prefixLen":25, + "network":"193.245.192.0\/25", + "version":59189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.192.0", + "prefixLen":25, + "network":"193.245.192.0\/25", + "version":59189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.192.128", + "prefixLen":25, + "network":"193.245.192.128\/25", + "version":59188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.192.128", + "prefixLen":25, + "network":"193.245.192.128\/25", + "version":59188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.193.0", + "prefixLen":25, + "network":"193.245.193.0\/25", + "version":59187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.193.0", + "prefixLen":25, + "network":"193.245.193.0\/25", + "version":59187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.193.128", + "prefixLen":25, + "network":"193.245.193.128\/25", + "version":59186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.193.128", + "prefixLen":25, + "network":"193.245.193.128\/25", + "version":59186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.194.0", + "prefixLen":25, + "network":"193.245.194.0\/25", + "version":59185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.194.0", + "prefixLen":25, + "network":"193.245.194.0\/25", + "version":59185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.194.128", + "prefixLen":25, + "network":"193.245.194.128\/25", + "version":59184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.194.128", + "prefixLen":25, + "network":"193.245.194.128\/25", + "version":59184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.195.0", + "prefixLen":25, + "network":"193.245.195.0\/25", + "version":59183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.195.0", + "prefixLen":25, + "network":"193.245.195.0\/25", + "version":59183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.195.128", + "prefixLen":25, + "network":"193.245.195.128\/25", + "version":59182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.195.128", + "prefixLen":25, + "network":"193.245.195.128\/25", + "version":59182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.208.0", + "prefixLen":25, + "network":"193.245.208.0\/25", + "version":59181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.208.0", + "prefixLen":25, + "network":"193.245.208.0\/25", + "version":59181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.208.128", + "prefixLen":25, + "network":"193.245.208.128\/25", + "version":59180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.208.128", + "prefixLen":25, + "network":"193.245.208.128\/25", + "version":59180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.209.0", + "prefixLen":25, + "network":"193.245.209.0\/25", + "version":59179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.209.0", + "prefixLen":25, + "network":"193.245.209.0\/25", + "version":59179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.209.128", + "prefixLen":25, + "network":"193.245.209.128\/25", + "version":59178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.209.128", + "prefixLen":25, + "network":"193.245.209.128\/25", + "version":59178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.210.0", + "prefixLen":25, + "network":"193.245.210.0\/25", + "version":59177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.210.0", + "prefixLen":25, + "network":"193.245.210.0\/25", + "version":59177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.210.128", + "prefixLen":25, + "network":"193.245.210.128\/25", + "version":59176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.210.128", + "prefixLen":25, + "network":"193.245.210.128\/25", + "version":59176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.211.0", + "prefixLen":25, + "network":"193.245.211.0\/25", + "version":59175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.211.0", + "prefixLen":25, + "network":"193.245.211.0\/25", + "version":59175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.211.128", + "prefixLen":25, + "network":"193.245.211.128\/25", + "version":59174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.211.128", + "prefixLen":25, + "network":"193.245.211.128\/25", + "version":59174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.224.0", + "prefixLen":25, + "network":"193.245.224.0\/25", + "version":59173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.224.0", + "prefixLen":25, + "network":"193.245.224.0\/25", + "version":59173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.224.128", + "prefixLen":25, + "network":"193.245.224.128\/25", + "version":59172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.224.128", + "prefixLen":25, + "network":"193.245.224.128\/25", + "version":59172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.225.0", + "prefixLen":25, + "network":"193.245.225.0\/25", + "version":59171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.225.0", + "prefixLen":25, + "network":"193.245.225.0\/25", + "version":59171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.225.128", + "prefixLen":25, + "network":"193.245.225.128\/25", + "version":59170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.225.128", + "prefixLen":25, + "network":"193.245.225.128\/25", + "version":59170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.226.0", + "prefixLen":25, + "network":"193.245.226.0\/25", + "version":59169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.226.0", + "prefixLen":25, + "network":"193.245.226.0\/25", + "version":59169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.226.128", + "prefixLen":25, + "network":"193.245.226.128\/25", + "version":59168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.226.128", + "prefixLen":25, + "network":"193.245.226.128\/25", + "version":59168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.227.0", + "prefixLen":25, + "network":"193.245.227.0\/25", + "version":59167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.227.0", + "prefixLen":25, + "network":"193.245.227.0\/25", + "version":59167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.227.128", + "prefixLen":25, + "network":"193.245.227.128\/25", + "version":59166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.227.128", + "prefixLen":25, + "network":"193.245.227.128\/25", + "version":59166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.240.0", + "prefixLen":25, + "network":"193.245.240.0\/25", + "version":59165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.240.0", + "prefixLen":25, + "network":"193.245.240.0\/25", + "version":59165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.240.128", + "prefixLen":25, + "network":"193.245.240.128\/25", + "version":59164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.240.128", + "prefixLen":25, + "network":"193.245.240.128\/25", + "version":59164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.241.0", + "prefixLen":25, + "network":"193.245.241.0\/25", + "version":59163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.241.0", + "prefixLen":25, + "network":"193.245.241.0\/25", + "version":59163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.241.128", + "prefixLen":25, + "network":"193.245.241.128\/25", + "version":59162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.241.128", + "prefixLen":25, + "network":"193.245.241.128\/25", + "version":59162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.242.0", + "prefixLen":25, + "network":"193.245.242.0\/25", + "version":59161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.242.0", + "prefixLen":25, + "network":"193.245.242.0\/25", + "version":59161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.242.128", + "prefixLen":25, + "network":"193.245.242.128\/25", + "version":59160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.242.128", + "prefixLen":25, + "network":"193.245.242.128\/25", + "version":59160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.243.0", + "prefixLen":25, + "network":"193.245.243.0\/25", + "version":59159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.243.0", + "prefixLen":25, + "network":"193.245.243.0\/25", + "version":59159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.245.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.245.243.128", + "prefixLen":25, + "network":"193.245.243.128\/25", + "version":59158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.245.243.128", + "prefixLen":25, + "network":"193.245.243.128\/25", + "version":59158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64933 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.0.0", + "prefixLen":25, + "network":"193.246.0.0\/25", + "version":59285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.0.0", + "prefixLen":25, + "network":"193.246.0.0\/25", + "version":59285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.0.128", + "prefixLen":25, + "network":"193.246.0.128\/25", + "version":59412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.0.128", + "prefixLen":25, + "network":"193.246.0.128\/25", + "version":59412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.1.0", + "prefixLen":25, + "network":"193.246.1.0\/25", + "version":59411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.1.0", + "prefixLen":25, + "network":"193.246.1.0\/25", + "version":59411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.1.128", + "prefixLen":25, + "network":"193.246.1.128\/25", + "version":59410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.1.128", + "prefixLen":25, + "network":"193.246.1.128\/25", + "version":59410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.2.0", + "prefixLen":25, + "network":"193.246.2.0\/25", + "version":59409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.2.0", + "prefixLen":25, + "network":"193.246.2.0\/25", + "version":59409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.2.128", + "prefixLen":25, + "network":"193.246.2.128\/25", + "version":59408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.2.128", + "prefixLen":25, + "network":"193.246.2.128\/25", + "version":59408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.3.0", + "prefixLen":25, + "network":"193.246.3.0\/25", + "version":59407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.3.0", + "prefixLen":25, + "network":"193.246.3.0\/25", + "version":59407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.3.128", + "prefixLen":25, + "network":"193.246.3.128\/25", + "version":59406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.3.128", + "prefixLen":25, + "network":"193.246.3.128\/25", + "version":59406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.16.0", + "prefixLen":25, + "network":"193.246.16.0\/25", + "version":59405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.16.0", + "prefixLen":25, + "network":"193.246.16.0\/25", + "version":59405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.16.128", + "prefixLen":25, + "network":"193.246.16.128\/25", + "version":59404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.16.128", + "prefixLen":25, + "network":"193.246.16.128\/25", + "version":59404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.17.0", + "prefixLen":25, + "network":"193.246.17.0\/25", + "version":59403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.17.0", + "prefixLen":25, + "network":"193.246.17.0\/25", + "version":59403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.17.128", + "prefixLen":25, + "network":"193.246.17.128\/25", + "version":59402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.17.128", + "prefixLen":25, + "network":"193.246.17.128\/25", + "version":59402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.18.0", + "prefixLen":25, + "network":"193.246.18.0\/25", + "version":59401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.18.0", + "prefixLen":25, + "network":"193.246.18.0\/25", + "version":59401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.18.128", + "prefixLen":25, + "network":"193.246.18.128\/25", + "version":59400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.18.128", + "prefixLen":25, + "network":"193.246.18.128\/25", + "version":59400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.19.0", + "prefixLen":25, + "network":"193.246.19.0\/25", + "version":59399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.19.0", + "prefixLen":25, + "network":"193.246.19.0\/25", + "version":59399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.19.128", + "prefixLen":25, + "network":"193.246.19.128\/25", + "version":59398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.19.128", + "prefixLen":25, + "network":"193.246.19.128\/25", + "version":59398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.32.0", + "prefixLen":25, + "network":"193.246.32.0\/25", + "version":59397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.32.0", + "prefixLen":25, + "network":"193.246.32.0\/25", + "version":59397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.32.128", + "prefixLen":25, + "network":"193.246.32.128\/25", + "version":59396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.32.128", + "prefixLen":25, + "network":"193.246.32.128\/25", + "version":59396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.33.0", + "prefixLen":25, + "network":"193.246.33.0\/25", + "version":59395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.33.0", + "prefixLen":25, + "network":"193.246.33.0\/25", + "version":59395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.33.128", + "prefixLen":25, + "network":"193.246.33.128\/25", + "version":59394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.33.128", + "prefixLen":25, + "network":"193.246.33.128\/25", + "version":59394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.34.0", + "prefixLen":25, + "network":"193.246.34.0\/25", + "version":59393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.34.0", + "prefixLen":25, + "network":"193.246.34.0\/25", + "version":59393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.34.128", + "prefixLen":25, + "network":"193.246.34.128\/25", + "version":59392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.34.128", + "prefixLen":25, + "network":"193.246.34.128\/25", + "version":59392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.35.0", + "prefixLen":25, + "network":"193.246.35.0\/25", + "version":59391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.35.0", + "prefixLen":25, + "network":"193.246.35.0\/25", + "version":59391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.35.128", + "prefixLen":25, + "network":"193.246.35.128\/25", + "version":59390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.35.128", + "prefixLen":25, + "network":"193.246.35.128\/25", + "version":59390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.48.0", + "prefixLen":25, + "network":"193.246.48.0\/25", + "version":59389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.48.0", + "prefixLen":25, + "network":"193.246.48.0\/25", + "version":59389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.48.128", + "prefixLen":25, + "network":"193.246.48.128\/25", + "version":59388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.48.128", + "prefixLen":25, + "network":"193.246.48.128\/25", + "version":59388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.49.0", + "prefixLen":25, + "network":"193.246.49.0\/25", + "version":59387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.49.0", + "prefixLen":25, + "network":"193.246.49.0\/25", + "version":59387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.49.128", + "prefixLen":25, + "network":"193.246.49.128\/25", + "version":59386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.49.128", + "prefixLen":25, + "network":"193.246.49.128\/25", + "version":59386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.50.0", + "prefixLen":25, + "network":"193.246.50.0\/25", + "version":59385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.50.0", + "prefixLen":25, + "network":"193.246.50.0\/25", + "version":59385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.50.128", + "prefixLen":25, + "network":"193.246.50.128\/25", + "version":59384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.50.128", + "prefixLen":25, + "network":"193.246.50.128\/25", + "version":59384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.51.0", + "prefixLen":25, + "network":"193.246.51.0\/25", + "version":59383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.51.0", + "prefixLen":25, + "network":"193.246.51.0\/25", + "version":59383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.51.128", + "prefixLen":25, + "network":"193.246.51.128\/25", + "version":59382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.51.128", + "prefixLen":25, + "network":"193.246.51.128\/25", + "version":59382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.64.0", + "prefixLen":25, + "network":"193.246.64.0\/25", + "version":59381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.64.0", + "prefixLen":25, + "network":"193.246.64.0\/25", + "version":59381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.64.128", + "prefixLen":25, + "network":"193.246.64.128\/25", + "version":59380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.64.128", + "prefixLen":25, + "network":"193.246.64.128\/25", + "version":59380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.65.0", + "prefixLen":25, + "network":"193.246.65.0\/25", + "version":59379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.65.0", + "prefixLen":25, + "network":"193.246.65.0\/25", + "version":59379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.65.128", + "prefixLen":25, + "network":"193.246.65.128\/25", + "version":59378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.65.128", + "prefixLen":25, + "network":"193.246.65.128\/25", + "version":59378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.66.0", + "prefixLen":25, + "network":"193.246.66.0\/25", + "version":59377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.66.0", + "prefixLen":25, + "network":"193.246.66.0\/25", + "version":59377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.66.128", + "prefixLen":25, + "network":"193.246.66.128\/25", + "version":59376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.66.128", + "prefixLen":25, + "network":"193.246.66.128\/25", + "version":59376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.67.0", + "prefixLen":25, + "network":"193.246.67.0\/25", + "version":59375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.67.0", + "prefixLen":25, + "network":"193.246.67.0\/25", + "version":59375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.67.128", + "prefixLen":25, + "network":"193.246.67.128\/25", + "version":59374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.67.128", + "prefixLen":25, + "network":"193.246.67.128\/25", + "version":59374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.80.0", + "prefixLen":25, + "network":"193.246.80.0\/25", + "version":59373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.80.0", + "prefixLen":25, + "network":"193.246.80.0\/25", + "version":59373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.80.128", + "prefixLen":25, + "network":"193.246.80.128\/25", + "version":59372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.80.128", + "prefixLen":25, + "network":"193.246.80.128\/25", + "version":59372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.81.0", + "prefixLen":25, + "network":"193.246.81.0\/25", + "version":59371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.81.0", + "prefixLen":25, + "network":"193.246.81.0\/25", + "version":59371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.81.128", + "prefixLen":25, + "network":"193.246.81.128\/25", + "version":59370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.81.128", + "prefixLen":25, + "network":"193.246.81.128\/25", + "version":59370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.82.0", + "prefixLen":25, + "network":"193.246.82.0\/25", + "version":59369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.82.0", + "prefixLen":25, + "network":"193.246.82.0\/25", + "version":59369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.82.128", + "prefixLen":25, + "network":"193.246.82.128\/25", + "version":59368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.82.128", + "prefixLen":25, + "network":"193.246.82.128\/25", + "version":59368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.83.0", + "prefixLen":25, + "network":"193.246.83.0\/25", + "version":59367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.83.0", + "prefixLen":25, + "network":"193.246.83.0\/25", + "version":59367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.83.128", + "prefixLen":25, + "network":"193.246.83.128\/25", + "version":59366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.83.128", + "prefixLen":25, + "network":"193.246.83.128\/25", + "version":59366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.96.0", + "prefixLen":25, + "network":"193.246.96.0\/25", + "version":59365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.96.0", + "prefixLen":25, + "network":"193.246.96.0\/25", + "version":59365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.96.128", + "prefixLen":25, + "network":"193.246.96.128\/25", + "version":59364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.96.128", + "prefixLen":25, + "network":"193.246.96.128\/25", + "version":59364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.97.0", + "prefixLen":25, + "network":"193.246.97.0\/25", + "version":59363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.97.0", + "prefixLen":25, + "network":"193.246.97.0\/25", + "version":59363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.97.128", + "prefixLen":25, + "network":"193.246.97.128\/25", + "version":59362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.97.128", + "prefixLen":25, + "network":"193.246.97.128\/25", + "version":59362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.98.0", + "prefixLen":25, + "network":"193.246.98.0\/25", + "version":59361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.98.0", + "prefixLen":25, + "network":"193.246.98.0\/25", + "version":59361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.98.128", + "prefixLen":25, + "network":"193.246.98.128\/25", + "version":59360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.98.128", + "prefixLen":25, + "network":"193.246.98.128\/25", + "version":59360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.99.0", + "prefixLen":25, + "network":"193.246.99.0\/25", + "version":59359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.99.0", + "prefixLen":25, + "network":"193.246.99.0\/25", + "version":59359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.99.128", + "prefixLen":25, + "network":"193.246.99.128\/25", + "version":59358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.99.128", + "prefixLen":25, + "network":"193.246.99.128\/25", + "version":59358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.112.0", + "prefixLen":25, + "network":"193.246.112.0\/25", + "version":59357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.112.0", + "prefixLen":25, + "network":"193.246.112.0\/25", + "version":59357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.112.128", + "prefixLen":25, + "network":"193.246.112.128\/25", + "version":59356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.112.128", + "prefixLen":25, + "network":"193.246.112.128\/25", + "version":59356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.113.0", + "prefixLen":25, + "network":"193.246.113.0\/25", + "version":59355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.113.0", + "prefixLen":25, + "network":"193.246.113.0\/25", + "version":59355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.113.128", + "prefixLen":25, + "network":"193.246.113.128\/25", + "version":59354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.113.128", + "prefixLen":25, + "network":"193.246.113.128\/25", + "version":59354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.114.0", + "prefixLen":25, + "network":"193.246.114.0\/25", + "version":59353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.114.0", + "prefixLen":25, + "network":"193.246.114.0\/25", + "version":59353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.114.128", + "prefixLen":25, + "network":"193.246.114.128\/25", + "version":59352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.114.128", + "prefixLen":25, + "network":"193.246.114.128\/25", + "version":59352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.115.0", + "prefixLen":25, + "network":"193.246.115.0\/25", + "version":59351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.115.0", + "prefixLen":25, + "network":"193.246.115.0\/25", + "version":59351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.115.128", + "prefixLen":25, + "network":"193.246.115.128\/25", + "version":59350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.115.128", + "prefixLen":25, + "network":"193.246.115.128\/25", + "version":59350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.128.0", + "prefixLen":25, + "network":"193.246.128.0\/25", + "version":59349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.128.0", + "prefixLen":25, + "network":"193.246.128.0\/25", + "version":59349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.128.128", + "prefixLen":25, + "network":"193.246.128.128\/25", + "version":59348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.128.128", + "prefixLen":25, + "network":"193.246.128.128\/25", + "version":59348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.129.0", + "prefixLen":25, + "network":"193.246.129.0\/25", + "version":59347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.129.0", + "prefixLen":25, + "network":"193.246.129.0\/25", + "version":59347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.129.128", + "prefixLen":25, + "network":"193.246.129.128\/25", + "version":59346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.129.128", + "prefixLen":25, + "network":"193.246.129.128\/25", + "version":59346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.130.0", + "prefixLen":25, + "network":"193.246.130.0\/25", + "version":59345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.130.0", + "prefixLen":25, + "network":"193.246.130.0\/25", + "version":59345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.130.128", + "prefixLen":25, + "network":"193.246.130.128\/25", + "version":59344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.130.128", + "prefixLen":25, + "network":"193.246.130.128\/25", + "version":59344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.131.0", + "prefixLen":25, + "network":"193.246.131.0\/25", + "version":59343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.131.0", + "prefixLen":25, + "network":"193.246.131.0\/25", + "version":59343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.131.128", + "prefixLen":25, + "network":"193.246.131.128\/25", + "version":59342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.131.128", + "prefixLen":25, + "network":"193.246.131.128\/25", + "version":59342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.144.0", + "prefixLen":25, + "network":"193.246.144.0\/25", + "version":59341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.144.0", + "prefixLen":25, + "network":"193.246.144.0\/25", + "version":59341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.144.128", + "prefixLen":25, + "network":"193.246.144.128\/25", + "version":59340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.144.128", + "prefixLen":25, + "network":"193.246.144.128\/25", + "version":59340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.145.0", + "prefixLen":25, + "network":"193.246.145.0\/25", + "version":59339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.145.0", + "prefixLen":25, + "network":"193.246.145.0\/25", + "version":59339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.145.128", + "prefixLen":25, + "network":"193.246.145.128\/25", + "version":59338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.145.128", + "prefixLen":25, + "network":"193.246.145.128\/25", + "version":59338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.146.0", + "prefixLen":25, + "network":"193.246.146.0\/25", + "version":59337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.146.0", + "prefixLen":25, + "network":"193.246.146.0\/25", + "version":59337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.146.128", + "prefixLen":25, + "network":"193.246.146.128\/25", + "version":59336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.146.128", + "prefixLen":25, + "network":"193.246.146.128\/25", + "version":59336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.147.0", + "prefixLen":25, + "network":"193.246.147.0\/25", + "version":59335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.147.0", + "prefixLen":25, + "network":"193.246.147.0\/25", + "version":59335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.147.128", + "prefixLen":25, + "network":"193.246.147.128\/25", + "version":59334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.147.128", + "prefixLen":25, + "network":"193.246.147.128\/25", + "version":59334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.160.0", + "prefixLen":25, + "network":"193.246.160.0\/25", + "version":59333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.160.0", + "prefixLen":25, + "network":"193.246.160.0\/25", + "version":59333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.160.128", + "prefixLen":25, + "network":"193.246.160.128\/25", + "version":59332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.160.128", + "prefixLen":25, + "network":"193.246.160.128\/25", + "version":59332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.161.0", + "prefixLen":25, + "network":"193.246.161.0\/25", + "version":59331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.161.0", + "prefixLen":25, + "network":"193.246.161.0\/25", + "version":59331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.161.128", + "prefixLen":25, + "network":"193.246.161.128\/25", + "version":59330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.161.128", + "prefixLen":25, + "network":"193.246.161.128\/25", + "version":59330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.162.0", + "prefixLen":25, + "network":"193.246.162.0\/25", + "version":59329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.162.0", + "prefixLen":25, + "network":"193.246.162.0\/25", + "version":59329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.162.128", + "prefixLen":25, + "network":"193.246.162.128\/25", + "version":59328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.162.128", + "prefixLen":25, + "network":"193.246.162.128\/25", + "version":59328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.163.0", + "prefixLen":25, + "network":"193.246.163.0\/25", + "version":59327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.163.0", + "prefixLen":25, + "network":"193.246.163.0\/25", + "version":59327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.163.128", + "prefixLen":25, + "network":"193.246.163.128\/25", + "version":59326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.163.128", + "prefixLen":25, + "network":"193.246.163.128\/25", + "version":59326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.176.0", + "prefixLen":25, + "network":"193.246.176.0\/25", + "version":59325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.176.0", + "prefixLen":25, + "network":"193.246.176.0\/25", + "version":59325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.176.128", + "prefixLen":25, + "network":"193.246.176.128\/25", + "version":59324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.176.128", + "prefixLen":25, + "network":"193.246.176.128\/25", + "version":59324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.177.0", + "prefixLen":25, + "network":"193.246.177.0\/25", + "version":59323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.177.0", + "prefixLen":25, + "network":"193.246.177.0\/25", + "version":59323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.177.128", + "prefixLen":25, + "network":"193.246.177.128\/25", + "version":59322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.177.128", + "prefixLen":25, + "network":"193.246.177.128\/25", + "version":59322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.178.0", + "prefixLen":25, + "network":"193.246.178.0\/25", + "version":59321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.178.0", + "prefixLen":25, + "network":"193.246.178.0\/25", + "version":59321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.178.128", + "prefixLen":25, + "network":"193.246.178.128\/25", + "version":59320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.178.128", + "prefixLen":25, + "network":"193.246.178.128\/25", + "version":59320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.179.0", + "prefixLen":25, + "network":"193.246.179.0\/25", + "version":59319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.179.0", + "prefixLen":25, + "network":"193.246.179.0\/25", + "version":59319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.179.128", + "prefixLen":25, + "network":"193.246.179.128\/25", + "version":59318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.179.128", + "prefixLen":25, + "network":"193.246.179.128\/25", + "version":59318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.192.0", + "prefixLen":25, + "network":"193.246.192.0\/25", + "version":59317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.192.0", + "prefixLen":25, + "network":"193.246.192.0\/25", + "version":59317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.192.128", + "prefixLen":25, + "network":"193.246.192.128\/25", + "version":59316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.192.128", + "prefixLen":25, + "network":"193.246.192.128\/25", + "version":59316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.193.0", + "prefixLen":25, + "network":"193.246.193.0\/25", + "version":59315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.193.0", + "prefixLen":25, + "network":"193.246.193.0\/25", + "version":59315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.193.128", + "prefixLen":25, + "network":"193.246.193.128\/25", + "version":59314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.193.128", + "prefixLen":25, + "network":"193.246.193.128\/25", + "version":59314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.194.0", + "prefixLen":25, + "network":"193.246.194.0\/25", + "version":59313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.194.0", + "prefixLen":25, + "network":"193.246.194.0\/25", + "version":59313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.194.128", + "prefixLen":25, + "network":"193.246.194.128\/25", + "version":59312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.194.128", + "prefixLen":25, + "network":"193.246.194.128\/25", + "version":59312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.195.0", + "prefixLen":25, + "network":"193.246.195.0\/25", + "version":59311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.195.0", + "prefixLen":25, + "network":"193.246.195.0\/25", + "version":59311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.195.128", + "prefixLen":25, + "network":"193.246.195.128\/25", + "version":59310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.195.128", + "prefixLen":25, + "network":"193.246.195.128\/25", + "version":59310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.208.0", + "prefixLen":25, + "network":"193.246.208.0\/25", + "version":59309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.208.0", + "prefixLen":25, + "network":"193.246.208.0\/25", + "version":59309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.208.128", + "prefixLen":25, + "network":"193.246.208.128\/25", + "version":59308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.208.128", + "prefixLen":25, + "network":"193.246.208.128\/25", + "version":59308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.209.0", + "prefixLen":25, + "network":"193.246.209.0\/25", + "version":59307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.209.0", + "prefixLen":25, + "network":"193.246.209.0\/25", + "version":59307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.209.128", + "prefixLen":25, + "network":"193.246.209.128\/25", + "version":59306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.209.128", + "prefixLen":25, + "network":"193.246.209.128\/25", + "version":59306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.210.0", + "prefixLen":25, + "network":"193.246.210.0\/25", + "version":59305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.210.0", + "prefixLen":25, + "network":"193.246.210.0\/25", + "version":59305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.210.128", + "prefixLen":25, + "network":"193.246.210.128\/25", + "version":59304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.210.128", + "prefixLen":25, + "network":"193.246.210.128\/25", + "version":59304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.211.0", + "prefixLen":25, + "network":"193.246.211.0\/25", + "version":59303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.211.0", + "prefixLen":25, + "network":"193.246.211.0\/25", + "version":59303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.211.128", + "prefixLen":25, + "network":"193.246.211.128\/25", + "version":59302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.211.128", + "prefixLen":25, + "network":"193.246.211.128\/25", + "version":59302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.224.0", + "prefixLen":25, + "network":"193.246.224.0\/25", + "version":59301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.224.0", + "prefixLen":25, + "network":"193.246.224.0\/25", + "version":59301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.224.128", + "prefixLen":25, + "network":"193.246.224.128\/25", + "version":59300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.224.128", + "prefixLen":25, + "network":"193.246.224.128\/25", + "version":59300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.225.0", + "prefixLen":25, + "network":"193.246.225.0\/25", + "version":59299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.225.0", + "prefixLen":25, + "network":"193.246.225.0\/25", + "version":59299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.225.128", + "prefixLen":25, + "network":"193.246.225.128\/25", + "version":59298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.225.128", + "prefixLen":25, + "network":"193.246.225.128\/25", + "version":59298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.226.0", + "prefixLen":25, + "network":"193.246.226.0\/25", + "version":59297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.226.0", + "prefixLen":25, + "network":"193.246.226.0\/25", + "version":59297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.226.128", + "prefixLen":25, + "network":"193.246.226.128\/25", + "version":59296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.226.128", + "prefixLen":25, + "network":"193.246.226.128\/25", + "version":59296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.227.0", + "prefixLen":25, + "network":"193.246.227.0\/25", + "version":59295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.227.0", + "prefixLen":25, + "network":"193.246.227.0\/25", + "version":59295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.227.128", + "prefixLen":25, + "network":"193.246.227.128\/25", + "version":59294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.227.128", + "prefixLen":25, + "network":"193.246.227.128\/25", + "version":59294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.240.0", + "prefixLen":25, + "network":"193.246.240.0\/25", + "version":59293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.240.0", + "prefixLen":25, + "network":"193.246.240.0\/25", + "version":59293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.240.128", + "prefixLen":25, + "network":"193.246.240.128\/25", + "version":59292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.240.128", + "prefixLen":25, + "network":"193.246.240.128\/25", + "version":59292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.241.0", + "prefixLen":25, + "network":"193.246.241.0\/25", + "version":59291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.241.0", + "prefixLen":25, + "network":"193.246.241.0\/25", + "version":59291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.241.128", + "prefixLen":25, + "network":"193.246.241.128\/25", + "version":59290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.241.128", + "prefixLen":25, + "network":"193.246.241.128\/25", + "version":59290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.242.0", + "prefixLen":25, + "network":"193.246.242.0\/25", + "version":59289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.242.0", + "prefixLen":25, + "network":"193.246.242.0\/25", + "version":59289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.242.128", + "prefixLen":25, + "network":"193.246.242.128\/25", + "version":59288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.242.128", + "prefixLen":25, + "network":"193.246.242.128\/25", + "version":59288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.243.0", + "prefixLen":25, + "network":"193.246.243.0\/25", + "version":59287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.243.0", + "prefixLen":25, + "network":"193.246.243.0\/25", + "version":59287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.246.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.246.243.128", + "prefixLen":25, + "network":"193.246.243.128\/25", + "version":59286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.246.243.128", + "prefixLen":25, + "network":"193.246.243.128\/25", + "version":59286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64934 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.0.0", + "prefixLen":25, + "network":"193.247.0.0\/25", + "version":59413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.0.0", + "prefixLen":25, + "network":"193.247.0.0\/25", + "version":59413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.0.128", + "prefixLen":25, + "network":"193.247.0.128\/25", + "version":59540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.0.128", + "prefixLen":25, + "network":"193.247.0.128\/25", + "version":59540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.1.0", + "prefixLen":25, + "network":"193.247.1.0\/25", + "version":59539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.1.0", + "prefixLen":25, + "network":"193.247.1.0\/25", + "version":59539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.1.128", + "prefixLen":25, + "network":"193.247.1.128\/25", + "version":59538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.1.128", + "prefixLen":25, + "network":"193.247.1.128\/25", + "version":59538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.2.0", + "prefixLen":25, + "network":"193.247.2.0\/25", + "version":59537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.2.0", + "prefixLen":25, + "network":"193.247.2.0\/25", + "version":59537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.2.128", + "prefixLen":25, + "network":"193.247.2.128\/25", + "version":59536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.2.128", + "prefixLen":25, + "network":"193.247.2.128\/25", + "version":59536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.3.0", + "prefixLen":25, + "network":"193.247.3.0\/25", + "version":59535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.3.0", + "prefixLen":25, + "network":"193.247.3.0\/25", + "version":59535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.3.128", + "prefixLen":25, + "network":"193.247.3.128\/25", + "version":59534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.3.128", + "prefixLen":25, + "network":"193.247.3.128\/25", + "version":59534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.16.0", + "prefixLen":25, + "network":"193.247.16.0\/25", + "version":59533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.16.0", + "prefixLen":25, + "network":"193.247.16.0\/25", + "version":59533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.16.128", + "prefixLen":25, + "network":"193.247.16.128\/25", + "version":59532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.16.128", + "prefixLen":25, + "network":"193.247.16.128\/25", + "version":59532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.17.0", + "prefixLen":25, + "network":"193.247.17.0\/25", + "version":59531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.17.0", + "prefixLen":25, + "network":"193.247.17.0\/25", + "version":59531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.17.128", + "prefixLen":25, + "network":"193.247.17.128\/25", + "version":59530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.17.128", + "prefixLen":25, + "network":"193.247.17.128\/25", + "version":59530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.18.0", + "prefixLen":25, + "network":"193.247.18.0\/25", + "version":59529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.18.0", + "prefixLen":25, + "network":"193.247.18.0\/25", + "version":59529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.18.128", + "prefixLen":25, + "network":"193.247.18.128\/25", + "version":59528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.18.128", + "prefixLen":25, + "network":"193.247.18.128\/25", + "version":59528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.19.0", + "prefixLen":25, + "network":"193.247.19.0\/25", + "version":59527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.19.0", + "prefixLen":25, + "network":"193.247.19.0\/25", + "version":59527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.19.128", + "prefixLen":25, + "network":"193.247.19.128\/25", + "version":59526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.19.128", + "prefixLen":25, + "network":"193.247.19.128\/25", + "version":59526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.32.0", + "prefixLen":25, + "network":"193.247.32.0\/25", + "version":59525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.32.0", + "prefixLen":25, + "network":"193.247.32.0\/25", + "version":59525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.32.128", + "prefixLen":25, + "network":"193.247.32.128\/25", + "version":59524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.32.128", + "prefixLen":25, + "network":"193.247.32.128\/25", + "version":59524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.33.0", + "prefixLen":25, + "network":"193.247.33.0\/25", + "version":59523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.33.0", + "prefixLen":25, + "network":"193.247.33.0\/25", + "version":59523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.33.128", + "prefixLen":25, + "network":"193.247.33.128\/25", + "version":59522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.33.128", + "prefixLen":25, + "network":"193.247.33.128\/25", + "version":59522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.34.0", + "prefixLen":25, + "network":"193.247.34.0\/25", + "version":59521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.34.0", + "prefixLen":25, + "network":"193.247.34.0\/25", + "version":59521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.34.128", + "prefixLen":25, + "network":"193.247.34.128\/25", + "version":59520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.34.128", + "prefixLen":25, + "network":"193.247.34.128\/25", + "version":59520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.35.0", + "prefixLen":25, + "network":"193.247.35.0\/25", + "version":59519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.35.0", + "prefixLen":25, + "network":"193.247.35.0\/25", + "version":59519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.35.128", + "prefixLen":25, + "network":"193.247.35.128\/25", + "version":59518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.35.128", + "prefixLen":25, + "network":"193.247.35.128\/25", + "version":59518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.48.0", + "prefixLen":25, + "network":"193.247.48.0\/25", + "version":59517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.48.0", + "prefixLen":25, + "network":"193.247.48.0\/25", + "version":59517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.48.128", + "prefixLen":25, + "network":"193.247.48.128\/25", + "version":59516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.48.128", + "prefixLen":25, + "network":"193.247.48.128\/25", + "version":59516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.49.0", + "prefixLen":25, + "network":"193.247.49.0\/25", + "version":59515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.49.0", + "prefixLen":25, + "network":"193.247.49.0\/25", + "version":59515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.49.128", + "prefixLen":25, + "network":"193.247.49.128\/25", + "version":59514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.49.128", + "prefixLen":25, + "network":"193.247.49.128\/25", + "version":59514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.50.0", + "prefixLen":25, + "network":"193.247.50.0\/25", + "version":59513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.50.0", + "prefixLen":25, + "network":"193.247.50.0\/25", + "version":59513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.50.128", + "prefixLen":25, + "network":"193.247.50.128\/25", + "version":59512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.50.128", + "prefixLen":25, + "network":"193.247.50.128\/25", + "version":59512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.51.0", + "prefixLen":25, + "network":"193.247.51.0\/25", + "version":59511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.51.0", + "prefixLen":25, + "network":"193.247.51.0\/25", + "version":59511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.51.128", + "prefixLen":25, + "network":"193.247.51.128\/25", + "version":59510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.51.128", + "prefixLen":25, + "network":"193.247.51.128\/25", + "version":59510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.64.0", + "prefixLen":25, + "network":"193.247.64.0\/25", + "version":59509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.64.0", + "prefixLen":25, + "network":"193.247.64.0\/25", + "version":59509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.64.128", + "prefixLen":25, + "network":"193.247.64.128\/25", + "version":59508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.64.128", + "prefixLen":25, + "network":"193.247.64.128\/25", + "version":59508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.65.0", + "prefixLen":25, + "network":"193.247.65.0\/25", + "version":59507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.65.0", + "prefixLen":25, + "network":"193.247.65.0\/25", + "version":59507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.65.128", + "prefixLen":25, + "network":"193.247.65.128\/25", + "version":59506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.65.128", + "prefixLen":25, + "network":"193.247.65.128\/25", + "version":59506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.66.0", + "prefixLen":25, + "network":"193.247.66.0\/25", + "version":59505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.66.0", + "prefixLen":25, + "network":"193.247.66.0\/25", + "version":59505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.66.128", + "prefixLen":25, + "network":"193.247.66.128\/25", + "version":59504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.66.128", + "prefixLen":25, + "network":"193.247.66.128\/25", + "version":59504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.67.0", + "prefixLen":25, + "network":"193.247.67.0\/25", + "version":59503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.67.0", + "prefixLen":25, + "network":"193.247.67.0\/25", + "version":59503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.67.128", + "prefixLen":25, + "network":"193.247.67.128\/25", + "version":59502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.67.128", + "prefixLen":25, + "network":"193.247.67.128\/25", + "version":59502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.80.0", + "prefixLen":25, + "network":"193.247.80.0\/25", + "version":59501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.80.0", + "prefixLen":25, + "network":"193.247.80.0\/25", + "version":59501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.80.128", + "prefixLen":25, + "network":"193.247.80.128\/25", + "version":59500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.80.128", + "prefixLen":25, + "network":"193.247.80.128\/25", + "version":59500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.81.0", + "prefixLen":25, + "network":"193.247.81.0\/25", + "version":59499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.81.0", + "prefixLen":25, + "network":"193.247.81.0\/25", + "version":59499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.81.128", + "prefixLen":25, + "network":"193.247.81.128\/25", + "version":59498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.81.128", + "prefixLen":25, + "network":"193.247.81.128\/25", + "version":59498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.82.0", + "prefixLen":25, + "network":"193.247.82.0\/25", + "version":59497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.82.0", + "prefixLen":25, + "network":"193.247.82.0\/25", + "version":59497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.82.128", + "prefixLen":25, + "network":"193.247.82.128\/25", + "version":59496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.82.128", + "prefixLen":25, + "network":"193.247.82.128\/25", + "version":59496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.83.0", + "prefixLen":25, + "network":"193.247.83.0\/25", + "version":59495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.83.0", + "prefixLen":25, + "network":"193.247.83.0\/25", + "version":59495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.83.128", + "prefixLen":25, + "network":"193.247.83.128\/25", + "version":59494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.83.128", + "prefixLen":25, + "network":"193.247.83.128\/25", + "version":59494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.96.0", + "prefixLen":25, + "network":"193.247.96.0\/25", + "version":59493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.96.0", + "prefixLen":25, + "network":"193.247.96.0\/25", + "version":59493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.96.128", + "prefixLen":25, + "network":"193.247.96.128\/25", + "version":59492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.96.128", + "prefixLen":25, + "network":"193.247.96.128\/25", + "version":59492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.97.0", + "prefixLen":25, + "network":"193.247.97.0\/25", + "version":59491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.97.0", + "prefixLen":25, + "network":"193.247.97.0\/25", + "version":59491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.97.128", + "prefixLen":25, + "network":"193.247.97.128\/25", + "version":59490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.97.128", + "prefixLen":25, + "network":"193.247.97.128\/25", + "version":59490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.98.0", + "prefixLen":25, + "network":"193.247.98.0\/25", + "version":59489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.98.0", + "prefixLen":25, + "network":"193.247.98.0\/25", + "version":59489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.98.128", + "prefixLen":25, + "network":"193.247.98.128\/25", + "version":59488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.98.128", + "prefixLen":25, + "network":"193.247.98.128\/25", + "version":59488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.99.0", + "prefixLen":25, + "network":"193.247.99.0\/25", + "version":59487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.99.0", + "prefixLen":25, + "network":"193.247.99.0\/25", + "version":59487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.99.128", + "prefixLen":25, + "network":"193.247.99.128\/25", + "version":59486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.99.128", + "prefixLen":25, + "network":"193.247.99.128\/25", + "version":59486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.112.0", + "prefixLen":25, + "network":"193.247.112.0\/25", + "version":59485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.112.0", + "prefixLen":25, + "network":"193.247.112.0\/25", + "version":59485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.112.128", + "prefixLen":25, + "network":"193.247.112.128\/25", + "version":59484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.112.128", + "prefixLen":25, + "network":"193.247.112.128\/25", + "version":59484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.113.0", + "prefixLen":25, + "network":"193.247.113.0\/25", + "version":59483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.113.0", + "prefixLen":25, + "network":"193.247.113.0\/25", + "version":59483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.113.128", + "prefixLen":25, + "network":"193.247.113.128\/25", + "version":59482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.113.128", + "prefixLen":25, + "network":"193.247.113.128\/25", + "version":59482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.114.0", + "prefixLen":25, + "network":"193.247.114.0\/25", + "version":59481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.114.0", + "prefixLen":25, + "network":"193.247.114.0\/25", + "version":59481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.114.128", + "prefixLen":25, + "network":"193.247.114.128\/25", + "version":59480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.114.128", + "prefixLen":25, + "network":"193.247.114.128\/25", + "version":59480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.115.0", + "prefixLen":25, + "network":"193.247.115.0\/25", + "version":59479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.115.0", + "prefixLen":25, + "network":"193.247.115.0\/25", + "version":59479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.115.128", + "prefixLen":25, + "network":"193.247.115.128\/25", + "version":59478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.115.128", + "prefixLen":25, + "network":"193.247.115.128\/25", + "version":59478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.128.0", + "prefixLen":25, + "network":"193.247.128.0\/25", + "version":59477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.128.0", + "prefixLen":25, + "network":"193.247.128.0\/25", + "version":59477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.128.128", + "prefixLen":25, + "network":"193.247.128.128\/25", + "version":59476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.128.128", + "prefixLen":25, + "network":"193.247.128.128\/25", + "version":59476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.129.0", + "prefixLen":25, + "network":"193.247.129.0\/25", + "version":59475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.129.0", + "prefixLen":25, + "network":"193.247.129.0\/25", + "version":59475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.129.128", + "prefixLen":25, + "network":"193.247.129.128\/25", + "version":59474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.129.128", + "prefixLen":25, + "network":"193.247.129.128\/25", + "version":59474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.130.0", + "prefixLen":25, + "network":"193.247.130.0\/25", + "version":59473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.130.0", + "prefixLen":25, + "network":"193.247.130.0\/25", + "version":59473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.130.128", + "prefixLen":25, + "network":"193.247.130.128\/25", + "version":59472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.130.128", + "prefixLen":25, + "network":"193.247.130.128\/25", + "version":59472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.131.0", + "prefixLen":25, + "network":"193.247.131.0\/25", + "version":59471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.131.0", + "prefixLen":25, + "network":"193.247.131.0\/25", + "version":59471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.131.128", + "prefixLen":25, + "network":"193.247.131.128\/25", + "version":59470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.131.128", + "prefixLen":25, + "network":"193.247.131.128\/25", + "version":59470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.144.0", + "prefixLen":25, + "network":"193.247.144.0\/25", + "version":59469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.144.0", + "prefixLen":25, + "network":"193.247.144.0\/25", + "version":59469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.144.128", + "prefixLen":25, + "network":"193.247.144.128\/25", + "version":59468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.144.128", + "prefixLen":25, + "network":"193.247.144.128\/25", + "version":59468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.145.0", + "prefixLen":25, + "network":"193.247.145.0\/25", + "version":59467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.145.0", + "prefixLen":25, + "network":"193.247.145.0\/25", + "version":59467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.145.128", + "prefixLen":25, + "network":"193.247.145.128\/25", + "version":59466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.145.128", + "prefixLen":25, + "network":"193.247.145.128\/25", + "version":59466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.146.0", + "prefixLen":25, + "network":"193.247.146.0\/25", + "version":59465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.146.0", + "prefixLen":25, + "network":"193.247.146.0\/25", + "version":59465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.146.128", + "prefixLen":25, + "network":"193.247.146.128\/25", + "version":59464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.146.128", + "prefixLen":25, + "network":"193.247.146.128\/25", + "version":59464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.147.0", + "prefixLen":25, + "network":"193.247.147.0\/25", + "version":59463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.147.0", + "prefixLen":25, + "network":"193.247.147.0\/25", + "version":59463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.147.128", + "prefixLen":25, + "network":"193.247.147.128\/25", + "version":59462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.147.128", + "prefixLen":25, + "network":"193.247.147.128\/25", + "version":59462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.160.0", + "prefixLen":25, + "network":"193.247.160.0\/25", + "version":59461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.160.0", + "prefixLen":25, + "network":"193.247.160.0\/25", + "version":59461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.160.128", + "prefixLen":25, + "network":"193.247.160.128\/25", + "version":59460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.160.128", + "prefixLen":25, + "network":"193.247.160.128\/25", + "version":59460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.161.0", + "prefixLen":25, + "network":"193.247.161.0\/25", + "version":59459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.161.0", + "prefixLen":25, + "network":"193.247.161.0\/25", + "version":59459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.161.128", + "prefixLen":25, + "network":"193.247.161.128\/25", + "version":59458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.161.128", + "prefixLen":25, + "network":"193.247.161.128\/25", + "version":59458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.162.0", + "prefixLen":25, + "network":"193.247.162.0\/25", + "version":59457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.162.0", + "prefixLen":25, + "network":"193.247.162.0\/25", + "version":59457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.162.128", + "prefixLen":25, + "network":"193.247.162.128\/25", + "version":59456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.162.128", + "prefixLen":25, + "network":"193.247.162.128\/25", + "version":59456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.163.0", + "prefixLen":25, + "network":"193.247.163.0\/25", + "version":59455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.163.0", + "prefixLen":25, + "network":"193.247.163.0\/25", + "version":59455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.163.128", + "prefixLen":25, + "network":"193.247.163.128\/25", + "version":59454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.163.128", + "prefixLen":25, + "network":"193.247.163.128\/25", + "version":59454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.176.0", + "prefixLen":25, + "network":"193.247.176.0\/25", + "version":59453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.176.0", + "prefixLen":25, + "network":"193.247.176.0\/25", + "version":59453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.176.128", + "prefixLen":25, + "network":"193.247.176.128\/25", + "version":59452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.176.128", + "prefixLen":25, + "network":"193.247.176.128\/25", + "version":59452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.177.0", + "prefixLen":25, + "network":"193.247.177.0\/25", + "version":59451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.177.0", + "prefixLen":25, + "network":"193.247.177.0\/25", + "version":59451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.177.128", + "prefixLen":25, + "network":"193.247.177.128\/25", + "version":59450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.177.128", + "prefixLen":25, + "network":"193.247.177.128\/25", + "version":59450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.178.0", + "prefixLen":25, + "network":"193.247.178.0\/25", + "version":59449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.178.0", + "prefixLen":25, + "network":"193.247.178.0\/25", + "version":59449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.178.128", + "prefixLen":25, + "network":"193.247.178.128\/25", + "version":59448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.178.128", + "prefixLen":25, + "network":"193.247.178.128\/25", + "version":59448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.179.0", + "prefixLen":25, + "network":"193.247.179.0\/25", + "version":59447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.179.0", + "prefixLen":25, + "network":"193.247.179.0\/25", + "version":59447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.179.128", + "prefixLen":25, + "network":"193.247.179.128\/25", + "version":59446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.179.128", + "prefixLen":25, + "network":"193.247.179.128\/25", + "version":59446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.192.0", + "prefixLen":25, + "network":"193.247.192.0\/25", + "version":59445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.192.0", + "prefixLen":25, + "network":"193.247.192.0\/25", + "version":59445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.192.128", + "prefixLen":25, + "network":"193.247.192.128\/25", + "version":59444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.192.128", + "prefixLen":25, + "network":"193.247.192.128\/25", + "version":59444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.193.0", + "prefixLen":25, + "network":"193.247.193.0\/25", + "version":59443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.193.0", + "prefixLen":25, + "network":"193.247.193.0\/25", + "version":59443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.193.128", + "prefixLen":25, + "network":"193.247.193.128\/25", + "version":59442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.193.128", + "prefixLen":25, + "network":"193.247.193.128\/25", + "version":59442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.194.0", + "prefixLen":25, + "network":"193.247.194.0\/25", + "version":59441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.194.0", + "prefixLen":25, + "network":"193.247.194.0\/25", + "version":59441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.194.128", + "prefixLen":25, + "network":"193.247.194.128\/25", + "version":59440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.194.128", + "prefixLen":25, + "network":"193.247.194.128\/25", + "version":59440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.195.0", + "prefixLen":25, + "network":"193.247.195.0\/25", + "version":59439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.195.0", + "prefixLen":25, + "network":"193.247.195.0\/25", + "version":59439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.195.128", + "prefixLen":25, + "network":"193.247.195.128\/25", + "version":59438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.195.128", + "prefixLen":25, + "network":"193.247.195.128\/25", + "version":59438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.208.0", + "prefixLen":25, + "network":"193.247.208.0\/25", + "version":59437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.208.0", + "prefixLen":25, + "network":"193.247.208.0\/25", + "version":59437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.208.128", + "prefixLen":25, + "network":"193.247.208.128\/25", + "version":59436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.208.128", + "prefixLen":25, + "network":"193.247.208.128\/25", + "version":59436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.209.0", + "prefixLen":25, + "network":"193.247.209.0\/25", + "version":59435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.209.0", + "prefixLen":25, + "network":"193.247.209.0\/25", + "version":59435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.209.128", + "prefixLen":25, + "network":"193.247.209.128\/25", + "version":59434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.209.128", + "prefixLen":25, + "network":"193.247.209.128\/25", + "version":59434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.210.0", + "prefixLen":25, + "network":"193.247.210.0\/25", + "version":59433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.210.0", + "prefixLen":25, + "network":"193.247.210.0\/25", + "version":59433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.210.128", + "prefixLen":25, + "network":"193.247.210.128\/25", + "version":59432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.210.128", + "prefixLen":25, + "network":"193.247.210.128\/25", + "version":59432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.211.0", + "prefixLen":25, + "network":"193.247.211.0\/25", + "version":59431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.211.0", + "prefixLen":25, + "network":"193.247.211.0\/25", + "version":59431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.211.128", + "prefixLen":25, + "network":"193.247.211.128\/25", + "version":59430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.211.128", + "prefixLen":25, + "network":"193.247.211.128\/25", + "version":59430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.224.0", + "prefixLen":25, + "network":"193.247.224.0\/25", + "version":59429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.224.0", + "prefixLen":25, + "network":"193.247.224.0\/25", + "version":59429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.224.128", + "prefixLen":25, + "network":"193.247.224.128\/25", + "version":59428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.224.128", + "prefixLen":25, + "network":"193.247.224.128\/25", + "version":59428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.225.0", + "prefixLen":25, + "network":"193.247.225.0\/25", + "version":59427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.225.0", + "prefixLen":25, + "network":"193.247.225.0\/25", + "version":59427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.225.128", + "prefixLen":25, + "network":"193.247.225.128\/25", + "version":59426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.225.128", + "prefixLen":25, + "network":"193.247.225.128\/25", + "version":59426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.226.0", + "prefixLen":25, + "network":"193.247.226.0\/25", + "version":59425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.226.0", + "prefixLen":25, + "network":"193.247.226.0\/25", + "version":59425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.226.128", + "prefixLen":25, + "network":"193.247.226.128\/25", + "version":59424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.226.128", + "prefixLen":25, + "network":"193.247.226.128\/25", + "version":59424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.227.0", + "prefixLen":25, + "network":"193.247.227.0\/25", + "version":59423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.227.0", + "prefixLen":25, + "network":"193.247.227.0\/25", + "version":59423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.227.128", + "prefixLen":25, + "network":"193.247.227.128\/25", + "version":59422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.227.128", + "prefixLen":25, + "network":"193.247.227.128\/25", + "version":59422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.240.0", + "prefixLen":25, + "network":"193.247.240.0\/25", + "version":59421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.240.0", + "prefixLen":25, + "network":"193.247.240.0\/25", + "version":59421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.240.128", + "prefixLen":25, + "network":"193.247.240.128\/25", + "version":59420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.240.128", + "prefixLen":25, + "network":"193.247.240.128\/25", + "version":59420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.241.0", + "prefixLen":25, + "network":"193.247.241.0\/25", + "version":59419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.241.0", + "prefixLen":25, + "network":"193.247.241.0\/25", + "version":59419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.241.128", + "prefixLen":25, + "network":"193.247.241.128\/25", + "version":59418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.241.128", + "prefixLen":25, + "network":"193.247.241.128\/25", + "version":59418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.242.0", + "prefixLen":25, + "network":"193.247.242.0\/25", + "version":59417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.242.0", + "prefixLen":25, + "network":"193.247.242.0\/25", + "version":59417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.242.128", + "prefixLen":25, + "network":"193.247.242.128\/25", + "version":59416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.242.128", + "prefixLen":25, + "network":"193.247.242.128\/25", + "version":59416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.243.0", + "prefixLen":25, + "network":"193.247.243.0\/25", + "version":59415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.243.0", + "prefixLen":25, + "network":"193.247.243.0\/25", + "version":59415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.247.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.247.243.128", + "prefixLen":25, + "network":"193.247.243.128\/25", + "version":59414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.247.243.128", + "prefixLen":25, + "network":"193.247.243.128\/25", + "version":59414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64935 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.0.0", + "prefixLen":25, + "network":"193.248.0.0\/25", + "version":59541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.0.0", + "prefixLen":25, + "network":"193.248.0.0\/25", + "version":59541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.0.128", + "prefixLen":25, + "network":"193.248.0.128\/25", + "version":59668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.0.128", + "prefixLen":25, + "network":"193.248.0.128\/25", + "version":59668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.1.0", + "prefixLen":25, + "network":"193.248.1.0\/25", + "version":59667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.1.0", + "prefixLen":25, + "network":"193.248.1.0\/25", + "version":59667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.1.128", + "prefixLen":25, + "network":"193.248.1.128\/25", + "version":59666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.1.128", + "prefixLen":25, + "network":"193.248.1.128\/25", + "version":59666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.2.0", + "prefixLen":25, + "network":"193.248.2.0\/25", + "version":59665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.2.0", + "prefixLen":25, + "network":"193.248.2.0\/25", + "version":59665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.2.128", + "prefixLen":25, + "network":"193.248.2.128\/25", + "version":59664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.2.128", + "prefixLen":25, + "network":"193.248.2.128\/25", + "version":59664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.3.0", + "prefixLen":25, + "network":"193.248.3.0\/25", + "version":59663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.3.0", + "prefixLen":25, + "network":"193.248.3.0\/25", + "version":59663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.3.128", + "prefixLen":25, + "network":"193.248.3.128\/25", + "version":59662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.3.128", + "prefixLen":25, + "network":"193.248.3.128\/25", + "version":59662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.16.0", + "prefixLen":25, + "network":"193.248.16.0\/25", + "version":59661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.16.0", + "prefixLen":25, + "network":"193.248.16.0\/25", + "version":59661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.16.128", + "prefixLen":25, + "network":"193.248.16.128\/25", + "version":59660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.16.128", + "prefixLen":25, + "network":"193.248.16.128\/25", + "version":59660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.17.0", + "prefixLen":25, + "network":"193.248.17.0\/25", + "version":59659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.17.0", + "prefixLen":25, + "network":"193.248.17.0\/25", + "version":59659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.17.128", + "prefixLen":25, + "network":"193.248.17.128\/25", + "version":59658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.17.128", + "prefixLen":25, + "network":"193.248.17.128\/25", + "version":59658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.18.0", + "prefixLen":25, + "network":"193.248.18.0\/25", + "version":59657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.18.0", + "prefixLen":25, + "network":"193.248.18.0\/25", + "version":59657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.18.128", + "prefixLen":25, + "network":"193.248.18.128\/25", + "version":59656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.18.128", + "prefixLen":25, + "network":"193.248.18.128\/25", + "version":59656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.19.0", + "prefixLen":25, + "network":"193.248.19.0\/25", + "version":59655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.19.0", + "prefixLen":25, + "network":"193.248.19.0\/25", + "version":59655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.19.128", + "prefixLen":25, + "network":"193.248.19.128\/25", + "version":59654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.19.128", + "prefixLen":25, + "network":"193.248.19.128\/25", + "version":59654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.32.0", + "prefixLen":25, + "network":"193.248.32.0\/25", + "version":59653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.32.0", + "prefixLen":25, + "network":"193.248.32.0\/25", + "version":59653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.32.128", + "prefixLen":25, + "network":"193.248.32.128\/25", + "version":59652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.32.128", + "prefixLen":25, + "network":"193.248.32.128\/25", + "version":59652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.33.0", + "prefixLen":25, + "network":"193.248.33.0\/25", + "version":59651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.33.0", + "prefixLen":25, + "network":"193.248.33.0\/25", + "version":59651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.33.128", + "prefixLen":25, + "network":"193.248.33.128\/25", + "version":59650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.33.128", + "prefixLen":25, + "network":"193.248.33.128\/25", + "version":59650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.34.0", + "prefixLen":25, + "network":"193.248.34.0\/25", + "version":59649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.34.0", + "prefixLen":25, + "network":"193.248.34.0\/25", + "version":59649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.34.128", + "prefixLen":25, + "network":"193.248.34.128\/25", + "version":59648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.34.128", + "prefixLen":25, + "network":"193.248.34.128\/25", + "version":59648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.35.0", + "prefixLen":25, + "network":"193.248.35.0\/25", + "version":59647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.35.0", + "prefixLen":25, + "network":"193.248.35.0\/25", + "version":59647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.35.128", + "prefixLen":25, + "network":"193.248.35.128\/25", + "version":59646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.35.128", + "prefixLen":25, + "network":"193.248.35.128\/25", + "version":59646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.48.0", + "prefixLen":25, + "network":"193.248.48.0\/25", + "version":59645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.48.0", + "prefixLen":25, + "network":"193.248.48.0\/25", + "version":59645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.48.128", + "prefixLen":25, + "network":"193.248.48.128\/25", + "version":59644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.48.128", + "prefixLen":25, + "network":"193.248.48.128\/25", + "version":59644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.49.0", + "prefixLen":25, + "network":"193.248.49.0\/25", + "version":59643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.49.0", + "prefixLen":25, + "network":"193.248.49.0\/25", + "version":59643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.49.128", + "prefixLen":25, + "network":"193.248.49.128\/25", + "version":59642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.49.128", + "prefixLen":25, + "network":"193.248.49.128\/25", + "version":59642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.50.0", + "prefixLen":25, + "network":"193.248.50.0\/25", + "version":59641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.50.0", + "prefixLen":25, + "network":"193.248.50.0\/25", + "version":59641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.50.128", + "prefixLen":25, + "network":"193.248.50.128\/25", + "version":59640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.50.128", + "prefixLen":25, + "network":"193.248.50.128\/25", + "version":59640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.51.0", + "prefixLen":25, + "network":"193.248.51.0\/25", + "version":59639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.51.0", + "prefixLen":25, + "network":"193.248.51.0\/25", + "version":59639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.51.128", + "prefixLen":25, + "network":"193.248.51.128\/25", + "version":59638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.51.128", + "prefixLen":25, + "network":"193.248.51.128\/25", + "version":59638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.64.0", + "prefixLen":25, + "network":"193.248.64.0\/25", + "version":59637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.64.0", + "prefixLen":25, + "network":"193.248.64.0\/25", + "version":59637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.64.128", + "prefixLen":25, + "network":"193.248.64.128\/25", + "version":59636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.64.128", + "prefixLen":25, + "network":"193.248.64.128\/25", + "version":59636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.65.0", + "prefixLen":25, + "network":"193.248.65.0\/25", + "version":59635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.65.0", + "prefixLen":25, + "network":"193.248.65.0\/25", + "version":59635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.65.128", + "prefixLen":25, + "network":"193.248.65.128\/25", + "version":59634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.65.128", + "prefixLen":25, + "network":"193.248.65.128\/25", + "version":59634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.66.0", + "prefixLen":25, + "network":"193.248.66.0\/25", + "version":59633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.66.0", + "prefixLen":25, + "network":"193.248.66.0\/25", + "version":59633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.66.128", + "prefixLen":25, + "network":"193.248.66.128\/25", + "version":59632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.66.128", + "prefixLen":25, + "network":"193.248.66.128\/25", + "version":59632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.67.0", + "prefixLen":25, + "network":"193.248.67.0\/25", + "version":59631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.67.0", + "prefixLen":25, + "network":"193.248.67.0\/25", + "version":59631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.67.128", + "prefixLen":25, + "network":"193.248.67.128\/25", + "version":59630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.67.128", + "prefixLen":25, + "network":"193.248.67.128\/25", + "version":59630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.80.0", + "prefixLen":25, + "network":"193.248.80.0\/25", + "version":59629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.80.0", + "prefixLen":25, + "network":"193.248.80.0\/25", + "version":59629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.80.128", + "prefixLen":25, + "network":"193.248.80.128\/25", + "version":59628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.80.128", + "prefixLen":25, + "network":"193.248.80.128\/25", + "version":59628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.81.0", + "prefixLen":25, + "network":"193.248.81.0\/25", + "version":59627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.81.0", + "prefixLen":25, + "network":"193.248.81.0\/25", + "version":59627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.81.128", + "prefixLen":25, + "network":"193.248.81.128\/25", + "version":59626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.81.128", + "prefixLen":25, + "network":"193.248.81.128\/25", + "version":59626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.82.0", + "prefixLen":25, + "network":"193.248.82.0\/25", + "version":59625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.82.0", + "prefixLen":25, + "network":"193.248.82.0\/25", + "version":59625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.82.128", + "prefixLen":25, + "network":"193.248.82.128\/25", + "version":59624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.82.128", + "prefixLen":25, + "network":"193.248.82.128\/25", + "version":59624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.83.0", + "prefixLen":25, + "network":"193.248.83.0\/25", + "version":59623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.83.0", + "prefixLen":25, + "network":"193.248.83.0\/25", + "version":59623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.83.128", + "prefixLen":25, + "network":"193.248.83.128\/25", + "version":59622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.83.128", + "prefixLen":25, + "network":"193.248.83.128\/25", + "version":59622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.96.0", + "prefixLen":25, + "network":"193.248.96.0\/25", + "version":59621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.96.0", + "prefixLen":25, + "network":"193.248.96.0\/25", + "version":59621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.96.128", + "prefixLen":25, + "network":"193.248.96.128\/25", + "version":59620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.96.128", + "prefixLen":25, + "network":"193.248.96.128\/25", + "version":59620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.97.0", + "prefixLen":25, + "network":"193.248.97.0\/25", + "version":59619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.97.0", + "prefixLen":25, + "network":"193.248.97.0\/25", + "version":59619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.97.128", + "prefixLen":25, + "network":"193.248.97.128\/25", + "version":59618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.97.128", + "prefixLen":25, + "network":"193.248.97.128\/25", + "version":59618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.98.0", + "prefixLen":25, + "network":"193.248.98.0\/25", + "version":59617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.98.0", + "prefixLen":25, + "network":"193.248.98.0\/25", + "version":59617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.98.128", + "prefixLen":25, + "network":"193.248.98.128\/25", + "version":59616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.98.128", + "prefixLen":25, + "network":"193.248.98.128\/25", + "version":59616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.99.0", + "prefixLen":25, + "network":"193.248.99.0\/25", + "version":59615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.99.0", + "prefixLen":25, + "network":"193.248.99.0\/25", + "version":59615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.99.128", + "prefixLen":25, + "network":"193.248.99.128\/25", + "version":59614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.99.128", + "prefixLen":25, + "network":"193.248.99.128\/25", + "version":59614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.112.0", + "prefixLen":25, + "network":"193.248.112.0\/25", + "version":59613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.112.0", + "prefixLen":25, + "network":"193.248.112.0\/25", + "version":59613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.112.128", + "prefixLen":25, + "network":"193.248.112.128\/25", + "version":59612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.112.128", + "prefixLen":25, + "network":"193.248.112.128\/25", + "version":59612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.113.0", + "prefixLen":25, + "network":"193.248.113.0\/25", + "version":59611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.113.0", + "prefixLen":25, + "network":"193.248.113.0\/25", + "version":59611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.113.128", + "prefixLen":25, + "network":"193.248.113.128\/25", + "version":59610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.113.128", + "prefixLen":25, + "network":"193.248.113.128\/25", + "version":59610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.114.0", + "prefixLen":25, + "network":"193.248.114.0\/25", + "version":59609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.114.0", + "prefixLen":25, + "network":"193.248.114.0\/25", + "version":59609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.114.128", + "prefixLen":25, + "network":"193.248.114.128\/25", + "version":59608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.114.128", + "prefixLen":25, + "network":"193.248.114.128\/25", + "version":59608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.115.0", + "prefixLen":25, + "network":"193.248.115.0\/25", + "version":59607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.115.0", + "prefixLen":25, + "network":"193.248.115.0\/25", + "version":59607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.115.128", + "prefixLen":25, + "network":"193.248.115.128\/25", + "version":59606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.115.128", + "prefixLen":25, + "network":"193.248.115.128\/25", + "version":59606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.128.0", + "prefixLen":25, + "network":"193.248.128.0\/25", + "version":59605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.128.0", + "prefixLen":25, + "network":"193.248.128.0\/25", + "version":59605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.128.128", + "prefixLen":25, + "network":"193.248.128.128\/25", + "version":59604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.128.128", + "prefixLen":25, + "network":"193.248.128.128\/25", + "version":59604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.129.0", + "prefixLen":25, + "network":"193.248.129.0\/25", + "version":59603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.129.0", + "prefixLen":25, + "network":"193.248.129.0\/25", + "version":59603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.129.128", + "prefixLen":25, + "network":"193.248.129.128\/25", + "version":59602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.129.128", + "prefixLen":25, + "network":"193.248.129.128\/25", + "version":59602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.130.0", + "prefixLen":25, + "network":"193.248.130.0\/25", + "version":59601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.130.0", + "prefixLen":25, + "network":"193.248.130.0\/25", + "version":59601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.130.128", + "prefixLen":25, + "network":"193.248.130.128\/25", + "version":59600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.130.128", + "prefixLen":25, + "network":"193.248.130.128\/25", + "version":59600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.131.0", + "prefixLen":25, + "network":"193.248.131.0\/25", + "version":59599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.131.0", + "prefixLen":25, + "network":"193.248.131.0\/25", + "version":59599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.131.128", + "prefixLen":25, + "network":"193.248.131.128\/25", + "version":59598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.131.128", + "prefixLen":25, + "network":"193.248.131.128\/25", + "version":59598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.144.0", + "prefixLen":25, + "network":"193.248.144.0\/25", + "version":59597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.144.0", + "prefixLen":25, + "network":"193.248.144.0\/25", + "version":59597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.144.128", + "prefixLen":25, + "network":"193.248.144.128\/25", + "version":59596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.144.128", + "prefixLen":25, + "network":"193.248.144.128\/25", + "version":59596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.145.0", + "prefixLen":25, + "network":"193.248.145.0\/25", + "version":59595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.145.0", + "prefixLen":25, + "network":"193.248.145.0\/25", + "version":59595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.145.128", + "prefixLen":25, + "network":"193.248.145.128\/25", + "version":59594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.145.128", + "prefixLen":25, + "network":"193.248.145.128\/25", + "version":59594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.146.0", + "prefixLen":25, + "network":"193.248.146.0\/25", + "version":59593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.146.0", + "prefixLen":25, + "network":"193.248.146.0\/25", + "version":59593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.146.128", + "prefixLen":25, + "network":"193.248.146.128\/25", + "version":59592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.146.128", + "prefixLen":25, + "network":"193.248.146.128\/25", + "version":59592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.147.0", + "prefixLen":25, + "network":"193.248.147.0\/25", + "version":59591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.147.0", + "prefixLen":25, + "network":"193.248.147.0\/25", + "version":59591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.147.128", + "prefixLen":25, + "network":"193.248.147.128\/25", + "version":59590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.147.128", + "prefixLen":25, + "network":"193.248.147.128\/25", + "version":59590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.160.0", + "prefixLen":25, + "network":"193.248.160.0\/25", + "version":59589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.160.0", + "prefixLen":25, + "network":"193.248.160.0\/25", + "version":59589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.160.128", + "prefixLen":25, + "network":"193.248.160.128\/25", + "version":59588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.160.128", + "prefixLen":25, + "network":"193.248.160.128\/25", + "version":59588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.161.0", + "prefixLen":25, + "network":"193.248.161.0\/25", + "version":59587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.161.0", + "prefixLen":25, + "network":"193.248.161.0\/25", + "version":59587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.161.128", + "prefixLen":25, + "network":"193.248.161.128\/25", + "version":59586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.161.128", + "prefixLen":25, + "network":"193.248.161.128\/25", + "version":59586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.162.0", + "prefixLen":25, + "network":"193.248.162.0\/25", + "version":59585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.162.0", + "prefixLen":25, + "network":"193.248.162.0\/25", + "version":59585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.162.128", + "prefixLen":25, + "network":"193.248.162.128\/25", + "version":59584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.162.128", + "prefixLen":25, + "network":"193.248.162.128\/25", + "version":59584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.163.0", + "prefixLen":25, + "network":"193.248.163.0\/25", + "version":59583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.163.0", + "prefixLen":25, + "network":"193.248.163.0\/25", + "version":59583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.163.128", + "prefixLen":25, + "network":"193.248.163.128\/25", + "version":59582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.163.128", + "prefixLen":25, + "network":"193.248.163.128\/25", + "version":59582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.176.0", + "prefixLen":25, + "network":"193.248.176.0\/25", + "version":59581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.176.0", + "prefixLen":25, + "network":"193.248.176.0\/25", + "version":59581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.176.128", + "prefixLen":25, + "network":"193.248.176.128\/25", + "version":59580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.176.128", + "prefixLen":25, + "network":"193.248.176.128\/25", + "version":59580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.177.0", + "prefixLen":25, + "network":"193.248.177.0\/25", + "version":59579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.177.0", + "prefixLen":25, + "network":"193.248.177.0\/25", + "version":59579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.177.128", + "prefixLen":25, + "network":"193.248.177.128\/25", + "version":59578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.177.128", + "prefixLen":25, + "network":"193.248.177.128\/25", + "version":59578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.178.0", + "prefixLen":25, + "network":"193.248.178.0\/25", + "version":59577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.178.0", + "prefixLen":25, + "network":"193.248.178.0\/25", + "version":59577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.178.128", + "prefixLen":25, + "network":"193.248.178.128\/25", + "version":59576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.178.128", + "prefixLen":25, + "network":"193.248.178.128\/25", + "version":59576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.179.0", + "prefixLen":25, + "network":"193.248.179.0\/25", + "version":59575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.179.0", + "prefixLen":25, + "network":"193.248.179.0\/25", + "version":59575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.179.128", + "prefixLen":25, + "network":"193.248.179.128\/25", + "version":59574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.179.128", + "prefixLen":25, + "network":"193.248.179.128\/25", + "version":59574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.192.0", + "prefixLen":25, + "network":"193.248.192.0\/25", + "version":59573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.192.0", + "prefixLen":25, + "network":"193.248.192.0\/25", + "version":59573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.192.128", + "prefixLen":25, + "network":"193.248.192.128\/25", + "version":59572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.192.128", + "prefixLen":25, + "network":"193.248.192.128\/25", + "version":59572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.193.0", + "prefixLen":25, + "network":"193.248.193.0\/25", + "version":59571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.193.0", + "prefixLen":25, + "network":"193.248.193.0\/25", + "version":59571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.193.128", + "prefixLen":25, + "network":"193.248.193.128\/25", + "version":59570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.193.128", + "prefixLen":25, + "network":"193.248.193.128\/25", + "version":59570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.194.0", + "prefixLen":25, + "network":"193.248.194.0\/25", + "version":59569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.194.0", + "prefixLen":25, + "network":"193.248.194.0\/25", + "version":59569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.194.128", + "prefixLen":25, + "network":"193.248.194.128\/25", + "version":59568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.194.128", + "prefixLen":25, + "network":"193.248.194.128\/25", + "version":59568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.195.0", + "prefixLen":25, + "network":"193.248.195.0\/25", + "version":59567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.195.0", + "prefixLen":25, + "network":"193.248.195.0\/25", + "version":59567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.195.128", + "prefixLen":25, + "network":"193.248.195.128\/25", + "version":59566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.195.128", + "prefixLen":25, + "network":"193.248.195.128\/25", + "version":59566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.208.0", + "prefixLen":25, + "network":"193.248.208.0\/25", + "version":59565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.208.0", + "prefixLen":25, + "network":"193.248.208.0\/25", + "version":59565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.208.128", + "prefixLen":25, + "network":"193.248.208.128\/25", + "version":59564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.208.128", + "prefixLen":25, + "network":"193.248.208.128\/25", + "version":59564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.209.0", + "prefixLen":25, + "network":"193.248.209.0\/25", + "version":59563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.209.0", + "prefixLen":25, + "network":"193.248.209.0\/25", + "version":59563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.209.128", + "prefixLen":25, + "network":"193.248.209.128\/25", + "version":59562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.209.128", + "prefixLen":25, + "network":"193.248.209.128\/25", + "version":59562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.210.0", + "prefixLen":25, + "network":"193.248.210.0\/25", + "version":59561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.210.0", + "prefixLen":25, + "network":"193.248.210.0\/25", + "version":59561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.210.128", + "prefixLen":25, + "network":"193.248.210.128\/25", + "version":59560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.210.128", + "prefixLen":25, + "network":"193.248.210.128\/25", + "version":59560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.211.0", + "prefixLen":25, + "network":"193.248.211.0\/25", + "version":59559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.211.0", + "prefixLen":25, + "network":"193.248.211.0\/25", + "version":59559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.211.128", + "prefixLen":25, + "network":"193.248.211.128\/25", + "version":59558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.211.128", + "prefixLen":25, + "network":"193.248.211.128\/25", + "version":59558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.224.0", + "prefixLen":25, + "network":"193.248.224.0\/25", + "version":59557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.224.0", + "prefixLen":25, + "network":"193.248.224.0\/25", + "version":59557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.224.128", + "prefixLen":25, + "network":"193.248.224.128\/25", + "version":59556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.224.128", + "prefixLen":25, + "network":"193.248.224.128\/25", + "version":59556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.225.0", + "prefixLen":25, + "network":"193.248.225.0\/25", + "version":59555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.225.0", + "prefixLen":25, + "network":"193.248.225.0\/25", + "version":59555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.225.128", + "prefixLen":25, + "network":"193.248.225.128\/25", + "version":59554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.225.128", + "prefixLen":25, + "network":"193.248.225.128\/25", + "version":59554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.226.0", + "prefixLen":25, + "network":"193.248.226.0\/25", + "version":59553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.226.0", + "prefixLen":25, + "network":"193.248.226.0\/25", + "version":59553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.226.128", + "prefixLen":25, + "network":"193.248.226.128\/25", + "version":59552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.226.128", + "prefixLen":25, + "network":"193.248.226.128\/25", + "version":59552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.227.0", + "prefixLen":25, + "network":"193.248.227.0\/25", + "version":59551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.227.0", + "prefixLen":25, + "network":"193.248.227.0\/25", + "version":59551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.227.128", + "prefixLen":25, + "network":"193.248.227.128\/25", + "version":59550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.227.128", + "prefixLen":25, + "network":"193.248.227.128\/25", + "version":59550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.240.0", + "prefixLen":25, + "network":"193.248.240.0\/25", + "version":59549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.240.0", + "prefixLen":25, + "network":"193.248.240.0\/25", + "version":59549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.240.128", + "prefixLen":25, + "network":"193.248.240.128\/25", + "version":59548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.240.128", + "prefixLen":25, + "network":"193.248.240.128\/25", + "version":59548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.241.0", + "prefixLen":25, + "network":"193.248.241.0\/25", + "version":59547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.241.0", + "prefixLen":25, + "network":"193.248.241.0\/25", + "version":59547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.241.128", + "prefixLen":25, + "network":"193.248.241.128\/25", + "version":59546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.241.128", + "prefixLen":25, + "network":"193.248.241.128\/25", + "version":59546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.242.0", + "prefixLen":25, + "network":"193.248.242.0\/25", + "version":59545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.242.0", + "prefixLen":25, + "network":"193.248.242.0\/25", + "version":59545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.242.128", + "prefixLen":25, + "network":"193.248.242.128\/25", + "version":59544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.242.128", + "prefixLen":25, + "network":"193.248.242.128\/25", + "version":59544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.243.0", + "prefixLen":25, + "network":"193.248.243.0\/25", + "version":59543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.243.0", + "prefixLen":25, + "network":"193.248.243.0\/25", + "version":59543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.248.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.248.243.128", + "prefixLen":25, + "network":"193.248.243.128\/25", + "version":59542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.248.243.128", + "prefixLen":25, + "network":"193.248.243.128\/25", + "version":59542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64936 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.0.0", + "prefixLen":25, + "network":"193.249.0.0\/25", + "version":59669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.0.0", + "prefixLen":25, + "network":"193.249.0.0\/25", + "version":59669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.0.128", + "prefixLen":25, + "network":"193.249.0.128\/25", + "version":59796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.0.128", + "prefixLen":25, + "network":"193.249.0.128\/25", + "version":59796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.1.0", + "prefixLen":25, + "network":"193.249.1.0\/25", + "version":59795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.1.0", + "prefixLen":25, + "network":"193.249.1.0\/25", + "version":59795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.1.128", + "prefixLen":25, + "network":"193.249.1.128\/25", + "version":59794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.1.128", + "prefixLen":25, + "network":"193.249.1.128\/25", + "version":59794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.2.0", + "prefixLen":25, + "network":"193.249.2.0\/25", + "version":59793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.2.0", + "prefixLen":25, + "network":"193.249.2.0\/25", + "version":59793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.2.128", + "prefixLen":25, + "network":"193.249.2.128\/25", + "version":59792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.2.128", + "prefixLen":25, + "network":"193.249.2.128\/25", + "version":59792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.3.0", + "prefixLen":25, + "network":"193.249.3.0\/25", + "version":59791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.3.0", + "prefixLen":25, + "network":"193.249.3.0\/25", + "version":59791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.3.128", + "prefixLen":25, + "network":"193.249.3.128\/25", + "version":59790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.3.128", + "prefixLen":25, + "network":"193.249.3.128\/25", + "version":59790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.16.0", + "prefixLen":25, + "network":"193.249.16.0\/25", + "version":59789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.16.0", + "prefixLen":25, + "network":"193.249.16.0\/25", + "version":59789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.16.128", + "prefixLen":25, + "network":"193.249.16.128\/25", + "version":59788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.16.128", + "prefixLen":25, + "network":"193.249.16.128\/25", + "version":59788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.17.0", + "prefixLen":25, + "network":"193.249.17.0\/25", + "version":59787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.17.0", + "prefixLen":25, + "network":"193.249.17.0\/25", + "version":59787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.17.128", + "prefixLen":25, + "network":"193.249.17.128\/25", + "version":59786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.17.128", + "prefixLen":25, + "network":"193.249.17.128\/25", + "version":59786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.18.0", + "prefixLen":25, + "network":"193.249.18.0\/25", + "version":59785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.18.0", + "prefixLen":25, + "network":"193.249.18.0\/25", + "version":59785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.18.128", + "prefixLen":25, + "network":"193.249.18.128\/25", + "version":59784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.18.128", + "prefixLen":25, + "network":"193.249.18.128\/25", + "version":59784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.19.0", + "prefixLen":25, + "network":"193.249.19.0\/25", + "version":59783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.19.0", + "prefixLen":25, + "network":"193.249.19.0\/25", + "version":59783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.19.128", + "prefixLen":25, + "network":"193.249.19.128\/25", + "version":59782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.19.128", + "prefixLen":25, + "network":"193.249.19.128\/25", + "version":59782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.32.0", + "prefixLen":25, + "network":"193.249.32.0\/25", + "version":59781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.32.0", + "prefixLen":25, + "network":"193.249.32.0\/25", + "version":59781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.32.128", + "prefixLen":25, + "network":"193.249.32.128\/25", + "version":59780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.32.128", + "prefixLen":25, + "network":"193.249.32.128\/25", + "version":59780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.33.0", + "prefixLen":25, + "network":"193.249.33.0\/25", + "version":59779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.33.0", + "prefixLen":25, + "network":"193.249.33.0\/25", + "version":59779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.33.128", + "prefixLen":25, + "network":"193.249.33.128\/25", + "version":59778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.33.128", + "prefixLen":25, + "network":"193.249.33.128\/25", + "version":59778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.34.0", + "prefixLen":25, + "network":"193.249.34.0\/25", + "version":59777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.34.0", + "prefixLen":25, + "network":"193.249.34.0\/25", + "version":59777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.34.128", + "prefixLen":25, + "network":"193.249.34.128\/25", + "version":59776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.34.128", + "prefixLen":25, + "network":"193.249.34.128\/25", + "version":59776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.35.0", + "prefixLen":25, + "network":"193.249.35.0\/25", + "version":59775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.35.0", + "prefixLen":25, + "network":"193.249.35.0\/25", + "version":59775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.35.128", + "prefixLen":25, + "network":"193.249.35.128\/25", + "version":59774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.35.128", + "prefixLen":25, + "network":"193.249.35.128\/25", + "version":59774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.48.0", + "prefixLen":25, + "network":"193.249.48.0\/25", + "version":59773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.48.0", + "prefixLen":25, + "network":"193.249.48.0\/25", + "version":59773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.48.128", + "prefixLen":25, + "network":"193.249.48.128\/25", + "version":59772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.48.128", + "prefixLen":25, + "network":"193.249.48.128\/25", + "version":59772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.49.0", + "prefixLen":25, + "network":"193.249.49.0\/25", + "version":59771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.49.0", + "prefixLen":25, + "network":"193.249.49.0\/25", + "version":59771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.49.128", + "prefixLen":25, + "network":"193.249.49.128\/25", + "version":59770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.49.128", + "prefixLen":25, + "network":"193.249.49.128\/25", + "version":59770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.50.0", + "prefixLen":25, + "network":"193.249.50.0\/25", + "version":59769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.50.0", + "prefixLen":25, + "network":"193.249.50.0\/25", + "version":59769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.50.128", + "prefixLen":25, + "network":"193.249.50.128\/25", + "version":59768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.50.128", + "prefixLen":25, + "network":"193.249.50.128\/25", + "version":59768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.51.0", + "prefixLen":25, + "network":"193.249.51.0\/25", + "version":59767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.51.0", + "prefixLen":25, + "network":"193.249.51.0\/25", + "version":59767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.51.128", + "prefixLen":25, + "network":"193.249.51.128\/25", + "version":59766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.51.128", + "prefixLen":25, + "network":"193.249.51.128\/25", + "version":59766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.64.0", + "prefixLen":25, + "network":"193.249.64.0\/25", + "version":59765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.64.0", + "prefixLen":25, + "network":"193.249.64.0\/25", + "version":59765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.64.128", + "prefixLen":25, + "network":"193.249.64.128\/25", + "version":59764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.64.128", + "prefixLen":25, + "network":"193.249.64.128\/25", + "version":59764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.65.0", + "prefixLen":25, + "network":"193.249.65.0\/25", + "version":59763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.65.0", + "prefixLen":25, + "network":"193.249.65.0\/25", + "version":59763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.65.128", + "prefixLen":25, + "network":"193.249.65.128\/25", + "version":59762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.65.128", + "prefixLen":25, + "network":"193.249.65.128\/25", + "version":59762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.66.0", + "prefixLen":25, + "network":"193.249.66.0\/25", + "version":59761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.66.0", + "prefixLen":25, + "network":"193.249.66.0\/25", + "version":59761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.66.128", + "prefixLen":25, + "network":"193.249.66.128\/25", + "version":59760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.66.128", + "prefixLen":25, + "network":"193.249.66.128\/25", + "version":59760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.67.0", + "prefixLen":25, + "network":"193.249.67.0\/25", + "version":59759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.67.0", + "prefixLen":25, + "network":"193.249.67.0\/25", + "version":59759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.67.128", + "prefixLen":25, + "network":"193.249.67.128\/25", + "version":59758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.67.128", + "prefixLen":25, + "network":"193.249.67.128\/25", + "version":59758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.80.0", + "prefixLen":25, + "network":"193.249.80.0\/25", + "version":59757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.80.0", + "prefixLen":25, + "network":"193.249.80.0\/25", + "version":59757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.80.128", + "prefixLen":25, + "network":"193.249.80.128\/25", + "version":59756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.80.128", + "prefixLen":25, + "network":"193.249.80.128\/25", + "version":59756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.81.0", + "prefixLen":25, + "network":"193.249.81.0\/25", + "version":59755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.81.0", + "prefixLen":25, + "network":"193.249.81.0\/25", + "version":59755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.81.128", + "prefixLen":25, + "network":"193.249.81.128\/25", + "version":59754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.81.128", + "prefixLen":25, + "network":"193.249.81.128\/25", + "version":59754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.82.0", + "prefixLen":25, + "network":"193.249.82.0\/25", + "version":59753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.82.0", + "prefixLen":25, + "network":"193.249.82.0\/25", + "version":59753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.82.128", + "prefixLen":25, + "network":"193.249.82.128\/25", + "version":59752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.82.128", + "prefixLen":25, + "network":"193.249.82.128\/25", + "version":59752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.83.0", + "prefixLen":25, + "network":"193.249.83.0\/25", + "version":59751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.83.0", + "prefixLen":25, + "network":"193.249.83.0\/25", + "version":59751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.83.128", + "prefixLen":25, + "network":"193.249.83.128\/25", + "version":59750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.83.128", + "prefixLen":25, + "network":"193.249.83.128\/25", + "version":59750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.96.0", + "prefixLen":25, + "network":"193.249.96.0\/25", + "version":59749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.96.0", + "prefixLen":25, + "network":"193.249.96.0\/25", + "version":59749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.96.128", + "prefixLen":25, + "network":"193.249.96.128\/25", + "version":59748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.96.128", + "prefixLen":25, + "network":"193.249.96.128\/25", + "version":59748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.97.0", + "prefixLen":25, + "network":"193.249.97.0\/25", + "version":59747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.97.0", + "prefixLen":25, + "network":"193.249.97.0\/25", + "version":59747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.97.128", + "prefixLen":25, + "network":"193.249.97.128\/25", + "version":59746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.97.128", + "prefixLen":25, + "network":"193.249.97.128\/25", + "version":59746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.98.0", + "prefixLen":25, + "network":"193.249.98.0\/25", + "version":59745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.98.0", + "prefixLen":25, + "network":"193.249.98.0\/25", + "version":59745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.98.128", + "prefixLen":25, + "network":"193.249.98.128\/25", + "version":59744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.98.128", + "prefixLen":25, + "network":"193.249.98.128\/25", + "version":59744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.99.0", + "prefixLen":25, + "network":"193.249.99.0\/25", + "version":59743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.99.0", + "prefixLen":25, + "network":"193.249.99.0\/25", + "version":59743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.99.128", + "prefixLen":25, + "network":"193.249.99.128\/25", + "version":59742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.99.128", + "prefixLen":25, + "network":"193.249.99.128\/25", + "version":59742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.112.0", + "prefixLen":25, + "network":"193.249.112.0\/25", + "version":59741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.112.0", + "prefixLen":25, + "network":"193.249.112.0\/25", + "version":59741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.112.128", + "prefixLen":25, + "network":"193.249.112.128\/25", + "version":59740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.112.128", + "prefixLen":25, + "network":"193.249.112.128\/25", + "version":59740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.113.0", + "prefixLen":25, + "network":"193.249.113.0\/25", + "version":59739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.113.0", + "prefixLen":25, + "network":"193.249.113.0\/25", + "version":59739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.113.128", + "prefixLen":25, + "network":"193.249.113.128\/25", + "version":59738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.113.128", + "prefixLen":25, + "network":"193.249.113.128\/25", + "version":59738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.114.0", + "prefixLen":25, + "network":"193.249.114.0\/25", + "version":59737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.114.0", + "prefixLen":25, + "network":"193.249.114.0\/25", + "version":59737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.114.128", + "prefixLen":25, + "network":"193.249.114.128\/25", + "version":59736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.114.128", + "prefixLen":25, + "network":"193.249.114.128\/25", + "version":59736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.115.0", + "prefixLen":25, + "network":"193.249.115.0\/25", + "version":59735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.115.0", + "prefixLen":25, + "network":"193.249.115.0\/25", + "version":59735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.115.128", + "prefixLen":25, + "network":"193.249.115.128\/25", + "version":59734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.115.128", + "prefixLen":25, + "network":"193.249.115.128\/25", + "version":59734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.128.0", + "prefixLen":25, + "network":"193.249.128.0\/25", + "version":59733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.128.0", + "prefixLen":25, + "network":"193.249.128.0\/25", + "version":59733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.128.128", + "prefixLen":25, + "network":"193.249.128.128\/25", + "version":59732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.128.128", + "prefixLen":25, + "network":"193.249.128.128\/25", + "version":59732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.129.0", + "prefixLen":25, + "network":"193.249.129.0\/25", + "version":59731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.129.0", + "prefixLen":25, + "network":"193.249.129.0\/25", + "version":59731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.129.128", + "prefixLen":25, + "network":"193.249.129.128\/25", + "version":59730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.129.128", + "prefixLen":25, + "network":"193.249.129.128\/25", + "version":59730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.130.0", + "prefixLen":25, + "network":"193.249.130.0\/25", + "version":59729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.130.0", + "prefixLen":25, + "network":"193.249.130.0\/25", + "version":59729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.130.128", + "prefixLen":25, + "network":"193.249.130.128\/25", + "version":59728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.130.128", + "prefixLen":25, + "network":"193.249.130.128\/25", + "version":59728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.131.0", + "prefixLen":25, + "network":"193.249.131.0\/25", + "version":59727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.131.0", + "prefixLen":25, + "network":"193.249.131.0\/25", + "version":59727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.131.128", + "prefixLen":25, + "network":"193.249.131.128\/25", + "version":59726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.131.128", + "prefixLen":25, + "network":"193.249.131.128\/25", + "version":59726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.144.0", + "prefixLen":25, + "network":"193.249.144.0\/25", + "version":59725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.144.0", + "prefixLen":25, + "network":"193.249.144.0\/25", + "version":59725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.144.128", + "prefixLen":25, + "network":"193.249.144.128\/25", + "version":59724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.144.128", + "prefixLen":25, + "network":"193.249.144.128\/25", + "version":59724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.145.0", + "prefixLen":25, + "network":"193.249.145.0\/25", + "version":59723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.145.0", + "prefixLen":25, + "network":"193.249.145.0\/25", + "version":59723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.145.128", + "prefixLen":25, + "network":"193.249.145.128\/25", + "version":59722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.145.128", + "prefixLen":25, + "network":"193.249.145.128\/25", + "version":59722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.146.0", + "prefixLen":25, + "network":"193.249.146.0\/25", + "version":59721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.146.0", + "prefixLen":25, + "network":"193.249.146.0\/25", + "version":59721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.146.128", + "prefixLen":25, + "network":"193.249.146.128\/25", + "version":59720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.146.128", + "prefixLen":25, + "network":"193.249.146.128\/25", + "version":59720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.147.0", + "prefixLen":25, + "network":"193.249.147.0\/25", + "version":59719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.147.0", + "prefixLen":25, + "network":"193.249.147.0\/25", + "version":59719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.147.128", + "prefixLen":25, + "network":"193.249.147.128\/25", + "version":59718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.147.128", + "prefixLen":25, + "network":"193.249.147.128\/25", + "version":59718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.160.0", + "prefixLen":25, + "network":"193.249.160.0\/25", + "version":59717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.160.0", + "prefixLen":25, + "network":"193.249.160.0\/25", + "version":59717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.160.128", + "prefixLen":25, + "network":"193.249.160.128\/25", + "version":59716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.160.128", + "prefixLen":25, + "network":"193.249.160.128\/25", + "version":59716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.161.0", + "prefixLen":25, + "network":"193.249.161.0\/25", + "version":59715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.161.0", + "prefixLen":25, + "network":"193.249.161.0\/25", + "version":59715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.161.128", + "prefixLen":25, + "network":"193.249.161.128\/25", + "version":59714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.161.128", + "prefixLen":25, + "network":"193.249.161.128\/25", + "version":59714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.162.0", + "prefixLen":25, + "network":"193.249.162.0\/25", + "version":59713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.162.0", + "prefixLen":25, + "network":"193.249.162.0\/25", + "version":59713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.162.128", + "prefixLen":25, + "network":"193.249.162.128\/25", + "version":59712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.162.128", + "prefixLen":25, + "network":"193.249.162.128\/25", + "version":59712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.163.0", + "prefixLen":25, + "network":"193.249.163.0\/25", + "version":59711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.163.0", + "prefixLen":25, + "network":"193.249.163.0\/25", + "version":59711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.163.128", + "prefixLen":25, + "network":"193.249.163.128\/25", + "version":59710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.163.128", + "prefixLen":25, + "network":"193.249.163.128\/25", + "version":59710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.176.0", + "prefixLen":25, + "network":"193.249.176.0\/25", + "version":59709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.176.0", + "prefixLen":25, + "network":"193.249.176.0\/25", + "version":59709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.176.128", + "prefixLen":25, + "network":"193.249.176.128\/25", + "version":59708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.176.128", + "prefixLen":25, + "network":"193.249.176.128\/25", + "version":59708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.177.0", + "prefixLen":25, + "network":"193.249.177.0\/25", + "version":59707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.177.0", + "prefixLen":25, + "network":"193.249.177.0\/25", + "version":59707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.177.128", + "prefixLen":25, + "network":"193.249.177.128\/25", + "version":59706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.177.128", + "prefixLen":25, + "network":"193.249.177.128\/25", + "version":59706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.178.0", + "prefixLen":25, + "network":"193.249.178.0\/25", + "version":59705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.178.0", + "prefixLen":25, + "network":"193.249.178.0\/25", + "version":59705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.178.128", + "prefixLen":25, + "network":"193.249.178.128\/25", + "version":59704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.178.128", + "prefixLen":25, + "network":"193.249.178.128\/25", + "version":59704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.179.0", + "prefixLen":25, + "network":"193.249.179.0\/25", + "version":59703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.179.0", + "prefixLen":25, + "network":"193.249.179.0\/25", + "version":59703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.179.128", + "prefixLen":25, + "network":"193.249.179.128\/25", + "version":59702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.179.128", + "prefixLen":25, + "network":"193.249.179.128\/25", + "version":59702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.192.0", + "prefixLen":25, + "network":"193.249.192.0\/25", + "version":59701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.192.0", + "prefixLen":25, + "network":"193.249.192.0\/25", + "version":59701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.192.128", + "prefixLen":25, + "network":"193.249.192.128\/25", + "version":59700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.192.128", + "prefixLen":25, + "network":"193.249.192.128\/25", + "version":59700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.193.0", + "prefixLen":25, + "network":"193.249.193.0\/25", + "version":59699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.193.0", + "prefixLen":25, + "network":"193.249.193.0\/25", + "version":59699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.193.128", + "prefixLen":25, + "network":"193.249.193.128\/25", + "version":59698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.193.128", + "prefixLen":25, + "network":"193.249.193.128\/25", + "version":59698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.194.0", + "prefixLen":25, + "network":"193.249.194.0\/25", + "version":59697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.194.0", + "prefixLen":25, + "network":"193.249.194.0\/25", + "version":59697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.194.128", + "prefixLen":25, + "network":"193.249.194.128\/25", + "version":59696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.194.128", + "prefixLen":25, + "network":"193.249.194.128\/25", + "version":59696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.195.0", + "prefixLen":25, + "network":"193.249.195.0\/25", + "version":59695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.195.0", + "prefixLen":25, + "network":"193.249.195.0\/25", + "version":59695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.195.128", + "prefixLen":25, + "network":"193.249.195.128\/25", + "version":59694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.195.128", + "prefixLen":25, + "network":"193.249.195.128\/25", + "version":59694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.208.0", + "prefixLen":25, + "network":"193.249.208.0\/25", + "version":59693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.208.0", + "prefixLen":25, + "network":"193.249.208.0\/25", + "version":59693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.208.128", + "prefixLen":25, + "network":"193.249.208.128\/25", + "version":59692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.208.128", + "prefixLen":25, + "network":"193.249.208.128\/25", + "version":59692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.209.0", + "prefixLen":25, + "network":"193.249.209.0\/25", + "version":59691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.209.0", + "prefixLen":25, + "network":"193.249.209.0\/25", + "version":59691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.209.128", + "prefixLen":25, + "network":"193.249.209.128\/25", + "version":59690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.209.128", + "prefixLen":25, + "network":"193.249.209.128\/25", + "version":59690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.210.0", + "prefixLen":25, + "network":"193.249.210.0\/25", + "version":59689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.210.0", + "prefixLen":25, + "network":"193.249.210.0\/25", + "version":59689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.210.128", + "prefixLen":25, + "network":"193.249.210.128\/25", + "version":59688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.210.128", + "prefixLen":25, + "network":"193.249.210.128\/25", + "version":59688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.211.0", + "prefixLen":25, + "network":"193.249.211.0\/25", + "version":59687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.211.0", + "prefixLen":25, + "network":"193.249.211.0\/25", + "version":59687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.211.128", + "prefixLen":25, + "network":"193.249.211.128\/25", + "version":59686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.211.128", + "prefixLen":25, + "network":"193.249.211.128\/25", + "version":59686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.224.0", + "prefixLen":25, + "network":"193.249.224.0\/25", + "version":59685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.224.0", + "prefixLen":25, + "network":"193.249.224.0\/25", + "version":59685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.224.128", + "prefixLen":25, + "network":"193.249.224.128\/25", + "version":59684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.224.128", + "prefixLen":25, + "network":"193.249.224.128\/25", + "version":59684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.225.0", + "prefixLen":25, + "network":"193.249.225.0\/25", + "version":59683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.225.0", + "prefixLen":25, + "network":"193.249.225.0\/25", + "version":59683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.225.128", + "prefixLen":25, + "network":"193.249.225.128\/25", + "version":59682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.225.128", + "prefixLen":25, + "network":"193.249.225.128\/25", + "version":59682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.226.0", + "prefixLen":25, + "network":"193.249.226.0\/25", + "version":59681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.226.0", + "prefixLen":25, + "network":"193.249.226.0\/25", + "version":59681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.226.128", + "prefixLen":25, + "network":"193.249.226.128\/25", + "version":59680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.226.128", + "prefixLen":25, + "network":"193.249.226.128\/25", + "version":59680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.227.0", + "prefixLen":25, + "network":"193.249.227.0\/25", + "version":59679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.227.0", + "prefixLen":25, + "network":"193.249.227.0\/25", + "version":59679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.227.128", + "prefixLen":25, + "network":"193.249.227.128\/25", + "version":59678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.227.128", + "prefixLen":25, + "network":"193.249.227.128\/25", + "version":59678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.240.0", + "prefixLen":25, + "network":"193.249.240.0\/25", + "version":59677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.240.0", + "prefixLen":25, + "network":"193.249.240.0\/25", + "version":59677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.240.128", + "prefixLen":25, + "network":"193.249.240.128\/25", + "version":59676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.240.128", + "prefixLen":25, + "network":"193.249.240.128\/25", + "version":59676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.241.0", + "prefixLen":25, + "network":"193.249.241.0\/25", + "version":59675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.241.0", + "prefixLen":25, + "network":"193.249.241.0\/25", + "version":59675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.241.128", + "prefixLen":25, + "network":"193.249.241.128\/25", + "version":59674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.241.128", + "prefixLen":25, + "network":"193.249.241.128\/25", + "version":59674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.242.0", + "prefixLen":25, + "network":"193.249.242.0\/25", + "version":59673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.242.0", + "prefixLen":25, + "network":"193.249.242.0\/25", + "version":59673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.242.128", + "prefixLen":25, + "network":"193.249.242.128\/25", + "version":59672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.242.128", + "prefixLen":25, + "network":"193.249.242.128\/25", + "version":59672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.243.0", + "prefixLen":25, + "network":"193.249.243.0\/25", + "version":59671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.243.0", + "prefixLen":25, + "network":"193.249.243.0\/25", + "version":59671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.249.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.249.243.128", + "prefixLen":25, + "network":"193.249.243.128\/25", + "version":59670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.249.243.128", + "prefixLen":25, + "network":"193.249.243.128\/25", + "version":59670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64937 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.0.0", + "prefixLen":25, + "network":"193.250.0.0\/25", + "version":59797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.0.0", + "prefixLen":25, + "network":"193.250.0.0\/25", + "version":59797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.0.128", + "prefixLen":25, + "network":"193.250.0.128\/25", + "version":59924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.0.128", + "prefixLen":25, + "network":"193.250.0.128\/25", + "version":59924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.1.0", + "prefixLen":25, + "network":"193.250.1.0\/25", + "version":59923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.1.0", + "prefixLen":25, + "network":"193.250.1.0\/25", + "version":59923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.1.128", + "prefixLen":25, + "network":"193.250.1.128\/25", + "version":59922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.1.128", + "prefixLen":25, + "network":"193.250.1.128\/25", + "version":59922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.2.0", + "prefixLen":25, + "network":"193.250.2.0\/25", + "version":59921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.2.0", + "prefixLen":25, + "network":"193.250.2.0\/25", + "version":59921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.2.128", + "prefixLen":25, + "network":"193.250.2.128\/25", + "version":59920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.2.128", + "prefixLen":25, + "network":"193.250.2.128\/25", + "version":59920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.3.0", + "prefixLen":25, + "network":"193.250.3.0\/25", + "version":59919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.3.0", + "prefixLen":25, + "network":"193.250.3.0\/25", + "version":59919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.3.128", + "prefixLen":25, + "network":"193.250.3.128\/25", + "version":59918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.3.128", + "prefixLen":25, + "network":"193.250.3.128\/25", + "version":59918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.16.0", + "prefixLen":25, + "network":"193.250.16.0\/25", + "version":59917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.16.0", + "prefixLen":25, + "network":"193.250.16.0\/25", + "version":59917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.16.128", + "prefixLen":25, + "network":"193.250.16.128\/25", + "version":59916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.16.128", + "prefixLen":25, + "network":"193.250.16.128\/25", + "version":59916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.17.0", + "prefixLen":25, + "network":"193.250.17.0\/25", + "version":59915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.17.0", + "prefixLen":25, + "network":"193.250.17.0\/25", + "version":59915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.17.128", + "prefixLen":25, + "network":"193.250.17.128\/25", + "version":59914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.17.128", + "prefixLen":25, + "network":"193.250.17.128\/25", + "version":59914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.18.0", + "prefixLen":25, + "network":"193.250.18.0\/25", + "version":59913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.18.0", + "prefixLen":25, + "network":"193.250.18.0\/25", + "version":59913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.18.128", + "prefixLen":25, + "network":"193.250.18.128\/25", + "version":59912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.18.128", + "prefixLen":25, + "network":"193.250.18.128\/25", + "version":59912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.19.0", + "prefixLen":25, + "network":"193.250.19.0\/25", + "version":59911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.19.0", + "prefixLen":25, + "network":"193.250.19.0\/25", + "version":59911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.19.128", + "prefixLen":25, + "network":"193.250.19.128\/25", + "version":59910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.19.128", + "prefixLen":25, + "network":"193.250.19.128\/25", + "version":59910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.32.0", + "prefixLen":25, + "network":"193.250.32.0\/25", + "version":59909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.32.0", + "prefixLen":25, + "network":"193.250.32.0\/25", + "version":59909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.32.128", + "prefixLen":25, + "network":"193.250.32.128\/25", + "version":59908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.32.128", + "prefixLen":25, + "network":"193.250.32.128\/25", + "version":59908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.33.0", + "prefixLen":25, + "network":"193.250.33.0\/25", + "version":59907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.33.0", + "prefixLen":25, + "network":"193.250.33.0\/25", + "version":59907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.33.128", + "prefixLen":25, + "network":"193.250.33.128\/25", + "version":59906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.33.128", + "prefixLen":25, + "network":"193.250.33.128\/25", + "version":59906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.34.0", + "prefixLen":25, + "network":"193.250.34.0\/25", + "version":59905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.34.0", + "prefixLen":25, + "network":"193.250.34.0\/25", + "version":59905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.34.128", + "prefixLen":25, + "network":"193.250.34.128\/25", + "version":59904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.34.128", + "prefixLen":25, + "network":"193.250.34.128\/25", + "version":59904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.35.0", + "prefixLen":25, + "network":"193.250.35.0\/25", + "version":59903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.35.0", + "prefixLen":25, + "network":"193.250.35.0\/25", + "version":59903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.35.128", + "prefixLen":25, + "network":"193.250.35.128\/25", + "version":59902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.35.128", + "prefixLen":25, + "network":"193.250.35.128\/25", + "version":59902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.48.0", + "prefixLen":25, + "network":"193.250.48.0\/25", + "version":59901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.48.0", + "prefixLen":25, + "network":"193.250.48.0\/25", + "version":59901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.48.128", + "prefixLen":25, + "network":"193.250.48.128\/25", + "version":59900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.48.128", + "prefixLen":25, + "network":"193.250.48.128\/25", + "version":59900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.49.0", + "prefixLen":25, + "network":"193.250.49.0\/25", + "version":59899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.49.0", + "prefixLen":25, + "network":"193.250.49.0\/25", + "version":59899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.49.128", + "prefixLen":25, + "network":"193.250.49.128\/25", + "version":59898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.49.128", + "prefixLen":25, + "network":"193.250.49.128\/25", + "version":59898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.50.0", + "prefixLen":25, + "network":"193.250.50.0\/25", + "version":59897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.50.0", + "prefixLen":25, + "network":"193.250.50.0\/25", + "version":59897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.50.128", + "prefixLen":25, + "network":"193.250.50.128\/25", + "version":59896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.50.128", + "prefixLen":25, + "network":"193.250.50.128\/25", + "version":59896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.51.0", + "prefixLen":25, + "network":"193.250.51.0\/25", + "version":59895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.51.0", + "prefixLen":25, + "network":"193.250.51.0\/25", + "version":59895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.51.128", + "prefixLen":25, + "network":"193.250.51.128\/25", + "version":59894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.51.128", + "prefixLen":25, + "network":"193.250.51.128\/25", + "version":59894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.64.0", + "prefixLen":25, + "network":"193.250.64.0\/25", + "version":59893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.64.0", + "prefixLen":25, + "network":"193.250.64.0\/25", + "version":59893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.64.128", + "prefixLen":25, + "network":"193.250.64.128\/25", + "version":59892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.64.128", + "prefixLen":25, + "network":"193.250.64.128\/25", + "version":59892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.65.0", + "prefixLen":25, + "network":"193.250.65.0\/25", + "version":59891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.65.0", + "prefixLen":25, + "network":"193.250.65.0\/25", + "version":59891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.65.128", + "prefixLen":25, + "network":"193.250.65.128\/25", + "version":59890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.65.128", + "prefixLen":25, + "network":"193.250.65.128\/25", + "version":59890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.66.0", + "prefixLen":25, + "network":"193.250.66.0\/25", + "version":59889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.66.0", + "prefixLen":25, + "network":"193.250.66.0\/25", + "version":59889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.66.128", + "prefixLen":25, + "network":"193.250.66.128\/25", + "version":59888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.66.128", + "prefixLen":25, + "network":"193.250.66.128\/25", + "version":59888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.67.0", + "prefixLen":25, + "network":"193.250.67.0\/25", + "version":59887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.67.0", + "prefixLen":25, + "network":"193.250.67.0\/25", + "version":59887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.67.128", + "prefixLen":25, + "network":"193.250.67.128\/25", + "version":59886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.67.128", + "prefixLen":25, + "network":"193.250.67.128\/25", + "version":59886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.80.0", + "prefixLen":25, + "network":"193.250.80.0\/25", + "version":59885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.80.0", + "prefixLen":25, + "network":"193.250.80.0\/25", + "version":59885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.80.128", + "prefixLen":25, + "network":"193.250.80.128\/25", + "version":59884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.80.128", + "prefixLen":25, + "network":"193.250.80.128\/25", + "version":59884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.81.0", + "prefixLen":25, + "network":"193.250.81.0\/25", + "version":59883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.81.0", + "prefixLen":25, + "network":"193.250.81.0\/25", + "version":59883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.81.128", + "prefixLen":25, + "network":"193.250.81.128\/25", + "version":59882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.81.128", + "prefixLen":25, + "network":"193.250.81.128\/25", + "version":59882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.82.0", + "prefixLen":25, + "network":"193.250.82.0\/25", + "version":59881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.82.0", + "prefixLen":25, + "network":"193.250.82.0\/25", + "version":59881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.82.128", + "prefixLen":25, + "network":"193.250.82.128\/25", + "version":59880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.82.128", + "prefixLen":25, + "network":"193.250.82.128\/25", + "version":59880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.83.0", + "prefixLen":25, + "network":"193.250.83.0\/25", + "version":59879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.83.0", + "prefixLen":25, + "network":"193.250.83.0\/25", + "version":59879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.83.128", + "prefixLen":25, + "network":"193.250.83.128\/25", + "version":59878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.83.128", + "prefixLen":25, + "network":"193.250.83.128\/25", + "version":59878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.96.0", + "prefixLen":25, + "network":"193.250.96.0\/25", + "version":59877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.96.0", + "prefixLen":25, + "network":"193.250.96.0\/25", + "version":59877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.96.128", + "prefixLen":25, + "network":"193.250.96.128\/25", + "version":59876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.96.128", + "prefixLen":25, + "network":"193.250.96.128\/25", + "version":59876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.97.0", + "prefixLen":25, + "network":"193.250.97.0\/25", + "version":59875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.97.0", + "prefixLen":25, + "network":"193.250.97.0\/25", + "version":59875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.97.128", + "prefixLen":25, + "network":"193.250.97.128\/25", + "version":59874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.97.128", + "prefixLen":25, + "network":"193.250.97.128\/25", + "version":59874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.98.0", + "prefixLen":25, + "network":"193.250.98.0\/25", + "version":59873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.98.0", + "prefixLen":25, + "network":"193.250.98.0\/25", + "version":59873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.98.128", + "prefixLen":25, + "network":"193.250.98.128\/25", + "version":59872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.98.128", + "prefixLen":25, + "network":"193.250.98.128\/25", + "version":59872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.99.0", + "prefixLen":25, + "network":"193.250.99.0\/25", + "version":59871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.99.0", + "prefixLen":25, + "network":"193.250.99.0\/25", + "version":59871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.99.128", + "prefixLen":25, + "network":"193.250.99.128\/25", + "version":59870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.99.128", + "prefixLen":25, + "network":"193.250.99.128\/25", + "version":59870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.112.0", + "prefixLen":25, + "network":"193.250.112.0\/25", + "version":59869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.112.0", + "prefixLen":25, + "network":"193.250.112.0\/25", + "version":59869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.112.128", + "prefixLen":25, + "network":"193.250.112.128\/25", + "version":59868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.112.128", + "prefixLen":25, + "network":"193.250.112.128\/25", + "version":59868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.113.0", + "prefixLen":25, + "network":"193.250.113.0\/25", + "version":59867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.113.0", + "prefixLen":25, + "network":"193.250.113.0\/25", + "version":59867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.113.128", + "prefixLen":25, + "network":"193.250.113.128\/25", + "version":59866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.113.128", + "prefixLen":25, + "network":"193.250.113.128\/25", + "version":59866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.114.0", + "prefixLen":25, + "network":"193.250.114.0\/25", + "version":59865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.114.0", + "prefixLen":25, + "network":"193.250.114.0\/25", + "version":59865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.114.128", + "prefixLen":25, + "network":"193.250.114.128\/25", + "version":59864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.114.128", + "prefixLen":25, + "network":"193.250.114.128\/25", + "version":59864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.115.0", + "prefixLen":25, + "network":"193.250.115.0\/25", + "version":59863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.115.0", + "prefixLen":25, + "network":"193.250.115.0\/25", + "version":59863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.115.128", + "prefixLen":25, + "network":"193.250.115.128\/25", + "version":59862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.115.128", + "prefixLen":25, + "network":"193.250.115.128\/25", + "version":59862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.128.0", + "prefixLen":25, + "network":"193.250.128.0\/25", + "version":59861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.128.0", + "prefixLen":25, + "network":"193.250.128.0\/25", + "version":59861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.128.128", + "prefixLen":25, + "network":"193.250.128.128\/25", + "version":59860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.128.128", + "prefixLen":25, + "network":"193.250.128.128\/25", + "version":59860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.129.0", + "prefixLen":25, + "network":"193.250.129.0\/25", + "version":59859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.129.0", + "prefixLen":25, + "network":"193.250.129.0\/25", + "version":59859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.129.128", + "prefixLen":25, + "network":"193.250.129.128\/25", + "version":59858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.129.128", + "prefixLen":25, + "network":"193.250.129.128\/25", + "version":59858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.130.0", + "prefixLen":25, + "network":"193.250.130.0\/25", + "version":59857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.130.0", + "prefixLen":25, + "network":"193.250.130.0\/25", + "version":59857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.130.128", + "prefixLen":25, + "network":"193.250.130.128\/25", + "version":59856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.130.128", + "prefixLen":25, + "network":"193.250.130.128\/25", + "version":59856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.131.0", + "prefixLen":25, + "network":"193.250.131.0\/25", + "version":59855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.131.0", + "prefixLen":25, + "network":"193.250.131.0\/25", + "version":59855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.131.128", + "prefixLen":25, + "network":"193.250.131.128\/25", + "version":59854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.131.128", + "prefixLen":25, + "network":"193.250.131.128\/25", + "version":59854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.144.0", + "prefixLen":25, + "network":"193.250.144.0\/25", + "version":59853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.144.0", + "prefixLen":25, + "network":"193.250.144.0\/25", + "version":59853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.144.128", + "prefixLen":25, + "network":"193.250.144.128\/25", + "version":59852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.144.128", + "prefixLen":25, + "network":"193.250.144.128\/25", + "version":59852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.145.0", + "prefixLen":25, + "network":"193.250.145.0\/25", + "version":59851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.145.0", + "prefixLen":25, + "network":"193.250.145.0\/25", + "version":59851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.145.128", + "prefixLen":25, + "network":"193.250.145.128\/25", + "version":59850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.145.128", + "prefixLen":25, + "network":"193.250.145.128\/25", + "version":59850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.146.0", + "prefixLen":25, + "network":"193.250.146.0\/25", + "version":59849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.146.0", + "prefixLen":25, + "network":"193.250.146.0\/25", + "version":59849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.146.128", + "prefixLen":25, + "network":"193.250.146.128\/25", + "version":59848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.146.128", + "prefixLen":25, + "network":"193.250.146.128\/25", + "version":59848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.147.0", + "prefixLen":25, + "network":"193.250.147.0\/25", + "version":59847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.147.0", + "prefixLen":25, + "network":"193.250.147.0\/25", + "version":59847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.147.128", + "prefixLen":25, + "network":"193.250.147.128\/25", + "version":59846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.147.128", + "prefixLen":25, + "network":"193.250.147.128\/25", + "version":59846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.160.0", + "prefixLen":25, + "network":"193.250.160.0\/25", + "version":59845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.160.0", + "prefixLen":25, + "network":"193.250.160.0\/25", + "version":59845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.160.128", + "prefixLen":25, + "network":"193.250.160.128\/25", + "version":59844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.160.128", + "prefixLen":25, + "network":"193.250.160.128\/25", + "version":59844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.161.0", + "prefixLen":25, + "network":"193.250.161.0\/25", + "version":59843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.161.0", + "prefixLen":25, + "network":"193.250.161.0\/25", + "version":59843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.161.128", + "prefixLen":25, + "network":"193.250.161.128\/25", + "version":59842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.161.128", + "prefixLen":25, + "network":"193.250.161.128\/25", + "version":59842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.162.0", + "prefixLen":25, + "network":"193.250.162.0\/25", + "version":59841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.162.0", + "prefixLen":25, + "network":"193.250.162.0\/25", + "version":59841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.162.128", + "prefixLen":25, + "network":"193.250.162.128\/25", + "version":59840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.162.128", + "prefixLen":25, + "network":"193.250.162.128\/25", + "version":59840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.163.0", + "prefixLen":25, + "network":"193.250.163.0\/25", + "version":59839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.163.0", + "prefixLen":25, + "network":"193.250.163.0\/25", + "version":59839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.163.128", + "prefixLen":25, + "network":"193.250.163.128\/25", + "version":59838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.163.128", + "prefixLen":25, + "network":"193.250.163.128\/25", + "version":59838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.176.0", + "prefixLen":25, + "network":"193.250.176.0\/25", + "version":59837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.176.0", + "prefixLen":25, + "network":"193.250.176.0\/25", + "version":59837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.176.128", + "prefixLen":25, + "network":"193.250.176.128\/25", + "version":59836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.176.128", + "prefixLen":25, + "network":"193.250.176.128\/25", + "version":59836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.177.0", + "prefixLen":25, + "network":"193.250.177.0\/25", + "version":59835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.177.0", + "prefixLen":25, + "network":"193.250.177.0\/25", + "version":59835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.177.128", + "prefixLen":25, + "network":"193.250.177.128\/25", + "version":59834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.177.128", + "prefixLen":25, + "network":"193.250.177.128\/25", + "version":59834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.178.0", + "prefixLen":25, + "network":"193.250.178.0\/25", + "version":59833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.178.0", + "prefixLen":25, + "network":"193.250.178.0\/25", + "version":59833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.178.128", + "prefixLen":25, + "network":"193.250.178.128\/25", + "version":59832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.178.128", + "prefixLen":25, + "network":"193.250.178.128\/25", + "version":59832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.179.0", + "prefixLen":25, + "network":"193.250.179.0\/25", + "version":59831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.179.0", + "prefixLen":25, + "network":"193.250.179.0\/25", + "version":59831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.179.128", + "prefixLen":25, + "network":"193.250.179.128\/25", + "version":59830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.179.128", + "prefixLen":25, + "network":"193.250.179.128\/25", + "version":59830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.192.0", + "prefixLen":25, + "network":"193.250.192.0\/25", + "version":59829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.192.0", + "prefixLen":25, + "network":"193.250.192.0\/25", + "version":59829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.192.128", + "prefixLen":25, + "network":"193.250.192.128\/25", + "version":59828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.192.128", + "prefixLen":25, + "network":"193.250.192.128\/25", + "version":59828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.193.0", + "prefixLen":25, + "network":"193.250.193.0\/25", + "version":59827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.193.0", + "prefixLen":25, + "network":"193.250.193.0\/25", + "version":59827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.193.128", + "prefixLen":25, + "network":"193.250.193.128\/25", + "version":59826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.193.128", + "prefixLen":25, + "network":"193.250.193.128\/25", + "version":59826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.194.0", + "prefixLen":25, + "network":"193.250.194.0\/25", + "version":59825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.194.0", + "prefixLen":25, + "network":"193.250.194.0\/25", + "version":59825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.194.128", + "prefixLen":25, + "network":"193.250.194.128\/25", + "version":59824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.194.128", + "prefixLen":25, + "network":"193.250.194.128\/25", + "version":59824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.195.0", + "prefixLen":25, + "network":"193.250.195.0\/25", + "version":59823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.195.0", + "prefixLen":25, + "network":"193.250.195.0\/25", + "version":59823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.195.128", + "prefixLen":25, + "network":"193.250.195.128\/25", + "version":59822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.195.128", + "prefixLen":25, + "network":"193.250.195.128\/25", + "version":59822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.208.0", + "prefixLen":25, + "network":"193.250.208.0\/25", + "version":59821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.208.0", + "prefixLen":25, + "network":"193.250.208.0\/25", + "version":59821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.208.128", + "prefixLen":25, + "network":"193.250.208.128\/25", + "version":59820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.208.128", + "prefixLen":25, + "network":"193.250.208.128\/25", + "version":59820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.209.0", + "prefixLen":25, + "network":"193.250.209.0\/25", + "version":59819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.209.0", + "prefixLen":25, + "network":"193.250.209.0\/25", + "version":59819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.209.128", + "prefixLen":25, + "network":"193.250.209.128\/25", + "version":59818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.209.128", + "prefixLen":25, + "network":"193.250.209.128\/25", + "version":59818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.210.0", + "prefixLen":25, + "network":"193.250.210.0\/25", + "version":59817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.210.0", + "prefixLen":25, + "network":"193.250.210.0\/25", + "version":59817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.210.128", + "prefixLen":25, + "network":"193.250.210.128\/25", + "version":59816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.210.128", + "prefixLen":25, + "network":"193.250.210.128\/25", + "version":59816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.211.0", + "prefixLen":25, + "network":"193.250.211.0\/25", + "version":59815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.211.0", + "prefixLen":25, + "network":"193.250.211.0\/25", + "version":59815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.211.128", + "prefixLen":25, + "network":"193.250.211.128\/25", + "version":59814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.211.128", + "prefixLen":25, + "network":"193.250.211.128\/25", + "version":59814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.224.0", + "prefixLen":25, + "network":"193.250.224.0\/25", + "version":59813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.224.0", + "prefixLen":25, + "network":"193.250.224.0\/25", + "version":59813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.224.128", + "prefixLen":25, + "network":"193.250.224.128\/25", + "version":59812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.224.128", + "prefixLen":25, + "network":"193.250.224.128\/25", + "version":59812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.225.0", + "prefixLen":25, + "network":"193.250.225.0\/25", + "version":59811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.225.0", + "prefixLen":25, + "network":"193.250.225.0\/25", + "version":59811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.225.128", + "prefixLen":25, + "network":"193.250.225.128\/25", + "version":59810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.225.128", + "prefixLen":25, + "network":"193.250.225.128\/25", + "version":59810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.226.0", + "prefixLen":25, + "network":"193.250.226.0\/25", + "version":59809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.226.0", + "prefixLen":25, + "network":"193.250.226.0\/25", + "version":59809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.226.128", + "prefixLen":25, + "network":"193.250.226.128\/25", + "version":59808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.226.128", + "prefixLen":25, + "network":"193.250.226.128\/25", + "version":59808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.227.0", + "prefixLen":25, + "network":"193.250.227.0\/25", + "version":59807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.227.0", + "prefixLen":25, + "network":"193.250.227.0\/25", + "version":59807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.227.128", + "prefixLen":25, + "network":"193.250.227.128\/25", + "version":59806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.227.128", + "prefixLen":25, + "network":"193.250.227.128\/25", + "version":59806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.240.0", + "prefixLen":25, + "network":"193.250.240.0\/25", + "version":59805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.240.0", + "prefixLen":25, + "network":"193.250.240.0\/25", + "version":59805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.240.128", + "prefixLen":25, + "network":"193.250.240.128\/25", + "version":59804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.240.128", + "prefixLen":25, + "network":"193.250.240.128\/25", + "version":59804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.241.0", + "prefixLen":25, + "network":"193.250.241.0\/25", + "version":59803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.241.0", + "prefixLen":25, + "network":"193.250.241.0\/25", + "version":59803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.241.128", + "prefixLen":25, + "network":"193.250.241.128\/25", + "version":59802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.241.128", + "prefixLen":25, + "network":"193.250.241.128\/25", + "version":59802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.242.0", + "prefixLen":25, + "network":"193.250.242.0\/25", + "version":59801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.242.0", + "prefixLen":25, + "network":"193.250.242.0\/25", + "version":59801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.242.128", + "prefixLen":25, + "network":"193.250.242.128\/25", + "version":59800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.242.128", + "prefixLen":25, + "network":"193.250.242.128\/25", + "version":59800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.243.0", + "prefixLen":25, + "network":"193.250.243.0\/25", + "version":59799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.243.0", + "prefixLen":25, + "network":"193.250.243.0\/25", + "version":59799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.250.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.250.243.128", + "prefixLen":25, + "network":"193.250.243.128\/25", + "version":59798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.250.243.128", + "prefixLen":25, + "network":"193.250.243.128\/25", + "version":59798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64938 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.0.0", + "prefixLen":25, + "network":"193.251.0.0\/25", + "version":59925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.0.0", + "prefixLen":25, + "network":"193.251.0.0\/25", + "version":59925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.0.128", + "prefixLen":25, + "network":"193.251.0.128\/25", + "version":60052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.0.128", + "prefixLen":25, + "network":"193.251.0.128\/25", + "version":60052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.1.0", + "prefixLen":25, + "network":"193.251.1.0\/25", + "version":60051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.1.0", + "prefixLen":25, + "network":"193.251.1.0\/25", + "version":60051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.1.128", + "prefixLen":25, + "network":"193.251.1.128\/25", + "version":60050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.1.128", + "prefixLen":25, + "network":"193.251.1.128\/25", + "version":60050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.2.0", + "prefixLen":25, + "network":"193.251.2.0\/25", + "version":60049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.2.0", + "prefixLen":25, + "network":"193.251.2.0\/25", + "version":60049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.2.128", + "prefixLen":25, + "network":"193.251.2.128\/25", + "version":60048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.2.128", + "prefixLen":25, + "network":"193.251.2.128\/25", + "version":60048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.3.0", + "prefixLen":25, + "network":"193.251.3.0\/25", + "version":60047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.3.0", + "prefixLen":25, + "network":"193.251.3.0\/25", + "version":60047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.3.128", + "prefixLen":25, + "network":"193.251.3.128\/25", + "version":60046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.3.128", + "prefixLen":25, + "network":"193.251.3.128\/25", + "version":60046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.16.0", + "prefixLen":25, + "network":"193.251.16.0\/25", + "version":60045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.16.0", + "prefixLen":25, + "network":"193.251.16.0\/25", + "version":60045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.16.128", + "prefixLen":25, + "network":"193.251.16.128\/25", + "version":60044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.16.128", + "prefixLen":25, + "network":"193.251.16.128\/25", + "version":60044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.17.0", + "prefixLen":25, + "network":"193.251.17.0\/25", + "version":60043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.17.0", + "prefixLen":25, + "network":"193.251.17.0\/25", + "version":60043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.17.128", + "prefixLen":25, + "network":"193.251.17.128\/25", + "version":60042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.17.128", + "prefixLen":25, + "network":"193.251.17.128\/25", + "version":60042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.18.0", + "prefixLen":25, + "network":"193.251.18.0\/25", + "version":60041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.18.0", + "prefixLen":25, + "network":"193.251.18.0\/25", + "version":60041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.18.128", + "prefixLen":25, + "network":"193.251.18.128\/25", + "version":60040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.18.128", + "prefixLen":25, + "network":"193.251.18.128\/25", + "version":60040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.19.0", + "prefixLen":25, + "network":"193.251.19.0\/25", + "version":60039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.19.0", + "prefixLen":25, + "network":"193.251.19.0\/25", + "version":60039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.19.128", + "prefixLen":25, + "network":"193.251.19.128\/25", + "version":60038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.19.128", + "prefixLen":25, + "network":"193.251.19.128\/25", + "version":60038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.32.0", + "prefixLen":25, + "network":"193.251.32.0\/25", + "version":60037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.32.0", + "prefixLen":25, + "network":"193.251.32.0\/25", + "version":60037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.32.128", + "prefixLen":25, + "network":"193.251.32.128\/25", + "version":60036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.32.128", + "prefixLen":25, + "network":"193.251.32.128\/25", + "version":60036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.33.0", + "prefixLen":25, + "network":"193.251.33.0\/25", + "version":60035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.33.0", + "prefixLen":25, + "network":"193.251.33.0\/25", + "version":60035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.33.128", + "prefixLen":25, + "network":"193.251.33.128\/25", + "version":60034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.33.128", + "prefixLen":25, + "network":"193.251.33.128\/25", + "version":60034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.34.0", + "prefixLen":25, + "network":"193.251.34.0\/25", + "version":60033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.34.0", + "prefixLen":25, + "network":"193.251.34.0\/25", + "version":60033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.34.128", + "prefixLen":25, + "network":"193.251.34.128\/25", + "version":60032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.34.128", + "prefixLen":25, + "network":"193.251.34.128\/25", + "version":60032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.35.0", + "prefixLen":25, + "network":"193.251.35.0\/25", + "version":60031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.35.0", + "prefixLen":25, + "network":"193.251.35.0\/25", + "version":60031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.35.128", + "prefixLen":25, + "network":"193.251.35.128\/25", + "version":60030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.35.128", + "prefixLen":25, + "network":"193.251.35.128\/25", + "version":60030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.48.0", + "prefixLen":25, + "network":"193.251.48.0\/25", + "version":60029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.48.0", + "prefixLen":25, + "network":"193.251.48.0\/25", + "version":60029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.48.128", + "prefixLen":25, + "network":"193.251.48.128\/25", + "version":60028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.48.128", + "prefixLen":25, + "network":"193.251.48.128\/25", + "version":60028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.49.0", + "prefixLen":25, + "network":"193.251.49.0\/25", + "version":60027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.49.0", + "prefixLen":25, + "network":"193.251.49.0\/25", + "version":60027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.49.128", + "prefixLen":25, + "network":"193.251.49.128\/25", + "version":60026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.49.128", + "prefixLen":25, + "network":"193.251.49.128\/25", + "version":60026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.50.0", + "prefixLen":25, + "network":"193.251.50.0\/25", + "version":60025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.50.0", + "prefixLen":25, + "network":"193.251.50.0\/25", + "version":60025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.50.128", + "prefixLen":25, + "network":"193.251.50.128\/25", + "version":60024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.50.128", + "prefixLen":25, + "network":"193.251.50.128\/25", + "version":60024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.51.0", + "prefixLen":25, + "network":"193.251.51.0\/25", + "version":60023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.51.0", + "prefixLen":25, + "network":"193.251.51.0\/25", + "version":60023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.51.128", + "prefixLen":25, + "network":"193.251.51.128\/25", + "version":60022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.51.128", + "prefixLen":25, + "network":"193.251.51.128\/25", + "version":60022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.64.0", + "prefixLen":25, + "network":"193.251.64.0\/25", + "version":60021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.64.0", + "prefixLen":25, + "network":"193.251.64.0\/25", + "version":60021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.64.128", + "prefixLen":25, + "network":"193.251.64.128\/25", + "version":60020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.64.128", + "prefixLen":25, + "network":"193.251.64.128\/25", + "version":60020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.65.0", + "prefixLen":25, + "network":"193.251.65.0\/25", + "version":60019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.65.0", + "prefixLen":25, + "network":"193.251.65.0\/25", + "version":60019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.65.128", + "prefixLen":25, + "network":"193.251.65.128\/25", + "version":60018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.65.128", + "prefixLen":25, + "network":"193.251.65.128\/25", + "version":60018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.66.0", + "prefixLen":25, + "network":"193.251.66.0\/25", + "version":60017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.66.0", + "prefixLen":25, + "network":"193.251.66.0\/25", + "version":60017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.66.128", + "prefixLen":25, + "network":"193.251.66.128\/25", + "version":60016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.66.128", + "prefixLen":25, + "network":"193.251.66.128\/25", + "version":60016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.67.0", + "prefixLen":25, + "network":"193.251.67.0\/25", + "version":60015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.67.0", + "prefixLen":25, + "network":"193.251.67.0\/25", + "version":60015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.67.128", + "prefixLen":25, + "network":"193.251.67.128\/25", + "version":60014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.67.128", + "prefixLen":25, + "network":"193.251.67.128\/25", + "version":60014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.80.0", + "prefixLen":25, + "network":"193.251.80.0\/25", + "version":60013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.80.0", + "prefixLen":25, + "network":"193.251.80.0\/25", + "version":60013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.80.128", + "prefixLen":25, + "network":"193.251.80.128\/25", + "version":60012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.80.128", + "prefixLen":25, + "network":"193.251.80.128\/25", + "version":60012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.81.0", + "prefixLen":25, + "network":"193.251.81.0\/25", + "version":60011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.81.0", + "prefixLen":25, + "network":"193.251.81.0\/25", + "version":60011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.81.128", + "prefixLen":25, + "network":"193.251.81.128\/25", + "version":60010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.81.128", + "prefixLen":25, + "network":"193.251.81.128\/25", + "version":60010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.82.0", + "prefixLen":25, + "network":"193.251.82.0\/25", + "version":60009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.82.0", + "prefixLen":25, + "network":"193.251.82.0\/25", + "version":60009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.82.128", + "prefixLen":25, + "network":"193.251.82.128\/25", + "version":60008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.82.128", + "prefixLen":25, + "network":"193.251.82.128\/25", + "version":60008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.83.0", + "prefixLen":25, + "network":"193.251.83.0\/25", + "version":60007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.83.0", + "prefixLen":25, + "network":"193.251.83.0\/25", + "version":60007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.83.128", + "prefixLen":25, + "network":"193.251.83.128\/25", + "version":60006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.83.128", + "prefixLen":25, + "network":"193.251.83.128\/25", + "version":60006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.96.0", + "prefixLen":25, + "network":"193.251.96.0\/25", + "version":60005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.96.0", + "prefixLen":25, + "network":"193.251.96.0\/25", + "version":60005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.96.128", + "prefixLen":25, + "network":"193.251.96.128\/25", + "version":60004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.96.128", + "prefixLen":25, + "network":"193.251.96.128\/25", + "version":60004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.97.0", + "prefixLen":25, + "network":"193.251.97.0\/25", + "version":60003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.97.0", + "prefixLen":25, + "network":"193.251.97.0\/25", + "version":60003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.97.128", + "prefixLen":25, + "network":"193.251.97.128\/25", + "version":60002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.97.128", + "prefixLen":25, + "network":"193.251.97.128\/25", + "version":60002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.98.0", + "prefixLen":25, + "network":"193.251.98.0\/25", + "version":60001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.98.0", + "prefixLen":25, + "network":"193.251.98.0\/25", + "version":60001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.98.128", + "prefixLen":25, + "network":"193.251.98.128\/25", + "version":60000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.98.128", + "prefixLen":25, + "network":"193.251.98.128\/25", + "version":60000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.99.0", + "prefixLen":25, + "network":"193.251.99.0\/25", + "version":59999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.99.0", + "prefixLen":25, + "network":"193.251.99.0\/25", + "version":59999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.99.128", + "prefixLen":25, + "network":"193.251.99.128\/25", + "version":59998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.99.128", + "prefixLen":25, + "network":"193.251.99.128\/25", + "version":59998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.112.0", + "prefixLen":25, + "network":"193.251.112.0\/25", + "version":59997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.112.0", + "prefixLen":25, + "network":"193.251.112.0\/25", + "version":59997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.112.128", + "prefixLen":25, + "network":"193.251.112.128\/25", + "version":59996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.112.128", + "prefixLen":25, + "network":"193.251.112.128\/25", + "version":59996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.113.0", + "prefixLen":25, + "network":"193.251.113.0\/25", + "version":59995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.113.0", + "prefixLen":25, + "network":"193.251.113.0\/25", + "version":59995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.113.128", + "prefixLen":25, + "network":"193.251.113.128\/25", + "version":59994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.113.128", + "prefixLen":25, + "network":"193.251.113.128\/25", + "version":59994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.114.0", + "prefixLen":25, + "network":"193.251.114.0\/25", + "version":59993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.114.0", + "prefixLen":25, + "network":"193.251.114.0\/25", + "version":59993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.114.128", + "prefixLen":25, + "network":"193.251.114.128\/25", + "version":59992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.114.128", + "prefixLen":25, + "network":"193.251.114.128\/25", + "version":59992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.115.0", + "prefixLen":25, + "network":"193.251.115.0\/25", + "version":59991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.115.0", + "prefixLen":25, + "network":"193.251.115.0\/25", + "version":59991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.115.128", + "prefixLen":25, + "network":"193.251.115.128\/25", + "version":59990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.115.128", + "prefixLen":25, + "network":"193.251.115.128\/25", + "version":59990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.128.0", + "prefixLen":25, + "network":"193.251.128.0\/25", + "version":59989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.128.0", + "prefixLen":25, + "network":"193.251.128.0\/25", + "version":59989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.128.128", + "prefixLen":25, + "network":"193.251.128.128\/25", + "version":59988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.128.128", + "prefixLen":25, + "network":"193.251.128.128\/25", + "version":59988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.129.0", + "prefixLen":25, + "network":"193.251.129.0\/25", + "version":59987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.129.0", + "prefixLen":25, + "network":"193.251.129.0\/25", + "version":59987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.129.128", + "prefixLen":25, + "network":"193.251.129.128\/25", + "version":59986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.129.128", + "prefixLen":25, + "network":"193.251.129.128\/25", + "version":59986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.130.0", + "prefixLen":25, + "network":"193.251.130.0\/25", + "version":59985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.130.0", + "prefixLen":25, + "network":"193.251.130.0\/25", + "version":59985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.130.128", + "prefixLen":25, + "network":"193.251.130.128\/25", + "version":59984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.130.128", + "prefixLen":25, + "network":"193.251.130.128\/25", + "version":59984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.131.0", + "prefixLen":25, + "network":"193.251.131.0\/25", + "version":59983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.131.0", + "prefixLen":25, + "network":"193.251.131.0\/25", + "version":59983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.131.128", + "prefixLen":25, + "network":"193.251.131.128\/25", + "version":59982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.131.128", + "prefixLen":25, + "network":"193.251.131.128\/25", + "version":59982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.144.0", + "prefixLen":25, + "network":"193.251.144.0\/25", + "version":59981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.144.0", + "prefixLen":25, + "network":"193.251.144.0\/25", + "version":59981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.144.128", + "prefixLen":25, + "network":"193.251.144.128\/25", + "version":59980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.144.128", + "prefixLen":25, + "network":"193.251.144.128\/25", + "version":59980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.145.0", + "prefixLen":25, + "network":"193.251.145.0\/25", + "version":59979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.145.0", + "prefixLen":25, + "network":"193.251.145.0\/25", + "version":59979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.145.128", + "prefixLen":25, + "network":"193.251.145.128\/25", + "version":59978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.145.128", + "prefixLen":25, + "network":"193.251.145.128\/25", + "version":59978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.146.0", + "prefixLen":25, + "network":"193.251.146.0\/25", + "version":59977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.146.0", + "prefixLen":25, + "network":"193.251.146.0\/25", + "version":59977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.146.128", + "prefixLen":25, + "network":"193.251.146.128\/25", + "version":59976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.146.128", + "prefixLen":25, + "network":"193.251.146.128\/25", + "version":59976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.147.0", + "prefixLen":25, + "network":"193.251.147.0\/25", + "version":59975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.147.0", + "prefixLen":25, + "network":"193.251.147.0\/25", + "version":59975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.147.128", + "prefixLen":25, + "network":"193.251.147.128\/25", + "version":59974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.147.128", + "prefixLen":25, + "network":"193.251.147.128\/25", + "version":59974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.160.0", + "prefixLen":25, + "network":"193.251.160.0\/25", + "version":59973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.160.0", + "prefixLen":25, + "network":"193.251.160.0\/25", + "version":59973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.160.128", + "prefixLen":25, + "network":"193.251.160.128\/25", + "version":59972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.160.128", + "prefixLen":25, + "network":"193.251.160.128\/25", + "version":59972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.161.0", + "prefixLen":25, + "network":"193.251.161.0\/25", + "version":59971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.161.0", + "prefixLen":25, + "network":"193.251.161.0\/25", + "version":59971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.161.128", + "prefixLen":25, + "network":"193.251.161.128\/25", + "version":59970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.161.128", + "prefixLen":25, + "network":"193.251.161.128\/25", + "version":59970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.162.0", + "prefixLen":25, + "network":"193.251.162.0\/25", + "version":59969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.162.0", + "prefixLen":25, + "network":"193.251.162.0\/25", + "version":59969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.162.128", + "prefixLen":25, + "network":"193.251.162.128\/25", + "version":59968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.162.128", + "prefixLen":25, + "network":"193.251.162.128\/25", + "version":59968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.163.0", + "prefixLen":25, + "network":"193.251.163.0\/25", + "version":59967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.163.0", + "prefixLen":25, + "network":"193.251.163.0\/25", + "version":59967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.163.128", + "prefixLen":25, + "network":"193.251.163.128\/25", + "version":59966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.163.128", + "prefixLen":25, + "network":"193.251.163.128\/25", + "version":59966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.176.0", + "prefixLen":25, + "network":"193.251.176.0\/25", + "version":59965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.176.0", + "prefixLen":25, + "network":"193.251.176.0\/25", + "version":59965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.176.128", + "prefixLen":25, + "network":"193.251.176.128\/25", + "version":59964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.176.128", + "prefixLen":25, + "network":"193.251.176.128\/25", + "version":59964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.177.0", + "prefixLen":25, + "network":"193.251.177.0\/25", + "version":59963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.177.0", + "prefixLen":25, + "network":"193.251.177.0\/25", + "version":59963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.177.128", + "prefixLen":25, + "network":"193.251.177.128\/25", + "version":59962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.177.128", + "prefixLen":25, + "network":"193.251.177.128\/25", + "version":59962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.178.0", + "prefixLen":25, + "network":"193.251.178.0\/25", + "version":59961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.178.0", + "prefixLen":25, + "network":"193.251.178.0\/25", + "version":59961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.178.128", + "prefixLen":25, + "network":"193.251.178.128\/25", + "version":59960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.178.128", + "prefixLen":25, + "network":"193.251.178.128\/25", + "version":59960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.179.0", + "prefixLen":25, + "network":"193.251.179.0\/25", + "version":59959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.179.0", + "prefixLen":25, + "network":"193.251.179.0\/25", + "version":59959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.179.128", + "prefixLen":25, + "network":"193.251.179.128\/25", + "version":59958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.179.128", + "prefixLen":25, + "network":"193.251.179.128\/25", + "version":59958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.192.0", + "prefixLen":25, + "network":"193.251.192.0\/25", + "version":59957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.192.0", + "prefixLen":25, + "network":"193.251.192.0\/25", + "version":59957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.192.128", + "prefixLen":25, + "network":"193.251.192.128\/25", + "version":59956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.192.128", + "prefixLen":25, + "network":"193.251.192.128\/25", + "version":59956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.193.0", + "prefixLen":25, + "network":"193.251.193.0\/25", + "version":59955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.193.0", + "prefixLen":25, + "network":"193.251.193.0\/25", + "version":59955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.193.128", + "prefixLen":25, + "network":"193.251.193.128\/25", + "version":59954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.193.128", + "prefixLen":25, + "network":"193.251.193.128\/25", + "version":59954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.194.0", + "prefixLen":25, + "network":"193.251.194.0\/25", + "version":59953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.194.0", + "prefixLen":25, + "network":"193.251.194.0\/25", + "version":59953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.194.128", + "prefixLen":25, + "network":"193.251.194.128\/25", + "version":59952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.194.128", + "prefixLen":25, + "network":"193.251.194.128\/25", + "version":59952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.195.0", + "prefixLen":25, + "network":"193.251.195.0\/25", + "version":59951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.195.0", + "prefixLen":25, + "network":"193.251.195.0\/25", + "version":59951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.195.128", + "prefixLen":25, + "network":"193.251.195.128\/25", + "version":59950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.195.128", + "prefixLen":25, + "network":"193.251.195.128\/25", + "version":59950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.208.0", + "prefixLen":25, + "network":"193.251.208.0\/25", + "version":59949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.208.0", + "prefixLen":25, + "network":"193.251.208.0\/25", + "version":59949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.208.128", + "prefixLen":25, + "network":"193.251.208.128\/25", + "version":59948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.208.128", + "prefixLen":25, + "network":"193.251.208.128\/25", + "version":59948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.209.0", + "prefixLen":25, + "network":"193.251.209.0\/25", + "version":59947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.209.0", + "prefixLen":25, + "network":"193.251.209.0\/25", + "version":59947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.209.128", + "prefixLen":25, + "network":"193.251.209.128\/25", + "version":59946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.209.128", + "prefixLen":25, + "network":"193.251.209.128\/25", + "version":59946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.210.0", + "prefixLen":25, + "network":"193.251.210.0\/25", + "version":59945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.210.0", + "prefixLen":25, + "network":"193.251.210.0\/25", + "version":59945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.210.128", + "prefixLen":25, + "network":"193.251.210.128\/25", + "version":59944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.210.128", + "prefixLen":25, + "network":"193.251.210.128\/25", + "version":59944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.211.0", + "prefixLen":25, + "network":"193.251.211.0\/25", + "version":59943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.211.0", + "prefixLen":25, + "network":"193.251.211.0\/25", + "version":59943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.211.128", + "prefixLen":25, + "network":"193.251.211.128\/25", + "version":59942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.211.128", + "prefixLen":25, + "network":"193.251.211.128\/25", + "version":59942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.224.0", + "prefixLen":25, + "network":"193.251.224.0\/25", + "version":59941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.224.0", + "prefixLen":25, + "network":"193.251.224.0\/25", + "version":59941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.224.128", + "prefixLen":25, + "network":"193.251.224.128\/25", + "version":59940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.224.128", + "prefixLen":25, + "network":"193.251.224.128\/25", + "version":59940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.225.0", + "prefixLen":25, + "network":"193.251.225.0\/25", + "version":59939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.225.0", + "prefixLen":25, + "network":"193.251.225.0\/25", + "version":59939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.225.128", + "prefixLen":25, + "network":"193.251.225.128\/25", + "version":59938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.225.128", + "prefixLen":25, + "network":"193.251.225.128\/25", + "version":59938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.226.0", + "prefixLen":25, + "network":"193.251.226.0\/25", + "version":59937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.226.0", + "prefixLen":25, + "network":"193.251.226.0\/25", + "version":59937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.226.128", + "prefixLen":25, + "network":"193.251.226.128\/25", + "version":59936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.226.128", + "prefixLen":25, + "network":"193.251.226.128\/25", + "version":59936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.227.0", + "prefixLen":25, + "network":"193.251.227.0\/25", + "version":59935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.227.0", + "prefixLen":25, + "network":"193.251.227.0\/25", + "version":59935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.227.128", + "prefixLen":25, + "network":"193.251.227.128\/25", + "version":59934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.227.128", + "prefixLen":25, + "network":"193.251.227.128\/25", + "version":59934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.240.0", + "prefixLen":25, + "network":"193.251.240.0\/25", + "version":59933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.240.0", + "prefixLen":25, + "network":"193.251.240.0\/25", + "version":59933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.240.128", + "prefixLen":25, + "network":"193.251.240.128\/25", + "version":59932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.240.128", + "prefixLen":25, + "network":"193.251.240.128\/25", + "version":59932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.241.0", + "prefixLen":25, + "network":"193.251.241.0\/25", + "version":59931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.241.0", + "prefixLen":25, + "network":"193.251.241.0\/25", + "version":59931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.241.128", + "prefixLen":25, + "network":"193.251.241.128\/25", + "version":59930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.241.128", + "prefixLen":25, + "network":"193.251.241.128\/25", + "version":59930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.242.0", + "prefixLen":25, + "network":"193.251.242.0\/25", + "version":59929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.242.0", + "prefixLen":25, + "network":"193.251.242.0\/25", + "version":59929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.242.128", + "prefixLen":25, + "network":"193.251.242.128\/25", + "version":59928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.242.128", + "prefixLen":25, + "network":"193.251.242.128\/25", + "version":59928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.243.0", + "prefixLen":25, + "network":"193.251.243.0\/25", + "version":59927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.243.0", + "prefixLen":25, + "network":"193.251.243.0\/25", + "version":59927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.251.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.251.243.128", + "prefixLen":25, + "network":"193.251.243.128\/25", + "version":59926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.251.243.128", + "prefixLen":25, + "network":"193.251.243.128\/25", + "version":59926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64939 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.0.0", + "prefixLen":25, + "network":"193.252.0.0\/25", + "version":60053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.0.0", + "prefixLen":25, + "network":"193.252.0.0\/25", + "version":60053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.0.128", + "prefixLen":25, + "network":"193.252.0.128\/25", + "version":60180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.0.128", + "prefixLen":25, + "network":"193.252.0.128\/25", + "version":60180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.1.0", + "prefixLen":25, + "network":"193.252.1.0\/25", + "version":60179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.1.0", + "prefixLen":25, + "network":"193.252.1.0\/25", + "version":60179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.1.128", + "prefixLen":25, + "network":"193.252.1.128\/25", + "version":60178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.1.128", + "prefixLen":25, + "network":"193.252.1.128\/25", + "version":60178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.2.0", + "prefixLen":25, + "network":"193.252.2.0\/25", + "version":60177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.2.0", + "prefixLen":25, + "network":"193.252.2.0\/25", + "version":60177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.2.128", + "prefixLen":25, + "network":"193.252.2.128\/25", + "version":60176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.2.128", + "prefixLen":25, + "network":"193.252.2.128\/25", + "version":60176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.3.0", + "prefixLen":25, + "network":"193.252.3.0\/25", + "version":60175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.3.0", + "prefixLen":25, + "network":"193.252.3.0\/25", + "version":60175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.3.128", + "prefixLen":25, + "network":"193.252.3.128\/25", + "version":60174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.3.128", + "prefixLen":25, + "network":"193.252.3.128\/25", + "version":60174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.16.0", + "prefixLen":25, + "network":"193.252.16.0\/25", + "version":60173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.16.0", + "prefixLen":25, + "network":"193.252.16.0\/25", + "version":60173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.16.128", + "prefixLen":25, + "network":"193.252.16.128\/25", + "version":60172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.16.128", + "prefixLen":25, + "network":"193.252.16.128\/25", + "version":60172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.17.0", + "prefixLen":25, + "network":"193.252.17.0\/25", + "version":60171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.17.0", + "prefixLen":25, + "network":"193.252.17.0\/25", + "version":60171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.17.128", + "prefixLen":25, + "network":"193.252.17.128\/25", + "version":60170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.17.128", + "prefixLen":25, + "network":"193.252.17.128\/25", + "version":60170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.18.0", + "prefixLen":25, + "network":"193.252.18.0\/25", + "version":60169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.18.0", + "prefixLen":25, + "network":"193.252.18.0\/25", + "version":60169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.18.128", + "prefixLen":25, + "network":"193.252.18.128\/25", + "version":60168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.18.128", + "prefixLen":25, + "network":"193.252.18.128\/25", + "version":60168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.19.0", + "prefixLen":25, + "network":"193.252.19.0\/25", + "version":60167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.19.0", + "prefixLen":25, + "network":"193.252.19.0\/25", + "version":60167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.19.128", + "prefixLen":25, + "network":"193.252.19.128\/25", + "version":60166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.19.128", + "prefixLen":25, + "network":"193.252.19.128\/25", + "version":60166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.32.0", + "prefixLen":25, + "network":"193.252.32.0\/25", + "version":60165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.32.0", + "prefixLen":25, + "network":"193.252.32.0\/25", + "version":60165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.32.128", + "prefixLen":25, + "network":"193.252.32.128\/25", + "version":60164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.32.128", + "prefixLen":25, + "network":"193.252.32.128\/25", + "version":60164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.33.0", + "prefixLen":25, + "network":"193.252.33.0\/25", + "version":60163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.33.0", + "prefixLen":25, + "network":"193.252.33.0\/25", + "version":60163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.33.128", + "prefixLen":25, + "network":"193.252.33.128\/25", + "version":60162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.33.128", + "prefixLen":25, + "network":"193.252.33.128\/25", + "version":60162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.34.0", + "prefixLen":25, + "network":"193.252.34.0\/25", + "version":60161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.34.0", + "prefixLen":25, + "network":"193.252.34.0\/25", + "version":60161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.34.128", + "prefixLen":25, + "network":"193.252.34.128\/25", + "version":60160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.34.128", + "prefixLen":25, + "network":"193.252.34.128\/25", + "version":60160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.35.0", + "prefixLen":25, + "network":"193.252.35.0\/25", + "version":60159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.35.0", + "prefixLen":25, + "network":"193.252.35.0\/25", + "version":60159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.35.128", + "prefixLen":25, + "network":"193.252.35.128\/25", + "version":60158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.35.128", + "prefixLen":25, + "network":"193.252.35.128\/25", + "version":60158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.48.0", + "prefixLen":25, + "network":"193.252.48.0\/25", + "version":60157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.48.0", + "prefixLen":25, + "network":"193.252.48.0\/25", + "version":60157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.48.128", + "prefixLen":25, + "network":"193.252.48.128\/25", + "version":60156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.48.128", + "prefixLen":25, + "network":"193.252.48.128\/25", + "version":60156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.49.0", + "prefixLen":25, + "network":"193.252.49.0\/25", + "version":60155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.49.0", + "prefixLen":25, + "network":"193.252.49.0\/25", + "version":60155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.49.128", + "prefixLen":25, + "network":"193.252.49.128\/25", + "version":60154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.49.128", + "prefixLen":25, + "network":"193.252.49.128\/25", + "version":60154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.50.0", + "prefixLen":25, + "network":"193.252.50.0\/25", + "version":60153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.50.0", + "prefixLen":25, + "network":"193.252.50.0\/25", + "version":60153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.50.128", + "prefixLen":25, + "network":"193.252.50.128\/25", + "version":60152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.50.128", + "prefixLen":25, + "network":"193.252.50.128\/25", + "version":60152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.51.0", + "prefixLen":25, + "network":"193.252.51.0\/25", + "version":60151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.51.0", + "prefixLen":25, + "network":"193.252.51.0\/25", + "version":60151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.51.128", + "prefixLen":25, + "network":"193.252.51.128\/25", + "version":60150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.51.128", + "prefixLen":25, + "network":"193.252.51.128\/25", + "version":60150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.64.0", + "prefixLen":25, + "network":"193.252.64.0\/25", + "version":60149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.64.0", + "prefixLen":25, + "network":"193.252.64.0\/25", + "version":60149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.64.128", + "prefixLen":25, + "network":"193.252.64.128\/25", + "version":60148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.64.128", + "prefixLen":25, + "network":"193.252.64.128\/25", + "version":60148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.65.0", + "prefixLen":25, + "network":"193.252.65.0\/25", + "version":60147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.65.0", + "prefixLen":25, + "network":"193.252.65.0\/25", + "version":60147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.65.128", + "prefixLen":25, + "network":"193.252.65.128\/25", + "version":60146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.65.128", + "prefixLen":25, + "network":"193.252.65.128\/25", + "version":60146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.66.0", + "prefixLen":25, + "network":"193.252.66.0\/25", + "version":60145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.66.0", + "prefixLen":25, + "network":"193.252.66.0\/25", + "version":60145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.66.128", + "prefixLen":25, + "network":"193.252.66.128\/25", + "version":60144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.66.128", + "prefixLen":25, + "network":"193.252.66.128\/25", + "version":60144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.67.0", + "prefixLen":25, + "network":"193.252.67.0\/25", + "version":60143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.67.0", + "prefixLen":25, + "network":"193.252.67.0\/25", + "version":60143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.67.128", + "prefixLen":25, + "network":"193.252.67.128\/25", + "version":60142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.67.128", + "prefixLen":25, + "network":"193.252.67.128\/25", + "version":60142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.80.0", + "prefixLen":25, + "network":"193.252.80.0\/25", + "version":60141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.80.0", + "prefixLen":25, + "network":"193.252.80.0\/25", + "version":60141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.80.128", + "prefixLen":25, + "network":"193.252.80.128\/25", + "version":60140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.80.128", + "prefixLen":25, + "network":"193.252.80.128\/25", + "version":60140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.81.0", + "prefixLen":25, + "network":"193.252.81.0\/25", + "version":60139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.81.0", + "prefixLen":25, + "network":"193.252.81.0\/25", + "version":60139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.81.128", + "prefixLen":25, + "network":"193.252.81.128\/25", + "version":60138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.81.128", + "prefixLen":25, + "network":"193.252.81.128\/25", + "version":60138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.82.0", + "prefixLen":25, + "network":"193.252.82.0\/25", + "version":60137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.82.0", + "prefixLen":25, + "network":"193.252.82.0\/25", + "version":60137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.82.128", + "prefixLen":25, + "network":"193.252.82.128\/25", + "version":60136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.82.128", + "prefixLen":25, + "network":"193.252.82.128\/25", + "version":60136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.83.0", + "prefixLen":25, + "network":"193.252.83.0\/25", + "version":60135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.83.0", + "prefixLen":25, + "network":"193.252.83.0\/25", + "version":60135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.83.128", + "prefixLen":25, + "network":"193.252.83.128\/25", + "version":60134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.83.128", + "prefixLen":25, + "network":"193.252.83.128\/25", + "version":60134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.96.0", + "prefixLen":25, + "network":"193.252.96.0\/25", + "version":60133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.96.0", + "prefixLen":25, + "network":"193.252.96.0\/25", + "version":60133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.96.128", + "prefixLen":25, + "network":"193.252.96.128\/25", + "version":60132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.96.128", + "prefixLen":25, + "network":"193.252.96.128\/25", + "version":60132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.97.0", + "prefixLen":25, + "network":"193.252.97.0\/25", + "version":60131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.97.0", + "prefixLen":25, + "network":"193.252.97.0\/25", + "version":60131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.97.128", + "prefixLen":25, + "network":"193.252.97.128\/25", + "version":60130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.97.128", + "prefixLen":25, + "network":"193.252.97.128\/25", + "version":60130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.98.0", + "prefixLen":25, + "network":"193.252.98.0\/25", + "version":60129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.98.0", + "prefixLen":25, + "network":"193.252.98.0\/25", + "version":60129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.98.128", + "prefixLen":25, + "network":"193.252.98.128\/25", + "version":60128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.98.128", + "prefixLen":25, + "network":"193.252.98.128\/25", + "version":60128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.99.0", + "prefixLen":25, + "network":"193.252.99.0\/25", + "version":60127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.99.0", + "prefixLen":25, + "network":"193.252.99.0\/25", + "version":60127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.99.128", + "prefixLen":25, + "network":"193.252.99.128\/25", + "version":60126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.99.128", + "prefixLen":25, + "network":"193.252.99.128\/25", + "version":60126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.112.0", + "prefixLen":25, + "network":"193.252.112.0\/25", + "version":60125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.112.0", + "prefixLen":25, + "network":"193.252.112.0\/25", + "version":60125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.112.128", + "prefixLen":25, + "network":"193.252.112.128\/25", + "version":60124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.112.128", + "prefixLen":25, + "network":"193.252.112.128\/25", + "version":60124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.113.0", + "prefixLen":25, + "network":"193.252.113.0\/25", + "version":60123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.113.0", + "prefixLen":25, + "network":"193.252.113.0\/25", + "version":60123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.113.128", + "prefixLen":25, + "network":"193.252.113.128\/25", + "version":60122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.113.128", + "prefixLen":25, + "network":"193.252.113.128\/25", + "version":60122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.114.0", + "prefixLen":25, + "network":"193.252.114.0\/25", + "version":60121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.114.0", + "prefixLen":25, + "network":"193.252.114.0\/25", + "version":60121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.114.128", + "prefixLen":25, + "network":"193.252.114.128\/25", + "version":60120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.114.128", + "prefixLen":25, + "network":"193.252.114.128\/25", + "version":60120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.115.0", + "prefixLen":25, + "network":"193.252.115.0\/25", + "version":60119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.115.0", + "prefixLen":25, + "network":"193.252.115.0\/25", + "version":60119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.115.128", + "prefixLen":25, + "network":"193.252.115.128\/25", + "version":60118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.115.128", + "prefixLen":25, + "network":"193.252.115.128\/25", + "version":60118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.128.0", + "prefixLen":25, + "network":"193.252.128.0\/25", + "version":60117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.128.0", + "prefixLen":25, + "network":"193.252.128.0\/25", + "version":60117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.128.128", + "prefixLen":25, + "network":"193.252.128.128\/25", + "version":60116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.128.128", + "prefixLen":25, + "network":"193.252.128.128\/25", + "version":60116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.129.0", + "prefixLen":25, + "network":"193.252.129.0\/25", + "version":60115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.129.0", + "prefixLen":25, + "network":"193.252.129.0\/25", + "version":60115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.129.128", + "prefixLen":25, + "network":"193.252.129.128\/25", + "version":60114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.129.128", + "prefixLen":25, + "network":"193.252.129.128\/25", + "version":60114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.130.0", + "prefixLen":25, + "network":"193.252.130.0\/25", + "version":60113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.130.0", + "prefixLen":25, + "network":"193.252.130.0\/25", + "version":60113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.130.128", + "prefixLen":25, + "network":"193.252.130.128\/25", + "version":60112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.130.128", + "prefixLen":25, + "network":"193.252.130.128\/25", + "version":60112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.131.0", + "prefixLen":25, + "network":"193.252.131.0\/25", + "version":60111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.131.0", + "prefixLen":25, + "network":"193.252.131.0\/25", + "version":60111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.131.128", + "prefixLen":25, + "network":"193.252.131.128\/25", + "version":60110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.131.128", + "prefixLen":25, + "network":"193.252.131.128\/25", + "version":60110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.144.0", + "prefixLen":25, + "network":"193.252.144.0\/25", + "version":60109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.144.0", + "prefixLen":25, + "network":"193.252.144.0\/25", + "version":60109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.144.128", + "prefixLen":25, + "network":"193.252.144.128\/25", + "version":60108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.144.128", + "prefixLen":25, + "network":"193.252.144.128\/25", + "version":60108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.145.0", + "prefixLen":25, + "network":"193.252.145.0\/25", + "version":60107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.145.0", + "prefixLen":25, + "network":"193.252.145.0\/25", + "version":60107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.145.128", + "prefixLen":25, + "network":"193.252.145.128\/25", + "version":60106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.145.128", + "prefixLen":25, + "network":"193.252.145.128\/25", + "version":60106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.146.0", + "prefixLen":25, + "network":"193.252.146.0\/25", + "version":60105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.146.0", + "prefixLen":25, + "network":"193.252.146.0\/25", + "version":60105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.146.128", + "prefixLen":25, + "network":"193.252.146.128\/25", + "version":60104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.146.128", + "prefixLen":25, + "network":"193.252.146.128\/25", + "version":60104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.147.0", + "prefixLen":25, + "network":"193.252.147.0\/25", + "version":60103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.147.0", + "prefixLen":25, + "network":"193.252.147.0\/25", + "version":60103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.147.128", + "prefixLen":25, + "network":"193.252.147.128\/25", + "version":60102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.147.128", + "prefixLen":25, + "network":"193.252.147.128\/25", + "version":60102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.160.0", + "prefixLen":25, + "network":"193.252.160.0\/25", + "version":60101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.160.0", + "prefixLen":25, + "network":"193.252.160.0\/25", + "version":60101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.160.128", + "prefixLen":25, + "network":"193.252.160.128\/25", + "version":60100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.160.128", + "prefixLen":25, + "network":"193.252.160.128\/25", + "version":60100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.161.0", + "prefixLen":25, + "network":"193.252.161.0\/25", + "version":60099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.161.0", + "prefixLen":25, + "network":"193.252.161.0\/25", + "version":60099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.161.128", + "prefixLen":25, + "network":"193.252.161.128\/25", + "version":60098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.161.128", + "prefixLen":25, + "network":"193.252.161.128\/25", + "version":60098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.162.0", + "prefixLen":25, + "network":"193.252.162.0\/25", + "version":60097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.162.0", + "prefixLen":25, + "network":"193.252.162.0\/25", + "version":60097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.162.128", + "prefixLen":25, + "network":"193.252.162.128\/25", + "version":60096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.162.128", + "prefixLen":25, + "network":"193.252.162.128\/25", + "version":60096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.163.0", + "prefixLen":25, + "network":"193.252.163.0\/25", + "version":60095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.163.0", + "prefixLen":25, + "network":"193.252.163.0\/25", + "version":60095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.163.128", + "prefixLen":25, + "network":"193.252.163.128\/25", + "version":60094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.163.128", + "prefixLen":25, + "network":"193.252.163.128\/25", + "version":60094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.176.0", + "prefixLen":25, + "network":"193.252.176.0\/25", + "version":60093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.176.0", + "prefixLen":25, + "network":"193.252.176.0\/25", + "version":60093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.176.128", + "prefixLen":25, + "network":"193.252.176.128\/25", + "version":60092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.176.128", + "prefixLen":25, + "network":"193.252.176.128\/25", + "version":60092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.177.0", + "prefixLen":25, + "network":"193.252.177.0\/25", + "version":60091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.177.0", + "prefixLen":25, + "network":"193.252.177.0\/25", + "version":60091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.177.128", + "prefixLen":25, + "network":"193.252.177.128\/25", + "version":60090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.177.128", + "prefixLen":25, + "network":"193.252.177.128\/25", + "version":60090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.178.0", + "prefixLen":25, + "network":"193.252.178.0\/25", + "version":60089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.178.0", + "prefixLen":25, + "network":"193.252.178.0\/25", + "version":60089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.178.128", + "prefixLen":25, + "network":"193.252.178.128\/25", + "version":60088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.178.128", + "prefixLen":25, + "network":"193.252.178.128\/25", + "version":60088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.179.0", + "prefixLen":25, + "network":"193.252.179.0\/25", + "version":60087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.179.0", + "prefixLen":25, + "network":"193.252.179.0\/25", + "version":60087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.179.128", + "prefixLen":25, + "network":"193.252.179.128\/25", + "version":60086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.179.128", + "prefixLen":25, + "network":"193.252.179.128\/25", + "version":60086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.192.0", + "prefixLen":25, + "network":"193.252.192.0\/25", + "version":60085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.192.0", + "prefixLen":25, + "network":"193.252.192.0\/25", + "version":60085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.192.128", + "prefixLen":25, + "network":"193.252.192.128\/25", + "version":60084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.192.128", + "prefixLen":25, + "network":"193.252.192.128\/25", + "version":60084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.193.0", + "prefixLen":25, + "network":"193.252.193.0\/25", + "version":60083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.193.0", + "prefixLen":25, + "network":"193.252.193.0\/25", + "version":60083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.193.128", + "prefixLen":25, + "network":"193.252.193.128\/25", + "version":60082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.193.128", + "prefixLen":25, + "network":"193.252.193.128\/25", + "version":60082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.194.0", + "prefixLen":25, + "network":"193.252.194.0\/25", + "version":60081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.194.0", + "prefixLen":25, + "network":"193.252.194.0\/25", + "version":60081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.194.128", + "prefixLen":25, + "network":"193.252.194.128\/25", + "version":60080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.194.128", + "prefixLen":25, + "network":"193.252.194.128\/25", + "version":60080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.195.0", + "prefixLen":25, + "network":"193.252.195.0\/25", + "version":60079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.195.0", + "prefixLen":25, + "network":"193.252.195.0\/25", + "version":60079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.195.128", + "prefixLen":25, + "network":"193.252.195.128\/25", + "version":60078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.195.128", + "prefixLen":25, + "network":"193.252.195.128\/25", + "version":60078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.208.0", + "prefixLen":25, + "network":"193.252.208.0\/25", + "version":60077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.208.0", + "prefixLen":25, + "network":"193.252.208.0\/25", + "version":60077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.208.128", + "prefixLen":25, + "network":"193.252.208.128\/25", + "version":60076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.208.128", + "prefixLen":25, + "network":"193.252.208.128\/25", + "version":60076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.209.0", + "prefixLen":25, + "network":"193.252.209.0\/25", + "version":60075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.209.0", + "prefixLen":25, + "network":"193.252.209.0\/25", + "version":60075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.209.128", + "prefixLen":25, + "network":"193.252.209.128\/25", + "version":60074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.209.128", + "prefixLen":25, + "network":"193.252.209.128\/25", + "version":60074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.210.0", + "prefixLen":25, + "network":"193.252.210.0\/25", + "version":60073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.210.0", + "prefixLen":25, + "network":"193.252.210.0\/25", + "version":60073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.210.128", + "prefixLen":25, + "network":"193.252.210.128\/25", + "version":60072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.210.128", + "prefixLen":25, + "network":"193.252.210.128\/25", + "version":60072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.211.0", + "prefixLen":25, + "network":"193.252.211.0\/25", + "version":60071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.211.0", + "prefixLen":25, + "network":"193.252.211.0\/25", + "version":60071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.211.128", + "prefixLen":25, + "network":"193.252.211.128\/25", + "version":60070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.211.128", + "prefixLen":25, + "network":"193.252.211.128\/25", + "version":60070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.224.0", + "prefixLen":25, + "network":"193.252.224.0\/25", + "version":60069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.224.0", + "prefixLen":25, + "network":"193.252.224.0\/25", + "version":60069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.224.128", + "prefixLen":25, + "network":"193.252.224.128\/25", + "version":60068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.224.128", + "prefixLen":25, + "network":"193.252.224.128\/25", + "version":60068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.225.0", + "prefixLen":25, + "network":"193.252.225.0\/25", + "version":60067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.225.0", + "prefixLen":25, + "network":"193.252.225.0\/25", + "version":60067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.225.128", + "prefixLen":25, + "network":"193.252.225.128\/25", + "version":60066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.225.128", + "prefixLen":25, + "network":"193.252.225.128\/25", + "version":60066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.226.0", + "prefixLen":25, + "network":"193.252.226.0\/25", + "version":60065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.226.0", + "prefixLen":25, + "network":"193.252.226.0\/25", + "version":60065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.226.128", + "prefixLen":25, + "network":"193.252.226.128\/25", + "version":60064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.226.128", + "prefixLen":25, + "network":"193.252.226.128\/25", + "version":60064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.227.0", + "prefixLen":25, + "network":"193.252.227.0\/25", + "version":60063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.227.0", + "prefixLen":25, + "network":"193.252.227.0\/25", + "version":60063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.227.128", + "prefixLen":25, + "network":"193.252.227.128\/25", + "version":60062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.227.128", + "prefixLen":25, + "network":"193.252.227.128\/25", + "version":60062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.240.0", + "prefixLen":25, + "network":"193.252.240.0\/25", + "version":60061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.240.0", + "prefixLen":25, + "network":"193.252.240.0\/25", + "version":60061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.240.128", + "prefixLen":25, + "network":"193.252.240.128\/25", + "version":60060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.240.128", + "prefixLen":25, + "network":"193.252.240.128\/25", + "version":60060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.241.0", + "prefixLen":25, + "network":"193.252.241.0\/25", + "version":60059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.241.0", + "prefixLen":25, + "network":"193.252.241.0\/25", + "version":60059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.241.128", + "prefixLen":25, + "network":"193.252.241.128\/25", + "version":60058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.241.128", + "prefixLen":25, + "network":"193.252.241.128\/25", + "version":60058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.242.0", + "prefixLen":25, + "network":"193.252.242.0\/25", + "version":60057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.242.0", + "prefixLen":25, + "network":"193.252.242.0\/25", + "version":60057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.242.128", + "prefixLen":25, + "network":"193.252.242.128\/25", + "version":60056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.242.128", + "prefixLen":25, + "network":"193.252.242.128\/25", + "version":60056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.243.0", + "prefixLen":25, + "network":"193.252.243.0\/25", + "version":60055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.243.0", + "prefixLen":25, + "network":"193.252.243.0\/25", + "version":60055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.252.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.252.243.128", + "prefixLen":25, + "network":"193.252.243.128\/25", + "version":60054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.252.243.128", + "prefixLen":25, + "network":"193.252.243.128\/25", + "version":60054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64940 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.0.0", + "prefixLen":25, + "network":"193.253.0.0\/25", + "version":60181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.0.0", + "prefixLen":25, + "network":"193.253.0.0\/25", + "version":60181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.0.128", + "prefixLen":25, + "network":"193.253.0.128\/25", + "version":60308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.0.128", + "prefixLen":25, + "network":"193.253.0.128\/25", + "version":60308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.1.0", + "prefixLen":25, + "network":"193.253.1.0\/25", + "version":60307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.1.0", + "prefixLen":25, + "network":"193.253.1.0\/25", + "version":60307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.1.128", + "prefixLen":25, + "network":"193.253.1.128\/25", + "version":60306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.1.128", + "prefixLen":25, + "network":"193.253.1.128\/25", + "version":60306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.2.0", + "prefixLen":25, + "network":"193.253.2.0\/25", + "version":60305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.2.0", + "prefixLen":25, + "network":"193.253.2.0\/25", + "version":60305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.2.128", + "prefixLen":25, + "network":"193.253.2.128\/25", + "version":60304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.2.128", + "prefixLen":25, + "network":"193.253.2.128\/25", + "version":60304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.3.0", + "prefixLen":25, + "network":"193.253.3.0\/25", + "version":60303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.3.0", + "prefixLen":25, + "network":"193.253.3.0\/25", + "version":60303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.3.128", + "prefixLen":25, + "network":"193.253.3.128\/25", + "version":60302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.3.128", + "prefixLen":25, + "network":"193.253.3.128\/25", + "version":60302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.16.0", + "prefixLen":25, + "network":"193.253.16.0\/25", + "version":60301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.16.0", + "prefixLen":25, + "network":"193.253.16.0\/25", + "version":60301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.16.128", + "prefixLen":25, + "network":"193.253.16.128\/25", + "version":60300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.16.128", + "prefixLen":25, + "network":"193.253.16.128\/25", + "version":60300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.17.0", + "prefixLen":25, + "network":"193.253.17.0\/25", + "version":60299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.17.0", + "prefixLen":25, + "network":"193.253.17.0\/25", + "version":60299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.17.128", + "prefixLen":25, + "network":"193.253.17.128\/25", + "version":60298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.17.128", + "prefixLen":25, + "network":"193.253.17.128\/25", + "version":60298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.18.0", + "prefixLen":25, + "network":"193.253.18.0\/25", + "version":60297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.18.0", + "prefixLen":25, + "network":"193.253.18.0\/25", + "version":60297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.18.128", + "prefixLen":25, + "network":"193.253.18.128\/25", + "version":60296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.18.128", + "prefixLen":25, + "network":"193.253.18.128\/25", + "version":60296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.19.0", + "prefixLen":25, + "network":"193.253.19.0\/25", + "version":60295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.19.0", + "prefixLen":25, + "network":"193.253.19.0\/25", + "version":60295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.19.128", + "prefixLen":25, + "network":"193.253.19.128\/25", + "version":60294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.19.128", + "prefixLen":25, + "network":"193.253.19.128\/25", + "version":60294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.32.0", + "prefixLen":25, + "network":"193.253.32.0\/25", + "version":60293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.32.0", + "prefixLen":25, + "network":"193.253.32.0\/25", + "version":60293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.32.128", + "prefixLen":25, + "network":"193.253.32.128\/25", + "version":60292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.32.128", + "prefixLen":25, + "network":"193.253.32.128\/25", + "version":60292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.33.0", + "prefixLen":25, + "network":"193.253.33.0\/25", + "version":60291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.33.0", + "prefixLen":25, + "network":"193.253.33.0\/25", + "version":60291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.33.128", + "prefixLen":25, + "network":"193.253.33.128\/25", + "version":60290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.33.128", + "prefixLen":25, + "network":"193.253.33.128\/25", + "version":60290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.34.0", + "prefixLen":25, + "network":"193.253.34.0\/25", + "version":60289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.34.0", + "prefixLen":25, + "network":"193.253.34.0\/25", + "version":60289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.34.128", + "prefixLen":25, + "network":"193.253.34.128\/25", + "version":60288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.34.128", + "prefixLen":25, + "network":"193.253.34.128\/25", + "version":60288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.35.0", + "prefixLen":25, + "network":"193.253.35.0\/25", + "version":60287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.35.0", + "prefixLen":25, + "network":"193.253.35.0\/25", + "version":60287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.35.128", + "prefixLen":25, + "network":"193.253.35.128\/25", + "version":60286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.35.128", + "prefixLen":25, + "network":"193.253.35.128\/25", + "version":60286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.48.0", + "prefixLen":25, + "network":"193.253.48.0\/25", + "version":60285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.48.0", + "prefixLen":25, + "network":"193.253.48.0\/25", + "version":60285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.48.128", + "prefixLen":25, + "network":"193.253.48.128\/25", + "version":60284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.48.128", + "prefixLen":25, + "network":"193.253.48.128\/25", + "version":60284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.49.0", + "prefixLen":25, + "network":"193.253.49.0\/25", + "version":60283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.49.0", + "prefixLen":25, + "network":"193.253.49.0\/25", + "version":60283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.49.128", + "prefixLen":25, + "network":"193.253.49.128\/25", + "version":60282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.49.128", + "prefixLen":25, + "network":"193.253.49.128\/25", + "version":60282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.50.0", + "prefixLen":25, + "network":"193.253.50.0\/25", + "version":60281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.50.0", + "prefixLen":25, + "network":"193.253.50.0\/25", + "version":60281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.50.128", + "prefixLen":25, + "network":"193.253.50.128\/25", + "version":60280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.50.128", + "prefixLen":25, + "network":"193.253.50.128\/25", + "version":60280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.51.0", + "prefixLen":25, + "network":"193.253.51.0\/25", + "version":60279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.51.0", + "prefixLen":25, + "network":"193.253.51.0\/25", + "version":60279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.51.128", + "prefixLen":25, + "network":"193.253.51.128\/25", + "version":60278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.51.128", + "prefixLen":25, + "network":"193.253.51.128\/25", + "version":60278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.64.0", + "prefixLen":25, + "network":"193.253.64.0\/25", + "version":60277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.64.0", + "prefixLen":25, + "network":"193.253.64.0\/25", + "version":60277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.64.128", + "prefixLen":25, + "network":"193.253.64.128\/25", + "version":60276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.64.128", + "prefixLen":25, + "network":"193.253.64.128\/25", + "version":60276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.65.0", + "prefixLen":25, + "network":"193.253.65.0\/25", + "version":60275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.65.0", + "prefixLen":25, + "network":"193.253.65.0\/25", + "version":60275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.65.128", + "prefixLen":25, + "network":"193.253.65.128\/25", + "version":60274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.65.128", + "prefixLen":25, + "network":"193.253.65.128\/25", + "version":60274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.66.0", + "prefixLen":25, + "network":"193.253.66.0\/25", + "version":60273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.66.0", + "prefixLen":25, + "network":"193.253.66.0\/25", + "version":60273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.66.128", + "prefixLen":25, + "network":"193.253.66.128\/25", + "version":60272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.66.128", + "prefixLen":25, + "network":"193.253.66.128\/25", + "version":60272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.67.0", + "prefixLen":25, + "network":"193.253.67.0\/25", + "version":60271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.67.0", + "prefixLen":25, + "network":"193.253.67.0\/25", + "version":60271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.67.128", + "prefixLen":25, + "network":"193.253.67.128\/25", + "version":60270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.67.128", + "prefixLen":25, + "network":"193.253.67.128\/25", + "version":60270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.80.0", + "prefixLen":25, + "network":"193.253.80.0\/25", + "version":60269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.80.0", + "prefixLen":25, + "network":"193.253.80.0\/25", + "version":60269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.80.128", + "prefixLen":25, + "network":"193.253.80.128\/25", + "version":60268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.80.128", + "prefixLen":25, + "network":"193.253.80.128\/25", + "version":60268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.81.0", + "prefixLen":25, + "network":"193.253.81.0\/25", + "version":60267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.81.0", + "prefixLen":25, + "network":"193.253.81.0\/25", + "version":60267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.81.128", + "prefixLen":25, + "network":"193.253.81.128\/25", + "version":60266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.81.128", + "prefixLen":25, + "network":"193.253.81.128\/25", + "version":60266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.82.0", + "prefixLen":25, + "network":"193.253.82.0\/25", + "version":60265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.82.0", + "prefixLen":25, + "network":"193.253.82.0\/25", + "version":60265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.82.128", + "prefixLen":25, + "network":"193.253.82.128\/25", + "version":60264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.82.128", + "prefixLen":25, + "network":"193.253.82.128\/25", + "version":60264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.83.0", + "prefixLen":25, + "network":"193.253.83.0\/25", + "version":60263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.83.0", + "prefixLen":25, + "network":"193.253.83.0\/25", + "version":60263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.83.128", + "prefixLen":25, + "network":"193.253.83.128\/25", + "version":60262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.83.128", + "prefixLen":25, + "network":"193.253.83.128\/25", + "version":60262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.96.0", + "prefixLen":25, + "network":"193.253.96.0\/25", + "version":60261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.96.0", + "prefixLen":25, + "network":"193.253.96.0\/25", + "version":60261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.96.128", + "prefixLen":25, + "network":"193.253.96.128\/25", + "version":60260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.96.128", + "prefixLen":25, + "network":"193.253.96.128\/25", + "version":60260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.97.0", + "prefixLen":25, + "network":"193.253.97.0\/25", + "version":60259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.97.0", + "prefixLen":25, + "network":"193.253.97.0\/25", + "version":60259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.97.128", + "prefixLen":25, + "network":"193.253.97.128\/25", + "version":60258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.97.128", + "prefixLen":25, + "network":"193.253.97.128\/25", + "version":60258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.98.0", + "prefixLen":25, + "network":"193.253.98.0\/25", + "version":60257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.98.0", + "prefixLen":25, + "network":"193.253.98.0\/25", + "version":60257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.98.128", + "prefixLen":25, + "network":"193.253.98.128\/25", + "version":60256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.98.128", + "prefixLen":25, + "network":"193.253.98.128\/25", + "version":60256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.99.0", + "prefixLen":25, + "network":"193.253.99.0\/25", + "version":60255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.99.0", + "prefixLen":25, + "network":"193.253.99.0\/25", + "version":60255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.99.128", + "prefixLen":25, + "network":"193.253.99.128\/25", + "version":60254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.99.128", + "prefixLen":25, + "network":"193.253.99.128\/25", + "version":60254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.112.0", + "prefixLen":25, + "network":"193.253.112.0\/25", + "version":60253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.112.0", + "prefixLen":25, + "network":"193.253.112.0\/25", + "version":60253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.112.128", + "prefixLen":25, + "network":"193.253.112.128\/25", + "version":60252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.112.128", + "prefixLen":25, + "network":"193.253.112.128\/25", + "version":60252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.113.0", + "prefixLen":25, + "network":"193.253.113.0\/25", + "version":60251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.113.0", + "prefixLen":25, + "network":"193.253.113.0\/25", + "version":60251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.113.128", + "prefixLen":25, + "network":"193.253.113.128\/25", + "version":60250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.113.128", + "prefixLen":25, + "network":"193.253.113.128\/25", + "version":60250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.114.0", + "prefixLen":25, + "network":"193.253.114.0\/25", + "version":60249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.114.0", + "prefixLen":25, + "network":"193.253.114.0\/25", + "version":60249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.114.128", + "prefixLen":25, + "network":"193.253.114.128\/25", + "version":60248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.114.128", + "prefixLen":25, + "network":"193.253.114.128\/25", + "version":60248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.115.0", + "prefixLen":25, + "network":"193.253.115.0\/25", + "version":60247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.115.0", + "prefixLen":25, + "network":"193.253.115.0\/25", + "version":60247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.115.128", + "prefixLen":25, + "network":"193.253.115.128\/25", + "version":60246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.115.128", + "prefixLen":25, + "network":"193.253.115.128\/25", + "version":60246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.128.0", + "prefixLen":25, + "network":"193.253.128.0\/25", + "version":60245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.128.0", + "prefixLen":25, + "network":"193.253.128.0\/25", + "version":60245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.128.128", + "prefixLen":25, + "network":"193.253.128.128\/25", + "version":60244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.128.128", + "prefixLen":25, + "network":"193.253.128.128\/25", + "version":60244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.129.0", + "prefixLen":25, + "network":"193.253.129.0\/25", + "version":60243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.129.0", + "prefixLen":25, + "network":"193.253.129.0\/25", + "version":60243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.129.128", + "prefixLen":25, + "network":"193.253.129.128\/25", + "version":60242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.129.128", + "prefixLen":25, + "network":"193.253.129.128\/25", + "version":60242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.130.0", + "prefixLen":25, + "network":"193.253.130.0\/25", + "version":60241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.130.0", + "prefixLen":25, + "network":"193.253.130.0\/25", + "version":60241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.130.128", + "prefixLen":25, + "network":"193.253.130.128\/25", + "version":60240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.130.128", + "prefixLen":25, + "network":"193.253.130.128\/25", + "version":60240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.131.0", + "prefixLen":25, + "network":"193.253.131.0\/25", + "version":60239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.131.0", + "prefixLen":25, + "network":"193.253.131.0\/25", + "version":60239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.131.128", + "prefixLen":25, + "network":"193.253.131.128\/25", + "version":60238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.131.128", + "prefixLen":25, + "network":"193.253.131.128\/25", + "version":60238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.144.0", + "prefixLen":25, + "network":"193.253.144.0\/25", + "version":60237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.144.0", + "prefixLen":25, + "network":"193.253.144.0\/25", + "version":60237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.144.128", + "prefixLen":25, + "network":"193.253.144.128\/25", + "version":60236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.144.128", + "prefixLen":25, + "network":"193.253.144.128\/25", + "version":60236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.145.0", + "prefixLen":25, + "network":"193.253.145.0\/25", + "version":60235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.145.0", + "prefixLen":25, + "network":"193.253.145.0\/25", + "version":60235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.145.128", + "prefixLen":25, + "network":"193.253.145.128\/25", + "version":60234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.145.128", + "prefixLen":25, + "network":"193.253.145.128\/25", + "version":60234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.146.0", + "prefixLen":25, + "network":"193.253.146.0\/25", + "version":60233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.146.0", + "prefixLen":25, + "network":"193.253.146.0\/25", + "version":60233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.146.128", + "prefixLen":25, + "network":"193.253.146.128\/25", + "version":60232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.146.128", + "prefixLen":25, + "network":"193.253.146.128\/25", + "version":60232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.147.0", + "prefixLen":25, + "network":"193.253.147.0\/25", + "version":60231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.147.0", + "prefixLen":25, + "network":"193.253.147.0\/25", + "version":60231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.147.128", + "prefixLen":25, + "network":"193.253.147.128\/25", + "version":60230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.147.128", + "prefixLen":25, + "network":"193.253.147.128\/25", + "version":60230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.160.0", + "prefixLen":25, + "network":"193.253.160.0\/25", + "version":60229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.160.0", + "prefixLen":25, + "network":"193.253.160.0\/25", + "version":60229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.160.128", + "prefixLen":25, + "network":"193.253.160.128\/25", + "version":60228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.160.128", + "prefixLen":25, + "network":"193.253.160.128\/25", + "version":60228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.161.0", + "prefixLen":25, + "network":"193.253.161.0\/25", + "version":60227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.161.0", + "prefixLen":25, + "network":"193.253.161.0\/25", + "version":60227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.161.128", + "prefixLen":25, + "network":"193.253.161.128\/25", + "version":60226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.161.128", + "prefixLen":25, + "network":"193.253.161.128\/25", + "version":60226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.162.0", + "prefixLen":25, + "network":"193.253.162.0\/25", + "version":60225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.162.0", + "prefixLen":25, + "network":"193.253.162.0\/25", + "version":60225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.162.128", + "prefixLen":25, + "network":"193.253.162.128\/25", + "version":60224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.162.128", + "prefixLen":25, + "network":"193.253.162.128\/25", + "version":60224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.163.0", + "prefixLen":25, + "network":"193.253.163.0\/25", + "version":60223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.163.0", + "prefixLen":25, + "network":"193.253.163.0\/25", + "version":60223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.163.128", + "prefixLen":25, + "network":"193.253.163.128\/25", + "version":60222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.163.128", + "prefixLen":25, + "network":"193.253.163.128\/25", + "version":60222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.176.0", + "prefixLen":25, + "network":"193.253.176.0\/25", + "version":60221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.176.0", + "prefixLen":25, + "network":"193.253.176.0\/25", + "version":60221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.176.128", + "prefixLen":25, + "network":"193.253.176.128\/25", + "version":60220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.176.128", + "prefixLen":25, + "network":"193.253.176.128\/25", + "version":60220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.177.0", + "prefixLen":25, + "network":"193.253.177.0\/25", + "version":60219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.177.0", + "prefixLen":25, + "network":"193.253.177.0\/25", + "version":60219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.177.128", + "prefixLen":25, + "network":"193.253.177.128\/25", + "version":60218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.177.128", + "prefixLen":25, + "network":"193.253.177.128\/25", + "version":60218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.178.0", + "prefixLen":25, + "network":"193.253.178.0\/25", + "version":60217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.178.0", + "prefixLen":25, + "network":"193.253.178.0\/25", + "version":60217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.178.128", + "prefixLen":25, + "network":"193.253.178.128\/25", + "version":60216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.178.128", + "prefixLen":25, + "network":"193.253.178.128\/25", + "version":60216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.179.0", + "prefixLen":25, + "network":"193.253.179.0\/25", + "version":60215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.179.0", + "prefixLen":25, + "network":"193.253.179.0\/25", + "version":60215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.179.128", + "prefixLen":25, + "network":"193.253.179.128\/25", + "version":60214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.179.128", + "prefixLen":25, + "network":"193.253.179.128\/25", + "version":60214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.192.0", + "prefixLen":25, + "network":"193.253.192.0\/25", + "version":60213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.192.0", + "prefixLen":25, + "network":"193.253.192.0\/25", + "version":60213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.192.128", + "prefixLen":25, + "network":"193.253.192.128\/25", + "version":60212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.192.128", + "prefixLen":25, + "network":"193.253.192.128\/25", + "version":60212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.193.0", + "prefixLen":25, + "network":"193.253.193.0\/25", + "version":60211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.193.0", + "prefixLen":25, + "network":"193.253.193.0\/25", + "version":60211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.193.128", + "prefixLen":25, + "network":"193.253.193.128\/25", + "version":60210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.193.128", + "prefixLen":25, + "network":"193.253.193.128\/25", + "version":60210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.194.0", + "prefixLen":25, + "network":"193.253.194.0\/25", + "version":60209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.194.0", + "prefixLen":25, + "network":"193.253.194.0\/25", + "version":60209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.194.128", + "prefixLen":25, + "network":"193.253.194.128\/25", + "version":60208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.194.128", + "prefixLen":25, + "network":"193.253.194.128\/25", + "version":60208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.195.0", + "prefixLen":25, + "network":"193.253.195.0\/25", + "version":60207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.195.0", + "prefixLen":25, + "network":"193.253.195.0\/25", + "version":60207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.195.128", + "prefixLen":25, + "network":"193.253.195.128\/25", + "version":60206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.195.128", + "prefixLen":25, + "network":"193.253.195.128\/25", + "version":60206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.208.0", + "prefixLen":25, + "network":"193.253.208.0\/25", + "version":60205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.208.0", + "prefixLen":25, + "network":"193.253.208.0\/25", + "version":60205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.208.128", + "prefixLen":25, + "network":"193.253.208.128\/25", + "version":60204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.208.128", + "prefixLen":25, + "network":"193.253.208.128\/25", + "version":60204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.209.0", + "prefixLen":25, + "network":"193.253.209.0\/25", + "version":60203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.209.0", + "prefixLen":25, + "network":"193.253.209.0\/25", + "version":60203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.209.128", + "prefixLen":25, + "network":"193.253.209.128\/25", + "version":60202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.209.128", + "prefixLen":25, + "network":"193.253.209.128\/25", + "version":60202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.210.0", + "prefixLen":25, + "network":"193.253.210.0\/25", + "version":60201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.210.0", + "prefixLen":25, + "network":"193.253.210.0\/25", + "version":60201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.210.128", + "prefixLen":25, + "network":"193.253.210.128\/25", + "version":60200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.210.128", + "prefixLen":25, + "network":"193.253.210.128\/25", + "version":60200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.211.0", + "prefixLen":25, + "network":"193.253.211.0\/25", + "version":60199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.211.0", + "prefixLen":25, + "network":"193.253.211.0\/25", + "version":60199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.211.128", + "prefixLen":25, + "network":"193.253.211.128\/25", + "version":60198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.211.128", + "prefixLen":25, + "network":"193.253.211.128\/25", + "version":60198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.224.0", + "prefixLen":25, + "network":"193.253.224.0\/25", + "version":60197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.224.0", + "prefixLen":25, + "network":"193.253.224.0\/25", + "version":60197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.224.128", + "prefixLen":25, + "network":"193.253.224.128\/25", + "version":60196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.224.128", + "prefixLen":25, + "network":"193.253.224.128\/25", + "version":60196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.225.0", + "prefixLen":25, + "network":"193.253.225.0\/25", + "version":60195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.225.0", + "prefixLen":25, + "network":"193.253.225.0\/25", + "version":60195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.225.128", + "prefixLen":25, + "network":"193.253.225.128\/25", + "version":60194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.225.128", + "prefixLen":25, + "network":"193.253.225.128\/25", + "version":60194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.226.0", + "prefixLen":25, + "network":"193.253.226.0\/25", + "version":60193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.226.0", + "prefixLen":25, + "network":"193.253.226.0\/25", + "version":60193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.226.128", + "prefixLen":25, + "network":"193.253.226.128\/25", + "version":60192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.226.128", + "prefixLen":25, + "network":"193.253.226.128\/25", + "version":60192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.227.0", + "prefixLen":25, + "network":"193.253.227.0\/25", + "version":60191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.227.0", + "prefixLen":25, + "network":"193.253.227.0\/25", + "version":60191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.227.128", + "prefixLen":25, + "network":"193.253.227.128\/25", + "version":60190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.227.128", + "prefixLen":25, + "network":"193.253.227.128\/25", + "version":60190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.240.0", + "prefixLen":25, + "network":"193.253.240.0\/25", + "version":60189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.240.0", + "prefixLen":25, + "network":"193.253.240.0\/25", + "version":60189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.240.128", + "prefixLen":25, + "network":"193.253.240.128\/25", + "version":60188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.240.128", + "prefixLen":25, + "network":"193.253.240.128\/25", + "version":60188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.241.0", + "prefixLen":25, + "network":"193.253.241.0\/25", + "version":60187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.241.0", + "prefixLen":25, + "network":"193.253.241.0\/25", + "version":60187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.241.128", + "prefixLen":25, + "network":"193.253.241.128\/25", + "version":60186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.241.128", + "prefixLen":25, + "network":"193.253.241.128\/25", + "version":60186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.242.0", + "prefixLen":25, + "network":"193.253.242.0\/25", + "version":60185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.242.0", + "prefixLen":25, + "network":"193.253.242.0\/25", + "version":60185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.242.128", + "prefixLen":25, + "network":"193.253.242.128\/25", + "version":60184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.242.128", + "prefixLen":25, + "network":"193.253.242.128\/25", + "version":60184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.243.0", + "prefixLen":25, + "network":"193.253.243.0\/25", + "version":60183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.243.0", + "prefixLen":25, + "network":"193.253.243.0\/25", + "version":60183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.253.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.253.243.128", + "prefixLen":25, + "network":"193.253.243.128\/25", + "version":60182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.253.243.128", + "prefixLen":25, + "network":"193.253.243.128\/25", + "version":60182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64941 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.0.0", + "prefixLen":25, + "network":"193.254.0.0\/25", + "version":60309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.0.0", + "prefixLen":25, + "network":"193.254.0.0\/25", + "version":60309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.0.128", + "prefixLen":25, + "network":"193.254.0.128\/25", + "version":60436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.0.128", + "prefixLen":25, + "network":"193.254.0.128\/25", + "version":60436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.1.0", + "prefixLen":25, + "network":"193.254.1.0\/25", + "version":60435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.1.0", + "prefixLen":25, + "network":"193.254.1.0\/25", + "version":60435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.1.128", + "prefixLen":25, + "network":"193.254.1.128\/25", + "version":60434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.1.128", + "prefixLen":25, + "network":"193.254.1.128\/25", + "version":60434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.2.0", + "prefixLen":25, + "network":"193.254.2.0\/25", + "version":60433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.2.0", + "prefixLen":25, + "network":"193.254.2.0\/25", + "version":60433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.2.128", + "prefixLen":25, + "network":"193.254.2.128\/25", + "version":60432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.2.128", + "prefixLen":25, + "network":"193.254.2.128\/25", + "version":60432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.3.0", + "prefixLen":25, + "network":"193.254.3.0\/25", + "version":60431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.3.0", + "prefixLen":25, + "network":"193.254.3.0\/25", + "version":60431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.3.128", + "prefixLen":25, + "network":"193.254.3.128\/25", + "version":60430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.3.128", + "prefixLen":25, + "network":"193.254.3.128\/25", + "version":60430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.16.0", + "prefixLen":25, + "network":"193.254.16.0\/25", + "version":60429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.16.0", + "prefixLen":25, + "network":"193.254.16.0\/25", + "version":60429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.16.128", + "prefixLen":25, + "network":"193.254.16.128\/25", + "version":60428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.16.128", + "prefixLen":25, + "network":"193.254.16.128\/25", + "version":60428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.17.0", + "prefixLen":25, + "network":"193.254.17.0\/25", + "version":60427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.17.0", + "prefixLen":25, + "network":"193.254.17.0\/25", + "version":60427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.17.128", + "prefixLen":25, + "network":"193.254.17.128\/25", + "version":60426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.17.128", + "prefixLen":25, + "network":"193.254.17.128\/25", + "version":60426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.18.0", + "prefixLen":25, + "network":"193.254.18.0\/25", + "version":60425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.18.0", + "prefixLen":25, + "network":"193.254.18.0\/25", + "version":60425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.18.128", + "prefixLen":25, + "network":"193.254.18.128\/25", + "version":60424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.18.128", + "prefixLen":25, + "network":"193.254.18.128\/25", + "version":60424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.19.0", + "prefixLen":25, + "network":"193.254.19.0\/25", + "version":60423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.19.0", + "prefixLen":25, + "network":"193.254.19.0\/25", + "version":60423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.19.128", + "prefixLen":25, + "network":"193.254.19.128\/25", + "version":60422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.19.128", + "prefixLen":25, + "network":"193.254.19.128\/25", + "version":60422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.32.0", + "prefixLen":25, + "network":"193.254.32.0\/25", + "version":60421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.32.0", + "prefixLen":25, + "network":"193.254.32.0\/25", + "version":60421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.32.128", + "prefixLen":25, + "network":"193.254.32.128\/25", + "version":60420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.32.128", + "prefixLen":25, + "network":"193.254.32.128\/25", + "version":60420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.33.0", + "prefixLen":25, + "network":"193.254.33.0\/25", + "version":60419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.33.0", + "prefixLen":25, + "network":"193.254.33.0\/25", + "version":60419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.33.128", + "prefixLen":25, + "network":"193.254.33.128\/25", + "version":60418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.33.128", + "prefixLen":25, + "network":"193.254.33.128\/25", + "version":60418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.34.0", + "prefixLen":25, + "network":"193.254.34.0\/25", + "version":60417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.34.0", + "prefixLen":25, + "network":"193.254.34.0\/25", + "version":60417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.34.128", + "prefixLen":25, + "network":"193.254.34.128\/25", + "version":60416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.34.128", + "prefixLen":25, + "network":"193.254.34.128\/25", + "version":60416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.35.0", + "prefixLen":25, + "network":"193.254.35.0\/25", + "version":60415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.35.0", + "prefixLen":25, + "network":"193.254.35.0\/25", + "version":60415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.35.128", + "prefixLen":25, + "network":"193.254.35.128\/25", + "version":60414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.35.128", + "prefixLen":25, + "network":"193.254.35.128\/25", + "version":60414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.48.0", + "prefixLen":25, + "network":"193.254.48.0\/25", + "version":60413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.48.0", + "prefixLen":25, + "network":"193.254.48.0\/25", + "version":60413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.48.128", + "prefixLen":25, + "network":"193.254.48.128\/25", + "version":60412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.48.128", + "prefixLen":25, + "network":"193.254.48.128\/25", + "version":60412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.49.0", + "prefixLen":25, + "network":"193.254.49.0\/25", + "version":60411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.49.0", + "prefixLen":25, + "network":"193.254.49.0\/25", + "version":60411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.49.128", + "prefixLen":25, + "network":"193.254.49.128\/25", + "version":60410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.49.128", + "prefixLen":25, + "network":"193.254.49.128\/25", + "version":60410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.50.0", + "prefixLen":25, + "network":"193.254.50.0\/25", + "version":60409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.50.0", + "prefixLen":25, + "network":"193.254.50.0\/25", + "version":60409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.50.128", + "prefixLen":25, + "network":"193.254.50.128\/25", + "version":60408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.50.128", + "prefixLen":25, + "network":"193.254.50.128\/25", + "version":60408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.51.0", + "prefixLen":25, + "network":"193.254.51.0\/25", + "version":60407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.51.0", + "prefixLen":25, + "network":"193.254.51.0\/25", + "version":60407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.51.128", + "prefixLen":25, + "network":"193.254.51.128\/25", + "version":60406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.51.128", + "prefixLen":25, + "network":"193.254.51.128\/25", + "version":60406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.64.0", + "prefixLen":25, + "network":"193.254.64.0\/25", + "version":60405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.64.0", + "prefixLen":25, + "network":"193.254.64.0\/25", + "version":60405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.64.128", + "prefixLen":25, + "network":"193.254.64.128\/25", + "version":60404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.64.128", + "prefixLen":25, + "network":"193.254.64.128\/25", + "version":60404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.65.0", + "prefixLen":25, + "network":"193.254.65.0\/25", + "version":60403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.65.0", + "prefixLen":25, + "network":"193.254.65.0\/25", + "version":60403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.65.128", + "prefixLen":25, + "network":"193.254.65.128\/25", + "version":60402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.65.128", + "prefixLen":25, + "network":"193.254.65.128\/25", + "version":60402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.66.0", + "prefixLen":25, + "network":"193.254.66.0\/25", + "version":60401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.66.0", + "prefixLen":25, + "network":"193.254.66.0\/25", + "version":60401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.66.128", + "prefixLen":25, + "network":"193.254.66.128\/25", + "version":60400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.66.128", + "prefixLen":25, + "network":"193.254.66.128\/25", + "version":60400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.67.0", + "prefixLen":25, + "network":"193.254.67.0\/25", + "version":60399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.67.0", + "prefixLen":25, + "network":"193.254.67.0\/25", + "version":60399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.67.128", + "prefixLen":25, + "network":"193.254.67.128\/25", + "version":60398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.67.128", + "prefixLen":25, + "network":"193.254.67.128\/25", + "version":60398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.80.0", + "prefixLen":25, + "network":"193.254.80.0\/25", + "version":60397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.80.0", + "prefixLen":25, + "network":"193.254.80.0\/25", + "version":60397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.80.128", + "prefixLen":25, + "network":"193.254.80.128\/25", + "version":60396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.80.128", + "prefixLen":25, + "network":"193.254.80.128\/25", + "version":60396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.81.0", + "prefixLen":25, + "network":"193.254.81.0\/25", + "version":60395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.81.0", + "prefixLen":25, + "network":"193.254.81.0\/25", + "version":60395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.81.128", + "prefixLen":25, + "network":"193.254.81.128\/25", + "version":60394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.81.128", + "prefixLen":25, + "network":"193.254.81.128\/25", + "version":60394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.82.0", + "prefixLen":25, + "network":"193.254.82.0\/25", + "version":60393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.82.0", + "prefixLen":25, + "network":"193.254.82.0\/25", + "version":60393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.82.128", + "prefixLen":25, + "network":"193.254.82.128\/25", + "version":60392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.82.128", + "prefixLen":25, + "network":"193.254.82.128\/25", + "version":60392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.83.0", + "prefixLen":25, + "network":"193.254.83.0\/25", + "version":60391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.83.0", + "prefixLen":25, + "network":"193.254.83.0\/25", + "version":60391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.83.128", + "prefixLen":25, + "network":"193.254.83.128\/25", + "version":60390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.83.128", + "prefixLen":25, + "network":"193.254.83.128\/25", + "version":60390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.96.0", + "prefixLen":25, + "network":"193.254.96.0\/25", + "version":60389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.96.0", + "prefixLen":25, + "network":"193.254.96.0\/25", + "version":60389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.96.128", + "prefixLen":25, + "network":"193.254.96.128\/25", + "version":60388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.96.128", + "prefixLen":25, + "network":"193.254.96.128\/25", + "version":60388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.97.0", + "prefixLen":25, + "network":"193.254.97.0\/25", + "version":60387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.97.0", + "prefixLen":25, + "network":"193.254.97.0\/25", + "version":60387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.97.128", + "prefixLen":25, + "network":"193.254.97.128\/25", + "version":60386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.97.128", + "prefixLen":25, + "network":"193.254.97.128\/25", + "version":60386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.98.0", + "prefixLen":25, + "network":"193.254.98.0\/25", + "version":60385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.98.0", + "prefixLen":25, + "network":"193.254.98.0\/25", + "version":60385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.98.128", + "prefixLen":25, + "network":"193.254.98.128\/25", + "version":60384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.98.128", + "prefixLen":25, + "network":"193.254.98.128\/25", + "version":60384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.99.0", + "prefixLen":25, + "network":"193.254.99.0\/25", + "version":60383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.99.0", + "prefixLen":25, + "network":"193.254.99.0\/25", + "version":60383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.99.128", + "prefixLen":25, + "network":"193.254.99.128\/25", + "version":60382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.99.128", + "prefixLen":25, + "network":"193.254.99.128\/25", + "version":60382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.112.0", + "prefixLen":25, + "network":"193.254.112.0\/25", + "version":60381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.112.0", + "prefixLen":25, + "network":"193.254.112.0\/25", + "version":60381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.112.128", + "prefixLen":25, + "network":"193.254.112.128\/25", + "version":60380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.112.128", + "prefixLen":25, + "network":"193.254.112.128\/25", + "version":60380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.113.0", + "prefixLen":25, + "network":"193.254.113.0\/25", + "version":60379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.113.0", + "prefixLen":25, + "network":"193.254.113.0\/25", + "version":60379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.113.128", + "prefixLen":25, + "network":"193.254.113.128\/25", + "version":60378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.113.128", + "prefixLen":25, + "network":"193.254.113.128\/25", + "version":60378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.114.0", + "prefixLen":25, + "network":"193.254.114.0\/25", + "version":60377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.114.0", + "prefixLen":25, + "network":"193.254.114.0\/25", + "version":60377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.114.128", + "prefixLen":25, + "network":"193.254.114.128\/25", + "version":60376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.114.128", + "prefixLen":25, + "network":"193.254.114.128\/25", + "version":60376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.115.0", + "prefixLen":25, + "network":"193.254.115.0\/25", + "version":60375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.115.0", + "prefixLen":25, + "network":"193.254.115.0\/25", + "version":60375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.115.128", + "prefixLen":25, + "network":"193.254.115.128\/25", + "version":60374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.115.128", + "prefixLen":25, + "network":"193.254.115.128\/25", + "version":60374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.128.0", + "prefixLen":25, + "network":"193.254.128.0\/25", + "version":60373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.128.0", + "prefixLen":25, + "network":"193.254.128.0\/25", + "version":60373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.128.128", + "prefixLen":25, + "network":"193.254.128.128\/25", + "version":60372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.128.128", + "prefixLen":25, + "network":"193.254.128.128\/25", + "version":60372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.129.0", + "prefixLen":25, + "network":"193.254.129.0\/25", + "version":60371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.129.0", + "prefixLen":25, + "network":"193.254.129.0\/25", + "version":60371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.129.128", + "prefixLen":25, + "network":"193.254.129.128\/25", + "version":60370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.129.128", + "prefixLen":25, + "network":"193.254.129.128\/25", + "version":60370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.130.0", + "prefixLen":25, + "network":"193.254.130.0\/25", + "version":60369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.130.0", + "prefixLen":25, + "network":"193.254.130.0\/25", + "version":60369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.130.128", + "prefixLen":25, + "network":"193.254.130.128\/25", + "version":60368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.130.128", + "prefixLen":25, + "network":"193.254.130.128\/25", + "version":60368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.131.0", + "prefixLen":25, + "network":"193.254.131.0\/25", + "version":60367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.131.0", + "prefixLen":25, + "network":"193.254.131.0\/25", + "version":60367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.131.128", + "prefixLen":25, + "network":"193.254.131.128\/25", + "version":60366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.131.128", + "prefixLen":25, + "network":"193.254.131.128\/25", + "version":60366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.144.0", + "prefixLen":25, + "network":"193.254.144.0\/25", + "version":60365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.144.0", + "prefixLen":25, + "network":"193.254.144.0\/25", + "version":60365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.144.128", + "prefixLen":25, + "network":"193.254.144.128\/25", + "version":60364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.144.128", + "prefixLen":25, + "network":"193.254.144.128\/25", + "version":60364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.145.0", + "prefixLen":25, + "network":"193.254.145.0\/25", + "version":60363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.145.0", + "prefixLen":25, + "network":"193.254.145.0\/25", + "version":60363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.145.128", + "prefixLen":25, + "network":"193.254.145.128\/25", + "version":60362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.145.128", + "prefixLen":25, + "network":"193.254.145.128\/25", + "version":60362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.146.0", + "prefixLen":25, + "network":"193.254.146.0\/25", + "version":60361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.146.0", + "prefixLen":25, + "network":"193.254.146.0\/25", + "version":60361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.146.128", + "prefixLen":25, + "network":"193.254.146.128\/25", + "version":60360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.146.128", + "prefixLen":25, + "network":"193.254.146.128\/25", + "version":60360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.147.0", + "prefixLen":25, + "network":"193.254.147.0\/25", + "version":60359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.147.0", + "prefixLen":25, + "network":"193.254.147.0\/25", + "version":60359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.147.128", + "prefixLen":25, + "network":"193.254.147.128\/25", + "version":60358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.147.128", + "prefixLen":25, + "network":"193.254.147.128\/25", + "version":60358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.160.0", + "prefixLen":25, + "network":"193.254.160.0\/25", + "version":60357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.160.0", + "prefixLen":25, + "network":"193.254.160.0\/25", + "version":60357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.160.128", + "prefixLen":25, + "network":"193.254.160.128\/25", + "version":60356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.160.128", + "prefixLen":25, + "network":"193.254.160.128\/25", + "version":60356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.161.0", + "prefixLen":25, + "network":"193.254.161.0\/25", + "version":60355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.161.0", + "prefixLen":25, + "network":"193.254.161.0\/25", + "version":60355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.161.128", + "prefixLen":25, + "network":"193.254.161.128\/25", + "version":60354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.161.128", + "prefixLen":25, + "network":"193.254.161.128\/25", + "version":60354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.162.0", + "prefixLen":25, + "network":"193.254.162.0\/25", + "version":60353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.162.0", + "prefixLen":25, + "network":"193.254.162.0\/25", + "version":60353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.162.128", + "prefixLen":25, + "network":"193.254.162.128\/25", + "version":60352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.162.128", + "prefixLen":25, + "network":"193.254.162.128\/25", + "version":60352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.163.0", + "prefixLen":25, + "network":"193.254.163.0\/25", + "version":60351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.163.0", + "prefixLen":25, + "network":"193.254.163.0\/25", + "version":60351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.163.128", + "prefixLen":25, + "network":"193.254.163.128\/25", + "version":60350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.163.128", + "prefixLen":25, + "network":"193.254.163.128\/25", + "version":60350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.176.0", + "prefixLen":25, + "network":"193.254.176.0\/25", + "version":60349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.176.0", + "prefixLen":25, + "network":"193.254.176.0\/25", + "version":60349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.176.128", + "prefixLen":25, + "network":"193.254.176.128\/25", + "version":60348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.176.128", + "prefixLen":25, + "network":"193.254.176.128\/25", + "version":60348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.177.0", + "prefixLen":25, + "network":"193.254.177.0\/25", + "version":60347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.177.0", + "prefixLen":25, + "network":"193.254.177.0\/25", + "version":60347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.177.128", + "prefixLen":25, + "network":"193.254.177.128\/25", + "version":60346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.177.128", + "prefixLen":25, + "network":"193.254.177.128\/25", + "version":60346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.178.0", + "prefixLen":25, + "network":"193.254.178.0\/25", + "version":60345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.178.0", + "prefixLen":25, + "network":"193.254.178.0\/25", + "version":60345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.178.128", + "prefixLen":25, + "network":"193.254.178.128\/25", + "version":60344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.178.128", + "prefixLen":25, + "network":"193.254.178.128\/25", + "version":60344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.179.0", + "prefixLen":25, + "network":"193.254.179.0\/25", + "version":60343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.179.0", + "prefixLen":25, + "network":"193.254.179.0\/25", + "version":60343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.179.128", + "prefixLen":25, + "network":"193.254.179.128\/25", + "version":60342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.179.128", + "prefixLen":25, + "network":"193.254.179.128\/25", + "version":60342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.192.0", + "prefixLen":25, + "network":"193.254.192.0\/25", + "version":60341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.192.0", + "prefixLen":25, + "network":"193.254.192.0\/25", + "version":60341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.192.128", + "prefixLen":25, + "network":"193.254.192.128\/25", + "version":60340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.192.128", + "prefixLen":25, + "network":"193.254.192.128\/25", + "version":60340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.193.0", + "prefixLen":25, + "network":"193.254.193.0\/25", + "version":60339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.193.0", + "prefixLen":25, + "network":"193.254.193.0\/25", + "version":60339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.193.128", + "prefixLen":25, + "network":"193.254.193.128\/25", + "version":60338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.193.128", + "prefixLen":25, + "network":"193.254.193.128\/25", + "version":60338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.194.0", + "prefixLen":25, + "network":"193.254.194.0\/25", + "version":60337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.194.0", + "prefixLen":25, + "network":"193.254.194.0\/25", + "version":60337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.194.128", + "prefixLen":25, + "network":"193.254.194.128\/25", + "version":60336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.194.128", + "prefixLen":25, + "network":"193.254.194.128\/25", + "version":60336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.195.0", + "prefixLen":25, + "network":"193.254.195.0\/25", + "version":60335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.195.0", + "prefixLen":25, + "network":"193.254.195.0\/25", + "version":60335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.195.128", + "prefixLen":25, + "network":"193.254.195.128\/25", + "version":60334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.195.128", + "prefixLen":25, + "network":"193.254.195.128\/25", + "version":60334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.208.0", + "prefixLen":25, + "network":"193.254.208.0\/25", + "version":60333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.208.0", + "prefixLen":25, + "network":"193.254.208.0\/25", + "version":60333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.208.128", + "prefixLen":25, + "network":"193.254.208.128\/25", + "version":60332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.208.128", + "prefixLen":25, + "network":"193.254.208.128\/25", + "version":60332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.209.0", + "prefixLen":25, + "network":"193.254.209.0\/25", + "version":60331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.209.0", + "prefixLen":25, + "network":"193.254.209.0\/25", + "version":60331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.209.128", + "prefixLen":25, + "network":"193.254.209.128\/25", + "version":60330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.209.128", + "prefixLen":25, + "network":"193.254.209.128\/25", + "version":60330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.210.0", + "prefixLen":25, + "network":"193.254.210.0\/25", + "version":60329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.210.0", + "prefixLen":25, + "network":"193.254.210.0\/25", + "version":60329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.210.128", + "prefixLen":25, + "network":"193.254.210.128\/25", + "version":60328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.210.128", + "prefixLen":25, + "network":"193.254.210.128\/25", + "version":60328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.211.0", + "prefixLen":25, + "network":"193.254.211.0\/25", + "version":60327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.211.0", + "prefixLen":25, + "network":"193.254.211.0\/25", + "version":60327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.211.128", + "prefixLen":25, + "network":"193.254.211.128\/25", + "version":60326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.211.128", + "prefixLen":25, + "network":"193.254.211.128\/25", + "version":60326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.224.0", + "prefixLen":25, + "network":"193.254.224.0\/25", + "version":60325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.224.0", + "prefixLen":25, + "network":"193.254.224.0\/25", + "version":60325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.224.128", + "prefixLen":25, + "network":"193.254.224.128\/25", + "version":60324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.224.128", + "prefixLen":25, + "network":"193.254.224.128\/25", + "version":60324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.225.0", + "prefixLen":25, + "network":"193.254.225.0\/25", + "version":60323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.225.0", + "prefixLen":25, + "network":"193.254.225.0\/25", + "version":60323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.225.128", + "prefixLen":25, + "network":"193.254.225.128\/25", + "version":60322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.225.128", + "prefixLen":25, + "network":"193.254.225.128\/25", + "version":60322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.226.0", + "prefixLen":25, + "network":"193.254.226.0\/25", + "version":60321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.226.0", + "prefixLen":25, + "network":"193.254.226.0\/25", + "version":60321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.226.128", + "prefixLen":25, + "network":"193.254.226.128\/25", + "version":60320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.226.128", + "prefixLen":25, + "network":"193.254.226.128\/25", + "version":60320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.227.0", + "prefixLen":25, + "network":"193.254.227.0\/25", + "version":60319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.227.0", + "prefixLen":25, + "network":"193.254.227.0\/25", + "version":60319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.227.128", + "prefixLen":25, + "network":"193.254.227.128\/25", + "version":60318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.227.128", + "prefixLen":25, + "network":"193.254.227.128\/25", + "version":60318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.240.0", + "prefixLen":25, + "network":"193.254.240.0\/25", + "version":60317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.240.0", + "prefixLen":25, + "network":"193.254.240.0\/25", + "version":60317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.240.128", + "prefixLen":25, + "network":"193.254.240.128\/25", + "version":60316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.240.128", + "prefixLen":25, + "network":"193.254.240.128\/25", + "version":60316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.241.0", + "prefixLen":25, + "network":"193.254.241.0\/25", + "version":60315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.241.0", + "prefixLen":25, + "network":"193.254.241.0\/25", + "version":60315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.241.128", + "prefixLen":25, + "network":"193.254.241.128\/25", + "version":60314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.241.128", + "prefixLen":25, + "network":"193.254.241.128\/25", + "version":60314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.242.0", + "prefixLen":25, + "network":"193.254.242.0\/25", + "version":60313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.242.0", + "prefixLen":25, + "network":"193.254.242.0\/25", + "version":60313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.242.128", + "prefixLen":25, + "network":"193.254.242.128\/25", + "version":60312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.242.128", + "prefixLen":25, + "network":"193.254.242.128\/25", + "version":60312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.243.0", + "prefixLen":25, + "network":"193.254.243.0\/25", + "version":60311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.243.0", + "prefixLen":25, + "network":"193.254.243.0\/25", + "version":60311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.254.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.254.243.128", + "prefixLen":25, + "network":"193.254.243.128\/25", + "version":60310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.254.243.128", + "prefixLen":25, + "network":"193.254.243.128\/25", + "version":60310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64942 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.0.0", + "prefixLen":25, + "network":"193.255.0.0\/25", + "version":60437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.0.0", + "prefixLen":25, + "network":"193.255.0.0\/25", + "version":60437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.0.128", + "prefixLen":25, + "network":"193.255.0.128\/25", + "version":60564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.0.128", + "prefixLen":25, + "network":"193.255.0.128\/25", + "version":60564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.1.0", + "prefixLen":25, + "network":"193.255.1.0\/25", + "version":60563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.1.0", + "prefixLen":25, + "network":"193.255.1.0\/25", + "version":60563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.1.128", + "prefixLen":25, + "network":"193.255.1.128\/25", + "version":60562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.1.128", + "prefixLen":25, + "network":"193.255.1.128\/25", + "version":60562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.2.0", + "prefixLen":25, + "network":"193.255.2.0\/25", + "version":60561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.2.0", + "prefixLen":25, + "network":"193.255.2.0\/25", + "version":60561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.2.128", + "prefixLen":25, + "network":"193.255.2.128\/25", + "version":60560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.2.128", + "prefixLen":25, + "network":"193.255.2.128\/25", + "version":60560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.3.0", + "prefixLen":25, + "network":"193.255.3.0\/25", + "version":60559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.3.0", + "prefixLen":25, + "network":"193.255.3.0\/25", + "version":60559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.3.128", + "prefixLen":25, + "network":"193.255.3.128\/25", + "version":60558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.3.128", + "prefixLen":25, + "network":"193.255.3.128\/25", + "version":60558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.16.0", + "prefixLen":25, + "network":"193.255.16.0\/25", + "version":60557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.16.0", + "prefixLen":25, + "network":"193.255.16.0\/25", + "version":60557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.16.128", + "prefixLen":25, + "network":"193.255.16.128\/25", + "version":60556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.16.128", + "prefixLen":25, + "network":"193.255.16.128\/25", + "version":60556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.17.0", + "prefixLen":25, + "network":"193.255.17.0\/25", + "version":60555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.17.0", + "prefixLen":25, + "network":"193.255.17.0\/25", + "version":60555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.17.128", + "prefixLen":25, + "network":"193.255.17.128\/25", + "version":60554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.17.128", + "prefixLen":25, + "network":"193.255.17.128\/25", + "version":60554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.18.0", + "prefixLen":25, + "network":"193.255.18.0\/25", + "version":60553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.18.0", + "prefixLen":25, + "network":"193.255.18.0\/25", + "version":60553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.18.128", + "prefixLen":25, + "network":"193.255.18.128\/25", + "version":60552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.18.128", + "prefixLen":25, + "network":"193.255.18.128\/25", + "version":60552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.19.0", + "prefixLen":25, + "network":"193.255.19.0\/25", + "version":60551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.19.0", + "prefixLen":25, + "network":"193.255.19.0\/25", + "version":60551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.19.128", + "prefixLen":25, + "network":"193.255.19.128\/25", + "version":60550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.19.128", + "prefixLen":25, + "network":"193.255.19.128\/25", + "version":60550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.32.0", + "prefixLen":25, + "network":"193.255.32.0\/25", + "version":60549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.32.0", + "prefixLen":25, + "network":"193.255.32.0\/25", + "version":60549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.32.128", + "prefixLen":25, + "network":"193.255.32.128\/25", + "version":60548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.32.128", + "prefixLen":25, + "network":"193.255.32.128\/25", + "version":60548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.33.0", + "prefixLen":25, + "network":"193.255.33.0\/25", + "version":60547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.33.0", + "prefixLen":25, + "network":"193.255.33.0\/25", + "version":60547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.33.128", + "prefixLen":25, + "network":"193.255.33.128\/25", + "version":60546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.33.128", + "prefixLen":25, + "network":"193.255.33.128\/25", + "version":60546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.34.0", + "prefixLen":25, + "network":"193.255.34.0\/25", + "version":60545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.34.0", + "prefixLen":25, + "network":"193.255.34.0\/25", + "version":60545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.34.128", + "prefixLen":25, + "network":"193.255.34.128\/25", + "version":60544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.34.128", + "prefixLen":25, + "network":"193.255.34.128\/25", + "version":60544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.35.0", + "prefixLen":25, + "network":"193.255.35.0\/25", + "version":60543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.35.0", + "prefixLen":25, + "network":"193.255.35.0\/25", + "version":60543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.35.128", + "prefixLen":25, + "network":"193.255.35.128\/25", + "version":60542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.35.128", + "prefixLen":25, + "network":"193.255.35.128\/25", + "version":60542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.48.0", + "prefixLen":25, + "network":"193.255.48.0\/25", + "version":60541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.48.0", + "prefixLen":25, + "network":"193.255.48.0\/25", + "version":60541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.48.128", + "prefixLen":25, + "network":"193.255.48.128\/25", + "version":60540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.48.128", + "prefixLen":25, + "network":"193.255.48.128\/25", + "version":60540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.49.0", + "prefixLen":25, + "network":"193.255.49.0\/25", + "version":60539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.49.0", + "prefixLen":25, + "network":"193.255.49.0\/25", + "version":60539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.49.128", + "prefixLen":25, + "network":"193.255.49.128\/25", + "version":60538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.49.128", + "prefixLen":25, + "network":"193.255.49.128\/25", + "version":60538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.50.0", + "prefixLen":25, + "network":"193.255.50.0\/25", + "version":60537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.50.0", + "prefixLen":25, + "network":"193.255.50.0\/25", + "version":60537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.50.128", + "prefixLen":25, + "network":"193.255.50.128\/25", + "version":60536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.50.128", + "prefixLen":25, + "network":"193.255.50.128\/25", + "version":60536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.51.0", + "prefixLen":25, + "network":"193.255.51.0\/25", + "version":60535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.51.0", + "prefixLen":25, + "network":"193.255.51.0\/25", + "version":60535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.51.128", + "prefixLen":25, + "network":"193.255.51.128\/25", + "version":60534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.51.128", + "prefixLen":25, + "network":"193.255.51.128\/25", + "version":60534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.64.0", + "prefixLen":25, + "network":"193.255.64.0\/25", + "version":60533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.64.0", + "prefixLen":25, + "network":"193.255.64.0\/25", + "version":60533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.64.128", + "prefixLen":25, + "network":"193.255.64.128\/25", + "version":60532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.64.128", + "prefixLen":25, + "network":"193.255.64.128\/25", + "version":60532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.65.0", + "prefixLen":25, + "network":"193.255.65.0\/25", + "version":60531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.65.0", + "prefixLen":25, + "network":"193.255.65.0\/25", + "version":60531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.65.128", + "prefixLen":25, + "network":"193.255.65.128\/25", + "version":60530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.65.128", + "prefixLen":25, + "network":"193.255.65.128\/25", + "version":60530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.66.0", + "prefixLen":25, + "network":"193.255.66.0\/25", + "version":60529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.66.0", + "prefixLen":25, + "network":"193.255.66.0\/25", + "version":60529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.66.128", + "prefixLen":25, + "network":"193.255.66.128\/25", + "version":60528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.66.128", + "prefixLen":25, + "network":"193.255.66.128\/25", + "version":60528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.67.0", + "prefixLen":25, + "network":"193.255.67.0\/25", + "version":60527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.67.0", + "prefixLen":25, + "network":"193.255.67.0\/25", + "version":60527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.67.128", + "prefixLen":25, + "network":"193.255.67.128\/25", + "version":60526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.67.128", + "prefixLen":25, + "network":"193.255.67.128\/25", + "version":60526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.80.0", + "prefixLen":25, + "network":"193.255.80.0\/25", + "version":60525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.80.0", + "prefixLen":25, + "network":"193.255.80.0\/25", + "version":60525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.80.128", + "prefixLen":25, + "network":"193.255.80.128\/25", + "version":60524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.80.128", + "prefixLen":25, + "network":"193.255.80.128\/25", + "version":60524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.81.0", + "prefixLen":25, + "network":"193.255.81.0\/25", + "version":60523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.81.0", + "prefixLen":25, + "network":"193.255.81.0\/25", + "version":60523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.81.128", + "prefixLen":25, + "network":"193.255.81.128\/25", + "version":60522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.81.128", + "prefixLen":25, + "network":"193.255.81.128\/25", + "version":60522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.82.0", + "prefixLen":25, + "network":"193.255.82.0\/25", + "version":60521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.82.0", + "prefixLen":25, + "network":"193.255.82.0\/25", + "version":60521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.82.128", + "prefixLen":25, + "network":"193.255.82.128\/25", + "version":60520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.82.128", + "prefixLen":25, + "network":"193.255.82.128\/25", + "version":60520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.83.0", + "prefixLen":25, + "network":"193.255.83.0\/25", + "version":60519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.83.0", + "prefixLen":25, + "network":"193.255.83.0\/25", + "version":60519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.83.128", + "prefixLen":25, + "network":"193.255.83.128\/25", + "version":60518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.83.128", + "prefixLen":25, + "network":"193.255.83.128\/25", + "version":60518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.96.0", + "prefixLen":25, + "network":"193.255.96.0\/25", + "version":60517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.96.0", + "prefixLen":25, + "network":"193.255.96.0\/25", + "version":60517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.96.128", + "prefixLen":25, + "network":"193.255.96.128\/25", + "version":60516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.96.128", + "prefixLen":25, + "network":"193.255.96.128\/25", + "version":60516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.97.0", + "prefixLen":25, + "network":"193.255.97.0\/25", + "version":60515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.97.0", + "prefixLen":25, + "network":"193.255.97.0\/25", + "version":60515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.97.128", + "prefixLen":25, + "network":"193.255.97.128\/25", + "version":60514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.97.128", + "prefixLen":25, + "network":"193.255.97.128\/25", + "version":60514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.98.0", + "prefixLen":25, + "network":"193.255.98.0\/25", + "version":60513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.98.0", + "prefixLen":25, + "network":"193.255.98.0\/25", + "version":60513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.98.128", + "prefixLen":25, + "network":"193.255.98.128\/25", + "version":60512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.98.128", + "prefixLen":25, + "network":"193.255.98.128\/25", + "version":60512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.99.0", + "prefixLen":25, + "network":"193.255.99.0\/25", + "version":60511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.99.0", + "prefixLen":25, + "network":"193.255.99.0\/25", + "version":60511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.99.128", + "prefixLen":25, + "network":"193.255.99.128\/25", + "version":60510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.99.128", + "prefixLen":25, + "network":"193.255.99.128\/25", + "version":60510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.112.0", + "prefixLen":25, + "network":"193.255.112.0\/25", + "version":60509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.112.0", + "prefixLen":25, + "network":"193.255.112.0\/25", + "version":60509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.112.128", + "prefixLen":25, + "network":"193.255.112.128\/25", + "version":60508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.112.128", + "prefixLen":25, + "network":"193.255.112.128\/25", + "version":60508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.113.0", + "prefixLen":25, + "network":"193.255.113.0\/25", + "version":60507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.113.0", + "prefixLen":25, + "network":"193.255.113.0\/25", + "version":60507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.113.128", + "prefixLen":25, + "network":"193.255.113.128\/25", + "version":60506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.113.128", + "prefixLen":25, + "network":"193.255.113.128\/25", + "version":60506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.114.0", + "prefixLen":25, + "network":"193.255.114.0\/25", + "version":60505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.114.0", + "prefixLen":25, + "network":"193.255.114.0\/25", + "version":60505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.114.128", + "prefixLen":25, + "network":"193.255.114.128\/25", + "version":60504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.114.128", + "prefixLen":25, + "network":"193.255.114.128\/25", + "version":60504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.115.0", + "prefixLen":25, + "network":"193.255.115.0\/25", + "version":60503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.115.0", + "prefixLen":25, + "network":"193.255.115.0\/25", + "version":60503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.115.128", + "prefixLen":25, + "network":"193.255.115.128\/25", + "version":60502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.115.128", + "prefixLen":25, + "network":"193.255.115.128\/25", + "version":60502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.128.0", + "prefixLen":25, + "network":"193.255.128.0\/25", + "version":60501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.128.0", + "prefixLen":25, + "network":"193.255.128.0\/25", + "version":60501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.128.128", + "prefixLen":25, + "network":"193.255.128.128\/25", + "version":60500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.128.128", + "prefixLen":25, + "network":"193.255.128.128\/25", + "version":60500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.129.0", + "prefixLen":25, + "network":"193.255.129.0\/25", + "version":60499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.129.0", + "prefixLen":25, + "network":"193.255.129.0\/25", + "version":60499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.129.128", + "prefixLen":25, + "network":"193.255.129.128\/25", + "version":60498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.129.128", + "prefixLen":25, + "network":"193.255.129.128\/25", + "version":60498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.130.0", + "prefixLen":25, + "network":"193.255.130.0\/25", + "version":60497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.130.0", + "prefixLen":25, + "network":"193.255.130.0\/25", + "version":60497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.130.128", + "prefixLen":25, + "network":"193.255.130.128\/25", + "version":60496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.130.128", + "prefixLen":25, + "network":"193.255.130.128\/25", + "version":60496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.131.0", + "prefixLen":25, + "network":"193.255.131.0\/25", + "version":60495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.131.0", + "prefixLen":25, + "network":"193.255.131.0\/25", + "version":60495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.131.128", + "prefixLen":25, + "network":"193.255.131.128\/25", + "version":60494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.131.128", + "prefixLen":25, + "network":"193.255.131.128\/25", + "version":60494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.144.0", + "prefixLen":25, + "network":"193.255.144.0\/25", + "version":60493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.144.0", + "prefixLen":25, + "network":"193.255.144.0\/25", + "version":60493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.144.128", + "prefixLen":25, + "network":"193.255.144.128\/25", + "version":60492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.144.128", + "prefixLen":25, + "network":"193.255.144.128\/25", + "version":60492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.145.0", + "prefixLen":25, + "network":"193.255.145.0\/25", + "version":60491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.145.0", + "prefixLen":25, + "network":"193.255.145.0\/25", + "version":60491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.145.128", + "prefixLen":25, + "network":"193.255.145.128\/25", + "version":60490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.145.128", + "prefixLen":25, + "network":"193.255.145.128\/25", + "version":60490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.146.0", + "prefixLen":25, + "network":"193.255.146.0\/25", + "version":60489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.146.0", + "prefixLen":25, + "network":"193.255.146.0\/25", + "version":60489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.146.128", + "prefixLen":25, + "network":"193.255.146.128\/25", + "version":60488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.146.128", + "prefixLen":25, + "network":"193.255.146.128\/25", + "version":60488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.147.0", + "prefixLen":25, + "network":"193.255.147.0\/25", + "version":60487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.147.0", + "prefixLen":25, + "network":"193.255.147.0\/25", + "version":60487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.147.128", + "prefixLen":25, + "network":"193.255.147.128\/25", + "version":60486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.147.128", + "prefixLen":25, + "network":"193.255.147.128\/25", + "version":60486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.160.0", + "prefixLen":25, + "network":"193.255.160.0\/25", + "version":60485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.160.0", + "prefixLen":25, + "network":"193.255.160.0\/25", + "version":60485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.160.128", + "prefixLen":25, + "network":"193.255.160.128\/25", + "version":60484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.160.128", + "prefixLen":25, + "network":"193.255.160.128\/25", + "version":60484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.161.0", + "prefixLen":25, + "network":"193.255.161.0\/25", + "version":60483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.161.0", + "prefixLen":25, + "network":"193.255.161.0\/25", + "version":60483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.161.128", + "prefixLen":25, + "network":"193.255.161.128\/25", + "version":60482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.161.128", + "prefixLen":25, + "network":"193.255.161.128\/25", + "version":60482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.162.0", + "prefixLen":25, + "network":"193.255.162.0\/25", + "version":60481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.162.0", + "prefixLen":25, + "network":"193.255.162.0\/25", + "version":60481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.162.128", + "prefixLen":25, + "network":"193.255.162.128\/25", + "version":60480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.162.128", + "prefixLen":25, + "network":"193.255.162.128\/25", + "version":60480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.163.0", + "prefixLen":25, + "network":"193.255.163.0\/25", + "version":60479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.163.0", + "prefixLen":25, + "network":"193.255.163.0\/25", + "version":60479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.163.128", + "prefixLen":25, + "network":"193.255.163.128\/25", + "version":60478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.163.128", + "prefixLen":25, + "network":"193.255.163.128\/25", + "version":60478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.176.0", + "prefixLen":25, + "network":"193.255.176.0\/25", + "version":60477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.176.0", + "prefixLen":25, + "network":"193.255.176.0\/25", + "version":60477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.176.128", + "prefixLen":25, + "network":"193.255.176.128\/25", + "version":60476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.176.128", + "prefixLen":25, + "network":"193.255.176.128\/25", + "version":60476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.177.0", + "prefixLen":25, + "network":"193.255.177.0\/25", + "version":60475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.177.0", + "prefixLen":25, + "network":"193.255.177.0\/25", + "version":60475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.177.128", + "prefixLen":25, + "network":"193.255.177.128\/25", + "version":60474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.177.128", + "prefixLen":25, + "network":"193.255.177.128\/25", + "version":60474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.178.0", + "prefixLen":25, + "network":"193.255.178.0\/25", + "version":60473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.178.0", + "prefixLen":25, + "network":"193.255.178.0\/25", + "version":60473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.178.128", + "prefixLen":25, + "network":"193.255.178.128\/25", + "version":60472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.178.128", + "prefixLen":25, + "network":"193.255.178.128\/25", + "version":60472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.179.0", + "prefixLen":25, + "network":"193.255.179.0\/25", + "version":60471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.179.0", + "prefixLen":25, + "network":"193.255.179.0\/25", + "version":60471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.179.128", + "prefixLen":25, + "network":"193.255.179.128\/25", + "version":60470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.179.128", + "prefixLen":25, + "network":"193.255.179.128\/25", + "version":60470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.192.0", + "prefixLen":25, + "network":"193.255.192.0\/25", + "version":60469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.192.0", + "prefixLen":25, + "network":"193.255.192.0\/25", + "version":60469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.192.128", + "prefixLen":25, + "network":"193.255.192.128\/25", + "version":60468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.192.128", + "prefixLen":25, + "network":"193.255.192.128\/25", + "version":60468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.193.0", + "prefixLen":25, + "network":"193.255.193.0\/25", + "version":60467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.193.0", + "prefixLen":25, + "network":"193.255.193.0\/25", + "version":60467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.193.128", + "prefixLen":25, + "network":"193.255.193.128\/25", + "version":60466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.193.128", + "prefixLen":25, + "network":"193.255.193.128\/25", + "version":60466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.194.0", + "prefixLen":25, + "network":"193.255.194.0\/25", + "version":60465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.194.0", + "prefixLen":25, + "network":"193.255.194.0\/25", + "version":60465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.194.128", + "prefixLen":25, + "network":"193.255.194.128\/25", + "version":60464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.194.128", + "prefixLen":25, + "network":"193.255.194.128\/25", + "version":60464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.195.0", + "prefixLen":25, + "network":"193.255.195.0\/25", + "version":60463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.195.0", + "prefixLen":25, + "network":"193.255.195.0\/25", + "version":60463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.195.128", + "prefixLen":25, + "network":"193.255.195.128\/25", + "version":60462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.195.128", + "prefixLen":25, + "network":"193.255.195.128\/25", + "version":60462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.208.0", + "prefixLen":25, + "network":"193.255.208.0\/25", + "version":60461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.208.0", + "prefixLen":25, + "network":"193.255.208.0\/25", + "version":60461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.208.128", + "prefixLen":25, + "network":"193.255.208.128\/25", + "version":60460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.208.128", + "prefixLen":25, + "network":"193.255.208.128\/25", + "version":60460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.209.0", + "prefixLen":25, + "network":"193.255.209.0\/25", + "version":60459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.209.0", + "prefixLen":25, + "network":"193.255.209.0\/25", + "version":60459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.209.128", + "prefixLen":25, + "network":"193.255.209.128\/25", + "version":60458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.209.128", + "prefixLen":25, + "network":"193.255.209.128\/25", + "version":60458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.210.0", + "prefixLen":25, + "network":"193.255.210.0\/25", + "version":60457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.210.0", + "prefixLen":25, + "network":"193.255.210.0\/25", + "version":60457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.210.128", + "prefixLen":25, + "network":"193.255.210.128\/25", + "version":60456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.210.128", + "prefixLen":25, + "network":"193.255.210.128\/25", + "version":60456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.211.0", + "prefixLen":25, + "network":"193.255.211.0\/25", + "version":60455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.211.0", + "prefixLen":25, + "network":"193.255.211.0\/25", + "version":60455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.211.128", + "prefixLen":25, + "network":"193.255.211.128\/25", + "version":60454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.211.128", + "prefixLen":25, + "network":"193.255.211.128\/25", + "version":60454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.224.0", + "prefixLen":25, + "network":"193.255.224.0\/25", + "version":60453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.224.0", + "prefixLen":25, + "network":"193.255.224.0\/25", + "version":60453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.224.128", + "prefixLen":25, + "network":"193.255.224.128\/25", + "version":60452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.224.128", + "prefixLen":25, + "network":"193.255.224.128\/25", + "version":60452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.225.0", + "prefixLen":25, + "network":"193.255.225.0\/25", + "version":60451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.225.0", + "prefixLen":25, + "network":"193.255.225.0\/25", + "version":60451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.225.128", + "prefixLen":25, + "network":"193.255.225.128\/25", + "version":60450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.225.128", + "prefixLen":25, + "network":"193.255.225.128\/25", + "version":60450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.226.0", + "prefixLen":25, + "network":"193.255.226.0\/25", + "version":60449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.226.0", + "prefixLen":25, + "network":"193.255.226.0\/25", + "version":60449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.226.128", + "prefixLen":25, + "network":"193.255.226.128\/25", + "version":60448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.226.128", + "prefixLen":25, + "network":"193.255.226.128\/25", + "version":60448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.227.0", + "prefixLen":25, + "network":"193.255.227.0\/25", + "version":60447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.227.0", + "prefixLen":25, + "network":"193.255.227.0\/25", + "version":60447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.227.128", + "prefixLen":25, + "network":"193.255.227.128\/25", + "version":60446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.227.128", + "prefixLen":25, + "network":"193.255.227.128\/25", + "version":60446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.240.0", + "prefixLen":25, + "network":"193.255.240.0\/25", + "version":60445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.240.0", + "prefixLen":25, + "network":"193.255.240.0\/25", + "version":60445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.240.128", + "prefixLen":25, + "network":"193.255.240.128\/25", + "version":60444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.240.128", + "prefixLen":25, + "network":"193.255.240.128\/25", + "version":60444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.241.0", + "prefixLen":25, + "network":"193.255.241.0\/25", + "version":60443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.241.0", + "prefixLen":25, + "network":"193.255.241.0\/25", + "version":60443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.241.128", + "prefixLen":25, + "network":"193.255.241.128\/25", + "version":60442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.241.128", + "prefixLen":25, + "network":"193.255.241.128\/25", + "version":60442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.242.0", + "prefixLen":25, + "network":"193.255.242.0\/25", + "version":60441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.242.0", + "prefixLen":25, + "network":"193.255.242.0\/25", + "version":60441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.242.128", + "prefixLen":25, + "network":"193.255.242.128\/25", + "version":60440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.242.128", + "prefixLen":25, + "network":"193.255.242.128\/25", + "version":60440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.243.0", + "prefixLen":25, + "network":"193.255.243.0\/25", + "version":60439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.243.0", + "prefixLen":25, + "network":"193.255.243.0\/25", + "version":60439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"193.255.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"193.255.243.128", + "prefixLen":25, + "network":"193.255.243.128\/25", + "version":60438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"193.255.243.128", + "prefixLen":25, + "network":"193.255.243.128\/25", + "version":60438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64943 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.0.0", + "prefixLen":25, + "network":"194.0.0.0\/25", + "version":60565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.0.0", + "prefixLen":25, + "network":"194.0.0.0\/25", + "version":60565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.0.128", + "prefixLen":25, + "network":"194.0.0.128\/25", + "version":60692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.0.128", + "prefixLen":25, + "network":"194.0.0.128\/25", + "version":60692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.1.0", + "prefixLen":25, + "network":"194.0.1.0\/25", + "version":60691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.1.0", + "prefixLen":25, + "network":"194.0.1.0\/25", + "version":60691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.1.128", + "prefixLen":25, + "network":"194.0.1.128\/25", + "version":60690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.1.128", + "prefixLen":25, + "network":"194.0.1.128\/25", + "version":60690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.2.0", + "prefixLen":25, + "network":"194.0.2.0\/25", + "version":60689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.2.0", + "prefixLen":25, + "network":"194.0.2.0\/25", + "version":60689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.2.128", + "prefixLen":25, + "network":"194.0.2.128\/25", + "version":60688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.2.128", + "prefixLen":25, + "network":"194.0.2.128\/25", + "version":60688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.3.0", + "prefixLen":25, + "network":"194.0.3.0\/25", + "version":60687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.3.0", + "prefixLen":25, + "network":"194.0.3.0\/25", + "version":60687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.3.128", + "prefixLen":25, + "network":"194.0.3.128\/25", + "version":60686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.3.128", + "prefixLen":25, + "network":"194.0.3.128\/25", + "version":60686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.16.0", + "prefixLen":25, + "network":"194.0.16.0\/25", + "version":60685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.16.0", + "prefixLen":25, + "network":"194.0.16.0\/25", + "version":60685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.16.128", + "prefixLen":25, + "network":"194.0.16.128\/25", + "version":60684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.16.128", + "prefixLen":25, + "network":"194.0.16.128\/25", + "version":60684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.17.0", + "prefixLen":25, + "network":"194.0.17.0\/25", + "version":60683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.17.0", + "prefixLen":25, + "network":"194.0.17.0\/25", + "version":60683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.17.128", + "prefixLen":25, + "network":"194.0.17.128\/25", + "version":60682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.17.128", + "prefixLen":25, + "network":"194.0.17.128\/25", + "version":60682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.18.0", + "prefixLen":25, + "network":"194.0.18.0\/25", + "version":60681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.18.0", + "prefixLen":25, + "network":"194.0.18.0\/25", + "version":60681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.18.128", + "prefixLen":25, + "network":"194.0.18.128\/25", + "version":60680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.18.128", + "prefixLen":25, + "network":"194.0.18.128\/25", + "version":60680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.19.0", + "prefixLen":25, + "network":"194.0.19.0\/25", + "version":60679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.19.0", + "prefixLen":25, + "network":"194.0.19.0\/25", + "version":60679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.19.128", + "prefixLen":25, + "network":"194.0.19.128\/25", + "version":60678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.19.128", + "prefixLen":25, + "network":"194.0.19.128\/25", + "version":60678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.32.0", + "prefixLen":25, + "network":"194.0.32.0\/25", + "version":60677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.32.0", + "prefixLen":25, + "network":"194.0.32.0\/25", + "version":60677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.32.128", + "prefixLen":25, + "network":"194.0.32.128\/25", + "version":60676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.32.128", + "prefixLen":25, + "network":"194.0.32.128\/25", + "version":60676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.33.0", + "prefixLen":25, + "network":"194.0.33.0\/25", + "version":60675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.33.0", + "prefixLen":25, + "network":"194.0.33.0\/25", + "version":60675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.33.128", + "prefixLen":25, + "network":"194.0.33.128\/25", + "version":60674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.33.128", + "prefixLen":25, + "network":"194.0.33.128\/25", + "version":60674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.34.0", + "prefixLen":25, + "network":"194.0.34.0\/25", + "version":60673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.34.0", + "prefixLen":25, + "network":"194.0.34.0\/25", + "version":60673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.34.128", + "prefixLen":25, + "network":"194.0.34.128\/25", + "version":60672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.34.128", + "prefixLen":25, + "network":"194.0.34.128\/25", + "version":60672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.35.0", + "prefixLen":25, + "network":"194.0.35.0\/25", + "version":60671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.35.0", + "prefixLen":25, + "network":"194.0.35.0\/25", + "version":60671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.35.128", + "prefixLen":25, + "network":"194.0.35.128\/25", + "version":60670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.35.128", + "prefixLen":25, + "network":"194.0.35.128\/25", + "version":60670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.48.0", + "prefixLen":25, + "network":"194.0.48.0\/25", + "version":60669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.48.0", + "prefixLen":25, + "network":"194.0.48.0\/25", + "version":60669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.48.128", + "prefixLen":25, + "network":"194.0.48.128\/25", + "version":60668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.48.128", + "prefixLen":25, + "network":"194.0.48.128\/25", + "version":60668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.49.0", + "prefixLen":25, + "network":"194.0.49.0\/25", + "version":60667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.49.0", + "prefixLen":25, + "network":"194.0.49.0\/25", + "version":60667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.49.128", + "prefixLen":25, + "network":"194.0.49.128\/25", + "version":60666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.49.128", + "prefixLen":25, + "network":"194.0.49.128\/25", + "version":60666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.50.0", + "prefixLen":25, + "network":"194.0.50.0\/25", + "version":60665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.50.0", + "prefixLen":25, + "network":"194.0.50.0\/25", + "version":60665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.50.128", + "prefixLen":25, + "network":"194.0.50.128\/25", + "version":60664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.50.128", + "prefixLen":25, + "network":"194.0.50.128\/25", + "version":60664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.51.0", + "prefixLen":25, + "network":"194.0.51.0\/25", + "version":60663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.51.0", + "prefixLen":25, + "network":"194.0.51.0\/25", + "version":60663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.51.128", + "prefixLen":25, + "network":"194.0.51.128\/25", + "version":60662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.51.128", + "prefixLen":25, + "network":"194.0.51.128\/25", + "version":60662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.64.0", + "prefixLen":25, + "network":"194.0.64.0\/25", + "version":60661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.64.0", + "prefixLen":25, + "network":"194.0.64.0\/25", + "version":60661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.64.128", + "prefixLen":25, + "network":"194.0.64.128\/25", + "version":60660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.64.128", + "prefixLen":25, + "network":"194.0.64.128\/25", + "version":60660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.65.0", + "prefixLen":25, + "network":"194.0.65.0\/25", + "version":60659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.65.0", + "prefixLen":25, + "network":"194.0.65.0\/25", + "version":60659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.65.128", + "prefixLen":25, + "network":"194.0.65.128\/25", + "version":60658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.65.128", + "prefixLen":25, + "network":"194.0.65.128\/25", + "version":60658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.66.0", + "prefixLen":25, + "network":"194.0.66.0\/25", + "version":60657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.66.0", + "prefixLen":25, + "network":"194.0.66.0\/25", + "version":60657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.66.128", + "prefixLen":25, + "network":"194.0.66.128\/25", + "version":60656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.66.128", + "prefixLen":25, + "network":"194.0.66.128\/25", + "version":60656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.67.0", + "prefixLen":25, + "network":"194.0.67.0\/25", + "version":60655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.67.0", + "prefixLen":25, + "network":"194.0.67.0\/25", + "version":60655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.67.128", + "prefixLen":25, + "network":"194.0.67.128\/25", + "version":60654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.67.128", + "prefixLen":25, + "network":"194.0.67.128\/25", + "version":60654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.80.0", + "prefixLen":25, + "network":"194.0.80.0\/25", + "version":60653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.80.0", + "prefixLen":25, + "network":"194.0.80.0\/25", + "version":60653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.80.128", + "prefixLen":25, + "network":"194.0.80.128\/25", + "version":60652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.80.128", + "prefixLen":25, + "network":"194.0.80.128\/25", + "version":60652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.81.0", + "prefixLen":25, + "network":"194.0.81.0\/25", + "version":60651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.81.0", + "prefixLen":25, + "network":"194.0.81.0\/25", + "version":60651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.81.128", + "prefixLen":25, + "network":"194.0.81.128\/25", + "version":60650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.81.128", + "prefixLen":25, + "network":"194.0.81.128\/25", + "version":60650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.82.0", + "prefixLen":25, + "network":"194.0.82.0\/25", + "version":60649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.82.0", + "prefixLen":25, + "network":"194.0.82.0\/25", + "version":60649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.82.128", + "prefixLen":25, + "network":"194.0.82.128\/25", + "version":60648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.82.128", + "prefixLen":25, + "network":"194.0.82.128\/25", + "version":60648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.83.0", + "prefixLen":25, + "network":"194.0.83.0\/25", + "version":60647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.83.0", + "prefixLen":25, + "network":"194.0.83.0\/25", + "version":60647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.83.128", + "prefixLen":25, + "network":"194.0.83.128\/25", + "version":60646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.83.128", + "prefixLen":25, + "network":"194.0.83.128\/25", + "version":60646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.96.0", + "prefixLen":25, + "network":"194.0.96.0\/25", + "version":60645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.96.0", + "prefixLen":25, + "network":"194.0.96.0\/25", + "version":60645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.96.128", + "prefixLen":25, + "network":"194.0.96.128\/25", + "version":60644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.96.128", + "prefixLen":25, + "network":"194.0.96.128\/25", + "version":60644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.97.0", + "prefixLen":25, + "network":"194.0.97.0\/25", + "version":60643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.97.0", + "prefixLen":25, + "network":"194.0.97.0\/25", + "version":60643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.97.128", + "prefixLen":25, + "network":"194.0.97.128\/25", + "version":60642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.97.128", + "prefixLen":25, + "network":"194.0.97.128\/25", + "version":60642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.98.0", + "prefixLen":25, + "network":"194.0.98.0\/25", + "version":60641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.98.0", + "prefixLen":25, + "network":"194.0.98.0\/25", + "version":60641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.98.128", + "prefixLen":25, + "network":"194.0.98.128\/25", + "version":60640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.98.128", + "prefixLen":25, + "network":"194.0.98.128\/25", + "version":60640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.99.0", + "prefixLen":25, + "network":"194.0.99.0\/25", + "version":60639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.99.0", + "prefixLen":25, + "network":"194.0.99.0\/25", + "version":60639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.99.128", + "prefixLen":25, + "network":"194.0.99.128\/25", + "version":60638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.99.128", + "prefixLen":25, + "network":"194.0.99.128\/25", + "version":60638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.112.0", + "prefixLen":25, + "network":"194.0.112.0\/25", + "version":60637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.112.0", + "prefixLen":25, + "network":"194.0.112.0\/25", + "version":60637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.112.128", + "prefixLen":25, + "network":"194.0.112.128\/25", + "version":60636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.112.128", + "prefixLen":25, + "network":"194.0.112.128\/25", + "version":60636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.113.0", + "prefixLen":25, + "network":"194.0.113.0\/25", + "version":60635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.113.0", + "prefixLen":25, + "network":"194.0.113.0\/25", + "version":60635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.113.128", + "prefixLen":25, + "network":"194.0.113.128\/25", + "version":60634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.113.128", + "prefixLen":25, + "network":"194.0.113.128\/25", + "version":60634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.114.0", + "prefixLen":25, + "network":"194.0.114.0\/25", + "version":60633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.114.0", + "prefixLen":25, + "network":"194.0.114.0\/25", + "version":60633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.114.128", + "prefixLen":25, + "network":"194.0.114.128\/25", + "version":60632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.114.128", + "prefixLen":25, + "network":"194.0.114.128\/25", + "version":60632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.115.0", + "prefixLen":25, + "network":"194.0.115.0\/25", + "version":60631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.115.0", + "prefixLen":25, + "network":"194.0.115.0\/25", + "version":60631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.115.128", + "prefixLen":25, + "network":"194.0.115.128\/25", + "version":60630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.115.128", + "prefixLen":25, + "network":"194.0.115.128\/25", + "version":60630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.128.0", + "prefixLen":25, + "network":"194.0.128.0\/25", + "version":60629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.128.0", + "prefixLen":25, + "network":"194.0.128.0\/25", + "version":60629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.128.128", + "prefixLen":25, + "network":"194.0.128.128\/25", + "version":60628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.128.128", + "prefixLen":25, + "network":"194.0.128.128\/25", + "version":60628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.129.0", + "prefixLen":25, + "network":"194.0.129.0\/25", + "version":60627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.129.0", + "prefixLen":25, + "network":"194.0.129.0\/25", + "version":60627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.129.128", + "prefixLen":25, + "network":"194.0.129.128\/25", + "version":60626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.129.128", + "prefixLen":25, + "network":"194.0.129.128\/25", + "version":60626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.130.0", + "prefixLen":25, + "network":"194.0.130.0\/25", + "version":60625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.130.0", + "prefixLen":25, + "network":"194.0.130.0\/25", + "version":60625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.130.128", + "prefixLen":25, + "network":"194.0.130.128\/25", + "version":60624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.130.128", + "prefixLen":25, + "network":"194.0.130.128\/25", + "version":60624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.131.0", + "prefixLen":25, + "network":"194.0.131.0\/25", + "version":60623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.131.0", + "prefixLen":25, + "network":"194.0.131.0\/25", + "version":60623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.131.128", + "prefixLen":25, + "network":"194.0.131.128\/25", + "version":60622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.131.128", + "prefixLen":25, + "network":"194.0.131.128\/25", + "version":60622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.144.0", + "prefixLen":25, + "network":"194.0.144.0\/25", + "version":60621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.144.0", + "prefixLen":25, + "network":"194.0.144.0\/25", + "version":60621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.144.128", + "prefixLen":25, + "network":"194.0.144.128\/25", + "version":60620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.144.128", + "prefixLen":25, + "network":"194.0.144.128\/25", + "version":60620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.145.0", + "prefixLen":25, + "network":"194.0.145.0\/25", + "version":60619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.145.0", + "prefixLen":25, + "network":"194.0.145.0\/25", + "version":60619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.145.128", + "prefixLen":25, + "network":"194.0.145.128\/25", + "version":60618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.145.128", + "prefixLen":25, + "network":"194.0.145.128\/25", + "version":60618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.146.0", + "prefixLen":25, + "network":"194.0.146.0\/25", + "version":60617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.146.0", + "prefixLen":25, + "network":"194.0.146.0\/25", + "version":60617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.146.128", + "prefixLen":25, + "network":"194.0.146.128\/25", + "version":60616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.146.128", + "prefixLen":25, + "network":"194.0.146.128\/25", + "version":60616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.147.0", + "prefixLen":25, + "network":"194.0.147.0\/25", + "version":60615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.147.0", + "prefixLen":25, + "network":"194.0.147.0\/25", + "version":60615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.147.128", + "prefixLen":25, + "network":"194.0.147.128\/25", + "version":60614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.147.128", + "prefixLen":25, + "network":"194.0.147.128\/25", + "version":60614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.160.0", + "prefixLen":25, + "network":"194.0.160.0\/25", + "version":60613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.160.0", + "prefixLen":25, + "network":"194.0.160.0\/25", + "version":60613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.160.128", + "prefixLen":25, + "network":"194.0.160.128\/25", + "version":60612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.160.128", + "prefixLen":25, + "network":"194.0.160.128\/25", + "version":60612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.161.0", + "prefixLen":25, + "network":"194.0.161.0\/25", + "version":60611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.161.0", + "prefixLen":25, + "network":"194.0.161.0\/25", + "version":60611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.161.128", + "prefixLen":25, + "network":"194.0.161.128\/25", + "version":60610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.161.128", + "prefixLen":25, + "network":"194.0.161.128\/25", + "version":60610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.162.0", + "prefixLen":25, + "network":"194.0.162.0\/25", + "version":60609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.162.0", + "prefixLen":25, + "network":"194.0.162.0\/25", + "version":60609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.162.128", + "prefixLen":25, + "network":"194.0.162.128\/25", + "version":60608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.162.128", + "prefixLen":25, + "network":"194.0.162.128\/25", + "version":60608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.163.0", + "prefixLen":25, + "network":"194.0.163.0\/25", + "version":60607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.163.0", + "prefixLen":25, + "network":"194.0.163.0\/25", + "version":60607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.163.128", + "prefixLen":25, + "network":"194.0.163.128\/25", + "version":60606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.163.128", + "prefixLen":25, + "network":"194.0.163.128\/25", + "version":60606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.176.0", + "prefixLen":25, + "network":"194.0.176.0\/25", + "version":60605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.176.0", + "prefixLen":25, + "network":"194.0.176.0\/25", + "version":60605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.176.128", + "prefixLen":25, + "network":"194.0.176.128\/25", + "version":60604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.176.128", + "prefixLen":25, + "network":"194.0.176.128\/25", + "version":60604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.177.0", + "prefixLen":25, + "network":"194.0.177.0\/25", + "version":60603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.177.0", + "prefixLen":25, + "network":"194.0.177.0\/25", + "version":60603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.177.128", + "prefixLen":25, + "network":"194.0.177.128\/25", + "version":60602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.177.128", + "prefixLen":25, + "network":"194.0.177.128\/25", + "version":60602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.178.0", + "prefixLen":25, + "network":"194.0.178.0\/25", + "version":60601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.178.0", + "prefixLen":25, + "network":"194.0.178.0\/25", + "version":60601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.178.128", + "prefixLen":25, + "network":"194.0.178.128\/25", + "version":60600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.178.128", + "prefixLen":25, + "network":"194.0.178.128\/25", + "version":60600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.179.0", + "prefixLen":25, + "network":"194.0.179.0\/25", + "version":60599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.179.0", + "prefixLen":25, + "network":"194.0.179.0\/25", + "version":60599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.179.128", + "prefixLen":25, + "network":"194.0.179.128\/25", + "version":60598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.179.128", + "prefixLen":25, + "network":"194.0.179.128\/25", + "version":60598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.192.0", + "prefixLen":25, + "network":"194.0.192.0\/25", + "version":60597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.192.0", + "prefixLen":25, + "network":"194.0.192.0\/25", + "version":60597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.192.128", + "prefixLen":25, + "network":"194.0.192.128\/25", + "version":60596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.192.128", + "prefixLen":25, + "network":"194.0.192.128\/25", + "version":60596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.193.0", + "prefixLen":25, + "network":"194.0.193.0\/25", + "version":60595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.193.0", + "prefixLen":25, + "network":"194.0.193.0\/25", + "version":60595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.193.128", + "prefixLen":25, + "network":"194.0.193.128\/25", + "version":60594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.193.128", + "prefixLen":25, + "network":"194.0.193.128\/25", + "version":60594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.194.0", + "prefixLen":25, + "network":"194.0.194.0\/25", + "version":60593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.194.0", + "prefixLen":25, + "network":"194.0.194.0\/25", + "version":60593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.194.128", + "prefixLen":25, + "network":"194.0.194.128\/25", + "version":60592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.194.128", + "prefixLen":25, + "network":"194.0.194.128\/25", + "version":60592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.195.0", + "prefixLen":25, + "network":"194.0.195.0\/25", + "version":60591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.195.0", + "prefixLen":25, + "network":"194.0.195.0\/25", + "version":60591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.195.128", + "prefixLen":25, + "network":"194.0.195.128\/25", + "version":60590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.195.128", + "prefixLen":25, + "network":"194.0.195.128\/25", + "version":60590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.208.0", + "prefixLen":25, + "network":"194.0.208.0\/25", + "version":60589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.208.0", + "prefixLen":25, + "network":"194.0.208.0\/25", + "version":60589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.208.128", + "prefixLen":25, + "network":"194.0.208.128\/25", + "version":60588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.208.128", + "prefixLen":25, + "network":"194.0.208.128\/25", + "version":60588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.209.0", + "prefixLen":25, + "network":"194.0.209.0\/25", + "version":60587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.209.0", + "prefixLen":25, + "network":"194.0.209.0\/25", + "version":60587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.209.128", + "prefixLen":25, + "network":"194.0.209.128\/25", + "version":60586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.209.128", + "prefixLen":25, + "network":"194.0.209.128\/25", + "version":60586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.210.0", + "prefixLen":25, + "network":"194.0.210.0\/25", + "version":60585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.210.0", + "prefixLen":25, + "network":"194.0.210.0\/25", + "version":60585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.210.128", + "prefixLen":25, + "network":"194.0.210.128\/25", + "version":60584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.210.128", + "prefixLen":25, + "network":"194.0.210.128\/25", + "version":60584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.211.0", + "prefixLen":25, + "network":"194.0.211.0\/25", + "version":60583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.211.0", + "prefixLen":25, + "network":"194.0.211.0\/25", + "version":60583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.211.128", + "prefixLen":25, + "network":"194.0.211.128\/25", + "version":60582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.211.128", + "prefixLen":25, + "network":"194.0.211.128\/25", + "version":60582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.224.0", + "prefixLen":25, + "network":"194.0.224.0\/25", + "version":60581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.224.0", + "prefixLen":25, + "network":"194.0.224.0\/25", + "version":60581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.224.128", + "prefixLen":25, + "network":"194.0.224.128\/25", + "version":60580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.224.128", + "prefixLen":25, + "network":"194.0.224.128\/25", + "version":60580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.225.0", + "prefixLen":25, + "network":"194.0.225.0\/25", + "version":60579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.225.0", + "prefixLen":25, + "network":"194.0.225.0\/25", + "version":60579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.225.128", + "prefixLen":25, + "network":"194.0.225.128\/25", + "version":60578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.225.128", + "prefixLen":25, + "network":"194.0.225.128\/25", + "version":60578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.226.0", + "prefixLen":25, + "network":"194.0.226.0\/25", + "version":60577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.226.0", + "prefixLen":25, + "network":"194.0.226.0\/25", + "version":60577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.226.128", + "prefixLen":25, + "network":"194.0.226.128\/25", + "version":60576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.226.128", + "prefixLen":25, + "network":"194.0.226.128\/25", + "version":60576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.227.0", + "prefixLen":25, + "network":"194.0.227.0\/25", + "version":60575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.227.0", + "prefixLen":25, + "network":"194.0.227.0\/25", + "version":60575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.227.128", + "prefixLen":25, + "network":"194.0.227.128\/25", + "version":60574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.227.128", + "prefixLen":25, + "network":"194.0.227.128\/25", + "version":60574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.240.0", + "prefixLen":25, + "network":"194.0.240.0\/25", + "version":60573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.240.0", + "prefixLen":25, + "network":"194.0.240.0\/25", + "version":60573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.240.128", + "prefixLen":25, + "network":"194.0.240.128\/25", + "version":60572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.240.128", + "prefixLen":25, + "network":"194.0.240.128\/25", + "version":60572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.241.0", + "prefixLen":25, + "network":"194.0.241.0\/25", + "version":60571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.241.0", + "prefixLen":25, + "network":"194.0.241.0\/25", + "version":60571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.241.128", + "prefixLen":25, + "network":"194.0.241.128\/25", + "version":60570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.241.128", + "prefixLen":25, + "network":"194.0.241.128\/25", + "version":60570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.242.0", + "prefixLen":25, + "network":"194.0.242.0\/25", + "version":60569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.242.0", + "prefixLen":25, + "network":"194.0.242.0\/25", + "version":60569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.242.128", + "prefixLen":25, + "network":"194.0.242.128\/25", + "version":60568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.242.128", + "prefixLen":25, + "network":"194.0.242.128\/25", + "version":60568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.243.0", + "prefixLen":25, + "network":"194.0.243.0\/25", + "version":60567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.243.0", + "prefixLen":25, + "network":"194.0.243.0\/25", + "version":60567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.0.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.0.243.128", + "prefixLen":25, + "network":"194.0.243.128\/25", + "version":60566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.0.243.128", + "prefixLen":25, + "network":"194.0.243.128\/25", + "version":60566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64944 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.0.0", + "prefixLen":25, + "network":"194.2.0.0\/25", + "version":60693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.0.0", + "prefixLen":25, + "network":"194.2.0.0\/25", + "version":60693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.0.128", + "prefixLen":25, + "network":"194.2.0.128\/25", + "version":60820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.0.128", + "prefixLen":25, + "network":"194.2.0.128\/25", + "version":60820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.1.0", + "prefixLen":25, + "network":"194.2.1.0\/25", + "version":60819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.1.0", + "prefixLen":25, + "network":"194.2.1.0\/25", + "version":60819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.1.128", + "prefixLen":25, + "network":"194.2.1.128\/25", + "version":60818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.1.128", + "prefixLen":25, + "network":"194.2.1.128\/25", + "version":60818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.2.0", + "prefixLen":25, + "network":"194.2.2.0\/25", + "version":60817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.2.0", + "prefixLen":25, + "network":"194.2.2.0\/25", + "version":60817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.2.128", + "prefixLen":25, + "network":"194.2.2.128\/25", + "version":60816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.2.128", + "prefixLen":25, + "network":"194.2.2.128\/25", + "version":60816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.3.0", + "prefixLen":25, + "network":"194.2.3.0\/25", + "version":60815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.3.0", + "prefixLen":25, + "network":"194.2.3.0\/25", + "version":60815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.3.128", + "prefixLen":25, + "network":"194.2.3.128\/25", + "version":60814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.3.128", + "prefixLen":25, + "network":"194.2.3.128\/25", + "version":60814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.16.0", + "prefixLen":25, + "network":"194.2.16.0\/25", + "version":60813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.16.0", + "prefixLen":25, + "network":"194.2.16.0\/25", + "version":60813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.16.128", + "prefixLen":25, + "network":"194.2.16.128\/25", + "version":60812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.16.128", + "prefixLen":25, + "network":"194.2.16.128\/25", + "version":60812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.17.0", + "prefixLen":25, + "network":"194.2.17.0\/25", + "version":60811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.17.0", + "prefixLen":25, + "network":"194.2.17.0\/25", + "version":60811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.17.128", + "prefixLen":25, + "network":"194.2.17.128\/25", + "version":60810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.17.128", + "prefixLen":25, + "network":"194.2.17.128\/25", + "version":60810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.18.0", + "prefixLen":25, + "network":"194.2.18.0\/25", + "version":60809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.18.0", + "prefixLen":25, + "network":"194.2.18.0\/25", + "version":60809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.18.128", + "prefixLen":25, + "network":"194.2.18.128\/25", + "version":60808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.18.128", + "prefixLen":25, + "network":"194.2.18.128\/25", + "version":60808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.19.0", + "prefixLen":25, + "network":"194.2.19.0\/25", + "version":60807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.19.0", + "prefixLen":25, + "network":"194.2.19.0\/25", + "version":60807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.19.128", + "prefixLen":25, + "network":"194.2.19.128\/25", + "version":60806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.19.128", + "prefixLen":25, + "network":"194.2.19.128\/25", + "version":60806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.32.0", + "prefixLen":25, + "network":"194.2.32.0\/25", + "version":60805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.32.0", + "prefixLen":25, + "network":"194.2.32.0\/25", + "version":60805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.32.128", + "prefixLen":25, + "network":"194.2.32.128\/25", + "version":60804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.32.128", + "prefixLen":25, + "network":"194.2.32.128\/25", + "version":60804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.33.0", + "prefixLen":25, + "network":"194.2.33.0\/25", + "version":60803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.33.0", + "prefixLen":25, + "network":"194.2.33.0\/25", + "version":60803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.33.128", + "prefixLen":25, + "network":"194.2.33.128\/25", + "version":60802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.33.128", + "prefixLen":25, + "network":"194.2.33.128\/25", + "version":60802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.34.0", + "prefixLen":25, + "network":"194.2.34.0\/25", + "version":60801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.34.0", + "prefixLen":25, + "network":"194.2.34.0\/25", + "version":60801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.34.128", + "prefixLen":25, + "network":"194.2.34.128\/25", + "version":60800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.34.128", + "prefixLen":25, + "network":"194.2.34.128\/25", + "version":60800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.35.0", + "prefixLen":25, + "network":"194.2.35.0\/25", + "version":60799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.35.0", + "prefixLen":25, + "network":"194.2.35.0\/25", + "version":60799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.35.128", + "prefixLen":25, + "network":"194.2.35.128\/25", + "version":60798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.35.128", + "prefixLen":25, + "network":"194.2.35.128\/25", + "version":60798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.48.0", + "prefixLen":25, + "network":"194.2.48.0\/25", + "version":60797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.48.0", + "prefixLen":25, + "network":"194.2.48.0\/25", + "version":60797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.48.128", + "prefixLen":25, + "network":"194.2.48.128\/25", + "version":60796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.48.128", + "prefixLen":25, + "network":"194.2.48.128\/25", + "version":60796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.49.0", + "prefixLen":25, + "network":"194.2.49.0\/25", + "version":60795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.49.0", + "prefixLen":25, + "network":"194.2.49.0\/25", + "version":60795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.49.128", + "prefixLen":25, + "network":"194.2.49.128\/25", + "version":60794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.49.128", + "prefixLen":25, + "network":"194.2.49.128\/25", + "version":60794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.50.0", + "prefixLen":25, + "network":"194.2.50.0\/25", + "version":60793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.50.0", + "prefixLen":25, + "network":"194.2.50.0\/25", + "version":60793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.50.128", + "prefixLen":25, + "network":"194.2.50.128\/25", + "version":60792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.50.128", + "prefixLen":25, + "network":"194.2.50.128\/25", + "version":60792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.51.0", + "prefixLen":25, + "network":"194.2.51.0\/25", + "version":60791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.51.0", + "prefixLen":25, + "network":"194.2.51.0\/25", + "version":60791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.51.128", + "prefixLen":25, + "network":"194.2.51.128\/25", + "version":60790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.51.128", + "prefixLen":25, + "network":"194.2.51.128\/25", + "version":60790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.64.0", + "prefixLen":25, + "network":"194.2.64.0\/25", + "version":60789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.64.0", + "prefixLen":25, + "network":"194.2.64.0\/25", + "version":60789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.64.128", + "prefixLen":25, + "network":"194.2.64.128\/25", + "version":60788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.64.128", + "prefixLen":25, + "network":"194.2.64.128\/25", + "version":60788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.65.0", + "prefixLen":25, + "network":"194.2.65.0\/25", + "version":60787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.65.0", + "prefixLen":25, + "network":"194.2.65.0\/25", + "version":60787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.65.128", + "prefixLen":25, + "network":"194.2.65.128\/25", + "version":60786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.65.128", + "prefixLen":25, + "network":"194.2.65.128\/25", + "version":60786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.66.0", + "prefixLen":25, + "network":"194.2.66.0\/25", + "version":60785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.66.0", + "prefixLen":25, + "network":"194.2.66.0\/25", + "version":60785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.66.128", + "prefixLen":25, + "network":"194.2.66.128\/25", + "version":60784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.66.128", + "prefixLen":25, + "network":"194.2.66.128\/25", + "version":60784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.67.0", + "prefixLen":25, + "network":"194.2.67.0\/25", + "version":60783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.67.0", + "prefixLen":25, + "network":"194.2.67.0\/25", + "version":60783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.67.128", + "prefixLen":25, + "network":"194.2.67.128\/25", + "version":60782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.67.128", + "prefixLen":25, + "network":"194.2.67.128\/25", + "version":60782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.80.0", + "prefixLen":25, + "network":"194.2.80.0\/25", + "version":60781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.80.0", + "prefixLen":25, + "network":"194.2.80.0\/25", + "version":60781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.80.128", + "prefixLen":25, + "network":"194.2.80.128\/25", + "version":60780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.80.128", + "prefixLen":25, + "network":"194.2.80.128\/25", + "version":60780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.81.0", + "prefixLen":25, + "network":"194.2.81.0\/25", + "version":60779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.81.0", + "prefixLen":25, + "network":"194.2.81.0\/25", + "version":60779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.81.128", + "prefixLen":25, + "network":"194.2.81.128\/25", + "version":60778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.81.128", + "prefixLen":25, + "network":"194.2.81.128\/25", + "version":60778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.82.0", + "prefixLen":25, + "network":"194.2.82.0\/25", + "version":60777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.82.0", + "prefixLen":25, + "network":"194.2.82.0\/25", + "version":60777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.82.128", + "prefixLen":25, + "network":"194.2.82.128\/25", + "version":60776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.82.128", + "prefixLen":25, + "network":"194.2.82.128\/25", + "version":60776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.83.0", + "prefixLen":25, + "network":"194.2.83.0\/25", + "version":60775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.83.0", + "prefixLen":25, + "network":"194.2.83.0\/25", + "version":60775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.83.128", + "prefixLen":25, + "network":"194.2.83.128\/25", + "version":60774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.83.128", + "prefixLen":25, + "network":"194.2.83.128\/25", + "version":60774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.96.0", + "prefixLen":25, + "network":"194.2.96.0\/25", + "version":60773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.96.0", + "prefixLen":25, + "network":"194.2.96.0\/25", + "version":60773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.96.128", + "prefixLen":25, + "network":"194.2.96.128\/25", + "version":60772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.96.128", + "prefixLen":25, + "network":"194.2.96.128\/25", + "version":60772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.97.0", + "prefixLen":25, + "network":"194.2.97.0\/25", + "version":60771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.97.0", + "prefixLen":25, + "network":"194.2.97.0\/25", + "version":60771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.97.128", + "prefixLen":25, + "network":"194.2.97.128\/25", + "version":60770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.97.128", + "prefixLen":25, + "network":"194.2.97.128\/25", + "version":60770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.98.0", + "prefixLen":25, + "network":"194.2.98.0\/25", + "version":60769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.98.0", + "prefixLen":25, + "network":"194.2.98.0\/25", + "version":60769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.98.128", + "prefixLen":25, + "network":"194.2.98.128\/25", + "version":60768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.98.128", + "prefixLen":25, + "network":"194.2.98.128\/25", + "version":60768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.99.0", + "prefixLen":25, + "network":"194.2.99.0\/25", + "version":60767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.99.0", + "prefixLen":25, + "network":"194.2.99.0\/25", + "version":60767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.99.128", + "prefixLen":25, + "network":"194.2.99.128\/25", + "version":60766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.99.128", + "prefixLen":25, + "network":"194.2.99.128\/25", + "version":60766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.112.0", + "prefixLen":25, + "network":"194.2.112.0\/25", + "version":60765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.112.0", + "prefixLen":25, + "network":"194.2.112.0\/25", + "version":60765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.112.128", + "prefixLen":25, + "network":"194.2.112.128\/25", + "version":60764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.112.128", + "prefixLen":25, + "network":"194.2.112.128\/25", + "version":60764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.113.0", + "prefixLen":25, + "network":"194.2.113.0\/25", + "version":60763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.113.0", + "prefixLen":25, + "network":"194.2.113.0\/25", + "version":60763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.113.128", + "prefixLen":25, + "network":"194.2.113.128\/25", + "version":60762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.113.128", + "prefixLen":25, + "network":"194.2.113.128\/25", + "version":60762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.114.0", + "prefixLen":25, + "network":"194.2.114.0\/25", + "version":60761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.114.0", + "prefixLen":25, + "network":"194.2.114.0\/25", + "version":60761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.114.128", + "prefixLen":25, + "network":"194.2.114.128\/25", + "version":60760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.114.128", + "prefixLen":25, + "network":"194.2.114.128\/25", + "version":60760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.115.0", + "prefixLen":25, + "network":"194.2.115.0\/25", + "version":60759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.115.0", + "prefixLen":25, + "network":"194.2.115.0\/25", + "version":60759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.115.128", + "prefixLen":25, + "network":"194.2.115.128\/25", + "version":60758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.115.128", + "prefixLen":25, + "network":"194.2.115.128\/25", + "version":60758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.128.0", + "prefixLen":25, + "network":"194.2.128.0\/25", + "version":60757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.128.0", + "prefixLen":25, + "network":"194.2.128.0\/25", + "version":60757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.128.128", + "prefixLen":25, + "network":"194.2.128.128\/25", + "version":60756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.128.128", + "prefixLen":25, + "network":"194.2.128.128\/25", + "version":60756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.129.0", + "prefixLen":25, + "network":"194.2.129.0\/25", + "version":60755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.129.0", + "prefixLen":25, + "network":"194.2.129.0\/25", + "version":60755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.129.128", + "prefixLen":25, + "network":"194.2.129.128\/25", + "version":60754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.129.128", + "prefixLen":25, + "network":"194.2.129.128\/25", + "version":60754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.130.0", + "prefixLen":25, + "network":"194.2.130.0\/25", + "version":60753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.130.0", + "prefixLen":25, + "network":"194.2.130.0\/25", + "version":60753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.130.128", + "prefixLen":25, + "network":"194.2.130.128\/25", + "version":60752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.130.128", + "prefixLen":25, + "network":"194.2.130.128\/25", + "version":60752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.131.0", + "prefixLen":25, + "network":"194.2.131.0\/25", + "version":60751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.131.0", + "prefixLen":25, + "network":"194.2.131.0\/25", + "version":60751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.131.128", + "prefixLen":25, + "network":"194.2.131.128\/25", + "version":60750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.131.128", + "prefixLen":25, + "network":"194.2.131.128\/25", + "version":60750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.144.0", + "prefixLen":25, + "network":"194.2.144.0\/25", + "version":60749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.144.0", + "prefixLen":25, + "network":"194.2.144.0\/25", + "version":60749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.144.128", + "prefixLen":25, + "network":"194.2.144.128\/25", + "version":60748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.144.128", + "prefixLen":25, + "network":"194.2.144.128\/25", + "version":60748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.145.0", + "prefixLen":25, + "network":"194.2.145.0\/25", + "version":60747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.145.0", + "prefixLen":25, + "network":"194.2.145.0\/25", + "version":60747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.145.128", + "prefixLen":25, + "network":"194.2.145.128\/25", + "version":60746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.145.128", + "prefixLen":25, + "network":"194.2.145.128\/25", + "version":60746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.146.0", + "prefixLen":25, + "network":"194.2.146.0\/25", + "version":60745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.146.0", + "prefixLen":25, + "network":"194.2.146.0\/25", + "version":60745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.146.128", + "prefixLen":25, + "network":"194.2.146.128\/25", + "version":60744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.146.128", + "prefixLen":25, + "network":"194.2.146.128\/25", + "version":60744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.147.0", + "prefixLen":25, + "network":"194.2.147.0\/25", + "version":60743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.147.0", + "prefixLen":25, + "network":"194.2.147.0\/25", + "version":60743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.147.128", + "prefixLen":25, + "network":"194.2.147.128\/25", + "version":60742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.147.128", + "prefixLen":25, + "network":"194.2.147.128\/25", + "version":60742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.160.0", + "prefixLen":25, + "network":"194.2.160.0\/25", + "version":60741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.160.0", + "prefixLen":25, + "network":"194.2.160.0\/25", + "version":60741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.160.128", + "prefixLen":25, + "network":"194.2.160.128\/25", + "version":60740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.160.128", + "prefixLen":25, + "network":"194.2.160.128\/25", + "version":60740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.161.0", + "prefixLen":25, + "network":"194.2.161.0\/25", + "version":60739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.161.0", + "prefixLen":25, + "network":"194.2.161.0\/25", + "version":60739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.161.128", + "prefixLen":25, + "network":"194.2.161.128\/25", + "version":60738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.161.128", + "prefixLen":25, + "network":"194.2.161.128\/25", + "version":60738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.162.0", + "prefixLen":25, + "network":"194.2.162.0\/25", + "version":60737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.162.0", + "prefixLen":25, + "network":"194.2.162.0\/25", + "version":60737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.162.128", + "prefixLen":25, + "network":"194.2.162.128\/25", + "version":60736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.162.128", + "prefixLen":25, + "network":"194.2.162.128\/25", + "version":60736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.163.0", + "prefixLen":25, + "network":"194.2.163.0\/25", + "version":60735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.163.0", + "prefixLen":25, + "network":"194.2.163.0\/25", + "version":60735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.163.128", + "prefixLen":25, + "network":"194.2.163.128\/25", + "version":60734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.163.128", + "prefixLen":25, + "network":"194.2.163.128\/25", + "version":60734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.176.0", + "prefixLen":25, + "network":"194.2.176.0\/25", + "version":60733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.176.0", + "prefixLen":25, + "network":"194.2.176.0\/25", + "version":60733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.176.128", + "prefixLen":25, + "network":"194.2.176.128\/25", + "version":60732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.176.128", + "prefixLen":25, + "network":"194.2.176.128\/25", + "version":60732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.177.0", + "prefixLen":25, + "network":"194.2.177.0\/25", + "version":60731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.177.0", + "prefixLen":25, + "network":"194.2.177.0\/25", + "version":60731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.177.128", + "prefixLen":25, + "network":"194.2.177.128\/25", + "version":60730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.177.128", + "prefixLen":25, + "network":"194.2.177.128\/25", + "version":60730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.178.0", + "prefixLen":25, + "network":"194.2.178.0\/25", + "version":60729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.178.0", + "prefixLen":25, + "network":"194.2.178.0\/25", + "version":60729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.178.128", + "prefixLen":25, + "network":"194.2.178.128\/25", + "version":60728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.178.128", + "prefixLen":25, + "network":"194.2.178.128\/25", + "version":60728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.179.0", + "prefixLen":25, + "network":"194.2.179.0\/25", + "version":60727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.179.0", + "prefixLen":25, + "network":"194.2.179.0\/25", + "version":60727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.179.128", + "prefixLen":25, + "network":"194.2.179.128\/25", + "version":60726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.179.128", + "prefixLen":25, + "network":"194.2.179.128\/25", + "version":60726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.192.0", + "prefixLen":25, + "network":"194.2.192.0\/25", + "version":60725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.192.0", + "prefixLen":25, + "network":"194.2.192.0\/25", + "version":60725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.192.128", + "prefixLen":25, + "network":"194.2.192.128\/25", + "version":60724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.192.128", + "prefixLen":25, + "network":"194.2.192.128\/25", + "version":60724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.193.0", + "prefixLen":25, + "network":"194.2.193.0\/25", + "version":60723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.193.0", + "prefixLen":25, + "network":"194.2.193.0\/25", + "version":60723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.193.128", + "prefixLen":25, + "network":"194.2.193.128\/25", + "version":60722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.193.128", + "prefixLen":25, + "network":"194.2.193.128\/25", + "version":60722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.194.0", + "prefixLen":25, + "network":"194.2.194.0\/25", + "version":60721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.194.0", + "prefixLen":25, + "network":"194.2.194.0\/25", + "version":60721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.194.128", + "prefixLen":25, + "network":"194.2.194.128\/25", + "version":60720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.194.128", + "prefixLen":25, + "network":"194.2.194.128\/25", + "version":60720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.195.0", + "prefixLen":25, + "network":"194.2.195.0\/25", + "version":60719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.195.0", + "prefixLen":25, + "network":"194.2.195.0\/25", + "version":60719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.195.128", + "prefixLen":25, + "network":"194.2.195.128\/25", + "version":60718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.195.128", + "prefixLen":25, + "network":"194.2.195.128\/25", + "version":60718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.208.0", + "prefixLen":25, + "network":"194.2.208.0\/25", + "version":60717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.208.0", + "prefixLen":25, + "network":"194.2.208.0\/25", + "version":60717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.208.128", + "prefixLen":25, + "network":"194.2.208.128\/25", + "version":60716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.208.128", + "prefixLen":25, + "network":"194.2.208.128\/25", + "version":60716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.209.0", + "prefixLen":25, + "network":"194.2.209.0\/25", + "version":60715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.209.0", + "prefixLen":25, + "network":"194.2.209.0\/25", + "version":60715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.209.128", + "prefixLen":25, + "network":"194.2.209.128\/25", + "version":60714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.209.128", + "prefixLen":25, + "network":"194.2.209.128\/25", + "version":60714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.210.0", + "prefixLen":25, + "network":"194.2.210.0\/25", + "version":60713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.210.0", + "prefixLen":25, + "network":"194.2.210.0\/25", + "version":60713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.210.128", + "prefixLen":25, + "network":"194.2.210.128\/25", + "version":60712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.210.128", + "prefixLen":25, + "network":"194.2.210.128\/25", + "version":60712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.211.0", + "prefixLen":25, + "network":"194.2.211.0\/25", + "version":60711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.211.0", + "prefixLen":25, + "network":"194.2.211.0\/25", + "version":60711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.211.128", + "prefixLen":25, + "network":"194.2.211.128\/25", + "version":60710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.211.128", + "prefixLen":25, + "network":"194.2.211.128\/25", + "version":60710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.224.0", + "prefixLen":25, + "network":"194.2.224.0\/25", + "version":60709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.224.0", + "prefixLen":25, + "network":"194.2.224.0\/25", + "version":60709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.224.128", + "prefixLen":25, + "network":"194.2.224.128\/25", + "version":60708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.224.128", + "prefixLen":25, + "network":"194.2.224.128\/25", + "version":60708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.225.0", + "prefixLen":25, + "network":"194.2.225.0\/25", + "version":60707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.225.0", + "prefixLen":25, + "network":"194.2.225.0\/25", + "version":60707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.225.128", + "prefixLen":25, + "network":"194.2.225.128\/25", + "version":60706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.225.128", + "prefixLen":25, + "network":"194.2.225.128\/25", + "version":60706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.226.0", + "prefixLen":25, + "network":"194.2.226.0\/25", + "version":60705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.226.0", + "prefixLen":25, + "network":"194.2.226.0\/25", + "version":60705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.226.128", + "prefixLen":25, + "network":"194.2.226.128\/25", + "version":60704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.226.128", + "prefixLen":25, + "network":"194.2.226.128\/25", + "version":60704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.227.0", + "prefixLen":25, + "network":"194.2.227.0\/25", + "version":60703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.227.0", + "prefixLen":25, + "network":"194.2.227.0\/25", + "version":60703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.227.128", + "prefixLen":25, + "network":"194.2.227.128\/25", + "version":60702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.227.128", + "prefixLen":25, + "network":"194.2.227.128\/25", + "version":60702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.240.0", + "prefixLen":25, + "network":"194.2.240.0\/25", + "version":60701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.240.0", + "prefixLen":25, + "network":"194.2.240.0\/25", + "version":60701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.240.128", + "prefixLen":25, + "network":"194.2.240.128\/25", + "version":60700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.240.128", + "prefixLen":25, + "network":"194.2.240.128\/25", + "version":60700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.241.0", + "prefixLen":25, + "network":"194.2.241.0\/25", + "version":60699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.241.0", + "prefixLen":25, + "network":"194.2.241.0\/25", + "version":60699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.241.128", + "prefixLen":25, + "network":"194.2.241.128\/25", + "version":60698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.241.128", + "prefixLen":25, + "network":"194.2.241.128\/25", + "version":60698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.242.0", + "prefixLen":25, + "network":"194.2.242.0\/25", + "version":60697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.242.0", + "prefixLen":25, + "network":"194.2.242.0\/25", + "version":60697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.242.128", + "prefixLen":25, + "network":"194.2.242.128\/25", + "version":60696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.242.128", + "prefixLen":25, + "network":"194.2.242.128\/25", + "version":60696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.243.0", + "prefixLen":25, + "network":"194.2.243.0\/25", + "version":60695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.243.0", + "prefixLen":25, + "network":"194.2.243.0\/25", + "version":60695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.2.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.2.243.128", + "prefixLen":25, + "network":"194.2.243.128\/25", + "version":60694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.2.243.128", + "prefixLen":25, + "network":"194.2.243.128\/25", + "version":60694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64946 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.0.0", + "prefixLen":25, + "network":"194.3.0.0\/25", + "version":60821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.0.0", + "prefixLen":25, + "network":"194.3.0.0\/25", + "version":60821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.0.128", + "prefixLen":25, + "network":"194.3.0.128\/25", + "version":60948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.0.128", + "prefixLen":25, + "network":"194.3.0.128\/25", + "version":60948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.1.0", + "prefixLen":25, + "network":"194.3.1.0\/25", + "version":60947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.1.0", + "prefixLen":25, + "network":"194.3.1.0\/25", + "version":60947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.1.128", + "prefixLen":25, + "network":"194.3.1.128\/25", + "version":60946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.1.128", + "prefixLen":25, + "network":"194.3.1.128\/25", + "version":60946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.2.0", + "prefixLen":25, + "network":"194.3.2.0\/25", + "version":60945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.2.0", + "prefixLen":25, + "network":"194.3.2.0\/25", + "version":60945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.2.128", + "prefixLen":25, + "network":"194.3.2.128\/25", + "version":60944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.2.128", + "prefixLen":25, + "network":"194.3.2.128\/25", + "version":60944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.3.0", + "prefixLen":25, + "network":"194.3.3.0\/25", + "version":60943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.3.0", + "prefixLen":25, + "network":"194.3.3.0\/25", + "version":60943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.3.128", + "prefixLen":25, + "network":"194.3.3.128\/25", + "version":60942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.3.128", + "prefixLen":25, + "network":"194.3.3.128\/25", + "version":60942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.16.0", + "prefixLen":25, + "network":"194.3.16.0\/25", + "version":60941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.16.0", + "prefixLen":25, + "network":"194.3.16.0\/25", + "version":60941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.16.128", + "prefixLen":25, + "network":"194.3.16.128\/25", + "version":60940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.16.128", + "prefixLen":25, + "network":"194.3.16.128\/25", + "version":60940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.17.0", + "prefixLen":25, + "network":"194.3.17.0\/25", + "version":60939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.17.0", + "prefixLen":25, + "network":"194.3.17.0\/25", + "version":60939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.17.128", + "prefixLen":25, + "network":"194.3.17.128\/25", + "version":60938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.17.128", + "prefixLen":25, + "network":"194.3.17.128\/25", + "version":60938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.18.0", + "prefixLen":25, + "network":"194.3.18.0\/25", + "version":60937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.18.0", + "prefixLen":25, + "network":"194.3.18.0\/25", + "version":60937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.18.128", + "prefixLen":25, + "network":"194.3.18.128\/25", + "version":60936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.18.128", + "prefixLen":25, + "network":"194.3.18.128\/25", + "version":60936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.19.0", + "prefixLen":25, + "network":"194.3.19.0\/25", + "version":60935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.19.0", + "prefixLen":25, + "network":"194.3.19.0\/25", + "version":60935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.19.128", + "prefixLen":25, + "network":"194.3.19.128\/25", + "version":60934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.19.128", + "prefixLen":25, + "network":"194.3.19.128\/25", + "version":60934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.32.0", + "prefixLen":25, + "network":"194.3.32.0\/25", + "version":60933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.32.0", + "prefixLen":25, + "network":"194.3.32.0\/25", + "version":60933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.32.128", + "prefixLen":25, + "network":"194.3.32.128\/25", + "version":60932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.32.128", + "prefixLen":25, + "network":"194.3.32.128\/25", + "version":60932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.33.0", + "prefixLen":25, + "network":"194.3.33.0\/25", + "version":60931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.33.0", + "prefixLen":25, + "network":"194.3.33.0\/25", + "version":60931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.33.128", + "prefixLen":25, + "network":"194.3.33.128\/25", + "version":60930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.33.128", + "prefixLen":25, + "network":"194.3.33.128\/25", + "version":60930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.34.0", + "prefixLen":25, + "network":"194.3.34.0\/25", + "version":60929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.34.0", + "prefixLen":25, + "network":"194.3.34.0\/25", + "version":60929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.34.128", + "prefixLen":25, + "network":"194.3.34.128\/25", + "version":60928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.34.128", + "prefixLen":25, + "network":"194.3.34.128\/25", + "version":60928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.35.0", + "prefixLen":25, + "network":"194.3.35.0\/25", + "version":60927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.35.0", + "prefixLen":25, + "network":"194.3.35.0\/25", + "version":60927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.35.128", + "prefixLen":25, + "network":"194.3.35.128\/25", + "version":60926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.35.128", + "prefixLen":25, + "network":"194.3.35.128\/25", + "version":60926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.48.0", + "prefixLen":25, + "network":"194.3.48.0\/25", + "version":60925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.48.0", + "prefixLen":25, + "network":"194.3.48.0\/25", + "version":60925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.48.128", + "prefixLen":25, + "network":"194.3.48.128\/25", + "version":60924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.48.128", + "prefixLen":25, + "network":"194.3.48.128\/25", + "version":60924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.49.0", + "prefixLen":25, + "network":"194.3.49.0\/25", + "version":60923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.49.0", + "prefixLen":25, + "network":"194.3.49.0\/25", + "version":60923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.49.128", + "prefixLen":25, + "network":"194.3.49.128\/25", + "version":60922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.49.128", + "prefixLen":25, + "network":"194.3.49.128\/25", + "version":60922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.50.0", + "prefixLen":25, + "network":"194.3.50.0\/25", + "version":60921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.50.0", + "prefixLen":25, + "network":"194.3.50.0\/25", + "version":60921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.50.128", + "prefixLen":25, + "network":"194.3.50.128\/25", + "version":60920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.50.128", + "prefixLen":25, + "network":"194.3.50.128\/25", + "version":60920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.51.0", + "prefixLen":25, + "network":"194.3.51.0\/25", + "version":60919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.51.0", + "prefixLen":25, + "network":"194.3.51.0\/25", + "version":60919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.51.128", + "prefixLen":25, + "network":"194.3.51.128\/25", + "version":60918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.51.128", + "prefixLen":25, + "network":"194.3.51.128\/25", + "version":60918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.64.0", + "prefixLen":25, + "network":"194.3.64.0\/25", + "version":60917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.64.0", + "prefixLen":25, + "network":"194.3.64.0\/25", + "version":60917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.64.128", + "prefixLen":25, + "network":"194.3.64.128\/25", + "version":60916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.64.128", + "prefixLen":25, + "network":"194.3.64.128\/25", + "version":60916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.65.0", + "prefixLen":25, + "network":"194.3.65.0\/25", + "version":60915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.65.0", + "prefixLen":25, + "network":"194.3.65.0\/25", + "version":60915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.65.128", + "prefixLen":25, + "network":"194.3.65.128\/25", + "version":60914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.65.128", + "prefixLen":25, + "network":"194.3.65.128\/25", + "version":60914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.66.0", + "prefixLen":25, + "network":"194.3.66.0\/25", + "version":60913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.66.0", + "prefixLen":25, + "network":"194.3.66.0\/25", + "version":60913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.66.128", + "prefixLen":25, + "network":"194.3.66.128\/25", + "version":60912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.66.128", + "prefixLen":25, + "network":"194.3.66.128\/25", + "version":60912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.67.0", + "prefixLen":25, + "network":"194.3.67.0\/25", + "version":60911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.67.0", + "prefixLen":25, + "network":"194.3.67.0\/25", + "version":60911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.67.128", + "prefixLen":25, + "network":"194.3.67.128\/25", + "version":60910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.67.128", + "prefixLen":25, + "network":"194.3.67.128\/25", + "version":60910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.80.0", + "prefixLen":25, + "network":"194.3.80.0\/25", + "version":60909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.80.0", + "prefixLen":25, + "network":"194.3.80.0\/25", + "version":60909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.80.128", + "prefixLen":25, + "network":"194.3.80.128\/25", + "version":60908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.80.128", + "prefixLen":25, + "network":"194.3.80.128\/25", + "version":60908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.81.0", + "prefixLen":25, + "network":"194.3.81.0\/25", + "version":60907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.81.0", + "prefixLen":25, + "network":"194.3.81.0\/25", + "version":60907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.81.128", + "prefixLen":25, + "network":"194.3.81.128\/25", + "version":60906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.81.128", + "prefixLen":25, + "network":"194.3.81.128\/25", + "version":60906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.82.0", + "prefixLen":25, + "network":"194.3.82.0\/25", + "version":60905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.82.0", + "prefixLen":25, + "network":"194.3.82.0\/25", + "version":60905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.82.128", + "prefixLen":25, + "network":"194.3.82.128\/25", + "version":60904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.82.128", + "prefixLen":25, + "network":"194.3.82.128\/25", + "version":60904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.83.0", + "prefixLen":25, + "network":"194.3.83.0\/25", + "version":60903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.83.0", + "prefixLen":25, + "network":"194.3.83.0\/25", + "version":60903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.83.128", + "prefixLen":25, + "network":"194.3.83.128\/25", + "version":60902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.83.128", + "prefixLen":25, + "network":"194.3.83.128\/25", + "version":60902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.96.0", + "prefixLen":25, + "network":"194.3.96.0\/25", + "version":60901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.96.0", + "prefixLen":25, + "network":"194.3.96.0\/25", + "version":60901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.96.128", + "prefixLen":25, + "network":"194.3.96.128\/25", + "version":60900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.96.128", + "prefixLen":25, + "network":"194.3.96.128\/25", + "version":60900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.97.0", + "prefixLen":25, + "network":"194.3.97.0\/25", + "version":60899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.97.0", + "prefixLen":25, + "network":"194.3.97.0\/25", + "version":60899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.97.128", + "prefixLen":25, + "network":"194.3.97.128\/25", + "version":60898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.97.128", + "prefixLen":25, + "network":"194.3.97.128\/25", + "version":60898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.98.0", + "prefixLen":25, + "network":"194.3.98.0\/25", + "version":60897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.98.0", + "prefixLen":25, + "network":"194.3.98.0\/25", + "version":60897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.98.128", + "prefixLen":25, + "network":"194.3.98.128\/25", + "version":60896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.98.128", + "prefixLen":25, + "network":"194.3.98.128\/25", + "version":60896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.99.0", + "prefixLen":25, + "network":"194.3.99.0\/25", + "version":60895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.99.0", + "prefixLen":25, + "network":"194.3.99.0\/25", + "version":60895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.99.128", + "prefixLen":25, + "network":"194.3.99.128\/25", + "version":60894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.99.128", + "prefixLen":25, + "network":"194.3.99.128\/25", + "version":60894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.112.0", + "prefixLen":25, + "network":"194.3.112.0\/25", + "version":60893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.112.0", + "prefixLen":25, + "network":"194.3.112.0\/25", + "version":60893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.112.128", + "prefixLen":25, + "network":"194.3.112.128\/25", + "version":60892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.112.128", + "prefixLen":25, + "network":"194.3.112.128\/25", + "version":60892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.113.0", + "prefixLen":25, + "network":"194.3.113.0\/25", + "version":60891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.113.0", + "prefixLen":25, + "network":"194.3.113.0\/25", + "version":60891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.113.128", + "prefixLen":25, + "network":"194.3.113.128\/25", + "version":60890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.113.128", + "prefixLen":25, + "network":"194.3.113.128\/25", + "version":60890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.114.0", + "prefixLen":25, + "network":"194.3.114.0\/25", + "version":60889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.114.0", + "prefixLen":25, + "network":"194.3.114.0\/25", + "version":60889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.114.128", + "prefixLen":25, + "network":"194.3.114.128\/25", + "version":60888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.114.128", + "prefixLen":25, + "network":"194.3.114.128\/25", + "version":60888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.115.0", + "prefixLen":25, + "network":"194.3.115.0\/25", + "version":60887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.115.0", + "prefixLen":25, + "network":"194.3.115.0\/25", + "version":60887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.115.128", + "prefixLen":25, + "network":"194.3.115.128\/25", + "version":60886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.115.128", + "prefixLen":25, + "network":"194.3.115.128\/25", + "version":60886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.128.0", + "prefixLen":25, + "network":"194.3.128.0\/25", + "version":60885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.128.0", + "prefixLen":25, + "network":"194.3.128.0\/25", + "version":60885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.128.128", + "prefixLen":25, + "network":"194.3.128.128\/25", + "version":60884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.128.128", + "prefixLen":25, + "network":"194.3.128.128\/25", + "version":60884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.129.0", + "prefixLen":25, + "network":"194.3.129.0\/25", + "version":60883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.129.0", + "prefixLen":25, + "network":"194.3.129.0\/25", + "version":60883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.129.128", + "prefixLen":25, + "network":"194.3.129.128\/25", + "version":60882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.129.128", + "prefixLen":25, + "network":"194.3.129.128\/25", + "version":60882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.130.0", + "prefixLen":25, + "network":"194.3.130.0\/25", + "version":60881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.130.0", + "prefixLen":25, + "network":"194.3.130.0\/25", + "version":60881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.130.128", + "prefixLen":25, + "network":"194.3.130.128\/25", + "version":60880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.130.128", + "prefixLen":25, + "network":"194.3.130.128\/25", + "version":60880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.131.0", + "prefixLen":25, + "network":"194.3.131.0\/25", + "version":60879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.131.0", + "prefixLen":25, + "network":"194.3.131.0\/25", + "version":60879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.131.128", + "prefixLen":25, + "network":"194.3.131.128\/25", + "version":60878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.131.128", + "prefixLen":25, + "network":"194.3.131.128\/25", + "version":60878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.144.0", + "prefixLen":25, + "network":"194.3.144.0\/25", + "version":60877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.144.0", + "prefixLen":25, + "network":"194.3.144.0\/25", + "version":60877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.144.128", + "prefixLen":25, + "network":"194.3.144.128\/25", + "version":60876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.144.128", + "prefixLen":25, + "network":"194.3.144.128\/25", + "version":60876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.145.0", + "prefixLen":25, + "network":"194.3.145.0\/25", + "version":60875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.145.0", + "prefixLen":25, + "network":"194.3.145.0\/25", + "version":60875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.145.128", + "prefixLen":25, + "network":"194.3.145.128\/25", + "version":60874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.145.128", + "prefixLen":25, + "network":"194.3.145.128\/25", + "version":60874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.146.0", + "prefixLen":25, + "network":"194.3.146.0\/25", + "version":60873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.146.0", + "prefixLen":25, + "network":"194.3.146.0\/25", + "version":60873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.146.128", + "prefixLen":25, + "network":"194.3.146.128\/25", + "version":60872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.146.128", + "prefixLen":25, + "network":"194.3.146.128\/25", + "version":60872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.147.0", + "prefixLen":25, + "network":"194.3.147.0\/25", + "version":60871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.147.0", + "prefixLen":25, + "network":"194.3.147.0\/25", + "version":60871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.147.128", + "prefixLen":25, + "network":"194.3.147.128\/25", + "version":60870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.147.128", + "prefixLen":25, + "network":"194.3.147.128\/25", + "version":60870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.160.0", + "prefixLen":25, + "network":"194.3.160.0\/25", + "version":60869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.160.0", + "prefixLen":25, + "network":"194.3.160.0\/25", + "version":60869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.160.128", + "prefixLen":25, + "network":"194.3.160.128\/25", + "version":60868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.160.128", + "prefixLen":25, + "network":"194.3.160.128\/25", + "version":60868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.161.0", + "prefixLen":25, + "network":"194.3.161.0\/25", + "version":60867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.161.0", + "prefixLen":25, + "network":"194.3.161.0\/25", + "version":60867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.161.128", + "prefixLen":25, + "network":"194.3.161.128\/25", + "version":60866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.161.128", + "prefixLen":25, + "network":"194.3.161.128\/25", + "version":60866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.162.0", + "prefixLen":25, + "network":"194.3.162.0\/25", + "version":60865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.162.0", + "prefixLen":25, + "network":"194.3.162.0\/25", + "version":60865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.162.128", + "prefixLen":25, + "network":"194.3.162.128\/25", + "version":60864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.162.128", + "prefixLen":25, + "network":"194.3.162.128\/25", + "version":60864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.163.0", + "prefixLen":25, + "network":"194.3.163.0\/25", + "version":60863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.163.0", + "prefixLen":25, + "network":"194.3.163.0\/25", + "version":60863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.163.128", + "prefixLen":25, + "network":"194.3.163.128\/25", + "version":60862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.163.128", + "prefixLen":25, + "network":"194.3.163.128\/25", + "version":60862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.176.0", + "prefixLen":25, + "network":"194.3.176.0\/25", + "version":60861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.176.0", + "prefixLen":25, + "network":"194.3.176.0\/25", + "version":60861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.176.128", + "prefixLen":25, + "network":"194.3.176.128\/25", + "version":60860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.176.128", + "prefixLen":25, + "network":"194.3.176.128\/25", + "version":60860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.177.0", + "prefixLen":25, + "network":"194.3.177.0\/25", + "version":60859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.177.0", + "prefixLen":25, + "network":"194.3.177.0\/25", + "version":60859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.177.128", + "prefixLen":25, + "network":"194.3.177.128\/25", + "version":60858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.177.128", + "prefixLen":25, + "network":"194.3.177.128\/25", + "version":60858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.178.0", + "prefixLen":25, + "network":"194.3.178.0\/25", + "version":60857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.178.0", + "prefixLen":25, + "network":"194.3.178.0\/25", + "version":60857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.178.128", + "prefixLen":25, + "network":"194.3.178.128\/25", + "version":60856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.178.128", + "prefixLen":25, + "network":"194.3.178.128\/25", + "version":60856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.179.0", + "prefixLen":25, + "network":"194.3.179.0\/25", + "version":60855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.179.0", + "prefixLen":25, + "network":"194.3.179.0\/25", + "version":60855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.179.128", + "prefixLen":25, + "network":"194.3.179.128\/25", + "version":60854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.179.128", + "prefixLen":25, + "network":"194.3.179.128\/25", + "version":60854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.192.0", + "prefixLen":25, + "network":"194.3.192.0\/25", + "version":60853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.192.0", + "prefixLen":25, + "network":"194.3.192.0\/25", + "version":60853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.192.128", + "prefixLen":25, + "network":"194.3.192.128\/25", + "version":60852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.192.128", + "prefixLen":25, + "network":"194.3.192.128\/25", + "version":60852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.193.0", + "prefixLen":25, + "network":"194.3.193.0\/25", + "version":60851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.193.0", + "prefixLen":25, + "network":"194.3.193.0\/25", + "version":60851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.193.128", + "prefixLen":25, + "network":"194.3.193.128\/25", + "version":60850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.193.128", + "prefixLen":25, + "network":"194.3.193.128\/25", + "version":60850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.194.0", + "prefixLen":25, + "network":"194.3.194.0\/25", + "version":60849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.194.0", + "prefixLen":25, + "network":"194.3.194.0\/25", + "version":60849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.194.128", + "prefixLen":25, + "network":"194.3.194.128\/25", + "version":60848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.194.128", + "prefixLen":25, + "network":"194.3.194.128\/25", + "version":60848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.195.0", + "prefixLen":25, + "network":"194.3.195.0\/25", + "version":60847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.195.0", + "prefixLen":25, + "network":"194.3.195.0\/25", + "version":60847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.195.128", + "prefixLen":25, + "network":"194.3.195.128\/25", + "version":60846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.195.128", + "prefixLen":25, + "network":"194.3.195.128\/25", + "version":60846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.208.0", + "prefixLen":25, + "network":"194.3.208.0\/25", + "version":60845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.208.0", + "prefixLen":25, + "network":"194.3.208.0\/25", + "version":60845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.208.128", + "prefixLen":25, + "network":"194.3.208.128\/25", + "version":60844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.208.128", + "prefixLen":25, + "network":"194.3.208.128\/25", + "version":60844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.209.0", + "prefixLen":25, + "network":"194.3.209.0\/25", + "version":60843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.209.0", + "prefixLen":25, + "network":"194.3.209.0\/25", + "version":60843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.209.128", + "prefixLen":25, + "network":"194.3.209.128\/25", + "version":60842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.209.128", + "prefixLen":25, + "network":"194.3.209.128\/25", + "version":60842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.210.0", + "prefixLen":25, + "network":"194.3.210.0\/25", + "version":60841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.210.0", + "prefixLen":25, + "network":"194.3.210.0\/25", + "version":60841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.210.128", + "prefixLen":25, + "network":"194.3.210.128\/25", + "version":60840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.210.128", + "prefixLen":25, + "network":"194.3.210.128\/25", + "version":60840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.211.0", + "prefixLen":25, + "network":"194.3.211.0\/25", + "version":60839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.211.0", + "prefixLen":25, + "network":"194.3.211.0\/25", + "version":60839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.211.128", + "prefixLen":25, + "network":"194.3.211.128\/25", + "version":60838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.211.128", + "prefixLen":25, + "network":"194.3.211.128\/25", + "version":60838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.224.0", + "prefixLen":25, + "network":"194.3.224.0\/25", + "version":60837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.224.0", + "prefixLen":25, + "network":"194.3.224.0\/25", + "version":60837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.224.128", + "prefixLen":25, + "network":"194.3.224.128\/25", + "version":60836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.224.128", + "prefixLen":25, + "network":"194.3.224.128\/25", + "version":60836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.225.0", + "prefixLen":25, + "network":"194.3.225.0\/25", + "version":60835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.225.0", + "prefixLen":25, + "network":"194.3.225.0\/25", + "version":60835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.225.128", + "prefixLen":25, + "network":"194.3.225.128\/25", + "version":60834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.225.128", + "prefixLen":25, + "network":"194.3.225.128\/25", + "version":60834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.226.0", + "prefixLen":25, + "network":"194.3.226.0\/25", + "version":60833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.226.0", + "prefixLen":25, + "network":"194.3.226.0\/25", + "version":60833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.226.128", + "prefixLen":25, + "network":"194.3.226.128\/25", + "version":60832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.226.128", + "prefixLen":25, + "network":"194.3.226.128\/25", + "version":60832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.227.0", + "prefixLen":25, + "network":"194.3.227.0\/25", + "version":60831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.227.0", + "prefixLen":25, + "network":"194.3.227.0\/25", + "version":60831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.227.128", + "prefixLen":25, + "network":"194.3.227.128\/25", + "version":60830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.227.128", + "prefixLen":25, + "network":"194.3.227.128\/25", + "version":60830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.240.0", + "prefixLen":25, + "network":"194.3.240.0\/25", + "version":60829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.240.0", + "prefixLen":25, + "network":"194.3.240.0\/25", + "version":60829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.240.128", + "prefixLen":25, + "network":"194.3.240.128\/25", + "version":60828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.240.128", + "prefixLen":25, + "network":"194.3.240.128\/25", + "version":60828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.241.0", + "prefixLen":25, + "network":"194.3.241.0\/25", + "version":60827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.241.0", + "prefixLen":25, + "network":"194.3.241.0\/25", + "version":60827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.241.128", + "prefixLen":25, + "network":"194.3.241.128\/25", + "version":60826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.241.128", + "prefixLen":25, + "network":"194.3.241.128\/25", + "version":60826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.242.0", + "prefixLen":25, + "network":"194.3.242.0\/25", + "version":60825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.242.0", + "prefixLen":25, + "network":"194.3.242.0\/25", + "version":60825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.242.128", + "prefixLen":25, + "network":"194.3.242.128\/25", + "version":60824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.242.128", + "prefixLen":25, + "network":"194.3.242.128\/25", + "version":60824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.243.0", + "prefixLen":25, + "network":"194.3.243.0\/25", + "version":60823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.243.0", + "prefixLen":25, + "network":"194.3.243.0\/25", + "version":60823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.3.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.3.243.128", + "prefixLen":25, + "network":"194.3.243.128\/25", + "version":60822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.3.243.128", + "prefixLen":25, + "network":"194.3.243.128\/25", + "version":60822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64947 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.0.0", + "prefixLen":25, + "network":"194.4.0.0\/25", + "version":60949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.0.0", + "prefixLen":25, + "network":"194.4.0.0\/25", + "version":60949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.0.128", + "prefixLen":25, + "network":"194.4.0.128\/25", + "version":61076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.0.128", + "prefixLen":25, + "network":"194.4.0.128\/25", + "version":61076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.1.0", + "prefixLen":25, + "network":"194.4.1.0\/25", + "version":61075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.1.0", + "prefixLen":25, + "network":"194.4.1.0\/25", + "version":61075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.1.128", + "prefixLen":25, + "network":"194.4.1.128\/25", + "version":61074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.1.128", + "prefixLen":25, + "network":"194.4.1.128\/25", + "version":61074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.2.0", + "prefixLen":25, + "network":"194.4.2.0\/25", + "version":61073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.2.0", + "prefixLen":25, + "network":"194.4.2.0\/25", + "version":61073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.2.128", + "prefixLen":25, + "network":"194.4.2.128\/25", + "version":61072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.2.128", + "prefixLen":25, + "network":"194.4.2.128\/25", + "version":61072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.3.0", + "prefixLen":25, + "network":"194.4.3.0\/25", + "version":61071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.3.0", + "prefixLen":25, + "network":"194.4.3.0\/25", + "version":61071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.3.128", + "prefixLen":25, + "network":"194.4.3.128\/25", + "version":61070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.3.128", + "prefixLen":25, + "network":"194.4.3.128\/25", + "version":61070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.16.0", + "prefixLen":25, + "network":"194.4.16.0\/25", + "version":61069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.16.0", + "prefixLen":25, + "network":"194.4.16.0\/25", + "version":61069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.16.128", + "prefixLen":25, + "network":"194.4.16.128\/25", + "version":61068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.16.128", + "prefixLen":25, + "network":"194.4.16.128\/25", + "version":61068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.17.0", + "prefixLen":25, + "network":"194.4.17.0\/25", + "version":61067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.17.0", + "prefixLen":25, + "network":"194.4.17.0\/25", + "version":61067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.17.128", + "prefixLen":25, + "network":"194.4.17.128\/25", + "version":61066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.17.128", + "prefixLen":25, + "network":"194.4.17.128\/25", + "version":61066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.18.0", + "prefixLen":25, + "network":"194.4.18.0\/25", + "version":61065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.18.0", + "prefixLen":25, + "network":"194.4.18.0\/25", + "version":61065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.18.128", + "prefixLen":25, + "network":"194.4.18.128\/25", + "version":61064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.18.128", + "prefixLen":25, + "network":"194.4.18.128\/25", + "version":61064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.19.0", + "prefixLen":25, + "network":"194.4.19.0\/25", + "version":61063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.19.0", + "prefixLen":25, + "network":"194.4.19.0\/25", + "version":61063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.19.128", + "prefixLen":25, + "network":"194.4.19.128\/25", + "version":61062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.19.128", + "prefixLen":25, + "network":"194.4.19.128\/25", + "version":61062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.32.0", + "prefixLen":25, + "network":"194.4.32.0\/25", + "version":61061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.32.0", + "prefixLen":25, + "network":"194.4.32.0\/25", + "version":61061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.32.128", + "prefixLen":25, + "network":"194.4.32.128\/25", + "version":61060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.32.128", + "prefixLen":25, + "network":"194.4.32.128\/25", + "version":61060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.33.0", + "prefixLen":25, + "network":"194.4.33.0\/25", + "version":61059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.33.0", + "prefixLen":25, + "network":"194.4.33.0\/25", + "version":61059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.33.128", + "prefixLen":25, + "network":"194.4.33.128\/25", + "version":61058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.33.128", + "prefixLen":25, + "network":"194.4.33.128\/25", + "version":61058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.34.0", + "prefixLen":25, + "network":"194.4.34.0\/25", + "version":61057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.34.0", + "prefixLen":25, + "network":"194.4.34.0\/25", + "version":61057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.34.128", + "prefixLen":25, + "network":"194.4.34.128\/25", + "version":61056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.34.128", + "prefixLen":25, + "network":"194.4.34.128\/25", + "version":61056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.35.0", + "prefixLen":25, + "network":"194.4.35.0\/25", + "version":61055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.35.0", + "prefixLen":25, + "network":"194.4.35.0\/25", + "version":61055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.35.128", + "prefixLen":25, + "network":"194.4.35.128\/25", + "version":61054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.35.128", + "prefixLen":25, + "network":"194.4.35.128\/25", + "version":61054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.48.0", + "prefixLen":25, + "network":"194.4.48.0\/25", + "version":61053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.48.0", + "prefixLen":25, + "network":"194.4.48.0\/25", + "version":61053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.48.128", + "prefixLen":25, + "network":"194.4.48.128\/25", + "version":61052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.48.128", + "prefixLen":25, + "network":"194.4.48.128\/25", + "version":61052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.49.0", + "prefixLen":25, + "network":"194.4.49.0\/25", + "version":61051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.49.0", + "prefixLen":25, + "network":"194.4.49.0\/25", + "version":61051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.49.128", + "prefixLen":25, + "network":"194.4.49.128\/25", + "version":61050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.49.128", + "prefixLen":25, + "network":"194.4.49.128\/25", + "version":61050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.50.0", + "prefixLen":25, + "network":"194.4.50.0\/25", + "version":61049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.50.0", + "prefixLen":25, + "network":"194.4.50.0\/25", + "version":61049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.50.128", + "prefixLen":25, + "network":"194.4.50.128\/25", + "version":61048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.50.128", + "prefixLen":25, + "network":"194.4.50.128\/25", + "version":61048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.51.0", + "prefixLen":25, + "network":"194.4.51.0\/25", + "version":61047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.51.0", + "prefixLen":25, + "network":"194.4.51.0\/25", + "version":61047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.51.128", + "prefixLen":25, + "network":"194.4.51.128\/25", + "version":61046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.51.128", + "prefixLen":25, + "network":"194.4.51.128\/25", + "version":61046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.64.0", + "prefixLen":25, + "network":"194.4.64.0\/25", + "version":61045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.64.0", + "prefixLen":25, + "network":"194.4.64.0\/25", + "version":61045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.64.128", + "prefixLen":25, + "network":"194.4.64.128\/25", + "version":61044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.64.128", + "prefixLen":25, + "network":"194.4.64.128\/25", + "version":61044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.65.0", + "prefixLen":25, + "network":"194.4.65.0\/25", + "version":61043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.65.0", + "prefixLen":25, + "network":"194.4.65.0\/25", + "version":61043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.65.128", + "prefixLen":25, + "network":"194.4.65.128\/25", + "version":61042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.65.128", + "prefixLen":25, + "network":"194.4.65.128\/25", + "version":61042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.66.0", + "prefixLen":25, + "network":"194.4.66.0\/25", + "version":61041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.66.0", + "prefixLen":25, + "network":"194.4.66.0\/25", + "version":61041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.66.128", + "prefixLen":25, + "network":"194.4.66.128\/25", + "version":61040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.66.128", + "prefixLen":25, + "network":"194.4.66.128\/25", + "version":61040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.67.0", + "prefixLen":25, + "network":"194.4.67.0\/25", + "version":61039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.67.0", + "prefixLen":25, + "network":"194.4.67.0\/25", + "version":61039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.67.128", + "prefixLen":25, + "network":"194.4.67.128\/25", + "version":61038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.67.128", + "prefixLen":25, + "network":"194.4.67.128\/25", + "version":61038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.80.0", + "prefixLen":25, + "network":"194.4.80.0\/25", + "version":61037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.80.0", + "prefixLen":25, + "network":"194.4.80.0\/25", + "version":61037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.80.128", + "prefixLen":25, + "network":"194.4.80.128\/25", + "version":61036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.80.128", + "prefixLen":25, + "network":"194.4.80.128\/25", + "version":61036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.81.0", + "prefixLen":25, + "network":"194.4.81.0\/25", + "version":61035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.81.0", + "prefixLen":25, + "network":"194.4.81.0\/25", + "version":61035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.81.128", + "prefixLen":25, + "network":"194.4.81.128\/25", + "version":61034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.81.128", + "prefixLen":25, + "network":"194.4.81.128\/25", + "version":61034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.82.0", + "prefixLen":25, + "network":"194.4.82.0\/25", + "version":61033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.82.0", + "prefixLen":25, + "network":"194.4.82.0\/25", + "version":61033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.82.128", + "prefixLen":25, + "network":"194.4.82.128\/25", + "version":61032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.82.128", + "prefixLen":25, + "network":"194.4.82.128\/25", + "version":61032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.83.0", + "prefixLen":25, + "network":"194.4.83.0\/25", + "version":61031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.83.0", + "prefixLen":25, + "network":"194.4.83.0\/25", + "version":61031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.83.128", + "prefixLen":25, + "network":"194.4.83.128\/25", + "version":61030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.83.128", + "prefixLen":25, + "network":"194.4.83.128\/25", + "version":61030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.96.0", + "prefixLen":25, + "network":"194.4.96.0\/25", + "version":61029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.96.0", + "prefixLen":25, + "network":"194.4.96.0\/25", + "version":61029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.96.128", + "prefixLen":25, + "network":"194.4.96.128\/25", + "version":61028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.96.128", + "prefixLen":25, + "network":"194.4.96.128\/25", + "version":61028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.97.0", + "prefixLen":25, + "network":"194.4.97.0\/25", + "version":61027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.97.0", + "prefixLen":25, + "network":"194.4.97.0\/25", + "version":61027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.97.128", + "prefixLen":25, + "network":"194.4.97.128\/25", + "version":61026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.97.128", + "prefixLen":25, + "network":"194.4.97.128\/25", + "version":61026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.98.0", + "prefixLen":25, + "network":"194.4.98.0\/25", + "version":61025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.98.0", + "prefixLen":25, + "network":"194.4.98.0\/25", + "version":61025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.98.128", + "prefixLen":25, + "network":"194.4.98.128\/25", + "version":61024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.98.128", + "prefixLen":25, + "network":"194.4.98.128\/25", + "version":61024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.99.0", + "prefixLen":25, + "network":"194.4.99.0\/25", + "version":61023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.99.0", + "prefixLen":25, + "network":"194.4.99.0\/25", + "version":61023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.99.128", + "prefixLen":25, + "network":"194.4.99.128\/25", + "version":61022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.99.128", + "prefixLen":25, + "network":"194.4.99.128\/25", + "version":61022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.112.0", + "prefixLen":25, + "network":"194.4.112.0\/25", + "version":61021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.112.0", + "prefixLen":25, + "network":"194.4.112.0\/25", + "version":61021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.112.128", + "prefixLen":25, + "network":"194.4.112.128\/25", + "version":61020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.112.128", + "prefixLen":25, + "network":"194.4.112.128\/25", + "version":61020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.113.0", + "prefixLen":25, + "network":"194.4.113.0\/25", + "version":61019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.113.0", + "prefixLen":25, + "network":"194.4.113.0\/25", + "version":61019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.113.128", + "prefixLen":25, + "network":"194.4.113.128\/25", + "version":61018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.113.128", + "prefixLen":25, + "network":"194.4.113.128\/25", + "version":61018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.114.0", + "prefixLen":25, + "network":"194.4.114.0\/25", + "version":61017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.114.0", + "prefixLen":25, + "network":"194.4.114.0\/25", + "version":61017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.114.128", + "prefixLen":25, + "network":"194.4.114.128\/25", + "version":61016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.114.128", + "prefixLen":25, + "network":"194.4.114.128\/25", + "version":61016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.115.0", + "prefixLen":25, + "network":"194.4.115.0\/25", + "version":61015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.115.0", + "prefixLen":25, + "network":"194.4.115.0\/25", + "version":61015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.115.128", + "prefixLen":25, + "network":"194.4.115.128\/25", + "version":61014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.115.128", + "prefixLen":25, + "network":"194.4.115.128\/25", + "version":61014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.128.0", + "prefixLen":25, + "network":"194.4.128.0\/25", + "version":61013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.128.0", + "prefixLen":25, + "network":"194.4.128.0\/25", + "version":61013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.128.128", + "prefixLen":25, + "network":"194.4.128.128\/25", + "version":61012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.128.128", + "prefixLen":25, + "network":"194.4.128.128\/25", + "version":61012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.129.0", + "prefixLen":25, + "network":"194.4.129.0\/25", + "version":61011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.129.0", + "prefixLen":25, + "network":"194.4.129.0\/25", + "version":61011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.129.128", + "prefixLen":25, + "network":"194.4.129.128\/25", + "version":61010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.129.128", + "prefixLen":25, + "network":"194.4.129.128\/25", + "version":61010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.130.0", + "prefixLen":25, + "network":"194.4.130.0\/25", + "version":61009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.130.0", + "prefixLen":25, + "network":"194.4.130.0\/25", + "version":61009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.130.128", + "prefixLen":25, + "network":"194.4.130.128\/25", + "version":61008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.130.128", + "prefixLen":25, + "network":"194.4.130.128\/25", + "version":61008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.131.0", + "prefixLen":25, + "network":"194.4.131.0\/25", + "version":61007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.131.0", + "prefixLen":25, + "network":"194.4.131.0\/25", + "version":61007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.131.128", + "prefixLen":25, + "network":"194.4.131.128\/25", + "version":61006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.131.128", + "prefixLen":25, + "network":"194.4.131.128\/25", + "version":61006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.144.0", + "prefixLen":25, + "network":"194.4.144.0\/25", + "version":61005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.144.0", + "prefixLen":25, + "network":"194.4.144.0\/25", + "version":61005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.144.128", + "prefixLen":25, + "network":"194.4.144.128\/25", + "version":61004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.144.128", + "prefixLen":25, + "network":"194.4.144.128\/25", + "version":61004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.145.0", + "prefixLen":25, + "network":"194.4.145.0\/25", + "version":61003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.145.0", + "prefixLen":25, + "network":"194.4.145.0\/25", + "version":61003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.145.128", + "prefixLen":25, + "network":"194.4.145.128\/25", + "version":61002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.145.128", + "prefixLen":25, + "network":"194.4.145.128\/25", + "version":61002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.146.0", + "prefixLen":25, + "network":"194.4.146.0\/25", + "version":61001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.146.0", + "prefixLen":25, + "network":"194.4.146.0\/25", + "version":61001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.146.128", + "prefixLen":25, + "network":"194.4.146.128\/25", + "version":61000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.146.128", + "prefixLen":25, + "network":"194.4.146.128\/25", + "version":61000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.147.0", + "prefixLen":25, + "network":"194.4.147.0\/25", + "version":60999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.147.0", + "prefixLen":25, + "network":"194.4.147.0\/25", + "version":60999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.147.128", + "prefixLen":25, + "network":"194.4.147.128\/25", + "version":60998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.147.128", + "prefixLen":25, + "network":"194.4.147.128\/25", + "version":60998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.160.0", + "prefixLen":25, + "network":"194.4.160.0\/25", + "version":60997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.160.0", + "prefixLen":25, + "network":"194.4.160.0\/25", + "version":60997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.160.128", + "prefixLen":25, + "network":"194.4.160.128\/25", + "version":60996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.160.128", + "prefixLen":25, + "network":"194.4.160.128\/25", + "version":60996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.161.0", + "prefixLen":25, + "network":"194.4.161.0\/25", + "version":60995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.161.0", + "prefixLen":25, + "network":"194.4.161.0\/25", + "version":60995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.161.128", + "prefixLen":25, + "network":"194.4.161.128\/25", + "version":60994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.161.128", + "prefixLen":25, + "network":"194.4.161.128\/25", + "version":60994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.162.0", + "prefixLen":25, + "network":"194.4.162.0\/25", + "version":60993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.162.0", + "prefixLen":25, + "network":"194.4.162.0\/25", + "version":60993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.162.128", + "prefixLen":25, + "network":"194.4.162.128\/25", + "version":60992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.162.128", + "prefixLen":25, + "network":"194.4.162.128\/25", + "version":60992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.163.0", + "prefixLen":25, + "network":"194.4.163.0\/25", + "version":60991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.163.0", + "prefixLen":25, + "network":"194.4.163.0\/25", + "version":60991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.163.128", + "prefixLen":25, + "network":"194.4.163.128\/25", + "version":60990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.163.128", + "prefixLen":25, + "network":"194.4.163.128\/25", + "version":60990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.176.0", + "prefixLen":25, + "network":"194.4.176.0\/25", + "version":60989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.176.0", + "prefixLen":25, + "network":"194.4.176.0\/25", + "version":60989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.176.128", + "prefixLen":25, + "network":"194.4.176.128\/25", + "version":60988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.176.128", + "prefixLen":25, + "network":"194.4.176.128\/25", + "version":60988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.177.0", + "prefixLen":25, + "network":"194.4.177.0\/25", + "version":60987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.177.0", + "prefixLen":25, + "network":"194.4.177.0\/25", + "version":60987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.177.128", + "prefixLen":25, + "network":"194.4.177.128\/25", + "version":60986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.177.128", + "prefixLen":25, + "network":"194.4.177.128\/25", + "version":60986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.178.0", + "prefixLen":25, + "network":"194.4.178.0\/25", + "version":60985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.178.0", + "prefixLen":25, + "network":"194.4.178.0\/25", + "version":60985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.178.128", + "prefixLen":25, + "network":"194.4.178.128\/25", + "version":60984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.178.128", + "prefixLen":25, + "network":"194.4.178.128\/25", + "version":60984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.179.0", + "prefixLen":25, + "network":"194.4.179.0\/25", + "version":60983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.179.0", + "prefixLen":25, + "network":"194.4.179.0\/25", + "version":60983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.179.128", + "prefixLen":25, + "network":"194.4.179.128\/25", + "version":60982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.179.128", + "prefixLen":25, + "network":"194.4.179.128\/25", + "version":60982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.192.0", + "prefixLen":25, + "network":"194.4.192.0\/25", + "version":60981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.192.0", + "prefixLen":25, + "network":"194.4.192.0\/25", + "version":60981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.192.128", + "prefixLen":25, + "network":"194.4.192.128\/25", + "version":60980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.192.128", + "prefixLen":25, + "network":"194.4.192.128\/25", + "version":60980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.193.0", + "prefixLen":25, + "network":"194.4.193.0\/25", + "version":60979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.193.0", + "prefixLen":25, + "network":"194.4.193.0\/25", + "version":60979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.193.128", + "prefixLen":25, + "network":"194.4.193.128\/25", + "version":60978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.193.128", + "prefixLen":25, + "network":"194.4.193.128\/25", + "version":60978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.194.0", + "prefixLen":25, + "network":"194.4.194.0\/25", + "version":60977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.194.0", + "prefixLen":25, + "network":"194.4.194.0\/25", + "version":60977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.194.128", + "prefixLen":25, + "network":"194.4.194.128\/25", + "version":60976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.194.128", + "prefixLen":25, + "network":"194.4.194.128\/25", + "version":60976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.195.0", + "prefixLen":25, + "network":"194.4.195.0\/25", + "version":60975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.195.0", + "prefixLen":25, + "network":"194.4.195.0\/25", + "version":60975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.195.128", + "prefixLen":25, + "network":"194.4.195.128\/25", + "version":60974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.195.128", + "prefixLen":25, + "network":"194.4.195.128\/25", + "version":60974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.208.0", + "prefixLen":25, + "network":"194.4.208.0\/25", + "version":60973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.208.0", + "prefixLen":25, + "network":"194.4.208.0\/25", + "version":60973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.208.128", + "prefixLen":25, + "network":"194.4.208.128\/25", + "version":60972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.208.128", + "prefixLen":25, + "network":"194.4.208.128\/25", + "version":60972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.209.0", + "prefixLen":25, + "network":"194.4.209.0\/25", + "version":60971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.209.0", + "prefixLen":25, + "network":"194.4.209.0\/25", + "version":60971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.209.128", + "prefixLen":25, + "network":"194.4.209.128\/25", + "version":60970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.209.128", + "prefixLen":25, + "network":"194.4.209.128\/25", + "version":60970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.210.0", + "prefixLen":25, + "network":"194.4.210.0\/25", + "version":60969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.210.0", + "prefixLen":25, + "network":"194.4.210.0\/25", + "version":60969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.210.128", + "prefixLen":25, + "network":"194.4.210.128\/25", + "version":60968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.210.128", + "prefixLen":25, + "network":"194.4.210.128\/25", + "version":60968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.211.0", + "prefixLen":25, + "network":"194.4.211.0\/25", + "version":60967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.211.0", + "prefixLen":25, + "network":"194.4.211.0\/25", + "version":60967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.211.128", + "prefixLen":25, + "network":"194.4.211.128\/25", + "version":60966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.211.128", + "prefixLen":25, + "network":"194.4.211.128\/25", + "version":60966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.224.0", + "prefixLen":25, + "network":"194.4.224.0\/25", + "version":60965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.224.0", + "prefixLen":25, + "network":"194.4.224.0\/25", + "version":60965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.224.128", + "prefixLen":25, + "network":"194.4.224.128\/25", + "version":60964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.224.128", + "prefixLen":25, + "network":"194.4.224.128\/25", + "version":60964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.225.0", + "prefixLen":25, + "network":"194.4.225.0\/25", + "version":60963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.225.0", + "prefixLen":25, + "network":"194.4.225.0\/25", + "version":60963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.225.128", + "prefixLen":25, + "network":"194.4.225.128\/25", + "version":60962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.225.128", + "prefixLen":25, + "network":"194.4.225.128\/25", + "version":60962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.226.0", + "prefixLen":25, + "network":"194.4.226.0\/25", + "version":60961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.226.0", + "prefixLen":25, + "network":"194.4.226.0\/25", + "version":60961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.226.128", + "prefixLen":25, + "network":"194.4.226.128\/25", + "version":60960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.226.128", + "prefixLen":25, + "network":"194.4.226.128\/25", + "version":60960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.227.0", + "prefixLen":25, + "network":"194.4.227.0\/25", + "version":60959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.227.0", + "prefixLen":25, + "network":"194.4.227.0\/25", + "version":60959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.227.128", + "prefixLen":25, + "network":"194.4.227.128\/25", + "version":60958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.227.128", + "prefixLen":25, + "network":"194.4.227.128\/25", + "version":60958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.240.0", + "prefixLen":25, + "network":"194.4.240.0\/25", + "version":60957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.240.0", + "prefixLen":25, + "network":"194.4.240.0\/25", + "version":60957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.240.128", + "prefixLen":25, + "network":"194.4.240.128\/25", + "version":60956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.240.128", + "prefixLen":25, + "network":"194.4.240.128\/25", + "version":60956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.241.0", + "prefixLen":25, + "network":"194.4.241.0\/25", + "version":60955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.241.0", + "prefixLen":25, + "network":"194.4.241.0\/25", + "version":60955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.241.128", + "prefixLen":25, + "network":"194.4.241.128\/25", + "version":60954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.241.128", + "prefixLen":25, + "network":"194.4.241.128\/25", + "version":60954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.242.0", + "prefixLen":25, + "network":"194.4.242.0\/25", + "version":60953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.242.0", + "prefixLen":25, + "network":"194.4.242.0\/25", + "version":60953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.242.128", + "prefixLen":25, + "network":"194.4.242.128\/25", + "version":60952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.242.128", + "prefixLen":25, + "network":"194.4.242.128\/25", + "version":60952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.243.0", + "prefixLen":25, + "network":"194.4.243.0\/25", + "version":60951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.243.0", + "prefixLen":25, + "network":"194.4.243.0\/25", + "version":60951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.4.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.4.243.128", + "prefixLen":25, + "network":"194.4.243.128\/25", + "version":60950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.4.243.128", + "prefixLen":25, + "network":"194.4.243.128\/25", + "version":60950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64948 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.0.0", + "prefixLen":25, + "network":"194.5.0.0\/25", + "version":61077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.0.0", + "prefixLen":25, + "network":"194.5.0.0\/25", + "version":61077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.0.128", + "prefixLen":25, + "network":"194.5.0.128\/25", + "version":61204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.0.128", + "prefixLen":25, + "network":"194.5.0.128\/25", + "version":61204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.1.0", + "prefixLen":25, + "network":"194.5.1.0\/25", + "version":61203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.1.0", + "prefixLen":25, + "network":"194.5.1.0\/25", + "version":61203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.1.128", + "prefixLen":25, + "network":"194.5.1.128\/25", + "version":61202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.1.128", + "prefixLen":25, + "network":"194.5.1.128\/25", + "version":61202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.2.0", + "prefixLen":25, + "network":"194.5.2.0\/25", + "version":61201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.2.0", + "prefixLen":25, + "network":"194.5.2.0\/25", + "version":61201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.2.128", + "prefixLen":25, + "network":"194.5.2.128\/25", + "version":61200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.2.128", + "prefixLen":25, + "network":"194.5.2.128\/25", + "version":61200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.3.0", + "prefixLen":25, + "network":"194.5.3.0\/25", + "version":61199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.3.0", + "prefixLen":25, + "network":"194.5.3.0\/25", + "version":61199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.3.128", + "prefixLen":25, + "network":"194.5.3.128\/25", + "version":61198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.3.128", + "prefixLen":25, + "network":"194.5.3.128\/25", + "version":61198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.16.0", + "prefixLen":25, + "network":"194.5.16.0\/25", + "version":61197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.16.0", + "prefixLen":25, + "network":"194.5.16.0\/25", + "version":61197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.16.128", + "prefixLen":25, + "network":"194.5.16.128\/25", + "version":61196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.16.128", + "prefixLen":25, + "network":"194.5.16.128\/25", + "version":61196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.17.0", + "prefixLen":25, + "network":"194.5.17.0\/25", + "version":61195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.17.0", + "prefixLen":25, + "network":"194.5.17.0\/25", + "version":61195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.17.128", + "prefixLen":25, + "network":"194.5.17.128\/25", + "version":61194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.17.128", + "prefixLen":25, + "network":"194.5.17.128\/25", + "version":61194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.18.0", + "prefixLen":25, + "network":"194.5.18.0\/25", + "version":61193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.18.0", + "prefixLen":25, + "network":"194.5.18.0\/25", + "version":61193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.18.128", + "prefixLen":25, + "network":"194.5.18.128\/25", + "version":61192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.18.128", + "prefixLen":25, + "network":"194.5.18.128\/25", + "version":61192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.19.0", + "prefixLen":25, + "network":"194.5.19.0\/25", + "version":61191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.19.0", + "prefixLen":25, + "network":"194.5.19.0\/25", + "version":61191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.19.128", + "prefixLen":25, + "network":"194.5.19.128\/25", + "version":61190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.19.128", + "prefixLen":25, + "network":"194.5.19.128\/25", + "version":61190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.32.0", + "prefixLen":25, + "network":"194.5.32.0\/25", + "version":61189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.32.0", + "prefixLen":25, + "network":"194.5.32.0\/25", + "version":61189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.32.128", + "prefixLen":25, + "network":"194.5.32.128\/25", + "version":61188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.32.128", + "prefixLen":25, + "network":"194.5.32.128\/25", + "version":61188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.33.0", + "prefixLen":25, + "network":"194.5.33.0\/25", + "version":61187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.33.0", + "prefixLen":25, + "network":"194.5.33.0\/25", + "version":61187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.33.128", + "prefixLen":25, + "network":"194.5.33.128\/25", + "version":61186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.33.128", + "prefixLen":25, + "network":"194.5.33.128\/25", + "version":61186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.34.0", + "prefixLen":25, + "network":"194.5.34.0\/25", + "version":61185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.34.0", + "prefixLen":25, + "network":"194.5.34.0\/25", + "version":61185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.34.128", + "prefixLen":25, + "network":"194.5.34.128\/25", + "version":61184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.34.128", + "prefixLen":25, + "network":"194.5.34.128\/25", + "version":61184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.35.0", + "prefixLen":25, + "network":"194.5.35.0\/25", + "version":61183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.35.0", + "prefixLen":25, + "network":"194.5.35.0\/25", + "version":61183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.35.128", + "prefixLen":25, + "network":"194.5.35.128\/25", + "version":61182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.35.128", + "prefixLen":25, + "network":"194.5.35.128\/25", + "version":61182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.48.0", + "prefixLen":25, + "network":"194.5.48.0\/25", + "version":61181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.48.0", + "prefixLen":25, + "network":"194.5.48.0\/25", + "version":61181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.48.128", + "prefixLen":25, + "network":"194.5.48.128\/25", + "version":61180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.48.128", + "prefixLen":25, + "network":"194.5.48.128\/25", + "version":61180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.49.0", + "prefixLen":25, + "network":"194.5.49.0\/25", + "version":61179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.49.0", + "prefixLen":25, + "network":"194.5.49.0\/25", + "version":61179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.49.128", + "prefixLen":25, + "network":"194.5.49.128\/25", + "version":61178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.49.128", + "prefixLen":25, + "network":"194.5.49.128\/25", + "version":61178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.50.0", + "prefixLen":25, + "network":"194.5.50.0\/25", + "version":61177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.50.0", + "prefixLen":25, + "network":"194.5.50.0\/25", + "version":61177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.50.128", + "prefixLen":25, + "network":"194.5.50.128\/25", + "version":61176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.50.128", + "prefixLen":25, + "network":"194.5.50.128\/25", + "version":61176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.51.0", + "prefixLen":25, + "network":"194.5.51.0\/25", + "version":61175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.51.0", + "prefixLen":25, + "network":"194.5.51.0\/25", + "version":61175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.51.128", + "prefixLen":25, + "network":"194.5.51.128\/25", + "version":61174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.51.128", + "prefixLen":25, + "network":"194.5.51.128\/25", + "version":61174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.64.0", + "prefixLen":25, + "network":"194.5.64.0\/25", + "version":61173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.64.0", + "prefixLen":25, + "network":"194.5.64.0\/25", + "version":61173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.64.128", + "prefixLen":25, + "network":"194.5.64.128\/25", + "version":61172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.64.128", + "prefixLen":25, + "network":"194.5.64.128\/25", + "version":61172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.65.0", + "prefixLen":25, + "network":"194.5.65.0\/25", + "version":61171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.65.0", + "prefixLen":25, + "network":"194.5.65.0\/25", + "version":61171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.65.128", + "prefixLen":25, + "network":"194.5.65.128\/25", + "version":61170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.65.128", + "prefixLen":25, + "network":"194.5.65.128\/25", + "version":61170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.66.0", + "prefixLen":25, + "network":"194.5.66.0\/25", + "version":61169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.66.0", + "prefixLen":25, + "network":"194.5.66.0\/25", + "version":61169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.66.128", + "prefixLen":25, + "network":"194.5.66.128\/25", + "version":61168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.66.128", + "prefixLen":25, + "network":"194.5.66.128\/25", + "version":61168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.67.0", + "prefixLen":25, + "network":"194.5.67.0\/25", + "version":61167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.67.0", + "prefixLen":25, + "network":"194.5.67.0\/25", + "version":61167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.67.128", + "prefixLen":25, + "network":"194.5.67.128\/25", + "version":61166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.67.128", + "prefixLen":25, + "network":"194.5.67.128\/25", + "version":61166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.80.0", + "prefixLen":25, + "network":"194.5.80.0\/25", + "version":61165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.80.0", + "prefixLen":25, + "network":"194.5.80.0\/25", + "version":61165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.80.128", + "prefixLen":25, + "network":"194.5.80.128\/25", + "version":61164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.80.128", + "prefixLen":25, + "network":"194.5.80.128\/25", + "version":61164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.81.0", + "prefixLen":25, + "network":"194.5.81.0\/25", + "version":61163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.81.0", + "prefixLen":25, + "network":"194.5.81.0\/25", + "version":61163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.81.128", + "prefixLen":25, + "network":"194.5.81.128\/25", + "version":61162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.81.128", + "prefixLen":25, + "network":"194.5.81.128\/25", + "version":61162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.82.0", + "prefixLen":25, + "network":"194.5.82.0\/25", + "version":61161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.82.0", + "prefixLen":25, + "network":"194.5.82.0\/25", + "version":61161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.82.128", + "prefixLen":25, + "network":"194.5.82.128\/25", + "version":61160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.82.128", + "prefixLen":25, + "network":"194.5.82.128\/25", + "version":61160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.83.0", + "prefixLen":25, + "network":"194.5.83.0\/25", + "version":61159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.83.0", + "prefixLen":25, + "network":"194.5.83.0\/25", + "version":61159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.83.128", + "prefixLen":25, + "network":"194.5.83.128\/25", + "version":61158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.83.128", + "prefixLen":25, + "network":"194.5.83.128\/25", + "version":61158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.96.0", + "prefixLen":25, + "network":"194.5.96.0\/25", + "version":61157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.96.0", + "prefixLen":25, + "network":"194.5.96.0\/25", + "version":61157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.96.128", + "prefixLen":25, + "network":"194.5.96.128\/25", + "version":61156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.96.128", + "prefixLen":25, + "network":"194.5.96.128\/25", + "version":61156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.97.0", + "prefixLen":25, + "network":"194.5.97.0\/25", + "version":61155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.97.0", + "prefixLen":25, + "network":"194.5.97.0\/25", + "version":61155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.97.128", + "prefixLen":25, + "network":"194.5.97.128\/25", + "version":61154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.97.128", + "prefixLen":25, + "network":"194.5.97.128\/25", + "version":61154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.98.0", + "prefixLen":25, + "network":"194.5.98.0\/25", + "version":61153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.98.0", + "prefixLen":25, + "network":"194.5.98.0\/25", + "version":61153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.98.128", + "prefixLen":25, + "network":"194.5.98.128\/25", + "version":61152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.98.128", + "prefixLen":25, + "network":"194.5.98.128\/25", + "version":61152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.99.0", + "prefixLen":25, + "network":"194.5.99.0\/25", + "version":61151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.99.0", + "prefixLen":25, + "network":"194.5.99.0\/25", + "version":61151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.99.128", + "prefixLen":25, + "network":"194.5.99.128\/25", + "version":61150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.99.128", + "prefixLen":25, + "network":"194.5.99.128\/25", + "version":61150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.112.0", + "prefixLen":25, + "network":"194.5.112.0\/25", + "version":61149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.112.0", + "prefixLen":25, + "network":"194.5.112.0\/25", + "version":61149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.112.128", + "prefixLen":25, + "network":"194.5.112.128\/25", + "version":61148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.112.128", + "prefixLen":25, + "network":"194.5.112.128\/25", + "version":61148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.113.0", + "prefixLen":25, + "network":"194.5.113.0\/25", + "version":61147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.113.0", + "prefixLen":25, + "network":"194.5.113.0\/25", + "version":61147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.113.128", + "prefixLen":25, + "network":"194.5.113.128\/25", + "version":61146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.113.128", + "prefixLen":25, + "network":"194.5.113.128\/25", + "version":61146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.114.0", + "prefixLen":25, + "network":"194.5.114.0\/25", + "version":61145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.114.0", + "prefixLen":25, + "network":"194.5.114.0\/25", + "version":61145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.114.128", + "prefixLen":25, + "network":"194.5.114.128\/25", + "version":61144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.114.128", + "prefixLen":25, + "network":"194.5.114.128\/25", + "version":61144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.115.0", + "prefixLen":25, + "network":"194.5.115.0\/25", + "version":61143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.115.0", + "prefixLen":25, + "network":"194.5.115.0\/25", + "version":61143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.115.128", + "prefixLen":25, + "network":"194.5.115.128\/25", + "version":61142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.115.128", + "prefixLen":25, + "network":"194.5.115.128\/25", + "version":61142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.128.0", + "prefixLen":25, + "network":"194.5.128.0\/25", + "version":61141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.128.0", + "prefixLen":25, + "network":"194.5.128.0\/25", + "version":61141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.128.128", + "prefixLen":25, + "network":"194.5.128.128\/25", + "version":61140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.128.128", + "prefixLen":25, + "network":"194.5.128.128\/25", + "version":61140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.129.0", + "prefixLen":25, + "network":"194.5.129.0\/25", + "version":61139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.129.0", + "prefixLen":25, + "network":"194.5.129.0\/25", + "version":61139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.129.128", + "prefixLen":25, + "network":"194.5.129.128\/25", + "version":61138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.129.128", + "prefixLen":25, + "network":"194.5.129.128\/25", + "version":61138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.130.0", + "prefixLen":25, + "network":"194.5.130.0\/25", + "version":61137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.130.0", + "prefixLen":25, + "network":"194.5.130.0\/25", + "version":61137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.130.128", + "prefixLen":25, + "network":"194.5.130.128\/25", + "version":61136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.130.128", + "prefixLen":25, + "network":"194.5.130.128\/25", + "version":61136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.131.0", + "prefixLen":25, + "network":"194.5.131.0\/25", + "version":61135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.131.0", + "prefixLen":25, + "network":"194.5.131.0\/25", + "version":61135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.131.128", + "prefixLen":25, + "network":"194.5.131.128\/25", + "version":61134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.131.128", + "prefixLen":25, + "network":"194.5.131.128\/25", + "version":61134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.144.0", + "prefixLen":25, + "network":"194.5.144.0\/25", + "version":61133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.144.0", + "prefixLen":25, + "network":"194.5.144.0\/25", + "version":61133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.144.128", + "prefixLen":25, + "network":"194.5.144.128\/25", + "version":61132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.144.128", + "prefixLen":25, + "network":"194.5.144.128\/25", + "version":61132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.145.0", + "prefixLen":25, + "network":"194.5.145.0\/25", + "version":61131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.145.0", + "prefixLen":25, + "network":"194.5.145.0\/25", + "version":61131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.145.128", + "prefixLen":25, + "network":"194.5.145.128\/25", + "version":61130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.145.128", + "prefixLen":25, + "network":"194.5.145.128\/25", + "version":61130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.146.0", + "prefixLen":25, + "network":"194.5.146.0\/25", + "version":61129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.146.0", + "prefixLen":25, + "network":"194.5.146.0\/25", + "version":61129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.146.128", + "prefixLen":25, + "network":"194.5.146.128\/25", + "version":61128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.146.128", + "prefixLen":25, + "network":"194.5.146.128\/25", + "version":61128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.147.0", + "prefixLen":25, + "network":"194.5.147.0\/25", + "version":61127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.147.0", + "prefixLen":25, + "network":"194.5.147.0\/25", + "version":61127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.147.128", + "prefixLen":25, + "network":"194.5.147.128\/25", + "version":61126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.147.128", + "prefixLen":25, + "network":"194.5.147.128\/25", + "version":61126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.160.0", + "prefixLen":25, + "network":"194.5.160.0\/25", + "version":61125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.160.0", + "prefixLen":25, + "network":"194.5.160.0\/25", + "version":61125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.160.128", + "prefixLen":25, + "network":"194.5.160.128\/25", + "version":61124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.160.128", + "prefixLen":25, + "network":"194.5.160.128\/25", + "version":61124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.161.0", + "prefixLen":25, + "network":"194.5.161.0\/25", + "version":61123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.161.0", + "prefixLen":25, + "network":"194.5.161.0\/25", + "version":61123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.161.128", + "prefixLen":25, + "network":"194.5.161.128\/25", + "version":61122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.161.128", + "prefixLen":25, + "network":"194.5.161.128\/25", + "version":61122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.162.0", + "prefixLen":25, + "network":"194.5.162.0\/25", + "version":61121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.162.0", + "prefixLen":25, + "network":"194.5.162.0\/25", + "version":61121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.162.128", + "prefixLen":25, + "network":"194.5.162.128\/25", + "version":61120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.162.128", + "prefixLen":25, + "network":"194.5.162.128\/25", + "version":61120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.163.0", + "prefixLen":25, + "network":"194.5.163.0\/25", + "version":61119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.163.0", + "prefixLen":25, + "network":"194.5.163.0\/25", + "version":61119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.163.128", + "prefixLen":25, + "network":"194.5.163.128\/25", + "version":61118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.163.128", + "prefixLen":25, + "network":"194.5.163.128\/25", + "version":61118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.176.0", + "prefixLen":25, + "network":"194.5.176.0\/25", + "version":61117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.176.0", + "prefixLen":25, + "network":"194.5.176.0\/25", + "version":61117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.176.128", + "prefixLen":25, + "network":"194.5.176.128\/25", + "version":61116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.176.128", + "prefixLen":25, + "network":"194.5.176.128\/25", + "version":61116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.177.0", + "prefixLen":25, + "network":"194.5.177.0\/25", + "version":61115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.177.0", + "prefixLen":25, + "network":"194.5.177.0\/25", + "version":61115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.177.128", + "prefixLen":25, + "network":"194.5.177.128\/25", + "version":61114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.177.128", + "prefixLen":25, + "network":"194.5.177.128\/25", + "version":61114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.178.0", + "prefixLen":25, + "network":"194.5.178.0\/25", + "version":61113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.178.0", + "prefixLen":25, + "network":"194.5.178.0\/25", + "version":61113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.178.128", + "prefixLen":25, + "network":"194.5.178.128\/25", + "version":61112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.178.128", + "prefixLen":25, + "network":"194.5.178.128\/25", + "version":61112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.179.0", + "prefixLen":25, + "network":"194.5.179.0\/25", + "version":61111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.179.0", + "prefixLen":25, + "network":"194.5.179.0\/25", + "version":61111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.179.128", + "prefixLen":25, + "network":"194.5.179.128\/25", + "version":61110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.179.128", + "prefixLen":25, + "network":"194.5.179.128\/25", + "version":61110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.192.0", + "prefixLen":25, + "network":"194.5.192.0\/25", + "version":61109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.192.0", + "prefixLen":25, + "network":"194.5.192.0\/25", + "version":61109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.192.128", + "prefixLen":25, + "network":"194.5.192.128\/25", + "version":61108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.192.128", + "prefixLen":25, + "network":"194.5.192.128\/25", + "version":61108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.193.0", + "prefixLen":25, + "network":"194.5.193.0\/25", + "version":61107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.193.0", + "prefixLen":25, + "network":"194.5.193.0\/25", + "version":61107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.193.128", + "prefixLen":25, + "network":"194.5.193.128\/25", + "version":61106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.193.128", + "prefixLen":25, + "network":"194.5.193.128\/25", + "version":61106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.194.0", + "prefixLen":25, + "network":"194.5.194.0\/25", + "version":61105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.194.0", + "prefixLen":25, + "network":"194.5.194.0\/25", + "version":61105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.194.128", + "prefixLen":25, + "network":"194.5.194.128\/25", + "version":61104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.194.128", + "prefixLen":25, + "network":"194.5.194.128\/25", + "version":61104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.195.0", + "prefixLen":25, + "network":"194.5.195.0\/25", + "version":61103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.195.0", + "prefixLen":25, + "network":"194.5.195.0\/25", + "version":61103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.195.128", + "prefixLen":25, + "network":"194.5.195.128\/25", + "version":61102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.195.128", + "prefixLen":25, + "network":"194.5.195.128\/25", + "version":61102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.208.0", + "prefixLen":25, + "network":"194.5.208.0\/25", + "version":61101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.208.0", + "prefixLen":25, + "network":"194.5.208.0\/25", + "version":61101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.208.128", + "prefixLen":25, + "network":"194.5.208.128\/25", + "version":61100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.208.128", + "prefixLen":25, + "network":"194.5.208.128\/25", + "version":61100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.209.0", + "prefixLen":25, + "network":"194.5.209.0\/25", + "version":61099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.209.0", + "prefixLen":25, + "network":"194.5.209.0\/25", + "version":61099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.209.128", + "prefixLen":25, + "network":"194.5.209.128\/25", + "version":61098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.209.128", + "prefixLen":25, + "network":"194.5.209.128\/25", + "version":61098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.210.0", + "prefixLen":25, + "network":"194.5.210.0\/25", + "version":61097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.210.0", + "prefixLen":25, + "network":"194.5.210.0\/25", + "version":61097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.210.128", + "prefixLen":25, + "network":"194.5.210.128\/25", + "version":61096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.210.128", + "prefixLen":25, + "network":"194.5.210.128\/25", + "version":61096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.211.0", + "prefixLen":25, + "network":"194.5.211.0\/25", + "version":61095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.211.0", + "prefixLen":25, + "network":"194.5.211.0\/25", + "version":61095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.211.128", + "prefixLen":25, + "network":"194.5.211.128\/25", + "version":61094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.211.128", + "prefixLen":25, + "network":"194.5.211.128\/25", + "version":61094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.224.0", + "prefixLen":25, + "network":"194.5.224.0\/25", + "version":61093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.224.0", + "prefixLen":25, + "network":"194.5.224.0\/25", + "version":61093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.224.128", + "prefixLen":25, + "network":"194.5.224.128\/25", + "version":61092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.224.128", + "prefixLen":25, + "network":"194.5.224.128\/25", + "version":61092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.225.0", + "prefixLen":25, + "network":"194.5.225.0\/25", + "version":61091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.225.0", + "prefixLen":25, + "network":"194.5.225.0\/25", + "version":61091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.225.128", + "prefixLen":25, + "network":"194.5.225.128\/25", + "version":61090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.225.128", + "prefixLen":25, + "network":"194.5.225.128\/25", + "version":61090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.226.0", + "prefixLen":25, + "network":"194.5.226.0\/25", + "version":61089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.226.0", + "prefixLen":25, + "network":"194.5.226.0\/25", + "version":61089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.226.128", + "prefixLen":25, + "network":"194.5.226.128\/25", + "version":61088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.226.128", + "prefixLen":25, + "network":"194.5.226.128\/25", + "version":61088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.227.0", + "prefixLen":25, + "network":"194.5.227.0\/25", + "version":61087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.227.0", + "prefixLen":25, + "network":"194.5.227.0\/25", + "version":61087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.227.128", + "prefixLen":25, + "network":"194.5.227.128\/25", + "version":61086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.227.128", + "prefixLen":25, + "network":"194.5.227.128\/25", + "version":61086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.240.0", + "prefixLen":25, + "network":"194.5.240.0\/25", + "version":61085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.240.0", + "prefixLen":25, + "network":"194.5.240.0\/25", + "version":61085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.240.128", + "prefixLen":25, + "network":"194.5.240.128\/25", + "version":61084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.240.128", + "prefixLen":25, + "network":"194.5.240.128\/25", + "version":61084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.241.0", + "prefixLen":25, + "network":"194.5.241.0\/25", + "version":61083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.241.0", + "prefixLen":25, + "network":"194.5.241.0\/25", + "version":61083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.241.128", + "prefixLen":25, + "network":"194.5.241.128\/25", + "version":61082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.241.128", + "prefixLen":25, + "network":"194.5.241.128\/25", + "version":61082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.242.0", + "prefixLen":25, + "network":"194.5.242.0\/25", + "version":61081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.242.0", + "prefixLen":25, + "network":"194.5.242.0\/25", + "version":61081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.242.128", + "prefixLen":25, + "network":"194.5.242.128\/25", + "version":61080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.242.128", + "prefixLen":25, + "network":"194.5.242.128\/25", + "version":61080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.243.0", + "prefixLen":25, + "network":"194.5.243.0\/25", + "version":61079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.243.0", + "prefixLen":25, + "network":"194.5.243.0\/25", + "version":61079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.5.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.5.243.128", + "prefixLen":25, + "network":"194.5.243.128\/25", + "version":61078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.5.243.128", + "prefixLen":25, + "network":"194.5.243.128\/25", + "version":61078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64949 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.0.0", + "prefixLen":25, + "network":"194.6.0.0\/25", + "version":61205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.0.0", + "prefixLen":25, + "network":"194.6.0.0\/25", + "version":61205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.0.128", + "prefixLen":25, + "network":"194.6.0.128\/25", + "version":61332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.0.128", + "prefixLen":25, + "network":"194.6.0.128\/25", + "version":61332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.1.0", + "prefixLen":25, + "network":"194.6.1.0\/25", + "version":61331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.1.0", + "prefixLen":25, + "network":"194.6.1.0\/25", + "version":61331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.1.128", + "prefixLen":25, + "network":"194.6.1.128\/25", + "version":61330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.1.128", + "prefixLen":25, + "network":"194.6.1.128\/25", + "version":61330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.2.0", + "prefixLen":25, + "network":"194.6.2.0\/25", + "version":61329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.2.0", + "prefixLen":25, + "network":"194.6.2.0\/25", + "version":61329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.2.128", + "prefixLen":25, + "network":"194.6.2.128\/25", + "version":61328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.2.128", + "prefixLen":25, + "network":"194.6.2.128\/25", + "version":61328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.3.0", + "prefixLen":25, + "network":"194.6.3.0\/25", + "version":61327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.3.0", + "prefixLen":25, + "network":"194.6.3.0\/25", + "version":61327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.3.128", + "prefixLen":25, + "network":"194.6.3.128\/25", + "version":61326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.3.128", + "prefixLen":25, + "network":"194.6.3.128\/25", + "version":61326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.16.0", + "prefixLen":25, + "network":"194.6.16.0\/25", + "version":61325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.16.0", + "prefixLen":25, + "network":"194.6.16.0\/25", + "version":61325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.16.128", + "prefixLen":25, + "network":"194.6.16.128\/25", + "version":61324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.16.128", + "prefixLen":25, + "network":"194.6.16.128\/25", + "version":61324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.17.0", + "prefixLen":25, + "network":"194.6.17.0\/25", + "version":61323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.17.0", + "prefixLen":25, + "network":"194.6.17.0\/25", + "version":61323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.17.128", + "prefixLen":25, + "network":"194.6.17.128\/25", + "version":61322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.17.128", + "prefixLen":25, + "network":"194.6.17.128\/25", + "version":61322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.18.0", + "prefixLen":25, + "network":"194.6.18.0\/25", + "version":61321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.18.0", + "prefixLen":25, + "network":"194.6.18.0\/25", + "version":61321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.18.128", + "prefixLen":25, + "network":"194.6.18.128\/25", + "version":61320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.18.128", + "prefixLen":25, + "network":"194.6.18.128\/25", + "version":61320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.19.0", + "prefixLen":25, + "network":"194.6.19.0\/25", + "version":61319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.19.0", + "prefixLen":25, + "network":"194.6.19.0\/25", + "version":61319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.19.128", + "prefixLen":25, + "network":"194.6.19.128\/25", + "version":61318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.19.128", + "prefixLen":25, + "network":"194.6.19.128\/25", + "version":61318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.32.0", + "prefixLen":25, + "network":"194.6.32.0\/25", + "version":61317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.32.0", + "prefixLen":25, + "network":"194.6.32.0\/25", + "version":61317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.32.128", + "prefixLen":25, + "network":"194.6.32.128\/25", + "version":61316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.32.128", + "prefixLen":25, + "network":"194.6.32.128\/25", + "version":61316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.33.0", + "prefixLen":25, + "network":"194.6.33.0\/25", + "version":61315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.33.0", + "prefixLen":25, + "network":"194.6.33.0\/25", + "version":61315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.33.128", + "prefixLen":25, + "network":"194.6.33.128\/25", + "version":61314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.33.128", + "prefixLen":25, + "network":"194.6.33.128\/25", + "version":61314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.34.0", + "prefixLen":25, + "network":"194.6.34.0\/25", + "version":61313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.34.0", + "prefixLen":25, + "network":"194.6.34.0\/25", + "version":61313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.34.128", + "prefixLen":25, + "network":"194.6.34.128\/25", + "version":61312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.34.128", + "prefixLen":25, + "network":"194.6.34.128\/25", + "version":61312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.35.0", + "prefixLen":25, + "network":"194.6.35.0\/25", + "version":61311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.35.0", + "prefixLen":25, + "network":"194.6.35.0\/25", + "version":61311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.35.128", + "prefixLen":25, + "network":"194.6.35.128\/25", + "version":61310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.35.128", + "prefixLen":25, + "network":"194.6.35.128\/25", + "version":61310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.48.0", + "prefixLen":25, + "network":"194.6.48.0\/25", + "version":61309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.48.0", + "prefixLen":25, + "network":"194.6.48.0\/25", + "version":61309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.48.128", + "prefixLen":25, + "network":"194.6.48.128\/25", + "version":61308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.48.128", + "prefixLen":25, + "network":"194.6.48.128\/25", + "version":61308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.49.0", + "prefixLen":25, + "network":"194.6.49.0\/25", + "version":61307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.49.0", + "prefixLen":25, + "network":"194.6.49.0\/25", + "version":61307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.49.128", + "prefixLen":25, + "network":"194.6.49.128\/25", + "version":61306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.49.128", + "prefixLen":25, + "network":"194.6.49.128\/25", + "version":61306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.50.0", + "prefixLen":25, + "network":"194.6.50.0\/25", + "version":61305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.50.0", + "prefixLen":25, + "network":"194.6.50.0\/25", + "version":61305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.50.128", + "prefixLen":25, + "network":"194.6.50.128\/25", + "version":61304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.50.128", + "prefixLen":25, + "network":"194.6.50.128\/25", + "version":61304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.51.0", + "prefixLen":25, + "network":"194.6.51.0\/25", + "version":61303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.51.0", + "prefixLen":25, + "network":"194.6.51.0\/25", + "version":61303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.51.128", + "prefixLen":25, + "network":"194.6.51.128\/25", + "version":61302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.51.128", + "prefixLen":25, + "network":"194.6.51.128\/25", + "version":61302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.64.0", + "prefixLen":25, + "network":"194.6.64.0\/25", + "version":61301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.64.0", + "prefixLen":25, + "network":"194.6.64.0\/25", + "version":61301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.64.128", + "prefixLen":25, + "network":"194.6.64.128\/25", + "version":61300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.64.128", + "prefixLen":25, + "network":"194.6.64.128\/25", + "version":61300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.65.0", + "prefixLen":25, + "network":"194.6.65.0\/25", + "version":61299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.65.0", + "prefixLen":25, + "network":"194.6.65.0\/25", + "version":61299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.65.128", + "prefixLen":25, + "network":"194.6.65.128\/25", + "version":61298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.65.128", + "prefixLen":25, + "network":"194.6.65.128\/25", + "version":61298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.66.0", + "prefixLen":25, + "network":"194.6.66.0\/25", + "version":61297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.66.0", + "prefixLen":25, + "network":"194.6.66.0\/25", + "version":61297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.66.128", + "prefixLen":25, + "network":"194.6.66.128\/25", + "version":61296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.66.128", + "prefixLen":25, + "network":"194.6.66.128\/25", + "version":61296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.67.0", + "prefixLen":25, + "network":"194.6.67.0\/25", + "version":61295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.67.0", + "prefixLen":25, + "network":"194.6.67.0\/25", + "version":61295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.67.128", + "prefixLen":25, + "network":"194.6.67.128\/25", + "version":61294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.67.128", + "prefixLen":25, + "network":"194.6.67.128\/25", + "version":61294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.80.0", + "prefixLen":25, + "network":"194.6.80.0\/25", + "version":61293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.80.0", + "prefixLen":25, + "network":"194.6.80.0\/25", + "version":61293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.80.128", + "prefixLen":25, + "network":"194.6.80.128\/25", + "version":61292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.80.128", + "prefixLen":25, + "network":"194.6.80.128\/25", + "version":61292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.81.0", + "prefixLen":25, + "network":"194.6.81.0\/25", + "version":61291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.81.0", + "prefixLen":25, + "network":"194.6.81.0\/25", + "version":61291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.81.128", + "prefixLen":25, + "network":"194.6.81.128\/25", + "version":61290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.81.128", + "prefixLen":25, + "network":"194.6.81.128\/25", + "version":61290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.82.0", + "prefixLen":25, + "network":"194.6.82.0\/25", + "version":61289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.82.0", + "prefixLen":25, + "network":"194.6.82.0\/25", + "version":61289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.82.128", + "prefixLen":25, + "network":"194.6.82.128\/25", + "version":61288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.82.128", + "prefixLen":25, + "network":"194.6.82.128\/25", + "version":61288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.83.0", + "prefixLen":25, + "network":"194.6.83.0\/25", + "version":61287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.83.0", + "prefixLen":25, + "network":"194.6.83.0\/25", + "version":61287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.83.128", + "prefixLen":25, + "network":"194.6.83.128\/25", + "version":61286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.83.128", + "prefixLen":25, + "network":"194.6.83.128\/25", + "version":61286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.96.0", + "prefixLen":25, + "network":"194.6.96.0\/25", + "version":61285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.96.0", + "prefixLen":25, + "network":"194.6.96.0\/25", + "version":61285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.96.128", + "prefixLen":25, + "network":"194.6.96.128\/25", + "version":61284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.96.128", + "prefixLen":25, + "network":"194.6.96.128\/25", + "version":61284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.97.0", + "prefixLen":25, + "network":"194.6.97.0\/25", + "version":61283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.97.0", + "prefixLen":25, + "network":"194.6.97.0\/25", + "version":61283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.97.128", + "prefixLen":25, + "network":"194.6.97.128\/25", + "version":61282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.97.128", + "prefixLen":25, + "network":"194.6.97.128\/25", + "version":61282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.98.0", + "prefixLen":25, + "network":"194.6.98.0\/25", + "version":61281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.98.0", + "prefixLen":25, + "network":"194.6.98.0\/25", + "version":61281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.98.128", + "prefixLen":25, + "network":"194.6.98.128\/25", + "version":61280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.98.128", + "prefixLen":25, + "network":"194.6.98.128\/25", + "version":61280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.99.0", + "prefixLen":25, + "network":"194.6.99.0\/25", + "version":61279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.99.0", + "prefixLen":25, + "network":"194.6.99.0\/25", + "version":61279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.99.128", + "prefixLen":25, + "network":"194.6.99.128\/25", + "version":61278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.99.128", + "prefixLen":25, + "network":"194.6.99.128\/25", + "version":61278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.112.0", + "prefixLen":25, + "network":"194.6.112.0\/25", + "version":61277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.112.0", + "prefixLen":25, + "network":"194.6.112.0\/25", + "version":61277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.112.128", + "prefixLen":25, + "network":"194.6.112.128\/25", + "version":61276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.112.128", + "prefixLen":25, + "network":"194.6.112.128\/25", + "version":61276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.113.0", + "prefixLen":25, + "network":"194.6.113.0\/25", + "version":61275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.113.0", + "prefixLen":25, + "network":"194.6.113.0\/25", + "version":61275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.113.128", + "prefixLen":25, + "network":"194.6.113.128\/25", + "version":61274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.113.128", + "prefixLen":25, + "network":"194.6.113.128\/25", + "version":61274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.114.0", + "prefixLen":25, + "network":"194.6.114.0\/25", + "version":61273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.114.0", + "prefixLen":25, + "network":"194.6.114.0\/25", + "version":61273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.114.128", + "prefixLen":25, + "network":"194.6.114.128\/25", + "version":61272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.114.128", + "prefixLen":25, + "network":"194.6.114.128\/25", + "version":61272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.115.0", + "prefixLen":25, + "network":"194.6.115.0\/25", + "version":61271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.115.0", + "prefixLen":25, + "network":"194.6.115.0\/25", + "version":61271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.115.128", + "prefixLen":25, + "network":"194.6.115.128\/25", + "version":61270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.115.128", + "prefixLen":25, + "network":"194.6.115.128\/25", + "version":61270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.128.0", + "prefixLen":25, + "network":"194.6.128.0\/25", + "version":61269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.128.0", + "prefixLen":25, + "network":"194.6.128.0\/25", + "version":61269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.128.128", + "prefixLen":25, + "network":"194.6.128.128\/25", + "version":61268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.128.128", + "prefixLen":25, + "network":"194.6.128.128\/25", + "version":61268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.129.0", + "prefixLen":25, + "network":"194.6.129.0\/25", + "version":61267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.129.0", + "prefixLen":25, + "network":"194.6.129.0\/25", + "version":61267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.129.128", + "prefixLen":25, + "network":"194.6.129.128\/25", + "version":61266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.129.128", + "prefixLen":25, + "network":"194.6.129.128\/25", + "version":61266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.130.0", + "prefixLen":25, + "network":"194.6.130.0\/25", + "version":61265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.130.0", + "prefixLen":25, + "network":"194.6.130.0\/25", + "version":61265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.130.128", + "prefixLen":25, + "network":"194.6.130.128\/25", + "version":61264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.130.128", + "prefixLen":25, + "network":"194.6.130.128\/25", + "version":61264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.131.0", + "prefixLen":25, + "network":"194.6.131.0\/25", + "version":61263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.131.0", + "prefixLen":25, + "network":"194.6.131.0\/25", + "version":61263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.131.128", + "prefixLen":25, + "network":"194.6.131.128\/25", + "version":61262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.131.128", + "prefixLen":25, + "network":"194.6.131.128\/25", + "version":61262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.144.0", + "prefixLen":25, + "network":"194.6.144.0\/25", + "version":61261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.144.0", + "prefixLen":25, + "network":"194.6.144.0\/25", + "version":61261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.144.128", + "prefixLen":25, + "network":"194.6.144.128\/25", + "version":61260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.144.128", + "prefixLen":25, + "network":"194.6.144.128\/25", + "version":61260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.145.0", + "prefixLen":25, + "network":"194.6.145.0\/25", + "version":61259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.145.0", + "prefixLen":25, + "network":"194.6.145.0\/25", + "version":61259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.145.128", + "prefixLen":25, + "network":"194.6.145.128\/25", + "version":61258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.145.128", + "prefixLen":25, + "network":"194.6.145.128\/25", + "version":61258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.146.0", + "prefixLen":25, + "network":"194.6.146.0\/25", + "version":61257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.146.0", + "prefixLen":25, + "network":"194.6.146.0\/25", + "version":61257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.146.128", + "prefixLen":25, + "network":"194.6.146.128\/25", + "version":61256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.146.128", + "prefixLen":25, + "network":"194.6.146.128\/25", + "version":61256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.147.0", + "prefixLen":25, + "network":"194.6.147.0\/25", + "version":61255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.147.0", + "prefixLen":25, + "network":"194.6.147.0\/25", + "version":61255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.147.128", + "prefixLen":25, + "network":"194.6.147.128\/25", + "version":61254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.147.128", + "prefixLen":25, + "network":"194.6.147.128\/25", + "version":61254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.160.0", + "prefixLen":25, + "network":"194.6.160.0\/25", + "version":61253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.160.0", + "prefixLen":25, + "network":"194.6.160.0\/25", + "version":61253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.160.128", + "prefixLen":25, + "network":"194.6.160.128\/25", + "version":61252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.160.128", + "prefixLen":25, + "network":"194.6.160.128\/25", + "version":61252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.161.0", + "prefixLen":25, + "network":"194.6.161.0\/25", + "version":61251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.161.0", + "prefixLen":25, + "network":"194.6.161.0\/25", + "version":61251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.161.128", + "prefixLen":25, + "network":"194.6.161.128\/25", + "version":61250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.161.128", + "prefixLen":25, + "network":"194.6.161.128\/25", + "version":61250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.162.0", + "prefixLen":25, + "network":"194.6.162.0\/25", + "version":61249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.162.0", + "prefixLen":25, + "network":"194.6.162.0\/25", + "version":61249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.162.128", + "prefixLen":25, + "network":"194.6.162.128\/25", + "version":61248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.162.128", + "prefixLen":25, + "network":"194.6.162.128\/25", + "version":61248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.163.0", + "prefixLen":25, + "network":"194.6.163.0\/25", + "version":61247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.163.0", + "prefixLen":25, + "network":"194.6.163.0\/25", + "version":61247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.163.128", + "prefixLen":25, + "network":"194.6.163.128\/25", + "version":61246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.163.128", + "prefixLen":25, + "network":"194.6.163.128\/25", + "version":61246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.176.0", + "prefixLen":25, + "network":"194.6.176.0\/25", + "version":61245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.176.0", + "prefixLen":25, + "network":"194.6.176.0\/25", + "version":61245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.176.128", + "prefixLen":25, + "network":"194.6.176.128\/25", + "version":61244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.176.128", + "prefixLen":25, + "network":"194.6.176.128\/25", + "version":61244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.177.0", + "prefixLen":25, + "network":"194.6.177.0\/25", + "version":61243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.177.0", + "prefixLen":25, + "network":"194.6.177.0\/25", + "version":61243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.177.128", + "prefixLen":25, + "network":"194.6.177.128\/25", + "version":61242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.177.128", + "prefixLen":25, + "network":"194.6.177.128\/25", + "version":61242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.178.0", + "prefixLen":25, + "network":"194.6.178.0\/25", + "version":61241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.178.0", + "prefixLen":25, + "network":"194.6.178.0\/25", + "version":61241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.178.128", + "prefixLen":25, + "network":"194.6.178.128\/25", + "version":61240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.178.128", + "prefixLen":25, + "network":"194.6.178.128\/25", + "version":61240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.179.0", + "prefixLen":25, + "network":"194.6.179.0\/25", + "version":61239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.179.0", + "prefixLen":25, + "network":"194.6.179.0\/25", + "version":61239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.179.128", + "prefixLen":25, + "network":"194.6.179.128\/25", + "version":61238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.179.128", + "prefixLen":25, + "network":"194.6.179.128\/25", + "version":61238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.192.0", + "prefixLen":25, + "network":"194.6.192.0\/25", + "version":61237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.192.0", + "prefixLen":25, + "network":"194.6.192.0\/25", + "version":61237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.192.128", + "prefixLen":25, + "network":"194.6.192.128\/25", + "version":61236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.192.128", + "prefixLen":25, + "network":"194.6.192.128\/25", + "version":61236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.193.0", + "prefixLen":25, + "network":"194.6.193.0\/25", + "version":61235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.193.0", + "prefixLen":25, + "network":"194.6.193.0\/25", + "version":61235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.193.128", + "prefixLen":25, + "network":"194.6.193.128\/25", + "version":61234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.193.128", + "prefixLen":25, + "network":"194.6.193.128\/25", + "version":61234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.194.0", + "prefixLen":25, + "network":"194.6.194.0\/25", + "version":61233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.194.0", + "prefixLen":25, + "network":"194.6.194.0\/25", + "version":61233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.194.128", + "prefixLen":25, + "network":"194.6.194.128\/25", + "version":61232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.194.128", + "prefixLen":25, + "network":"194.6.194.128\/25", + "version":61232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.195.0", + "prefixLen":25, + "network":"194.6.195.0\/25", + "version":61231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.195.0", + "prefixLen":25, + "network":"194.6.195.0\/25", + "version":61231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.195.128", + "prefixLen":25, + "network":"194.6.195.128\/25", + "version":61230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.195.128", + "prefixLen":25, + "network":"194.6.195.128\/25", + "version":61230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.208.0", + "prefixLen":25, + "network":"194.6.208.0\/25", + "version":61229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.208.0", + "prefixLen":25, + "network":"194.6.208.0\/25", + "version":61229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.208.128", + "prefixLen":25, + "network":"194.6.208.128\/25", + "version":61228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.208.128", + "prefixLen":25, + "network":"194.6.208.128\/25", + "version":61228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.209.0", + "prefixLen":25, + "network":"194.6.209.0\/25", + "version":61227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.209.0", + "prefixLen":25, + "network":"194.6.209.0\/25", + "version":61227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.209.128", + "prefixLen":25, + "network":"194.6.209.128\/25", + "version":61226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.209.128", + "prefixLen":25, + "network":"194.6.209.128\/25", + "version":61226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.210.0", + "prefixLen":25, + "network":"194.6.210.0\/25", + "version":61225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.210.0", + "prefixLen":25, + "network":"194.6.210.0\/25", + "version":61225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.210.128", + "prefixLen":25, + "network":"194.6.210.128\/25", + "version":61224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.210.128", + "prefixLen":25, + "network":"194.6.210.128\/25", + "version":61224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.211.0", + "prefixLen":25, + "network":"194.6.211.0\/25", + "version":61223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.211.0", + "prefixLen":25, + "network":"194.6.211.0\/25", + "version":61223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.211.128", + "prefixLen":25, + "network":"194.6.211.128\/25", + "version":61222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.211.128", + "prefixLen":25, + "network":"194.6.211.128\/25", + "version":61222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.224.0", + "prefixLen":25, + "network":"194.6.224.0\/25", + "version":61221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.224.0", + "prefixLen":25, + "network":"194.6.224.0\/25", + "version":61221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.224.128", + "prefixLen":25, + "network":"194.6.224.128\/25", + "version":61220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.224.128", + "prefixLen":25, + "network":"194.6.224.128\/25", + "version":61220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.225.0", + "prefixLen":25, + "network":"194.6.225.0\/25", + "version":61219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.225.0", + "prefixLen":25, + "network":"194.6.225.0\/25", + "version":61219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.225.128", + "prefixLen":25, + "network":"194.6.225.128\/25", + "version":61218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.225.128", + "prefixLen":25, + "network":"194.6.225.128\/25", + "version":61218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.226.0", + "prefixLen":25, + "network":"194.6.226.0\/25", + "version":61217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.226.0", + "prefixLen":25, + "network":"194.6.226.0\/25", + "version":61217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.226.128", + "prefixLen":25, + "network":"194.6.226.128\/25", + "version":61216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.226.128", + "prefixLen":25, + "network":"194.6.226.128\/25", + "version":61216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.227.0", + "prefixLen":25, + "network":"194.6.227.0\/25", + "version":61215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.227.0", + "prefixLen":25, + "network":"194.6.227.0\/25", + "version":61215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.227.128", + "prefixLen":25, + "network":"194.6.227.128\/25", + "version":61214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.227.128", + "prefixLen":25, + "network":"194.6.227.128\/25", + "version":61214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.240.0", + "prefixLen":25, + "network":"194.6.240.0\/25", + "version":61213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.240.0", + "prefixLen":25, + "network":"194.6.240.0\/25", + "version":61213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.240.128", + "prefixLen":25, + "network":"194.6.240.128\/25", + "version":61212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.240.128", + "prefixLen":25, + "network":"194.6.240.128\/25", + "version":61212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.241.0", + "prefixLen":25, + "network":"194.6.241.0\/25", + "version":61211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.241.0", + "prefixLen":25, + "network":"194.6.241.0\/25", + "version":61211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.241.128", + "prefixLen":25, + "network":"194.6.241.128\/25", + "version":61210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.241.128", + "prefixLen":25, + "network":"194.6.241.128\/25", + "version":61210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.242.0", + "prefixLen":25, + "network":"194.6.242.0\/25", + "version":61209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.242.0", + "prefixLen":25, + "network":"194.6.242.0\/25", + "version":61209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.242.128", + "prefixLen":25, + "network":"194.6.242.128\/25", + "version":61208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.242.128", + "prefixLen":25, + "network":"194.6.242.128\/25", + "version":61208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.243.0", + "prefixLen":25, + "network":"194.6.243.0\/25", + "version":61207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.243.0", + "prefixLen":25, + "network":"194.6.243.0\/25", + "version":61207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.6.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.6.243.128", + "prefixLen":25, + "network":"194.6.243.128\/25", + "version":61206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.6.243.128", + "prefixLen":25, + "network":"194.6.243.128\/25", + "version":61206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64950 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.0.0", + "prefixLen":25, + "network":"194.7.0.0\/25", + "version":61333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.0.0", + "prefixLen":25, + "network":"194.7.0.0\/25", + "version":61333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.0.128", + "prefixLen":25, + "network":"194.7.0.128\/25", + "version":61460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.0.128", + "prefixLen":25, + "network":"194.7.0.128\/25", + "version":61460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.1.0", + "prefixLen":25, + "network":"194.7.1.0\/25", + "version":61459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.1.0", + "prefixLen":25, + "network":"194.7.1.0\/25", + "version":61459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.1.128", + "prefixLen":25, + "network":"194.7.1.128\/25", + "version":61458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.1.128", + "prefixLen":25, + "network":"194.7.1.128\/25", + "version":61458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.2.0", + "prefixLen":25, + "network":"194.7.2.0\/25", + "version":61457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.2.0", + "prefixLen":25, + "network":"194.7.2.0\/25", + "version":61457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.2.128", + "prefixLen":25, + "network":"194.7.2.128\/25", + "version":61456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.2.128", + "prefixLen":25, + "network":"194.7.2.128\/25", + "version":61456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.3.0", + "prefixLen":25, + "network":"194.7.3.0\/25", + "version":61455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.3.0", + "prefixLen":25, + "network":"194.7.3.0\/25", + "version":61455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.3.128", + "prefixLen":25, + "network":"194.7.3.128\/25", + "version":61454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.3.128", + "prefixLen":25, + "network":"194.7.3.128\/25", + "version":61454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.16.0", + "prefixLen":25, + "network":"194.7.16.0\/25", + "version":61453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.16.0", + "prefixLen":25, + "network":"194.7.16.0\/25", + "version":61453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.16.128", + "prefixLen":25, + "network":"194.7.16.128\/25", + "version":61452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.16.128", + "prefixLen":25, + "network":"194.7.16.128\/25", + "version":61452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.17.0", + "prefixLen":25, + "network":"194.7.17.0\/25", + "version":61451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.17.0", + "prefixLen":25, + "network":"194.7.17.0\/25", + "version":61451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.17.128", + "prefixLen":25, + "network":"194.7.17.128\/25", + "version":61450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.17.128", + "prefixLen":25, + "network":"194.7.17.128\/25", + "version":61450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.18.0", + "prefixLen":25, + "network":"194.7.18.0\/25", + "version":61449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.18.0", + "prefixLen":25, + "network":"194.7.18.0\/25", + "version":61449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.18.128", + "prefixLen":25, + "network":"194.7.18.128\/25", + "version":61448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.18.128", + "prefixLen":25, + "network":"194.7.18.128\/25", + "version":61448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.19.0", + "prefixLen":25, + "network":"194.7.19.0\/25", + "version":61447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.19.0", + "prefixLen":25, + "network":"194.7.19.0\/25", + "version":61447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.19.128", + "prefixLen":25, + "network":"194.7.19.128\/25", + "version":61446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.19.128", + "prefixLen":25, + "network":"194.7.19.128\/25", + "version":61446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.32.0", + "prefixLen":25, + "network":"194.7.32.0\/25", + "version":61445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.32.0", + "prefixLen":25, + "network":"194.7.32.0\/25", + "version":61445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.32.128", + "prefixLen":25, + "network":"194.7.32.128\/25", + "version":61444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.32.128", + "prefixLen":25, + "network":"194.7.32.128\/25", + "version":61444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.33.0", + "prefixLen":25, + "network":"194.7.33.0\/25", + "version":61443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.33.0", + "prefixLen":25, + "network":"194.7.33.0\/25", + "version":61443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.33.128", + "prefixLen":25, + "network":"194.7.33.128\/25", + "version":61442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.33.128", + "prefixLen":25, + "network":"194.7.33.128\/25", + "version":61442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.34.0", + "prefixLen":25, + "network":"194.7.34.0\/25", + "version":61441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.34.0", + "prefixLen":25, + "network":"194.7.34.0\/25", + "version":61441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.34.128", + "prefixLen":25, + "network":"194.7.34.128\/25", + "version":61440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.34.128", + "prefixLen":25, + "network":"194.7.34.128\/25", + "version":61440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.35.0", + "prefixLen":25, + "network":"194.7.35.0\/25", + "version":61439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.35.0", + "prefixLen":25, + "network":"194.7.35.0\/25", + "version":61439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.35.128", + "prefixLen":25, + "network":"194.7.35.128\/25", + "version":61438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.35.128", + "prefixLen":25, + "network":"194.7.35.128\/25", + "version":61438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.48.0", + "prefixLen":25, + "network":"194.7.48.0\/25", + "version":61437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.48.0", + "prefixLen":25, + "network":"194.7.48.0\/25", + "version":61437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.48.128", + "prefixLen":25, + "network":"194.7.48.128\/25", + "version":61436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.48.128", + "prefixLen":25, + "network":"194.7.48.128\/25", + "version":61436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.49.0", + "prefixLen":25, + "network":"194.7.49.0\/25", + "version":61435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.49.0", + "prefixLen":25, + "network":"194.7.49.0\/25", + "version":61435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.49.128", + "prefixLen":25, + "network":"194.7.49.128\/25", + "version":61434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.49.128", + "prefixLen":25, + "network":"194.7.49.128\/25", + "version":61434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.50.0", + "prefixLen":25, + "network":"194.7.50.0\/25", + "version":61433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.50.0", + "prefixLen":25, + "network":"194.7.50.0\/25", + "version":61433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.50.128", + "prefixLen":25, + "network":"194.7.50.128\/25", + "version":61432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.50.128", + "prefixLen":25, + "network":"194.7.50.128\/25", + "version":61432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.51.0", + "prefixLen":25, + "network":"194.7.51.0\/25", + "version":61431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.51.0", + "prefixLen":25, + "network":"194.7.51.0\/25", + "version":61431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.51.128", + "prefixLen":25, + "network":"194.7.51.128\/25", + "version":61430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.51.128", + "prefixLen":25, + "network":"194.7.51.128\/25", + "version":61430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.64.0", + "prefixLen":25, + "network":"194.7.64.0\/25", + "version":61429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.64.0", + "prefixLen":25, + "network":"194.7.64.0\/25", + "version":61429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.64.128", + "prefixLen":25, + "network":"194.7.64.128\/25", + "version":61428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.64.128", + "prefixLen":25, + "network":"194.7.64.128\/25", + "version":61428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.65.0", + "prefixLen":25, + "network":"194.7.65.0\/25", + "version":61427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.65.0", + "prefixLen":25, + "network":"194.7.65.0\/25", + "version":61427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.65.128", + "prefixLen":25, + "network":"194.7.65.128\/25", + "version":61426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.65.128", + "prefixLen":25, + "network":"194.7.65.128\/25", + "version":61426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.66.0", + "prefixLen":25, + "network":"194.7.66.0\/25", + "version":61425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.66.0", + "prefixLen":25, + "network":"194.7.66.0\/25", + "version":61425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.66.128", + "prefixLen":25, + "network":"194.7.66.128\/25", + "version":61424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.66.128", + "prefixLen":25, + "network":"194.7.66.128\/25", + "version":61424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.67.0", + "prefixLen":25, + "network":"194.7.67.0\/25", + "version":61423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.67.0", + "prefixLen":25, + "network":"194.7.67.0\/25", + "version":61423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.67.128", + "prefixLen":25, + "network":"194.7.67.128\/25", + "version":61422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.67.128", + "prefixLen":25, + "network":"194.7.67.128\/25", + "version":61422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.80.0", + "prefixLen":25, + "network":"194.7.80.0\/25", + "version":61421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.80.0", + "prefixLen":25, + "network":"194.7.80.0\/25", + "version":61421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.80.128", + "prefixLen":25, + "network":"194.7.80.128\/25", + "version":61420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.80.128", + "prefixLen":25, + "network":"194.7.80.128\/25", + "version":61420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.81.0", + "prefixLen":25, + "network":"194.7.81.0\/25", + "version":61419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.81.0", + "prefixLen":25, + "network":"194.7.81.0\/25", + "version":61419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.81.128", + "prefixLen":25, + "network":"194.7.81.128\/25", + "version":61418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.81.128", + "prefixLen":25, + "network":"194.7.81.128\/25", + "version":61418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.82.0", + "prefixLen":25, + "network":"194.7.82.0\/25", + "version":61417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.82.0", + "prefixLen":25, + "network":"194.7.82.0\/25", + "version":61417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.82.128", + "prefixLen":25, + "network":"194.7.82.128\/25", + "version":61416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.82.128", + "prefixLen":25, + "network":"194.7.82.128\/25", + "version":61416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.83.0", + "prefixLen":25, + "network":"194.7.83.0\/25", + "version":61415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.83.0", + "prefixLen":25, + "network":"194.7.83.0\/25", + "version":61415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.83.128", + "prefixLen":25, + "network":"194.7.83.128\/25", + "version":61414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.83.128", + "prefixLen":25, + "network":"194.7.83.128\/25", + "version":61414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.96.0", + "prefixLen":25, + "network":"194.7.96.0\/25", + "version":61413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.96.0", + "prefixLen":25, + "network":"194.7.96.0\/25", + "version":61413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.96.128", + "prefixLen":25, + "network":"194.7.96.128\/25", + "version":61412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.96.128", + "prefixLen":25, + "network":"194.7.96.128\/25", + "version":61412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.97.0", + "prefixLen":25, + "network":"194.7.97.0\/25", + "version":61411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.97.0", + "prefixLen":25, + "network":"194.7.97.0\/25", + "version":61411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.97.128", + "prefixLen":25, + "network":"194.7.97.128\/25", + "version":61410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.97.128", + "prefixLen":25, + "network":"194.7.97.128\/25", + "version":61410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.98.0", + "prefixLen":25, + "network":"194.7.98.0\/25", + "version":61409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.98.0", + "prefixLen":25, + "network":"194.7.98.0\/25", + "version":61409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.98.128", + "prefixLen":25, + "network":"194.7.98.128\/25", + "version":61408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.98.128", + "prefixLen":25, + "network":"194.7.98.128\/25", + "version":61408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.99.0", + "prefixLen":25, + "network":"194.7.99.0\/25", + "version":61407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.99.0", + "prefixLen":25, + "network":"194.7.99.0\/25", + "version":61407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.99.128", + "prefixLen":25, + "network":"194.7.99.128\/25", + "version":61406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.99.128", + "prefixLen":25, + "network":"194.7.99.128\/25", + "version":61406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.112.0", + "prefixLen":25, + "network":"194.7.112.0\/25", + "version":61405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.112.0", + "prefixLen":25, + "network":"194.7.112.0\/25", + "version":61405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.112.128", + "prefixLen":25, + "network":"194.7.112.128\/25", + "version":61404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.112.128", + "prefixLen":25, + "network":"194.7.112.128\/25", + "version":61404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.113.0", + "prefixLen":25, + "network":"194.7.113.0\/25", + "version":61403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.113.0", + "prefixLen":25, + "network":"194.7.113.0\/25", + "version":61403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.113.128", + "prefixLen":25, + "network":"194.7.113.128\/25", + "version":61402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.113.128", + "prefixLen":25, + "network":"194.7.113.128\/25", + "version":61402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.114.0", + "prefixLen":25, + "network":"194.7.114.0\/25", + "version":61401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.114.0", + "prefixLen":25, + "network":"194.7.114.0\/25", + "version":61401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.114.128", + "prefixLen":25, + "network":"194.7.114.128\/25", + "version":61400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.114.128", + "prefixLen":25, + "network":"194.7.114.128\/25", + "version":61400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.115.0", + "prefixLen":25, + "network":"194.7.115.0\/25", + "version":61399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.115.0", + "prefixLen":25, + "network":"194.7.115.0\/25", + "version":61399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.115.128", + "prefixLen":25, + "network":"194.7.115.128\/25", + "version":61398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.115.128", + "prefixLen":25, + "network":"194.7.115.128\/25", + "version":61398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.128.0", + "prefixLen":25, + "network":"194.7.128.0\/25", + "version":61397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.128.0", + "prefixLen":25, + "network":"194.7.128.0\/25", + "version":61397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.128.128", + "prefixLen":25, + "network":"194.7.128.128\/25", + "version":61396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.128.128", + "prefixLen":25, + "network":"194.7.128.128\/25", + "version":61396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.129.0", + "prefixLen":25, + "network":"194.7.129.0\/25", + "version":61395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.129.0", + "prefixLen":25, + "network":"194.7.129.0\/25", + "version":61395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.129.128", + "prefixLen":25, + "network":"194.7.129.128\/25", + "version":61394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.129.128", + "prefixLen":25, + "network":"194.7.129.128\/25", + "version":61394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.130.0", + "prefixLen":25, + "network":"194.7.130.0\/25", + "version":61393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.130.0", + "prefixLen":25, + "network":"194.7.130.0\/25", + "version":61393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.130.128", + "prefixLen":25, + "network":"194.7.130.128\/25", + "version":61392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.130.128", + "prefixLen":25, + "network":"194.7.130.128\/25", + "version":61392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.131.0", + "prefixLen":25, + "network":"194.7.131.0\/25", + "version":61391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.131.0", + "prefixLen":25, + "network":"194.7.131.0\/25", + "version":61391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.131.128", + "prefixLen":25, + "network":"194.7.131.128\/25", + "version":61390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.131.128", + "prefixLen":25, + "network":"194.7.131.128\/25", + "version":61390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.144.0", + "prefixLen":25, + "network":"194.7.144.0\/25", + "version":61389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.144.0", + "prefixLen":25, + "network":"194.7.144.0\/25", + "version":61389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.144.128", + "prefixLen":25, + "network":"194.7.144.128\/25", + "version":61388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.144.128", + "prefixLen":25, + "network":"194.7.144.128\/25", + "version":61388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.145.0", + "prefixLen":25, + "network":"194.7.145.0\/25", + "version":61387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.145.0", + "prefixLen":25, + "network":"194.7.145.0\/25", + "version":61387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.145.128", + "prefixLen":25, + "network":"194.7.145.128\/25", + "version":61386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.145.128", + "prefixLen":25, + "network":"194.7.145.128\/25", + "version":61386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.146.0", + "prefixLen":25, + "network":"194.7.146.0\/25", + "version":61385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.146.0", + "prefixLen":25, + "network":"194.7.146.0\/25", + "version":61385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.146.128", + "prefixLen":25, + "network":"194.7.146.128\/25", + "version":61384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.146.128", + "prefixLen":25, + "network":"194.7.146.128\/25", + "version":61384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.147.0", + "prefixLen":25, + "network":"194.7.147.0\/25", + "version":61383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.147.0", + "prefixLen":25, + "network":"194.7.147.0\/25", + "version":61383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.147.128", + "prefixLen":25, + "network":"194.7.147.128\/25", + "version":61382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.147.128", + "prefixLen":25, + "network":"194.7.147.128\/25", + "version":61382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.160.0", + "prefixLen":25, + "network":"194.7.160.0\/25", + "version":61381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.160.0", + "prefixLen":25, + "network":"194.7.160.0\/25", + "version":61381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.160.128", + "prefixLen":25, + "network":"194.7.160.128\/25", + "version":61380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.160.128", + "prefixLen":25, + "network":"194.7.160.128\/25", + "version":61380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.161.0", + "prefixLen":25, + "network":"194.7.161.0\/25", + "version":61379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.161.0", + "prefixLen":25, + "network":"194.7.161.0\/25", + "version":61379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.161.128", + "prefixLen":25, + "network":"194.7.161.128\/25", + "version":61378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.161.128", + "prefixLen":25, + "network":"194.7.161.128\/25", + "version":61378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.162.0", + "prefixLen":25, + "network":"194.7.162.0\/25", + "version":61377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.162.0", + "prefixLen":25, + "network":"194.7.162.0\/25", + "version":61377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.162.128", + "prefixLen":25, + "network":"194.7.162.128\/25", + "version":61376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.162.128", + "prefixLen":25, + "network":"194.7.162.128\/25", + "version":61376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.163.0", + "prefixLen":25, + "network":"194.7.163.0\/25", + "version":61375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.163.0", + "prefixLen":25, + "network":"194.7.163.0\/25", + "version":61375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.163.128", + "prefixLen":25, + "network":"194.7.163.128\/25", + "version":61374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.163.128", + "prefixLen":25, + "network":"194.7.163.128\/25", + "version":61374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.176.0", + "prefixLen":25, + "network":"194.7.176.0\/25", + "version":61373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.176.0", + "prefixLen":25, + "network":"194.7.176.0\/25", + "version":61373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.176.128", + "prefixLen":25, + "network":"194.7.176.128\/25", + "version":61372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.176.128", + "prefixLen":25, + "network":"194.7.176.128\/25", + "version":61372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.177.0", + "prefixLen":25, + "network":"194.7.177.0\/25", + "version":61371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.177.0", + "prefixLen":25, + "network":"194.7.177.0\/25", + "version":61371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.177.128", + "prefixLen":25, + "network":"194.7.177.128\/25", + "version":61370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.177.128", + "prefixLen":25, + "network":"194.7.177.128\/25", + "version":61370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.178.0", + "prefixLen":25, + "network":"194.7.178.0\/25", + "version":61369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.178.0", + "prefixLen":25, + "network":"194.7.178.0\/25", + "version":61369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.178.128", + "prefixLen":25, + "network":"194.7.178.128\/25", + "version":61368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.178.128", + "prefixLen":25, + "network":"194.7.178.128\/25", + "version":61368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.179.0", + "prefixLen":25, + "network":"194.7.179.0\/25", + "version":61367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.179.0", + "prefixLen":25, + "network":"194.7.179.0\/25", + "version":61367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.179.128", + "prefixLen":25, + "network":"194.7.179.128\/25", + "version":61366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.179.128", + "prefixLen":25, + "network":"194.7.179.128\/25", + "version":61366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.192.0", + "prefixLen":25, + "network":"194.7.192.0\/25", + "version":61365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.192.0", + "prefixLen":25, + "network":"194.7.192.0\/25", + "version":61365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.192.128", + "prefixLen":25, + "network":"194.7.192.128\/25", + "version":61364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.192.128", + "prefixLen":25, + "network":"194.7.192.128\/25", + "version":61364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.193.0", + "prefixLen":25, + "network":"194.7.193.0\/25", + "version":61363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.193.0", + "prefixLen":25, + "network":"194.7.193.0\/25", + "version":61363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.193.128", + "prefixLen":25, + "network":"194.7.193.128\/25", + "version":61362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.193.128", + "prefixLen":25, + "network":"194.7.193.128\/25", + "version":61362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.194.0", + "prefixLen":25, + "network":"194.7.194.0\/25", + "version":61361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.194.0", + "prefixLen":25, + "network":"194.7.194.0\/25", + "version":61361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.194.128", + "prefixLen":25, + "network":"194.7.194.128\/25", + "version":61360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.194.128", + "prefixLen":25, + "network":"194.7.194.128\/25", + "version":61360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.195.0", + "prefixLen":25, + "network":"194.7.195.0\/25", + "version":61359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.195.0", + "prefixLen":25, + "network":"194.7.195.0\/25", + "version":61359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.195.128", + "prefixLen":25, + "network":"194.7.195.128\/25", + "version":61358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.195.128", + "prefixLen":25, + "network":"194.7.195.128\/25", + "version":61358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.208.0", + "prefixLen":25, + "network":"194.7.208.0\/25", + "version":61357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.208.0", + "prefixLen":25, + "network":"194.7.208.0\/25", + "version":61357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.208.128", + "prefixLen":25, + "network":"194.7.208.128\/25", + "version":61356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.208.128", + "prefixLen":25, + "network":"194.7.208.128\/25", + "version":61356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.209.0", + "prefixLen":25, + "network":"194.7.209.0\/25", + "version":61355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.209.0", + "prefixLen":25, + "network":"194.7.209.0\/25", + "version":61355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.209.128", + "prefixLen":25, + "network":"194.7.209.128\/25", + "version":61354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.209.128", + "prefixLen":25, + "network":"194.7.209.128\/25", + "version":61354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.210.0", + "prefixLen":25, + "network":"194.7.210.0\/25", + "version":61353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.210.0", + "prefixLen":25, + "network":"194.7.210.0\/25", + "version":61353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.210.128", + "prefixLen":25, + "network":"194.7.210.128\/25", + "version":61352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.210.128", + "prefixLen":25, + "network":"194.7.210.128\/25", + "version":61352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.211.0", + "prefixLen":25, + "network":"194.7.211.0\/25", + "version":61351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.211.0", + "prefixLen":25, + "network":"194.7.211.0\/25", + "version":61351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.211.128", + "prefixLen":25, + "network":"194.7.211.128\/25", + "version":61350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.211.128", + "prefixLen":25, + "network":"194.7.211.128\/25", + "version":61350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.224.0", + "prefixLen":25, + "network":"194.7.224.0\/25", + "version":61349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.224.0", + "prefixLen":25, + "network":"194.7.224.0\/25", + "version":61349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.224.128", + "prefixLen":25, + "network":"194.7.224.128\/25", + "version":61348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.224.128", + "prefixLen":25, + "network":"194.7.224.128\/25", + "version":61348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.225.0", + "prefixLen":25, + "network":"194.7.225.0\/25", + "version":61347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.225.0", + "prefixLen":25, + "network":"194.7.225.0\/25", + "version":61347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.225.128", + "prefixLen":25, + "network":"194.7.225.128\/25", + "version":61346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.225.128", + "prefixLen":25, + "network":"194.7.225.128\/25", + "version":61346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.226.0", + "prefixLen":25, + "network":"194.7.226.0\/25", + "version":61345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.226.0", + "prefixLen":25, + "network":"194.7.226.0\/25", + "version":61345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.226.128", + "prefixLen":25, + "network":"194.7.226.128\/25", + "version":61344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.226.128", + "prefixLen":25, + "network":"194.7.226.128\/25", + "version":61344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.227.0", + "prefixLen":25, + "network":"194.7.227.0\/25", + "version":61343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.227.0", + "prefixLen":25, + "network":"194.7.227.0\/25", + "version":61343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.227.128", + "prefixLen":25, + "network":"194.7.227.128\/25", + "version":61342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.227.128", + "prefixLen":25, + "network":"194.7.227.128\/25", + "version":61342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.240.0", + "prefixLen":25, + "network":"194.7.240.0\/25", + "version":61341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.240.0", + "prefixLen":25, + "network":"194.7.240.0\/25", + "version":61341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.240.128", + "prefixLen":25, + "network":"194.7.240.128\/25", + "version":61340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.240.128", + "prefixLen":25, + "network":"194.7.240.128\/25", + "version":61340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.241.0", + "prefixLen":25, + "network":"194.7.241.0\/25", + "version":61339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.241.0", + "prefixLen":25, + "network":"194.7.241.0\/25", + "version":61339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.241.128", + "prefixLen":25, + "network":"194.7.241.128\/25", + "version":61338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.241.128", + "prefixLen":25, + "network":"194.7.241.128\/25", + "version":61338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.242.0", + "prefixLen":25, + "network":"194.7.242.0\/25", + "version":61337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.242.0", + "prefixLen":25, + "network":"194.7.242.0\/25", + "version":61337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.242.128", + "prefixLen":25, + "network":"194.7.242.128\/25", + "version":61336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.242.128", + "prefixLen":25, + "network":"194.7.242.128\/25", + "version":61336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.243.0", + "prefixLen":25, + "network":"194.7.243.0\/25", + "version":61335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.243.0", + "prefixLen":25, + "network":"194.7.243.0\/25", + "version":61335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.7.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.7.243.128", + "prefixLen":25, + "network":"194.7.243.128\/25", + "version":61334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.7.243.128", + "prefixLen":25, + "network":"194.7.243.128\/25", + "version":61334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64951 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.0.0", + "prefixLen":25, + "network":"194.8.0.0\/25", + "version":61461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.0.0", + "prefixLen":25, + "network":"194.8.0.0\/25", + "version":61461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.0.128", + "prefixLen":25, + "network":"194.8.0.128\/25", + "version":61588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.0.128", + "prefixLen":25, + "network":"194.8.0.128\/25", + "version":61588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.1.0", + "prefixLen":25, + "network":"194.8.1.0\/25", + "version":61587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.1.0", + "prefixLen":25, + "network":"194.8.1.0\/25", + "version":61587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.1.128", + "prefixLen":25, + "network":"194.8.1.128\/25", + "version":61586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.1.128", + "prefixLen":25, + "network":"194.8.1.128\/25", + "version":61586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.2.0", + "prefixLen":25, + "network":"194.8.2.0\/25", + "version":61585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.2.0", + "prefixLen":25, + "network":"194.8.2.0\/25", + "version":61585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.2.128", + "prefixLen":25, + "network":"194.8.2.128\/25", + "version":61584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.2.128", + "prefixLen":25, + "network":"194.8.2.128\/25", + "version":61584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.3.0", + "prefixLen":25, + "network":"194.8.3.0\/25", + "version":61583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.3.0", + "prefixLen":25, + "network":"194.8.3.0\/25", + "version":61583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.3.128", + "prefixLen":25, + "network":"194.8.3.128\/25", + "version":61582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.3.128", + "prefixLen":25, + "network":"194.8.3.128\/25", + "version":61582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.16.0", + "prefixLen":25, + "network":"194.8.16.0\/25", + "version":61581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.16.0", + "prefixLen":25, + "network":"194.8.16.0\/25", + "version":61581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.16.128", + "prefixLen":25, + "network":"194.8.16.128\/25", + "version":61580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.16.128", + "prefixLen":25, + "network":"194.8.16.128\/25", + "version":61580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.17.0", + "prefixLen":25, + "network":"194.8.17.0\/25", + "version":61579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.17.0", + "prefixLen":25, + "network":"194.8.17.0\/25", + "version":61579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.17.128", + "prefixLen":25, + "network":"194.8.17.128\/25", + "version":61578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.17.128", + "prefixLen":25, + "network":"194.8.17.128\/25", + "version":61578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.18.0", + "prefixLen":25, + "network":"194.8.18.0\/25", + "version":61577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.18.0", + "prefixLen":25, + "network":"194.8.18.0\/25", + "version":61577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.18.128", + "prefixLen":25, + "network":"194.8.18.128\/25", + "version":61576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.18.128", + "prefixLen":25, + "network":"194.8.18.128\/25", + "version":61576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.19.0", + "prefixLen":25, + "network":"194.8.19.0\/25", + "version":61575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.19.0", + "prefixLen":25, + "network":"194.8.19.0\/25", + "version":61575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.19.128", + "prefixLen":25, + "network":"194.8.19.128\/25", + "version":61574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.19.128", + "prefixLen":25, + "network":"194.8.19.128\/25", + "version":61574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.32.0", + "prefixLen":25, + "network":"194.8.32.0\/25", + "version":61573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.32.0", + "prefixLen":25, + "network":"194.8.32.0\/25", + "version":61573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.32.128", + "prefixLen":25, + "network":"194.8.32.128\/25", + "version":61572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.32.128", + "prefixLen":25, + "network":"194.8.32.128\/25", + "version":61572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.33.0", + "prefixLen":25, + "network":"194.8.33.0\/25", + "version":61571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.33.0", + "prefixLen":25, + "network":"194.8.33.0\/25", + "version":61571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.33.128", + "prefixLen":25, + "network":"194.8.33.128\/25", + "version":61570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.33.128", + "prefixLen":25, + "network":"194.8.33.128\/25", + "version":61570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.34.0", + "prefixLen":25, + "network":"194.8.34.0\/25", + "version":61569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.34.0", + "prefixLen":25, + "network":"194.8.34.0\/25", + "version":61569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.34.128", + "prefixLen":25, + "network":"194.8.34.128\/25", + "version":61568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.34.128", + "prefixLen":25, + "network":"194.8.34.128\/25", + "version":61568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.35.0", + "prefixLen":25, + "network":"194.8.35.0\/25", + "version":61567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.35.0", + "prefixLen":25, + "network":"194.8.35.0\/25", + "version":61567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.35.128", + "prefixLen":25, + "network":"194.8.35.128\/25", + "version":61566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.35.128", + "prefixLen":25, + "network":"194.8.35.128\/25", + "version":61566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.48.0", + "prefixLen":25, + "network":"194.8.48.0\/25", + "version":61565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.48.0", + "prefixLen":25, + "network":"194.8.48.0\/25", + "version":61565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.48.128", + "prefixLen":25, + "network":"194.8.48.128\/25", + "version":61564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.48.128", + "prefixLen":25, + "network":"194.8.48.128\/25", + "version":61564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.49.0", + "prefixLen":25, + "network":"194.8.49.0\/25", + "version":61563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.49.0", + "prefixLen":25, + "network":"194.8.49.0\/25", + "version":61563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.49.128", + "prefixLen":25, + "network":"194.8.49.128\/25", + "version":61562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.49.128", + "prefixLen":25, + "network":"194.8.49.128\/25", + "version":61562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.50.0", + "prefixLen":25, + "network":"194.8.50.0\/25", + "version":61561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.50.0", + "prefixLen":25, + "network":"194.8.50.0\/25", + "version":61561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.50.128", + "prefixLen":25, + "network":"194.8.50.128\/25", + "version":61560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.50.128", + "prefixLen":25, + "network":"194.8.50.128\/25", + "version":61560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.51.0", + "prefixLen":25, + "network":"194.8.51.0\/25", + "version":61559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.51.0", + "prefixLen":25, + "network":"194.8.51.0\/25", + "version":61559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.51.128", + "prefixLen":25, + "network":"194.8.51.128\/25", + "version":61558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.51.128", + "prefixLen":25, + "network":"194.8.51.128\/25", + "version":61558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.64.0", + "prefixLen":25, + "network":"194.8.64.0\/25", + "version":61557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.64.0", + "prefixLen":25, + "network":"194.8.64.0\/25", + "version":61557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.64.128", + "prefixLen":25, + "network":"194.8.64.128\/25", + "version":61556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.64.128", + "prefixLen":25, + "network":"194.8.64.128\/25", + "version":61556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.65.0", + "prefixLen":25, + "network":"194.8.65.0\/25", + "version":61555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.65.0", + "prefixLen":25, + "network":"194.8.65.0\/25", + "version":61555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.65.128", + "prefixLen":25, + "network":"194.8.65.128\/25", + "version":61554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.65.128", + "prefixLen":25, + "network":"194.8.65.128\/25", + "version":61554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.66.0", + "prefixLen":25, + "network":"194.8.66.0\/25", + "version":61553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.66.0", + "prefixLen":25, + "network":"194.8.66.0\/25", + "version":61553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.66.128", + "prefixLen":25, + "network":"194.8.66.128\/25", + "version":61552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.66.128", + "prefixLen":25, + "network":"194.8.66.128\/25", + "version":61552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.67.0", + "prefixLen":25, + "network":"194.8.67.0\/25", + "version":61551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.67.0", + "prefixLen":25, + "network":"194.8.67.0\/25", + "version":61551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.67.128", + "prefixLen":25, + "network":"194.8.67.128\/25", + "version":61550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.67.128", + "prefixLen":25, + "network":"194.8.67.128\/25", + "version":61550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.80.0", + "prefixLen":25, + "network":"194.8.80.0\/25", + "version":61549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.80.0", + "prefixLen":25, + "network":"194.8.80.0\/25", + "version":61549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.80.128", + "prefixLen":25, + "network":"194.8.80.128\/25", + "version":61548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.80.128", + "prefixLen":25, + "network":"194.8.80.128\/25", + "version":61548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.81.0", + "prefixLen":25, + "network":"194.8.81.0\/25", + "version":61547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.81.0", + "prefixLen":25, + "network":"194.8.81.0\/25", + "version":61547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.81.128", + "prefixLen":25, + "network":"194.8.81.128\/25", + "version":61546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.81.128", + "prefixLen":25, + "network":"194.8.81.128\/25", + "version":61546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.82.0", + "prefixLen":25, + "network":"194.8.82.0\/25", + "version":61545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.82.0", + "prefixLen":25, + "network":"194.8.82.0\/25", + "version":61545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.82.128", + "prefixLen":25, + "network":"194.8.82.128\/25", + "version":61544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.82.128", + "prefixLen":25, + "network":"194.8.82.128\/25", + "version":61544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.83.0", + "prefixLen":25, + "network":"194.8.83.0\/25", + "version":61543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.83.0", + "prefixLen":25, + "network":"194.8.83.0\/25", + "version":61543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.83.128", + "prefixLen":25, + "network":"194.8.83.128\/25", + "version":61542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.83.128", + "prefixLen":25, + "network":"194.8.83.128\/25", + "version":61542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.96.0", + "prefixLen":25, + "network":"194.8.96.0\/25", + "version":61541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.96.0", + "prefixLen":25, + "network":"194.8.96.0\/25", + "version":61541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.96.128", + "prefixLen":25, + "network":"194.8.96.128\/25", + "version":61540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.96.128", + "prefixLen":25, + "network":"194.8.96.128\/25", + "version":61540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.97.0", + "prefixLen":25, + "network":"194.8.97.0\/25", + "version":61539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.97.0", + "prefixLen":25, + "network":"194.8.97.0\/25", + "version":61539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.97.128", + "prefixLen":25, + "network":"194.8.97.128\/25", + "version":61538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.97.128", + "prefixLen":25, + "network":"194.8.97.128\/25", + "version":61538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.98.0", + "prefixLen":25, + "network":"194.8.98.0\/25", + "version":61537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.98.0", + "prefixLen":25, + "network":"194.8.98.0\/25", + "version":61537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.98.128", + "prefixLen":25, + "network":"194.8.98.128\/25", + "version":61536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.98.128", + "prefixLen":25, + "network":"194.8.98.128\/25", + "version":61536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.99.0", + "prefixLen":25, + "network":"194.8.99.0\/25", + "version":61535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.99.0", + "prefixLen":25, + "network":"194.8.99.0\/25", + "version":61535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.99.128", + "prefixLen":25, + "network":"194.8.99.128\/25", + "version":61534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.99.128", + "prefixLen":25, + "network":"194.8.99.128\/25", + "version":61534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.112.0", + "prefixLen":25, + "network":"194.8.112.0\/25", + "version":61533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.112.0", + "prefixLen":25, + "network":"194.8.112.0\/25", + "version":61533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.112.128", + "prefixLen":25, + "network":"194.8.112.128\/25", + "version":61532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.112.128", + "prefixLen":25, + "network":"194.8.112.128\/25", + "version":61532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.113.0", + "prefixLen":25, + "network":"194.8.113.0\/25", + "version":61531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.113.0", + "prefixLen":25, + "network":"194.8.113.0\/25", + "version":61531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.113.128", + "prefixLen":25, + "network":"194.8.113.128\/25", + "version":61530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.113.128", + "prefixLen":25, + "network":"194.8.113.128\/25", + "version":61530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.114.0", + "prefixLen":25, + "network":"194.8.114.0\/25", + "version":61529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.114.0", + "prefixLen":25, + "network":"194.8.114.0\/25", + "version":61529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.114.128", + "prefixLen":25, + "network":"194.8.114.128\/25", + "version":61528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.114.128", + "prefixLen":25, + "network":"194.8.114.128\/25", + "version":61528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.115.0", + "prefixLen":25, + "network":"194.8.115.0\/25", + "version":61527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.115.0", + "prefixLen":25, + "network":"194.8.115.0\/25", + "version":61527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.115.128", + "prefixLen":25, + "network":"194.8.115.128\/25", + "version":61526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.115.128", + "prefixLen":25, + "network":"194.8.115.128\/25", + "version":61526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.128.0", + "prefixLen":25, + "network":"194.8.128.0\/25", + "version":61525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.128.0", + "prefixLen":25, + "network":"194.8.128.0\/25", + "version":61525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.128.128", + "prefixLen":25, + "network":"194.8.128.128\/25", + "version":61524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.128.128", + "prefixLen":25, + "network":"194.8.128.128\/25", + "version":61524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.129.0", + "prefixLen":25, + "network":"194.8.129.0\/25", + "version":61523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.129.0", + "prefixLen":25, + "network":"194.8.129.0\/25", + "version":61523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.129.128", + "prefixLen":25, + "network":"194.8.129.128\/25", + "version":61522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.129.128", + "prefixLen":25, + "network":"194.8.129.128\/25", + "version":61522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.130.0", + "prefixLen":25, + "network":"194.8.130.0\/25", + "version":61521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.130.0", + "prefixLen":25, + "network":"194.8.130.0\/25", + "version":61521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.130.128", + "prefixLen":25, + "network":"194.8.130.128\/25", + "version":61520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.130.128", + "prefixLen":25, + "network":"194.8.130.128\/25", + "version":61520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.131.0", + "prefixLen":25, + "network":"194.8.131.0\/25", + "version":61519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.131.0", + "prefixLen":25, + "network":"194.8.131.0\/25", + "version":61519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.131.128", + "prefixLen":25, + "network":"194.8.131.128\/25", + "version":61518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.131.128", + "prefixLen":25, + "network":"194.8.131.128\/25", + "version":61518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.144.0", + "prefixLen":25, + "network":"194.8.144.0\/25", + "version":61517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.144.0", + "prefixLen":25, + "network":"194.8.144.0\/25", + "version":61517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.144.128", + "prefixLen":25, + "network":"194.8.144.128\/25", + "version":61516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.144.128", + "prefixLen":25, + "network":"194.8.144.128\/25", + "version":61516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.145.0", + "prefixLen":25, + "network":"194.8.145.0\/25", + "version":61515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.145.0", + "prefixLen":25, + "network":"194.8.145.0\/25", + "version":61515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.145.128", + "prefixLen":25, + "network":"194.8.145.128\/25", + "version":61514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.145.128", + "prefixLen":25, + "network":"194.8.145.128\/25", + "version":61514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.146.0", + "prefixLen":25, + "network":"194.8.146.0\/25", + "version":61513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.146.0", + "prefixLen":25, + "network":"194.8.146.0\/25", + "version":61513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.146.128", + "prefixLen":25, + "network":"194.8.146.128\/25", + "version":61512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.146.128", + "prefixLen":25, + "network":"194.8.146.128\/25", + "version":61512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.147.0", + "prefixLen":25, + "network":"194.8.147.0\/25", + "version":61511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.147.0", + "prefixLen":25, + "network":"194.8.147.0\/25", + "version":61511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.147.128", + "prefixLen":25, + "network":"194.8.147.128\/25", + "version":61510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.147.128", + "prefixLen":25, + "network":"194.8.147.128\/25", + "version":61510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.160.0", + "prefixLen":25, + "network":"194.8.160.0\/25", + "version":61509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.160.0", + "prefixLen":25, + "network":"194.8.160.0\/25", + "version":61509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.160.128", + "prefixLen":25, + "network":"194.8.160.128\/25", + "version":61508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.160.128", + "prefixLen":25, + "network":"194.8.160.128\/25", + "version":61508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.161.0", + "prefixLen":25, + "network":"194.8.161.0\/25", + "version":61507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.161.0", + "prefixLen":25, + "network":"194.8.161.0\/25", + "version":61507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.161.128", + "prefixLen":25, + "network":"194.8.161.128\/25", + "version":61506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.161.128", + "prefixLen":25, + "network":"194.8.161.128\/25", + "version":61506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.162.0", + "prefixLen":25, + "network":"194.8.162.0\/25", + "version":61505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.162.0", + "prefixLen":25, + "network":"194.8.162.0\/25", + "version":61505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.162.128", + "prefixLen":25, + "network":"194.8.162.128\/25", + "version":61504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.162.128", + "prefixLen":25, + "network":"194.8.162.128\/25", + "version":61504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.163.0", + "prefixLen":25, + "network":"194.8.163.0\/25", + "version":61503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.163.0", + "prefixLen":25, + "network":"194.8.163.0\/25", + "version":61503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.163.128", + "prefixLen":25, + "network":"194.8.163.128\/25", + "version":61502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.163.128", + "prefixLen":25, + "network":"194.8.163.128\/25", + "version":61502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.176.0", + "prefixLen":25, + "network":"194.8.176.0\/25", + "version":61501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.176.0", + "prefixLen":25, + "network":"194.8.176.0\/25", + "version":61501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.176.128", + "prefixLen":25, + "network":"194.8.176.128\/25", + "version":61500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.176.128", + "prefixLen":25, + "network":"194.8.176.128\/25", + "version":61500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.177.0", + "prefixLen":25, + "network":"194.8.177.0\/25", + "version":61499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.177.0", + "prefixLen":25, + "network":"194.8.177.0\/25", + "version":61499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.177.128", + "prefixLen":25, + "network":"194.8.177.128\/25", + "version":61498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.177.128", + "prefixLen":25, + "network":"194.8.177.128\/25", + "version":61498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.178.0", + "prefixLen":25, + "network":"194.8.178.0\/25", + "version":61497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.178.0", + "prefixLen":25, + "network":"194.8.178.0\/25", + "version":61497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.178.128", + "prefixLen":25, + "network":"194.8.178.128\/25", + "version":61496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.178.128", + "prefixLen":25, + "network":"194.8.178.128\/25", + "version":61496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.179.0", + "prefixLen":25, + "network":"194.8.179.0\/25", + "version":61495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.179.0", + "prefixLen":25, + "network":"194.8.179.0\/25", + "version":61495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.179.128", + "prefixLen":25, + "network":"194.8.179.128\/25", + "version":61494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.179.128", + "prefixLen":25, + "network":"194.8.179.128\/25", + "version":61494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.192.0", + "prefixLen":25, + "network":"194.8.192.0\/25", + "version":61493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.192.0", + "prefixLen":25, + "network":"194.8.192.0\/25", + "version":61493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.192.128", + "prefixLen":25, + "network":"194.8.192.128\/25", + "version":61492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.192.128", + "prefixLen":25, + "network":"194.8.192.128\/25", + "version":61492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.193.0", + "prefixLen":25, + "network":"194.8.193.0\/25", + "version":61491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.193.0", + "prefixLen":25, + "network":"194.8.193.0\/25", + "version":61491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.193.128", + "prefixLen":25, + "network":"194.8.193.128\/25", + "version":61490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.193.128", + "prefixLen":25, + "network":"194.8.193.128\/25", + "version":61490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.194.0", + "prefixLen":25, + "network":"194.8.194.0\/25", + "version":61489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.194.0", + "prefixLen":25, + "network":"194.8.194.0\/25", + "version":61489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.194.128", + "prefixLen":25, + "network":"194.8.194.128\/25", + "version":61488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.194.128", + "prefixLen":25, + "network":"194.8.194.128\/25", + "version":61488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.195.0", + "prefixLen":25, + "network":"194.8.195.0\/25", + "version":61487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.195.0", + "prefixLen":25, + "network":"194.8.195.0\/25", + "version":61487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.195.128", + "prefixLen":25, + "network":"194.8.195.128\/25", + "version":61486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.195.128", + "prefixLen":25, + "network":"194.8.195.128\/25", + "version":61486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.208.0", + "prefixLen":25, + "network":"194.8.208.0\/25", + "version":61485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.208.0", + "prefixLen":25, + "network":"194.8.208.0\/25", + "version":61485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.208.128", + "prefixLen":25, + "network":"194.8.208.128\/25", + "version":61484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.208.128", + "prefixLen":25, + "network":"194.8.208.128\/25", + "version":61484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.209.0", + "prefixLen":25, + "network":"194.8.209.0\/25", + "version":61483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.209.0", + "prefixLen":25, + "network":"194.8.209.0\/25", + "version":61483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.209.128", + "prefixLen":25, + "network":"194.8.209.128\/25", + "version":61482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.209.128", + "prefixLen":25, + "network":"194.8.209.128\/25", + "version":61482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.210.0", + "prefixLen":25, + "network":"194.8.210.0\/25", + "version":61481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.210.0", + "prefixLen":25, + "network":"194.8.210.0\/25", + "version":61481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.210.128", + "prefixLen":25, + "network":"194.8.210.128\/25", + "version":61480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.210.128", + "prefixLen":25, + "network":"194.8.210.128\/25", + "version":61480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.211.0", + "prefixLen":25, + "network":"194.8.211.0\/25", + "version":61479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.211.0", + "prefixLen":25, + "network":"194.8.211.0\/25", + "version":61479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.211.128", + "prefixLen":25, + "network":"194.8.211.128\/25", + "version":61478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.211.128", + "prefixLen":25, + "network":"194.8.211.128\/25", + "version":61478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.224.0", + "prefixLen":25, + "network":"194.8.224.0\/25", + "version":61477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.224.0", + "prefixLen":25, + "network":"194.8.224.0\/25", + "version":61477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.224.128", + "prefixLen":25, + "network":"194.8.224.128\/25", + "version":61476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.224.128", + "prefixLen":25, + "network":"194.8.224.128\/25", + "version":61476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.225.0", + "prefixLen":25, + "network":"194.8.225.0\/25", + "version":61475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.225.0", + "prefixLen":25, + "network":"194.8.225.0\/25", + "version":61475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.225.128", + "prefixLen":25, + "network":"194.8.225.128\/25", + "version":61474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.225.128", + "prefixLen":25, + "network":"194.8.225.128\/25", + "version":61474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.226.0", + "prefixLen":25, + "network":"194.8.226.0\/25", + "version":61473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.226.0", + "prefixLen":25, + "network":"194.8.226.0\/25", + "version":61473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.226.128", + "prefixLen":25, + "network":"194.8.226.128\/25", + "version":61472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.226.128", + "prefixLen":25, + "network":"194.8.226.128\/25", + "version":61472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.227.0", + "prefixLen":25, + "network":"194.8.227.0\/25", + "version":61471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.227.0", + "prefixLen":25, + "network":"194.8.227.0\/25", + "version":61471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.227.128", + "prefixLen":25, + "network":"194.8.227.128\/25", + "version":61470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.227.128", + "prefixLen":25, + "network":"194.8.227.128\/25", + "version":61470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.240.0", + "prefixLen":25, + "network":"194.8.240.0\/25", + "version":61469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.240.0", + "prefixLen":25, + "network":"194.8.240.0\/25", + "version":61469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.240.128", + "prefixLen":25, + "network":"194.8.240.128\/25", + "version":61468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.240.128", + "prefixLen":25, + "network":"194.8.240.128\/25", + "version":61468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.241.0", + "prefixLen":25, + "network":"194.8.241.0\/25", + "version":61467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.241.0", + "prefixLen":25, + "network":"194.8.241.0\/25", + "version":61467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.241.128", + "prefixLen":25, + "network":"194.8.241.128\/25", + "version":61466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.241.128", + "prefixLen":25, + "network":"194.8.241.128\/25", + "version":61466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.242.0", + "prefixLen":25, + "network":"194.8.242.0\/25", + "version":61465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.242.0", + "prefixLen":25, + "network":"194.8.242.0\/25", + "version":61465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.242.128", + "prefixLen":25, + "network":"194.8.242.128\/25", + "version":61464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.242.128", + "prefixLen":25, + "network":"194.8.242.128\/25", + "version":61464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.243.0", + "prefixLen":25, + "network":"194.8.243.0\/25", + "version":61463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.243.0", + "prefixLen":25, + "network":"194.8.243.0\/25", + "version":61463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.8.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.8.243.128", + "prefixLen":25, + "network":"194.8.243.128\/25", + "version":61462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.8.243.128", + "prefixLen":25, + "network":"194.8.243.128\/25", + "version":61462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64952 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.0.0", + "prefixLen":25, + "network":"194.9.0.0\/25", + "version":61589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.0.0", + "prefixLen":25, + "network":"194.9.0.0\/25", + "version":61589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.0.128", + "prefixLen":25, + "network":"194.9.0.128\/25", + "version":61716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.0.128", + "prefixLen":25, + "network":"194.9.0.128\/25", + "version":61716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.1.0", + "prefixLen":25, + "network":"194.9.1.0\/25", + "version":61715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.1.0", + "prefixLen":25, + "network":"194.9.1.0\/25", + "version":61715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.1.128", + "prefixLen":25, + "network":"194.9.1.128\/25", + "version":61714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.1.128", + "prefixLen":25, + "network":"194.9.1.128\/25", + "version":61714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.2.0", + "prefixLen":25, + "network":"194.9.2.0\/25", + "version":61713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.2.0", + "prefixLen":25, + "network":"194.9.2.0\/25", + "version":61713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.2.128", + "prefixLen":25, + "network":"194.9.2.128\/25", + "version":61712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.2.128", + "prefixLen":25, + "network":"194.9.2.128\/25", + "version":61712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.3.0", + "prefixLen":25, + "network":"194.9.3.0\/25", + "version":61711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.3.0", + "prefixLen":25, + "network":"194.9.3.0\/25", + "version":61711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.3.128", + "prefixLen":25, + "network":"194.9.3.128\/25", + "version":61710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.3.128", + "prefixLen":25, + "network":"194.9.3.128\/25", + "version":61710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.16.0", + "prefixLen":25, + "network":"194.9.16.0\/25", + "version":61709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.16.0", + "prefixLen":25, + "network":"194.9.16.0\/25", + "version":61709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.16.128", + "prefixLen":25, + "network":"194.9.16.128\/25", + "version":61708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.16.128", + "prefixLen":25, + "network":"194.9.16.128\/25", + "version":61708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.17.0", + "prefixLen":25, + "network":"194.9.17.0\/25", + "version":61707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.17.0", + "prefixLen":25, + "network":"194.9.17.0\/25", + "version":61707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.17.128", + "prefixLen":25, + "network":"194.9.17.128\/25", + "version":61706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.17.128", + "prefixLen":25, + "network":"194.9.17.128\/25", + "version":61706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.18.0", + "prefixLen":25, + "network":"194.9.18.0\/25", + "version":61705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.18.0", + "prefixLen":25, + "network":"194.9.18.0\/25", + "version":61705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.18.128", + "prefixLen":25, + "network":"194.9.18.128\/25", + "version":61704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.18.128", + "prefixLen":25, + "network":"194.9.18.128\/25", + "version":61704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.19.0", + "prefixLen":25, + "network":"194.9.19.0\/25", + "version":61703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.19.0", + "prefixLen":25, + "network":"194.9.19.0\/25", + "version":61703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.19.128", + "prefixLen":25, + "network":"194.9.19.128\/25", + "version":61702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.19.128", + "prefixLen":25, + "network":"194.9.19.128\/25", + "version":61702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.32.0", + "prefixLen":25, + "network":"194.9.32.0\/25", + "version":61701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.32.0", + "prefixLen":25, + "network":"194.9.32.0\/25", + "version":61701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.32.128", + "prefixLen":25, + "network":"194.9.32.128\/25", + "version":61700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.32.128", + "prefixLen":25, + "network":"194.9.32.128\/25", + "version":61700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.33.0", + "prefixLen":25, + "network":"194.9.33.0\/25", + "version":61699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.33.0", + "prefixLen":25, + "network":"194.9.33.0\/25", + "version":61699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.33.128", + "prefixLen":25, + "network":"194.9.33.128\/25", + "version":61698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.33.128", + "prefixLen":25, + "network":"194.9.33.128\/25", + "version":61698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.34.0", + "prefixLen":25, + "network":"194.9.34.0\/25", + "version":61697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.34.0", + "prefixLen":25, + "network":"194.9.34.0\/25", + "version":61697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.34.128", + "prefixLen":25, + "network":"194.9.34.128\/25", + "version":61696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.34.128", + "prefixLen":25, + "network":"194.9.34.128\/25", + "version":61696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.35.0", + "prefixLen":25, + "network":"194.9.35.0\/25", + "version":61695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.35.0", + "prefixLen":25, + "network":"194.9.35.0\/25", + "version":61695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.35.128", + "prefixLen":25, + "network":"194.9.35.128\/25", + "version":61694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.35.128", + "prefixLen":25, + "network":"194.9.35.128\/25", + "version":61694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.48.0", + "prefixLen":25, + "network":"194.9.48.0\/25", + "version":61693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.48.0", + "prefixLen":25, + "network":"194.9.48.0\/25", + "version":61693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.48.128", + "prefixLen":25, + "network":"194.9.48.128\/25", + "version":61692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.48.128", + "prefixLen":25, + "network":"194.9.48.128\/25", + "version":61692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.49.0", + "prefixLen":25, + "network":"194.9.49.0\/25", + "version":61691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.49.0", + "prefixLen":25, + "network":"194.9.49.0\/25", + "version":61691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.49.128", + "prefixLen":25, + "network":"194.9.49.128\/25", + "version":61690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.49.128", + "prefixLen":25, + "network":"194.9.49.128\/25", + "version":61690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.50.0", + "prefixLen":25, + "network":"194.9.50.0\/25", + "version":61689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.50.0", + "prefixLen":25, + "network":"194.9.50.0\/25", + "version":61689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.50.128", + "prefixLen":25, + "network":"194.9.50.128\/25", + "version":61688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.50.128", + "prefixLen":25, + "network":"194.9.50.128\/25", + "version":61688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.51.0", + "prefixLen":25, + "network":"194.9.51.0\/25", + "version":61687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.51.0", + "prefixLen":25, + "network":"194.9.51.0\/25", + "version":61687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.51.128", + "prefixLen":25, + "network":"194.9.51.128\/25", + "version":61686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.51.128", + "prefixLen":25, + "network":"194.9.51.128\/25", + "version":61686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.64.0", + "prefixLen":25, + "network":"194.9.64.0\/25", + "version":61685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.64.0", + "prefixLen":25, + "network":"194.9.64.0\/25", + "version":61685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.64.128", + "prefixLen":25, + "network":"194.9.64.128\/25", + "version":61684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.64.128", + "prefixLen":25, + "network":"194.9.64.128\/25", + "version":61684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.65.0", + "prefixLen":25, + "network":"194.9.65.0\/25", + "version":61683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.65.0", + "prefixLen":25, + "network":"194.9.65.0\/25", + "version":61683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.65.128", + "prefixLen":25, + "network":"194.9.65.128\/25", + "version":61682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.65.128", + "prefixLen":25, + "network":"194.9.65.128\/25", + "version":61682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.66.0", + "prefixLen":25, + "network":"194.9.66.0\/25", + "version":61681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.66.0", + "prefixLen":25, + "network":"194.9.66.0\/25", + "version":61681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.66.128", + "prefixLen":25, + "network":"194.9.66.128\/25", + "version":61680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.66.128", + "prefixLen":25, + "network":"194.9.66.128\/25", + "version":61680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.67.0", + "prefixLen":25, + "network":"194.9.67.0\/25", + "version":61679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.67.0", + "prefixLen":25, + "network":"194.9.67.0\/25", + "version":61679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.67.128", + "prefixLen":25, + "network":"194.9.67.128\/25", + "version":61678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.67.128", + "prefixLen":25, + "network":"194.9.67.128\/25", + "version":61678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.80.0", + "prefixLen":25, + "network":"194.9.80.0\/25", + "version":61677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.80.0", + "prefixLen":25, + "network":"194.9.80.0\/25", + "version":61677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.80.128", + "prefixLen":25, + "network":"194.9.80.128\/25", + "version":61676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.80.128", + "prefixLen":25, + "network":"194.9.80.128\/25", + "version":61676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.81.0", + "prefixLen":25, + "network":"194.9.81.0\/25", + "version":61675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.81.0", + "prefixLen":25, + "network":"194.9.81.0\/25", + "version":61675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.81.128", + "prefixLen":25, + "network":"194.9.81.128\/25", + "version":61674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.81.128", + "prefixLen":25, + "network":"194.9.81.128\/25", + "version":61674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.82.0", + "prefixLen":25, + "network":"194.9.82.0\/25", + "version":61673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.82.0", + "prefixLen":25, + "network":"194.9.82.0\/25", + "version":61673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.82.128", + "prefixLen":25, + "network":"194.9.82.128\/25", + "version":61672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.82.128", + "prefixLen":25, + "network":"194.9.82.128\/25", + "version":61672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.83.0", + "prefixLen":25, + "network":"194.9.83.0\/25", + "version":61671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.83.0", + "prefixLen":25, + "network":"194.9.83.0\/25", + "version":61671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.83.128", + "prefixLen":25, + "network":"194.9.83.128\/25", + "version":61670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.83.128", + "prefixLen":25, + "network":"194.9.83.128\/25", + "version":61670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.96.0", + "prefixLen":25, + "network":"194.9.96.0\/25", + "version":61669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.96.0", + "prefixLen":25, + "network":"194.9.96.0\/25", + "version":61669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.96.128", + "prefixLen":25, + "network":"194.9.96.128\/25", + "version":61668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.96.128", + "prefixLen":25, + "network":"194.9.96.128\/25", + "version":61668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.97.0", + "prefixLen":25, + "network":"194.9.97.0\/25", + "version":61667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.97.0", + "prefixLen":25, + "network":"194.9.97.0\/25", + "version":61667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.97.128", + "prefixLen":25, + "network":"194.9.97.128\/25", + "version":61666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.97.128", + "prefixLen":25, + "network":"194.9.97.128\/25", + "version":61666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.98.0", + "prefixLen":25, + "network":"194.9.98.0\/25", + "version":61665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.98.0", + "prefixLen":25, + "network":"194.9.98.0\/25", + "version":61665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.98.128", + "prefixLen":25, + "network":"194.9.98.128\/25", + "version":61664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.98.128", + "prefixLen":25, + "network":"194.9.98.128\/25", + "version":61664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.99.0", + "prefixLen":25, + "network":"194.9.99.0\/25", + "version":61663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.99.0", + "prefixLen":25, + "network":"194.9.99.0\/25", + "version":61663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.99.128", + "prefixLen":25, + "network":"194.9.99.128\/25", + "version":61662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.99.128", + "prefixLen":25, + "network":"194.9.99.128\/25", + "version":61662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.112.0", + "prefixLen":25, + "network":"194.9.112.0\/25", + "version":61661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.112.0", + "prefixLen":25, + "network":"194.9.112.0\/25", + "version":61661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.112.128", + "prefixLen":25, + "network":"194.9.112.128\/25", + "version":61660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.112.128", + "prefixLen":25, + "network":"194.9.112.128\/25", + "version":61660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.113.0", + "prefixLen":25, + "network":"194.9.113.0\/25", + "version":61659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.113.0", + "prefixLen":25, + "network":"194.9.113.0\/25", + "version":61659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.113.128", + "prefixLen":25, + "network":"194.9.113.128\/25", + "version":61658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.113.128", + "prefixLen":25, + "network":"194.9.113.128\/25", + "version":61658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.114.0", + "prefixLen":25, + "network":"194.9.114.0\/25", + "version":61657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.114.0", + "prefixLen":25, + "network":"194.9.114.0\/25", + "version":61657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.114.128", + "prefixLen":25, + "network":"194.9.114.128\/25", + "version":61656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.114.128", + "prefixLen":25, + "network":"194.9.114.128\/25", + "version":61656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.115.0", + "prefixLen":25, + "network":"194.9.115.0\/25", + "version":61655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.115.0", + "prefixLen":25, + "network":"194.9.115.0\/25", + "version":61655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.115.128", + "prefixLen":25, + "network":"194.9.115.128\/25", + "version":61654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.115.128", + "prefixLen":25, + "network":"194.9.115.128\/25", + "version":61654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.128.0", + "prefixLen":25, + "network":"194.9.128.0\/25", + "version":61653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.128.0", + "prefixLen":25, + "network":"194.9.128.0\/25", + "version":61653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.128.128", + "prefixLen":25, + "network":"194.9.128.128\/25", + "version":61652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.128.128", + "prefixLen":25, + "network":"194.9.128.128\/25", + "version":61652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.129.0", + "prefixLen":25, + "network":"194.9.129.0\/25", + "version":61651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.129.0", + "prefixLen":25, + "network":"194.9.129.0\/25", + "version":61651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.129.128", + "prefixLen":25, + "network":"194.9.129.128\/25", + "version":61650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.129.128", + "prefixLen":25, + "network":"194.9.129.128\/25", + "version":61650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.130.0", + "prefixLen":25, + "network":"194.9.130.0\/25", + "version":61649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.130.0", + "prefixLen":25, + "network":"194.9.130.0\/25", + "version":61649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.130.128", + "prefixLen":25, + "network":"194.9.130.128\/25", + "version":61648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.130.128", + "prefixLen":25, + "network":"194.9.130.128\/25", + "version":61648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.131.0", + "prefixLen":25, + "network":"194.9.131.0\/25", + "version":61647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.131.0", + "prefixLen":25, + "network":"194.9.131.0\/25", + "version":61647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.131.128", + "prefixLen":25, + "network":"194.9.131.128\/25", + "version":61646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.131.128", + "prefixLen":25, + "network":"194.9.131.128\/25", + "version":61646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.144.0", + "prefixLen":25, + "network":"194.9.144.0\/25", + "version":61645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.144.0", + "prefixLen":25, + "network":"194.9.144.0\/25", + "version":61645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.144.128", + "prefixLen":25, + "network":"194.9.144.128\/25", + "version":61644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.144.128", + "prefixLen":25, + "network":"194.9.144.128\/25", + "version":61644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.145.0", + "prefixLen":25, + "network":"194.9.145.0\/25", + "version":61643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.145.0", + "prefixLen":25, + "network":"194.9.145.0\/25", + "version":61643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.145.128", + "prefixLen":25, + "network":"194.9.145.128\/25", + "version":61642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.145.128", + "prefixLen":25, + "network":"194.9.145.128\/25", + "version":61642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.146.0", + "prefixLen":25, + "network":"194.9.146.0\/25", + "version":61641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.146.0", + "prefixLen":25, + "network":"194.9.146.0\/25", + "version":61641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.146.128", + "prefixLen":25, + "network":"194.9.146.128\/25", + "version":61640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.146.128", + "prefixLen":25, + "network":"194.9.146.128\/25", + "version":61640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.147.0", + "prefixLen":25, + "network":"194.9.147.0\/25", + "version":61639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.147.0", + "prefixLen":25, + "network":"194.9.147.0\/25", + "version":61639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.147.128", + "prefixLen":25, + "network":"194.9.147.128\/25", + "version":61638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.147.128", + "prefixLen":25, + "network":"194.9.147.128\/25", + "version":61638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.160.0", + "prefixLen":25, + "network":"194.9.160.0\/25", + "version":61637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.160.0", + "prefixLen":25, + "network":"194.9.160.0\/25", + "version":61637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.160.128", + "prefixLen":25, + "network":"194.9.160.128\/25", + "version":61636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.160.128", + "prefixLen":25, + "network":"194.9.160.128\/25", + "version":61636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.161.0", + "prefixLen":25, + "network":"194.9.161.0\/25", + "version":61635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.161.0", + "prefixLen":25, + "network":"194.9.161.0\/25", + "version":61635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.161.128", + "prefixLen":25, + "network":"194.9.161.128\/25", + "version":61634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.161.128", + "prefixLen":25, + "network":"194.9.161.128\/25", + "version":61634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.162.0", + "prefixLen":25, + "network":"194.9.162.0\/25", + "version":61633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.162.0", + "prefixLen":25, + "network":"194.9.162.0\/25", + "version":61633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.162.128", + "prefixLen":25, + "network":"194.9.162.128\/25", + "version":61632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.162.128", + "prefixLen":25, + "network":"194.9.162.128\/25", + "version":61632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.163.0", + "prefixLen":25, + "network":"194.9.163.0\/25", + "version":61631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.163.0", + "prefixLen":25, + "network":"194.9.163.0\/25", + "version":61631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.163.128", + "prefixLen":25, + "network":"194.9.163.128\/25", + "version":61630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.163.128", + "prefixLen":25, + "network":"194.9.163.128\/25", + "version":61630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.176.0", + "prefixLen":25, + "network":"194.9.176.0\/25", + "version":61629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.176.0", + "prefixLen":25, + "network":"194.9.176.0\/25", + "version":61629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.176.128", + "prefixLen":25, + "network":"194.9.176.128\/25", + "version":61628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.176.128", + "prefixLen":25, + "network":"194.9.176.128\/25", + "version":61628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.177.0", + "prefixLen":25, + "network":"194.9.177.0\/25", + "version":61627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.177.0", + "prefixLen":25, + "network":"194.9.177.0\/25", + "version":61627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.177.128", + "prefixLen":25, + "network":"194.9.177.128\/25", + "version":61626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.177.128", + "prefixLen":25, + "network":"194.9.177.128\/25", + "version":61626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.178.0", + "prefixLen":25, + "network":"194.9.178.0\/25", + "version":61625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.178.0", + "prefixLen":25, + "network":"194.9.178.0\/25", + "version":61625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.178.128", + "prefixLen":25, + "network":"194.9.178.128\/25", + "version":61624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.178.128", + "prefixLen":25, + "network":"194.9.178.128\/25", + "version":61624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.179.0", + "prefixLen":25, + "network":"194.9.179.0\/25", + "version":61623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.179.0", + "prefixLen":25, + "network":"194.9.179.0\/25", + "version":61623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.179.128", + "prefixLen":25, + "network":"194.9.179.128\/25", + "version":61622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.179.128", + "prefixLen":25, + "network":"194.9.179.128\/25", + "version":61622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.192.0", + "prefixLen":25, + "network":"194.9.192.0\/25", + "version":61621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.192.0", + "prefixLen":25, + "network":"194.9.192.0\/25", + "version":61621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.192.128", + "prefixLen":25, + "network":"194.9.192.128\/25", + "version":61620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.192.128", + "prefixLen":25, + "network":"194.9.192.128\/25", + "version":61620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.193.0", + "prefixLen":25, + "network":"194.9.193.0\/25", + "version":61619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.193.0", + "prefixLen":25, + "network":"194.9.193.0\/25", + "version":61619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.193.128", + "prefixLen":25, + "network":"194.9.193.128\/25", + "version":61618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.193.128", + "prefixLen":25, + "network":"194.9.193.128\/25", + "version":61618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.194.0", + "prefixLen":25, + "network":"194.9.194.0\/25", + "version":61617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.194.0", + "prefixLen":25, + "network":"194.9.194.0\/25", + "version":61617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.194.128", + "prefixLen":25, + "network":"194.9.194.128\/25", + "version":61616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.194.128", + "prefixLen":25, + "network":"194.9.194.128\/25", + "version":61616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.195.0", + "prefixLen":25, + "network":"194.9.195.0\/25", + "version":61615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.195.0", + "prefixLen":25, + "network":"194.9.195.0\/25", + "version":61615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.195.128", + "prefixLen":25, + "network":"194.9.195.128\/25", + "version":61614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.195.128", + "prefixLen":25, + "network":"194.9.195.128\/25", + "version":61614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.208.0", + "prefixLen":25, + "network":"194.9.208.0\/25", + "version":61613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.208.0", + "prefixLen":25, + "network":"194.9.208.0\/25", + "version":61613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.208.128", + "prefixLen":25, + "network":"194.9.208.128\/25", + "version":61612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.208.128", + "prefixLen":25, + "network":"194.9.208.128\/25", + "version":61612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.209.0", + "prefixLen":25, + "network":"194.9.209.0\/25", + "version":61611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.209.0", + "prefixLen":25, + "network":"194.9.209.0\/25", + "version":61611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.209.128", + "prefixLen":25, + "network":"194.9.209.128\/25", + "version":61610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.209.128", + "prefixLen":25, + "network":"194.9.209.128\/25", + "version":61610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.210.0", + "prefixLen":25, + "network":"194.9.210.0\/25", + "version":61609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.210.0", + "prefixLen":25, + "network":"194.9.210.0\/25", + "version":61609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.210.128", + "prefixLen":25, + "network":"194.9.210.128\/25", + "version":61608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.210.128", + "prefixLen":25, + "network":"194.9.210.128\/25", + "version":61608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.211.0", + "prefixLen":25, + "network":"194.9.211.0\/25", + "version":61607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.211.0", + "prefixLen":25, + "network":"194.9.211.0\/25", + "version":61607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.211.128", + "prefixLen":25, + "network":"194.9.211.128\/25", + "version":61606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.211.128", + "prefixLen":25, + "network":"194.9.211.128\/25", + "version":61606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.224.0", + "prefixLen":25, + "network":"194.9.224.0\/25", + "version":61605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.224.0", + "prefixLen":25, + "network":"194.9.224.0\/25", + "version":61605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.224.128", + "prefixLen":25, + "network":"194.9.224.128\/25", + "version":61604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.224.128", + "prefixLen":25, + "network":"194.9.224.128\/25", + "version":61604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.225.0", + "prefixLen":25, + "network":"194.9.225.0\/25", + "version":61603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.225.0", + "prefixLen":25, + "network":"194.9.225.0\/25", + "version":61603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.225.128", + "prefixLen":25, + "network":"194.9.225.128\/25", + "version":61602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.225.128", + "prefixLen":25, + "network":"194.9.225.128\/25", + "version":61602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.226.0", + "prefixLen":25, + "network":"194.9.226.0\/25", + "version":61601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.226.0", + "prefixLen":25, + "network":"194.9.226.0\/25", + "version":61601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.226.128", + "prefixLen":25, + "network":"194.9.226.128\/25", + "version":61600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.226.128", + "prefixLen":25, + "network":"194.9.226.128\/25", + "version":61600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.227.0", + "prefixLen":25, + "network":"194.9.227.0\/25", + "version":61599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.227.0", + "prefixLen":25, + "network":"194.9.227.0\/25", + "version":61599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.227.128", + "prefixLen":25, + "network":"194.9.227.128\/25", + "version":61598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.227.128", + "prefixLen":25, + "network":"194.9.227.128\/25", + "version":61598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.240.0", + "prefixLen":25, + "network":"194.9.240.0\/25", + "version":61597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.240.0", + "prefixLen":25, + "network":"194.9.240.0\/25", + "version":61597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.240.128", + "prefixLen":25, + "network":"194.9.240.128\/25", + "version":61596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.240.128", + "prefixLen":25, + "network":"194.9.240.128\/25", + "version":61596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.241.0", + "prefixLen":25, + "network":"194.9.241.0\/25", + "version":61595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.241.0", + "prefixLen":25, + "network":"194.9.241.0\/25", + "version":61595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.241.128", + "prefixLen":25, + "network":"194.9.241.128\/25", + "version":61594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.241.128", + "prefixLen":25, + "network":"194.9.241.128\/25", + "version":61594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.242.0", + "prefixLen":25, + "network":"194.9.242.0\/25", + "version":61593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.242.0", + "prefixLen":25, + "network":"194.9.242.0\/25", + "version":61593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.242.128", + "prefixLen":25, + "network":"194.9.242.128\/25", + "version":61592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.242.128", + "prefixLen":25, + "network":"194.9.242.128\/25", + "version":61592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.243.0", + "prefixLen":25, + "network":"194.9.243.0\/25", + "version":61591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.243.0", + "prefixLen":25, + "network":"194.9.243.0\/25", + "version":61591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.9.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.9.243.128", + "prefixLen":25, + "network":"194.9.243.128\/25", + "version":61590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.9.243.128", + "prefixLen":25, + "network":"194.9.243.128\/25", + "version":61590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64953 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.0.0", + "prefixLen":25, + "network":"194.10.0.0\/25", + "version":61717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.0.0", + "prefixLen":25, + "network":"194.10.0.0\/25", + "version":61717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.0.128", + "prefixLen":25, + "network":"194.10.0.128\/25", + "version":61844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.0.128", + "prefixLen":25, + "network":"194.10.0.128\/25", + "version":61844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.1.0", + "prefixLen":25, + "network":"194.10.1.0\/25", + "version":61843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.1.0", + "prefixLen":25, + "network":"194.10.1.0\/25", + "version":61843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.1.128", + "prefixLen":25, + "network":"194.10.1.128\/25", + "version":61842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.1.128", + "prefixLen":25, + "network":"194.10.1.128\/25", + "version":61842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.2.0", + "prefixLen":25, + "network":"194.10.2.0\/25", + "version":61841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.2.0", + "prefixLen":25, + "network":"194.10.2.0\/25", + "version":61841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.2.128", + "prefixLen":25, + "network":"194.10.2.128\/25", + "version":61840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.2.128", + "prefixLen":25, + "network":"194.10.2.128\/25", + "version":61840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.3.0", + "prefixLen":25, + "network":"194.10.3.0\/25", + "version":61839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.3.0", + "prefixLen":25, + "network":"194.10.3.0\/25", + "version":61839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.3.128", + "prefixLen":25, + "network":"194.10.3.128\/25", + "version":61838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.3.128", + "prefixLen":25, + "network":"194.10.3.128\/25", + "version":61838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.16.0", + "prefixLen":25, + "network":"194.10.16.0\/25", + "version":61837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.16.0", + "prefixLen":25, + "network":"194.10.16.0\/25", + "version":61837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.16.128", + "prefixLen":25, + "network":"194.10.16.128\/25", + "version":61836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.16.128", + "prefixLen":25, + "network":"194.10.16.128\/25", + "version":61836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.17.0", + "prefixLen":25, + "network":"194.10.17.0\/25", + "version":61835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.17.0", + "prefixLen":25, + "network":"194.10.17.0\/25", + "version":61835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.17.128", + "prefixLen":25, + "network":"194.10.17.128\/25", + "version":61834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.17.128", + "prefixLen":25, + "network":"194.10.17.128\/25", + "version":61834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.18.0", + "prefixLen":25, + "network":"194.10.18.0\/25", + "version":61833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.18.0", + "prefixLen":25, + "network":"194.10.18.0\/25", + "version":61833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.18.128", + "prefixLen":25, + "network":"194.10.18.128\/25", + "version":61832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.18.128", + "prefixLen":25, + "network":"194.10.18.128\/25", + "version":61832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.19.0", + "prefixLen":25, + "network":"194.10.19.0\/25", + "version":61831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.19.0", + "prefixLen":25, + "network":"194.10.19.0\/25", + "version":61831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.19.128", + "prefixLen":25, + "network":"194.10.19.128\/25", + "version":61830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.19.128", + "prefixLen":25, + "network":"194.10.19.128\/25", + "version":61830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.32.0", + "prefixLen":25, + "network":"194.10.32.0\/25", + "version":61829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.32.0", + "prefixLen":25, + "network":"194.10.32.0\/25", + "version":61829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.32.128", + "prefixLen":25, + "network":"194.10.32.128\/25", + "version":61828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.32.128", + "prefixLen":25, + "network":"194.10.32.128\/25", + "version":61828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.33.0", + "prefixLen":25, + "network":"194.10.33.0\/25", + "version":61827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.33.0", + "prefixLen":25, + "network":"194.10.33.0\/25", + "version":61827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.33.128", + "prefixLen":25, + "network":"194.10.33.128\/25", + "version":61826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.33.128", + "prefixLen":25, + "network":"194.10.33.128\/25", + "version":61826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.34.0", + "prefixLen":25, + "network":"194.10.34.0\/25", + "version":61825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.34.0", + "prefixLen":25, + "network":"194.10.34.0\/25", + "version":61825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.34.128", + "prefixLen":25, + "network":"194.10.34.128\/25", + "version":61824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.34.128", + "prefixLen":25, + "network":"194.10.34.128\/25", + "version":61824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.35.0", + "prefixLen":25, + "network":"194.10.35.0\/25", + "version":61823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.35.0", + "prefixLen":25, + "network":"194.10.35.0\/25", + "version":61823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.35.128", + "prefixLen":25, + "network":"194.10.35.128\/25", + "version":61822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.35.128", + "prefixLen":25, + "network":"194.10.35.128\/25", + "version":61822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.48.0", + "prefixLen":25, + "network":"194.10.48.0\/25", + "version":61821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.48.0", + "prefixLen":25, + "network":"194.10.48.0\/25", + "version":61821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.48.128", + "prefixLen":25, + "network":"194.10.48.128\/25", + "version":61820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.48.128", + "prefixLen":25, + "network":"194.10.48.128\/25", + "version":61820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.49.0", + "prefixLen":25, + "network":"194.10.49.0\/25", + "version":61819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.49.0", + "prefixLen":25, + "network":"194.10.49.0\/25", + "version":61819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.49.128", + "prefixLen":25, + "network":"194.10.49.128\/25", + "version":61818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.49.128", + "prefixLen":25, + "network":"194.10.49.128\/25", + "version":61818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.50.0", + "prefixLen":25, + "network":"194.10.50.0\/25", + "version":61817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.50.0", + "prefixLen":25, + "network":"194.10.50.0\/25", + "version":61817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.50.128", + "prefixLen":25, + "network":"194.10.50.128\/25", + "version":61816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.50.128", + "prefixLen":25, + "network":"194.10.50.128\/25", + "version":61816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.51.0", + "prefixLen":25, + "network":"194.10.51.0\/25", + "version":61815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.51.0", + "prefixLen":25, + "network":"194.10.51.0\/25", + "version":61815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.51.128", + "prefixLen":25, + "network":"194.10.51.128\/25", + "version":61814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.51.128", + "prefixLen":25, + "network":"194.10.51.128\/25", + "version":61814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.64.0", + "prefixLen":25, + "network":"194.10.64.0\/25", + "version":61813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.64.0", + "prefixLen":25, + "network":"194.10.64.0\/25", + "version":61813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.64.128", + "prefixLen":25, + "network":"194.10.64.128\/25", + "version":61812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.64.128", + "prefixLen":25, + "network":"194.10.64.128\/25", + "version":61812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.65.0", + "prefixLen":25, + "network":"194.10.65.0\/25", + "version":61811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.65.0", + "prefixLen":25, + "network":"194.10.65.0\/25", + "version":61811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.65.128", + "prefixLen":25, + "network":"194.10.65.128\/25", + "version":61810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.65.128", + "prefixLen":25, + "network":"194.10.65.128\/25", + "version":61810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.66.0", + "prefixLen":25, + "network":"194.10.66.0\/25", + "version":61809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.66.0", + "prefixLen":25, + "network":"194.10.66.0\/25", + "version":61809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.66.128", + "prefixLen":25, + "network":"194.10.66.128\/25", + "version":61808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.66.128", + "prefixLen":25, + "network":"194.10.66.128\/25", + "version":61808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.67.0", + "prefixLen":25, + "network":"194.10.67.0\/25", + "version":61807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.67.0", + "prefixLen":25, + "network":"194.10.67.0\/25", + "version":61807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.67.128", + "prefixLen":25, + "network":"194.10.67.128\/25", + "version":61806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.67.128", + "prefixLen":25, + "network":"194.10.67.128\/25", + "version":61806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.80.0", + "prefixLen":25, + "network":"194.10.80.0\/25", + "version":61805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.80.0", + "prefixLen":25, + "network":"194.10.80.0\/25", + "version":61805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.80.128", + "prefixLen":25, + "network":"194.10.80.128\/25", + "version":61804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.80.128", + "prefixLen":25, + "network":"194.10.80.128\/25", + "version":61804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.81.0", + "prefixLen":25, + "network":"194.10.81.0\/25", + "version":61803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.81.0", + "prefixLen":25, + "network":"194.10.81.0\/25", + "version":61803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.81.128", + "prefixLen":25, + "network":"194.10.81.128\/25", + "version":61802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.81.128", + "prefixLen":25, + "network":"194.10.81.128\/25", + "version":61802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.82.0", + "prefixLen":25, + "network":"194.10.82.0\/25", + "version":61801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.82.0", + "prefixLen":25, + "network":"194.10.82.0\/25", + "version":61801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.82.128", + "prefixLen":25, + "network":"194.10.82.128\/25", + "version":61800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.82.128", + "prefixLen":25, + "network":"194.10.82.128\/25", + "version":61800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.83.0", + "prefixLen":25, + "network":"194.10.83.0\/25", + "version":61799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.83.0", + "prefixLen":25, + "network":"194.10.83.0\/25", + "version":61799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.83.128", + "prefixLen":25, + "network":"194.10.83.128\/25", + "version":61798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.83.128", + "prefixLen":25, + "network":"194.10.83.128\/25", + "version":61798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.96.0", + "prefixLen":25, + "network":"194.10.96.0\/25", + "version":61797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.96.0", + "prefixLen":25, + "network":"194.10.96.0\/25", + "version":61797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.96.128", + "prefixLen":25, + "network":"194.10.96.128\/25", + "version":61796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.96.128", + "prefixLen":25, + "network":"194.10.96.128\/25", + "version":61796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.97.0", + "prefixLen":25, + "network":"194.10.97.0\/25", + "version":61795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.97.0", + "prefixLen":25, + "network":"194.10.97.0\/25", + "version":61795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.97.128", + "prefixLen":25, + "network":"194.10.97.128\/25", + "version":61794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.97.128", + "prefixLen":25, + "network":"194.10.97.128\/25", + "version":61794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.98.0", + "prefixLen":25, + "network":"194.10.98.0\/25", + "version":61793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.98.0", + "prefixLen":25, + "network":"194.10.98.0\/25", + "version":61793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.98.128", + "prefixLen":25, + "network":"194.10.98.128\/25", + "version":61792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.98.128", + "prefixLen":25, + "network":"194.10.98.128\/25", + "version":61792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.99.0", + "prefixLen":25, + "network":"194.10.99.0\/25", + "version":61791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.99.0", + "prefixLen":25, + "network":"194.10.99.0\/25", + "version":61791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.99.128", + "prefixLen":25, + "network":"194.10.99.128\/25", + "version":61790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.99.128", + "prefixLen":25, + "network":"194.10.99.128\/25", + "version":61790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.112.0", + "prefixLen":25, + "network":"194.10.112.0\/25", + "version":61789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.112.0", + "prefixLen":25, + "network":"194.10.112.0\/25", + "version":61789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.112.128", + "prefixLen":25, + "network":"194.10.112.128\/25", + "version":61788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.112.128", + "prefixLen":25, + "network":"194.10.112.128\/25", + "version":61788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.113.0", + "prefixLen":25, + "network":"194.10.113.0\/25", + "version":61787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.113.0", + "prefixLen":25, + "network":"194.10.113.0\/25", + "version":61787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.113.128", + "prefixLen":25, + "network":"194.10.113.128\/25", + "version":61786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.113.128", + "prefixLen":25, + "network":"194.10.113.128\/25", + "version":61786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.114.0", + "prefixLen":25, + "network":"194.10.114.0\/25", + "version":61785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.114.0", + "prefixLen":25, + "network":"194.10.114.0\/25", + "version":61785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.114.128", + "prefixLen":25, + "network":"194.10.114.128\/25", + "version":61784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.114.128", + "prefixLen":25, + "network":"194.10.114.128\/25", + "version":61784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.115.0", + "prefixLen":25, + "network":"194.10.115.0\/25", + "version":61783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.115.0", + "prefixLen":25, + "network":"194.10.115.0\/25", + "version":61783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.115.128", + "prefixLen":25, + "network":"194.10.115.128\/25", + "version":61782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.115.128", + "prefixLen":25, + "network":"194.10.115.128\/25", + "version":61782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.128.0", + "prefixLen":25, + "network":"194.10.128.0\/25", + "version":61781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.128.0", + "prefixLen":25, + "network":"194.10.128.0\/25", + "version":61781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.128.128", + "prefixLen":25, + "network":"194.10.128.128\/25", + "version":61780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.128.128", + "prefixLen":25, + "network":"194.10.128.128\/25", + "version":61780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.129.0", + "prefixLen":25, + "network":"194.10.129.0\/25", + "version":61779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.129.0", + "prefixLen":25, + "network":"194.10.129.0\/25", + "version":61779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.129.128", + "prefixLen":25, + "network":"194.10.129.128\/25", + "version":61778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.129.128", + "prefixLen":25, + "network":"194.10.129.128\/25", + "version":61778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.130.0", + "prefixLen":25, + "network":"194.10.130.0\/25", + "version":61777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.130.0", + "prefixLen":25, + "network":"194.10.130.0\/25", + "version":61777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.130.128", + "prefixLen":25, + "network":"194.10.130.128\/25", + "version":61776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.130.128", + "prefixLen":25, + "network":"194.10.130.128\/25", + "version":61776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.131.0", + "prefixLen":25, + "network":"194.10.131.0\/25", + "version":61775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.131.0", + "prefixLen":25, + "network":"194.10.131.0\/25", + "version":61775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.131.128", + "prefixLen":25, + "network":"194.10.131.128\/25", + "version":61774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.131.128", + "prefixLen":25, + "network":"194.10.131.128\/25", + "version":61774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.144.0", + "prefixLen":25, + "network":"194.10.144.0\/25", + "version":61773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.144.0", + "prefixLen":25, + "network":"194.10.144.0\/25", + "version":61773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.144.128", + "prefixLen":25, + "network":"194.10.144.128\/25", + "version":61772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.144.128", + "prefixLen":25, + "network":"194.10.144.128\/25", + "version":61772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.145.0", + "prefixLen":25, + "network":"194.10.145.0\/25", + "version":61771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.145.0", + "prefixLen":25, + "network":"194.10.145.0\/25", + "version":61771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.145.128", + "prefixLen":25, + "network":"194.10.145.128\/25", + "version":61770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.145.128", + "prefixLen":25, + "network":"194.10.145.128\/25", + "version":61770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.146.0", + "prefixLen":25, + "network":"194.10.146.0\/25", + "version":61769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.146.0", + "prefixLen":25, + "network":"194.10.146.0\/25", + "version":61769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.146.128", + "prefixLen":25, + "network":"194.10.146.128\/25", + "version":61768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.146.128", + "prefixLen":25, + "network":"194.10.146.128\/25", + "version":61768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.147.0", + "prefixLen":25, + "network":"194.10.147.0\/25", + "version":61767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.147.0", + "prefixLen":25, + "network":"194.10.147.0\/25", + "version":61767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.147.128", + "prefixLen":25, + "network":"194.10.147.128\/25", + "version":61766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.147.128", + "prefixLen":25, + "network":"194.10.147.128\/25", + "version":61766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.160.0", + "prefixLen":25, + "network":"194.10.160.0\/25", + "version":61765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.160.0", + "prefixLen":25, + "network":"194.10.160.0\/25", + "version":61765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.160.128", + "prefixLen":25, + "network":"194.10.160.128\/25", + "version":61764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.160.128", + "prefixLen":25, + "network":"194.10.160.128\/25", + "version":61764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.161.0", + "prefixLen":25, + "network":"194.10.161.0\/25", + "version":61763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.161.0", + "prefixLen":25, + "network":"194.10.161.0\/25", + "version":61763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.161.128", + "prefixLen":25, + "network":"194.10.161.128\/25", + "version":61762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.161.128", + "prefixLen":25, + "network":"194.10.161.128\/25", + "version":61762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.162.0", + "prefixLen":25, + "network":"194.10.162.0\/25", + "version":61761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.162.0", + "prefixLen":25, + "network":"194.10.162.0\/25", + "version":61761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.162.128", + "prefixLen":25, + "network":"194.10.162.128\/25", + "version":61760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.162.128", + "prefixLen":25, + "network":"194.10.162.128\/25", + "version":61760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.163.0", + "prefixLen":25, + "network":"194.10.163.0\/25", + "version":61759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.163.0", + "prefixLen":25, + "network":"194.10.163.0\/25", + "version":61759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.163.128", + "prefixLen":25, + "network":"194.10.163.128\/25", + "version":61758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.163.128", + "prefixLen":25, + "network":"194.10.163.128\/25", + "version":61758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.176.0", + "prefixLen":25, + "network":"194.10.176.0\/25", + "version":61757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.176.0", + "prefixLen":25, + "network":"194.10.176.0\/25", + "version":61757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.176.128", + "prefixLen":25, + "network":"194.10.176.128\/25", + "version":61756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.176.128", + "prefixLen":25, + "network":"194.10.176.128\/25", + "version":61756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.177.0", + "prefixLen":25, + "network":"194.10.177.0\/25", + "version":61755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.177.0", + "prefixLen":25, + "network":"194.10.177.0\/25", + "version":61755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.177.128", + "prefixLen":25, + "network":"194.10.177.128\/25", + "version":61754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.177.128", + "prefixLen":25, + "network":"194.10.177.128\/25", + "version":61754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.178.0", + "prefixLen":25, + "network":"194.10.178.0\/25", + "version":61753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.178.0", + "prefixLen":25, + "network":"194.10.178.0\/25", + "version":61753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.178.128", + "prefixLen":25, + "network":"194.10.178.128\/25", + "version":61752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.178.128", + "prefixLen":25, + "network":"194.10.178.128\/25", + "version":61752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.179.0", + "prefixLen":25, + "network":"194.10.179.0\/25", + "version":61751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.179.0", + "prefixLen":25, + "network":"194.10.179.0\/25", + "version":61751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.179.128", + "prefixLen":25, + "network":"194.10.179.128\/25", + "version":61750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.179.128", + "prefixLen":25, + "network":"194.10.179.128\/25", + "version":61750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.192.0", + "prefixLen":25, + "network":"194.10.192.0\/25", + "version":61749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.192.0", + "prefixLen":25, + "network":"194.10.192.0\/25", + "version":61749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.192.128", + "prefixLen":25, + "network":"194.10.192.128\/25", + "version":61748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.192.128", + "prefixLen":25, + "network":"194.10.192.128\/25", + "version":61748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.193.0", + "prefixLen":25, + "network":"194.10.193.0\/25", + "version":61747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.193.0", + "prefixLen":25, + "network":"194.10.193.0\/25", + "version":61747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.193.128", + "prefixLen":25, + "network":"194.10.193.128\/25", + "version":61746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.193.128", + "prefixLen":25, + "network":"194.10.193.128\/25", + "version":61746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.194.0", + "prefixLen":25, + "network":"194.10.194.0\/25", + "version":61745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.194.0", + "prefixLen":25, + "network":"194.10.194.0\/25", + "version":61745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.194.128", + "prefixLen":25, + "network":"194.10.194.128\/25", + "version":61744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.194.128", + "prefixLen":25, + "network":"194.10.194.128\/25", + "version":61744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.195.0", + "prefixLen":25, + "network":"194.10.195.0\/25", + "version":61743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.195.0", + "prefixLen":25, + "network":"194.10.195.0\/25", + "version":61743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.195.128", + "prefixLen":25, + "network":"194.10.195.128\/25", + "version":61742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.195.128", + "prefixLen":25, + "network":"194.10.195.128\/25", + "version":61742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.208.0", + "prefixLen":25, + "network":"194.10.208.0\/25", + "version":61741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.208.0", + "prefixLen":25, + "network":"194.10.208.0\/25", + "version":61741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.208.128", + "prefixLen":25, + "network":"194.10.208.128\/25", + "version":61740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.208.128", + "prefixLen":25, + "network":"194.10.208.128\/25", + "version":61740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.209.0", + "prefixLen":25, + "network":"194.10.209.0\/25", + "version":61739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.209.0", + "prefixLen":25, + "network":"194.10.209.0\/25", + "version":61739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.209.128", + "prefixLen":25, + "network":"194.10.209.128\/25", + "version":61738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.209.128", + "prefixLen":25, + "network":"194.10.209.128\/25", + "version":61738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.210.0", + "prefixLen":25, + "network":"194.10.210.0\/25", + "version":61737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.210.0", + "prefixLen":25, + "network":"194.10.210.0\/25", + "version":61737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.210.128", + "prefixLen":25, + "network":"194.10.210.128\/25", + "version":61736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.210.128", + "prefixLen":25, + "network":"194.10.210.128\/25", + "version":61736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.211.0", + "prefixLen":25, + "network":"194.10.211.0\/25", + "version":61735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.211.0", + "prefixLen":25, + "network":"194.10.211.0\/25", + "version":61735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.211.128", + "prefixLen":25, + "network":"194.10.211.128\/25", + "version":61734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.211.128", + "prefixLen":25, + "network":"194.10.211.128\/25", + "version":61734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.224.0", + "prefixLen":25, + "network":"194.10.224.0\/25", + "version":61733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.224.0", + "prefixLen":25, + "network":"194.10.224.0\/25", + "version":61733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.224.128", + "prefixLen":25, + "network":"194.10.224.128\/25", + "version":61732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.224.128", + "prefixLen":25, + "network":"194.10.224.128\/25", + "version":61732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.225.0", + "prefixLen":25, + "network":"194.10.225.0\/25", + "version":61731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.225.0", + "prefixLen":25, + "network":"194.10.225.0\/25", + "version":61731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.225.128", + "prefixLen":25, + "network":"194.10.225.128\/25", + "version":61730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.225.128", + "prefixLen":25, + "network":"194.10.225.128\/25", + "version":61730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.226.0", + "prefixLen":25, + "network":"194.10.226.0\/25", + "version":61729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.226.0", + "prefixLen":25, + "network":"194.10.226.0\/25", + "version":61729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.226.128", + "prefixLen":25, + "network":"194.10.226.128\/25", + "version":61728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.226.128", + "prefixLen":25, + "network":"194.10.226.128\/25", + "version":61728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.227.0", + "prefixLen":25, + "network":"194.10.227.0\/25", + "version":61727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.227.0", + "prefixLen":25, + "network":"194.10.227.0\/25", + "version":61727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.227.128", + "prefixLen":25, + "network":"194.10.227.128\/25", + "version":61726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.227.128", + "prefixLen":25, + "network":"194.10.227.128\/25", + "version":61726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.240.0", + "prefixLen":25, + "network":"194.10.240.0\/25", + "version":61725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.240.0", + "prefixLen":25, + "network":"194.10.240.0\/25", + "version":61725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.240.128", + "prefixLen":25, + "network":"194.10.240.128\/25", + "version":61724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.240.128", + "prefixLen":25, + "network":"194.10.240.128\/25", + "version":61724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.241.0", + "prefixLen":25, + "network":"194.10.241.0\/25", + "version":61723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.241.0", + "prefixLen":25, + "network":"194.10.241.0\/25", + "version":61723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.241.128", + "prefixLen":25, + "network":"194.10.241.128\/25", + "version":61722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.241.128", + "prefixLen":25, + "network":"194.10.241.128\/25", + "version":61722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.242.0", + "prefixLen":25, + "network":"194.10.242.0\/25", + "version":61721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.242.0", + "prefixLen":25, + "network":"194.10.242.0\/25", + "version":61721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.242.128", + "prefixLen":25, + "network":"194.10.242.128\/25", + "version":61720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.242.128", + "prefixLen":25, + "network":"194.10.242.128\/25", + "version":61720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.243.0", + "prefixLen":25, + "network":"194.10.243.0\/25", + "version":61719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.243.0", + "prefixLen":25, + "network":"194.10.243.0\/25", + "version":61719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.10.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.10.243.128", + "prefixLen":25, + "network":"194.10.243.128\/25", + "version":61718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.10.243.128", + "prefixLen":25, + "network":"194.10.243.128\/25", + "version":61718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64954 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.0.0", + "prefixLen":25, + "network":"194.11.0.0\/25", + "version":61845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.0.0", + "prefixLen":25, + "network":"194.11.0.0\/25", + "version":61845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.0.128", + "prefixLen":25, + "network":"194.11.0.128\/25", + "version":61972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.0.128", + "prefixLen":25, + "network":"194.11.0.128\/25", + "version":61972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.1.0", + "prefixLen":25, + "network":"194.11.1.0\/25", + "version":61971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.1.0", + "prefixLen":25, + "network":"194.11.1.0\/25", + "version":61971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.1.128", + "prefixLen":25, + "network":"194.11.1.128\/25", + "version":61970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.1.128", + "prefixLen":25, + "network":"194.11.1.128\/25", + "version":61970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.2.0", + "prefixLen":25, + "network":"194.11.2.0\/25", + "version":61969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.2.0", + "prefixLen":25, + "network":"194.11.2.0\/25", + "version":61969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.2.128", + "prefixLen":25, + "network":"194.11.2.128\/25", + "version":61968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.2.128", + "prefixLen":25, + "network":"194.11.2.128\/25", + "version":61968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.3.0", + "prefixLen":25, + "network":"194.11.3.0\/25", + "version":61967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.3.0", + "prefixLen":25, + "network":"194.11.3.0\/25", + "version":61967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.3.128", + "prefixLen":25, + "network":"194.11.3.128\/25", + "version":61966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.3.128", + "prefixLen":25, + "network":"194.11.3.128\/25", + "version":61966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.16.0", + "prefixLen":25, + "network":"194.11.16.0\/25", + "version":61965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.16.0", + "prefixLen":25, + "network":"194.11.16.0\/25", + "version":61965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.16.128", + "prefixLen":25, + "network":"194.11.16.128\/25", + "version":61964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.16.128", + "prefixLen":25, + "network":"194.11.16.128\/25", + "version":61964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.17.0", + "prefixLen":25, + "network":"194.11.17.0\/25", + "version":61963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.17.0", + "prefixLen":25, + "network":"194.11.17.0\/25", + "version":61963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.17.128", + "prefixLen":25, + "network":"194.11.17.128\/25", + "version":61962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.17.128", + "prefixLen":25, + "network":"194.11.17.128\/25", + "version":61962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.18.0", + "prefixLen":25, + "network":"194.11.18.0\/25", + "version":61961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.18.0", + "prefixLen":25, + "network":"194.11.18.0\/25", + "version":61961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.18.128", + "prefixLen":25, + "network":"194.11.18.128\/25", + "version":61960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.18.128", + "prefixLen":25, + "network":"194.11.18.128\/25", + "version":61960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.19.0", + "prefixLen":25, + "network":"194.11.19.0\/25", + "version":61959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.19.0", + "prefixLen":25, + "network":"194.11.19.0\/25", + "version":61959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.19.128", + "prefixLen":25, + "network":"194.11.19.128\/25", + "version":61958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.19.128", + "prefixLen":25, + "network":"194.11.19.128\/25", + "version":61958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.32.0", + "prefixLen":25, + "network":"194.11.32.0\/25", + "version":61957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.32.0", + "prefixLen":25, + "network":"194.11.32.0\/25", + "version":61957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.32.128", + "prefixLen":25, + "network":"194.11.32.128\/25", + "version":61956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.32.128", + "prefixLen":25, + "network":"194.11.32.128\/25", + "version":61956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.33.0", + "prefixLen":25, + "network":"194.11.33.0\/25", + "version":61955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.33.0", + "prefixLen":25, + "network":"194.11.33.0\/25", + "version":61955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.33.128", + "prefixLen":25, + "network":"194.11.33.128\/25", + "version":61954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.33.128", + "prefixLen":25, + "network":"194.11.33.128\/25", + "version":61954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.34.0", + "prefixLen":25, + "network":"194.11.34.0\/25", + "version":61953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.34.0", + "prefixLen":25, + "network":"194.11.34.0\/25", + "version":61953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.34.128", + "prefixLen":25, + "network":"194.11.34.128\/25", + "version":61952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.34.128", + "prefixLen":25, + "network":"194.11.34.128\/25", + "version":61952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.35.0", + "prefixLen":25, + "network":"194.11.35.0\/25", + "version":61951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.35.0", + "prefixLen":25, + "network":"194.11.35.0\/25", + "version":61951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.35.128", + "prefixLen":25, + "network":"194.11.35.128\/25", + "version":61950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.35.128", + "prefixLen":25, + "network":"194.11.35.128\/25", + "version":61950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.48.0", + "prefixLen":25, + "network":"194.11.48.0\/25", + "version":61949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.48.0", + "prefixLen":25, + "network":"194.11.48.0\/25", + "version":61949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.48.128", + "prefixLen":25, + "network":"194.11.48.128\/25", + "version":61948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.48.128", + "prefixLen":25, + "network":"194.11.48.128\/25", + "version":61948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.49.0", + "prefixLen":25, + "network":"194.11.49.0\/25", + "version":61947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.49.0", + "prefixLen":25, + "network":"194.11.49.0\/25", + "version":61947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.49.128", + "prefixLen":25, + "network":"194.11.49.128\/25", + "version":61946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.49.128", + "prefixLen":25, + "network":"194.11.49.128\/25", + "version":61946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.50.0", + "prefixLen":25, + "network":"194.11.50.0\/25", + "version":61945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.50.0", + "prefixLen":25, + "network":"194.11.50.0\/25", + "version":61945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.50.128", + "prefixLen":25, + "network":"194.11.50.128\/25", + "version":61944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.50.128", + "prefixLen":25, + "network":"194.11.50.128\/25", + "version":61944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.51.0", + "prefixLen":25, + "network":"194.11.51.0\/25", + "version":61943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.51.0", + "prefixLen":25, + "network":"194.11.51.0\/25", + "version":61943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.51.128", + "prefixLen":25, + "network":"194.11.51.128\/25", + "version":61942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.51.128", + "prefixLen":25, + "network":"194.11.51.128\/25", + "version":61942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.64.0", + "prefixLen":25, + "network":"194.11.64.0\/25", + "version":61941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.64.0", + "prefixLen":25, + "network":"194.11.64.0\/25", + "version":61941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.64.128", + "prefixLen":25, + "network":"194.11.64.128\/25", + "version":61940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.64.128", + "prefixLen":25, + "network":"194.11.64.128\/25", + "version":61940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.65.0", + "prefixLen":25, + "network":"194.11.65.0\/25", + "version":61939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.65.0", + "prefixLen":25, + "network":"194.11.65.0\/25", + "version":61939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.65.128", + "prefixLen":25, + "network":"194.11.65.128\/25", + "version":61938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.65.128", + "prefixLen":25, + "network":"194.11.65.128\/25", + "version":61938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.66.0", + "prefixLen":25, + "network":"194.11.66.0\/25", + "version":61937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.66.0", + "prefixLen":25, + "network":"194.11.66.0\/25", + "version":61937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.66.128", + "prefixLen":25, + "network":"194.11.66.128\/25", + "version":61936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.66.128", + "prefixLen":25, + "network":"194.11.66.128\/25", + "version":61936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.67.0", + "prefixLen":25, + "network":"194.11.67.0\/25", + "version":61935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.67.0", + "prefixLen":25, + "network":"194.11.67.0\/25", + "version":61935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.67.128", + "prefixLen":25, + "network":"194.11.67.128\/25", + "version":61934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.67.128", + "prefixLen":25, + "network":"194.11.67.128\/25", + "version":61934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.80.0", + "prefixLen":25, + "network":"194.11.80.0\/25", + "version":61933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.80.0", + "prefixLen":25, + "network":"194.11.80.0\/25", + "version":61933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.80.128", + "prefixLen":25, + "network":"194.11.80.128\/25", + "version":61932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.80.128", + "prefixLen":25, + "network":"194.11.80.128\/25", + "version":61932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.81.0", + "prefixLen":25, + "network":"194.11.81.0\/25", + "version":61931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.81.0", + "prefixLen":25, + "network":"194.11.81.0\/25", + "version":61931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.81.128", + "prefixLen":25, + "network":"194.11.81.128\/25", + "version":61930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.81.128", + "prefixLen":25, + "network":"194.11.81.128\/25", + "version":61930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.82.0", + "prefixLen":25, + "network":"194.11.82.0\/25", + "version":61929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.82.0", + "prefixLen":25, + "network":"194.11.82.0\/25", + "version":61929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.82.128", + "prefixLen":25, + "network":"194.11.82.128\/25", + "version":61928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.82.128", + "prefixLen":25, + "network":"194.11.82.128\/25", + "version":61928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.83.0", + "prefixLen":25, + "network":"194.11.83.0\/25", + "version":61927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.83.0", + "prefixLen":25, + "network":"194.11.83.0\/25", + "version":61927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.83.128", + "prefixLen":25, + "network":"194.11.83.128\/25", + "version":61926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.83.128", + "prefixLen":25, + "network":"194.11.83.128\/25", + "version":61926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.96.0", + "prefixLen":25, + "network":"194.11.96.0\/25", + "version":61925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.96.0", + "prefixLen":25, + "network":"194.11.96.0\/25", + "version":61925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.96.128", + "prefixLen":25, + "network":"194.11.96.128\/25", + "version":61924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.96.128", + "prefixLen":25, + "network":"194.11.96.128\/25", + "version":61924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.97.0", + "prefixLen":25, + "network":"194.11.97.0\/25", + "version":61923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.97.0", + "prefixLen":25, + "network":"194.11.97.0\/25", + "version":61923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.97.128", + "prefixLen":25, + "network":"194.11.97.128\/25", + "version":61922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.97.128", + "prefixLen":25, + "network":"194.11.97.128\/25", + "version":61922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.98.0", + "prefixLen":25, + "network":"194.11.98.0\/25", + "version":61921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.98.0", + "prefixLen":25, + "network":"194.11.98.0\/25", + "version":61921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.98.128", + "prefixLen":25, + "network":"194.11.98.128\/25", + "version":61920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.98.128", + "prefixLen":25, + "network":"194.11.98.128\/25", + "version":61920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.99.0", + "prefixLen":25, + "network":"194.11.99.0\/25", + "version":61919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.99.0", + "prefixLen":25, + "network":"194.11.99.0\/25", + "version":61919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.99.128", + "prefixLen":25, + "network":"194.11.99.128\/25", + "version":61918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.99.128", + "prefixLen":25, + "network":"194.11.99.128\/25", + "version":61918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.112.0", + "prefixLen":25, + "network":"194.11.112.0\/25", + "version":61917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.112.0", + "prefixLen":25, + "network":"194.11.112.0\/25", + "version":61917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.112.128", + "prefixLen":25, + "network":"194.11.112.128\/25", + "version":61916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.112.128", + "prefixLen":25, + "network":"194.11.112.128\/25", + "version":61916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.113.0", + "prefixLen":25, + "network":"194.11.113.0\/25", + "version":61915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.113.0", + "prefixLen":25, + "network":"194.11.113.0\/25", + "version":61915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.113.128", + "prefixLen":25, + "network":"194.11.113.128\/25", + "version":61914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.113.128", + "prefixLen":25, + "network":"194.11.113.128\/25", + "version":61914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.114.0", + "prefixLen":25, + "network":"194.11.114.0\/25", + "version":61913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.114.0", + "prefixLen":25, + "network":"194.11.114.0\/25", + "version":61913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.114.128", + "prefixLen":25, + "network":"194.11.114.128\/25", + "version":61912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.114.128", + "prefixLen":25, + "network":"194.11.114.128\/25", + "version":61912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.115.0", + "prefixLen":25, + "network":"194.11.115.0\/25", + "version":61911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.115.0", + "prefixLen":25, + "network":"194.11.115.0\/25", + "version":61911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.115.128", + "prefixLen":25, + "network":"194.11.115.128\/25", + "version":61910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.115.128", + "prefixLen":25, + "network":"194.11.115.128\/25", + "version":61910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.128.0", + "prefixLen":25, + "network":"194.11.128.0\/25", + "version":61909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.128.0", + "prefixLen":25, + "network":"194.11.128.0\/25", + "version":61909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.128.128", + "prefixLen":25, + "network":"194.11.128.128\/25", + "version":61908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.128.128", + "prefixLen":25, + "network":"194.11.128.128\/25", + "version":61908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.129.0", + "prefixLen":25, + "network":"194.11.129.0\/25", + "version":61907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.129.0", + "prefixLen":25, + "network":"194.11.129.0\/25", + "version":61907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.129.128", + "prefixLen":25, + "network":"194.11.129.128\/25", + "version":61906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.129.128", + "prefixLen":25, + "network":"194.11.129.128\/25", + "version":61906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.130.0", + "prefixLen":25, + "network":"194.11.130.0\/25", + "version":61905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.130.0", + "prefixLen":25, + "network":"194.11.130.0\/25", + "version":61905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.130.128", + "prefixLen":25, + "network":"194.11.130.128\/25", + "version":61904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.130.128", + "prefixLen":25, + "network":"194.11.130.128\/25", + "version":61904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.131.0", + "prefixLen":25, + "network":"194.11.131.0\/25", + "version":61903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.131.0", + "prefixLen":25, + "network":"194.11.131.0\/25", + "version":61903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.131.128", + "prefixLen":25, + "network":"194.11.131.128\/25", + "version":61902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.131.128", + "prefixLen":25, + "network":"194.11.131.128\/25", + "version":61902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.144.0", + "prefixLen":25, + "network":"194.11.144.0\/25", + "version":61901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.144.0", + "prefixLen":25, + "network":"194.11.144.0\/25", + "version":61901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.144.128", + "prefixLen":25, + "network":"194.11.144.128\/25", + "version":61900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.144.128", + "prefixLen":25, + "network":"194.11.144.128\/25", + "version":61900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.145.0", + "prefixLen":25, + "network":"194.11.145.0\/25", + "version":61899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.145.0", + "prefixLen":25, + "network":"194.11.145.0\/25", + "version":61899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.145.128", + "prefixLen":25, + "network":"194.11.145.128\/25", + "version":61898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.145.128", + "prefixLen":25, + "network":"194.11.145.128\/25", + "version":61898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.146.0", + "prefixLen":25, + "network":"194.11.146.0\/25", + "version":61897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.146.0", + "prefixLen":25, + "network":"194.11.146.0\/25", + "version":61897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.146.128", + "prefixLen":25, + "network":"194.11.146.128\/25", + "version":61896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.146.128", + "prefixLen":25, + "network":"194.11.146.128\/25", + "version":61896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.147.0", + "prefixLen":25, + "network":"194.11.147.0\/25", + "version":61895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.147.0", + "prefixLen":25, + "network":"194.11.147.0\/25", + "version":61895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.147.128", + "prefixLen":25, + "network":"194.11.147.128\/25", + "version":61894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.147.128", + "prefixLen":25, + "network":"194.11.147.128\/25", + "version":61894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.160.0", + "prefixLen":25, + "network":"194.11.160.0\/25", + "version":61893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.160.0", + "prefixLen":25, + "network":"194.11.160.0\/25", + "version":61893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.160.128", + "prefixLen":25, + "network":"194.11.160.128\/25", + "version":61892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.160.128", + "prefixLen":25, + "network":"194.11.160.128\/25", + "version":61892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.161.0", + "prefixLen":25, + "network":"194.11.161.0\/25", + "version":61891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.161.0", + "prefixLen":25, + "network":"194.11.161.0\/25", + "version":61891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.161.128", + "prefixLen":25, + "network":"194.11.161.128\/25", + "version":61890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.161.128", + "prefixLen":25, + "network":"194.11.161.128\/25", + "version":61890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.162.0", + "prefixLen":25, + "network":"194.11.162.0\/25", + "version":61889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.162.0", + "prefixLen":25, + "network":"194.11.162.0\/25", + "version":61889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.162.128", + "prefixLen":25, + "network":"194.11.162.128\/25", + "version":61888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.162.128", + "prefixLen":25, + "network":"194.11.162.128\/25", + "version":61888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.163.0", + "prefixLen":25, + "network":"194.11.163.0\/25", + "version":61887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.163.0", + "prefixLen":25, + "network":"194.11.163.0\/25", + "version":61887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.163.128", + "prefixLen":25, + "network":"194.11.163.128\/25", + "version":61886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.163.128", + "prefixLen":25, + "network":"194.11.163.128\/25", + "version":61886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.176.0", + "prefixLen":25, + "network":"194.11.176.0\/25", + "version":61885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.176.0", + "prefixLen":25, + "network":"194.11.176.0\/25", + "version":61885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.176.128", + "prefixLen":25, + "network":"194.11.176.128\/25", + "version":61884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.176.128", + "prefixLen":25, + "network":"194.11.176.128\/25", + "version":61884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.177.0", + "prefixLen":25, + "network":"194.11.177.0\/25", + "version":61883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.177.0", + "prefixLen":25, + "network":"194.11.177.0\/25", + "version":61883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.177.128", + "prefixLen":25, + "network":"194.11.177.128\/25", + "version":61882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.177.128", + "prefixLen":25, + "network":"194.11.177.128\/25", + "version":61882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.178.0", + "prefixLen":25, + "network":"194.11.178.0\/25", + "version":61881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.178.0", + "prefixLen":25, + "network":"194.11.178.0\/25", + "version":61881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.178.128", + "prefixLen":25, + "network":"194.11.178.128\/25", + "version":61880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.178.128", + "prefixLen":25, + "network":"194.11.178.128\/25", + "version":61880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.179.0", + "prefixLen":25, + "network":"194.11.179.0\/25", + "version":61879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.179.0", + "prefixLen":25, + "network":"194.11.179.0\/25", + "version":61879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.179.128", + "prefixLen":25, + "network":"194.11.179.128\/25", + "version":61878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.179.128", + "prefixLen":25, + "network":"194.11.179.128\/25", + "version":61878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.192.0", + "prefixLen":25, + "network":"194.11.192.0\/25", + "version":61877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.192.0", + "prefixLen":25, + "network":"194.11.192.0\/25", + "version":61877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.192.128", + "prefixLen":25, + "network":"194.11.192.128\/25", + "version":61876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.192.128", + "prefixLen":25, + "network":"194.11.192.128\/25", + "version":61876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.193.0", + "prefixLen":25, + "network":"194.11.193.0\/25", + "version":61875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.193.0", + "prefixLen":25, + "network":"194.11.193.0\/25", + "version":61875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.193.128", + "prefixLen":25, + "network":"194.11.193.128\/25", + "version":61874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.193.128", + "prefixLen":25, + "network":"194.11.193.128\/25", + "version":61874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.194.0", + "prefixLen":25, + "network":"194.11.194.0\/25", + "version":61873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.194.0", + "prefixLen":25, + "network":"194.11.194.0\/25", + "version":61873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.194.128", + "prefixLen":25, + "network":"194.11.194.128\/25", + "version":61872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.194.128", + "prefixLen":25, + "network":"194.11.194.128\/25", + "version":61872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.195.0", + "prefixLen":25, + "network":"194.11.195.0\/25", + "version":61871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.195.0", + "prefixLen":25, + "network":"194.11.195.0\/25", + "version":61871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.195.128", + "prefixLen":25, + "network":"194.11.195.128\/25", + "version":61870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.195.128", + "prefixLen":25, + "network":"194.11.195.128\/25", + "version":61870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.208.0", + "prefixLen":25, + "network":"194.11.208.0\/25", + "version":61869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.208.0", + "prefixLen":25, + "network":"194.11.208.0\/25", + "version":61869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.208.128", + "prefixLen":25, + "network":"194.11.208.128\/25", + "version":61868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.208.128", + "prefixLen":25, + "network":"194.11.208.128\/25", + "version":61868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.209.0", + "prefixLen":25, + "network":"194.11.209.0\/25", + "version":61867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.209.0", + "prefixLen":25, + "network":"194.11.209.0\/25", + "version":61867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.209.128", + "prefixLen":25, + "network":"194.11.209.128\/25", + "version":61866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.209.128", + "prefixLen":25, + "network":"194.11.209.128\/25", + "version":61866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.210.0", + "prefixLen":25, + "network":"194.11.210.0\/25", + "version":61865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.210.0", + "prefixLen":25, + "network":"194.11.210.0\/25", + "version":61865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.210.128", + "prefixLen":25, + "network":"194.11.210.128\/25", + "version":61864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.210.128", + "prefixLen":25, + "network":"194.11.210.128\/25", + "version":61864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.211.0", + "prefixLen":25, + "network":"194.11.211.0\/25", + "version":61863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.211.0", + "prefixLen":25, + "network":"194.11.211.0\/25", + "version":61863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.211.128", + "prefixLen":25, + "network":"194.11.211.128\/25", + "version":61862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.211.128", + "prefixLen":25, + "network":"194.11.211.128\/25", + "version":61862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.224.0", + "prefixLen":25, + "network":"194.11.224.0\/25", + "version":61861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.224.0", + "prefixLen":25, + "network":"194.11.224.0\/25", + "version":61861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.224.128", + "prefixLen":25, + "network":"194.11.224.128\/25", + "version":61860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.224.128", + "prefixLen":25, + "network":"194.11.224.128\/25", + "version":61860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.225.0", + "prefixLen":25, + "network":"194.11.225.0\/25", + "version":61859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.225.0", + "prefixLen":25, + "network":"194.11.225.0\/25", + "version":61859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.225.128", + "prefixLen":25, + "network":"194.11.225.128\/25", + "version":61858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.225.128", + "prefixLen":25, + "network":"194.11.225.128\/25", + "version":61858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.226.0", + "prefixLen":25, + "network":"194.11.226.0\/25", + "version":61857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.226.0", + "prefixLen":25, + "network":"194.11.226.0\/25", + "version":61857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.226.128", + "prefixLen":25, + "network":"194.11.226.128\/25", + "version":61856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.226.128", + "prefixLen":25, + "network":"194.11.226.128\/25", + "version":61856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.227.0", + "prefixLen":25, + "network":"194.11.227.0\/25", + "version":61855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.227.0", + "prefixLen":25, + "network":"194.11.227.0\/25", + "version":61855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.227.128", + "prefixLen":25, + "network":"194.11.227.128\/25", + "version":61854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.227.128", + "prefixLen":25, + "network":"194.11.227.128\/25", + "version":61854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.240.0", + "prefixLen":25, + "network":"194.11.240.0\/25", + "version":61853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.240.0", + "prefixLen":25, + "network":"194.11.240.0\/25", + "version":61853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.240.128", + "prefixLen":25, + "network":"194.11.240.128\/25", + "version":61852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.240.128", + "prefixLen":25, + "network":"194.11.240.128\/25", + "version":61852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.241.0", + "prefixLen":25, + "network":"194.11.241.0\/25", + "version":61851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.241.0", + "prefixLen":25, + "network":"194.11.241.0\/25", + "version":61851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.241.128", + "prefixLen":25, + "network":"194.11.241.128\/25", + "version":61850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.241.128", + "prefixLen":25, + "network":"194.11.241.128\/25", + "version":61850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.242.0", + "prefixLen":25, + "network":"194.11.242.0\/25", + "version":61849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.242.0", + "prefixLen":25, + "network":"194.11.242.0\/25", + "version":61849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.242.128", + "prefixLen":25, + "network":"194.11.242.128\/25", + "version":61848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.242.128", + "prefixLen":25, + "network":"194.11.242.128\/25", + "version":61848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.243.0", + "prefixLen":25, + "network":"194.11.243.0\/25", + "version":61847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.243.0", + "prefixLen":25, + "network":"194.11.243.0\/25", + "version":61847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.11.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.11.243.128", + "prefixLen":25, + "network":"194.11.243.128\/25", + "version":61846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.11.243.128", + "prefixLen":25, + "network":"194.11.243.128\/25", + "version":61846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64955 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.0.0", + "prefixLen":25, + "network":"194.12.0.0\/25", + "version":61973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.0.0", + "prefixLen":25, + "network":"194.12.0.0\/25", + "version":61973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.0.128", + "prefixLen":25, + "network":"194.12.0.128\/25", + "version":62100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.0.128", + "prefixLen":25, + "network":"194.12.0.128\/25", + "version":62100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.1.0", + "prefixLen":25, + "network":"194.12.1.0\/25", + "version":62099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.1.0", + "prefixLen":25, + "network":"194.12.1.0\/25", + "version":62099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.1.128", + "prefixLen":25, + "network":"194.12.1.128\/25", + "version":62098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.1.128", + "prefixLen":25, + "network":"194.12.1.128\/25", + "version":62098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.2.0", + "prefixLen":25, + "network":"194.12.2.0\/25", + "version":62097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.2.0", + "prefixLen":25, + "network":"194.12.2.0\/25", + "version":62097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.2.128", + "prefixLen":25, + "network":"194.12.2.128\/25", + "version":62096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.2.128", + "prefixLen":25, + "network":"194.12.2.128\/25", + "version":62096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.3.0", + "prefixLen":25, + "network":"194.12.3.0\/25", + "version":62095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.3.0", + "prefixLen":25, + "network":"194.12.3.0\/25", + "version":62095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.3.128", + "prefixLen":25, + "network":"194.12.3.128\/25", + "version":62094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.3.128", + "prefixLen":25, + "network":"194.12.3.128\/25", + "version":62094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.16.0", + "prefixLen":25, + "network":"194.12.16.0\/25", + "version":62093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.16.0", + "prefixLen":25, + "network":"194.12.16.0\/25", + "version":62093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.16.128", + "prefixLen":25, + "network":"194.12.16.128\/25", + "version":62092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.16.128", + "prefixLen":25, + "network":"194.12.16.128\/25", + "version":62092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.17.0", + "prefixLen":25, + "network":"194.12.17.0\/25", + "version":62091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.17.0", + "prefixLen":25, + "network":"194.12.17.0\/25", + "version":62091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.17.128", + "prefixLen":25, + "network":"194.12.17.128\/25", + "version":62090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.17.128", + "prefixLen":25, + "network":"194.12.17.128\/25", + "version":62090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.18.0", + "prefixLen":25, + "network":"194.12.18.0\/25", + "version":62089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.18.0", + "prefixLen":25, + "network":"194.12.18.0\/25", + "version":62089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.18.128", + "prefixLen":25, + "network":"194.12.18.128\/25", + "version":62088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.18.128", + "prefixLen":25, + "network":"194.12.18.128\/25", + "version":62088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.19.0", + "prefixLen":25, + "network":"194.12.19.0\/25", + "version":62087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.19.0", + "prefixLen":25, + "network":"194.12.19.0\/25", + "version":62087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.19.128", + "prefixLen":25, + "network":"194.12.19.128\/25", + "version":62086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.19.128", + "prefixLen":25, + "network":"194.12.19.128\/25", + "version":62086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.32.0", + "prefixLen":25, + "network":"194.12.32.0\/25", + "version":62085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.32.0", + "prefixLen":25, + "network":"194.12.32.0\/25", + "version":62085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.32.128", + "prefixLen":25, + "network":"194.12.32.128\/25", + "version":62084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.32.128", + "prefixLen":25, + "network":"194.12.32.128\/25", + "version":62084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.33.0", + "prefixLen":25, + "network":"194.12.33.0\/25", + "version":62083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.33.0", + "prefixLen":25, + "network":"194.12.33.0\/25", + "version":62083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.33.128", + "prefixLen":25, + "network":"194.12.33.128\/25", + "version":62082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.33.128", + "prefixLen":25, + "network":"194.12.33.128\/25", + "version":62082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.34.0", + "prefixLen":25, + "network":"194.12.34.0\/25", + "version":62081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.34.0", + "prefixLen":25, + "network":"194.12.34.0\/25", + "version":62081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.34.128", + "prefixLen":25, + "network":"194.12.34.128\/25", + "version":62080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.34.128", + "prefixLen":25, + "network":"194.12.34.128\/25", + "version":62080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.35.0", + "prefixLen":25, + "network":"194.12.35.0\/25", + "version":62079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.35.0", + "prefixLen":25, + "network":"194.12.35.0\/25", + "version":62079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.35.128", + "prefixLen":25, + "network":"194.12.35.128\/25", + "version":62078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.35.128", + "prefixLen":25, + "network":"194.12.35.128\/25", + "version":62078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.48.0", + "prefixLen":25, + "network":"194.12.48.0\/25", + "version":62077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.48.0", + "prefixLen":25, + "network":"194.12.48.0\/25", + "version":62077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.48.128", + "prefixLen":25, + "network":"194.12.48.128\/25", + "version":62076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.48.128", + "prefixLen":25, + "network":"194.12.48.128\/25", + "version":62076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.49.0", + "prefixLen":25, + "network":"194.12.49.0\/25", + "version":62075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.49.0", + "prefixLen":25, + "network":"194.12.49.0\/25", + "version":62075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.49.128", + "prefixLen":25, + "network":"194.12.49.128\/25", + "version":62074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.49.128", + "prefixLen":25, + "network":"194.12.49.128\/25", + "version":62074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.50.0", + "prefixLen":25, + "network":"194.12.50.0\/25", + "version":62073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.50.0", + "prefixLen":25, + "network":"194.12.50.0\/25", + "version":62073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.50.128", + "prefixLen":25, + "network":"194.12.50.128\/25", + "version":62072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.50.128", + "prefixLen":25, + "network":"194.12.50.128\/25", + "version":62072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.51.0", + "prefixLen":25, + "network":"194.12.51.0\/25", + "version":62071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.51.0", + "prefixLen":25, + "network":"194.12.51.0\/25", + "version":62071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.51.128", + "prefixLen":25, + "network":"194.12.51.128\/25", + "version":62070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.51.128", + "prefixLen":25, + "network":"194.12.51.128\/25", + "version":62070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.64.0", + "prefixLen":25, + "network":"194.12.64.0\/25", + "version":62069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.64.0", + "prefixLen":25, + "network":"194.12.64.0\/25", + "version":62069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.64.128", + "prefixLen":25, + "network":"194.12.64.128\/25", + "version":62068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.64.128", + "prefixLen":25, + "network":"194.12.64.128\/25", + "version":62068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.65.0", + "prefixLen":25, + "network":"194.12.65.0\/25", + "version":62067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.65.0", + "prefixLen":25, + "network":"194.12.65.0\/25", + "version":62067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.65.128", + "prefixLen":25, + "network":"194.12.65.128\/25", + "version":62066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.65.128", + "prefixLen":25, + "network":"194.12.65.128\/25", + "version":62066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.66.0", + "prefixLen":25, + "network":"194.12.66.0\/25", + "version":62065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.66.0", + "prefixLen":25, + "network":"194.12.66.0\/25", + "version":62065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.66.128", + "prefixLen":25, + "network":"194.12.66.128\/25", + "version":62064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.66.128", + "prefixLen":25, + "network":"194.12.66.128\/25", + "version":62064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.67.0", + "prefixLen":25, + "network":"194.12.67.0\/25", + "version":62063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.67.0", + "prefixLen":25, + "network":"194.12.67.0\/25", + "version":62063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.67.128", + "prefixLen":25, + "network":"194.12.67.128\/25", + "version":62062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.67.128", + "prefixLen":25, + "network":"194.12.67.128\/25", + "version":62062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.80.0", + "prefixLen":25, + "network":"194.12.80.0\/25", + "version":62061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.80.0", + "prefixLen":25, + "network":"194.12.80.0\/25", + "version":62061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.80.128", + "prefixLen":25, + "network":"194.12.80.128\/25", + "version":62060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.80.128", + "prefixLen":25, + "network":"194.12.80.128\/25", + "version":62060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.81.0", + "prefixLen":25, + "network":"194.12.81.0\/25", + "version":62059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.81.0", + "prefixLen":25, + "network":"194.12.81.0\/25", + "version":62059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.81.128", + "prefixLen":25, + "network":"194.12.81.128\/25", + "version":62058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.81.128", + "prefixLen":25, + "network":"194.12.81.128\/25", + "version":62058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.82.0", + "prefixLen":25, + "network":"194.12.82.0\/25", + "version":62057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.82.0", + "prefixLen":25, + "network":"194.12.82.0\/25", + "version":62057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.82.128", + "prefixLen":25, + "network":"194.12.82.128\/25", + "version":62056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.82.128", + "prefixLen":25, + "network":"194.12.82.128\/25", + "version":62056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.83.0", + "prefixLen":25, + "network":"194.12.83.0\/25", + "version":62055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.83.0", + "prefixLen":25, + "network":"194.12.83.0\/25", + "version":62055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.83.128", + "prefixLen":25, + "network":"194.12.83.128\/25", + "version":62054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.83.128", + "prefixLen":25, + "network":"194.12.83.128\/25", + "version":62054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.96.0", + "prefixLen":25, + "network":"194.12.96.0\/25", + "version":62053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.96.0", + "prefixLen":25, + "network":"194.12.96.0\/25", + "version":62053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.96.128", + "prefixLen":25, + "network":"194.12.96.128\/25", + "version":62052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.96.128", + "prefixLen":25, + "network":"194.12.96.128\/25", + "version":62052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.97.0", + "prefixLen":25, + "network":"194.12.97.0\/25", + "version":62051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.97.0", + "prefixLen":25, + "network":"194.12.97.0\/25", + "version":62051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.97.128", + "prefixLen":25, + "network":"194.12.97.128\/25", + "version":62050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.97.128", + "prefixLen":25, + "network":"194.12.97.128\/25", + "version":62050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.98.0", + "prefixLen":25, + "network":"194.12.98.0\/25", + "version":62049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.98.0", + "prefixLen":25, + "network":"194.12.98.0\/25", + "version":62049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.98.128", + "prefixLen":25, + "network":"194.12.98.128\/25", + "version":62048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.98.128", + "prefixLen":25, + "network":"194.12.98.128\/25", + "version":62048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.99.0", + "prefixLen":25, + "network":"194.12.99.0\/25", + "version":62047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.99.0", + "prefixLen":25, + "network":"194.12.99.0\/25", + "version":62047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.99.128", + "prefixLen":25, + "network":"194.12.99.128\/25", + "version":62046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.99.128", + "prefixLen":25, + "network":"194.12.99.128\/25", + "version":62046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.112.0", + "prefixLen":25, + "network":"194.12.112.0\/25", + "version":62045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.112.0", + "prefixLen":25, + "network":"194.12.112.0\/25", + "version":62045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.112.128", + "prefixLen":25, + "network":"194.12.112.128\/25", + "version":62044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.112.128", + "prefixLen":25, + "network":"194.12.112.128\/25", + "version":62044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.113.0", + "prefixLen":25, + "network":"194.12.113.0\/25", + "version":62043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.113.0", + "prefixLen":25, + "network":"194.12.113.0\/25", + "version":62043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.113.128", + "prefixLen":25, + "network":"194.12.113.128\/25", + "version":62042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.113.128", + "prefixLen":25, + "network":"194.12.113.128\/25", + "version":62042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.114.0", + "prefixLen":25, + "network":"194.12.114.0\/25", + "version":62041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.114.0", + "prefixLen":25, + "network":"194.12.114.0\/25", + "version":62041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.114.128", + "prefixLen":25, + "network":"194.12.114.128\/25", + "version":62040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.114.128", + "prefixLen":25, + "network":"194.12.114.128\/25", + "version":62040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.115.0", + "prefixLen":25, + "network":"194.12.115.0\/25", + "version":62039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.115.0", + "prefixLen":25, + "network":"194.12.115.0\/25", + "version":62039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.115.128", + "prefixLen":25, + "network":"194.12.115.128\/25", + "version":62038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.115.128", + "prefixLen":25, + "network":"194.12.115.128\/25", + "version":62038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.128.0", + "prefixLen":25, + "network":"194.12.128.0\/25", + "version":62037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.128.0", + "prefixLen":25, + "network":"194.12.128.0\/25", + "version":62037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.128.128", + "prefixLen":25, + "network":"194.12.128.128\/25", + "version":62036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.128.128", + "prefixLen":25, + "network":"194.12.128.128\/25", + "version":62036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.129.0", + "prefixLen":25, + "network":"194.12.129.0\/25", + "version":62035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.129.0", + "prefixLen":25, + "network":"194.12.129.0\/25", + "version":62035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.129.128", + "prefixLen":25, + "network":"194.12.129.128\/25", + "version":62034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.129.128", + "prefixLen":25, + "network":"194.12.129.128\/25", + "version":62034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.130.0", + "prefixLen":25, + "network":"194.12.130.0\/25", + "version":62033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.130.0", + "prefixLen":25, + "network":"194.12.130.0\/25", + "version":62033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.130.128", + "prefixLen":25, + "network":"194.12.130.128\/25", + "version":62032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.130.128", + "prefixLen":25, + "network":"194.12.130.128\/25", + "version":62032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.131.0", + "prefixLen":25, + "network":"194.12.131.0\/25", + "version":62031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.131.0", + "prefixLen":25, + "network":"194.12.131.0\/25", + "version":62031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.131.128", + "prefixLen":25, + "network":"194.12.131.128\/25", + "version":62030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.131.128", + "prefixLen":25, + "network":"194.12.131.128\/25", + "version":62030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.144.0", + "prefixLen":25, + "network":"194.12.144.0\/25", + "version":62029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.144.0", + "prefixLen":25, + "network":"194.12.144.0\/25", + "version":62029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.144.128", + "prefixLen":25, + "network":"194.12.144.128\/25", + "version":62028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.144.128", + "prefixLen":25, + "network":"194.12.144.128\/25", + "version":62028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.145.0", + "prefixLen":25, + "network":"194.12.145.0\/25", + "version":62027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.145.0", + "prefixLen":25, + "network":"194.12.145.0\/25", + "version":62027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.145.128", + "prefixLen":25, + "network":"194.12.145.128\/25", + "version":62026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.145.128", + "prefixLen":25, + "network":"194.12.145.128\/25", + "version":62026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.146.0", + "prefixLen":25, + "network":"194.12.146.0\/25", + "version":62025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.146.0", + "prefixLen":25, + "network":"194.12.146.0\/25", + "version":62025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.146.128", + "prefixLen":25, + "network":"194.12.146.128\/25", + "version":62024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.146.128", + "prefixLen":25, + "network":"194.12.146.128\/25", + "version":62024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.147.0", + "prefixLen":25, + "network":"194.12.147.0\/25", + "version":62023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.147.0", + "prefixLen":25, + "network":"194.12.147.0\/25", + "version":62023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.147.128", + "prefixLen":25, + "network":"194.12.147.128\/25", + "version":62022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.147.128", + "prefixLen":25, + "network":"194.12.147.128\/25", + "version":62022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.160.0", + "prefixLen":25, + "network":"194.12.160.0\/25", + "version":62021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.160.0", + "prefixLen":25, + "network":"194.12.160.0\/25", + "version":62021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.160.128", + "prefixLen":25, + "network":"194.12.160.128\/25", + "version":62020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.160.128", + "prefixLen":25, + "network":"194.12.160.128\/25", + "version":62020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.161.0", + "prefixLen":25, + "network":"194.12.161.0\/25", + "version":62019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.161.0", + "prefixLen":25, + "network":"194.12.161.0\/25", + "version":62019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.161.128", + "prefixLen":25, + "network":"194.12.161.128\/25", + "version":62018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.161.128", + "prefixLen":25, + "network":"194.12.161.128\/25", + "version":62018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.162.0", + "prefixLen":25, + "network":"194.12.162.0\/25", + "version":62017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.162.0", + "prefixLen":25, + "network":"194.12.162.0\/25", + "version":62017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.162.128", + "prefixLen":25, + "network":"194.12.162.128\/25", + "version":62016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.162.128", + "prefixLen":25, + "network":"194.12.162.128\/25", + "version":62016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.163.0", + "prefixLen":25, + "network":"194.12.163.0\/25", + "version":62015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.163.0", + "prefixLen":25, + "network":"194.12.163.0\/25", + "version":62015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.163.128", + "prefixLen":25, + "network":"194.12.163.128\/25", + "version":62014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.163.128", + "prefixLen":25, + "network":"194.12.163.128\/25", + "version":62014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.176.0", + "prefixLen":25, + "network":"194.12.176.0\/25", + "version":62013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.176.0", + "prefixLen":25, + "network":"194.12.176.0\/25", + "version":62013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.176.128", + "prefixLen":25, + "network":"194.12.176.128\/25", + "version":62012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.176.128", + "prefixLen":25, + "network":"194.12.176.128\/25", + "version":62012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.177.0", + "prefixLen":25, + "network":"194.12.177.0\/25", + "version":62011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.177.0", + "prefixLen":25, + "network":"194.12.177.0\/25", + "version":62011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.177.128", + "prefixLen":25, + "network":"194.12.177.128\/25", + "version":62010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.177.128", + "prefixLen":25, + "network":"194.12.177.128\/25", + "version":62010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.178.0", + "prefixLen":25, + "network":"194.12.178.0\/25", + "version":62009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.178.0", + "prefixLen":25, + "network":"194.12.178.0\/25", + "version":62009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.178.128", + "prefixLen":25, + "network":"194.12.178.128\/25", + "version":62008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.178.128", + "prefixLen":25, + "network":"194.12.178.128\/25", + "version":62008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.179.0", + "prefixLen":25, + "network":"194.12.179.0\/25", + "version":62007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.179.0", + "prefixLen":25, + "network":"194.12.179.0\/25", + "version":62007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.179.128", + "prefixLen":25, + "network":"194.12.179.128\/25", + "version":62006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.179.128", + "prefixLen":25, + "network":"194.12.179.128\/25", + "version":62006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.192.0", + "prefixLen":25, + "network":"194.12.192.0\/25", + "version":62005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.192.0", + "prefixLen":25, + "network":"194.12.192.0\/25", + "version":62005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.192.128", + "prefixLen":25, + "network":"194.12.192.128\/25", + "version":62004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.192.128", + "prefixLen":25, + "network":"194.12.192.128\/25", + "version":62004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.193.0", + "prefixLen":25, + "network":"194.12.193.0\/25", + "version":62003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.193.0", + "prefixLen":25, + "network":"194.12.193.0\/25", + "version":62003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.193.128", + "prefixLen":25, + "network":"194.12.193.128\/25", + "version":62002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.193.128", + "prefixLen":25, + "network":"194.12.193.128\/25", + "version":62002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.194.0", + "prefixLen":25, + "network":"194.12.194.0\/25", + "version":62001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.194.0", + "prefixLen":25, + "network":"194.12.194.0\/25", + "version":62001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.194.128", + "prefixLen":25, + "network":"194.12.194.128\/25", + "version":62000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.194.128", + "prefixLen":25, + "network":"194.12.194.128\/25", + "version":62000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.195.0", + "prefixLen":25, + "network":"194.12.195.0\/25", + "version":61999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.195.0", + "prefixLen":25, + "network":"194.12.195.0\/25", + "version":61999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.195.128", + "prefixLen":25, + "network":"194.12.195.128\/25", + "version":61998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.195.128", + "prefixLen":25, + "network":"194.12.195.128\/25", + "version":61998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.208.0", + "prefixLen":25, + "network":"194.12.208.0\/25", + "version":61997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.208.0", + "prefixLen":25, + "network":"194.12.208.0\/25", + "version":61997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.208.128", + "prefixLen":25, + "network":"194.12.208.128\/25", + "version":61996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.208.128", + "prefixLen":25, + "network":"194.12.208.128\/25", + "version":61996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.209.0", + "prefixLen":25, + "network":"194.12.209.0\/25", + "version":61995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.209.0", + "prefixLen":25, + "network":"194.12.209.0\/25", + "version":61995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.209.128", + "prefixLen":25, + "network":"194.12.209.128\/25", + "version":61994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.209.128", + "prefixLen":25, + "network":"194.12.209.128\/25", + "version":61994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.210.0", + "prefixLen":25, + "network":"194.12.210.0\/25", + "version":61993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.210.0", + "prefixLen":25, + "network":"194.12.210.0\/25", + "version":61993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.210.128", + "prefixLen":25, + "network":"194.12.210.128\/25", + "version":61992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.210.128", + "prefixLen":25, + "network":"194.12.210.128\/25", + "version":61992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.211.0", + "prefixLen":25, + "network":"194.12.211.0\/25", + "version":61991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.211.0", + "prefixLen":25, + "network":"194.12.211.0\/25", + "version":61991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.211.128", + "prefixLen":25, + "network":"194.12.211.128\/25", + "version":61990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.211.128", + "prefixLen":25, + "network":"194.12.211.128\/25", + "version":61990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.224.0", + "prefixLen":25, + "network":"194.12.224.0\/25", + "version":61989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.224.0", + "prefixLen":25, + "network":"194.12.224.0\/25", + "version":61989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.224.128", + "prefixLen":25, + "network":"194.12.224.128\/25", + "version":61988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.224.128", + "prefixLen":25, + "network":"194.12.224.128\/25", + "version":61988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.225.0", + "prefixLen":25, + "network":"194.12.225.0\/25", + "version":61987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.225.0", + "prefixLen":25, + "network":"194.12.225.0\/25", + "version":61987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.225.128", + "prefixLen":25, + "network":"194.12.225.128\/25", + "version":61986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.225.128", + "prefixLen":25, + "network":"194.12.225.128\/25", + "version":61986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.226.0", + "prefixLen":25, + "network":"194.12.226.0\/25", + "version":61985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.226.0", + "prefixLen":25, + "network":"194.12.226.0\/25", + "version":61985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.226.128", + "prefixLen":25, + "network":"194.12.226.128\/25", + "version":61984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.226.128", + "prefixLen":25, + "network":"194.12.226.128\/25", + "version":61984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.227.0", + "prefixLen":25, + "network":"194.12.227.0\/25", + "version":61983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.227.0", + "prefixLen":25, + "network":"194.12.227.0\/25", + "version":61983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.227.128", + "prefixLen":25, + "network":"194.12.227.128\/25", + "version":61982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.227.128", + "prefixLen":25, + "network":"194.12.227.128\/25", + "version":61982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.240.0", + "prefixLen":25, + "network":"194.12.240.0\/25", + "version":61981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.240.0", + "prefixLen":25, + "network":"194.12.240.0\/25", + "version":61981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.240.128", + "prefixLen":25, + "network":"194.12.240.128\/25", + "version":61980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.240.128", + "prefixLen":25, + "network":"194.12.240.128\/25", + "version":61980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.241.0", + "prefixLen":25, + "network":"194.12.241.0\/25", + "version":61979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.241.0", + "prefixLen":25, + "network":"194.12.241.0\/25", + "version":61979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.241.128", + "prefixLen":25, + "network":"194.12.241.128\/25", + "version":61978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.241.128", + "prefixLen":25, + "network":"194.12.241.128\/25", + "version":61978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.242.0", + "prefixLen":25, + "network":"194.12.242.0\/25", + "version":61977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.242.0", + "prefixLen":25, + "network":"194.12.242.0\/25", + "version":61977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.242.128", + "prefixLen":25, + "network":"194.12.242.128\/25", + "version":61976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.242.128", + "prefixLen":25, + "network":"194.12.242.128\/25", + "version":61976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.243.0", + "prefixLen":25, + "network":"194.12.243.0\/25", + "version":61975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.243.0", + "prefixLen":25, + "network":"194.12.243.0\/25", + "version":61975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.12.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.12.243.128", + "prefixLen":25, + "network":"194.12.243.128\/25", + "version":61974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.12.243.128", + "prefixLen":25, + "network":"194.12.243.128\/25", + "version":61974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64956 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.0.0", + "prefixLen":25, + "network":"194.13.0.0\/25", + "version":62101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.0.0", + "prefixLen":25, + "network":"194.13.0.0\/25", + "version":62101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.0.128", + "prefixLen":25, + "network":"194.13.0.128\/25", + "version":62228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.0.128", + "prefixLen":25, + "network":"194.13.0.128\/25", + "version":62228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.1.0", + "prefixLen":25, + "network":"194.13.1.0\/25", + "version":62227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.1.0", + "prefixLen":25, + "network":"194.13.1.0\/25", + "version":62227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.1.128", + "prefixLen":25, + "network":"194.13.1.128\/25", + "version":62226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.1.128", + "prefixLen":25, + "network":"194.13.1.128\/25", + "version":62226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.2.0", + "prefixLen":25, + "network":"194.13.2.0\/25", + "version":62225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.2.0", + "prefixLen":25, + "network":"194.13.2.0\/25", + "version":62225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.2.128", + "prefixLen":25, + "network":"194.13.2.128\/25", + "version":62224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.2.128", + "prefixLen":25, + "network":"194.13.2.128\/25", + "version":62224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.3.0", + "prefixLen":25, + "network":"194.13.3.0\/25", + "version":62223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.3.0", + "prefixLen":25, + "network":"194.13.3.0\/25", + "version":62223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.3.128", + "prefixLen":25, + "network":"194.13.3.128\/25", + "version":62222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.3.128", + "prefixLen":25, + "network":"194.13.3.128\/25", + "version":62222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.16.0", + "prefixLen":25, + "network":"194.13.16.0\/25", + "version":62221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.16.0", + "prefixLen":25, + "network":"194.13.16.0\/25", + "version":62221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.16.128", + "prefixLen":25, + "network":"194.13.16.128\/25", + "version":62220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.16.128", + "prefixLen":25, + "network":"194.13.16.128\/25", + "version":62220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.17.0", + "prefixLen":25, + "network":"194.13.17.0\/25", + "version":62219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.17.0", + "prefixLen":25, + "network":"194.13.17.0\/25", + "version":62219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.17.128", + "prefixLen":25, + "network":"194.13.17.128\/25", + "version":62218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.17.128", + "prefixLen":25, + "network":"194.13.17.128\/25", + "version":62218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.18.0", + "prefixLen":25, + "network":"194.13.18.0\/25", + "version":62217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.18.0", + "prefixLen":25, + "network":"194.13.18.0\/25", + "version":62217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.18.128", + "prefixLen":25, + "network":"194.13.18.128\/25", + "version":62216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.18.128", + "prefixLen":25, + "network":"194.13.18.128\/25", + "version":62216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.19.0", + "prefixLen":25, + "network":"194.13.19.0\/25", + "version":62215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.19.0", + "prefixLen":25, + "network":"194.13.19.0\/25", + "version":62215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.19.128", + "prefixLen":25, + "network":"194.13.19.128\/25", + "version":62214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.19.128", + "prefixLen":25, + "network":"194.13.19.128\/25", + "version":62214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.32.0", + "prefixLen":25, + "network":"194.13.32.0\/25", + "version":62213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.32.0", + "prefixLen":25, + "network":"194.13.32.0\/25", + "version":62213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.32.128", + "prefixLen":25, + "network":"194.13.32.128\/25", + "version":62212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.32.128", + "prefixLen":25, + "network":"194.13.32.128\/25", + "version":62212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.33.0", + "prefixLen":25, + "network":"194.13.33.0\/25", + "version":62211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.33.0", + "prefixLen":25, + "network":"194.13.33.0\/25", + "version":62211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.33.128", + "prefixLen":25, + "network":"194.13.33.128\/25", + "version":62210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.33.128", + "prefixLen":25, + "network":"194.13.33.128\/25", + "version":62210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.34.0", + "prefixLen":25, + "network":"194.13.34.0\/25", + "version":62209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.34.0", + "prefixLen":25, + "network":"194.13.34.0\/25", + "version":62209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.34.128", + "prefixLen":25, + "network":"194.13.34.128\/25", + "version":62208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.34.128", + "prefixLen":25, + "network":"194.13.34.128\/25", + "version":62208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.35.0", + "prefixLen":25, + "network":"194.13.35.0\/25", + "version":62207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.35.0", + "prefixLen":25, + "network":"194.13.35.0\/25", + "version":62207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.35.128", + "prefixLen":25, + "network":"194.13.35.128\/25", + "version":62206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.35.128", + "prefixLen":25, + "network":"194.13.35.128\/25", + "version":62206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.48.0", + "prefixLen":25, + "network":"194.13.48.0\/25", + "version":62205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.48.0", + "prefixLen":25, + "network":"194.13.48.0\/25", + "version":62205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.48.128", + "prefixLen":25, + "network":"194.13.48.128\/25", + "version":62204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.48.128", + "prefixLen":25, + "network":"194.13.48.128\/25", + "version":62204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.49.0", + "prefixLen":25, + "network":"194.13.49.0\/25", + "version":62203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.49.0", + "prefixLen":25, + "network":"194.13.49.0\/25", + "version":62203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.49.128", + "prefixLen":25, + "network":"194.13.49.128\/25", + "version":62202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.49.128", + "prefixLen":25, + "network":"194.13.49.128\/25", + "version":62202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.50.0", + "prefixLen":25, + "network":"194.13.50.0\/25", + "version":62201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.50.0", + "prefixLen":25, + "network":"194.13.50.0\/25", + "version":62201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.50.128", + "prefixLen":25, + "network":"194.13.50.128\/25", + "version":62200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.50.128", + "prefixLen":25, + "network":"194.13.50.128\/25", + "version":62200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.51.0", + "prefixLen":25, + "network":"194.13.51.0\/25", + "version":62199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.51.0", + "prefixLen":25, + "network":"194.13.51.0\/25", + "version":62199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.51.128", + "prefixLen":25, + "network":"194.13.51.128\/25", + "version":62198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.51.128", + "prefixLen":25, + "network":"194.13.51.128\/25", + "version":62198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.64.0", + "prefixLen":25, + "network":"194.13.64.0\/25", + "version":62197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.64.0", + "prefixLen":25, + "network":"194.13.64.0\/25", + "version":62197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.64.128", + "prefixLen":25, + "network":"194.13.64.128\/25", + "version":62196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.64.128", + "prefixLen":25, + "network":"194.13.64.128\/25", + "version":62196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.65.0", + "prefixLen":25, + "network":"194.13.65.0\/25", + "version":62195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.65.0", + "prefixLen":25, + "network":"194.13.65.0\/25", + "version":62195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.65.128", + "prefixLen":25, + "network":"194.13.65.128\/25", + "version":62194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.65.128", + "prefixLen":25, + "network":"194.13.65.128\/25", + "version":62194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.66.0", + "prefixLen":25, + "network":"194.13.66.0\/25", + "version":62193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.66.0", + "prefixLen":25, + "network":"194.13.66.0\/25", + "version":62193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.66.128", + "prefixLen":25, + "network":"194.13.66.128\/25", + "version":62192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.66.128", + "prefixLen":25, + "network":"194.13.66.128\/25", + "version":62192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.67.0", + "prefixLen":25, + "network":"194.13.67.0\/25", + "version":62191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.67.0", + "prefixLen":25, + "network":"194.13.67.0\/25", + "version":62191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.67.128", + "prefixLen":25, + "network":"194.13.67.128\/25", + "version":62190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.67.128", + "prefixLen":25, + "network":"194.13.67.128\/25", + "version":62190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.80.0", + "prefixLen":25, + "network":"194.13.80.0\/25", + "version":62189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.80.0", + "prefixLen":25, + "network":"194.13.80.0\/25", + "version":62189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.80.128", + "prefixLen":25, + "network":"194.13.80.128\/25", + "version":62188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.80.128", + "prefixLen":25, + "network":"194.13.80.128\/25", + "version":62188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.81.0", + "prefixLen":25, + "network":"194.13.81.0\/25", + "version":62187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.81.0", + "prefixLen":25, + "network":"194.13.81.0\/25", + "version":62187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.81.128", + "prefixLen":25, + "network":"194.13.81.128\/25", + "version":62186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.81.128", + "prefixLen":25, + "network":"194.13.81.128\/25", + "version":62186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.82.0", + "prefixLen":25, + "network":"194.13.82.0\/25", + "version":62185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.82.0", + "prefixLen":25, + "network":"194.13.82.0\/25", + "version":62185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.82.128", + "prefixLen":25, + "network":"194.13.82.128\/25", + "version":62184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.82.128", + "prefixLen":25, + "network":"194.13.82.128\/25", + "version":62184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.83.0", + "prefixLen":25, + "network":"194.13.83.0\/25", + "version":62183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.83.0", + "prefixLen":25, + "network":"194.13.83.0\/25", + "version":62183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.83.128", + "prefixLen":25, + "network":"194.13.83.128\/25", + "version":62182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.83.128", + "prefixLen":25, + "network":"194.13.83.128\/25", + "version":62182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.96.0", + "prefixLen":25, + "network":"194.13.96.0\/25", + "version":62181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.96.0", + "prefixLen":25, + "network":"194.13.96.0\/25", + "version":62181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.96.128", + "prefixLen":25, + "network":"194.13.96.128\/25", + "version":62180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.96.128", + "prefixLen":25, + "network":"194.13.96.128\/25", + "version":62180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.97.0", + "prefixLen":25, + "network":"194.13.97.0\/25", + "version":62179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.97.0", + "prefixLen":25, + "network":"194.13.97.0\/25", + "version":62179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.97.128", + "prefixLen":25, + "network":"194.13.97.128\/25", + "version":62178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.97.128", + "prefixLen":25, + "network":"194.13.97.128\/25", + "version":62178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.98.0", + "prefixLen":25, + "network":"194.13.98.0\/25", + "version":62177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.98.0", + "prefixLen":25, + "network":"194.13.98.0\/25", + "version":62177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.98.128", + "prefixLen":25, + "network":"194.13.98.128\/25", + "version":62176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.98.128", + "prefixLen":25, + "network":"194.13.98.128\/25", + "version":62176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.99.0", + "prefixLen":25, + "network":"194.13.99.0\/25", + "version":62175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.99.0", + "prefixLen":25, + "network":"194.13.99.0\/25", + "version":62175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.99.128", + "prefixLen":25, + "network":"194.13.99.128\/25", + "version":62174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.99.128", + "prefixLen":25, + "network":"194.13.99.128\/25", + "version":62174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.112.0", + "prefixLen":25, + "network":"194.13.112.0\/25", + "version":62173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.112.0", + "prefixLen":25, + "network":"194.13.112.0\/25", + "version":62173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.112.128", + "prefixLen":25, + "network":"194.13.112.128\/25", + "version":62172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.112.128", + "prefixLen":25, + "network":"194.13.112.128\/25", + "version":62172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.113.0", + "prefixLen":25, + "network":"194.13.113.0\/25", + "version":62171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.113.0", + "prefixLen":25, + "network":"194.13.113.0\/25", + "version":62171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.113.128", + "prefixLen":25, + "network":"194.13.113.128\/25", + "version":62170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.113.128", + "prefixLen":25, + "network":"194.13.113.128\/25", + "version":62170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.114.0", + "prefixLen":25, + "network":"194.13.114.0\/25", + "version":62169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.114.0", + "prefixLen":25, + "network":"194.13.114.0\/25", + "version":62169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.114.128", + "prefixLen":25, + "network":"194.13.114.128\/25", + "version":62168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.114.128", + "prefixLen":25, + "network":"194.13.114.128\/25", + "version":62168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.115.0", + "prefixLen":25, + "network":"194.13.115.0\/25", + "version":62167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.115.0", + "prefixLen":25, + "network":"194.13.115.0\/25", + "version":62167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.115.128", + "prefixLen":25, + "network":"194.13.115.128\/25", + "version":62166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.115.128", + "prefixLen":25, + "network":"194.13.115.128\/25", + "version":62166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.128.0", + "prefixLen":25, + "network":"194.13.128.0\/25", + "version":62165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.128.0", + "prefixLen":25, + "network":"194.13.128.0\/25", + "version":62165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.128.128", + "prefixLen":25, + "network":"194.13.128.128\/25", + "version":62164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.128.128", + "prefixLen":25, + "network":"194.13.128.128\/25", + "version":62164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.129.0", + "prefixLen":25, + "network":"194.13.129.0\/25", + "version":62163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.129.0", + "prefixLen":25, + "network":"194.13.129.0\/25", + "version":62163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.129.128", + "prefixLen":25, + "network":"194.13.129.128\/25", + "version":62162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.129.128", + "prefixLen":25, + "network":"194.13.129.128\/25", + "version":62162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.130.0", + "prefixLen":25, + "network":"194.13.130.0\/25", + "version":62161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.130.0", + "prefixLen":25, + "network":"194.13.130.0\/25", + "version":62161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.130.128", + "prefixLen":25, + "network":"194.13.130.128\/25", + "version":62160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.130.128", + "prefixLen":25, + "network":"194.13.130.128\/25", + "version":62160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.131.0", + "prefixLen":25, + "network":"194.13.131.0\/25", + "version":62159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.131.0", + "prefixLen":25, + "network":"194.13.131.0\/25", + "version":62159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.131.128", + "prefixLen":25, + "network":"194.13.131.128\/25", + "version":62158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.131.128", + "prefixLen":25, + "network":"194.13.131.128\/25", + "version":62158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.144.0", + "prefixLen":25, + "network":"194.13.144.0\/25", + "version":62157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.144.0", + "prefixLen":25, + "network":"194.13.144.0\/25", + "version":62157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.144.128", + "prefixLen":25, + "network":"194.13.144.128\/25", + "version":62156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.144.128", + "prefixLen":25, + "network":"194.13.144.128\/25", + "version":62156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.145.0", + "prefixLen":25, + "network":"194.13.145.0\/25", + "version":62155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.145.0", + "prefixLen":25, + "network":"194.13.145.0\/25", + "version":62155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.145.128", + "prefixLen":25, + "network":"194.13.145.128\/25", + "version":62154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.145.128", + "prefixLen":25, + "network":"194.13.145.128\/25", + "version":62154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.146.0", + "prefixLen":25, + "network":"194.13.146.0\/25", + "version":62153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.146.0", + "prefixLen":25, + "network":"194.13.146.0\/25", + "version":62153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.146.128", + "prefixLen":25, + "network":"194.13.146.128\/25", + "version":62152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.146.128", + "prefixLen":25, + "network":"194.13.146.128\/25", + "version":62152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.147.0", + "prefixLen":25, + "network":"194.13.147.0\/25", + "version":62151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.147.0", + "prefixLen":25, + "network":"194.13.147.0\/25", + "version":62151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.147.128", + "prefixLen":25, + "network":"194.13.147.128\/25", + "version":62150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.147.128", + "prefixLen":25, + "network":"194.13.147.128\/25", + "version":62150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.160.0", + "prefixLen":25, + "network":"194.13.160.0\/25", + "version":62149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.160.0", + "prefixLen":25, + "network":"194.13.160.0\/25", + "version":62149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.160.128", + "prefixLen":25, + "network":"194.13.160.128\/25", + "version":62148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.160.128", + "prefixLen":25, + "network":"194.13.160.128\/25", + "version":62148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.161.0", + "prefixLen":25, + "network":"194.13.161.0\/25", + "version":62147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.161.0", + "prefixLen":25, + "network":"194.13.161.0\/25", + "version":62147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.161.128", + "prefixLen":25, + "network":"194.13.161.128\/25", + "version":62146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.161.128", + "prefixLen":25, + "network":"194.13.161.128\/25", + "version":62146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.162.0", + "prefixLen":25, + "network":"194.13.162.0\/25", + "version":62145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.162.0", + "prefixLen":25, + "network":"194.13.162.0\/25", + "version":62145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.162.128", + "prefixLen":25, + "network":"194.13.162.128\/25", + "version":62144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.162.128", + "prefixLen":25, + "network":"194.13.162.128\/25", + "version":62144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.163.0", + "prefixLen":25, + "network":"194.13.163.0\/25", + "version":62143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.163.0", + "prefixLen":25, + "network":"194.13.163.0\/25", + "version":62143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.163.128", + "prefixLen":25, + "network":"194.13.163.128\/25", + "version":62142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.163.128", + "prefixLen":25, + "network":"194.13.163.128\/25", + "version":62142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.176.0", + "prefixLen":25, + "network":"194.13.176.0\/25", + "version":62141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.176.0", + "prefixLen":25, + "network":"194.13.176.0\/25", + "version":62141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.176.128", + "prefixLen":25, + "network":"194.13.176.128\/25", + "version":62140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.176.128", + "prefixLen":25, + "network":"194.13.176.128\/25", + "version":62140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.177.0", + "prefixLen":25, + "network":"194.13.177.0\/25", + "version":62139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.177.0", + "prefixLen":25, + "network":"194.13.177.0\/25", + "version":62139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.177.128", + "prefixLen":25, + "network":"194.13.177.128\/25", + "version":62138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.177.128", + "prefixLen":25, + "network":"194.13.177.128\/25", + "version":62138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.178.0", + "prefixLen":25, + "network":"194.13.178.0\/25", + "version":62137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.178.0", + "prefixLen":25, + "network":"194.13.178.0\/25", + "version":62137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.178.128", + "prefixLen":25, + "network":"194.13.178.128\/25", + "version":62136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.178.128", + "prefixLen":25, + "network":"194.13.178.128\/25", + "version":62136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.179.0", + "prefixLen":25, + "network":"194.13.179.0\/25", + "version":62135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.179.0", + "prefixLen":25, + "network":"194.13.179.0\/25", + "version":62135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.179.128", + "prefixLen":25, + "network":"194.13.179.128\/25", + "version":62134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.179.128", + "prefixLen":25, + "network":"194.13.179.128\/25", + "version":62134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.192.0", + "prefixLen":25, + "network":"194.13.192.0\/25", + "version":62133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.192.0", + "prefixLen":25, + "network":"194.13.192.0\/25", + "version":62133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.192.128", + "prefixLen":25, + "network":"194.13.192.128\/25", + "version":62132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.192.128", + "prefixLen":25, + "network":"194.13.192.128\/25", + "version":62132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.193.0", + "prefixLen":25, + "network":"194.13.193.0\/25", + "version":62131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.193.0", + "prefixLen":25, + "network":"194.13.193.0\/25", + "version":62131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.193.128", + "prefixLen":25, + "network":"194.13.193.128\/25", + "version":62130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.193.128", + "prefixLen":25, + "network":"194.13.193.128\/25", + "version":62130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.194.0", + "prefixLen":25, + "network":"194.13.194.0\/25", + "version":62129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.194.0", + "prefixLen":25, + "network":"194.13.194.0\/25", + "version":62129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.194.128", + "prefixLen":25, + "network":"194.13.194.128\/25", + "version":62128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.194.128", + "prefixLen":25, + "network":"194.13.194.128\/25", + "version":62128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.195.0", + "prefixLen":25, + "network":"194.13.195.0\/25", + "version":62127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.195.0", + "prefixLen":25, + "network":"194.13.195.0\/25", + "version":62127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.195.128", + "prefixLen":25, + "network":"194.13.195.128\/25", + "version":62126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.195.128", + "prefixLen":25, + "network":"194.13.195.128\/25", + "version":62126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.208.0", + "prefixLen":25, + "network":"194.13.208.0\/25", + "version":62125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.208.0", + "prefixLen":25, + "network":"194.13.208.0\/25", + "version":62125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.208.128", + "prefixLen":25, + "network":"194.13.208.128\/25", + "version":62124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.208.128", + "prefixLen":25, + "network":"194.13.208.128\/25", + "version":62124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.209.0", + "prefixLen":25, + "network":"194.13.209.0\/25", + "version":62123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.209.0", + "prefixLen":25, + "network":"194.13.209.0\/25", + "version":62123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.209.128", + "prefixLen":25, + "network":"194.13.209.128\/25", + "version":62122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.209.128", + "prefixLen":25, + "network":"194.13.209.128\/25", + "version":62122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.210.0", + "prefixLen":25, + "network":"194.13.210.0\/25", + "version":62121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.210.0", + "prefixLen":25, + "network":"194.13.210.0\/25", + "version":62121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.210.128", + "prefixLen":25, + "network":"194.13.210.128\/25", + "version":62120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.210.128", + "prefixLen":25, + "network":"194.13.210.128\/25", + "version":62120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.211.0", + "prefixLen":25, + "network":"194.13.211.0\/25", + "version":62119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.211.0", + "prefixLen":25, + "network":"194.13.211.0\/25", + "version":62119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.211.128", + "prefixLen":25, + "network":"194.13.211.128\/25", + "version":62118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.211.128", + "prefixLen":25, + "network":"194.13.211.128\/25", + "version":62118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.224.0", + "prefixLen":25, + "network":"194.13.224.0\/25", + "version":62117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.224.0", + "prefixLen":25, + "network":"194.13.224.0\/25", + "version":62117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.224.128", + "prefixLen":25, + "network":"194.13.224.128\/25", + "version":62116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.224.128", + "prefixLen":25, + "network":"194.13.224.128\/25", + "version":62116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.225.0", + "prefixLen":25, + "network":"194.13.225.0\/25", + "version":62115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.225.0", + "prefixLen":25, + "network":"194.13.225.0\/25", + "version":62115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.225.128", + "prefixLen":25, + "network":"194.13.225.128\/25", + "version":62114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.225.128", + "prefixLen":25, + "network":"194.13.225.128\/25", + "version":62114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.226.0", + "prefixLen":25, + "network":"194.13.226.0\/25", + "version":62113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.226.0", + "prefixLen":25, + "network":"194.13.226.0\/25", + "version":62113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.226.128", + "prefixLen":25, + "network":"194.13.226.128\/25", + "version":62112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.226.128", + "prefixLen":25, + "network":"194.13.226.128\/25", + "version":62112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.227.0", + "prefixLen":25, + "network":"194.13.227.0\/25", + "version":62111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.227.0", + "prefixLen":25, + "network":"194.13.227.0\/25", + "version":62111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.227.128", + "prefixLen":25, + "network":"194.13.227.128\/25", + "version":62110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.227.128", + "prefixLen":25, + "network":"194.13.227.128\/25", + "version":62110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.240.0", + "prefixLen":25, + "network":"194.13.240.0\/25", + "version":62109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.240.0", + "prefixLen":25, + "network":"194.13.240.0\/25", + "version":62109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.240.128", + "prefixLen":25, + "network":"194.13.240.128\/25", + "version":62108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.240.128", + "prefixLen":25, + "network":"194.13.240.128\/25", + "version":62108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.241.0", + "prefixLen":25, + "network":"194.13.241.0\/25", + "version":62107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.241.0", + "prefixLen":25, + "network":"194.13.241.0\/25", + "version":62107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.241.128", + "prefixLen":25, + "network":"194.13.241.128\/25", + "version":62106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.241.128", + "prefixLen":25, + "network":"194.13.241.128\/25", + "version":62106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.242.0", + "prefixLen":25, + "network":"194.13.242.0\/25", + "version":62105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.242.0", + "prefixLen":25, + "network":"194.13.242.0\/25", + "version":62105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.242.128", + "prefixLen":25, + "network":"194.13.242.128\/25", + "version":62104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.242.128", + "prefixLen":25, + "network":"194.13.242.128\/25", + "version":62104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.243.0", + "prefixLen":25, + "network":"194.13.243.0\/25", + "version":62103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.243.0", + "prefixLen":25, + "network":"194.13.243.0\/25", + "version":62103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.13.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.13.243.128", + "prefixLen":25, + "network":"194.13.243.128\/25", + "version":62102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.13.243.128", + "prefixLen":25, + "network":"194.13.243.128\/25", + "version":62102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64957 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.0.0", + "prefixLen":25, + "network":"194.14.0.0\/25", + "version":62229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.0.0", + "prefixLen":25, + "network":"194.14.0.0\/25", + "version":62229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.0.128", + "prefixLen":25, + "network":"194.14.0.128\/25", + "version":62356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.0.128", + "prefixLen":25, + "network":"194.14.0.128\/25", + "version":62356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.1.0", + "prefixLen":25, + "network":"194.14.1.0\/25", + "version":62355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.1.0", + "prefixLen":25, + "network":"194.14.1.0\/25", + "version":62355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.1.128", + "prefixLen":25, + "network":"194.14.1.128\/25", + "version":62354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.1.128", + "prefixLen":25, + "network":"194.14.1.128\/25", + "version":62354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.2.0", + "prefixLen":25, + "network":"194.14.2.0\/25", + "version":62353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.2.0", + "prefixLen":25, + "network":"194.14.2.0\/25", + "version":62353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.2.128", + "prefixLen":25, + "network":"194.14.2.128\/25", + "version":62352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.2.128", + "prefixLen":25, + "network":"194.14.2.128\/25", + "version":62352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.3.0", + "prefixLen":25, + "network":"194.14.3.0\/25", + "version":62351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.3.0", + "prefixLen":25, + "network":"194.14.3.0\/25", + "version":62351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.3.128", + "prefixLen":25, + "network":"194.14.3.128\/25", + "version":62350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.3.128", + "prefixLen":25, + "network":"194.14.3.128\/25", + "version":62350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.16.0", + "prefixLen":25, + "network":"194.14.16.0\/25", + "version":62349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.16.0", + "prefixLen":25, + "network":"194.14.16.0\/25", + "version":62349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.16.128", + "prefixLen":25, + "network":"194.14.16.128\/25", + "version":62348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.16.128", + "prefixLen":25, + "network":"194.14.16.128\/25", + "version":62348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.17.0", + "prefixLen":25, + "network":"194.14.17.0\/25", + "version":62347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.17.0", + "prefixLen":25, + "network":"194.14.17.0\/25", + "version":62347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.17.128", + "prefixLen":25, + "network":"194.14.17.128\/25", + "version":62346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.17.128", + "prefixLen":25, + "network":"194.14.17.128\/25", + "version":62346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.18.0", + "prefixLen":25, + "network":"194.14.18.0\/25", + "version":62345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.18.0", + "prefixLen":25, + "network":"194.14.18.0\/25", + "version":62345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.18.128", + "prefixLen":25, + "network":"194.14.18.128\/25", + "version":62344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.18.128", + "prefixLen":25, + "network":"194.14.18.128\/25", + "version":62344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.19.0", + "prefixLen":25, + "network":"194.14.19.0\/25", + "version":62343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.19.0", + "prefixLen":25, + "network":"194.14.19.0\/25", + "version":62343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.19.128", + "prefixLen":25, + "network":"194.14.19.128\/25", + "version":62342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.19.128", + "prefixLen":25, + "network":"194.14.19.128\/25", + "version":62342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.32.0", + "prefixLen":25, + "network":"194.14.32.0\/25", + "version":62341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.32.0", + "prefixLen":25, + "network":"194.14.32.0\/25", + "version":62341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.32.128", + "prefixLen":25, + "network":"194.14.32.128\/25", + "version":62340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.32.128", + "prefixLen":25, + "network":"194.14.32.128\/25", + "version":62340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.33.0", + "prefixLen":25, + "network":"194.14.33.0\/25", + "version":62339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.33.0", + "prefixLen":25, + "network":"194.14.33.0\/25", + "version":62339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.33.128", + "prefixLen":25, + "network":"194.14.33.128\/25", + "version":62338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.33.128", + "prefixLen":25, + "network":"194.14.33.128\/25", + "version":62338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.34.0", + "prefixLen":25, + "network":"194.14.34.0\/25", + "version":62337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.34.0", + "prefixLen":25, + "network":"194.14.34.0\/25", + "version":62337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.34.128", + "prefixLen":25, + "network":"194.14.34.128\/25", + "version":62336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.34.128", + "prefixLen":25, + "network":"194.14.34.128\/25", + "version":62336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.35.0", + "prefixLen":25, + "network":"194.14.35.0\/25", + "version":62335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.35.0", + "prefixLen":25, + "network":"194.14.35.0\/25", + "version":62335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.35.128", + "prefixLen":25, + "network":"194.14.35.128\/25", + "version":62334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.35.128", + "prefixLen":25, + "network":"194.14.35.128\/25", + "version":62334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.48.0", + "prefixLen":25, + "network":"194.14.48.0\/25", + "version":62333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.48.0", + "prefixLen":25, + "network":"194.14.48.0\/25", + "version":62333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.48.128", + "prefixLen":25, + "network":"194.14.48.128\/25", + "version":62332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.48.128", + "prefixLen":25, + "network":"194.14.48.128\/25", + "version":62332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.49.0", + "prefixLen":25, + "network":"194.14.49.0\/25", + "version":62331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.49.0", + "prefixLen":25, + "network":"194.14.49.0\/25", + "version":62331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.49.128", + "prefixLen":25, + "network":"194.14.49.128\/25", + "version":62330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.49.128", + "prefixLen":25, + "network":"194.14.49.128\/25", + "version":62330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.50.0", + "prefixLen":25, + "network":"194.14.50.0\/25", + "version":62329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.50.0", + "prefixLen":25, + "network":"194.14.50.0\/25", + "version":62329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.50.128", + "prefixLen":25, + "network":"194.14.50.128\/25", + "version":62328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.50.128", + "prefixLen":25, + "network":"194.14.50.128\/25", + "version":62328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.51.0", + "prefixLen":25, + "network":"194.14.51.0\/25", + "version":62327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.51.0", + "prefixLen":25, + "network":"194.14.51.0\/25", + "version":62327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.51.128", + "prefixLen":25, + "network":"194.14.51.128\/25", + "version":62326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.51.128", + "prefixLen":25, + "network":"194.14.51.128\/25", + "version":62326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.64.0", + "prefixLen":25, + "network":"194.14.64.0\/25", + "version":62325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.64.0", + "prefixLen":25, + "network":"194.14.64.0\/25", + "version":62325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.64.128", + "prefixLen":25, + "network":"194.14.64.128\/25", + "version":62324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.64.128", + "prefixLen":25, + "network":"194.14.64.128\/25", + "version":62324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.65.0", + "prefixLen":25, + "network":"194.14.65.0\/25", + "version":62323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.65.0", + "prefixLen":25, + "network":"194.14.65.0\/25", + "version":62323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.65.128", + "prefixLen":25, + "network":"194.14.65.128\/25", + "version":62322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.65.128", + "prefixLen":25, + "network":"194.14.65.128\/25", + "version":62322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.66.0", + "prefixLen":25, + "network":"194.14.66.0\/25", + "version":62321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.66.0", + "prefixLen":25, + "network":"194.14.66.0\/25", + "version":62321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.66.128", + "prefixLen":25, + "network":"194.14.66.128\/25", + "version":62320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.66.128", + "prefixLen":25, + "network":"194.14.66.128\/25", + "version":62320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.67.0", + "prefixLen":25, + "network":"194.14.67.0\/25", + "version":62319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.67.0", + "prefixLen":25, + "network":"194.14.67.0\/25", + "version":62319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.67.128", + "prefixLen":25, + "network":"194.14.67.128\/25", + "version":62318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.67.128", + "prefixLen":25, + "network":"194.14.67.128\/25", + "version":62318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.80.0", + "prefixLen":25, + "network":"194.14.80.0\/25", + "version":62317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.80.0", + "prefixLen":25, + "network":"194.14.80.0\/25", + "version":62317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.80.128", + "prefixLen":25, + "network":"194.14.80.128\/25", + "version":62316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.80.128", + "prefixLen":25, + "network":"194.14.80.128\/25", + "version":62316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.81.0", + "prefixLen":25, + "network":"194.14.81.0\/25", + "version":62315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.81.0", + "prefixLen":25, + "network":"194.14.81.0\/25", + "version":62315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.81.128", + "prefixLen":25, + "network":"194.14.81.128\/25", + "version":62314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.81.128", + "prefixLen":25, + "network":"194.14.81.128\/25", + "version":62314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.82.0", + "prefixLen":25, + "network":"194.14.82.0\/25", + "version":62313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.82.0", + "prefixLen":25, + "network":"194.14.82.0\/25", + "version":62313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.82.128", + "prefixLen":25, + "network":"194.14.82.128\/25", + "version":62312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.82.128", + "prefixLen":25, + "network":"194.14.82.128\/25", + "version":62312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.83.0", + "prefixLen":25, + "network":"194.14.83.0\/25", + "version":62311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.83.0", + "prefixLen":25, + "network":"194.14.83.0\/25", + "version":62311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.83.128", + "prefixLen":25, + "network":"194.14.83.128\/25", + "version":62310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.83.128", + "prefixLen":25, + "network":"194.14.83.128\/25", + "version":62310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.96.0", + "prefixLen":25, + "network":"194.14.96.0\/25", + "version":62309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.96.0", + "prefixLen":25, + "network":"194.14.96.0\/25", + "version":62309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.96.128", + "prefixLen":25, + "network":"194.14.96.128\/25", + "version":62308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.96.128", + "prefixLen":25, + "network":"194.14.96.128\/25", + "version":62308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.97.0", + "prefixLen":25, + "network":"194.14.97.0\/25", + "version":62307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.97.0", + "prefixLen":25, + "network":"194.14.97.0\/25", + "version":62307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.97.128", + "prefixLen":25, + "network":"194.14.97.128\/25", + "version":62306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.97.128", + "prefixLen":25, + "network":"194.14.97.128\/25", + "version":62306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.98.0", + "prefixLen":25, + "network":"194.14.98.0\/25", + "version":62305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.98.0", + "prefixLen":25, + "network":"194.14.98.0\/25", + "version":62305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.98.128", + "prefixLen":25, + "network":"194.14.98.128\/25", + "version":62304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.98.128", + "prefixLen":25, + "network":"194.14.98.128\/25", + "version":62304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.99.0", + "prefixLen":25, + "network":"194.14.99.0\/25", + "version":62303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.99.0", + "prefixLen":25, + "network":"194.14.99.0\/25", + "version":62303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.99.128", + "prefixLen":25, + "network":"194.14.99.128\/25", + "version":62302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.99.128", + "prefixLen":25, + "network":"194.14.99.128\/25", + "version":62302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.112.0", + "prefixLen":25, + "network":"194.14.112.0\/25", + "version":62301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.112.0", + "prefixLen":25, + "network":"194.14.112.0\/25", + "version":62301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.112.128", + "prefixLen":25, + "network":"194.14.112.128\/25", + "version":62300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.112.128", + "prefixLen":25, + "network":"194.14.112.128\/25", + "version":62300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.113.0", + "prefixLen":25, + "network":"194.14.113.0\/25", + "version":62299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.113.0", + "prefixLen":25, + "network":"194.14.113.0\/25", + "version":62299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.113.128", + "prefixLen":25, + "network":"194.14.113.128\/25", + "version":62298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.113.128", + "prefixLen":25, + "network":"194.14.113.128\/25", + "version":62298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.114.0", + "prefixLen":25, + "network":"194.14.114.0\/25", + "version":62297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.114.0", + "prefixLen":25, + "network":"194.14.114.0\/25", + "version":62297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.114.128", + "prefixLen":25, + "network":"194.14.114.128\/25", + "version":62296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.114.128", + "prefixLen":25, + "network":"194.14.114.128\/25", + "version":62296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.115.0", + "prefixLen":25, + "network":"194.14.115.0\/25", + "version":62295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.115.0", + "prefixLen":25, + "network":"194.14.115.0\/25", + "version":62295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.115.128", + "prefixLen":25, + "network":"194.14.115.128\/25", + "version":62294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.115.128", + "prefixLen":25, + "network":"194.14.115.128\/25", + "version":62294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.128.0", + "prefixLen":25, + "network":"194.14.128.0\/25", + "version":62293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.128.0", + "prefixLen":25, + "network":"194.14.128.0\/25", + "version":62293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.128.128", + "prefixLen":25, + "network":"194.14.128.128\/25", + "version":62292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.128.128", + "prefixLen":25, + "network":"194.14.128.128\/25", + "version":62292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.129.0", + "prefixLen":25, + "network":"194.14.129.0\/25", + "version":62291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.129.0", + "prefixLen":25, + "network":"194.14.129.0\/25", + "version":62291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.129.128", + "prefixLen":25, + "network":"194.14.129.128\/25", + "version":62290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.129.128", + "prefixLen":25, + "network":"194.14.129.128\/25", + "version":62290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.130.0", + "prefixLen":25, + "network":"194.14.130.0\/25", + "version":62289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.130.0", + "prefixLen":25, + "network":"194.14.130.0\/25", + "version":62289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.130.128", + "prefixLen":25, + "network":"194.14.130.128\/25", + "version":62288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.130.128", + "prefixLen":25, + "network":"194.14.130.128\/25", + "version":62288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.131.0", + "prefixLen":25, + "network":"194.14.131.0\/25", + "version":62287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.131.0", + "prefixLen":25, + "network":"194.14.131.0\/25", + "version":62287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.131.128", + "prefixLen":25, + "network":"194.14.131.128\/25", + "version":62286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.131.128", + "prefixLen":25, + "network":"194.14.131.128\/25", + "version":62286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.144.0", + "prefixLen":25, + "network":"194.14.144.0\/25", + "version":62285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.144.0", + "prefixLen":25, + "network":"194.14.144.0\/25", + "version":62285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.144.128", + "prefixLen":25, + "network":"194.14.144.128\/25", + "version":62284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.144.128", + "prefixLen":25, + "network":"194.14.144.128\/25", + "version":62284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.145.0", + "prefixLen":25, + "network":"194.14.145.0\/25", + "version":62283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.145.0", + "prefixLen":25, + "network":"194.14.145.0\/25", + "version":62283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.145.128", + "prefixLen":25, + "network":"194.14.145.128\/25", + "version":62282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.145.128", + "prefixLen":25, + "network":"194.14.145.128\/25", + "version":62282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.146.0", + "prefixLen":25, + "network":"194.14.146.0\/25", + "version":62281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.146.0", + "prefixLen":25, + "network":"194.14.146.0\/25", + "version":62281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.146.128", + "prefixLen":25, + "network":"194.14.146.128\/25", + "version":62280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.146.128", + "prefixLen":25, + "network":"194.14.146.128\/25", + "version":62280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.147.0", + "prefixLen":25, + "network":"194.14.147.0\/25", + "version":62279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.147.0", + "prefixLen":25, + "network":"194.14.147.0\/25", + "version":62279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.147.128", + "prefixLen":25, + "network":"194.14.147.128\/25", + "version":62278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.147.128", + "prefixLen":25, + "network":"194.14.147.128\/25", + "version":62278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.160.0", + "prefixLen":25, + "network":"194.14.160.0\/25", + "version":62277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.160.0", + "prefixLen":25, + "network":"194.14.160.0\/25", + "version":62277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.160.128", + "prefixLen":25, + "network":"194.14.160.128\/25", + "version":62276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.160.128", + "prefixLen":25, + "network":"194.14.160.128\/25", + "version":62276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.161.0", + "prefixLen":25, + "network":"194.14.161.0\/25", + "version":62275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.161.0", + "prefixLen":25, + "network":"194.14.161.0\/25", + "version":62275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.161.128", + "prefixLen":25, + "network":"194.14.161.128\/25", + "version":62274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.161.128", + "prefixLen":25, + "network":"194.14.161.128\/25", + "version":62274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.162.0", + "prefixLen":25, + "network":"194.14.162.0\/25", + "version":62273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.162.0", + "prefixLen":25, + "network":"194.14.162.0\/25", + "version":62273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.162.128", + "prefixLen":25, + "network":"194.14.162.128\/25", + "version":62272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.162.128", + "prefixLen":25, + "network":"194.14.162.128\/25", + "version":62272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.163.0", + "prefixLen":25, + "network":"194.14.163.0\/25", + "version":62271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.163.0", + "prefixLen":25, + "network":"194.14.163.0\/25", + "version":62271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.163.128", + "prefixLen":25, + "network":"194.14.163.128\/25", + "version":62270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.163.128", + "prefixLen":25, + "network":"194.14.163.128\/25", + "version":62270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.176.0", + "prefixLen":25, + "network":"194.14.176.0\/25", + "version":62269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.176.0", + "prefixLen":25, + "network":"194.14.176.0\/25", + "version":62269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.176.128", + "prefixLen":25, + "network":"194.14.176.128\/25", + "version":62268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.176.128", + "prefixLen":25, + "network":"194.14.176.128\/25", + "version":62268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.177.0", + "prefixLen":25, + "network":"194.14.177.0\/25", + "version":62267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.177.0", + "prefixLen":25, + "network":"194.14.177.0\/25", + "version":62267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.177.128", + "prefixLen":25, + "network":"194.14.177.128\/25", + "version":62266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.177.128", + "prefixLen":25, + "network":"194.14.177.128\/25", + "version":62266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.178.0", + "prefixLen":25, + "network":"194.14.178.0\/25", + "version":62265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.178.0", + "prefixLen":25, + "network":"194.14.178.0\/25", + "version":62265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.178.128", + "prefixLen":25, + "network":"194.14.178.128\/25", + "version":62264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.178.128", + "prefixLen":25, + "network":"194.14.178.128\/25", + "version":62264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.179.0", + "prefixLen":25, + "network":"194.14.179.0\/25", + "version":62263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.179.0", + "prefixLen":25, + "network":"194.14.179.0\/25", + "version":62263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.179.128", + "prefixLen":25, + "network":"194.14.179.128\/25", + "version":62262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.179.128", + "prefixLen":25, + "network":"194.14.179.128\/25", + "version":62262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.192.0", + "prefixLen":25, + "network":"194.14.192.0\/25", + "version":62261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.192.0", + "prefixLen":25, + "network":"194.14.192.0\/25", + "version":62261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.192.128", + "prefixLen":25, + "network":"194.14.192.128\/25", + "version":62260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.192.128", + "prefixLen":25, + "network":"194.14.192.128\/25", + "version":62260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.193.0", + "prefixLen":25, + "network":"194.14.193.0\/25", + "version":62259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.193.0", + "prefixLen":25, + "network":"194.14.193.0\/25", + "version":62259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.193.128", + "prefixLen":25, + "network":"194.14.193.128\/25", + "version":62258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.193.128", + "prefixLen":25, + "network":"194.14.193.128\/25", + "version":62258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.194.0", + "prefixLen":25, + "network":"194.14.194.0\/25", + "version":62257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.194.0", + "prefixLen":25, + "network":"194.14.194.0\/25", + "version":62257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.194.128", + "prefixLen":25, + "network":"194.14.194.128\/25", + "version":62256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.194.128", + "prefixLen":25, + "network":"194.14.194.128\/25", + "version":62256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.195.0", + "prefixLen":25, + "network":"194.14.195.0\/25", + "version":62255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.195.0", + "prefixLen":25, + "network":"194.14.195.0\/25", + "version":62255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.195.128", + "prefixLen":25, + "network":"194.14.195.128\/25", + "version":62254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.195.128", + "prefixLen":25, + "network":"194.14.195.128\/25", + "version":62254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.208.0", + "prefixLen":25, + "network":"194.14.208.0\/25", + "version":62253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.208.0", + "prefixLen":25, + "network":"194.14.208.0\/25", + "version":62253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.208.128", + "prefixLen":25, + "network":"194.14.208.128\/25", + "version":62252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.208.128", + "prefixLen":25, + "network":"194.14.208.128\/25", + "version":62252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.209.0", + "prefixLen":25, + "network":"194.14.209.0\/25", + "version":62251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.209.0", + "prefixLen":25, + "network":"194.14.209.0\/25", + "version":62251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.209.128", + "prefixLen":25, + "network":"194.14.209.128\/25", + "version":62250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.209.128", + "prefixLen":25, + "network":"194.14.209.128\/25", + "version":62250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.210.0", + "prefixLen":25, + "network":"194.14.210.0\/25", + "version":62249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.210.0", + "prefixLen":25, + "network":"194.14.210.0\/25", + "version":62249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.210.128", + "prefixLen":25, + "network":"194.14.210.128\/25", + "version":62248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.210.128", + "prefixLen":25, + "network":"194.14.210.128\/25", + "version":62248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.211.0", + "prefixLen":25, + "network":"194.14.211.0\/25", + "version":62247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.211.0", + "prefixLen":25, + "network":"194.14.211.0\/25", + "version":62247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.211.128", + "prefixLen":25, + "network":"194.14.211.128\/25", + "version":62246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.211.128", + "prefixLen":25, + "network":"194.14.211.128\/25", + "version":62246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.224.0", + "prefixLen":25, + "network":"194.14.224.0\/25", + "version":62245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.224.0", + "prefixLen":25, + "network":"194.14.224.0\/25", + "version":62245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.224.128", + "prefixLen":25, + "network":"194.14.224.128\/25", + "version":62244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.224.128", + "prefixLen":25, + "network":"194.14.224.128\/25", + "version":62244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.225.0", + "prefixLen":25, + "network":"194.14.225.0\/25", + "version":62243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.225.0", + "prefixLen":25, + "network":"194.14.225.0\/25", + "version":62243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.225.128", + "prefixLen":25, + "network":"194.14.225.128\/25", + "version":62242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.225.128", + "prefixLen":25, + "network":"194.14.225.128\/25", + "version":62242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.226.0", + "prefixLen":25, + "network":"194.14.226.0\/25", + "version":62241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.226.0", + "prefixLen":25, + "network":"194.14.226.0\/25", + "version":62241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.226.128", + "prefixLen":25, + "network":"194.14.226.128\/25", + "version":62240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.226.128", + "prefixLen":25, + "network":"194.14.226.128\/25", + "version":62240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.227.0", + "prefixLen":25, + "network":"194.14.227.0\/25", + "version":62239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.227.0", + "prefixLen":25, + "network":"194.14.227.0\/25", + "version":62239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.227.128", + "prefixLen":25, + "network":"194.14.227.128\/25", + "version":62238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.227.128", + "prefixLen":25, + "network":"194.14.227.128\/25", + "version":62238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.240.0", + "prefixLen":25, + "network":"194.14.240.0\/25", + "version":62237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.240.0", + "prefixLen":25, + "network":"194.14.240.0\/25", + "version":62237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.240.128", + "prefixLen":25, + "network":"194.14.240.128\/25", + "version":62236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.240.128", + "prefixLen":25, + "network":"194.14.240.128\/25", + "version":62236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.241.0", + "prefixLen":25, + "network":"194.14.241.0\/25", + "version":62235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.241.0", + "prefixLen":25, + "network":"194.14.241.0\/25", + "version":62235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.241.128", + "prefixLen":25, + "network":"194.14.241.128\/25", + "version":62234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.241.128", + "prefixLen":25, + "network":"194.14.241.128\/25", + "version":62234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.242.0", + "prefixLen":25, + "network":"194.14.242.0\/25", + "version":62233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.242.0", + "prefixLen":25, + "network":"194.14.242.0\/25", + "version":62233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.242.128", + "prefixLen":25, + "network":"194.14.242.128\/25", + "version":62232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.242.128", + "prefixLen":25, + "network":"194.14.242.128\/25", + "version":62232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.243.0", + "prefixLen":25, + "network":"194.14.243.0\/25", + "version":62231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.243.0", + "prefixLen":25, + "network":"194.14.243.0\/25", + "version":62231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.14.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.14.243.128", + "prefixLen":25, + "network":"194.14.243.128\/25", + "version":62230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.14.243.128", + "prefixLen":25, + "network":"194.14.243.128\/25", + "version":62230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64958 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.0.0", + "prefixLen":25, + "network":"194.15.0.0\/25", + "version":62357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.0.0", + "prefixLen":25, + "network":"194.15.0.0\/25", + "version":62357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.0.128", + "prefixLen":25, + "network":"194.15.0.128\/25", + "version":62484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.0.128", + "prefixLen":25, + "network":"194.15.0.128\/25", + "version":62484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.1.0", + "prefixLen":25, + "network":"194.15.1.0\/25", + "version":62483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.1.0", + "prefixLen":25, + "network":"194.15.1.0\/25", + "version":62483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.1.128", + "prefixLen":25, + "network":"194.15.1.128\/25", + "version":62482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.1.128", + "prefixLen":25, + "network":"194.15.1.128\/25", + "version":62482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.2.0", + "prefixLen":25, + "network":"194.15.2.0\/25", + "version":62481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.2.0", + "prefixLen":25, + "network":"194.15.2.0\/25", + "version":62481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.2.128", + "prefixLen":25, + "network":"194.15.2.128\/25", + "version":62480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.2.128", + "prefixLen":25, + "network":"194.15.2.128\/25", + "version":62480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.3.0", + "prefixLen":25, + "network":"194.15.3.0\/25", + "version":62479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.3.0", + "prefixLen":25, + "network":"194.15.3.0\/25", + "version":62479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.3.128", + "prefixLen":25, + "network":"194.15.3.128\/25", + "version":62478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.3.128", + "prefixLen":25, + "network":"194.15.3.128\/25", + "version":62478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.16.0", + "prefixLen":25, + "network":"194.15.16.0\/25", + "version":62477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.16.0", + "prefixLen":25, + "network":"194.15.16.0\/25", + "version":62477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.16.128", + "prefixLen":25, + "network":"194.15.16.128\/25", + "version":62476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.16.128", + "prefixLen":25, + "network":"194.15.16.128\/25", + "version":62476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.17.0", + "prefixLen":25, + "network":"194.15.17.0\/25", + "version":62475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.17.0", + "prefixLen":25, + "network":"194.15.17.0\/25", + "version":62475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.17.128", + "prefixLen":25, + "network":"194.15.17.128\/25", + "version":62474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.17.128", + "prefixLen":25, + "network":"194.15.17.128\/25", + "version":62474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.18.0", + "prefixLen":25, + "network":"194.15.18.0\/25", + "version":62473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.18.0", + "prefixLen":25, + "network":"194.15.18.0\/25", + "version":62473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.18.128", + "prefixLen":25, + "network":"194.15.18.128\/25", + "version":62472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.18.128", + "prefixLen":25, + "network":"194.15.18.128\/25", + "version":62472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.19.0", + "prefixLen":25, + "network":"194.15.19.0\/25", + "version":62471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.19.0", + "prefixLen":25, + "network":"194.15.19.0\/25", + "version":62471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.19.128", + "prefixLen":25, + "network":"194.15.19.128\/25", + "version":62470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.19.128", + "prefixLen":25, + "network":"194.15.19.128\/25", + "version":62470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.32.0", + "prefixLen":25, + "network":"194.15.32.0\/25", + "version":62469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.32.0", + "prefixLen":25, + "network":"194.15.32.0\/25", + "version":62469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.32.128", + "prefixLen":25, + "network":"194.15.32.128\/25", + "version":62468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.32.128", + "prefixLen":25, + "network":"194.15.32.128\/25", + "version":62468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.33.0", + "prefixLen":25, + "network":"194.15.33.0\/25", + "version":62467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.33.0", + "prefixLen":25, + "network":"194.15.33.0\/25", + "version":62467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.33.128", + "prefixLen":25, + "network":"194.15.33.128\/25", + "version":62466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.33.128", + "prefixLen":25, + "network":"194.15.33.128\/25", + "version":62466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.34.0", + "prefixLen":25, + "network":"194.15.34.0\/25", + "version":62465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.34.0", + "prefixLen":25, + "network":"194.15.34.0\/25", + "version":62465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.34.128", + "prefixLen":25, + "network":"194.15.34.128\/25", + "version":62464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.34.128", + "prefixLen":25, + "network":"194.15.34.128\/25", + "version":62464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.35.0", + "prefixLen":25, + "network":"194.15.35.0\/25", + "version":62463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.35.0", + "prefixLen":25, + "network":"194.15.35.0\/25", + "version":62463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.35.128", + "prefixLen":25, + "network":"194.15.35.128\/25", + "version":62462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.35.128", + "prefixLen":25, + "network":"194.15.35.128\/25", + "version":62462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.48.0", + "prefixLen":25, + "network":"194.15.48.0\/25", + "version":62461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.48.0", + "prefixLen":25, + "network":"194.15.48.0\/25", + "version":62461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.48.128", + "prefixLen":25, + "network":"194.15.48.128\/25", + "version":62460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.48.128", + "prefixLen":25, + "network":"194.15.48.128\/25", + "version":62460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.49.0", + "prefixLen":25, + "network":"194.15.49.0\/25", + "version":62459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.49.0", + "prefixLen":25, + "network":"194.15.49.0\/25", + "version":62459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.49.128", + "prefixLen":25, + "network":"194.15.49.128\/25", + "version":62458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.49.128", + "prefixLen":25, + "network":"194.15.49.128\/25", + "version":62458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.50.0", + "prefixLen":25, + "network":"194.15.50.0\/25", + "version":62457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.50.0", + "prefixLen":25, + "network":"194.15.50.0\/25", + "version":62457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.50.128", + "prefixLen":25, + "network":"194.15.50.128\/25", + "version":62456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.50.128", + "prefixLen":25, + "network":"194.15.50.128\/25", + "version":62456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.51.0", + "prefixLen":25, + "network":"194.15.51.0\/25", + "version":62455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.51.0", + "prefixLen":25, + "network":"194.15.51.0\/25", + "version":62455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.51.128", + "prefixLen":25, + "network":"194.15.51.128\/25", + "version":62454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.51.128", + "prefixLen":25, + "network":"194.15.51.128\/25", + "version":62454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.64.0", + "prefixLen":25, + "network":"194.15.64.0\/25", + "version":62453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.64.0", + "prefixLen":25, + "network":"194.15.64.0\/25", + "version":62453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.64.128", + "prefixLen":25, + "network":"194.15.64.128\/25", + "version":62452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.64.128", + "prefixLen":25, + "network":"194.15.64.128\/25", + "version":62452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.65.0", + "prefixLen":25, + "network":"194.15.65.0\/25", + "version":62451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.65.0", + "prefixLen":25, + "network":"194.15.65.0\/25", + "version":62451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.65.128", + "prefixLen":25, + "network":"194.15.65.128\/25", + "version":62450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.65.128", + "prefixLen":25, + "network":"194.15.65.128\/25", + "version":62450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.66.0", + "prefixLen":25, + "network":"194.15.66.0\/25", + "version":62449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.66.0", + "prefixLen":25, + "network":"194.15.66.0\/25", + "version":62449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.66.128", + "prefixLen":25, + "network":"194.15.66.128\/25", + "version":62448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.66.128", + "prefixLen":25, + "network":"194.15.66.128\/25", + "version":62448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.67.0", + "prefixLen":25, + "network":"194.15.67.0\/25", + "version":62447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.67.0", + "prefixLen":25, + "network":"194.15.67.0\/25", + "version":62447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.67.128", + "prefixLen":25, + "network":"194.15.67.128\/25", + "version":62446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.67.128", + "prefixLen":25, + "network":"194.15.67.128\/25", + "version":62446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.80.0", + "prefixLen":25, + "network":"194.15.80.0\/25", + "version":62445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.80.0", + "prefixLen":25, + "network":"194.15.80.0\/25", + "version":62445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.80.128", + "prefixLen":25, + "network":"194.15.80.128\/25", + "version":62444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.80.128", + "prefixLen":25, + "network":"194.15.80.128\/25", + "version":62444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.81.0", + "prefixLen":25, + "network":"194.15.81.0\/25", + "version":62443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.81.0", + "prefixLen":25, + "network":"194.15.81.0\/25", + "version":62443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.81.128", + "prefixLen":25, + "network":"194.15.81.128\/25", + "version":62442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.81.128", + "prefixLen":25, + "network":"194.15.81.128\/25", + "version":62442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.82.0", + "prefixLen":25, + "network":"194.15.82.0\/25", + "version":62441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.82.0", + "prefixLen":25, + "network":"194.15.82.0\/25", + "version":62441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.82.128", + "prefixLen":25, + "network":"194.15.82.128\/25", + "version":62440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.82.128", + "prefixLen":25, + "network":"194.15.82.128\/25", + "version":62440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.83.0", + "prefixLen":25, + "network":"194.15.83.0\/25", + "version":62439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.83.0", + "prefixLen":25, + "network":"194.15.83.0\/25", + "version":62439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.83.128", + "prefixLen":25, + "network":"194.15.83.128\/25", + "version":62438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.83.128", + "prefixLen":25, + "network":"194.15.83.128\/25", + "version":62438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.96.0", + "prefixLen":25, + "network":"194.15.96.0\/25", + "version":62437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.96.0", + "prefixLen":25, + "network":"194.15.96.0\/25", + "version":62437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.96.128", + "prefixLen":25, + "network":"194.15.96.128\/25", + "version":62436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.96.128", + "prefixLen":25, + "network":"194.15.96.128\/25", + "version":62436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.97.0", + "prefixLen":25, + "network":"194.15.97.0\/25", + "version":62435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.97.0", + "prefixLen":25, + "network":"194.15.97.0\/25", + "version":62435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.97.128", + "prefixLen":25, + "network":"194.15.97.128\/25", + "version":62434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.97.128", + "prefixLen":25, + "network":"194.15.97.128\/25", + "version":62434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.98.0", + "prefixLen":25, + "network":"194.15.98.0\/25", + "version":62433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.98.0", + "prefixLen":25, + "network":"194.15.98.0\/25", + "version":62433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.98.128", + "prefixLen":25, + "network":"194.15.98.128\/25", + "version":62432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.98.128", + "prefixLen":25, + "network":"194.15.98.128\/25", + "version":62432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.99.0", + "prefixLen":25, + "network":"194.15.99.0\/25", + "version":62431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.99.0", + "prefixLen":25, + "network":"194.15.99.0\/25", + "version":62431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.99.128", + "prefixLen":25, + "network":"194.15.99.128\/25", + "version":62430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.99.128", + "prefixLen":25, + "network":"194.15.99.128\/25", + "version":62430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.112.0", + "prefixLen":25, + "network":"194.15.112.0\/25", + "version":62429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.112.0", + "prefixLen":25, + "network":"194.15.112.0\/25", + "version":62429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.112.128", + "prefixLen":25, + "network":"194.15.112.128\/25", + "version":62428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.112.128", + "prefixLen":25, + "network":"194.15.112.128\/25", + "version":62428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.113.0", + "prefixLen":25, + "network":"194.15.113.0\/25", + "version":62427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.113.0", + "prefixLen":25, + "network":"194.15.113.0\/25", + "version":62427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.113.128", + "prefixLen":25, + "network":"194.15.113.128\/25", + "version":62426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.113.128", + "prefixLen":25, + "network":"194.15.113.128\/25", + "version":62426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.114.0", + "prefixLen":25, + "network":"194.15.114.0\/25", + "version":62425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.114.0", + "prefixLen":25, + "network":"194.15.114.0\/25", + "version":62425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.114.128", + "prefixLen":25, + "network":"194.15.114.128\/25", + "version":62424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.114.128", + "prefixLen":25, + "network":"194.15.114.128\/25", + "version":62424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.115.0", + "prefixLen":25, + "network":"194.15.115.0\/25", + "version":62423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.115.0", + "prefixLen":25, + "network":"194.15.115.0\/25", + "version":62423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.115.128", + "prefixLen":25, + "network":"194.15.115.128\/25", + "version":62422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.115.128", + "prefixLen":25, + "network":"194.15.115.128\/25", + "version":62422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.128.0", + "prefixLen":25, + "network":"194.15.128.0\/25", + "version":62421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.128.0", + "prefixLen":25, + "network":"194.15.128.0\/25", + "version":62421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.128.128", + "prefixLen":25, + "network":"194.15.128.128\/25", + "version":62420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.128.128", + "prefixLen":25, + "network":"194.15.128.128\/25", + "version":62420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.129.0", + "prefixLen":25, + "network":"194.15.129.0\/25", + "version":62419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.129.0", + "prefixLen":25, + "network":"194.15.129.0\/25", + "version":62419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.129.128", + "prefixLen":25, + "network":"194.15.129.128\/25", + "version":62418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.129.128", + "prefixLen":25, + "network":"194.15.129.128\/25", + "version":62418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.130.0", + "prefixLen":25, + "network":"194.15.130.0\/25", + "version":62417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.130.0", + "prefixLen":25, + "network":"194.15.130.0\/25", + "version":62417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.130.128", + "prefixLen":25, + "network":"194.15.130.128\/25", + "version":62416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.130.128", + "prefixLen":25, + "network":"194.15.130.128\/25", + "version":62416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.131.0", + "prefixLen":25, + "network":"194.15.131.0\/25", + "version":62415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.131.0", + "prefixLen":25, + "network":"194.15.131.0\/25", + "version":62415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.131.128", + "prefixLen":25, + "network":"194.15.131.128\/25", + "version":62414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.131.128", + "prefixLen":25, + "network":"194.15.131.128\/25", + "version":62414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.144.0", + "prefixLen":25, + "network":"194.15.144.0\/25", + "version":62413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.144.0", + "prefixLen":25, + "network":"194.15.144.0\/25", + "version":62413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.144.128", + "prefixLen":25, + "network":"194.15.144.128\/25", + "version":62412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.144.128", + "prefixLen":25, + "network":"194.15.144.128\/25", + "version":62412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.145.0", + "prefixLen":25, + "network":"194.15.145.0\/25", + "version":62411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.145.0", + "prefixLen":25, + "network":"194.15.145.0\/25", + "version":62411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.145.128", + "prefixLen":25, + "network":"194.15.145.128\/25", + "version":62410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.145.128", + "prefixLen":25, + "network":"194.15.145.128\/25", + "version":62410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.146.0", + "prefixLen":25, + "network":"194.15.146.0\/25", + "version":62409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.146.0", + "prefixLen":25, + "network":"194.15.146.0\/25", + "version":62409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.146.128", + "prefixLen":25, + "network":"194.15.146.128\/25", + "version":62408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.146.128", + "prefixLen":25, + "network":"194.15.146.128\/25", + "version":62408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.147.0", + "prefixLen":25, + "network":"194.15.147.0\/25", + "version":62407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.147.0", + "prefixLen":25, + "network":"194.15.147.0\/25", + "version":62407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.147.128", + "prefixLen":25, + "network":"194.15.147.128\/25", + "version":62406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.147.128", + "prefixLen":25, + "network":"194.15.147.128\/25", + "version":62406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.160.0", + "prefixLen":25, + "network":"194.15.160.0\/25", + "version":62405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.160.0", + "prefixLen":25, + "network":"194.15.160.0\/25", + "version":62405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.160.128", + "prefixLen":25, + "network":"194.15.160.128\/25", + "version":62404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.160.128", + "prefixLen":25, + "network":"194.15.160.128\/25", + "version":62404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.161.0", + "prefixLen":25, + "network":"194.15.161.0\/25", + "version":62403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.161.0", + "prefixLen":25, + "network":"194.15.161.0\/25", + "version":62403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.161.128", + "prefixLen":25, + "network":"194.15.161.128\/25", + "version":62402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.161.128", + "prefixLen":25, + "network":"194.15.161.128\/25", + "version":62402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.162.0", + "prefixLen":25, + "network":"194.15.162.0\/25", + "version":62401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.162.0", + "prefixLen":25, + "network":"194.15.162.0\/25", + "version":62401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.162.128", + "prefixLen":25, + "network":"194.15.162.128\/25", + "version":62400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.162.128", + "prefixLen":25, + "network":"194.15.162.128\/25", + "version":62400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.163.0", + "prefixLen":25, + "network":"194.15.163.0\/25", + "version":62399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.163.0", + "prefixLen":25, + "network":"194.15.163.0\/25", + "version":62399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.163.128", + "prefixLen":25, + "network":"194.15.163.128\/25", + "version":62398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.163.128", + "prefixLen":25, + "network":"194.15.163.128\/25", + "version":62398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.176.0", + "prefixLen":25, + "network":"194.15.176.0\/25", + "version":62397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.176.0", + "prefixLen":25, + "network":"194.15.176.0\/25", + "version":62397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.176.128", + "prefixLen":25, + "network":"194.15.176.128\/25", + "version":62396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.176.128", + "prefixLen":25, + "network":"194.15.176.128\/25", + "version":62396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.177.0", + "prefixLen":25, + "network":"194.15.177.0\/25", + "version":62395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.177.0", + "prefixLen":25, + "network":"194.15.177.0\/25", + "version":62395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.177.128", + "prefixLen":25, + "network":"194.15.177.128\/25", + "version":62394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.177.128", + "prefixLen":25, + "network":"194.15.177.128\/25", + "version":62394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.178.0", + "prefixLen":25, + "network":"194.15.178.0\/25", + "version":62393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.178.0", + "prefixLen":25, + "network":"194.15.178.0\/25", + "version":62393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.178.128", + "prefixLen":25, + "network":"194.15.178.128\/25", + "version":62392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.178.128", + "prefixLen":25, + "network":"194.15.178.128\/25", + "version":62392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.179.0", + "prefixLen":25, + "network":"194.15.179.0\/25", + "version":62391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.179.0", + "prefixLen":25, + "network":"194.15.179.0\/25", + "version":62391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.179.128", + "prefixLen":25, + "network":"194.15.179.128\/25", + "version":62390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.179.128", + "prefixLen":25, + "network":"194.15.179.128\/25", + "version":62390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.192.0", + "prefixLen":25, + "network":"194.15.192.0\/25", + "version":62389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.192.0", + "prefixLen":25, + "network":"194.15.192.0\/25", + "version":62389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.192.128", + "prefixLen":25, + "network":"194.15.192.128\/25", + "version":62388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.192.128", + "prefixLen":25, + "network":"194.15.192.128\/25", + "version":62388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.193.0", + "prefixLen":25, + "network":"194.15.193.0\/25", + "version":62387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.193.0", + "prefixLen":25, + "network":"194.15.193.0\/25", + "version":62387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.193.128", + "prefixLen":25, + "network":"194.15.193.128\/25", + "version":62386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.193.128", + "prefixLen":25, + "network":"194.15.193.128\/25", + "version":62386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.194.0", + "prefixLen":25, + "network":"194.15.194.0\/25", + "version":62385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.194.0", + "prefixLen":25, + "network":"194.15.194.0\/25", + "version":62385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.194.128", + "prefixLen":25, + "network":"194.15.194.128\/25", + "version":62384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.194.128", + "prefixLen":25, + "network":"194.15.194.128\/25", + "version":62384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.195.0", + "prefixLen":25, + "network":"194.15.195.0\/25", + "version":62383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.195.0", + "prefixLen":25, + "network":"194.15.195.0\/25", + "version":62383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.195.128", + "prefixLen":25, + "network":"194.15.195.128\/25", + "version":62382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.195.128", + "prefixLen":25, + "network":"194.15.195.128\/25", + "version":62382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.208.0", + "prefixLen":25, + "network":"194.15.208.0\/25", + "version":62381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.208.0", + "prefixLen":25, + "network":"194.15.208.0\/25", + "version":62381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.208.128", + "prefixLen":25, + "network":"194.15.208.128\/25", + "version":62380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.208.128", + "prefixLen":25, + "network":"194.15.208.128\/25", + "version":62380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.209.0", + "prefixLen":25, + "network":"194.15.209.0\/25", + "version":62379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.209.0", + "prefixLen":25, + "network":"194.15.209.0\/25", + "version":62379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.209.128", + "prefixLen":25, + "network":"194.15.209.128\/25", + "version":62378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.209.128", + "prefixLen":25, + "network":"194.15.209.128\/25", + "version":62378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.210.0", + "prefixLen":25, + "network":"194.15.210.0\/25", + "version":62377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.210.0", + "prefixLen":25, + "network":"194.15.210.0\/25", + "version":62377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.210.128", + "prefixLen":25, + "network":"194.15.210.128\/25", + "version":62376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.210.128", + "prefixLen":25, + "network":"194.15.210.128\/25", + "version":62376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.211.0", + "prefixLen":25, + "network":"194.15.211.0\/25", + "version":62375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.211.0", + "prefixLen":25, + "network":"194.15.211.0\/25", + "version":62375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.211.128", + "prefixLen":25, + "network":"194.15.211.128\/25", + "version":62374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.211.128", + "prefixLen":25, + "network":"194.15.211.128\/25", + "version":62374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.224.0", + "prefixLen":25, + "network":"194.15.224.0\/25", + "version":62373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.224.0", + "prefixLen":25, + "network":"194.15.224.0\/25", + "version":62373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.224.128", + "prefixLen":25, + "network":"194.15.224.128\/25", + "version":62372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.224.128", + "prefixLen":25, + "network":"194.15.224.128\/25", + "version":62372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.225.0", + "prefixLen":25, + "network":"194.15.225.0\/25", + "version":62371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.225.0", + "prefixLen":25, + "network":"194.15.225.0\/25", + "version":62371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.225.128", + "prefixLen":25, + "network":"194.15.225.128\/25", + "version":62370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.225.128", + "prefixLen":25, + "network":"194.15.225.128\/25", + "version":62370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.226.0", + "prefixLen":25, + "network":"194.15.226.0\/25", + "version":62369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.226.0", + "prefixLen":25, + "network":"194.15.226.0\/25", + "version":62369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.226.128", + "prefixLen":25, + "network":"194.15.226.128\/25", + "version":62368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.226.128", + "prefixLen":25, + "network":"194.15.226.128\/25", + "version":62368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.227.0", + "prefixLen":25, + "network":"194.15.227.0\/25", + "version":62367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.227.0", + "prefixLen":25, + "network":"194.15.227.0\/25", + "version":62367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.227.128", + "prefixLen":25, + "network":"194.15.227.128\/25", + "version":62366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.227.128", + "prefixLen":25, + "network":"194.15.227.128\/25", + "version":62366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.240.0", + "prefixLen":25, + "network":"194.15.240.0\/25", + "version":62365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.240.0", + "prefixLen":25, + "network":"194.15.240.0\/25", + "version":62365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.240.128", + "prefixLen":25, + "network":"194.15.240.128\/25", + "version":62364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.240.128", + "prefixLen":25, + "network":"194.15.240.128\/25", + "version":62364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.241.0", + "prefixLen":25, + "network":"194.15.241.0\/25", + "version":62363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.241.0", + "prefixLen":25, + "network":"194.15.241.0\/25", + "version":62363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.241.128", + "prefixLen":25, + "network":"194.15.241.128\/25", + "version":62362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.241.128", + "prefixLen":25, + "network":"194.15.241.128\/25", + "version":62362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.242.0", + "prefixLen":25, + "network":"194.15.242.0\/25", + "version":62361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.242.0", + "prefixLen":25, + "network":"194.15.242.0\/25", + "version":62361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.242.128", + "prefixLen":25, + "network":"194.15.242.128\/25", + "version":62360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.242.128", + "prefixLen":25, + "network":"194.15.242.128\/25", + "version":62360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.243.0", + "prefixLen":25, + "network":"194.15.243.0\/25", + "version":62359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.243.0", + "prefixLen":25, + "network":"194.15.243.0\/25", + "version":62359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.15.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.15.243.128", + "prefixLen":25, + "network":"194.15.243.128\/25", + "version":62358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.15.243.128", + "prefixLen":25, + "network":"194.15.243.128\/25", + "version":62358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64959 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.0.0", + "prefixLen":25, + "network":"194.16.0.0\/25", + "version":62485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.0.0", + "prefixLen":25, + "network":"194.16.0.0\/25", + "version":62485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.0.128", + "prefixLen":25, + "network":"194.16.0.128\/25", + "version":62612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.0.128", + "prefixLen":25, + "network":"194.16.0.128\/25", + "version":62612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.1.0", + "prefixLen":25, + "network":"194.16.1.0\/25", + "version":62611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.1.0", + "prefixLen":25, + "network":"194.16.1.0\/25", + "version":62611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.1.128", + "prefixLen":25, + "network":"194.16.1.128\/25", + "version":62610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.1.128", + "prefixLen":25, + "network":"194.16.1.128\/25", + "version":62610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.2.0", + "prefixLen":25, + "network":"194.16.2.0\/25", + "version":62609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.2.0", + "prefixLen":25, + "network":"194.16.2.0\/25", + "version":62609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.2.128", + "prefixLen":25, + "network":"194.16.2.128\/25", + "version":62608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.2.128", + "prefixLen":25, + "network":"194.16.2.128\/25", + "version":62608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.3.0", + "prefixLen":25, + "network":"194.16.3.0\/25", + "version":62607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.3.0", + "prefixLen":25, + "network":"194.16.3.0\/25", + "version":62607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.3.128", + "prefixLen":25, + "network":"194.16.3.128\/25", + "version":62606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.3.128", + "prefixLen":25, + "network":"194.16.3.128\/25", + "version":62606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.16.0", + "prefixLen":25, + "network":"194.16.16.0\/25", + "version":62605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.16.0", + "prefixLen":25, + "network":"194.16.16.0\/25", + "version":62605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.16.128", + "prefixLen":25, + "network":"194.16.16.128\/25", + "version":62604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.16.128", + "prefixLen":25, + "network":"194.16.16.128\/25", + "version":62604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.17.0", + "prefixLen":25, + "network":"194.16.17.0\/25", + "version":62603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.17.0", + "prefixLen":25, + "network":"194.16.17.0\/25", + "version":62603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.17.128", + "prefixLen":25, + "network":"194.16.17.128\/25", + "version":62602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.17.128", + "prefixLen":25, + "network":"194.16.17.128\/25", + "version":62602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.18.0", + "prefixLen":25, + "network":"194.16.18.0\/25", + "version":62601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.18.0", + "prefixLen":25, + "network":"194.16.18.0\/25", + "version":62601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.18.128", + "prefixLen":25, + "network":"194.16.18.128\/25", + "version":62600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.18.128", + "prefixLen":25, + "network":"194.16.18.128\/25", + "version":62600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.19.0", + "prefixLen":25, + "network":"194.16.19.0\/25", + "version":62599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.19.0", + "prefixLen":25, + "network":"194.16.19.0\/25", + "version":62599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.19.128", + "prefixLen":25, + "network":"194.16.19.128\/25", + "version":62598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.19.128", + "prefixLen":25, + "network":"194.16.19.128\/25", + "version":62598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.32.0", + "prefixLen":25, + "network":"194.16.32.0\/25", + "version":62597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.32.0", + "prefixLen":25, + "network":"194.16.32.0\/25", + "version":62597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.32.128", + "prefixLen":25, + "network":"194.16.32.128\/25", + "version":62596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.32.128", + "prefixLen":25, + "network":"194.16.32.128\/25", + "version":62596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.33.0", + "prefixLen":25, + "network":"194.16.33.0\/25", + "version":62595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.33.0", + "prefixLen":25, + "network":"194.16.33.0\/25", + "version":62595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.33.128", + "prefixLen":25, + "network":"194.16.33.128\/25", + "version":62594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.33.128", + "prefixLen":25, + "network":"194.16.33.128\/25", + "version":62594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.34.0", + "prefixLen":25, + "network":"194.16.34.0\/25", + "version":62593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.34.0", + "prefixLen":25, + "network":"194.16.34.0\/25", + "version":62593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.34.128", + "prefixLen":25, + "network":"194.16.34.128\/25", + "version":62592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.34.128", + "prefixLen":25, + "network":"194.16.34.128\/25", + "version":62592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.35.0", + "prefixLen":25, + "network":"194.16.35.0\/25", + "version":62591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.35.0", + "prefixLen":25, + "network":"194.16.35.0\/25", + "version":62591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.35.128", + "prefixLen":25, + "network":"194.16.35.128\/25", + "version":62590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.35.128", + "prefixLen":25, + "network":"194.16.35.128\/25", + "version":62590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.48.0", + "prefixLen":25, + "network":"194.16.48.0\/25", + "version":62589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.48.0", + "prefixLen":25, + "network":"194.16.48.0\/25", + "version":62589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.48.128", + "prefixLen":25, + "network":"194.16.48.128\/25", + "version":62588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.48.128", + "prefixLen":25, + "network":"194.16.48.128\/25", + "version":62588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.49.0", + "prefixLen":25, + "network":"194.16.49.0\/25", + "version":62587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.49.0", + "prefixLen":25, + "network":"194.16.49.0\/25", + "version":62587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.49.128", + "prefixLen":25, + "network":"194.16.49.128\/25", + "version":62586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.49.128", + "prefixLen":25, + "network":"194.16.49.128\/25", + "version":62586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.50.0", + "prefixLen":25, + "network":"194.16.50.0\/25", + "version":62585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.50.0", + "prefixLen":25, + "network":"194.16.50.0\/25", + "version":62585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.50.128", + "prefixLen":25, + "network":"194.16.50.128\/25", + "version":62584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.50.128", + "prefixLen":25, + "network":"194.16.50.128\/25", + "version":62584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.51.0", + "prefixLen":25, + "network":"194.16.51.0\/25", + "version":62583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.51.0", + "prefixLen":25, + "network":"194.16.51.0\/25", + "version":62583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.51.128", + "prefixLen":25, + "network":"194.16.51.128\/25", + "version":62582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.51.128", + "prefixLen":25, + "network":"194.16.51.128\/25", + "version":62582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.64.0", + "prefixLen":25, + "network":"194.16.64.0\/25", + "version":62581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.64.0", + "prefixLen":25, + "network":"194.16.64.0\/25", + "version":62581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.64.128", + "prefixLen":25, + "network":"194.16.64.128\/25", + "version":62580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.64.128", + "prefixLen":25, + "network":"194.16.64.128\/25", + "version":62580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.65.0", + "prefixLen":25, + "network":"194.16.65.0\/25", + "version":62579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.65.0", + "prefixLen":25, + "network":"194.16.65.0\/25", + "version":62579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.65.128", + "prefixLen":25, + "network":"194.16.65.128\/25", + "version":62578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.65.128", + "prefixLen":25, + "network":"194.16.65.128\/25", + "version":62578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.66.0", + "prefixLen":25, + "network":"194.16.66.0\/25", + "version":62577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.66.0", + "prefixLen":25, + "network":"194.16.66.0\/25", + "version":62577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.66.128", + "prefixLen":25, + "network":"194.16.66.128\/25", + "version":62576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.66.128", + "prefixLen":25, + "network":"194.16.66.128\/25", + "version":62576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.67.0", + "prefixLen":25, + "network":"194.16.67.0\/25", + "version":62575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.67.0", + "prefixLen":25, + "network":"194.16.67.0\/25", + "version":62575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.67.128", + "prefixLen":25, + "network":"194.16.67.128\/25", + "version":62574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.67.128", + "prefixLen":25, + "network":"194.16.67.128\/25", + "version":62574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.80.0", + "prefixLen":25, + "network":"194.16.80.0\/25", + "version":62573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.80.0", + "prefixLen":25, + "network":"194.16.80.0\/25", + "version":62573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.80.128", + "prefixLen":25, + "network":"194.16.80.128\/25", + "version":62572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.80.128", + "prefixLen":25, + "network":"194.16.80.128\/25", + "version":62572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.81.0", + "prefixLen":25, + "network":"194.16.81.0\/25", + "version":62571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.81.0", + "prefixLen":25, + "network":"194.16.81.0\/25", + "version":62571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.81.128", + "prefixLen":25, + "network":"194.16.81.128\/25", + "version":62570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.81.128", + "prefixLen":25, + "network":"194.16.81.128\/25", + "version":62570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.82.0", + "prefixLen":25, + "network":"194.16.82.0\/25", + "version":62569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.82.0", + "prefixLen":25, + "network":"194.16.82.0\/25", + "version":62569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.82.128", + "prefixLen":25, + "network":"194.16.82.128\/25", + "version":62568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.82.128", + "prefixLen":25, + "network":"194.16.82.128\/25", + "version":62568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.83.0", + "prefixLen":25, + "network":"194.16.83.0\/25", + "version":62567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.83.0", + "prefixLen":25, + "network":"194.16.83.0\/25", + "version":62567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.83.128", + "prefixLen":25, + "network":"194.16.83.128\/25", + "version":62566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.83.128", + "prefixLen":25, + "network":"194.16.83.128\/25", + "version":62566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.96.0", + "prefixLen":25, + "network":"194.16.96.0\/25", + "version":62565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.96.0", + "prefixLen":25, + "network":"194.16.96.0\/25", + "version":62565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.96.128", + "prefixLen":25, + "network":"194.16.96.128\/25", + "version":62564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.96.128", + "prefixLen":25, + "network":"194.16.96.128\/25", + "version":62564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.97.0", + "prefixLen":25, + "network":"194.16.97.0\/25", + "version":62563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.97.0", + "prefixLen":25, + "network":"194.16.97.0\/25", + "version":62563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.97.128", + "prefixLen":25, + "network":"194.16.97.128\/25", + "version":62562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.97.128", + "prefixLen":25, + "network":"194.16.97.128\/25", + "version":62562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.98.0", + "prefixLen":25, + "network":"194.16.98.0\/25", + "version":62561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.98.0", + "prefixLen":25, + "network":"194.16.98.0\/25", + "version":62561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.98.128", + "prefixLen":25, + "network":"194.16.98.128\/25", + "version":62560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.98.128", + "prefixLen":25, + "network":"194.16.98.128\/25", + "version":62560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.99.0", + "prefixLen":25, + "network":"194.16.99.0\/25", + "version":62559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.99.0", + "prefixLen":25, + "network":"194.16.99.0\/25", + "version":62559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.99.128", + "prefixLen":25, + "network":"194.16.99.128\/25", + "version":62558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.99.128", + "prefixLen":25, + "network":"194.16.99.128\/25", + "version":62558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.112.0", + "prefixLen":25, + "network":"194.16.112.0\/25", + "version":62557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.112.0", + "prefixLen":25, + "network":"194.16.112.0\/25", + "version":62557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.112.128", + "prefixLen":25, + "network":"194.16.112.128\/25", + "version":62556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.112.128", + "prefixLen":25, + "network":"194.16.112.128\/25", + "version":62556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.113.0", + "prefixLen":25, + "network":"194.16.113.0\/25", + "version":62555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.113.0", + "prefixLen":25, + "network":"194.16.113.0\/25", + "version":62555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.113.128", + "prefixLen":25, + "network":"194.16.113.128\/25", + "version":62554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.113.128", + "prefixLen":25, + "network":"194.16.113.128\/25", + "version":62554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.114.0", + "prefixLen":25, + "network":"194.16.114.0\/25", + "version":62553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.114.0", + "prefixLen":25, + "network":"194.16.114.0\/25", + "version":62553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.114.128", + "prefixLen":25, + "network":"194.16.114.128\/25", + "version":62552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.114.128", + "prefixLen":25, + "network":"194.16.114.128\/25", + "version":62552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.115.0", + "prefixLen":25, + "network":"194.16.115.0\/25", + "version":62551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.115.0", + "prefixLen":25, + "network":"194.16.115.0\/25", + "version":62551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.115.128", + "prefixLen":25, + "network":"194.16.115.128\/25", + "version":62550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.115.128", + "prefixLen":25, + "network":"194.16.115.128\/25", + "version":62550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.128.0", + "prefixLen":25, + "network":"194.16.128.0\/25", + "version":62549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.128.0", + "prefixLen":25, + "network":"194.16.128.0\/25", + "version":62549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.128.128", + "prefixLen":25, + "network":"194.16.128.128\/25", + "version":62548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.128.128", + "prefixLen":25, + "network":"194.16.128.128\/25", + "version":62548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.129.0", + "prefixLen":25, + "network":"194.16.129.0\/25", + "version":62547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.129.0", + "prefixLen":25, + "network":"194.16.129.0\/25", + "version":62547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.129.128", + "prefixLen":25, + "network":"194.16.129.128\/25", + "version":62546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.129.128", + "prefixLen":25, + "network":"194.16.129.128\/25", + "version":62546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.130.0", + "prefixLen":25, + "network":"194.16.130.0\/25", + "version":62545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.130.0", + "prefixLen":25, + "network":"194.16.130.0\/25", + "version":62545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.130.128", + "prefixLen":25, + "network":"194.16.130.128\/25", + "version":62544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.130.128", + "prefixLen":25, + "network":"194.16.130.128\/25", + "version":62544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.131.0", + "prefixLen":25, + "network":"194.16.131.0\/25", + "version":62543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.131.0", + "prefixLen":25, + "network":"194.16.131.0\/25", + "version":62543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.131.128", + "prefixLen":25, + "network":"194.16.131.128\/25", + "version":62542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.131.128", + "prefixLen":25, + "network":"194.16.131.128\/25", + "version":62542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.144.0", + "prefixLen":25, + "network":"194.16.144.0\/25", + "version":62541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.144.0", + "prefixLen":25, + "network":"194.16.144.0\/25", + "version":62541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.144.128", + "prefixLen":25, + "network":"194.16.144.128\/25", + "version":62540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.144.128", + "prefixLen":25, + "network":"194.16.144.128\/25", + "version":62540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.145.0", + "prefixLen":25, + "network":"194.16.145.0\/25", + "version":62539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.145.0", + "prefixLen":25, + "network":"194.16.145.0\/25", + "version":62539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.145.128", + "prefixLen":25, + "network":"194.16.145.128\/25", + "version":62538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.145.128", + "prefixLen":25, + "network":"194.16.145.128\/25", + "version":62538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.146.0", + "prefixLen":25, + "network":"194.16.146.0\/25", + "version":62537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.146.0", + "prefixLen":25, + "network":"194.16.146.0\/25", + "version":62537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.146.128", + "prefixLen":25, + "network":"194.16.146.128\/25", + "version":62536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.146.128", + "prefixLen":25, + "network":"194.16.146.128\/25", + "version":62536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.147.0", + "prefixLen":25, + "network":"194.16.147.0\/25", + "version":62535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.147.0", + "prefixLen":25, + "network":"194.16.147.0\/25", + "version":62535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.147.128", + "prefixLen":25, + "network":"194.16.147.128\/25", + "version":62534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.147.128", + "prefixLen":25, + "network":"194.16.147.128\/25", + "version":62534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.160.0", + "prefixLen":25, + "network":"194.16.160.0\/25", + "version":62533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.160.0", + "prefixLen":25, + "network":"194.16.160.0\/25", + "version":62533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.160.128", + "prefixLen":25, + "network":"194.16.160.128\/25", + "version":62532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.160.128", + "prefixLen":25, + "network":"194.16.160.128\/25", + "version":62532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.161.0", + "prefixLen":25, + "network":"194.16.161.0\/25", + "version":62531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.161.0", + "prefixLen":25, + "network":"194.16.161.0\/25", + "version":62531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.161.128", + "prefixLen":25, + "network":"194.16.161.128\/25", + "version":62530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.161.128", + "prefixLen":25, + "network":"194.16.161.128\/25", + "version":62530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.162.0", + "prefixLen":25, + "network":"194.16.162.0\/25", + "version":62529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.162.0", + "prefixLen":25, + "network":"194.16.162.0\/25", + "version":62529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.162.128", + "prefixLen":25, + "network":"194.16.162.128\/25", + "version":62528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.162.128", + "prefixLen":25, + "network":"194.16.162.128\/25", + "version":62528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.163.0", + "prefixLen":25, + "network":"194.16.163.0\/25", + "version":62527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.163.0", + "prefixLen":25, + "network":"194.16.163.0\/25", + "version":62527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.163.128", + "prefixLen":25, + "network":"194.16.163.128\/25", + "version":62526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.163.128", + "prefixLen":25, + "network":"194.16.163.128\/25", + "version":62526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.176.0", + "prefixLen":25, + "network":"194.16.176.0\/25", + "version":62525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.176.0", + "prefixLen":25, + "network":"194.16.176.0\/25", + "version":62525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.176.128", + "prefixLen":25, + "network":"194.16.176.128\/25", + "version":62524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.176.128", + "prefixLen":25, + "network":"194.16.176.128\/25", + "version":62524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.177.0", + "prefixLen":25, + "network":"194.16.177.0\/25", + "version":62523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.177.0", + "prefixLen":25, + "network":"194.16.177.0\/25", + "version":62523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.177.128", + "prefixLen":25, + "network":"194.16.177.128\/25", + "version":62522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.177.128", + "prefixLen":25, + "network":"194.16.177.128\/25", + "version":62522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.178.0", + "prefixLen":25, + "network":"194.16.178.0\/25", + "version":62521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.178.0", + "prefixLen":25, + "network":"194.16.178.0\/25", + "version":62521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.178.128", + "prefixLen":25, + "network":"194.16.178.128\/25", + "version":62520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.178.128", + "prefixLen":25, + "network":"194.16.178.128\/25", + "version":62520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.179.0", + "prefixLen":25, + "network":"194.16.179.0\/25", + "version":62519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.179.0", + "prefixLen":25, + "network":"194.16.179.0\/25", + "version":62519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.179.128", + "prefixLen":25, + "network":"194.16.179.128\/25", + "version":62518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.179.128", + "prefixLen":25, + "network":"194.16.179.128\/25", + "version":62518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.192.0", + "prefixLen":25, + "network":"194.16.192.0\/25", + "version":62517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.192.0", + "prefixLen":25, + "network":"194.16.192.0\/25", + "version":62517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.192.128", + "prefixLen":25, + "network":"194.16.192.128\/25", + "version":62516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.192.128", + "prefixLen":25, + "network":"194.16.192.128\/25", + "version":62516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.193.0", + "prefixLen":25, + "network":"194.16.193.0\/25", + "version":62515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.193.0", + "prefixLen":25, + "network":"194.16.193.0\/25", + "version":62515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.193.128", + "prefixLen":25, + "network":"194.16.193.128\/25", + "version":62514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.193.128", + "prefixLen":25, + "network":"194.16.193.128\/25", + "version":62514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.194.0", + "prefixLen":25, + "network":"194.16.194.0\/25", + "version":62513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.194.0", + "prefixLen":25, + "network":"194.16.194.0\/25", + "version":62513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.194.128", + "prefixLen":25, + "network":"194.16.194.128\/25", + "version":62512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.194.128", + "prefixLen":25, + "network":"194.16.194.128\/25", + "version":62512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.195.0", + "prefixLen":25, + "network":"194.16.195.0\/25", + "version":62511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.195.0", + "prefixLen":25, + "network":"194.16.195.0\/25", + "version":62511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.195.128", + "prefixLen":25, + "network":"194.16.195.128\/25", + "version":62510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.195.128", + "prefixLen":25, + "network":"194.16.195.128\/25", + "version":62510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.208.0", + "prefixLen":25, + "network":"194.16.208.0\/25", + "version":62509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.208.0", + "prefixLen":25, + "network":"194.16.208.0\/25", + "version":62509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.208.128", + "prefixLen":25, + "network":"194.16.208.128\/25", + "version":62508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.208.128", + "prefixLen":25, + "network":"194.16.208.128\/25", + "version":62508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.209.0", + "prefixLen":25, + "network":"194.16.209.0\/25", + "version":62507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.209.0", + "prefixLen":25, + "network":"194.16.209.0\/25", + "version":62507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.209.128", + "prefixLen":25, + "network":"194.16.209.128\/25", + "version":62506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.209.128", + "prefixLen":25, + "network":"194.16.209.128\/25", + "version":62506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.210.0", + "prefixLen":25, + "network":"194.16.210.0\/25", + "version":62505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.210.0", + "prefixLen":25, + "network":"194.16.210.0\/25", + "version":62505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.210.128", + "prefixLen":25, + "network":"194.16.210.128\/25", + "version":62504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.210.128", + "prefixLen":25, + "network":"194.16.210.128\/25", + "version":62504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.211.0", + "prefixLen":25, + "network":"194.16.211.0\/25", + "version":62503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.211.0", + "prefixLen":25, + "network":"194.16.211.0\/25", + "version":62503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.211.128", + "prefixLen":25, + "network":"194.16.211.128\/25", + "version":62502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.211.128", + "prefixLen":25, + "network":"194.16.211.128\/25", + "version":62502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.224.0", + "prefixLen":25, + "network":"194.16.224.0\/25", + "version":62501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.224.0", + "prefixLen":25, + "network":"194.16.224.0\/25", + "version":62501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.224.128", + "prefixLen":25, + "network":"194.16.224.128\/25", + "version":62500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.224.128", + "prefixLen":25, + "network":"194.16.224.128\/25", + "version":62500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.225.0", + "prefixLen":25, + "network":"194.16.225.0\/25", + "version":62499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.225.0", + "prefixLen":25, + "network":"194.16.225.0\/25", + "version":62499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.225.128", + "prefixLen":25, + "network":"194.16.225.128\/25", + "version":62498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.225.128", + "prefixLen":25, + "network":"194.16.225.128\/25", + "version":62498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.226.0", + "prefixLen":25, + "network":"194.16.226.0\/25", + "version":62497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.226.0", + "prefixLen":25, + "network":"194.16.226.0\/25", + "version":62497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.226.128", + "prefixLen":25, + "network":"194.16.226.128\/25", + "version":62496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.226.128", + "prefixLen":25, + "network":"194.16.226.128\/25", + "version":62496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.227.0", + "prefixLen":25, + "network":"194.16.227.0\/25", + "version":62495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.227.0", + "prefixLen":25, + "network":"194.16.227.0\/25", + "version":62495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.227.128", + "prefixLen":25, + "network":"194.16.227.128\/25", + "version":62494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.227.128", + "prefixLen":25, + "network":"194.16.227.128\/25", + "version":62494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.240.0", + "prefixLen":25, + "network":"194.16.240.0\/25", + "version":62493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.240.0", + "prefixLen":25, + "network":"194.16.240.0\/25", + "version":62493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.240.128", + "prefixLen":25, + "network":"194.16.240.128\/25", + "version":62492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.240.128", + "prefixLen":25, + "network":"194.16.240.128\/25", + "version":62492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.241.0", + "prefixLen":25, + "network":"194.16.241.0\/25", + "version":62491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.241.0", + "prefixLen":25, + "network":"194.16.241.0\/25", + "version":62491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.241.128", + "prefixLen":25, + "network":"194.16.241.128\/25", + "version":62490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.241.128", + "prefixLen":25, + "network":"194.16.241.128\/25", + "version":62490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.242.0", + "prefixLen":25, + "network":"194.16.242.0\/25", + "version":62489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.242.0", + "prefixLen":25, + "network":"194.16.242.0\/25", + "version":62489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.242.128", + "prefixLen":25, + "network":"194.16.242.128\/25", + "version":62488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.242.128", + "prefixLen":25, + "network":"194.16.242.128\/25", + "version":62488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.243.0", + "prefixLen":25, + "network":"194.16.243.0\/25", + "version":62487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.243.0", + "prefixLen":25, + "network":"194.16.243.0\/25", + "version":62487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.16.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.16.243.128", + "prefixLen":25, + "network":"194.16.243.128\/25", + "version":62486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.16.243.128", + "prefixLen":25, + "network":"194.16.243.128\/25", + "version":62486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64960 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.0.0", + "prefixLen":25, + "network":"194.17.0.0\/25", + "version":62613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.0.0", + "prefixLen":25, + "network":"194.17.0.0\/25", + "version":62613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.0.128", + "prefixLen":25, + "network":"194.17.0.128\/25", + "version":62740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.0.128", + "prefixLen":25, + "network":"194.17.0.128\/25", + "version":62740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.1.0", + "prefixLen":25, + "network":"194.17.1.0\/25", + "version":62739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.1.0", + "prefixLen":25, + "network":"194.17.1.0\/25", + "version":62739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.1.128", + "prefixLen":25, + "network":"194.17.1.128\/25", + "version":62738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.1.128", + "prefixLen":25, + "network":"194.17.1.128\/25", + "version":62738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.2.0", + "prefixLen":25, + "network":"194.17.2.0\/25", + "version":62737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.2.0", + "prefixLen":25, + "network":"194.17.2.0\/25", + "version":62737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.2.128", + "prefixLen":25, + "network":"194.17.2.128\/25", + "version":62736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.2.128", + "prefixLen":25, + "network":"194.17.2.128\/25", + "version":62736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.3.0", + "prefixLen":25, + "network":"194.17.3.0\/25", + "version":62735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.3.0", + "prefixLen":25, + "network":"194.17.3.0\/25", + "version":62735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.3.128", + "prefixLen":25, + "network":"194.17.3.128\/25", + "version":62734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.3.128", + "prefixLen":25, + "network":"194.17.3.128\/25", + "version":62734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.16.0", + "prefixLen":25, + "network":"194.17.16.0\/25", + "version":62733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.16.0", + "prefixLen":25, + "network":"194.17.16.0\/25", + "version":62733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.16.128", + "prefixLen":25, + "network":"194.17.16.128\/25", + "version":62732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.16.128", + "prefixLen":25, + "network":"194.17.16.128\/25", + "version":62732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.17.0", + "prefixLen":25, + "network":"194.17.17.0\/25", + "version":62731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.17.0", + "prefixLen":25, + "network":"194.17.17.0\/25", + "version":62731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.17.128", + "prefixLen":25, + "network":"194.17.17.128\/25", + "version":62730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.17.128", + "prefixLen":25, + "network":"194.17.17.128\/25", + "version":62730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.18.0", + "prefixLen":25, + "network":"194.17.18.0\/25", + "version":62729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.18.0", + "prefixLen":25, + "network":"194.17.18.0\/25", + "version":62729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.18.128", + "prefixLen":25, + "network":"194.17.18.128\/25", + "version":62728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.18.128", + "prefixLen":25, + "network":"194.17.18.128\/25", + "version":62728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.19.0", + "prefixLen":25, + "network":"194.17.19.0\/25", + "version":62727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.19.0", + "prefixLen":25, + "network":"194.17.19.0\/25", + "version":62727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.19.128", + "prefixLen":25, + "network":"194.17.19.128\/25", + "version":62726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.19.128", + "prefixLen":25, + "network":"194.17.19.128\/25", + "version":62726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.32.0", + "prefixLen":25, + "network":"194.17.32.0\/25", + "version":62725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.32.0", + "prefixLen":25, + "network":"194.17.32.0\/25", + "version":62725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.32.128", + "prefixLen":25, + "network":"194.17.32.128\/25", + "version":62724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.32.128", + "prefixLen":25, + "network":"194.17.32.128\/25", + "version":62724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.33.0", + "prefixLen":25, + "network":"194.17.33.0\/25", + "version":62723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.33.0", + "prefixLen":25, + "network":"194.17.33.0\/25", + "version":62723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.33.128", + "prefixLen":25, + "network":"194.17.33.128\/25", + "version":62722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.33.128", + "prefixLen":25, + "network":"194.17.33.128\/25", + "version":62722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.34.0", + "prefixLen":25, + "network":"194.17.34.0\/25", + "version":62721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.34.0", + "prefixLen":25, + "network":"194.17.34.0\/25", + "version":62721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.34.128", + "prefixLen":25, + "network":"194.17.34.128\/25", + "version":62720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.34.128", + "prefixLen":25, + "network":"194.17.34.128\/25", + "version":62720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.35.0", + "prefixLen":25, + "network":"194.17.35.0\/25", + "version":62719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.35.0", + "prefixLen":25, + "network":"194.17.35.0\/25", + "version":62719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.35.128", + "prefixLen":25, + "network":"194.17.35.128\/25", + "version":62718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.35.128", + "prefixLen":25, + "network":"194.17.35.128\/25", + "version":62718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.48.0", + "prefixLen":25, + "network":"194.17.48.0\/25", + "version":62717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.48.0", + "prefixLen":25, + "network":"194.17.48.0\/25", + "version":62717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.48.128", + "prefixLen":25, + "network":"194.17.48.128\/25", + "version":62716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.48.128", + "prefixLen":25, + "network":"194.17.48.128\/25", + "version":62716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.49.0", + "prefixLen":25, + "network":"194.17.49.0\/25", + "version":62715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.49.0", + "prefixLen":25, + "network":"194.17.49.0\/25", + "version":62715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.49.128", + "prefixLen":25, + "network":"194.17.49.128\/25", + "version":62714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.49.128", + "prefixLen":25, + "network":"194.17.49.128\/25", + "version":62714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.50.0", + "prefixLen":25, + "network":"194.17.50.0\/25", + "version":62713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.50.0", + "prefixLen":25, + "network":"194.17.50.0\/25", + "version":62713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.50.128", + "prefixLen":25, + "network":"194.17.50.128\/25", + "version":62712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.50.128", + "prefixLen":25, + "network":"194.17.50.128\/25", + "version":62712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.51.0", + "prefixLen":25, + "network":"194.17.51.0\/25", + "version":62711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.51.0", + "prefixLen":25, + "network":"194.17.51.0\/25", + "version":62711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.51.128", + "prefixLen":25, + "network":"194.17.51.128\/25", + "version":62710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.51.128", + "prefixLen":25, + "network":"194.17.51.128\/25", + "version":62710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.64.0", + "prefixLen":25, + "network":"194.17.64.0\/25", + "version":62709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.64.0", + "prefixLen":25, + "network":"194.17.64.0\/25", + "version":62709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.64.128", + "prefixLen":25, + "network":"194.17.64.128\/25", + "version":62708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.64.128", + "prefixLen":25, + "network":"194.17.64.128\/25", + "version":62708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.65.0", + "prefixLen":25, + "network":"194.17.65.0\/25", + "version":62707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.65.0", + "prefixLen":25, + "network":"194.17.65.0\/25", + "version":62707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.65.128", + "prefixLen":25, + "network":"194.17.65.128\/25", + "version":62706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.65.128", + "prefixLen":25, + "network":"194.17.65.128\/25", + "version":62706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.66.0", + "prefixLen":25, + "network":"194.17.66.0\/25", + "version":62705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.66.0", + "prefixLen":25, + "network":"194.17.66.0\/25", + "version":62705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.66.128", + "prefixLen":25, + "network":"194.17.66.128\/25", + "version":62704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.66.128", + "prefixLen":25, + "network":"194.17.66.128\/25", + "version":62704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.67.0", + "prefixLen":25, + "network":"194.17.67.0\/25", + "version":62703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.67.0", + "prefixLen":25, + "network":"194.17.67.0\/25", + "version":62703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.67.128", + "prefixLen":25, + "network":"194.17.67.128\/25", + "version":62702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.67.128", + "prefixLen":25, + "network":"194.17.67.128\/25", + "version":62702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.80.0", + "prefixLen":25, + "network":"194.17.80.0\/25", + "version":62701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.80.0", + "prefixLen":25, + "network":"194.17.80.0\/25", + "version":62701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.80.128", + "prefixLen":25, + "network":"194.17.80.128\/25", + "version":62700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.80.128", + "prefixLen":25, + "network":"194.17.80.128\/25", + "version":62700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.81.0", + "prefixLen":25, + "network":"194.17.81.0\/25", + "version":62699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.81.0", + "prefixLen":25, + "network":"194.17.81.0\/25", + "version":62699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.81.128", + "prefixLen":25, + "network":"194.17.81.128\/25", + "version":62698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.81.128", + "prefixLen":25, + "network":"194.17.81.128\/25", + "version":62698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.82.0", + "prefixLen":25, + "network":"194.17.82.0\/25", + "version":62697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.82.0", + "prefixLen":25, + "network":"194.17.82.0\/25", + "version":62697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.82.128", + "prefixLen":25, + "network":"194.17.82.128\/25", + "version":62696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.82.128", + "prefixLen":25, + "network":"194.17.82.128\/25", + "version":62696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.83.0", + "prefixLen":25, + "network":"194.17.83.0\/25", + "version":62695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.83.0", + "prefixLen":25, + "network":"194.17.83.0\/25", + "version":62695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.83.128", + "prefixLen":25, + "network":"194.17.83.128\/25", + "version":62694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.83.128", + "prefixLen":25, + "network":"194.17.83.128\/25", + "version":62694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.96.0", + "prefixLen":25, + "network":"194.17.96.0\/25", + "version":62693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.96.0", + "prefixLen":25, + "network":"194.17.96.0\/25", + "version":62693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.96.128", + "prefixLen":25, + "network":"194.17.96.128\/25", + "version":62692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.96.128", + "prefixLen":25, + "network":"194.17.96.128\/25", + "version":62692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.97.0", + "prefixLen":25, + "network":"194.17.97.0\/25", + "version":62691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.97.0", + "prefixLen":25, + "network":"194.17.97.0\/25", + "version":62691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.97.128", + "prefixLen":25, + "network":"194.17.97.128\/25", + "version":62690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.97.128", + "prefixLen":25, + "network":"194.17.97.128\/25", + "version":62690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.98.0", + "prefixLen":25, + "network":"194.17.98.0\/25", + "version":62689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.98.0", + "prefixLen":25, + "network":"194.17.98.0\/25", + "version":62689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.98.128", + "prefixLen":25, + "network":"194.17.98.128\/25", + "version":62688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.98.128", + "prefixLen":25, + "network":"194.17.98.128\/25", + "version":62688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.99.0", + "prefixLen":25, + "network":"194.17.99.0\/25", + "version":62687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.99.0", + "prefixLen":25, + "network":"194.17.99.0\/25", + "version":62687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.99.128", + "prefixLen":25, + "network":"194.17.99.128\/25", + "version":62686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.99.128", + "prefixLen":25, + "network":"194.17.99.128\/25", + "version":62686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.112.0", + "prefixLen":25, + "network":"194.17.112.0\/25", + "version":62685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.112.0", + "prefixLen":25, + "network":"194.17.112.0\/25", + "version":62685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.112.128", + "prefixLen":25, + "network":"194.17.112.128\/25", + "version":62684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.112.128", + "prefixLen":25, + "network":"194.17.112.128\/25", + "version":62684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.113.0", + "prefixLen":25, + "network":"194.17.113.0\/25", + "version":62683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.113.0", + "prefixLen":25, + "network":"194.17.113.0\/25", + "version":62683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.113.128", + "prefixLen":25, + "network":"194.17.113.128\/25", + "version":62682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.113.128", + "prefixLen":25, + "network":"194.17.113.128\/25", + "version":62682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.114.0", + "prefixLen":25, + "network":"194.17.114.0\/25", + "version":62681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.114.0", + "prefixLen":25, + "network":"194.17.114.0\/25", + "version":62681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.114.128", + "prefixLen":25, + "network":"194.17.114.128\/25", + "version":62680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.114.128", + "prefixLen":25, + "network":"194.17.114.128\/25", + "version":62680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.115.0", + "prefixLen":25, + "network":"194.17.115.0\/25", + "version":62679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.115.0", + "prefixLen":25, + "network":"194.17.115.0\/25", + "version":62679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.115.128", + "prefixLen":25, + "network":"194.17.115.128\/25", + "version":62678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.115.128", + "prefixLen":25, + "network":"194.17.115.128\/25", + "version":62678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.128.0", + "prefixLen":25, + "network":"194.17.128.0\/25", + "version":62677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.128.0", + "prefixLen":25, + "network":"194.17.128.0\/25", + "version":62677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.128.128", + "prefixLen":25, + "network":"194.17.128.128\/25", + "version":62676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.128.128", + "prefixLen":25, + "network":"194.17.128.128\/25", + "version":62676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.129.0", + "prefixLen":25, + "network":"194.17.129.0\/25", + "version":62675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.129.0", + "prefixLen":25, + "network":"194.17.129.0\/25", + "version":62675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.129.128", + "prefixLen":25, + "network":"194.17.129.128\/25", + "version":62674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.129.128", + "prefixLen":25, + "network":"194.17.129.128\/25", + "version":62674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.130.0", + "prefixLen":25, + "network":"194.17.130.0\/25", + "version":62673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.130.0", + "prefixLen":25, + "network":"194.17.130.0\/25", + "version":62673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.130.128", + "prefixLen":25, + "network":"194.17.130.128\/25", + "version":62672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.130.128", + "prefixLen":25, + "network":"194.17.130.128\/25", + "version":62672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.131.0", + "prefixLen":25, + "network":"194.17.131.0\/25", + "version":62671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.131.0", + "prefixLen":25, + "network":"194.17.131.0\/25", + "version":62671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.131.128", + "prefixLen":25, + "network":"194.17.131.128\/25", + "version":62670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.131.128", + "prefixLen":25, + "network":"194.17.131.128\/25", + "version":62670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.144.0", + "prefixLen":25, + "network":"194.17.144.0\/25", + "version":62669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.144.0", + "prefixLen":25, + "network":"194.17.144.0\/25", + "version":62669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.144.128", + "prefixLen":25, + "network":"194.17.144.128\/25", + "version":62668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.144.128", + "prefixLen":25, + "network":"194.17.144.128\/25", + "version":62668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.145.0", + "prefixLen":25, + "network":"194.17.145.0\/25", + "version":62667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.145.0", + "prefixLen":25, + "network":"194.17.145.0\/25", + "version":62667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.145.128", + "prefixLen":25, + "network":"194.17.145.128\/25", + "version":62666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.145.128", + "prefixLen":25, + "network":"194.17.145.128\/25", + "version":62666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.146.0", + "prefixLen":25, + "network":"194.17.146.0\/25", + "version":62665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.146.0", + "prefixLen":25, + "network":"194.17.146.0\/25", + "version":62665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.146.128", + "prefixLen":25, + "network":"194.17.146.128\/25", + "version":62664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.146.128", + "prefixLen":25, + "network":"194.17.146.128\/25", + "version":62664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.147.0", + "prefixLen":25, + "network":"194.17.147.0\/25", + "version":62663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.147.0", + "prefixLen":25, + "network":"194.17.147.0\/25", + "version":62663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.147.128", + "prefixLen":25, + "network":"194.17.147.128\/25", + "version":62662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.147.128", + "prefixLen":25, + "network":"194.17.147.128\/25", + "version":62662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.160.0", + "prefixLen":25, + "network":"194.17.160.0\/25", + "version":62661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.160.0", + "prefixLen":25, + "network":"194.17.160.0\/25", + "version":62661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.160.128", + "prefixLen":25, + "network":"194.17.160.128\/25", + "version":62660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.160.128", + "prefixLen":25, + "network":"194.17.160.128\/25", + "version":62660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.161.0", + "prefixLen":25, + "network":"194.17.161.0\/25", + "version":62659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.161.0", + "prefixLen":25, + "network":"194.17.161.0\/25", + "version":62659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.161.128", + "prefixLen":25, + "network":"194.17.161.128\/25", + "version":62658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.161.128", + "prefixLen":25, + "network":"194.17.161.128\/25", + "version":62658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.162.0", + "prefixLen":25, + "network":"194.17.162.0\/25", + "version":62657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.162.0", + "prefixLen":25, + "network":"194.17.162.0\/25", + "version":62657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.162.128", + "prefixLen":25, + "network":"194.17.162.128\/25", + "version":62656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.162.128", + "prefixLen":25, + "network":"194.17.162.128\/25", + "version":62656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.163.0", + "prefixLen":25, + "network":"194.17.163.0\/25", + "version":62655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.163.0", + "prefixLen":25, + "network":"194.17.163.0\/25", + "version":62655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.163.128", + "prefixLen":25, + "network":"194.17.163.128\/25", + "version":62654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.163.128", + "prefixLen":25, + "network":"194.17.163.128\/25", + "version":62654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.176.0", + "prefixLen":25, + "network":"194.17.176.0\/25", + "version":62653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.176.0", + "prefixLen":25, + "network":"194.17.176.0\/25", + "version":62653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.176.128", + "prefixLen":25, + "network":"194.17.176.128\/25", + "version":62652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.176.128", + "prefixLen":25, + "network":"194.17.176.128\/25", + "version":62652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.177.0", + "prefixLen":25, + "network":"194.17.177.0\/25", + "version":62651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.177.0", + "prefixLen":25, + "network":"194.17.177.0\/25", + "version":62651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.177.128", + "prefixLen":25, + "network":"194.17.177.128\/25", + "version":62650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.177.128", + "prefixLen":25, + "network":"194.17.177.128\/25", + "version":62650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.178.0", + "prefixLen":25, + "network":"194.17.178.0\/25", + "version":62649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.178.0", + "prefixLen":25, + "network":"194.17.178.0\/25", + "version":62649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.178.128", + "prefixLen":25, + "network":"194.17.178.128\/25", + "version":62648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.178.128", + "prefixLen":25, + "network":"194.17.178.128\/25", + "version":62648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.179.0", + "prefixLen":25, + "network":"194.17.179.0\/25", + "version":62647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.179.0", + "prefixLen":25, + "network":"194.17.179.0\/25", + "version":62647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.179.128", + "prefixLen":25, + "network":"194.17.179.128\/25", + "version":62646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.179.128", + "prefixLen":25, + "network":"194.17.179.128\/25", + "version":62646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.192.0", + "prefixLen":25, + "network":"194.17.192.0\/25", + "version":62645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.192.0", + "prefixLen":25, + "network":"194.17.192.0\/25", + "version":62645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.192.128", + "prefixLen":25, + "network":"194.17.192.128\/25", + "version":62644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.192.128", + "prefixLen":25, + "network":"194.17.192.128\/25", + "version":62644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.193.0", + "prefixLen":25, + "network":"194.17.193.0\/25", + "version":62643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.193.0", + "prefixLen":25, + "network":"194.17.193.0\/25", + "version":62643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.193.128", + "prefixLen":25, + "network":"194.17.193.128\/25", + "version":62642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.193.128", + "prefixLen":25, + "network":"194.17.193.128\/25", + "version":62642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.194.0", + "prefixLen":25, + "network":"194.17.194.0\/25", + "version":62641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.194.0", + "prefixLen":25, + "network":"194.17.194.0\/25", + "version":62641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.194.128", + "prefixLen":25, + "network":"194.17.194.128\/25", + "version":62640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.194.128", + "prefixLen":25, + "network":"194.17.194.128\/25", + "version":62640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.195.0", + "prefixLen":25, + "network":"194.17.195.0\/25", + "version":62639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.195.0", + "prefixLen":25, + "network":"194.17.195.0\/25", + "version":62639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.195.128", + "prefixLen":25, + "network":"194.17.195.128\/25", + "version":62638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.195.128", + "prefixLen":25, + "network":"194.17.195.128\/25", + "version":62638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.208.0", + "prefixLen":25, + "network":"194.17.208.0\/25", + "version":62637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.208.0", + "prefixLen":25, + "network":"194.17.208.0\/25", + "version":62637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.208.128", + "prefixLen":25, + "network":"194.17.208.128\/25", + "version":62636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.208.128", + "prefixLen":25, + "network":"194.17.208.128\/25", + "version":62636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.209.0", + "prefixLen":25, + "network":"194.17.209.0\/25", + "version":62635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.209.0", + "prefixLen":25, + "network":"194.17.209.0\/25", + "version":62635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.209.128", + "prefixLen":25, + "network":"194.17.209.128\/25", + "version":62634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.209.128", + "prefixLen":25, + "network":"194.17.209.128\/25", + "version":62634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.210.0", + "prefixLen":25, + "network":"194.17.210.0\/25", + "version":62633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.210.0", + "prefixLen":25, + "network":"194.17.210.0\/25", + "version":62633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.210.128", + "prefixLen":25, + "network":"194.17.210.128\/25", + "version":62632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.210.128", + "prefixLen":25, + "network":"194.17.210.128\/25", + "version":62632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.211.0", + "prefixLen":25, + "network":"194.17.211.0\/25", + "version":62631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.211.0", + "prefixLen":25, + "network":"194.17.211.0\/25", + "version":62631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.211.128", + "prefixLen":25, + "network":"194.17.211.128\/25", + "version":62630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.211.128", + "prefixLen":25, + "network":"194.17.211.128\/25", + "version":62630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.224.0", + "prefixLen":25, + "network":"194.17.224.0\/25", + "version":62629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.224.0", + "prefixLen":25, + "network":"194.17.224.0\/25", + "version":62629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.224.128", + "prefixLen":25, + "network":"194.17.224.128\/25", + "version":62628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.224.128", + "prefixLen":25, + "network":"194.17.224.128\/25", + "version":62628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.225.0", + "prefixLen":25, + "network":"194.17.225.0\/25", + "version":62627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.225.0", + "prefixLen":25, + "network":"194.17.225.0\/25", + "version":62627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.225.128", + "prefixLen":25, + "network":"194.17.225.128\/25", + "version":62626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.225.128", + "prefixLen":25, + "network":"194.17.225.128\/25", + "version":62626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.226.0", + "prefixLen":25, + "network":"194.17.226.0\/25", + "version":62625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.226.0", + "prefixLen":25, + "network":"194.17.226.0\/25", + "version":62625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.226.128", + "prefixLen":25, + "network":"194.17.226.128\/25", + "version":62624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.226.128", + "prefixLen":25, + "network":"194.17.226.128\/25", + "version":62624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.227.0", + "prefixLen":25, + "network":"194.17.227.0\/25", + "version":62623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.227.0", + "prefixLen":25, + "network":"194.17.227.0\/25", + "version":62623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.227.128", + "prefixLen":25, + "network":"194.17.227.128\/25", + "version":62622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.227.128", + "prefixLen":25, + "network":"194.17.227.128\/25", + "version":62622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.240.0", + "prefixLen":25, + "network":"194.17.240.0\/25", + "version":62621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.240.0", + "prefixLen":25, + "network":"194.17.240.0\/25", + "version":62621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.240.128", + "prefixLen":25, + "network":"194.17.240.128\/25", + "version":62620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.240.128", + "prefixLen":25, + "network":"194.17.240.128\/25", + "version":62620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.241.0", + "prefixLen":25, + "network":"194.17.241.0\/25", + "version":62619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.241.0", + "prefixLen":25, + "network":"194.17.241.0\/25", + "version":62619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.241.128", + "prefixLen":25, + "network":"194.17.241.128\/25", + "version":62618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.241.128", + "prefixLen":25, + "network":"194.17.241.128\/25", + "version":62618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.242.0", + "prefixLen":25, + "network":"194.17.242.0\/25", + "version":62617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.242.0", + "prefixLen":25, + "network":"194.17.242.0\/25", + "version":62617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.242.128", + "prefixLen":25, + "network":"194.17.242.128\/25", + "version":62616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.242.128", + "prefixLen":25, + "network":"194.17.242.128\/25", + "version":62616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.243.0", + "prefixLen":25, + "network":"194.17.243.0\/25", + "version":62615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.243.0", + "prefixLen":25, + "network":"194.17.243.0\/25", + "version":62615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.17.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.17.243.128", + "prefixLen":25, + "network":"194.17.243.128\/25", + "version":62614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.17.243.128", + "prefixLen":25, + "network":"194.17.243.128\/25", + "version":62614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64961 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.0.0", + "prefixLen":25, + "network":"194.18.0.0\/25", + "version":62741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.0.0", + "prefixLen":25, + "network":"194.18.0.0\/25", + "version":62741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.0.128", + "prefixLen":25, + "network":"194.18.0.128\/25", + "version":62868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.0.128", + "prefixLen":25, + "network":"194.18.0.128\/25", + "version":62868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.1.0", + "prefixLen":25, + "network":"194.18.1.0\/25", + "version":62867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.1.0", + "prefixLen":25, + "network":"194.18.1.0\/25", + "version":62867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.1.128", + "prefixLen":25, + "network":"194.18.1.128\/25", + "version":62866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.1.128", + "prefixLen":25, + "network":"194.18.1.128\/25", + "version":62866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.2.0", + "prefixLen":25, + "network":"194.18.2.0\/25", + "version":62865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.2.0", + "prefixLen":25, + "network":"194.18.2.0\/25", + "version":62865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.2.128", + "prefixLen":25, + "network":"194.18.2.128\/25", + "version":62864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.2.128", + "prefixLen":25, + "network":"194.18.2.128\/25", + "version":62864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.3.0", + "prefixLen":25, + "network":"194.18.3.0\/25", + "version":62863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.3.0", + "prefixLen":25, + "network":"194.18.3.0\/25", + "version":62863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.3.128", + "prefixLen":25, + "network":"194.18.3.128\/25", + "version":62862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.3.128", + "prefixLen":25, + "network":"194.18.3.128\/25", + "version":62862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.16.0", + "prefixLen":25, + "network":"194.18.16.0\/25", + "version":62861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.16.0", + "prefixLen":25, + "network":"194.18.16.0\/25", + "version":62861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.16.128", + "prefixLen":25, + "network":"194.18.16.128\/25", + "version":62860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.16.128", + "prefixLen":25, + "network":"194.18.16.128\/25", + "version":62860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.17.0", + "prefixLen":25, + "network":"194.18.17.0\/25", + "version":62859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.17.0", + "prefixLen":25, + "network":"194.18.17.0\/25", + "version":62859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.17.128", + "prefixLen":25, + "network":"194.18.17.128\/25", + "version":62858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.17.128", + "prefixLen":25, + "network":"194.18.17.128\/25", + "version":62858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.18.0", + "prefixLen":25, + "network":"194.18.18.0\/25", + "version":62857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.18.0", + "prefixLen":25, + "network":"194.18.18.0\/25", + "version":62857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.18.128", + "prefixLen":25, + "network":"194.18.18.128\/25", + "version":62856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.18.128", + "prefixLen":25, + "network":"194.18.18.128\/25", + "version":62856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.19.0", + "prefixLen":25, + "network":"194.18.19.0\/25", + "version":62855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.19.0", + "prefixLen":25, + "network":"194.18.19.0\/25", + "version":62855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.19.128", + "prefixLen":25, + "network":"194.18.19.128\/25", + "version":62854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.19.128", + "prefixLen":25, + "network":"194.18.19.128\/25", + "version":62854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.32.0", + "prefixLen":25, + "network":"194.18.32.0\/25", + "version":62853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.32.0", + "prefixLen":25, + "network":"194.18.32.0\/25", + "version":62853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.32.128", + "prefixLen":25, + "network":"194.18.32.128\/25", + "version":62852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.32.128", + "prefixLen":25, + "network":"194.18.32.128\/25", + "version":62852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.33.0", + "prefixLen":25, + "network":"194.18.33.0\/25", + "version":62851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.33.0", + "prefixLen":25, + "network":"194.18.33.0\/25", + "version":62851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.33.128", + "prefixLen":25, + "network":"194.18.33.128\/25", + "version":62850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.33.128", + "prefixLen":25, + "network":"194.18.33.128\/25", + "version":62850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.34.0", + "prefixLen":25, + "network":"194.18.34.0\/25", + "version":62849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.34.0", + "prefixLen":25, + "network":"194.18.34.0\/25", + "version":62849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.34.128", + "prefixLen":25, + "network":"194.18.34.128\/25", + "version":62848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.34.128", + "prefixLen":25, + "network":"194.18.34.128\/25", + "version":62848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.35.0", + "prefixLen":25, + "network":"194.18.35.0\/25", + "version":62847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.35.0", + "prefixLen":25, + "network":"194.18.35.0\/25", + "version":62847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.35.128", + "prefixLen":25, + "network":"194.18.35.128\/25", + "version":62846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.35.128", + "prefixLen":25, + "network":"194.18.35.128\/25", + "version":62846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.48.0", + "prefixLen":25, + "network":"194.18.48.0\/25", + "version":62845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.48.0", + "prefixLen":25, + "network":"194.18.48.0\/25", + "version":62845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.48.128", + "prefixLen":25, + "network":"194.18.48.128\/25", + "version":62844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.48.128", + "prefixLen":25, + "network":"194.18.48.128\/25", + "version":62844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.49.0", + "prefixLen":25, + "network":"194.18.49.0\/25", + "version":62843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.49.0", + "prefixLen":25, + "network":"194.18.49.0\/25", + "version":62843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.49.128", + "prefixLen":25, + "network":"194.18.49.128\/25", + "version":62842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.49.128", + "prefixLen":25, + "network":"194.18.49.128\/25", + "version":62842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.50.0", + "prefixLen":25, + "network":"194.18.50.0\/25", + "version":62841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.50.0", + "prefixLen":25, + "network":"194.18.50.0\/25", + "version":62841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.50.128", + "prefixLen":25, + "network":"194.18.50.128\/25", + "version":62840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.50.128", + "prefixLen":25, + "network":"194.18.50.128\/25", + "version":62840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.51.0", + "prefixLen":25, + "network":"194.18.51.0\/25", + "version":62839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.51.0", + "prefixLen":25, + "network":"194.18.51.0\/25", + "version":62839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.51.128", + "prefixLen":25, + "network":"194.18.51.128\/25", + "version":62838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.51.128", + "prefixLen":25, + "network":"194.18.51.128\/25", + "version":62838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.64.0", + "prefixLen":25, + "network":"194.18.64.0\/25", + "version":62837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.64.0", + "prefixLen":25, + "network":"194.18.64.0\/25", + "version":62837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.64.128", + "prefixLen":25, + "network":"194.18.64.128\/25", + "version":62836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.64.128", + "prefixLen":25, + "network":"194.18.64.128\/25", + "version":62836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.65.0", + "prefixLen":25, + "network":"194.18.65.0\/25", + "version":62835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.65.0", + "prefixLen":25, + "network":"194.18.65.0\/25", + "version":62835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.65.128", + "prefixLen":25, + "network":"194.18.65.128\/25", + "version":62834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.65.128", + "prefixLen":25, + "network":"194.18.65.128\/25", + "version":62834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.66.0", + "prefixLen":25, + "network":"194.18.66.0\/25", + "version":62833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.66.0", + "prefixLen":25, + "network":"194.18.66.0\/25", + "version":62833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.66.128", + "prefixLen":25, + "network":"194.18.66.128\/25", + "version":62832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.66.128", + "prefixLen":25, + "network":"194.18.66.128\/25", + "version":62832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.67.0", + "prefixLen":25, + "network":"194.18.67.0\/25", + "version":62831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.67.0", + "prefixLen":25, + "network":"194.18.67.0\/25", + "version":62831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.67.128", + "prefixLen":25, + "network":"194.18.67.128\/25", + "version":62830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.67.128", + "prefixLen":25, + "network":"194.18.67.128\/25", + "version":62830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.80.0", + "prefixLen":25, + "network":"194.18.80.0\/25", + "version":62829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.80.0", + "prefixLen":25, + "network":"194.18.80.0\/25", + "version":62829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.80.128", + "prefixLen":25, + "network":"194.18.80.128\/25", + "version":62828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.80.128", + "prefixLen":25, + "network":"194.18.80.128\/25", + "version":62828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.81.0", + "prefixLen":25, + "network":"194.18.81.0\/25", + "version":62827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.81.0", + "prefixLen":25, + "network":"194.18.81.0\/25", + "version":62827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.81.128", + "prefixLen":25, + "network":"194.18.81.128\/25", + "version":62826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.81.128", + "prefixLen":25, + "network":"194.18.81.128\/25", + "version":62826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.82.0", + "prefixLen":25, + "network":"194.18.82.0\/25", + "version":62825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.82.0", + "prefixLen":25, + "network":"194.18.82.0\/25", + "version":62825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.82.128", + "prefixLen":25, + "network":"194.18.82.128\/25", + "version":62824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.82.128", + "prefixLen":25, + "network":"194.18.82.128\/25", + "version":62824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.83.0", + "prefixLen":25, + "network":"194.18.83.0\/25", + "version":62823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.83.0", + "prefixLen":25, + "network":"194.18.83.0\/25", + "version":62823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.83.128", + "prefixLen":25, + "network":"194.18.83.128\/25", + "version":62822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.83.128", + "prefixLen":25, + "network":"194.18.83.128\/25", + "version":62822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.96.0", + "prefixLen":25, + "network":"194.18.96.0\/25", + "version":62821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.96.0", + "prefixLen":25, + "network":"194.18.96.0\/25", + "version":62821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.96.128", + "prefixLen":25, + "network":"194.18.96.128\/25", + "version":62820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.96.128", + "prefixLen":25, + "network":"194.18.96.128\/25", + "version":62820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.97.0", + "prefixLen":25, + "network":"194.18.97.0\/25", + "version":62819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.97.0", + "prefixLen":25, + "network":"194.18.97.0\/25", + "version":62819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.97.128", + "prefixLen":25, + "network":"194.18.97.128\/25", + "version":62818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.97.128", + "prefixLen":25, + "network":"194.18.97.128\/25", + "version":62818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.98.0", + "prefixLen":25, + "network":"194.18.98.0\/25", + "version":62817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.98.0", + "prefixLen":25, + "network":"194.18.98.0\/25", + "version":62817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.98.128", + "prefixLen":25, + "network":"194.18.98.128\/25", + "version":62816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.98.128", + "prefixLen":25, + "network":"194.18.98.128\/25", + "version":62816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.99.0", + "prefixLen":25, + "network":"194.18.99.0\/25", + "version":62815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.99.0", + "prefixLen":25, + "network":"194.18.99.0\/25", + "version":62815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.99.128", + "prefixLen":25, + "network":"194.18.99.128\/25", + "version":62814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.99.128", + "prefixLen":25, + "network":"194.18.99.128\/25", + "version":62814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.112.0", + "prefixLen":25, + "network":"194.18.112.0\/25", + "version":62813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.112.0", + "prefixLen":25, + "network":"194.18.112.0\/25", + "version":62813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.112.128", + "prefixLen":25, + "network":"194.18.112.128\/25", + "version":62812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.112.128", + "prefixLen":25, + "network":"194.18.112.128\/25", + "version":62812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.113.0", + "prefixLen":25, + "network":"194.18.113.0\/25", + "version":62811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.113.0", + "prefixLen":25, + "network":"194.18.113.0\/25", + "version":62811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.113.128", + "prefixLen":25, + "network":"194.18.113.128\/25", + "version":62810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.113.128", + "prefixLen":25, + "network":"194.18.113.128\/25", + "version":62810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.114.0", + "prefixLen":25, + "network":"194.18.114.0\/25", + "version":62809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.114.0", + "prefixLen":25, + "network":"194.18.114.0\/25", + "version":62809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.114.128", + "prefixLen":25, + "network":"194.18.114.128\/25", + "version":62808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.114.128", + "prefixLen":25, + "network":"194.18.114.128\/25", + "version":62808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.115.0", + "prefixLen":25, + "network":"194.18.115.0\/25", + "version":62807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.115.0", + "prefixLen":25, + "network":"194.18.115.0\/25", + "version":62807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.115.128", + "prefixLen":25, + "network":"194.18.115.128\/25", + "version":62806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.115.128", + "prefixLen":25, + "network":"194.18.115.128\/25", + "version":62806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.128.0", + "prefixLen":25, + "network":"194.18.128.0\/25", + "version":62805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.128.0", + "prefixLen":25, + "network":"194.18.128.0\/25", + "version":62805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.128.128", + "prefixLen":25, + "network":"194.18.128.128\/25", + "version":62804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.128.128", + "prefixLen":25, + "network":"194.18.128.128\/25", + "version":62804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.129.0", + "prefixLen":25, + "network":"194.18.129.0\/25", + "version":62803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.129.0", + "prefixLen":25, + "network":"194.18.129.0\/25", + "version":62803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.129.128", + "prefixLen":25, + "network":"194.18.129.128\/25", + "version":62802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.129.128", + "prefixLen":25, + "network":"194.18.129.128\/25", + "version":62802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.130.0", + "prefixLen":25, + "network":"194.18.130.0\/25", + "version":62801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.130.0", + "prefixLen":25, + "network":"194.18.130.0\/25", + "version":62801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.130.128", + "prefixLen":25, + "network":"194.18.130.128\/25", + "version":62800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.130.128", + "prefixLen":25, + "network":"194.18.130.128\/25", + "version":62800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.131.0", + "prefixLen":25, + "network":"194.18.131.0\/25", + "version":62799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.131.0", + "prefixLen":25, + "network":"194.18.131.0\/25", + "version":62799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.131.128", + "prefixLen":25, + "network":"194.18.131.128\/25", + "version":62798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.131.128", + "prefixLen":25, + "network":"194.18.131.128\/25", + "version":62798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.144.0", + "prefixLen":25, + "network":"194.18.144.0\/25", + "version":62797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.144.0", + "prefixLen":25, + "network":"194.18.144.0\/25", + "version":62797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.144.128", + "prefixLen":25, + "network":"194.18.144.128\/25", + "version":62796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.144.128", + "prefixLen":25, + "network":"194.18.144.128\/25", + "version":62796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.145.0", + "prefixLen":25, + "network":"194.18.145.0\/25", + "version":62795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.145.0", + "prefixLen":25, + "network":"194.18.145.0\/25", + "version":62795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.145.128", + "prefixLen":25, + "network":"194.18.145.128\/25", + "version":62794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.145.128", + "prefixLen":25, + "network":"194.18.145.128\/25", + "version":62794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.146.0", + "prefixLen":25, + "network":"194.18.146.0\/25", + "version":62793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.146.0", + "prefixLen":25, + "network":"194.18.146.0\/25", + "version":62793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.146.128", + "prefixLen":25, + "network":"194.18.146.128\/25", + "version":62792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.146.128", + "prefixLen":25, + "network":"194.18.146.128\/25", + "version":62792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.147.0", + "prefixLen":25, + "network":"194.18.147.0\/25", + "version":62791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.147.0", + "prefixLen":25, + "network":"194.18.147.0\/25", + "version":62791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.147.128", + "prefixLen":25, + "network":"194.18.147.128\/25", + "version":62790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.147.128", + "prefixLen":25, + "network":"194.18.147.128\/25", + "version":62790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.160.0", + "prefixLen":25, + "network":"194.18.160.0\/25", + "version":62789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.160.0", + "prefixLen":25, + "network":"194.18.160.0\/25", + "version":62789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.160.128", + "prefixLen":25, + "network":"194.18.160.128\/25", + "version":62788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.160.128", + "prefixLen":25, + "network":"194.18.160.128\/25", + "version":62788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.161.0", + "prefixLen":25, + "network":"194.18.161.0\/25", + "version":62787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.161.0", + "prefixLen":25, + "network":"194.18.161.0\/25", + "version":62787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.161.128", + "prefixLen":25, + "network":"194.18.161.128\/25", + "version":62786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.161.128", + "prefixLen":25, + "network":"194.18.161.128\/25", + "version":62786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.162.0", + "prefixLen":25, + "network":"194.18.162.0\/25", + "version":62785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.162.0", + "prefixLen":25, + "network":"194.18.162.0\/25", + "version":62785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.162.128", + "prefixLen":25, + "network":"194.18.162.128\/25", + "version":62784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.162.128", + "prefixLen":25, + "network":"194.18.162.128\/25", + "version":62784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.163.0", + "prefixLen":25, + "network":"194.18.163.0\/25", + "version":62783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.163.0", + "prefixLen":25, + "network":"194.18.163.0\/25", + "version":62783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.163.128", + "prefixLen":25, + "network":"194.18.163.128\/25", + "version":62782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.163.128", + "prefixLen":25, + "network":"194.18.163.128\/25", + "version":62782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.176.0", + "prefixLen":25, + "network":"194.18.176.0\/25", + "version":62781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.176.0", + "prefixLen":25, + "network":"194.18.176.0\/25", + "version":62781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.176.128", + "prefixLen":25, + "network":"194.18.176.128\/25", + "version":62780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.176.128", + "prefixLen":25, + "network":"194.18.176.128\/25", + "version":62780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.177.0", + "prefixLen":25, + "network":"194.18.177.0\/25", + "version":62779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.177.0", + "prefixLen":25, + "network":"194.18.177.0\/25", + "version":62779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.177.128", + "prefixLen":25, + "network":"194.18.177.128\/25", + "version":62778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.177.128", + "prefixLen":25, + "network":"194.18.177.128\/25", + "version":62778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.178.0", + "prefixLen":25, + "network":"194.18.178.0\/25", + "version":62777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.178.0", + "prefixLen":25, + "network":"194.18.178.0\/25", + "version":62777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.178.128", + "prefixLen":25, + "network":"194.18.178.128\/25", + "version":62776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.178.128", + "prefixLen":25, + "network":"194.18.178.128\/25", + "version":62776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.179.0", + "prefixLen":25, + "network":"194.18.179.0\/25", + "version":62775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.179.0", + "prefixLen":25, + "network":"194.18.179.0\/25", + "version":62775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.179.128", + "prefixLen":25, + "network":"194.18.179.128\/25", + "version":62774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.179.128", + "prefixLen":25, + "network":"194.18.179.128\/25", + "version":62774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.192.0", + "prefixLen":25, + "network":"194.18.192.0\/25", + "version":62773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.192.0", + "prefixLen":25, + "network":"194.18.192.0\/25", + "version":62773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.192.128", + "prefixLen":25, + "network":"194.18.192.128\/25", + "version":62772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.192.128", + "prefixLen":25, + "network":"194.18.192.128\/25", + "version":62772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.193.0", + "prefixLen":25, + "network":"194.18.193.0\/25", + "version":62771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.193.0", + "prefixLen":25, + "network":"194.18.193.0\/25", + "version":62771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.193.128", + "prefixLen":25, + "network":"194.18.193.128\/25", + "version":62770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.193.128", + "prefixLen":25, + "network":"194.18.193.128\/25", + "version":62770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.194.0", + "prefixLen":25, + "network":"194.18.194.0\/25", + "version":62769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.194.0", + "prefixLen":25, + "network":"194.18.194.0\/25", + "version":62769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.194.128", + "prefixLen":25, + "network":"194.18.194.128\/25", + "version":62768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.194.128", + "prefixLen":25, + "network":"194.18.194.128\/25", + "version":62768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.195.0", + "prefixLen":25, + "network":"194.18.195.0\/25", + "version":62767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.195.0", + "prefixLen":25, + "network":"194.18.195.0\/25", + "version":62767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.195.128", + "prefixLen":25, + "network":"194.18.195.128\/25", + "version":62766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.195.128", + "prefixLen":25, + "network":"194.18.195.128\/25", + "version":62766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.208.0", + "prefixLen":25, + "network":"194.18.208.0\/25", + "version":62765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.208.0", + "prefixLen":25, + "network":"194.18.208.0\/25", + "version":62765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.208.128", + "prefixLen":25, + "network":"194.18.208.128\/25", + "version":62764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.208.128", + "prefixLen":25, + "network":"194.18.208.128\/25", + "version":62764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.209.0", + "prefixLen":25, + "network":"194.18.209.0\/25", + "version":62763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.209.0", + "prefixLen":25, + "network":"194.18.209.0\/25", + "version":62763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.209.128", + "prefixLen":25, + "network":"194.18.209.128\/25", + "version":62762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.209.128", + "prefixLen":25, + "network":"194.18.209.128\/25", + "version":62762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.210.0", + "prefixLen":25, + "network":"194.18.210.0\/25", + "version":62761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.210.0", + "prefixLen":25, + "network":"194.18.210.0\/25", + "version":62761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.210.128", + "prefixLen":25, + "network":"194.18.210.128\/25", + "version":62760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.210.128", + "prefixLen":25, + "network":"194.18.210.128\/25", + "version":62760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.211.0", + "prefixLen":25, + "network":"194.18.211.0\/25", + "version":62759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.211.0", + "prefixLen":25, + "network":"194.18.211.0\/25", + "version":62759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.211.128", + "prefixLen":25, + "network":"194.18.211.128\/25", + "version":62758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.211.128", + "prefixLen":25, + "network":"194.18.211.128\/25", + "version":62758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.224.0", + "prefixLen":25, + "network":"194.18.224.0\/25", + "version":62757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.224.0", + "prefixLen":25, + "network":"194.18.224.0\/25", + "version":62757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.224.128", + "prefixLen":25, + "network":"194.18.224.128\/25", + "version":62756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.224.128", + "prefixLen":25, + "network":"194.18.224.128\/25", + "version":62756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.225.0", + "prefixLen":25, + "network":"194.18.225.0\/25", + "version":62755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.225.0", + "prefixLen":25, + "network":"194.18.225.0\/25", + "version":62755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.225.128", + "prefixLen":25, + "network":"194.18.225.128\/25", + "version":62754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.225.128", + "prefixLen":25, + "network":"194.18.225.128\/25", + "version":62754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.226.0", + "prefixLen":25, + "network":"194.18.226.0\/25", + "version":62753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.226.0", + "prefixLen":25, + "network":"194.18.226.0\/25", + "version":62753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.226.128", + "prefixLen":25, + "network":"194.18.226.128\/25", + "version":62752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.226.128", + "prefixLen":25, + "network":"194.18.226.128\/25", + "version":62752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.227.0", + "prefixLen":25, + "network":"194.18.227.0\/25", + "version":62751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.227.0", + "prefixLen":25, + "network":"194.18.227.0\/25", + "version":62751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.227.128", + "prefixLen":25, + "network":"194.18.227.128\/25", + "version":62750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.227.128", + "prefixLen":25, + "network":"194.18.227.128\/25", + "version":62750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.240.0", + "prefixLen":25, + "network":"194.18.240.0\/25", + "version":62749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.240.0", + "prefixLen":25, + "network":"194.18.240.0\/25", + "version":62749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.240.128", + "prefixLen":25, + "network":"194.18.240.128\/25", + "version":62748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.240.128", + "prefixLen":25, + "network":"194.18.240.128\/25", + "version":62748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.241.0", + "prefixLen":25, + "network":"194.18.241.0\/25", + "version":62747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.241.0", + "prefixLen":25, + "network":"194.18.241.0\/25", + "version":62747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.241.128", + "prefixLen":25, + "network":"194.18.241.128\/25", + "version":62746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.241.128", + "prefixLen":25, + "network":"194.18.241.128\/25", + "version":62746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.242.0", + "prefixLen":25, + "network":"194.18.242.0\/25", + "version":62745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.242.0", + "prefixLen":25, + "network":"194.18.242.0\/25", + "version":62745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.242.128", + "prefixLen":25, + "network":"194.18.242.128\/25", + "version":62744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.242.128", + "prefixLen":25, + "network":"194.18.242.128\/25", + "version":62744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.243.0", + "prefixLen":25, + "network":"194.18.243.0\/25", + "version":62743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.243.0", + "prefixLen":25, + "network":"194.18.243.0\/25", + "version":62743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.18.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.18.243.128", + "prefixLen":25, + "network":"194.18.243.128\/25", + "version":62742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.18.243.128", + "prefixLen":25, + "network":"194.18.243.128\/25", + "version":62742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64962 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.0.0", + "prefixLen":25, + "network":"194.19.0.0\/25", + "version":62869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.0.0", + "prefixLen":25, + "network":"194.19.0.0\/25", + "version":62869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.0.128", + "prefixLen":25, + "network":"194.19.0.128\/25", + "version":62996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.0.128", + "prefixLen":25, + "network":"194.19.0.128\/25", + "version":62996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.1.0", + "prefixLen":25, + "network":"194.19.1.0\/25", + "version":62995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.1.0", + "prefixLen":25, + "network":"194.19.1.0\/25", + "version":62995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.1.128", + "prefixLen":25, + "network":"194.19.1.128\/25", + "version":62994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.1.128", + "prefixLen":25, + "network":"194.19.1.128\/25", + "version":62994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.2.0", + "prefixLen":25, + "network":"194.19.2.0\/25", + "version":62993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.2.0", + "prefixLen":25, + "network":"194.19.2.0\/25", + "version":62993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.2.128", + "prefixLen":25, + "network":"194.19.2.128\/25", + "version":62992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.2.128", + "prefixLen":25, + "network":"194.19.2.128\/25", + "version":62992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.3.0", + "prefixLen":25, + "network":"194.19.3.0\/25", + "version":62991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.3.0", + "prefixLen":25, + "network":"194.19.3.0\/25", + "version":62991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.3.128", + "prefixLen":25, + "network":"194.19.3.128\/25", + "version":62990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.3.128", + "prefixLen":25, + "network":"194.19.3.128\/25", + "version":62990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.16.0", + "prefixLen":25, + "network":"194.19.16.0\/25", + "version":62989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.16.0", + "prefixLen":25, + "network":"194.19.16.0\/25", + "version":62989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.16.128", + "prefixLen":25, + "network":"194.19.16.128\/25", + "version":62988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.16.128", + "prefixLen":25, + "network":"194.19.16.128\/25", + "version":62988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.17.0", + "prefixLen":25, + "network":"194.19.17.0\/25", + "version":62987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.17.0", + "prefixLen":25, + "network":"194.19.17.0\/25", + "version":62987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.17.128", + "prefixLen":25, + "network":"194.19.17.128\/25", + "version":62986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.17.128", + "prefixLen":25, + "network":"194.19.17.128\/25", + "version":62986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.18.0", + "prefixLen":25, + "network":"194.19.18.0\/25", + "version":62985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.18.0", + "prefixLen":25, + "network":"194.19.18.0\/25", + "version":62985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.18.128", + "prefixLen":25, + "network":"194.19.18.128\/25", + "version":62984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.18.128", + "prefixLen":25, + "network":"194.19.18.128\/25", + "version":62984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.19.0", + "prefixLen":25, + "network":"194.19.19.0\/25", + "version":62983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.19.0", + "prefixLen":25, + "network":"194.19.19.0\/25", + "version":62983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.19.128", + "prefixLen":25, + "network":"194.19.19.128\/25", + "version":62982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.19.128", + "prefixLen":25, + "network":"194.19.19.128\/25", + "version":62982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.32.0", + "prefixLen":25, + "network":"194.19.32.0\/25", + "version":62981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.32.0", + "prefixLen":25, + "network":"194.19.32.0\/25", + "version":62981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.32.128", + "prefixLen":25, + "network":"194.19.32.128\/25", + "version":62980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.32.128", + "prefixLen":25, + "network":"194.19.32.128\/25", + "version":62980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.33.0", + "prefixLen":25, + "network":"194.19.33.0\/25", + "version":62979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.33.0", + "prefixLen":25, + "network":"194.19.33.0\/25", + "version":62979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.33.128", + "prefixLen":25, + "network":"194.19.33.128\/25", + "version":62978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.33.128", + "prefixLen":25, + "network":"194.19.33.128\/25", + "version":62978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.34.0", + "prefixLen":25, + "network":"194.19.34.0\/25", + "version":62977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.34.0", + "prefixLen":25, + "network":"194.19.34.0\/25", + "version":62977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.34.128", + "prefixLen":25, + "network":"194.19.34.128\/25", + "version":62976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.34.128", + "prefixLen":25, + "network":"194.19.34.128\/25", + "version":62976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.35.0", + "prefixLen":25, + "network":"194.19.35.0\/25", + "version":62975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.35.0", + "prefixLen":25, + "network":"194.19.35.0\/25", + "version":62975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.35.128", + "prefixLen":25, + "network":"194.19.35.128\/25", + "version":62974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.35.128", + "prefixLen":25, + "network":"194.19.35.128\/25", + "version":62974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.48.0", + "prefixLen":25, + "network":"194.19.48.0\/25", + "version":62973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.48.0", + "prefixLen":25, + "network":"194.19.48.0\/25", + "version":62973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.48.128", + "prefixLen":25, + "network":"194.19.48.128\/25", + "version":62972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.48.128", + "prefixLen":25, + "network":"194.19.48.128\/25", + "version":62972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.49.0", + "prefixLen":25, + "network":"194.19.49.0\/25", + "version":62971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.49.0", + "prefixLen":25, + "network":"194.19.49.0\/25", + "version":62971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.49.128", + "prefixLen":25, + "network":"194.19.49.128\/25", + "version":62970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.49.128", + "prefixLen":25, + "network":"194.19.49.128\/25", + "version":62970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.50.0", + "prefixLen":25, + "network":"194.19.50.0\/25", + "version":62969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.50.0", + "prefixLen":25, + "network":"194.19.50.0\/25", + "version":62969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.50.128", + "prefixLen":25, + "network":"194.19.50.128\/25", + "version":62968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.50.128", + "prefixLen":25, + "network":"194.19.50.128\/25", + "version":62968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.51.0", + "prefixLen":25, + "network":"194.19.51.0\/25", + "version":62967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.51.0", + "prefixLen":25, + "network":"194.19.51.0\/25", + "version":62967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.51.128", + "prefixLen":25, + "network":"194.19.51.128\/25", + "version":62966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.51.128", + "prefixLen":25, + "network":"194.19.51.128\/25", + "version":62966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.64.0", + "prefixLen":25, + "network":"194.19.64.0\/25", + "version":62965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.64.0", + "prefixLen":25, + "network":"194.19.64.0\/25", + "version":62965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.64.128", + "prefixLen":25, + "network":"194.19.64.128\/25", + "version":62964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.64.128", + "prefixLen":25, + "network":"194.19.64.128\/25", + "version":62964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.65.0", + "prefixLen":25, + "network":"194.19.65.0\/25", + "version":62963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.65.0", + "prefixLen":25, + "network":"194.19.65.0\/25", + "version":62963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.65.128", + "prefixLen":25, + "network":"194.19.65.128\/25", + "version":62962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.65.128", + "prefixLen":25, + "network":"194.19.65.128\/25", + "version":62962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.66.0", + "prefixLen":25, + "network":"194.19.66.0\/25", + "version":62961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.66.0", + "prefixLen":25, + "network":"194.19.66.0\/25", + "version":62961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.66.128", + "prefixLen":25, + "network":"194.19.66.128\/25", + "version":62960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.66.128", + "prefixLen":25, + "network":"194.19.66.128\/25", + "version":62960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.67.0", + "prefixLen":25, + "network":"194.19.67.0\/25", + "version":62959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.67.0", + "prefixLen":25, + "network":"194.19.67.0\/25", + "version":62959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.67.128", + "prefixLen":25, + "network":"194.19.67.128\/25", + "version":62958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.67.128", + "prefixLen":25, + "network":"194.19.67.128\/25", + "version":62958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.80.0", + "prefixLen":25, + "network":"194.19.80.0\/25", + "version":62957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.80.0", + "prefixLen":25, + "network":"194.19.80.0\/25", + "version":62957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.80.128", + "prefixLen":25, + "network":"194.19.80.128\/25", + "version":62956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.80.128", + "prefixLen":25, + "network":"194.19.80.128\/25", + "version":62956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.81.0", + "prefixLen":25, + "network":"194.19.81.0\/25", + "version":62955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.81.0", + "prefixLen":25, + "network":"194.19.81.0\/25", + "version":62955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.81.128", + "prefixLen":25, + "network":"194.19.81.128\/25", + "version":62954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.81.128", + "prefixLen":25, + "network":"194.19.81.128\/25", + "version":62954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.82.0", + "prefixLen":25, + "network":"194.19.82.0\/25", + "version":62953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.82.0", + "prefixLen":25, + "network":"194.19.82.0\/25", + "version":62953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.82.128", + "prefixLen":25, + "network":"194.19.82.128\/25", + "version":62952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.82.128", + "prefixLen":25, + "network":"194.19.82.128\/25", + "version":62952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.83.0", + "prefixLen":25, + "network":"194.19.83.0\/25", + "version":62951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.83.0", + "prefixLen":25, + "network":"194.19.83.0\/25", + "version":62951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.83.128", + "prefixLen":25, + "network":"194.19.83.128\/25", + "version":62950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.83.128", + "prefixLen":25, + "network":"194.19.83.128\/25", + "version":62950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.96.0", + "prefixLen":25, + "network":"194.19.96.0\/25", + "version":62949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.96.0", + "prefixLen":25, + "network":"194.19.96.0\/25", + "version":62949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.96.128", + "prefixLen":25, + "network":"194.19.96.128\/25", + "version":62948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.96.128", + "prefixLen":25, + "network":"194.19.96.128\/25", + "version":62948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.97.0", + "prefixLen":25, + "network":"194.19.97.0\/25", + "version":62947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.97.0", + "prefixLen":25, + "network":"194.19.97.0\/25", + "version":62947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.97.128", + "prefixLen":25, + "network":"194.19.97.128\/25", + "version":62946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.97.128", + "prefixLen":25, + "network":"194.19.97.128\/25", + "version":62946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.98.0", + "prefixLen":25, + "network":"194.19.98.0\/25", + "version":62945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.98.0", + "prefixLen":25, + "network":"194.19.98.0\/25", + "version":62945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.98.128", + "prefixLen":25, + "network":"194.19.98.128\/25", + "version":62944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.98.128", + "prefixLen":25, + "network":"194.19.98.128\/25", + "version":62944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.99.0", + "prefixLen":25, + "network":"194.19.99.0\/25", + "version":62943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.99.0", + "prefixLen":25, + "network":"194.19.99.0\/25", + "version":62943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.99.128", + "prefixLen":25, + "network":"194.19.99.128\/25", + "version":62942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.99.128", + "prefixLen":25, + "network":"194.19.99.128\/25", + "version":62942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.112.0", + "prefixLen":25, + "network":"194.19.112.0\/25", + "version":62941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.112.0", + "prefixLen":25, + "network":"194.19.112.0\/25", + "version":62941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.112.128", + "prefixLen":25, + "network":"194.19.112.128\/25", + "version":62940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.112.128", + "prefixLen":25, + "network":"194.19.112.128\/25", + "version":62940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.113.0", + "prefixLen":25, + "network":"194.19.113.0\/25", + "version":62939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.113.0", + "prefixLen":25, + "network":"194.19.113.0\/25", + "version":62939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.113.128", + "prefixLen":25, + "network":"194.19.113.128\/25", + "version":62938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.113.128", + "prefixLen":25, + "network":"194.19.113.128\/25", + "version":62938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.114.0", + "prefixLen":25, + "network":"194.19.114.0\/25", + "version":62937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.114.0", + "prefixLen":25, + "network":"194.19.114.0\/25", + "version":62937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.114.128", + "prefixLen":25, + "network":"194.19.114.128\/25", + "version":62936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.114.128", + "prefixLen":25, + "network":"194.19.114.128\/25", + "version":62936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.115.0", + "prefixLen":25, + "network":"194.19.115.0\/25", + "version":62935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.115.0", + "prefixLen":25, + "network":"194.19.115.0\/25", + "version":62935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.115.128", + "prefixLen":25, + "network":"194.19.115.128\/25", + "version":62934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.115.128", + "prefixLen":25, + "network":"194.19.115.128\/25", + "version":62934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.128.0", + "prefixLen":25, + "network":"194.19.128.0\/25", + "version":62933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.128.0", + "prefixLen":25, + "network":"194.19.128.0\/25", + "version":62933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.128.128", + "prefixLen":25, + "network":"194.19.128.128\/25", + "version":62932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.128.128", + "prefixLen":25, + "network":"194.19.128.128\/25", + "version":62932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.129.0", + "prefixLen":25, + "network":"194.19.129.0\/25", + "version":62931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.129.0", + "prefixLen":25, + "network":"194.19.129.0\/25", + "version":62931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.129.128", + "prefixLen":25, + "network":"194.19.129.128\/25", + "version":62930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.129.128", + "prefixLen":25, + "network":"194.19.129.128\/25", + "version":62930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.130.0", + "prefixLen":25, + "network":"194.19.130.0\/25", + "version":62929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.130.0", + "prefixLen":25, + "network":"194.19.130.0\/25", + "version":62929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.130.128", + "prefixLen":25, + "network":"194.19.130.128\/25", + "version":62928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.130.128", + "prefixLen":25, + "network":"194.19.130.128\/25", + "version":62928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.131.0", + "prefixLen":25, + "network":"194.19.131.0\/25", + "version":62927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.131.0", + "prefixLen":25, + "network":"194.19.131.0\/25", + "version":62927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.131.128", + "prefixLen":25, + "network":"194.19.131.128\/25", + "version":62926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.131.128", + "prefixLen":25, + "network":"194.19.131.128\/25", + "version":62926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.144.0", + "prefixLen":25, + "network":"194.19.144.0\/25", + "version":62925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.144.0", + "prefixLen":25, + "network":"194.19.144.0\/25", + "version":62925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.144.128", + "prefixLen":25, + "network":"194.19.144.128\/25", + "version":62924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.144.128", + "prefixLen":25, + "network":"194.19.144.128\/25", + "version":62924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.145.0", + "prefixLen":25, + "network":"194.19.145.0\/25", + "version":62923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.145.0", + "prefixLen":25, + "network":"194.19.145.0\/25", + "version":62923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.145.128", + "prefixLen":25, + "network":"194.19.145.128\/25", + "version":62922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.145.128", + "prefixLen":25, + "network":"194.19.145.128\/25", + "version":62922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.146.0", + "prefixLen":25, + "network":"194.19.146.0\/25", + "version":62921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.146.0", + "prefixLen":25, + "network":"194.19.146.0\/25", + "version":62921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.146.128", + "prefixLen":25, + "network":"194.19.146.128\/25", + "version":62920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.146.128", + "prefixLen":25, + "network":"194.19.146.128\/25", + "version":62920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.147.0", + "prefixLen":25, + "network":"194.19.147.0\/25", + "version":62919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.147.0", + "prefixLen":25, + "network":"194.19.147.0\/25", + "version":62919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.147.128", + "prefixLen":25, + "network":"194.19.147.128\/25", + "version":62918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.147.128", + "prefixLen":25, + "network":"194.19.147.128\/25", + "version":62918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.160.0", + "prefixLen":25, + "network":"194.19.160.0\/25", + "version":62917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.160.0", + "prefixLen":25, + "network":"194.19.160.0\/25", + "version":62917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.160.128", + "prefixLen":25, + "network":"194.19.160.128\/25", + "version":62916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.160.128", + "prefixLen":25, + "network":"194.19.160.128\/25", + "version":62916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.161.0", + "prefixLen":25, + "network":"194.19.161.0\/25", + "version":62915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.161.0", + "prefixLen":25, + "network":"194.19.161.0\/25", + "version":62915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.161.128", + "prefixLen":25, + "network":"194.19.161.128\/25", + "version":62914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.161.128", + "prefixLen":25, + "network":"194.19.161.128\/25", + "version":62914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.162.0", + "prefixLen":25, + "network":"194.19.162.0\/25", + "version":62913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.162.0", + "prefixLen":25, + "network":"194.19.162.0\/25", + "version":62913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.162.128", + "prefixLen":25, + "network":"194.19.162.128\/25", + "version":62912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.162.128", + "prefixLen":25, + "network":"194.19.162.128\/25", + "version":62912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.163.0", + "prefixLen":25, + "network":"194.19.163.0\/25", + "version":62911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.163.0", + "prefixLen":25, + "network":"194.19.163.0\/25", + "version":62911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.163.128", + "prefixLen":25, + "network":"194.19.163.128\/25", + "version":62910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.163.128", + "prefixLen":25, + "network":"194.19.163.128\/25", + "version":62910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.176.0", + "prefixLen":25, + "network":"194.19.176.0\/25", + "version":62909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.176.0", + "prefixLen":25, + "network":"194.19.176.0\/25", + "version":62909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.176.128", + "prefixLen":25, + "network":"194.19.176.128\/25", + "version":62908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.176.128", + "prefixLen":25, + "network":"194.19.176.128\/25", + "version":62908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.177.0", + "prefixLen":25, + "network":"194.19.177.0\/25", + "version":62907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.177.0", + "prefixLen":25, + "network":"194.19.177.0\/25", + "version":62907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.177.128", + "prefixLen":25, + "network":"194.19.177.128\/25", + "version":62906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.177.128", + "prefixLen":25, + "network":"194.19.177.128\/25", + "version":62906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.178.0", + "prefixLen":25, + "network":"194.19.178.0\/25", + "version":62905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.178.0", + "prefixLen":25, + "network":"194.19.178.0\/25", + "version":62905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.178.128", + "prefixLen":25, + "network":"194.19.178.128\/25", + "version":62904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.178.128", + "prefixLen":25, + "network":"194.19.178.128\/25", + "version":62904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.179.0", + "prefixLen":25, + "network":"194.19.179.0\/25", + "version":62903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.179.0", + "prefixLen":25, + "network":"194.19.179.0\/25", + "version":62903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.179.128", + "prefixLen":25, + "network":"194.19.179.128\/25", + "version":62902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.179.128", + "prefixLen":25, + "network":"194.19.179.128\/25", + "version":62902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.192.0", + "prefixLen":25, + "network":"194.19.192.0\/25", + "version":62901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.192.0", + "prefixLen":25, + "network":"194.19.192.0\/25", + "version":62901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.192.128", + "prefixLen":25, + "network":"194.19.192.128\/25", + "version":62900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.192.128", + "prefixLen":25, + "network":"194.19.192.128\/25", + "version":62900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.193.0", + "prefixLen":25, + "network":"194.19.193.0\/25", + "version":62899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.193.0", + "prefixLen":25, + "network":"194.19.193.0\/25", + "version":62899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.193.128", + "prefixLen":25, + "network":"194.19.193.128\/25", + "version":62898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.193.128", + "prefixLen":25, + "network":"194.19.193.128\/25", + "version":62898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.194.0", + "prefixLen":25, + "network":"194.19.194.0\/25", + "version":62897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.194.0", + "prefixLen":25, + "network":"194.19.194.0\/25", + "version":62897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.194.128", + "prefixLen":25, + "network":"194.19.194.128\/25", + "version":62896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.194.128", + "prefixLen":25, + "network":"194.19.194.128\/25", + "version":62896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.195.0", + "prefixLen":25, + "network":"194.19.195.0\/25", + "version":62895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.195.0", + "prefixLen":25, + "network":"194.19.195.0\/25", + "version":62895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.195.128", + "prefixLen":25, + "network":"194.19.195.128\/25", + "version":62894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.195.128", + "prefixLen":25, + "network":"194.19.195.128\/25", + "version":62894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.208.0", + "prefixLen":25, + "network":"194.19.208.0\/25", + "version":62893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.208.0", + "prefixLen":25, + "network":"194.19.208.0\/25", + "version":62893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.208.128", + "prefixLen":25, + "network":"194.19.208.128\/25", + "version":62892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.208.128", + "prefixLen":25, + "network":"194.19.208.128\/25", + "version":62892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.209.0", + "prefixLen":25, + "network":"194.19.209.0\/25", + "version":62891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.209.0", + "prefixLen":25, + "network":"194.19.209.0\/25", + "version":62891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.209.128", + "prefixLen":25, + "network":"194.19.209.128\/25", + "version":62890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.209.128", + "prefixLen":25, + "network":"194.19.209.128\/25", + "version":62890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.210.0", + "prefixLen":25, + "network":"194.19.210.0\/25", + "version":62889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.210.0", + "prefixLen":25, + "network":"194.19.210.0\/25", + "version":62889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.210.128", + "prefixLen":25, + "network":"194.19.210.128\/25", + "version":62888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.210.128", + "prefixLen":25, + "network":"194.19.210.128\/25", + "version":62888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.211.0", + "prefixLen":25, + "network":"194.19.211.0\/25", + "version":62887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.211.0", + "prefixLen":25, + "network":"194.19.211.0\/25", + "version":62887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.211.128", + "prefixLen":25, + "network":"194.19.211.128\/25", + "version":62886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.211.128", + "prefixLen":25, + "network":"194.19.211.128\/25", + "version":62886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.224.0", + "prefixLen":25, + "network":"194.19.224.0\/25", + "version":62885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.224.0", + "prefixLen":25, + "network":"194.19.224.0\/25", + "version":62885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.224.128", + "prefixLen":25, + "network":"194.19.224.128\/25", + "version":62884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.224.128", + "prefixLen":25, + "network":"194.19.224.128\/25", + "version":62884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.225.0", + "prefixLen":25, + "network":"194.19.225.0\/25", + "version":62883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.225.0", + "prefixLen":25, + "network":"194.19.225.0\/25", + "version":62883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.225.128", + "prefixLen":25, + "network":"194.19.225.128\/25", + "version":62882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.225.128", + "prefixLen":25, + "network":"194.19.225.128\/25", + "version":62882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.226.0", + "prefixLen":25, + "network":"194.19.226.0\/25", + "version":62881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.226.0", + "prefixLen":25, + "network":"194.19.226.0\/25", + "version":62881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.226.128", + "prefixLen":25, + "network":"194.19.226.128\/25", + "version":62880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.226.128", + "prefixLen":25, + "network":"194.19.226.128\/25", + "version":62880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.227.0", + "prefixLen":25, + "network":"194.19.227.0\/25", + "version":62879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.227.0", + "prefixLen":25, + "network":"194.19.227.0\/25", + "version":62879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.227.128", + "prefixLen":25, + "network":"194.19.227.128\/25", + "version":62878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.227.128", + "prefixLen":25, + "network":"194.19.227.128\/25", + "version":62878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.240.0", + "prefixLen":25, + "network":"194.19.240.0\/25", + "version":62877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.240.0", + "prefixLen":25, + "network":"194.19.240.0\/25", + "version":62877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.240.128", + "prefixLen":25, + "network":"194.19.240.128\/25", + "version":62876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.240.128", + "prefixLen":25, + "network":"194.19.240.128\/25", + "version":62876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.241.0", + "prefixLen":25, + "network":"194.19.241.0\/25", + "version":62875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.241.0", + "prefixLen":25, + "network":"194.19.241.0\/25", + "version":62875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.241.128", + "prefixLen":25, + "network":"194.19.241.128\/25", + "version":62874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.241.128", + "prefixLen":25, + "network":"194.19.241.128\/25", + "version":62874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.242.0", + "prefixLen":25, + "network":"194.19.242.0\/25", + "version":62873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.242.0", + "prefixLen":25, + "network":"194.19.242.0\/25", + "version":62873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.242.128", + "prefixLen":25, + "network":"194.19.242.128\/25", + "version":62872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.242.128", + "prefixLen":25, + "network":"194.19.242.128\/25", + "version":62872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.243.0", + "prefixLen":25, + "network":"194.19.243.0\/25", + "version":62871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.243.0", + "prefixLen":25, + "network":"194.19.243.0\/25", + "version":62871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.19.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.19.243.128", + "prefixLen":25, + "network":"194.19.243.128\/25", + "version":62870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.19.243.128", + "prefixLen":25, + "network":"194.19.243.128\/25", + "version":62870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64963 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.0.0", + "prefixLen":25, + "network":"194.20.0.0\/25", + "version":62997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.0.0", + "prefixLen":25, + "network":"194.20.0.0\/25", + "version":62997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.0.128", + "prefixLen":25, + "network":"194.20.0.128\/25", + "version":63124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.0.128", + "prefixLen":25, + "network":"194.20.0.128\/25", + "version":63124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.1.0", + "prefixLen":25, + "network":"194.20.1.0\/25", + "version":63123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.1.0", + "prefixLen":25, + "network":"194.20.1.0\/25", + "version":63123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.1.128", + "prefixLen":25, + "network":"194.20.1.128\/25", + "version":63122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.1.128", + "prefixLen":25, + "network":"194.20.1.128\/25", + "version":63122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.2.0", + "prefixLen":25, + "network":"194.20.2.0\/25", + "version":63121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.2.0", + "prefixLen":25, + "network":"194.20.2.0\/25", + "version":63121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.2.128", + "prefixLen":25, + "network":"194.20.2.128\/25", + "version":63120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.2.128", + "prefixLen":25, + "network":"194.20.2.128\/25", + "version":63120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.3.0", + "prefixLen":25, + "network":"194.20.3.0\/25", + "version":63119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.3.0", + "prefixLen":25, + "network":"194.20.3.0\/25", + "version":63119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.3.128", + "prefixLen":25, + "network":"194.20.3.128\/25", + "version":63118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.3.128", + "prefixLen":25, + "network":"194.20.3.128\/25", + "version":63118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.16.0", + "prefixLen":25, + "network":"194.20.16.0\/25", + "version":63117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.16.0", + "prefixLen":25, + "network":"194.20.16.0\/25", + "version":63117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.16.128", + "prefixLen":25, + "network":"194.20.16.128\/25", + "version":63116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.16.128", + "prefixLen":25, + "network":"194.20.16.128\/25", + "version":63116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.17.0", + "prefixLen":25, + "network":"194.20.17.0\/25", + "version":63115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.17.0", + "prefixLen":25, + "network":"194.20.17.0\/25", + "version":63115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.17.128", + "prefixLen":25, + "network":"194.20.17.128\/25", + "version":63114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.17.128", + "prefixLen":25, + "network":"194.20.17.128\/25", + "version":63114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.18.0", + "prefixLen":25, + "network":"194.20.18.0\/25", + "version":63113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.18.0", + "prefixLen":25, + "network":"194.20.18.0\/25", + "version":63113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.18.128", + "prefixLen":25, + "network":"194.20.18.128\/25", + "version":63112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.18.128", + "prefixLen":25, + "network":"194.20.18.128\/25", + "version":63112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.19.0", + "prefixLen":25, + "network":"194.20.19.0\/25", + "version":63111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.19.0", + "prefixLen":25, + "network":"194.20.19.0\/25", + "version":63111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.19.128", + "prefixLen":25, + "network":"194.20.19.128\/25", + "version":63110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.19.128", + "prefixLen":25, + "network":"194.20.19.128\/25", + "version":63110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.32.0", + "prefixLen":25, + "network":"194.20.32.0\/25", + "version":63109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.32.0", + "prefixLen":25, + "network":"194.20.32.0\/25", + "version":63109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.32.128", + "prefixLen":25, + "network":"194.20.32.128\/25", + "version":63108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.32.128", + "prefixLen":25, + "network":"194.20.32.128\/25", + "version":63108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.33.0", + "prefixLen":25, + "network":"194.20.33.0\/25", + "version":63107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.33.0", + "prefixLen":25, + "network":"194.20.33.0\/25", + "version":63107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.33.128", + "prefixLen":25, + "network":"194.20.33.128\/25", + "version":63106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.33.128", + "prefixLen":25, + "network":"194.20.33.128\/25", + "version":63106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.34.0", + "prefixLen":25, + "network":"194.20.34.0\/25", + "version":63105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.34.0", + "prefixLen":25, + "network":"194.20.34.0\/25", + "version":63105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.34.128", + "prefixLen":25, + "network":"194.20.34.128\/25", + "version":63104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.34.128", + "prefixLen":25, + "network":"194.20.34.128\/25", + "version":63104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.35.0", + "prefixLen":25, + "network":"194.20.35.0\/25", + "version":63103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.35.0", + "prefixLen":25, + "network":"194.20.35.0\/25", + "version":63103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.35.128", + "prefixLen":25, + "network":"194.20.35.128\/25", + "version":63102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.35.128", + "prefixLen":25, + "network":"194.20.35.128\/25", + "version":63102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.48.0", + "prefixLen":25, + "network":"194.20.48.0\/25", + "version":63101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.48.0", + "prefixLen":25, + "network":"194.20.48.0\/25", + "version":63101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.48.128", + "prefixLen":25, + "network":"194.20.48.128\/25", + "version":63100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.48.128", + "prefixLen":25, + "network":"194.20.48.128\/25", + "version":63100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.49.0", + "prefixLen":25, + "network":"194.20.49.0\/25", + "version":63099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.49.0", + "prefixLen":25, + "network":"194.20.49.0\/25", + "version":63099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.49.128", + "prefixLen":25, + "network":"194.20.49.128\/25", + "version":63098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.49.128", + "prefixLen":25, + "network":"194.20.49.128\/25", + "version":63098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.50.0", + "prefixLen":25, + "network":"194.20.50.0\/25", + "version":63097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.50.0", + "prefixLen":25, + "network":"194.20.50.0\/25", + "version":63097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.50.128", + "prefixLen":25, + "network":"194.20.50.128\/25", + "version":63096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.50.128", + "prefixLen":25, + "network":"194.20.50.128\/25", + "version":63096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.51.0", + "prefixLen":25, + "network":"194.20.51.0\/25", + "version":63095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.51.0", + "prefixLen":25, + "network":"194.20.51.0\/25", + "version":63095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.51.128", + "prefixLen":25, + "network":"194.20.51.128\/25", + "version":63094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.51.128", + "prefixLen":25, + "network":"194.20.51.128\/25", + "version":63094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.64.0", + "prefixLen":25, + "network":"194.20.64.0\/25", + "version":63093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.64.0", + "prefixLen":25, + "network":"194.20.64.0\/25", + "version":63093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.64.128", + "prefixLen":25, + "network":"194.20.64.128\/25", + "version":63092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.64.128", + "prefixLen":25, + "network":"194.20.64.128\/25", + "version":63092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.65.0", + "prefixLen":25, + "network":"194.20.65.0\/25", + "version":63091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.65.0", + "prefixLen":25, + "network":"194.20.65.0\/25", + "version":63091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.65.128", + "prefixLen":25, + "network":"194.20.65.128\/25", + "version":63090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.65.128", + "prefixLen":25, + "network":"194.20.65.128\/25", + "version":63090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.66.0", + "prefixLen":25, + "network":"194.20.66.0\/25", + "version":63089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.66.0", + "prefixLen":25, + "network":"194.20.66.0\/25", + "version":63089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.66.128", + "prefixLen":25, + "network":"194.20.66.128\/25", + "version":63088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.66.128", + "prefixLen":25, + "network":"194.20.66.128\/25", + "version":63088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.67.0", + "prefixLen":25, + "network":"194.20.67.0\/25", + "version":63087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.67.0", + "prefixLen":25, + "network":"194.20.67.0\/25", + "version":63087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.67.128", + "prefixLen":25, + "network":"194.20.67.128\/25", + "version":63086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.67.128", + "prefixLen":25, + "network":"194.20.67.128\/25", + "version":63086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.80.0", + "prefixLen":25, + "network":"194.20.80.0\/25", + "version":63085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.80.0", + "prefixLen":25, + "network":"194.20.80.0\/25", + "version":63085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.80.128", + "prefixLen":25, + "network":"194.20.80.128\/25", + "version":63084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.80.128", + "prefixLen":25, + "network":"194.20.80.128\/25", + "version":63084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.81.0", + "prefixLen":25, + "network":"194.20.81.0\/25", + "version":63083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.81.0", + "prefixLen":25, + "network":"194.20.81.0\/25", + "version":63083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.81.128", + "prefixLen":25, + "network":"194.20.81.128\/25", + "version":63082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.81.128", + "prefixLen":25, + "network":"194.20.81.128\/25", + "version":63082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.82.0", + "prefixLen":25, + "network":"194.20.82.0\/25", + "version":63081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.82.0", + "prefixLen":25, + "network":"194.20.82.0\/25", + "version":63081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.82.128", + "prefixLen":25, + "network":"194.20.82.128\/25", + "version":63080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.82.128", + "prefixLen":25, + "network":"194.20.82.128\/25", + "version":63080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.83.0", + "prefixLen":25, + "network":"194.20.83.0\/25", + "version":63079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.83.0", + "prefixLen":25, + "network":"194.20.83.0\/25", + "version":63079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.83.128", + "prefixLen":25, + "network":"194.20.83.128\/25", + "version":63078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.83.128", + "prefixLen":25, + "network":"194.20.83.128\/25", + "version":63078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.96.0", + "prefixLen":25, + "network":"194.20.96.0\/25", + "version":63077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.96.0", + "prefixLen":25, + "network":"194.20.96.0\/25", + "version":63077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.96.128", + "prefixLen":25, + "network":"194.20.96.128\/25", + "version":63076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.96.128", + "prefixLen":25, + "network":"194.20.96.128\/25", + "version":63076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.97.0", + "prefixLen":25, + "network":"194.20.97.0\/25", + "version":63075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.97.0", + "prefixLen":25, + "network":"194.20.97.0\/25", + "version":63075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.97.128", + "prefixLen":25, + "network":"194.20.97.128\/25", + "version":63074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.97.128", + "prefixLen":25, + "network":"194.20.97.128\/25", + "version":63074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.98.0", + "prefixLen":25, + "network":"194.20.98.0\/25", + "version":63073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.98.0", + "prefixLen":25, + "network":"194.20.98.0\/25", + "version":63073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.98.128", + "prefixLen":25, + "network":"194.20.98.128\/25", + "version":63072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.98.128", + "prefixLen":25, + "network":"194.20.98.128\/25", + "version":63072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.99.0", + "prefixLen":25, + "network":"194.20.99.0\/25", + "version":63071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.99.0", + "prefixLen":25, + "network":"194.20.99.0\/25", + "version":63071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.99.128", + "prefixLen":25, + "network":"194.20.99.128\/25", + "version":63070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.99.128", + "prefixLen":25, + "network":"194.20.99.128\/25", + "version":63070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.112.0", + "prefixLen":25, + "network":"194.20.112.0\/25", + "version":63069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.112.0", + "prefixLen":25, + "network":"194.20.112.0\/25", + "version":63069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.112.128", + "prefixLen":25, + "network":"194.20.112.128\/25", + "version":63068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.112.128", + "prefixLen":25, + "network":"194.20.112.128\/25", + "version":63068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.113.0", + "prefixLen":25, + "network":"194.20.113.0\/25", + "version":63067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.113.0", + "prefixLen":25, + "network":"194.20.113.0\/25", + "version":63067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.113.128", + "prefixLen":25, + "network":"194.20.113.128\/25", + "version":63066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.113.128", + "prefixLen":25, + "network":"194.20.113.128\/25", + "version":63066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.114.0", + "prefixLen":25, + "network":"194.20.114.0\/25", + "version":63065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.114.0", + "prefixLen":25, + "network":"194.20.114.0\/25", + "version":63065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.114.128", + "prefixLen":25, + "network":"194.20.114.128\/25", + "version":63064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.114.128", + "prefixLen":25, + "network":"194.20.114.128\/25", + "version":63064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.115.0", + "prefixLen":25, + "network":"194.20.115.0\/25", + "version":63063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.115.0", + "prefixLen":25, + "network":"194.20.115.0\/25", + "version":63063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.115.128", + "prefixLen":25, + "network":"194.20.115.128\/25", + "version":63062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.115.128", + "prefixLen":25, + "network":"194.20.115.128\/25", + "version":63062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.128.0", + "prefixLen":25, + "network":"194.20.128.0\/25", + "version":63061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.128.0", + "prefixLen":25, + "network":"194.20.128.0\/25", + "version":63061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.128.128", + "prefixLen":25, + "network":"194.20.128.128\/25", + "version":63060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.128.128", + "prefixLen":25, + "network":"194.20.128.128\/25", + "version":63060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.129.0", + "prefixLen":25, + "network":"194.20.129.0\/25", + "version":63059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.129.0", + "prefixLen":25, + "network":"194.20.129.0\/25", + "version":63059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.129.128", + "prefixLen":25, + "network":"194.20.129.128\/25", + "version":63058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.129.128", + "prefixLen":25, + "network":"194.20.129.128\/25", + "version":63058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.130.0", + "prefixLen":25, + "network":"194.20.130.0\/25", + "version":63057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.130.0", + "prefixLen":25, + "network":"194.20.130.0\/25", + "version":63057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.130.128", + "prefixLen":25, + "network":"194.20.130.128\/25", + "version":63056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.130.128", + "prefixLen":25, + "network":"194.20.130.128\/25", + "version":63056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.131.0", + "prefixLen":25, + "network":"194.20.131.0\/25", + "version":63055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.131.0", + "prefixLen":25, + "network":"194.20.131.0\/25", + "version":63055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.131.128", + "prefixLen":25, + "network":"194.20.131.128\/25", + "version":63054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.131.128", + "prefixLen":25, + "network":"194.20.131.128\/25", + "version":63054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.144.0", + "prefixLen":25, + "network":"194.20.144.0\/25", + "version":63053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.144.0", + "prefixLen":25, + "network":"194.20.144.0\/25", + "version":63053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.144.128", + "prefixLen":25, + "network":"194.20.144.128\/25", + "version":63052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.144.128", + "prefixLen":25, + "network":"194.20.144.128\/25", + "version":63052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.145.0", + "prefixLen":25, + "network":"194.20.145.0\/25", + "version":63051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.145.0", + "prefixLen":25, + "network":"194.20.145.0\/25", + "version":63051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.145.128", + "prefixLen":25, + "network":"194.20.145.128\/25", + "version":63050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.145.128", + "prefixLen":25, + "network":"194.20.145.128\/25", + "version":63050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.146.0", + "prefixLen":25, + "network":"194.20.146.0\/25", + "version":63049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.146.0", + "prefixLen":25, + "network":"194.20.146.0\/25", + "version":63049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.146.128", + "prefixLen":25, + "network":"194.20.146.128\/25", + "version":63048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.146.128", + "prefixLen":25, + "network":"194.20.146.128\/25", + "version":63048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.147.0", + "prefixLen":25, + "network":"194.20.147.0\/25", + "version":63047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.147.0", + "prefixLen":25, + "network":"194.20.147.0\/25", + "version":63047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.147.128", + "prefixLen":25, + "network":"194.20.147.128\/25", + "version":63046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.147.128", + "prefixLen":25, + "network":"194.20.147.128\/25", + "version":63046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.160.0", + "prefixLen":25, + "network":"194.20.160.0\/25", + "version":63045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.160.0", + "prefixLen":25, + "network":"194.20.160.0\/25", + "version":63045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.160.128", + "prefixLen":25, + "network":"194.20.160.128\/25", + "version":63044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.160.128", + "prefixLen":25, + "network":"194.20.160.128\/25", + "version":63044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.161.0", + "prefixLen":25, + "network":"194.20.161.0\/25", + "version":63043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.161.0", + "prefixLen":25, + "network":"194.20.161.0\/25", + "version":63043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.161.128", + "prefixLen":25, + "network":"194.20.161.128\/25", + "version":63042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.161.128", + "prefixLen":25, + "network":"194.20.161.128\/25", + "version":63042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.162.0", + "prefixLen":25, + "network":"194.20.162.0\/25", + "version":63041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.162.0", + "prefixLen":25, + "network":"194.20.162.0\/25", + "version":63041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.162.128", + "prefixLen":25, + "network":"194.20.162.128\/25", + "version":63040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.162.128", + "prefixLen":25, + "network":"194.20.162.128\/25", + "version":63040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.163.0", + "prefixLen":25, + "network":"194.20.163.0\/25", + "version":63039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.163.0", + "prefixLen":25, + "network":"194.20.163.0\/25", + "version":63039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.163.128", + "prefixLen":25, + "network":"194.20.163.128\/25", + "version":63038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.163.128", + "prefixLen":25, + "network":"194.20.163.128\/25", + "version":63038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.176.0", + "prefixLen":25, + "network":"194.20.176.0\/25", + "version":63037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.176.0", + "prefixLen":25, + "network":"194.20.176.0\/25", + "version":63037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.176.128", + "prefixLen":25, + "network":"194.20.176.128\/25", + "version":63036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.176.128", + "prefixLen":25, + "network":"194.20.176.128\/25", + "version":63036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.177.0", + "prefixLen":25, + "network":"194.20.177.0\/25", + "version":63035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.177.0", + "prefixLen":25, + "network":"194.20.177.0\/25", + "version":63035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.177.128", + "prefixLen":25, + "network":"194.20.177.128\/25", + "version":63034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.177.128", + "prefixLen":25, + "network":"194.20.177.128\/25", + "version":63034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.178.0", + "prefixLen":25, + "network":"194.20.178.0\/25", + "version":63033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.178.0", + "prefixLen":25, + "network":"194.20.178.0\/25", + "version":63033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.178.128", + "prefixLen":25, + "network":"194.20.178.128\/25", + "version":63032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.178.128", + "prefixLen":25, + "network":"194.20.178.128\/25", + "version":63032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.179.0", + "prefixLen":25, + "network":"194.20.179.0\/25", + "version":63031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.179.0", + "prefixLen":25, + "network":"194.20.179.0\/25", + "version":63031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.179.128", + "prefixLen":25, + "network":"194.20.179.128\/25", + "version":63030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.179.128", + "prefixLen":25, + "network":"194.20.179.128\/25", + "version":63030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.192.0", + "prefixLen":25, + "network":"194.20.192.0\/25", + "version":63029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.192.0", + "prefixLen":25, + "network":"194.20.192.0\/25", + "version":63029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.192.128", + "prefixLen":25, + "network":"194.20.192.128\/25", + "version":63028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.192.128", + "prefixLen":25, + "network":"194.20.192.128\/25", + "version":63028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.193.0", + "prefixLen":25, + "network":"194.20.193.0\/25", + "version":63027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.193.0", + "prefixLen":25, + "network":"194.20.193.0\/25", + "version":63027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.193.128", + "prefixLen":25, + "network":"194.20.193.128\/25", + "version":63026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.193.128", + "prefixLen":25, + "network":"194.20.193.128\/25", + "version":63026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.194.0", + "prefixLen":25, + "network":"194.20.194.0\/25", + "version":63025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.194.0", + "prefixLen":25, + "network":"194.20.194.0\/25", + "version":63025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.194.128", + "prefixLen":25, + "network":"194.20.194.128\/25", + "version":63024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.194.128", + "prefixLen":25, + "network":"194.20.194.128\/25", + "version":63024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.195.0", + "prefixLen":25, + "network":"194.20.195.0\/25", + "version":63023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.195.0", + "prefixLen":25, + "network":"194.20.195.0\/25", + "version":63023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.195.128", + "prefixLen":25, + "network":"194.20.195.128\/25", + "version":63022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.195.128", + "prefixLen":25, + "network":"194.20.195.128\/25", + "version":63022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.208.0", + "prefixLen":25, + "network":"194.20.208.0\/25", + "version":63021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.208.0", + "prefixLen":25, + "network":"194.20.208.0\/25", + "version":63021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.208.128", + "prefixLen":25, + "network":"194.20.208.128\/25", + "version":63020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.208.128", + "prefixLen":25, + "network":"194.20.208.128\/25", + "version":63020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.209.0", + "prefixLen":25, + "network":"194.20.209.0\/25", + "version":63019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.209.0", + "prefixLen":25, + "network":"194.20.209.0\/25", + "version":63019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.209.128", + "prefixLen":25, + "network":"194.20.209.128\/25", + "version":63018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.209.128", + "prefixLen":25, + "network":"194.20.209.128\/25", + "version":63018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.210.0", + "prefixLen":25, + "network":"194.20.210.0\/25", + "version":63017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.210.0", + "prefixLen":25, + "network":"194.20.210.0\/25", + "version":63017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.210.128", + "prefixLen":25, + "network":"194.20.210.128\/25", + "version":63016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.210.128", + "prefixLen":25, + "network":"194.20.210.128\/25", + "version":63016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.211.0", + "prefixLen":25, + "network":"194.20.211.0\/25", + "version":63015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.211.0", + "prefixLen":25, + "network":"194.20.211.0\/25", + "version":63015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.211.128", + "prefixLen":25, + "network":"194.20.211.128\/25", + "version":63014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.211.128", + "prefixLen":25, + "network":"194.20.211.128\/25", + "version":63014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.224.0", + "prefixLen":25, + "network":"194.20.224.0\/25", + "version":63013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.224.0", + "prefixLen":25, + "network":"194.20.224.0\/25", + "version":63013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.224.128", + "prefixLen":25, + "network":"194.20.224.128\/25", + "version":63012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.224.128", + "prefixLen":25, + "network":"194.20.224.128\/25", + "version":63012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.225.0", + "prefixLen":25, + "network":"194.20.225.0\/25", + "version":63011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.225.0", + "prefixLen":25, + "network":"194.20.225.0\/25", + "version":63011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.225.128", + "prefixLen":25, + "network":"194.20.225.128\/25", + "version":63010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.225.128", + "prefixLen":25, + "network":"194.20.225.128\/25", + "version":63010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.226.0", + "prefixLen":25, + "network":"194.20.226.0\/25", + "version":63009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.226.0", + "prefixLen":25, + "network":"194.20.226.0\/25", + "version":63009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.226.128", + "prefixLen":25, + "network":"194.20.226.128\/25", + "version":63008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.226.128", + "prefixLen":25, + "network":"194.20.226.128\/25", + "version":63008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.227.0", + "prefixLen":25, + "network":"194.20.227.0\/25", + "version":63007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.227.0", + "prefixLen":25, + "network":"194.20.227.0\/25", + "version":63007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.227.128", + "prefixLen":25, + "network":"194.20.227.128\/25", + "version":63006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.227.128", + "prefixLen":25, + "network":"194.20.227.128\/25", + "version":63006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.240.0", + "prefixLen":25, + "network":"194.20.240.0\/25", + "version":63005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.240.0", + "prefixLen":25, + "network":"194.20.240.0\/25", + "version":63005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.240.128", + "prefixLen":25, + "network":"194.20.240.128\/25", + "version":63004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.240.128", + "prefixLen":25, + "network":"194.20.240.128\/25", + "version":63004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.241.0", + "prefixLen":25, + "network":"194.20.241.0\/25", + "version":63003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.241.0", + "prefixLen":25, + "network":"194.20.241.0\/25", + "version":63003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.241.128", + "prefixLen":25, + "network":"194.20.241.128\/25", + "version":63002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.241.128", + "prefixLen":25, + "network":"194.20.241.128\/25", + "version":63002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.242.0", + "prefixLen":25, + "network":"194.20.242.0\/25", + "version":63001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.242.0", + "prefixLen":25, + "network":"194.20.242.0\/25", + "version":63001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.242.128", + "prefixLen":25, + "network":"194.20.242.128\/25", + "version":63000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.242.128", + "prefixLen":25, + "network":"194.20.242.128\/25", + "version":63000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.243.0", + "prefixLen":25, + "network":"194.20.243.0\/25", + "version":62999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.243.0", + "prefixLen":25, + "network":"194.20.243.0\/25", + "version":62999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.20.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.20.243.128", + "prefixLen":25, + "network":"194.20.243.128\/25", + "version":62998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.20.243.128", + "prefixLen":25, + "network":"194.20.243.128\/25", + "version":62998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64964 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.0.0", + "prefixLen":25, + "network":"194.21.0.0\/25", + "version":63125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.0.0", + "prefixLen":25, + "network":"194.21.0.0\/25", + "version":63125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.0.128", + "prefixLen":25, + "network":"194.21.0.128\/25", + "version":63252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.0.128", + "prefixLen":25, + "network":"194.21.0.128\/25", + "version":63252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.1.0", + "prefixLen":25, + "network":"194.21.1.0\/25", + "version":63251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.1.0", + "prefixLen":25, + "network":"194.21.1.0\/25", + "version":63251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.1.128", + "prefixLen":25, + "network":"194.21.1.128\/25", + "version":63250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.1.128", + "prefixLen":25, + "network":"194.21.1.128\/25", + "version":63250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.2.0", + "prefixLen":25, + "network":"194.21.2.0\/25", + "version":63249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.2.0", + "prefixLen":25, + "network":"194.21.2.0\/25", + "version":63249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.2.128", + "prefixLen":25, + "network":"194.21.2.128\/25", + "version":63248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.2.128", + "prefixLen":25, + "network":"194.21.2.128\/25", + "version":63248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.3.0", + "prefixLen":25, + "network":"194.21.3.0\/25", + "version":63247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.3.0", + "prefixLen":25, + "network":"194.21.3.0\/25", + "version":63247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.3.128", + "prefixLen":25, + "network":"194.21.3.128\/25", + "version":63246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.3.128", + "prefixLen":25, + "network":"194.21.3.128\/25", + "version":63246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.16.0", + "prefixLen":25, + "network":"194.21.16.0\/25", + "version":63245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.16.0", + "prefixLen":25, + "network":"194.21.16.0\/25", + "version":63245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.16.128", + "prefixLen":25, + "network":"194.21.16.128\/25", + "version":63244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.16.128", + "prefixLen":25, + "network":"194.21.16.128\/25", + "version":63244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.17.0", + "prefixLen":25, + "network":"194.21.17.0\/25", + "version":63243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.17.0", + "prefixLen":25, + "network":"194.21.17.0\/25", + "version":63243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.17.128", + "prefixLen":25, + "network":"194.21.17.128\/25", + "version":63242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.17.128", + "prefixLen":25, + "network":"194.21.17.128\/25", + "version":63242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.18.0", + "prefixLen":25, + "network":"194.21.18.0\/25", + "version":63241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.18.0", + "prefixLen":25, + "network":"194.21.18.0\/25", + "version":63241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.18.128", + "prefixLen":25, + "network":"194.21.18.128\/25", + "version":63240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.18.128", + "prefixLen":25, + "network":"194.21.18.128\/25", + "version":63240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.19.0", + "prefixLen":25, + "network":"194.21.19.0\/25", + "version":63239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.19.0", + "prefixLen":25, + "network":"194.21.19.0\/25", + "version":63239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.19.128", + "prefixLen":25, + "network":"194.21.19.128\/25", + "version":63238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.19.128", + "prefixLen":25, + "network":"194.21.19.128\/25", + "version":63238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.32.0", + "prefixLen":25, + "network":"194.21.32.0\/25", + "version":63237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.32.0", + "prefixLen":25, + "network":"194.21.32.0\/25", + "version":63237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.32.128", + "prefixLen":25, + "network":"194.21.32.128\/25", + "version":63236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.32.128", + "prefixLen":25, + "network":"194.21.32.128\/25", + "version":63236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.33.0", + "prefixLen":25, + "network":"194.21.33.0\/25", + "version":63235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.33.0", + "prefixLen":25, + "network":"194.21.33.0\/25", + "version":63235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.33.128", + "prefixLen":25, + "network":"194.21.33.128\/25", + "version":63234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.33.128", + "prefixLen":25, + "network":"194.21.33.128\/25", + "version":63234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.34.0", + "prefixLen":25, + "network":"194.21.34.0\/25", + "version":63233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.34.0", + "prefixLen":25, + "network":"194.21.34.0\/25", + "version":63233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.34.128", + "prefixLen":25, + "network":"194.21.34.128\/25", + "version":63232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.34.128", + "prefixLen":25, + "network":"194.21.34.128\/25", + "version":63232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.35.0", + "prefixLen":25, + "network":"194.21.35.0\/25", + "version":63231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.35.0", + "prefixLen":25, + "network":"194.21.35.0\/25", + "version":63231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.35.128", + "prefixLen":25, + "network":"194.21.35.128\/25", + "version":63230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.35.128", + "prefixLen":25, + "network":"194.21.35.128\/25", + "version":63230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.48.0", + "prefixLen":25, + "network":"194.21.48.0\/25", + "version":63229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.48.0", + "prefixLen":25, + "network":"194.21.48.0\/25", + "version":63229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.48.128", + "prefixLen":25, + "network":"194.21.48.128\/25", + "version":63228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.48.128", + "prefixLen":25, + "network":"194.21.48.128\/25", + "version":63228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.49.0", + "prefixLen":25, + "network":"194.21.49.0\/25", + "version":63227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.49.0", + "prefixLen":25, + "network":"194.21.49.0\/25", + "version":63227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.49.128", + "prefixLen":25, + "network":"194.21.49.128\/25", + "version":63226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.49.128", + "prefixLen":25, + "network":"194.21.49.128\/25", + "version":63226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.50.0", + "prefixLen":25, + "network":"194.21.50.0\/25", + "version":63225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.50.0", + "prefixLen":25, + "network":"194.21.50.0\/25", + "version":63225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.50.128", + "prefixLen":25, + "network":"194.21.50.128\/25", + "version":63224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.50.128", + "prefixLen":25, + "network":"194.21.50.128\/25", + "version":63224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.51.0", + "prefixLen":25, + "network":"194.21.51.0\/25", + "version":63223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.51.0", + "prefixLen":25, + "network":"194.21.51.0\/25", + "version":63223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.51.128", + "prefixLen":25, + "network":"194.21.51.128\/25", + "version":63222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.51.128", + "prefixLen":25, + "network":"194.21.51.128\/25", + "version":63222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.64.0", + "prefixLen":25, + "network":"194.21.64.0\/25", + "version":63221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.64.0", + "prefixLen":25, + "network":"194.21.64.0\/25", + "version":63221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.64.128", + "prefixLen":25, + "network":"194.21.64.128\/25", + "version":63220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.64.128", + "prefixLen":25, + "network":"194.21.64.128\/25", + "version":63220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.65.0", + "prefixLen":25, + "network":"194.21.65.0\/25", + "version":63219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.65.0", + "prefixLen":25, + "network":"194.21.65.0\/25", + "version":63219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.65.128", + "prefixLen":25, + "network":"194.21.65.128\/25", + "version":63218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.65.128", + "prefixLen":25, + "network":"194.21.65.128\/25", + "version":63218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.66.0", + "prefixLen":25, + "network":"194.21.66.0\/25", + "version":63217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.66.0", + "prefixLen":25, + "network":"194.21.66.0\/25", + "version":63217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.66.128", + "prefixLen":25, + "network":"194.21.66.128\/25", + "version":63216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.66.128", + "prefixLen":25, + "network":"194.21.66.128\/25", + "version":63216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.67.0", + "prefixLen":25, + "network":"194.21.67.0\/25", + "version":63215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.67.0", + "prefixLen":25, + "network":"194.21.67.0\/25", + "version":63215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.67.128", + "prefixLen":25, + "network":"194.21.67.128\/25", + "version":63214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.67.128", + "prefixLen":25, + "network":"194.21.67.128\/25", + "version":63214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.80.0", + "prefixLen":25, + "network":"194.21.80.0\/25", + "version":63213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.80.0", + "prefixLen":25, + "network":"194.21.80.0\/25", + "version":63213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.80.128", + "prefixLen":25, + "network":"194.21.80.128\/25", + "version":63212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.80.128", + "prefixLen":25, + "network":"194.21.80.128\/25", + "version":63212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.81.0", + "prefixLen":25, + "network":"194.21.81.0\/25", + "version":63211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.81.0", + "prefixLen":25, + "network":"194.21.81.0\/25", + "version":63211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.81.128", + "prefixLen":25, + "network":"194.21.81.128\/25", + "version":63210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.81.128", + "prefixLen":25, + "network":"194.21.81.128\/25", + "version":63210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.82.0", + "prefixLen":25, + "network":"194.21.82.0\/25", + "version":63209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.82.0", + "prefixLen":25, + "network":"194.21.82.0\/25", + "version":63209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.82.128", + "prefixLen":25, + "network":"194.21.82.128\/25", + "version":63208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.82.128", + "prefixLen":25, + "network":"194.21.82.128\/25", + "version":63208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.83.0", + "prefixLen":25, + "network":"194.21.83.0\/25", + "version":63207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.83.0", + "prefixLen":25, + "network":"194.21.83.0\/25", + "version":63207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.83.128", + "prefixLen":25, + "network":"194.21.83.128\/25", + "version":63206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.83.128", + "prefixLen":25, + "network":"194.21.83.128\/25", + "version":63206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.96.0", + "prefixLen":25, + "network":"194.21.96.0\/25", + "version":63205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.96.0", + "prefixLen":25, + "network":"194.21.96.0\/25", + "version":63205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.96.128", + "prefixLen":25, + "network":"194.21.96.128\/25", + "version":63204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.96.128", + "prefixLen":25, + "network":"194.21.96.128\/25", + "version":63204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.97.0", + "prefixLen":25, + "network":"194.21.97.0\/25", + "version":63203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.97.0", + "prefixLen":25, + "network":"194.21.97.0\/25", + "version":63203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.97.128", + "prefixLen":25, + "network":"194.21.97.128\/25", + "version":63202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.97.128", + "prefixLen":25, + "network":"194.21.97.128\/25", + "version":63202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.98.0", + "prefixLen":25, + "network":"194.21.98.0\/25", + "version":63201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.98.0", + "prefixLen":25, + "network":"194.21.98.0\/25", + "version":63201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.98.128", + "prefixLen":25, + "network":"194.21.98.128\/25", + "version":63200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.98.128", + "prefixLen":25, + "network":"194.21.98.128\/25", + "version":63200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.99.0", + "prefixLen":25, + "network":"194.21.99.0\/25", + "version":63199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.99.0", + "prefixLen":25, + "network":"194.21.99.0\/25", + "version":63199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.99.128", + "prefixLen":25, + "network":"194.21.99.128\/25", + "version":63198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.99.128", + "prefixLen":25, + "network":"194.21.99.128\/25", + "version":63198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.112.0", + "prefixLen":25, + "network":"194.21.112.0\/25", + "version":63197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.112.0", + "prefixLen":25, + "network":"194.21.112.0\/25", + "version":63197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.112.128", + "prefixLen":25, + "network":"194.21.112.128\/25", + "version":63196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.112.128", + "prefixLen":25, + "network":"194.21.112.128\/25", + "version":63196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.113.0", + "prefixLen":25, + "network":"194.21.113.0\/25", + "version":63195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.113.0", + "prefixLen":25, + "network":"194.21.113.0\/25", + "version":63195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.113.128", + "prefixLen":25, + "network":"194.21.113.128\/25", + "version":63194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.113.128", + "prefixLen":25, + "network":"194.21.113.128\/25", + "version":63194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.114.0", + "prefixLen":25, + "network":"194.21.114.0\/25", + "version":63193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.114.0", + "prefixLen":25, + "network":"194.21.114.0\/25", + "version":63193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.114.128", + "prefixLen":25, + "network":"194.21.114.128\/25", + "version":63192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.114.128", + "prefixLen":25, + "network":"194.21.114.128\/25", + "version":63192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.115.0", + "prefixLen":25, + "network":"194.21.115.0\/25", + "version":63191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.115.0", + "prefixLen":25, + "network":"194.21.115.0\/25", + "version":63191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.115.128", + "prefixLen":25, + "network":"194.21.115.128\/25", + "version":63190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.115.128", + "prefixLen":25, + "network":"194.21.115.128\/25", + "version":63190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.128.0", + "prefixLen":25, + "network":"194.21.128.0\/25", + "version":63189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.128.0", + "prefixLen":25, + "network":"194.21.128.0\/25", + "version":63189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.128.128", + "prefixLen":25, + "network":"194.21.128.128\/25", + "version":63188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.128.128", + "prefixLen":25, + "network":"194.21.128.128\/25", + "version":63188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.129.0", + "prefixLen":25, + "network":"194.21.129.0\/25", + "version":63187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.129.0", + "prefixLen":25, + "network":"194.21.129.0\/25", + "version":63187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.129.128", + "prefixLen":25, + "network":"194.21.129.128\/25", + "version":63186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.129.128", + "prefixLen":25, + "network":"194.21.129.128\/25", + "version":63186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.130.0", + "prefixLen":25, + "network":"194.21.130.0\/25", + "version":63185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.130.0", + "prefixLen":25, + "network":"194.21.130.0\/25", + "version":63185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.130.128", + "prefixLen":25, + "network":"194.21.130.128\/25", + "version":63184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.130.128", + "prefixLen":25, + "network":"194.21.130.128\/25", + "version":63184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.131.0", + "prefixLen":25, + "network":"194.21.131.0\/25", + "version":63183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.131.0", + "prefixLen":25, + "network":"194.21.131.0\/25", + "version":63183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.131.128", + "prefixLen":25, + "network":"194.21.131.128\/25", + "version":63182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.131.128", + "prefixLen":25, + "network":"194.21.131.128\/25", + "version":63182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.144.0", + "prefixLen":25, + "network":"194.21.144.0\/25", + "version":63181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.144.0", + "prefixLen":25, + "network":"194.21.144.0\/25", + "version":63181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.144.128", + "prefixLen":25, + "network":"194.21.144.128\/25", + "version":63180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.144.128", + "prefixLen":25, + "network":"194.21.144.128\/25", + "version":63180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.145.0", + "prefixLen":25, + "network":"194.21.145.0\/25", + "version":63179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.145.0", + "prefixLen":25, + "network":"194.21.145.0\/25", + "version":63179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.145.128", + "prefixLen":25, + "network":"194.21.145.128\/25", + "version":63178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.145.128", + "prefixLen":25, + "network":"194.21.145.128\/25", + "version":63178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.146.0", + "prefixLen":25, + "network":"194.21.146.0\/25", + "version":63177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.146.0", + "prefixLen":25, + "network":"194.21.146.0\/25", + "version":63177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.146.128", + "prefixLen":25, + "network":"194.21.146.128\/25", + "version":63176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.146.128", + "prefixLen":25, + "network":"194.21.146.128\/25", + "version":63176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.147.0", + "prefixLen":25, + "network":"194.21.147.0\/25", + "version":63175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.147.0", + "prefixLen":25, + "network":"194.21.147.0\/25", + "version":63175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.147.128", + "prefixLen":25, + "network":"194.21.147.128\/25", + "version":63174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.147.128", + "prefixLen":25, + "network":"194.21.147.128\/25", + "version":63174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.160.0", + "prefixLen":25, + "network":"194.21.160.0\/25", + "version":63173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.160.0", + "prefixLen":25, + "network":"194.21.160.0\/25", + "version":63173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.160.128", + "prefixLen":25, + "network":"194.21.160.128\/25", + "version":63172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.160.128", + "prefixLen":25, + "network":"194.21.160.128\/25", + "version":63172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.161.0", + "prefixLen":25, + "network":"194.21.161.0\/25", + "version":63171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.161.0", + "prefixLen":25, + "network":"194.21.161.0\/25", + "version":63171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.161.128", + "prefixLen":25, + "network":"194.21.161.128\/25", + "version":63170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.161.128", + "prefixLen":25, + "network":"194.21.161.128\/25", + "version":63170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.162.0", + "prefixLen":25, + "network":"194.21.162.0\/25", + "version":63169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.162.0", + "prefixLen":25, + "network":"194.21.162.0\/25", + "version":63169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.162.128", + "prefixLen":25, + "network":"194.21.162.128\/25", + "version":63168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.162.128", + "prefixLen":25, + "network":"194.21.162.128\/25", + "version":63168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.163.0", + "prefixLen":25, + "network":"194.21.163.0\/25", + "version":63167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.163.0", + "prefixLen":25, + "network":"194.21.163.0\/25", + "version":63167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.163.128", + "prefixLen":25, + "network":"194.21.163.128\/25", + "version":63166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.163.128", + "prefixLen":25, + "network":"194.21.163.128\/25", + "version":63166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.176.0", + "prefixLen":25, + "network":"194.21.176.0\/25", + "version":63165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.176.0", + "prefixLen":25, + "network":"194.21.176.0\/25", + "version":63165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.176.128", + "prefixLen":25, + "network":"194.21.176.128\/25", + "version":63164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.176.128", + "prefixLen":25, + "network":"194.21.176.128\/25", + "version":63164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.177.0", + "prefixLen":25, + "network":"194.21.177.0\/25", + "version":63163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.177.0", + "prefixLen":25, + "network":"194.21.177.0\/25", + "version":63163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.177.128", + "prefixLen":25, + "network":"194.21.177.128\/25", + "version":63162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.177.128", + "prefixLen":25, + "network":"194.21.177.128\/25", + "version":63162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.178.0", + "prefixLen":25, + "network":"194.21.178.0\/25", + "version":63161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.178.0", + "prefixLen":25, + "network":"194.21.178.0\/25", + "version":63161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.178.128", + "prefixLen":25, + "network":"194.21.178.128\/25", + "version":63160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.178.128", + "prefixLen":25, + "network":"194.21.178.128\/25", + "version":63160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.179.0", + "prefixLen":25, + "network":"194.21.179.0\/25", + "version":63159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.179.0", + "prefixLen":25, + "network":"194.21.179.0\/25", + "version":63159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.179.128", + "prefixLen":25, + "network":"194.21.179.128\/25", + "version":63158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.179.128", + "prefixLen":25, + "network":"194.21.179.128\/25", + "version":63158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.192.0", + "prefixLen":25, + "network":"194.21.192.0\/25", + "version":63157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.192.0", + "prefixLen":25, + "network":"194.21.192.0\/25", + "version":63157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.192.128", + "prefixLen":25, + "network":"194.21.192.128\/25", + "version":63156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.192.128", + "prefixLen":25, + "network":"194.21.192.128\/25", + "version":63156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.193.0", + "prefixLen":25, + "network":"194.21.193.0\/25", + "version":63155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.193.0", + "prefixLen":25, + "network":"194.21.193.0\/25", + "version":63155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.193.128", + "prefixLen":25, + "network":"194.21.193.128\/25", + "version":63154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.193.128", + "prefixLen":25, + "network":"194.21.193.128\/25", + "version":63154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.194.0", + "prefixLen":25, + "network":"194.21.194.0\/25", + "version":63153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.194.0", + "prefixLen":25, + "network":"194.21.194.0\/25", + "version":63153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.194.128", + "prefixLen":25, + "network":"194.21.194.128\/25", + "version":63152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.194.128", + "prefixLen":25, + "network":"194.21.194.128\/25", + "version":63152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.195.0", + "prefixLen":25, + "network":"194.21.195.0\/25", + "version":63151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.195.0", + "prefixLen":25, + "network":"194.21.195.0\/25", + "version":63151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.195.128", + "prefixLen":25, + "network":"194.21.195.128\/25", + "version":63150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.195.128", + "prefixLen":25, + "network":"194.21.195.128\/25", + "version":63150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.208.0", + "prefixLen":25, + "network":"194.21.208.0\/25", + "version":63149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.208.0", + "prefixLen":25, + "network":"194.21.208.0\/25", + "version":63149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.208.128", + "prefixLen":25, + "network":"194.21.208.128\/25", + "version":63148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.208.128", + "prefixLen":25, + "network":"194.21.208.128\/25", + "version":63148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.209.0", + "prefixLen":25, + "network":"194.21.209.0\/25", + "version":63147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.209.0", + "prefixLen":25, + "network":"194.21.209.0\/25", + "version":63147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.209.128", + "prefixLen":25, + "network":"194.21.209.128\/25", + "version":63146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.209.128", + "prefixLen":25, + "network":"194.21.209.128\/25", + "version":63146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.210.0", + "prefixLen":25, + "network":"194.21.210.0\/25", + "version":63145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.210.0", + "prefixLen":25, + "network":"194.21.210.0\/25", + "version":63145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.210.128", + "prefixLen":25, + "network":"194.21.210.128\/25", + "version":63144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.210.128", + "prefixLen":25, + "network":"194.21.210.128\/25", + "version":63144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.211.0", + "prefixLen":25, + "network":"194.21.211.0\/25", + "version":63143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.211.0", + "prefixLen":25, + "network":"194.21.211.0\/25", + "version":63143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.211.128", + "prefixLen":25, + "network":"194.21.211.128\/25", + "version":63142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.211.128", + "prefixLen":25, + "network":"194.21.211.128\/25", + "version":63142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.224.0", + "prefixLen":25, + "network":"194.21.224.0\/25", + "version":63141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.224.0", + "prefixLen":25, + "network":"194.21.224.0\/25", + "version":63141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.224.128", + "prefixLen":25, + "network":"194.21.224.128\/25", + "version":63140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.224.128", + "prefixLen":25, + "network":"194.21.224.128\/25", + "version":63140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.225.0", + "prefixLen":25, + "network":"194.21.225.0\/25", + "version":63139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.225.0", + "prefixLen":25, + "network":"194.21.225.0\/25", + "version":63139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.225.128", + "prefixLen":25, + "network":"194.21.225.128\/25", + "version":63138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.225.128", + "prefixLen":25, + "network":"194.21.225.128\/25", + "version":63138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.226.0", + "prefixLen":25, + "network":"194.21.226.0\/25", + "version":63137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.226.0", + "prefixLen":25, + "network":"194.21.226.0\/25", + "version":63137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.226.128", + "prefixLen":25, + "network":"194.21.226.128\/25", + "version":63136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.226.128", + "prefixLen":25, + "network":"194.21.226.128\/25", + "version":63136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.227.0", + "prefixLen":25, + "network":"194.21.227.0\/25", + "version":63135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.227.0", + "prefixLen":25, + "network":"194.21.227.0\/25", + "version":63135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.227.128", + "prefixLen":25, + "network":"194.21.227.128\/25", + "version":63134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.227.128", + "prefixLen":25, + "network":"194.21.227.128\/25", + "version":63134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.240.0", + "prefixLen":25, + "network":"194.21.240.0\/25", + "version":63133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.240.0", + "prefixLen":25, + "network":"194.21.240.0\/25", + "version":63133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.240.128", + "prefixLen":25, + "network":"194.21.240.128\/25", + "version":63132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.240.128", + "prefixLen":25, + "network":"194.21.240.128\/25", + "version":63132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.241.0", + "prefixLen":25, + "network":"194.21.241.0\/25", + "version":63131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.241.0", + "prefixLen":25, + "network":"194.21.241.0\/25", + "version":63131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.241.128", + "prefixLen":25, + "network":"194.21.241.128\/25", + "version":63130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.241.128", + "prefixLen":25, + "network":"194.21.241.128\/25", + "version":63130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.242.0", + "prefixLen":25, + "network":"194.21.242.0\/25", + "version":63129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.242.0", + "prefixLen":25, + "network":"194.21.242.0\/25", + "version":63129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.242.128", + "prefixLen":25, + "network":"194.21.242.128\/25", + "version":63128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.242.128", + "prefixLen":25, + "network":"194.21.242.128\/25", + "version":63128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.243.0", + "prefixLen":25, + "network":"194.21.243.0\/25", + "version":63127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.243.0", + "prefixLen":25, + "network":"194.21.243.0\/25", + "version":63127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.21.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.21.243.128", + "prefixLen":25, + "network":"194.21.243.128\/25", + "version":63126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.21.243.128", + "prefixLen":25, + "network":"194.21.243.128\/25", + "version":63126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64965 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.0.0", + "prefixLen":25, + "network":"194.22.0.0\/25", + "version":63253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.0.0", + "prefixLen":25, + "network":"194.22.0.0\/25", + "version":63253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.0.128", + "prefixLen":25, + "network":"194.22.0.128\/25", + "version":63380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.0.128", + "prefixLen":25, + "network":"194.22.0.128\/25", + "version":63380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.1.0", + "prefixLen":25, + "network":"194.22.1.0\/25", + "version":63379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.1.0", + "prefixLen":25, + "network":"194.22.1.0\/25", + "version":63379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.1.128", + "prefixLen":25, + "network":"194.22.1.128\/25", + "version":63378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.1.128", + "prefixLen":25, + "network":"194.22.1.128\/25", + "version":63378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.2.0", + "prefixLen":25, + "network":"194.22.2.0\/25", + "version":63377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.2.0", + "prefixLen":25, + "network":"194.22.2.0\/25", + "version":63377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.2.128", + "prefixLen":25, + "network":"194.22.2.128\/25", + "version":63376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.2.128", + "prefixLen":25, + "network":"194.22.2.128\/25", + "version":63376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.3.0", + "prefixLen":25, + "network":"194.22.3.0\/25", + "version":63375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.3.0", + "prefixLen":25, + "network":"194.22.3.0\/25", + "version":63375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.3.128", + "prefixLen":25, + "network":"194.22.3.128\/25", + "version":63374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.3.128", + "prefixLen":25, + "network":"194.22.3.128\/25", + "version":63374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.16.0", + "prefixLen":25, + "network":"194.22.16.0\/25", + "version":63373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.16.0", + "prefixLen":25, + "network":"194.22.16.0\/25", + "version":63373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.16.128", + "prefixLen":25, + "network":"194.22.16.128\/25", + "version":63372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.16.128", + "prefixLen":25, + "network":"194.22.16.128\/25", + "version":63372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.17.0", + "prefixLen":25, + "network":"194.22.17.0\/25", + "version":63371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.17.0", + "prefixLen":25, + "network":"194.22.17.0\/25", + "version":63371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.17.128", + "prefixLen":25, + "network":"194.22.17.128\/25", + "version":63370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.17.128", + "prefixLen":25, + "network":"194.22.17.128\/25", + "version":63370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.18.0", + "prefixLen":25, + "network":"194.22.18.0\/25", + "version":63369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.18.0", + "prefixLen":25, + "network":"194.22.18.0\/25", + "version":63369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.18.128", + "prefixLen":25, + "network":"194.22.18.128\/25", + "version":63368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.18.128", + "prefixLen":25, + "network":"194.22.18.128\/25", + "version":63368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.19.0", + "prefixLen":25, + "network":"194.22.19.0\/25", + "version":63367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.19.0", + "prefixLen":25, + "network":"194.22.19.0\/25", + "version":63367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.19.128", + "prefixLen":25, + "network":"194.22.19.128\/25", + "version":63366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.19.128", + "prefixLen":25, + "network":"194.22.19.128\/25", + "version":63366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.32.0", + "prefixLen":25, + "network":"194.22.32.0\/25", + "version":63365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.32.0", + "prefixLen":25, + "network":"194.22.32.0\/25", + "version":63365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.32.128", + "prefixLen":25, + "network":"194.22.32.128\/25", + "version":63364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.32.128", + "prefixLen":25, + "network":"194.22.32.128\/25", + "version":63364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.33.0", + "prefixLen":25, + "network":"194.22.33.0\/25", + "version":63363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.33.0", + "prefixLen":25, + "network":"194.22.33.0\/25", + "version":63363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.33.128", + "prefixLen":25, + "network":"194.22.33.128\/25", + "version":63362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.33.128", + "prefixLen":25, + "network":"194.22.33.128\/25", + "version":63362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.34.0", + "prefixLen":25, + "network":"194.22.34.0\/25", + "version":63361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.34.0", + "prefixLen":25, + "network":"194.22.34.0\/25", + "version":63361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.34.128", + "prefixLen":25, + "network":"194.22.34.128\/25", + "version":63360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.34.128", + "prefixLen":25, + "network":"194.22.34.128\/25", + "version":63360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.35.0", + "prefixLen":25, + "network":"194.22.35.0\/25", + "version":63359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.35.0", + "prefixLen":25, + "network":"194.22.35.0\/25", + "version":63359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.35.128", + "prefixLen":25, + "network":"194.22.35.128\/25", + "version":63358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.35.128", + "prefixLen":25, + "network":"194.22.35.128\/25", + "version":63358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.48.0", + "prefixLen":25, + "network":"194.22.48.0\/25", + "version":63357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.48.0", + "prefixLen":25, + "network":"194.22.48.0\/25", + "version":63357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.48.128", + "prefixLen":25, + "network":"194.22.48.128\/25", + "version":63356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.48.128", + "prefixLen":25, + "network":"194.22.48.128\/25", + "version":63356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.49.0", + "prefixLen":25, + "network":"194.22.49.0\/25", + "version":63355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.49.0", + "prefixLen":25, + "network":"194.22.49.0\/25", + "version":63355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.49.128", + "prefixLen":25, + "network":"194.22.49.128\/25", + "version":63354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.49.128", + "prefixLen":25, + "network":"194.22.49.128\/25", + "version":63354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.50.0", + "prefixLen":25, + "network":"194.22.50.0\/25", + "version":63353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.50.0", + "prefixLen":25, + "network":"194.22.50.0\/25", + "version":63353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.50.128", + "prefixLen":25, + "network":"194.22.50.128\/25", + "version":63352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.50.128", + "prefixLen":25, + "network":"194.22.50.128\/25", + "version":63352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.51.0", + "prefixLen":25, + "network":"194.22.51.0\/25", + "version":63351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.51.0", + "prefixLen":25, + "network":"194.22.51.0\/25", + "version":63351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.51.128", + "prefixLen":25, + "network":"194.22.51.128\/25", + "version":63350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.51.128", + "prefixLen":25, + "network":"194.22.51.128\/25", + "version":63350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.64.0", + "prefixLen":25, + "network":"194.22.64.0\/25", + "version":63349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.64.0", + "prefixLen":25, + "network":"194.22.64.0\/25", + "version":63349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.64.128", + "prefixLen":25, + "network":"194.22.64.128\/25", + "version":63348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.64.128", + "prefixLen":25, + "network":"194.22.64.128\/25", + "version":63348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.65.0", + "prefixLen":25, + "network":"194.22.65.0\/25", + "version":63347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.65.0", + "prefixLen":25, + "network":"194.22.65.0\/25", + "version":63347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.65.128", + "prefixLen":25, + "network":"194.22.65.128\/25", + "version":63346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.65.128", + "prefixLen":25, + "network":"194.22.65.128\/25", + "version":63346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.66.0", + "prefixLen":25, + "network":"194.22.66.0\/25", + "version":63345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.66.0", + "prefixLen":25, + "network":"194.22.66.0\/25", + "version":63345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.66.128", + "prefixLen":25, + "network":"194.22.66.128\/25", + "version":63344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.66.128", + "prefixLen":25, + "network":"194.22.66.128\/25", + "version":63344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.67.0", + "prefixLen":25, + "network":"194.22.67.0\/25", + "version":63343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.67.0", + "prefixLen":25, + "network":"194.22.67.0\/25", + "version":63343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.67.128", + "prefixLen":25, + "network":"194.22.67.128\/25", + "version":63342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.67.128", + "prefixLen":25, + "network":"194.22.67.128\/25", + "version":63342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.80.0", + "prefixLen":25, + "network":"194.22.80.0\/25", + "version":63341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.80.0", + "prefixLen":25, + "network":"194.22.80.0\/25", + "version":63341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.80.128", + "prefixLen":25, + "network":"194.22.80.128\/25", + "version":63340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.80.128", + "prefixLen":25, + "network":"194.22.80.128\/25", + "version":63340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.81.0", + "prefixLen":25, + "network":"194.22.81.0\/25", + "version":63339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.81.0", + "prefixLen":25, + "network":"194.22.81.0\/25", + "version":63339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.81.128", + "prefixLen":25, + "network":"194.22.81.128\/25", + "version":63338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.81.128", + "prefixLen":25, + "network":"194.22.81.128\/25", + "version":63338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.82.0", + "prefixLen":25, + "network":"194.22.82.0\/25", + "version":63337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.82.0", + "prefixLen":25, + "network":"194.22.82.0\/25", + "version":63337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.82.128", + "prefixLen":25, + "network":"194.22.82.128\/25", + "version":63336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.82.128", + "prefixLen":25, + "network":"194.22.82.128\/25", + "version":63336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.83.0", + "prefixLen":25, + "network":"194.22.83.0\/25", + "version":63335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.83.0", + "prefixLen":25, + "network":"194.22.83.0\/25", + "version":63335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.83.128", + "prefixLen":25, + "network":"194.22.83.128\/25", + "version":63334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.83.128", + "prefixLen":25, + "network":"194.22.83.128\/25", + "version":63334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.96.0", + "prefixLen":25, + "network":"194.22.96.0\/25", + "version":63333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.96.0", + "prefixLen":25, + "network":"194.22.96.0\/25", + "version":63333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.96.128", + "prefixLen":25, + "network":"194.22.96.128\/25", + "version":63332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.96.128", + "prefixLen":25, + "network":"194.22.96.128\/25", + "version":63332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.97.0", + "prefixLen":25, + "network":"194.22.97.0\/25", + "version":63331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.97.0", + "prefixLen":25, + "network":"194.22.97.0\/25", + "version":63331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.97.128", + "prefixLen":25, + "network":"194.22.97.128\/25", + "version":63330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.97.128", + "prefixLen":25, + "network":"194.22.97.128\/25", + "version":63330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.98.0", + "prefixLen":25, + "network":"194.22.98.0\/25", + "version":63329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.98.0", + "prefixLen":25, + "network":"194.22.98.0\/25", + "version":63329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.98.128", + "prefixLen":25, + "network":"194.22.98.128\/25", + "version":63328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.98.128", + "prefixLen":25, + "network":"194.22.98.128\/25", + "version":63328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.99.0", + "prefixLen":25, + "network":"194.22.99.0\/25", + "version":63327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.99.0", + "prefixLen":25, + "network":"194.22.99.0\/25", + "version":63327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.99.128", + "prefixLen":25, + "network":"194.22.99.128\/25", + "version":63326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.99.128", + "prefixLen":25, + "network":"194.22.99.128\/25", + "version":63326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.112.0", + "prefixLen":25, + "network":"194.22.112.0\/25", + "version":63325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.112.0", + "prefixLen":25, + "network":"194.22.112.0\/25", + "version":63325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.112.128", + "prefixLen":25, + "network":"194.22.112.128\/25", + "version":63324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.112.128", + "prefixLen":25, + "network":"194.22.112.128\/25", + "version":63324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.113.0", + "prefixLen":25, + "network":"194.22.113.0\/25", + "version":63323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.113.0", + "prefixLen":25, + "network":"194.22.113.0\/25", + "version":63323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.113.128", + "prefixLen":25, + "network":"194.22.113.128\/25", + "version":63322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.113.128", + "prefixLen":25, + "network":"194.22.113.128\/25", + "version":63322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.114.0", + "prefixLen":25, + "network":"194.22.114.0\/25", + "version":63321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.114.0", + "prefixLen":25, + "network":"194.22.114.0\/25", + "version":63321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.114.128", + "prefixLen":25, + "network":"194.22.114.128\/25", + "version":63320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.114.128", + "prefixLen":25, + "network":"194.22.114.128\/25", + "version":63320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.115.0", + "prefixLen":25, + "network":"194.22.115.0\/25", + "version":63319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.115.0", + "prefixLen":25, + "network":"194.22.115.0\/25", + "version":63319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.115.128", + "prefixLen":25, + "network":"194.22.115.128\/25", + "version":63318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.115.128", + "prefixLen":25, + "network":"194.22.115.128\/25", + "version":63318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.128.0", + "prefixLen":25, + "network":"194.22.128.0\/25", + "version":63317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.128.0", + "prefixLen":25, + "network":"194.22.128.0\/25", + "version":63317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.128.128", + "prefixLen":25, + "network":"194.22.128.128\/25", + "version":63316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.128.128", + "prefixLen":25, + "network":"194.22.128.128\/25", + "version":63316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.129.0", + "prefixLen":25, + "network":"194.22.129.0\/25", + "version":63315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.129.0", + "prefixLen":25, + "network":"194.22.129.0\/25", + "version":63315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.129.128", + "prefixLen":25, + "network":"194.22.129.128\/25", + "version":63314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.129.128", + "prefixLen":25, + "network":"194.22.129.128\/25", + "version":63314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.130.0", + "prefixLen":25, + "network":"194.22.130.0\/25", + "version":63313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.130.0", + "prefixLen":25, + "network":"194.22.130.0\/25", + "version":63313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.130.128", + "prefixLen":25, + "network":"194.22.130.128\/25", + "version":63312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.130.128", + "prefixLen":25, + "network":"194.22.130.128\/25", + "version":63312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.131.0", + "prefixLen":25, + "network":"194.22.131.0\/25", + "version":63311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.131.0", + "prefixLen":25, + "network":"194.22.131.0\/25", + "version":63311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.131.128", + "prefixLen":25, + "network":"194.22.131.128\/25", + "version":63310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.131.128", + "prefixLen":25, + "network":"194.22.131.128\/25", + "version":63310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.144.0", + "prefixLen":25, + "network":"194.22.144.0\/25", + "version":63309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.144.0", + "prefixLen":25, + "network":"194.22.144.0\/25", + "version":63309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.144.128", + "prefixLen":25, + "network":"194.22.144.128\/25", + "version":63308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.144.128", + "prefixLen":25, + "network":"194.22.144.128\/25", + "version":63308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.145.0", + "prefixLen":25, + "network":"194.22.145.0\/25", + "version":63307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.145.0", + "prefixLen":25, + "network":"194.22.145.0\/25", + "version":63307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.145.128", + "prefixLen":25, + "network":"194.22.145.128\/25", + "version":63306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.145.128", + "prefixLen":25, + "network":"194.22.145.128\/25", + "version":63306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.146.0", + "prefixLen":25, + "network":"194.22.146.0\/25", + "version":63305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.146.0", + "prefixLen":25, + "network":"194.22.146.0\/25", + "version":63305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.146.128", + "prefixLen":25, + "network":"194.22.146.128\/25", + "version":63304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.146.128", + "prefixLen":25, + "network":"194.22.146.128\/25", + "version":63304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.147.0", + "prefixLen":25, + "network":"194.22.147.0\/25", + "version":63303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.147.0", + "prefixLen":25, + "network":"194.22.147.0\/25", + "version":63303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.147.128", + "prefixLen":25, + "network":"194.22.147.128\/25", + "version":63302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.147.128", + "prefixLen":25, + "network":"194.22.147.128\/25", + "version":63302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.160.0", + "prefixLen":25, + "network":"194.22.160.0\/25", + "version":63301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.160.0", + "prefixLen":25, + "network":"194.22.160.0\/25", + "version":63301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.160.128", + "prefixLen":25, + "network":"194.22.160.128\/25", + "version":63300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.160.128", + "prefixLen":25, + "network":"194.22.160.128\/25", + "version":63300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.161.0", + "prefixLen":25, + "network":"194.22.161.0\/25", + "version":63299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.161.0", + "prefixLen":25, + "network":"194.22.161.0\/25", + "version":63299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.161.128", + "prefixLen":25, + "network":"194.22.161.128\/25", + "version":63298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.161.128", + "prefixLen":25, + "network":"194.22.161.128\/25", + "version":63298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.162.0", + "prefixLen":25, + "network":"194.22.162.0\/25", + "version":63297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.162.0", + "prefixLen":25, + "network":"194.22.162.0\/25", + "version":63297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.162.128", + "prefixLen":25, + "network":"194.22.162.128\/25", + "version":63296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.162.128", + "prefixLen":25, + "network":"194.22.162.128\/25", + "version":63296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.163.0", + "prefixLen":25, + "network":"194.22.163.0\/25", + "version":63295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.163.0", + "prefixLen":25, + "network":"194.22.163.0\/25", + "version":63295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.163.128", + "prefixLen":25, + "network":"194.22.163.128\/25", + "version":63294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.163.128", + "prefixLen":25, + "network":"194.22.163.128\/25", + "version":63294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.176.0", + "prefixLen":25, + "network":"194.22.176.0\/25", + "version":63293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.176.0", + "prefixLen":25, + "network":"194.22.176.0\/25", + "version":63293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.176.128", + "prefixLen":25, + "network":"194.22.176.128\/25", + "version":63292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.176.128", + "prefixLen":25, + "network":"194.22.176.128\/25", + "version":63292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.177.0", + "prefixLen":25, + "network":"194.22.177.0\/25", + "version":63291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.177.0", + "prefixLen":25, + "network":"194.22.177.0\/25", + "version":63291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.177.128", + "prefixLen":25, + "network":"194.22.177.128\/25", + "version":63290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.177.128", + "prefixLen":25, + "network":"194.22.177.128\/25", + "version":63290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.178.0", + "prefixLen":25, + "network":"194.22.178.0\/25", + "version":63289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.178.0", + "prefixLen":25, + "network":"194.22.178.0\/25", + "version":63289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.178.128", + "prefixLen":25, + "network":"194.22.178.128\/25", + "version":63288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.178.128", + "prefixLen":25, + "network":"194.22.178.128\/25", + "version":63288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.179.0", + "prefixLen":25, + "network":"194.22.179.0\/25", + "version":63287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.179.0", + "prefixLen":25, + "network":"194.22.179.0\/25", + "version":63287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.179.128", + "prefixLen":25, + "network":"194.22.179.128\/25", + "version":63286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.179.128", + "prefixLen":25, + "network":"194.22.179.128\/25", + "version":63286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.192.0", + "prefixLen":25, + "network":"194.22.192.0\/25", + "version":63285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.192.0", + "prefixLen":25, + "network":"194.22.192.0\/25", + "version":63285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.192.128", + "prefixLen":25, + "network":"194.22.192.128\/25", + "version":63284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.192.128", + "prefixLen":25, + "network":"194.22.192.128\/25", + "version":63284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.193.0", + "prefixLen":25, + "network":"194.22.193.0\/25", + "version":63283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.193.0", + "prefixLen":25, + "network":"194.22.193.0\/25", + "version":63283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.193.128", + "prefixLen":25, + "network":"194.22.193.128\/25", + "version":63282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.193.128", + "prefixLen":25, + "network":"194.22.193.128\/25", + "version":63282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.194.0", + "prefixLen":25, + "network":"194.22.194.0\/25", + "version":63281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.194.0", + "prefixLen":25, + "network":"194.22.194.0\/25", + "version":63281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.194.128", + "prefixLen":25, + "network":"194.22.194.128\/25", + "version":63280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.194.128", + "prefixLen":25, + "network":"194.22.194.128\/25", + "version":63280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.195.0", + "prefixLen":25, + "network":"194.22.195.0\/25", + "version":63279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.195.0", + "prefixLen":25, + "network":"194.22.195.0\/25", + "version":63279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.195.128", + "prefixLen":25, + "network":"194.22.195.128\/25", + "version":63278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.195.128", + "prefixLen":25, + "network":"194.22.195.128\/25", + "version":63278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.208.0", + "prefixLen":25, + "network":"194.22.208.0\/25", + "version":63277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.208.0", + "prefixLen":25, + "network":"194.22.208.0\/25", + "version":63277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.208.128", + "prefixLen":25, + "network":"194.22.208.128\/25", + "version":63276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.208.128", + "prefixLen":25, + "network":"194.22.208.128\/25", + "version":63276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.209.0", + "prefixLen":25, + "network":"194.22.209.0\/25", + "version":63275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.209.0", + "prefixLen":25, + "network":"194.22.209.0\/25", + "version":63275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.209.128", + "prefixLen":25, + "network":"194.22.209.128\/25", + "version":63274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.209.128", + "prefixLen":25, + "network":"194.22.209.128\/25", + "version":63274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.210.0", + "prefixLen":25, + "network":"194.22.210.0\/25", + "version":63273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.210.0", + "prefixLen":25, + "network":"194.22.210.0\/25", + "version":63273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.210.128", + "prefixLen":25, + "network":"194.22.210.128\/25", + "version":63272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.210.128", + "prefixLen":25, + "network":"194.22.210.128\/25", + "version":63272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.211.0", + "prefixLen":25, + "network":"194.22.211.0\/25", + "version":63271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.211.0", + "prefixLen":25, + "network":"194.22.211.0\/25", + "version":63271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.211.128", + "prefixLen":25, + "network":"194.22.211.128\/25", + "version":63270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.211.128", + "prefixLen":25, + "network":"194.22.211.128\/25", + "version":63270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.224.0", + "prefixLen":25, + "network":"194.22.224.0\/25", + "version":63269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.224.0", + "prefixLen":25, + "network":"194.22.224.0\/25", + "version":63269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.224.128", + "prefixLen":25, + "network":"194.22.224.128\/25", + "version":63268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.224.128", + "prefixLen":25, + "network":"194.22.224.128\/25", + "version":63268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.225.0", + "prefixLen":25, + "network":"194.22.225.0\/25", + "version":63267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.225.0", + "prefixLen":25, + "network":"194.22.225.0\/25", + "version":63267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.225.128", + "prefixLen":25, + "network":"194.22.225.128\/25", + "version":63266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.225.128", + "prefixLen":25, + "network":"194.22.225.128\/25", + "version":63266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.226.0", + "prefixLen":25, + "network":"194.22.226.0\/25", + "version":63265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.226.0", + "prefixLen":25, + "network":"194.22.226.0\/25", + "version":63265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.226.128", + "prefixLen":25, + "network":"194.22.226.128\/25", + "version":63264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.226.128", + "prefixLen":25, + "network":"194.22.226.128\/25", + "version":63264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.227.0", + "prefixLen":25, + "network":"194.22.227.0\/25", + "version":63263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.227.0", + "prefixLen":25, + "network":"194.22.227.0\/25", + "version":63263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.227.128", + "prefixLen":25, + "network":"194.22.227.128\/25", + "version":63262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.227.128", + "prefixLen":25, + "network":"194.22.227.128\/25", + "version":63262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.240.0", + "prefixLen":25, + "network":"194.22.240.0\/25", + "version":63261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.240.0", + "prefixLen":25, + "network":"194.22.240.0\/25", + "version":63261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.240.128", + "prefixLen":25, + "network":"194.22.240.128\/25", + "version":63260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.240.128", + "prefixLen":25, + "network":"194.22.240.128\/25", + "version":63260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.241.0", + "prefixLen":25, + "network":"194.22.241.0\/25", + "version":63259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.241.0", + "prefixLen":25, + "network":"194.22.241.0\/25", + "version":63259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.241.128", + "prefixLen":25, + "network":"194.22.241.128\/25", + "version":63258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.241.128", + "prefixLen":25, + "network":"194.22.241.128\/25", + "version":63258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.242.0", + "prefixLen":25, + "network":"194.22.242.0\/25", + "version":63257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.242.0", + "prefixLen":25, + "network":"194.22.242.0\/25", + "version":63257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.242.128", + "prefixLen":25, + "network":"194.22.242.128\/25", + "version":63256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.242.128", + "prefixLen":25, + "network":"194.22.242.128\/25", + "version":63256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.243.0", + "prefixLen":25, + "network":"194.22.243.0\/25", + "version":63255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.243.0", + "prefixLen":25, + "network":"194.22.243.0\/25", + "version":63255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.22.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.22.243.128", + "prefixLen":25, + "network":"194.22.243.128\/25", + "version":63254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.22.243.128", + "prefixLen":25, + "network":"194.22.243.128\/25", + "version":63254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64966 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.0.0", + "prefixLen":25, + "network":"194.23.0.0\/25", + "version":63381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.0.0", + "prefixLen":25, + "network":"194.23.0.0\/25", + "version":63381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.0.128", + "prefixLen":25, + "network":"194.23.0.128\/25", + "version":63508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.0.128", + "prefixLen":25, + "network":"194.23.0.128\/25", + "version":63508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.1.0", + "prefixLen":25, + "network":"194.23.1.0\/25", + "version":63507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.1.0", + "prefixLen":25, + "network":"194.23.1.0\/25", + "version":63507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.1.128", + "prefixLen":25, + "network":"194.23.1.128\/25", + "version":63506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.1.128", + "prefixLen":25, + "network":"194.23.1.128\/25", + "version":63506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.2.0", + "prefixLen":25, + "network":"194.23.2.0\/25", + "version":63505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.2.0", + "prefixLen":25, + "network":"194.23.2.0\/25", + "version":63505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.2.128", + "prefixLen":25, + "network":"194.23.2.128\/25", + "version":63504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.2.128", + "prefixLen":25, + "network":"194.23.2.128\/25", + "version":63504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.3.0", + "prefixLen":25, + "network":"194.23.3.0\/25", + "version":63503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.3.0", + "prefixLen":25, + "network":"194.23.3.0\/25", + "version":63503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.3.128", + "prefixLen":25, + "network":"194.23.3.128\/25", + "version":63502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.3.128", + "prefixLen":25, + "network":"194.23.3.128\/25", + "version":63502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.16.0", + "prefixLen":25, + "network":"194.23.16.0\/25", + "version":63501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.16.0", + "prefixLen":25, + "network":"194.23.16.0\/25", + "version":63501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.16.128", + "prefixLen":25, + "network":"194.23.16.128\/25", + "version":63500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.16.128", + "prefixLen":25, + "network":"194.23.16.128\/25", + "version":63500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.17.0", + "prefixLen":25, + "network":"194.23.17.0\/25", + "version":63499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.17.0", + "prefixLen":25, + "network":"194.23.17.0\/25", + "version":63499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.17.128", + "prefixLen":25, + "network":"194.23.17.128\/25", + "version":63498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.17.128", + "prefixLen":25, + "network":"194.23.17.128\/25", + "version":63498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.18.0", + "prefixLen":25, + "network":"194.23.18.0\/25", + "version":63497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.18.0", + "prefixLen":25, + "network":"194.23.18.0\/25", + "version":63497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.18.128", + "prefixLen":25, + "network":"194.23.18.128\/25", + "version":63496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.18.128", + "prefixLen":25, + "network":"194.23.18.128\/25", + "version":63496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.19.0", + "prefixLen":25, + "network":"194.23.19.0\/25", + "version":63495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.19.0", + "prefixLen":25, + "network":"194.23.19.0\/25", + "version":63495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.19.128", + "prefixLen":25, + "network":"194.23.19.128\/25", + "version":63494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.19.128", + "prefixLen":25, + "network":"194.23.19.128\/25", + "version":63494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.32.0", + "prefixLen":25, + "network":"194.23.32.0\/25", + "version":63493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.32.0", + "prefixLen":25, + "network":"194.23.32.0\/25", + "version":63493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.32.128", + "prefixLen":25, + "network":"194.23.32.128\/25", + "version":63492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.32.128", + "prefixLen":25, + "network":"194.23.32.128\/25", + "version":63492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.33.0", + "prefixLen":25, + "network":"194.23.33.0\/25", + "version":63491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.33.0", + "prefixLen":25, + "network":"194.23.33.0\/25", + "version":63491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.33.128", + "prefixLen":25, + "network":"194.23.33.128\/25", + "version":63490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.33.128", + "prefixLen":25, + "network":"194.23.33.128\/25", + "version":63490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.34.0", + "prefixLen":25, + "network":"194.23.34.0\/25", + "version":63489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.34.0", + "prefixLen":25, + "network":"194.23.34.0\/25", + "version":63489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.34.128", + "prefixLen":25, + "network":"194.23.34.128\/25", + "version":63488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.34.128", + "prefixLen":25, + "network":"194.23.34.128\/25", + "version":63488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.35.0", + "prefixLen":25, + "network":"194.23.35.0\/25", + "version":63487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.35.0", + "prefixLen":25, + "network":"194.23.35.0\/25", + "version":63487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.35.128", + "prefixLen":25, + "network":"194.23.35.128\/25", + "version":63486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.35.128", + "prefixLen":25, + "network":"194.23.35.128\/25", + "version":63486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.48.0", + "prefixLen":25, + "network":"194.23.48.0\/25", + "version":63485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.48.0", + "prefixLen":25, + "network":"194.23.48.0\/25", + "version":63485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.48.128", + "prefixLen":25, + "network":"194.23.48.128\/25", + "version":63484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.48.128", + "prefixLen":25, + "network":"194.23.48.128\/25", + "version":63484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.49.0", + "prefixLen":25, + "network":"194.23.49.0\/25", + "version":63483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.49.0", + "prefixLen":25, + "network":"194.23.49.0\/25", + "version":63483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.49.128", + "prefixLen":25, + "network":"194.23.49.128\/25", + "version":63482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.49.128", + "prefixLen":25, + "network":"194.23.49.128\/25", + "version":63482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.50.0", + "prefixLen":25, + "network":"194.23.50.0\/25", + "version":63481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.50.0", + "prefixLen":25, + "network":"194.23.50.0\/25", + "version":63481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.50.128", + "prefixLen":25, + "network":"194.23.50.128\/25", + "version":63480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.50.128", + "prefixLen":25, + "network":"194.23.50.128\/25", + "version":63480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.51.0", + "prefixLen":25, + "network":"194.23.51.0\/25", + "version":63479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.51.0", + "prefixLen":25, + "network":"194.23.51.0\/25", + "version":63479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.51.128", + "prefixLen":25, + "network":"194.23.51.128\/25", + "version":63478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.51.128", + "prefixLen":25, + "network":"194.23.51.128\/25", + "version":63478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.64.0", + "prefixLen":25, + "network":"194.23.64.0\/25", + "version":63477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.64.0", + "prefixLen":25, + "network":"194.23.64.0\/25", + "version":63477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.64.128", + "prefixLen":25, + "network":"194.23.64.128\/25", + "version":63476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.64.128", + "prefixLen":25, + "network":"194.23.64.128\/25", + "version":63476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.65.0", + "prefixLen":25, + "network":"194.23.65.0\/25", + "version":63475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.65.0", + "prefixLen":25, + "network":"194.23.65.0\/25", + "version":63475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.65.128", + "prefixLen":25, + "network":"194.23.65.128\/25", + "version":63474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.65.128", + "prefixLen":25, + "network":"194.23.65.128\/25", + "version":63474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.66.0", + "prefixLen":25, + "network":"194.23.66.0\/25", + "version":63473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.66.0", + "prefixLen":25, + "network":"194.23.66.0\/25", + "version":63473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.66.128", + "prefixLen":25, + "network":"194.23.66.128\/25", + "version":63472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.66.128", + "prefixLen":25, + "network":"194.23.66.128\/25", + "version":63472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.67.0", + "prefixLen":25, + "network":"194.23.67.0\/25", + "version":63471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.67.0", + "prefixLen":25, + "network":"194.23.67.0\/25", + "version":63471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.67.128", + "prefixLen":25, + "network":"194.23.67.128\/25", + "version":63470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.67.128", + "prefixLen":25, + "network":"194.23.67.128\/25", + "version":63470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.80.0", + "prefixLen":25, + "network":"194.23.80.0\/25", + "version":63469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.80.0", + "prefixLen":25, + "network":"194.23.80.0\/25", + "version":63469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.80.128", + "prefixLen":25, + "network":"194.23.80.128\/25", + "version":63468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.80.128", + "prefixLen":25, + "network":"194.23.80.128\/25", + "version":63468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.81.0", + "prefixLen":25, + "network":"194.23.81.0\/25", + "version":63467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.81.0", + "prefixLen":25, + "network":"194.23.81.0\/25", + "version":63467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.81.128", + "prefixLen":25, + "network":"194.23.81.128\/25", + "version":63466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.81.128", + "prefixLen":25, + "network":"194.23.81.128\/25", + "version":63466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.82.0", + "prefixLen":25, + "network":"194.23.82.0\/25", + "version":63465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.82.0", + "prefixLen":25, + "network":"194.23.82.0\/25", + "version":63465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.82.128", + "prefixLen":25, + "network":"194.23.82.128\/25", + "version":63464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.82.128", + "prefixLen":25, + "network":"194.23.82.128\/25", + "version":63464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.83.0", + "prefixLen":25, + "network":"194.23.83.0\/25", + "version":63463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.83.0", + "prefixLen":25, + "network":"194.23.83.0\/25", + "version":63463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.83.128", + "prefixLen":25, + "network":"194.23.83.128\/25", + "version":63462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.83.128", + "prefixLen":25, + "network":"194.23.83.128\/25", + "version":63462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.96.0", + "prefixLen":25, + "network":"194.23.96.0\/25", + "version":63461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.96.0", + "prefixLen":25, + "network":"194.23.96.0\/25", + "version":63461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.96.128", + "prefixLen":25, + "network":"194.23.96.128\/25", + "version":63460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.96.128", + "prefixLen":25, + "network":"194.23.96.128\/25", + "version":63460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.97.0", + "prefixLen":25, + "network":"194.23.97.0\/25", + "version":63459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.97.0", + "prefixLen":25, + "network":"194.23.97.0\/25", + "version":63459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.97.128", + "prefixLen":25, + "network":"194.23.97.128\/25", + "version":63458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.97.128", + "prefixLen":25, + "network":"194.23.97.128\/25", + "version":63458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.98.0", + "prefixLen":25, + "network":"194.23.98.0\/25", + "version":63457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.98.0", + "prefixLen":25, + "network":"194.23.98.0\/25", + "version":63457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.98.128", + "prefixLen":25, + "network":"194.23.98.128\/25", + "version":63456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.98.128", + "prefixLen":25, + "network":"194.23.98.128\/25", + "version":63456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.99.0", + "prefixLen":25, + "network":"194.23.99.0\/25", + "version":63455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.99.0", + "prefixLen":25, + "network":"194.23.99.0\/25", + "version":63455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.99.128", + "prefixLen":25, + "network":"194.23.99.128\/25", + "version":63454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.99.128", + "prefixLen":25, + "network":"194.23.99.128\/25", + "version":63454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.112.0", + "prefixLen":25, + "network":"194.23.112.0\/25", + "version":63453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.112.0", + "prefixLen":25, + "network":"194.23.112.0\/25", + "version":63453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.112.128", + "prefixLen":25, + "network":"194.23.112.128\/25", + "version":63452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.112.128", + "prefixLen":25, + "network":"194.23.112.128\/25", + "version":63452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.113.0", + "prefixLen":25, + "network":"194.23.113.0\/25", + "version":63451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.113.0", + "prefixLen":25, + "network":"194.23.113.0\/25", + "version":63451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.113.128", + "prefixLen":25, + "network":"194.23.113.128\/25", + "version":63450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.113.128", + "prefixLen":25, + "network":"194.23.113.128\/25", + "version":63450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.114.0", + "prefixLen":25, + "network":"194.23.114.0\/25", + "version":63449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.114.0", + "prefixLen":25, + "network":"194.23.114.0\/25", + "version":63449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.114.128", + "prefixLen":25, + "network":"194.23.114.128\/25", + "version":63448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.114.128", + "prefixLen":25, + "network":"194.23.114.128\/25", + "version":63448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.115.0", + "prefixLen":25, + "network":"194.23.115.0\/25", + "version":63447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.115.0", + "prefixLen":25, + "network":"194.23.115.0\/25", + "version":63447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.115.128", + "prefixLen":25, + "network":"194.23.115.128\/25", + "version":63446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.115.128", + "prefixLen":25, + "network":"194.23.115.128\/25", + "version":63446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.128.0", + "prefixLen":25, + "network":"194.23.128.0\/25", + "version":63445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.128.0", + "prefixLen":25, + "network":"194.23.128.0\/25", + "version":63445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.128.128", + "prefixLen":25, + "network":"194.23.128.128\/25", + "version":63444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.128.128", + "prefixLen":25, + "network":"194.23.128.128\/25", + "version":63444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.129.0", + "prefixLen":25, + "network":"194.23.129.0\/25", + "version":63443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.129.0", + "prefixLen":25, + "network":"194.23.129.0\/25", + "version":63443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.129.128", + "prefixLen":25, + "network":"194.23.129.128\/25", + "version":63442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.129.128", + "prefixLen":25, + "network":"194.23.129.128\/25", + "version":63442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.130.0", + "prefixLen":25, + "network":"194.23.130.0\/25", + "version":63441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.130.0", + "prefixLen":25, + "network":"194.23.130.0\/25", + "version":63441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.130.128", + "prefixLen":25, + "network":"194.23.130.128\/25", + "version":63440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.130.128", + "prefixLen":25, + "network":"194.23.130.128\/25", + "version":63440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.131.0", + "prefixLen":25, + "network":"194.23.131.0\/25", + "version":63439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.131.0", + "prefixLen":25, + "network":"194.23.131.0\/25", + "version":63439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.131.128", + "prefixLen":25, + "network":"194.23.131.128\/25", + "version":63438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.131.128", + "prefixLen":25, + "network":"194.23.131.128\/25", + "version":63438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.144.0", + "prefixLen":25, + "network":"194.23.144.0\/25", + "version":63437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.144.0", + "prefixLen":25, + "network":"194.23.144.0\/25", + "version":63437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.144.128", + "prefixLen":25, + "network":"194.23.144.128\/25", + "version":63436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.144.128", + "prefixLen":25, + "network":"194.23.144.128\/25", + "version":63436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.145.0", + "prefixLen":25, + "network":"194.23.145.0\/25", + "version":63435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.145.0", + "prefixLen":25, + "network":"194.23.145.0\/25", + "version":63435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.145.128", + "prefixLen":25, + "network":"194.23.145.128\/25", + "version":63434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.145.128", + "prefixLen":25, + "network":"194.23.145.128\/25", + "version":63434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.146.0", + "prefixLen":25, + "network":"194.23.146.0\/25", + "version":63433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.146.0", + "prefixLen":25, + "network":"194.23.146.0\/25", + "version":63433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.146.128", + "prefixLen":25, + "network":"194.23.146.128\/25", + "version":63432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.146.128", + "prefixLen":25, + "network":"194.23.146.128\/25", + "version":63432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.147.0", + "prefixLen":25, + "network":"194.23.147.0\/25", + "version":63431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.147.0", + "prefixLen":25, + "network":"194.23.147.0\/25", + "version":63431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.147.128", + "prefixLen":25, + "network":"194.23.147.128\/25", + "version":63430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.147.128", + "prefixLen":25, + "network":"194.23.147.128\/25", + "version":63430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.160.0", + "prefixLen":25, + "network":"194.23.160.0\/25", + "version":63429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.160.0", + "prefixLen":25, + "network":"194.23.160.0\/25", + "version":63429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.160.128", + "prefixLen":25, + "network":"194.23.160.128\/25", + "version":63428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.160.128", + "prefixLen":25, + "network":"194.23.160.128\/25", + "version":63428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.161.0", + "prefixLen":25, + "network":"194.23.161.0\/25", + "version":63427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.161.0", + "prefixLen":25, + "network":"194.23.161.0\/25", + "version":63427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.161.128", + "prefixLen":25, + "network":"194.23.161.128\/25", + "version":63426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.161.128", + "prefixLen":25, + "network":"194.23.161.128\/25", + "version":63426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.162.0", + "prefixLen":25, + "network":"194.23.162.0\/25", + "version":63425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.162.0", + "prefixLen":25, + "network":"194.23.162.0\/25", + "version":63425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.162.128", + "prefixLen":25, + "network":"194.23.162.128\/25", + "version":63424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.162.128", + "prefixLen":25, + "network":"194.23.162.128\/25", + "version":63424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.163.0", + "prefixLen":25, + "network":"194.23.163.0\/25", + "version":63423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.163.0", + "prefixLen":25, + "network":"194.23.163.0\/25", + "version":63423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.163.128", + "prefixLen":25, + "network":"194.23.163.128\/25", + "version":63422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.163.128", + "prefixLen":25, + "network":"194.23.163.128\/25", + "version":63422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.176.0", + "prefixLen":25, + "network":"194.23.176.0\/25", + "version":63421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.176.0", + "prefixLen":25, + "network":"194.23.176.0\/25", + "version":63421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.176.128", + "prefixLen":25, + "network":"194.23.176.128\/25", + "version":63420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.176.128", + "prefixLen":25, + "network":"194.23.176.128\/25", + "version":63420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.177.0", + "prefixLen":25, + "network":"194.23.177.0\/25", + "version":63419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.177.0", + "prefixLen":25, + "network":"194.23.177.0\/25", + "version":63419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.177.128", + "prefixLen":25, + "network":"194.23.177.128\/25", + "version":63418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.177.128", + "prefixLen":25, + "network":"194.23.177.128\/25", + "version":63418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.178.0", + "prefixLen":25, + "network":"194.23.178.0\/25", + "version":63417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.178.0", + "prefixLen":25, + "network":"194.23.178.0\/25", + "version":63417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.178.128", + "prefixLen":25, + "network":"194.23.178.128\/25", + "version":63416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.178.128", + "prefixLen":25, + "network":"194.23.178.128\/25", + "version":63416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.179.0", + "prefixLen":25, + "network":"194.23.179.0\/25", + "version":63415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.179.0", + "prefixLen":25, + "network":"194.23.179.0\/25", + "version":63415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.179.128", + "prefixLen":25, + "network":"194.23.179.128\/25", + "version":63414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.179.128", + "prefixLen":25, + "network":"194.23.179.128\/25", + "version":63414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.192.0", + "prefixLen":25, + "network":"194.23.192.0\/25", + "version":63413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.192.0", + "prefixLen":25, + "network":"194.23.192.0\/25", + "version":63413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.192.128", + "prefixLen":25, + "network":"194.23.192.128\/25", + "version":63412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.192.128", + "prefixLen":25, + "network":"194.23.192.128\/25", + "version":63412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.193.0", + "prefixLen":25, + "network":"194.23.193.0\/25", + "version":63411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.193.0", + "prefixLen":25, + "network":"194.23.193.0\/25", + "version":63411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.193.128", + "prefixLen":25, + "network":"194.23.193.128\/25", + "version":63410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.193.128", + "prefixLen":25, + "network":"194.23.193.128\/25", + "version":63410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.194.0", + "prefixLen":25, + "network":"194.23.194.0\/25", + "version":63409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.194.0", + "prefixLen":25, + "network":"194.23.194.0\/25", + "version":63409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.194.128", + "prefixLen":25, + "network":"194.23.194.128\/25", + "version":63408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.194.128", + "prefixLen":25, + "network":"194.23.194.128\/25", + "version":63408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.195.0", + "prefixLen":25, + "network":"194.23.195.0\/25", + "version":63407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.195.0", + "prefixLen":25, + "network":"194.23.195.0\/25", + "version":63407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.195.128", + "prefixLen":25, + "network":"194.23.195.128\/25", + "version":63406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.195.128", + "prefixLen":25, + "network":"194.23.195.128\/25", + "version":63406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.208.0", + "prefixLen":25, + "network":"194.23.208.0\/25", + "version":63405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.208.0", + "prefixLen":25, + "network":"194.23.208.0\/25", + "version":63405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.208.128", + "prefixLen":25, + "network":"194.23.208.128\/25", + "version":63404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.208.128", + "prefixLen":25, + "network":"194.23.208.128\/25", + "version":63404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.209.0", + "prefixLen":25, + "network":"194.23.209.0\/25", + "version":63403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.209.0", + "prefixLen":25, + "network":"194.23.209.0\/25", + "version":63403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.209.128", + "prefixLen":25, + "network":"194.23.209.128\/25", + "version":63402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.209.128", + "prefixLen":25, + "network":"194.23.209.128\/25", + "version":63402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.210.0", + "prefixLen":25, + "network":"194.23.210.0\/25", + "version":63401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.210.0", + "prefixLen":25, + "network":"194.23.210.0\/25", + "version":63401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.210.128", + "prefixLen":25, + "network":"194.23.210.128\/25", + "version":63400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.210.128", + "prefixLen":25, + "network":"194.23.210.128\/25", + "version":63400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.211.0", + "prefixLen":25, + "network":"194.23.211.0\/25", + "version":63399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.211.0", + "prefixLen":25, + "network":"194.23.211.0\/25", + "version":63399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.211.128", + "prefixLen":25, + "network":"194.23.211.128\/25", + "version":63398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.211.128", + "prefixLen":25, + "network":"194.23.211.128\/25", + "version":63398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.224.0", + "prefixLen":25, + "network":"194.23.224.0\/25", + "version":63397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.224.0", + "prefixLen":25, + "network":"194.23.224.0\/25", + "version":63397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.224.128", + "prefixLen":25, + "network":"194.23.224.128\/25", + "version":63396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.224.128", + "prefixLen":25, + "network":"194.23.224.128\/25", + "version":63396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.225.0", + "prefixLen":25, + "network":"194.23.225.0\/25", + "version":63395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.225.0", + "prefixLen":25, + "network":"194.23.225.0\/25", + "version":63395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.225.128", + "prefixLen":25, + "network":"194.23.225.128\/25", + "version":63394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.225.128", + "prefixLen":25, + "network":"194.23.225.128\/25", + "version":63394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.226.0", + "prefixLen":25, + "network":"194.23.226.0\/25", + "version":63393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.226.0", + "prefixLen":25, + "network":"194.23.226.0\/25", + "version":63393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.226.128", + "prefixLen":25, + "network":"194.23.226.128\/25", + "version":63392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.226.128", + "prefixLen":25, + "network":"194.23.226.128\/25", + "version":63392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.227.0", + "prefixLen":25, + "network":"194.23.227.0\/25", + "version":63391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.227.0", + "prefixLen":25, + "network":"194.23.227.0\/25", + "version":63391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.227.128", + "prefixLen":25, + "network":"194.23.227.128\/25", + "version":63390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.227.128", + "prefixLen":25, + "network":"194.23.227.128\/25", + "version":63390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.240.0", + "prefixLen":25, + "network":"194.23.240.0\/25", + "version":63389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.240.0", + "prefixLen":25, + "network":"194.23.240.0\/25", + "version":63389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.240.128", + "prefixLen":25, + "network":"194.23.240.128\/25", + "version":63388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.240.128", + "prefixLen":25, + "network":"194.23.240.128\/25", + "version":63388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.241.0", + "prefixLen":25, + "network":"194.23.241.0\/25", + "version":63387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.241.0", + "prefixLen":25, + "network":"194.23.241.0\/25", + "version":63387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.241.128", + "prefixLen":25, + "network":"194.23.241.128\/25", + "version":63386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.241.128", + "prefixLen":25, + "network":"194.23.241.128\/25", + "version":63386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.242.0", + "prefixLen":25, + "network":"194.23.242.0\/25", + "version":63385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.242.0", + "prefixLen":25, + "network":"194.23.242.0\/25", + "version":63385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.242.128", + "prefixLen":25, + "network":"194.23.242.128\/25", + "version":63384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.242.128", + "prefixLen":25, + "network":"194.23.242.128\/25", + "version":63384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.243.0", + "prefixLen":25, + "network":"194.23.243.0\/25", + "version":63383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.243.0", + "prefixLen":25, + "network":"194.23.243.0\/25", + "version":63383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.23.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.23.243.128", + "prefixLen":25, + "network":"194.23.243.128\/25", + "version":63382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.23.243.128", + "prefixLen":25, + "network":"194.23.243.128\/25", + "version":63382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64967 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.0.0", + "prefixLen":25, + "network":"194.24.0.0\/25", + "version":63509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.0.0", + "prefixLen":25, + "network":"194.24.0.0\/25", + "version":63509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.0.128", + "prefixLen":25, + "network":"194.24.0.128\/25", + "version":63636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.0.128", + "prefixLen":25, + "network":"194.24.0.128\/25", + "version":63636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.1.0", + "prefixLen":25, + "network":"194.24.1.0\/25", + "version":63635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.1.0", + "prefixLen":25, + "network":"194.24.1.0\/25", + "version":63635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.1.128", + "prefixLen":25, + "network":"194.24.1.128\/25", + "version":63634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.1.128", + "prefixLen":25, + "network":"194.24.1.128\/25", + "version":63634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.2.0", + "prefixLen":25, + "network":"194.24.2.0\/25", + "version":63633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.2.0", + "prefixLen":25, + "network":"194.24.2.0\/25", + "version":63633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.2.128", + "prefixLen":25, + "network":"194.24.2.128\/25", + "version":63632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.2.128", + "prefixLen":25, + "network":"194.24.2.128\/25", + "version":63632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.3.0", + "prefixLen":25, + "network":"194.24.3.0\/25", + "version":63631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.3.0", + "prefixLen":25, + "network":"194.24.3.0\/25", + "version":63631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.3.128", + "prefixLen":25, + "network":"194.24.3.128\/25", + "version":63630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.3.128", + "prefixLen":25, + "network":"194.24.3.128\/25", + "version":63630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.16.0", + "prefixLen":25, + "network":"194.24.16.0\/25", + "version":63629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.16.0", + "prefixLen":25, + "network":"194.24.16.0\/25", + "version":63629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.16.128", + "prefixLen":25, + "network":"194.24.16.128\/25", + "version":63628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.16.128", + "prefixLen":25, + "network":"194.24.16.128\/25", + "version":63628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.17.0", + "prefixLen":25, + "network":"194.24.17.0\/25", + "version":63627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.17.0", + "prefixLen":25, + "network":"194.24.17.0\/25", + "version":63627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.17.128", + "prefixLen":25, + "network":"194.24.17.128\/25", + "version":63626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.17.128", + "prefixLen":25, + "network":"194.24.17.128\/25", + "version":63626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.18.0", + "prefixLen":25, + "network":"194.24.18.0\/25", + "version":63625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.18.0", + "prefixLen":25, + "network":"194.24.18.0\/25", + "version":63625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.18.128", + "prefixLen":25, + "network":"194.24.18.128\/25", + "version":63624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.18.128", + "prefixLen":25, + "network":"194.24.18.128\/25", + "version":63624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.19.0", + "prefixLen":25, + "network":"194.24.19.0\/25", + "version":63623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.19.0", + "prefixLen":25, + "network":"194.24.19.0\/25", + "version":63623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.19.128", + "prefixLen":25, + "network":"194.24.19.128\/25", + "version":63622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.19.128", + "prefixLen":25, + "network":"194.24.19.128\/25", + "version":63622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.32.0", + "prefixLen":25, + "network":"194.24.32.0\/25", + "version":63621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.32.0", + "prefixLen":25, + "network":"194.24.32.0\/25", + "version":63621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.32.128", + "prefixLen":25, + "network":"194.24.32.128\/25", + "version":63620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.32.128", + "prefixLen":25, + "network":"194.24.32.128\/25", + "version":63620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.33.0", + "prefixLen":25, + "network":"194.24.33.0\/25", + "version":63619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.33.0", + "prefixLen":25, + "network":"194.24.33.0\/25", + "version":63619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.33.128", + "prefixLen":25, + "network":"194.24.33.128\/25", + "version":63618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.33.128", + "prefixLen":25, + "network":"194.24.33.128\/25", + "version":63618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.34.0", + "prefixLen":25, + "network":"194.24.34.0\/25", + "version":63617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.34.0", + "prefixLen":25, + "network":"194.24.34.0\/25", + "version":63617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.34.128", + "prefixLen":25, + "network":"194.24.34.128\/25", + "version":63616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.34.128", + "prefixLen":25, + "network":"194.24.34.128\/25", + "version":63616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.35.0", + "prefixLen":25, + "network":"194.24.35.0\/25", + "version":63615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.35.0", + "prefixLen":25, + "network":"194.24.35.0\/25", + "version":63615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.35.128", + "prefixLen":25, + "network":"194.24.35.128\/25", + "version":63614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.35.128", + "prefixLen":25, + "network":"194.24.35.128\/25", + "version":63614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.48.0", + "prefixLen":25, + "network":"194.24.48.0\/25", + "version":63613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.48.0", + "prefixLen":25, + "network":"194.24.48.0\/25", + "version":63613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.48.128", + "prefixLen":25, + "network":"194.24.48.128\/25", + "version":63612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.48.128", + "prefixLen":25, + "network":"194.24.48.128\/25", + "version":63612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.49.0", + "prefixLen":25, + "network":"194.24.49.0\/25", + "version":63611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.49.0", + "prefixLen":25, + "network":"194.24.49.0\/25", + "version":63611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.49.128", + "prefixLen":25, + "network":"194.24.49.128\/25", + "version":63610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.49.128", + "prefixLen":25, + "network":"194.24.49.128\/25", + "version":63610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.50.0", + "prefixLen":25, + "network":"194.24.50.0\/25", + "version":63609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.50.0", + "prefixLen":25, + "network":"194.24.50.0\/25", + "version":63609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.50.128", + "prefixLen":25, + "network":"194.24.50.128\/25", + "version":63608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.50.128", + "prefixLen":25, + "network":"194.24.50.128\/25", + "version":63608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.51.0", + "prefixLen":25, + "network":"194.24.51.0\/25", + "version":63607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.51.0", + "prefixLen":25, + "network":"194.24.51.0\/25", + "version":63607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.51.128", + "prefixLen":25, + "network":"194.24.51.128\/25", + "version":63606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.51.128", + "prefixLen":25, + "network":"194.24.51.128\/25", + "version":63606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.64.0", + "prefixLen":25, + "network":"194.24.64.0\/25", + "version":63605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.64.0", + "prefixLen":25, + "network":"194.24.64.0\/25", + "version":63605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.64.128", + "prefixLen":25, + "network":"194.24.64.128\/25", + "version":63604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.64.128", + "prefixLen":25, + "network":"194.24.64.128\/25", + "version":63604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.65.0", + "prefixLen":25, + "network":"194.24.65.0\/25", + "version":63603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.65.0", + "prefixLen":25, + "network":"194.24.65.0\/25", + "version":63603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.65.128", + "prefixLen":25, + "network":"194.24.65.128\/25", + "version":63602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.65.128", + "prefixLen":25, + "network":"194.24.65.128\/25", + "version":63602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.66.0", + "prefixLen":25, + "network":"194.24.66.0\/25", + "version":63601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.66.0", + "prefixLen":25, + "network":"194.24.66.0\/25", + "version":63601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.66.128", + "prefixLen":25, + "network":"194.24.66.128\/25", + "version":63600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.66.128", + "prefixLen":25, + "network":"194.24.66.128\/25", + "version":63600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.67.0", + "prefixLen":25, + "network":"194.24.67.0\/25", + "version":63599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.67.0", + "prefixLen":25, + "network":"194.24.67.0\/25", + "version":63599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.67.128", + "prefixLen":25, + "network":"194.24.67.128\/25", + "version":63598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.67.128", + "prefixLen":25, + "network":"194.24.67.128\/25", + "version":63598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.80.0", + "prefixLen":25, + "network":"194.24.80.0\/25", + "version":63597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.80.0", + "prefixLen":25, + "network":"194.24.80.0\/25", + "version":63597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.80.128", + "prefixLen":25, + "network":"194.24.80.128\/25", + "version":63596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.80.128", + "prefixLen":25, + "network":"194.24.80.128\/25", + "version":63596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.81.0", + "prefixLen":25, + "network":"194.24.81.0\/25", + "version":63595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.81.0", + "prefixLen":25, + "network":"194.24.81.0\/25", + "version":63595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.81.128", + "prefixLen":25, + "network":"194.24.81.128\/25", + "version":63594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.81.128", + "prefixLen":25, + "network":"194.24.81.128\/25", + "version":63594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.82.0", + "prefixLen":25, + "network":"194.24.82.0\/25", + "version":63593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.82.0", + "prefixLen":25, + "network":"194.24.82.0\/25", + "version":63593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.82.128", + "prefixLen":25, + "network":"194.24.82.128\/25", + "version":63592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.82.128", + "prefixLen":25, + "network":"194.24.82.128\/25", + "version":63592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.83.0", + "prefixLen":25, + "network":"194.24.83.0\/25", + "version":63591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.83.0", + "prefixLen":25, + "network":"194.24.83.0\/25", + "version":63591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.83.128", + "prefixLen":25, + "network":"194.24.83.128\/25", + "version":63590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.83.128", + "prefixLen":25, + "network":"194.24.83.128\/25", + "version":63590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.96.0", + "prefixLen":25, + "network":"194.24.96.0\/25", + "version":63589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.96.0", + "prefixLen":25, + "network":"194.24.96.0\/25", + "version":63589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.96.128", + "prefixLen":25, + "network":"194.24.96.128\/25", + "version":63588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.96.128", + "prefixLen":25, + "network":"194.24.96.128\/25", + "version":63588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.97.0", + "prefixLen":25, + "network":"194.24.97.0\/25", + "version":63587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.97.0", + "prefixLen":25, + "network":"194.24.97.0\/25", + "version":63587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.97.128", + "prefixLen":25, + "network":"194.24.97.128\/25", + "version":63586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.97.128", + "prefixLen":25, + "network":"194.24.97.128\/25", + "version":63586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.98.0", + "prefixLen":25, + "network":"194.24.98.0\/25", + "version":63585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.98.0", + "prefixLen":25, + "network":"194.24.98.0\/25", + "version":63585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.98.128", + "prefixLen":25, + "network":"194.24.98.128\/25", + "version":63584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.98.128", + "prefixLen":25, + "network":"194.24.98.128\/25", + "version":63584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.99.0", + "prefixLen":25, + "network":"194.24.99.0\/25", + "version":63583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.99.0", + "prefixLen":25, + "network":"194.24.99.0\/25", + "version":63583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.99.128", + "prefixLen":25, + "network":"194.24.99.128\/25", + "version":63582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.99.128", + "prefixLen":25, + "network":"194.24.99.128\/25", + "version":63582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.112.0", + "prefixLen":25, + "network":"194.24.112.0\/25", + "version":63581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.112.0", + "prefixLen":25, + "network":"194.24.112.0\/25", + "version":63581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.112.128", + "prefixLen":25, + "network":"194.24.112.128\/25", + "version":63580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.112.128", + "prefixLen":25, + "network":"194.24.112.128\/25", + "version":63580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.113.0", + "prefixLen":25, + "network":"194.24.113.0\/25", + "version":63579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.113.0", + "prefixLen":25, + "network":"194.24.113.0\/25", + "version":63579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.113.128", + "prefixLen":25, + "network":"194.24.113.128\/25", + "version":63578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.113.128", + "prefixLen":25, + "network":"194.24.113.128\/25", + "version":63578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.114.0", + "prefixLen":25, + "network":"194.24.114.0\/25", + "version":63577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.114.0", + "prefixLen":25, + "network":"194.24.114.0\/25", + "version":63577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.114.128", + "prefixLen":25, + "network":"194.24.114.128\/25", + "version":63576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.114.128", + "prefixLen":25, + "network":"194.24.114.128\/25", + "version":63576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.115.0", + "prefixLen":25, + "network":"194.24.115.0\/25", + "version":63575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.115.0", + "prefixLen":25, + "network":"194.24.115.0\/25", + "version":63575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.115.128", + "prefixLen":25, + "network":"194.24.115.128\/25", + "version":63574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.115.128", + "prefixLen":25, + "network":"194.24.115.128\/25", + "version":63574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.128.0", + "prefixLen":25, + "network":"194.24.128.0\/25", + "version":63573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.128.0", + "prefixLen":25, + "network":"194.24.128.0\/25", + "version":63573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.128.128", + "prefixLen":25, + "network":"194.24.128.128\/25", + "version":63572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.128.128", + "prefixLen":25, + "network":"194.24.128.128\/25", + "version":63572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.129.0", + "prefixLen":25, + "network":"194.24.129.0\/25", + "version":63571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.129.0", + "prefixLen":25, + "network":"194.24.129.0\/25", + "version":63571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.129.128", + "prefixLen":25, + "network":"194.24.129.128\/25", + "version":63570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.129.128", + "prefixLen":25, + "network":"194.24.129.128\/25", + "version":63570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.130.0", + "prefixLen":25, + "network":"194.24.130.0\/25", + "version":63569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.130.0", + "prefixLen":25, + "network":"194.24.130.0\/25", + "version":63569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.130.128", + "prefixLen":25, + "network":"194.24.130.128\/25", + "version":63568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.130.128", + "prefixLen":25, + "network":"194.24.130.128\/25", + "version":63568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.131.0", + "prefixLen":25, + "network":"194.24.131.0\/25", + "version":63567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.131.0", + "prefixLen":25, + "network":"194.24.131.0\/25", + "version":63567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.131.128", + "prefixLen":25, + "network":"194.24.131.128\/25", + "version":63566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.131.128", + "prefixLen":25, + "network":"194.24.131.128\/25", + "version":63566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.144.0", + "prefixLen":25, + "network":"194.24.144.0\/25", + "version":63565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.144.0", + "prefixLen":25, + "network":"194.24.144.0\/25", + "version":63565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.144.128", + "prefixLen":25, + "network":"194.24.144.128\/25", + "version":63564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.144.128", + "prefixLen":25, + "network":"194.24.144.128\/25", + "version":63564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.145.0", + "prefixLen":25, + "network":"194.24.145.0\/25", + "version":63563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.145.0", + "prefixLen":25, + "network":"194.24.145.0\/25", + "version":63563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.145.128", + "prefixLen":25, + "network":"194.24.145.128\/25", + "version":63562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.145.128", + "prefixLen":25, + "network":"194.24.145.128\/25", + "version":63562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.146.0", + "prefixLen":25, + "network":"194.24.146.0\/25", + "version":63561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.146.0", + "prefixLen":25, + "network":"194.24.146.0\/25", + "version":63561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.146.128", + "prefixLen":25, + "network":"194.24.146.128\/25", + "version":63560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.146.128", + "prefixLen":25, + "network":"194.24.146.128\/25", + "version":63560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.147.0", + "prefixLen":25, + "network":"194.24.147.0\/25", + "version":63559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.147.0", + "prefixLen":25, + "network":"194.24.147.0\/25", + "version":63559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.147.128", + "prefixLen":25, + "network":"194.24.147.128\/25", + "version":63558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.147.128", + "prefixLen":25, + "network":"194.24.147.128\/25", + "version":63558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.160.0", + "prefixLen":25, + "network":"194.24.160.0\/25", + "version":63557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.160.0", + "prefixLen":25, + "network":"194.24.160.0\/25", + "version":63557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.160.128", + "prefixLen":25, + "network":"194.24.160.128\/25", + "version":63556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.160.128", + "prefixLen":25, + "network":"194.24.160.128\/25", + "version":63556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.161.0", + "prefixLen":25, + "network":"194.24.161.0\/25", + "version":63555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.161.0", + "prefixLen":25, + "network":"194.24.161.0\/25", + "version":63555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.161.128", + "prefixLen":25, + "network":"194.24.161.128\/25", + "version":63554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.161.128", + "prefixLen":25, + "network":"194.24.161.128\/25", + "version":63554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.162.0", + "prefixLen":25, + "network":"194.24.162.0\/25", + "version":63553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.162.0", + "prefixLen":25, + "network":"194.24.162.0\/25", + "version":63553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.162.128", + "prefixLen":25, + "network":"194.24.162.128\/25", + "version":63552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.162.128", + "prefixLen":25, + "network":"194.24.162.128\/25", + "version":63552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.163.0", + "prefixLen":25, + "network":"194.24.163.0\/25", + "version":63551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.163.0", + "prefixLen":25, + "network":"194.24.163.0\/25", + "version":63551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.163.128", + "prefixLen":25, + "network":"194.24.163.128\/25", + "version":63550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.163.128", + "prefixLen":25, + "network":"194.24.163.128\/25", + "version":63550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.176.0", + "prefixLen":25, + "network":"194.24.176.0\/25", + "version":63549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.176.0", + "prefixLen":25, + "network":"194.24.176.0\/25", + "version":63549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.176.128", + "prefixLen":25, + "network":"194.24.176.128\/25", + "version":63548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.176.128", + "prefixLen":25, + "network":"194.24.176.128\/25", + "version":63548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.177.0", + "prefixLen":25, + "network":"194.24.177.0\/25", + "version":63547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.177.0", + "prefixLen":25, + "network":"194.24.177.0\/25", + "version":63547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.177.128", + "prefixLen":25, + "network":"194.24.177.128\/25", + "version":63546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.177.128", + "prefixLen":25, + "network":"194.24.177.128\/25", + "version":63546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.178.0", + "prefixLen":25, + "network":"194.24.178.0\/25", + "version":63545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.178.0", + "prefixLen":25, + "network":"194.24.178.0\/25", + "version":63545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.178.128", + "prefixLen":25, + "network":"194.24.178.128\/25", + "version":63544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.178.128", + "prefixLen":25, + "network":"194.24.178.128\/25", + "version":63544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.179.0", + "prefixLen":25, + "network":"194.24.179.0\/25", + "version":63543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.179.0", + "prefixLen":25, + "network":"194.24.179.0\/25", + "version":63543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.179.128", + "prefixLen":25, + "network":"194.24.179.128\/25", + "version":63542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.179.128", + "prefixLen":25, + "network":"194.24.179.128\/25", + "version":63542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.192.0", + "prefixLen":25, + "network":"194.24.192.0\/25", + "version":63541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.192.0", + "prefixLen":25, + "network":"194.24.192.0\/25", + "version":63541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.192.128", + "prefixLen":25, + "network":"194.24.192.128\/25", + "version":63540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.192.128", + "prefixLen":25, + "network":"194.24.192.128\/25", + "version":63540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.193.0", + "prefixLen":25, + "network":"194.24.193.0\/25", + "version":63539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.193.0", + "prefixLen":25, + "network":"194.24.193.0\/25", + "version":63539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.193.128", + "prefixLen":25, + "network":"194.24.193.128\/25", + "version":63538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.193.128", + "prefixLen":25, + "network":"194.24.193.128\/25", + "version":63538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.194.0", + "prefixLen":25, + "network":"194.24.194.0\/25", + "version":63537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.194.0", + "prefixLen":25, + "network":"194.24.194.0\/25", + "version":63537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.194.128", + "prefixLen":25, + "network":"194.24.194.128\/25", + "version":63536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.194.128", + "prefixLen":25, + "network":"194.24.194.128\/25", + "version":63536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.195.0", + "prefixLen":25, + "network":"194.24.195.0\/25", + "version":63535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.195.0", + "prefixLen":25, + "network":"194.24.195.0\/25", + "version":63535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.195.128", + "prefixLen":25, + "network":"194.24.195.128\/25", + "version":63534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.195.128", + "prefixLen":25, + "network":"194.24.195.128\/25", + "version":63534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.208.0", + "prefixLen":25, + "network":"194.24.208.0\/25", + "version":63533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.208.0", + "prefixLen":25, + "network":"194.24.208.0\/25", + "version":63533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.208.128", + "prefixLen":25, + "network":"194.24.208.128\/25", + "version":63532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.208.128", + "prefixLen":25, + "network":"194.24.208.128\/25", + "version":63532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.209.0", + "prefixLen":25, + "network":"194.24.209.0\/25", + "version":63531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.209.0", + "prefixLen":25, + "network":"194.24.209.0\/25", + "version":63531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.209.128", + "prefixLen":25, + "network":"194.24.209.128\/25", + "version":63530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.209.128", + "prefixLen":25, + "network":"194.24.209.128\/25", + "version":63530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.210.0", + "prefixLen":25, + "network":"194.24.210.0\/25", + "version":63529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.210.0", + "prefixLen":25, + "network":"194.24.210.0\/25", + "version":63529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.210.128", + "prefixLen":25, + "network":"194.24.210.128\/25", + "version":63528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.210.128", + "prefixLen":25, + "network":"194.24.210.128\/25", + "version":63528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.211.0", + "prefixLen":25, + "network":"194.24.211.0\/25", + "version":63527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.211.0", + "prefixLen":25, + "network":"194.24.211.0\/25", + "version":63527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.211.128", + "prefixLen":25, + "network":"194.24.211.128\/25", + "version":63526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.211.128", + "prefixLen":25, + "network":"194.24.211.128\/25", + "version":63526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.224.0", + "prefixLen":25, + "network":"194.24.224.0\/25", + "version":63525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.224.0", + "prefixLen":25, + "network":"194.24.224.0\/25", + "version":63525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.224.128", + "prefixLen":25, + "network":"194.24.224.128\/25", + "version":63524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.224.128", + "prefixLen":25, + "network":"194.24.224.128\/25", + "version":63524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.225.0", + "prefixLen":25, + "network":"194.24.225.0\/25", + "version":63523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.225.0", + "prefixLen":25, + "network":"194.24.225.0\/25", + "version":63523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.225.128", + "prefixLen":25, + "network":"194.24.225.128\/25", + "version":63522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.225.128", + "prefixLen":25, + "network":"194.24.225.128\/25", + "version":63522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.226.0", + "prefixLen":25, + "network":"194.24.226.0\/25", + "version":63521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.226.0", + "prefixLen":25, + "network":"194.24.226.0\/25", + "version":63521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.226.128", + "prefixLen":25, + "network":"194.24.226.128\/25", + "version":63520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.226.128", + "prefixLen":25, + "network":"194.24.226.128\/25", + "version":63520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.227.0", + "prefixLen":25, + "network":"194.24.227.0\/25", + "version":63519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.227.0", + "prefixLen":25, + "network":"194.24.227.0\/25", + "version":63519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.227.128", + "prefixLen":25, + "network":"194.24.227.128\/25", + "version":63518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.227.128", + "prefixLen":25, + "network":"194.24.227.128\/25", + "version":63518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.240.0", + "prefixLen":25, + "network":"194.24.240.0\/25", + "version":63517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.240.0", + "prefixLen":25, + "network":"194.24.240.0\/25", + "version":63517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.240.128", + "prefixLen":25, + "network":"194.24.240.128\/25", + "version":63516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.240.128", + "prefixLen":25, + "network":"194.24.240.128\/25", + "version":63516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.241.0", + "prefixLen":25, + "network":"194.24.241.0\/25", + "version":63515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.241.0", + "prefixLen":25, + "network":"194.24.241.0\/25", + "version":63515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.241.128", + "prefixLen":25, + "network":"194.24.241.128\/25", + "version":63514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.241.128", + "prefixLen":25, + "network":"194.24.241.128\/25", + "version":63514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.242.0", + "prefixLen":25, + "network":"194.24.242.0\/25", + "version":63513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.242.0", + "prefixLen":25, + "network":"194.24.242.0\/25", + "version":63513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.242.128", + "prefixLen":25, + "network":"194.24.242.128\/25", + "version":63512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.242.128", + "prefixLen":25, + "network":"194.24.242.128\/25", + "version":63512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.243.0", + "prefixLen":25, + "network":"194.24.243.0\/25", + "version":63511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.243.0", + "prefixLen":25, + "network":"194.24.243.0\/25", + "version":63511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.24.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.24.243.128", + "prefixLen":25, + "network":"194.24.243.128\/25", + "version":63510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.24.243.128", + "prefixLen":25, + "network":"194.24.243.128\/25", + "version":63510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64968 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.0.0", + "prefixLen":25, + "network":"194.25.0.0\/25", + "version":63637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.0.0", + "prefixLen":25, + "network":"194.25.0.0\/25", + "version":63637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.0.128", + "prefixLen":25, + "network":"194.25.0.128\/25", + "version":63764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.0.128", + "prefixLen":25, + "network":"194.25.0.128\/25", + "version":63764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.1.0", + "prefixLen":25, + "network":"194.25.1.0\/25", + "version":63763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.1.0", + "prefixLen":25, + "network":"194.25.1.0\/25", + "version":63763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.1.128", + "prefixLen":25, + "network":"194.25.1.128\/25", + "version":63762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.1.128", + "prefixLen":25, + "network":"194.25.1.128\/25", + "version":63762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.2.0", + "prefixLen":25, + "network":"194.25.2.0\/25", + "version":63761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.2.0", + "prefixLen":25, + "network":"194.25.2.0\/25", + "version":63761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.2.128", + "prefixLen":25, + "network":"194.25.2.128\/25", + "version":63760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.2.128", + "prefixLen":25, + "network":"194.25.2.128\/25", + "version":63760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.3.0", + "prefixLen":25, + "network":"194.25.3.0\/25", + "version":63759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.3.0", + "prefixLen":25, + "network":"194.25.3.0\/25", + "version":63759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.3.128", + "prefixLen":25, + "network":"194.25.3.128\/25", + "version":63758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.3.128", + "prefixLen":25, + "network":"194.25.3.128\/25", + "version":63758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.16.0", + "prefixLen":25, + "network":"194.25.16.0\/25", + "version":63757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.16.0", + "prefixLen":25, + "network":"194.25.16.0\/25", + "version":63757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.16.128", + "prefixLen":25, + "network":"194.25.16.128\/25", + "version":63756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.16.128", + "prefixLen":25, + "network":"194.25.16.128\/25", + "version":63756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.17.0", + "prefixLen":25, + "network":"194.25.17.0\/25", + "version":63755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.17.0", + "prefixLen":25, + "network":"194.25.17.0\/25", + "version":63755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.17.128", + "prefixLen":25, + "network":"194.25.17.128\/25", + "version":63754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.17.128", + "prefixLen":25, + "network":"194.25.17.128\/25", + "version":63754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.18.0", + "prefixLen":25, + "network":"194.25.18.0\/25", + "version":63753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.18.0", + "prefixLen":25, + "network":"194.25.18.0\/25", + "version":63753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.18.128", + "prefixLen":25, + "network":"194.25.18.128\/25", + "version":63752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.18.128", + "prefixLen":25, + "network":"194.25.18.128\/25", + "version":63752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.19.0", + "prefixLen":25, + "network":"194.25.19.0\/25", + "version":63751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.19.0", + "prefixLen":25, + "network":"194.25.19.0\/25", + "version":63751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.19.128", + "prefixLen":25, + "network":"194.25.19.128\/25", + "version":63750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.19.128", + "prefixLen":25, + "network":"194.25.19.128\/25", + "version":63750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.32.0", + "prefixLen":25, + "network":"194.25.32.0\/25", + "version":63749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.32.0", + "prefixLen":25, + "network":"194.25.32.0\/25", + "version":63749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.32.128", + "prefixLen":25, + "network":"194.25.32.128\/25", + "version":63748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.32.128", + "prefixLen":25, + "network":"194.25.32.128\/25", + "version":63748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.33.0", + "prefixLen":25, + "network":"194.25.33.0\/25", + "version":63747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.33.0", + "prefixLen":25, + "network":"194.25.33.0\/25", + "version":63747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.33.128", + "prefixLen":25, + "network":"194.25.33.128\/25", + "version":63746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.33.128", + "prefixLen":25, + "network":"194.25.33.128\/25", + "version":63746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.34.0", + "prefixLen":25, + "network":"194.25.34.0\/25", + "version":63745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.34.0", + "prefixLen":25, + "network":"194.25.34.0\/25", + "version":63745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.34.128", + "prefixLen":25, + "network":"194.25.34.128\/25", + "version":63744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.34.128", + "prefixLen":25, + "network":"194.25.34.128\/25", + "version":63744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.35.0", + "prefixLen":25, + "network":"194.25.35.0\/25", + "version":63743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.35.0", + "prefixLen":25, + "network":"194.25.35.0\/25", + "version":63743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.35.128", + "prefixLen":25, + "network":"194.25.35.128\/25", + "version":63742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.35.128", + "prefixLen":25, + "network":"194.25.35.128\/25", + "version":63742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.48.0", + "prefixLen":25, + "network":"194.25.48.0\/25", + "version":63741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.48.0", + "prefixLen":25, + "network":"194.25.48.0\/25", + "version":63741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.48.128", + "prefixLen":25, + "network":"194.25.48.128\/25", + "version":63740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.48.128", + "prefixLen":25, + "network":"194.25.48.128\/25", + "version":63740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.49.0", + "prefixLen":25, + "network":"194.25.49.0\/25", + "version":63739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.49.0", + "prefixLen":25, + "network":"194.25.49.0\/25", + "version":63739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.49.128", + "prefixLen":25, + "network":"194.25.49.128\/25", + "version":63738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.49.128", + "prefixLen":25, + "network":"194.25.49.128\/25", + "version":63738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.50.0", + "prefixLen":25, + "network":"194.25.50.0\/25", + "version":63737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.50.0", + "prefixLen":25, + "network":"194.25.50.0\/25", + "version":63737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.50.128", + "prefixLen":25, + "network":"194.25.50.128\/25", + "version":63736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.50.128", + "prefixLen":25, + "network":"194.25.50.128\/25", + "version":63736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.51.0", + "prefixLen":25, + "network":"194.25.51.0\/25", + "version":63735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.51.0", + "prefixLen":25, + "network":"194.25.51.0\/25", + "version":63735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.51.128", + "prefixLen":25, + "network":"194.25.51.128\/25", + "version":63734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.51.128", + "prefixLen":25, + "network":"194.25.51.128\/25", + "version":63734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.64.0", + "prefixLen":25, + "network":"194.25.64.0\/25", + "version":63733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.64.0", + "prefixLen":25, + "network":"194.25.64.0\/25", + "version":63733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.64.128", + "prefixLen":25, + "network":"194.25.64.128\/25", + "version":63732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.64.128", + "prefixLen":25, + "network":"194.25.64.128\/25", + "version":63732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.65.0", + "prefixLen":25, + "network":"194.25.65.0\/25", + "version":63731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.65.0", + "prefixLen":25, + "network":"194.25.65.0\/25", + "version":63731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.65.128", + "prefixLen":25, + "network":"194.25.65.128\/25", + "version":63730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.65.128", + "prefixLen":25, + "network":"194.25.65.128\/25", + "version":63730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.66.0", + "prefixLen":25, + "network":"194.25.66.0\/25", + "version":63729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.66.0", + "prefixLen":25, + "network":"194.25.66.0\/25", + "version":63729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.66.128", + "prefixLen":25, + "network":"194.25.66.128\/25", + "version":63728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.66.128", + "prefixLen":25, + "network":"194.25.66.128\/25", + "version":63728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.67.0", + "prefixLen":25, + "network":"194.25.67.0\/25", + "version":63727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.67.0", + "prefixLen":25, + "network":"194.25.67.0\/25", + "version":63727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.67.128", + "prefixLen":25, + "network":"194.25.67.128\/25", + "version":63726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.67.128", + "prefixLen":25, + "network":"194.25.67.128\/25", + "version":63726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.80.0", + "prefixLen":25, + "network":"194.25.80.0\/25", + "version":63725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.80.0", + "prefixLen":25, + "network":"194.25.80.0\/25", + "version":63725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.80.128", + "prefixLen":25, + "network":"194.25.80.128\/25", + "version":63724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.80.128", + "prefixLen":25, + "network":"194.25.80.128\/25", + "version":63724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.81.0", + "prefixLen":25, + "network":"194.25.81.0\/25", + "version":63723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.81.0", + "prefixLen":25, + "network":"194.25.81.0\/25", + "version":63723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.81.128", + "prefixLen":25, + "network":"194.25.81.128\/25", + "version":63722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.81.128", + "prefixLen":25, + "network":"194.25.81.128\/25", + "version":63722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.82.0", + "prefixLen":25, + "network":"194.25.82.0\/25", + "version":63721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.82.0", + "prefixLen":25, + "network":"194.25.82.0\/25", + "version":63721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.82.128", + "prefixLen":25, + "network":"194.25.82.128\/25", + "version":63720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.82.128", + "prefixLen":25, + "network":"194.25.82.128\/25", + "version":63720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.83.0", + "prefixLen":25, + "network":"194.25.83.0\/25", + "version":63719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.83.0", + "prefixLen":25, + "network":"194.25.83.0\/25", + "version":63719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.83.128", + "prefixLen":25, + "network":"194.25.83.128\/25", + "version":63718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.83.128", + "prefixLen":25, + "network":"194.25.83.128\/25", + "version":63718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.96.0", + "prefixLen":25, + "network":"194.25.96.0\/25", + "version":63717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.96.0", + "prefixLen":25, + "network":"194.25.96.0\/25", + "version":63717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.96.128", + "prefixLen":25, + "network":"194.25.96.128\/25", + "version":63716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.96.128", + "prefixLen":25, + "network":"194.25.96.128\/25", + "version":63716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.97.0", + "prefixLen":25, + "network":"194.25.97.0\/25", + "version":63715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.97.0", + "prefixLen":25, + "network":"194.25.97.0\/25", + "version":63715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.97.128", + "prefixLen":25, + "network":"194.25.97.128\/25", + "version":63714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.97.128", + "prefixLen":25, + "network":"194.25.97.128\/25", + "version":63714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.98.0", + "prefixLen":25, + "network":"194.25.98.0\/25", + "version":63713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.98.0", + "prefixLen":25, + "network":"194.25.98.0\/25", + "version":63713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.98.128", + "prefixLen":25, + "network":"194.25.98.128\/25", + "version":63712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.98.128", + "prefixLen":25, + "network":"194.25.98.128\/25", + "version":63712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.99.0", + "prefixLen":25, + "network":"194.25.99.0\/25", + "version":63711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.99.0", + "prefixLen":25, + "network":"194.25.99.0\/25", + "version":63711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.99.128", + "prefixLen":25, + "network":"194.25.99.128\/25", + "version":63710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.99.128", + "prefixLen":25, + "network":"194.25.99.128\/25", + "version":63710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.112.0", + "prefixLen":25, + "network":"194.25.112.0\/25", + "version":63709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.112.0", + "prefixLen":25, + "network":"194.25.112.0\/25", + "version":63709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.112.128", + "prefixLen":25, + "network":"194.25.112.128\/25", + "version":63708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.112.128", + "prefixLen":25, + "network":"194.25.112.128\/25", + "version":63708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.113.0", + "prefixLen":25, + "network":"194.25.113.0\/25", + "version":63707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.113.0", + "prefixLen":25, + "network":"194.25.113.0\/25", + "version":63707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.113.128", + "prefixLen":25, + "network":"194.25.113.128\/25", + "version":63706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.113.128", + "prefixLen":25, + "network":"194.25.113.128\/25", + "version":63706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.114.0", + "prefixLen":25, + "network":"194.25.114.0\/25", + "version":63705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.114.0", + "prefixLen":25, + "network":"194.25.114.0\/25", + "version":63705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.114.128", + "prefixLen":25, + "network":"194.25.114.128\/25", + "version":63704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.114.128", + "prefixLen":25, + "network":"194.25.114.128\/25", + "version":63704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.115.0", + "prefixLen":25, + "network":"194.25.115.0\/25", + "version":63703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.115.0", + "prefixLen":25, + "network":"194.25.115.0\/25", + "version":63703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.115.128", + "prefixLen":25, + "network":"194.25.115.128\/25", + "version":63702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.115.128", + "prefixLen":25, + "network":"194.25.115.128\/25", + "version":63702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.128.0", + "prefixLen":25, + "network":"194.25.128.0\/25", + "version":63701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.128.0", + "prefixLen":25, + "network":"194.25.128.0\/25", + "version":63701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.128.128", + "prefixLen":25, + "network":"194.25.128.128\/25", + "version":63700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.128.128", + "prefixLen":25, + "network":"194.25.128.128\/25", + "version":63700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.129.0", + "prefixLen":25, + "network":"194.25.129.0\/25", + "version":63699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.129.0", + "prefixLen":25, + "network":"194.25.129.0\/25", + "version":63699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.129.128", + "prefixLen":25, + "network":"194.25.129.128\/25", + "version":63698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.129.128", + "prefixLen":25, + "network":"194.25.129.128\/25", + "version":63698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.130.0", + "prefixLen":25, + "network":"194.25.130.0\/25", + "version":63697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.130.0", + "prefixLen":25, + "network":"194.25.130.0\/25", + "version":63697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.130.128", + "prefixLen":25, + "network":"194.25.130.128\/25", + "version":63696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.130.128", + "prefixLen":25, + "network":"194.25.130.128\/25", + "version":63696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.131.0", + "prefixLen":25, + "network":"194.25.131.0\/25", + "version":63695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.131.0", + "prefixLen":25, + "network":"194.25.131.0\/25", + "version":63695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.131.128", + "prefixLen":25, + "network":"194.25.131.128\/25", + "version":63694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.131.128", + "prefixLen":25, + "network":"194.25.131.128\/25", + "version":63694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.144.0", + "prefixLen":25, + "network":"194.25.144.0\/25", + "version":63693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.144.0", + "prefixLen":25, + "network":"194.25.144.0\/25", + "version":63693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.144.128", + "prefixLen":25, + "network":"194.25.144.128\/25", + "version":63692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.144.128", + "prefixLen":25, + "network":"194.25.144.128\/25", + "version":63692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.145.0", + "prefixLen":25, + "network":"194.25.145.0\/25", + "version":63691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.145.0", + "prefixLen":25, + "network":"194.25.145.0\/25", + "version":63691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.145.128", + "prefixLen":25, + "network":"194.25.145.128\/25", + "version":63690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.145.128", + "prefixLen":25, + "network":"194.25.145.128\/25", + "version":63690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.146.0", + "prefixLen":25, + "network":"194.25.146.0\/25", + "version":63689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.146.0", + "prefixLen":25, + "network":"194.25.146.0\/25", + "version":63689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.146.128", + "prefixLen":25, + "network":"194.25.146.128\/25", + "version":63688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.146.128", + "prefixLen":25, + "network":"194.25.146.128\/25", + "version":63688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.147.0", + "prefixLen":25, + "network":"194.25.147.0\/25", + "version":63687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.147.0", + "prefixLen":25, + "network":"194.25.147.0\/25", + "version":63687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.147.128", + "prefixLen":25, + "network":"194.25.147.128\/25", + "version":63686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.147.128", + "prefixLen":25, + "network":"194.25.147.128\/25", + "version":63686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.160.0", + "prefixLen":25, + "network":"194.25.160.0\/25", + "version":63685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.160.0", + "prefixLen":25, + "network":"194.25.160.0\/25", + "version":63685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.160.128", + "prefixLen":25, + "network":"194.25.160.128\/25", + "version":63684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.160.128", + "prefixLen":25, + "network":"194.25.160.128\/25", + "version":63684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.161.0", + "prefixLen":25, + "network":"194.25.161.0\/25", + "version":63683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.161.0", + "prefixLen":25, + "network":"194.25.161.0\/25", + "version":63683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.161.128", + "prefixLen":25, + "network":"194.25.161.128\/25", + "version":63682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.161.128", + "prefixLen":25, + "network":"194.25.161.128\/25", + "version":63682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.162.0", + "prefixLen":25, + "network":"194.25.162.0\/25", + "version":63681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.162.0", + "prefixLen":25, + "network":"194.25.162.0\/25", + "version":63681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.162.128", + "prefixLen":25, + "network":"194.25.162.128\/25", + "version":63680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.162.128", + "prefixLen":25, + "network":"194.25.162.128\/25", + "version":63680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.163.0", + "prefixLen":25, + "network":"194.25.163.0\/25", + "version":63679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.163.0", + "prefixLen":25, + "network":"194.25.163.0\/25", + "version":63679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.163.128", + "prefixLen":25, + "network":"194.25.163.128\/25", + "version":63678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.163.128", + "prefixLen":25, + "network":"194.25.163.128\/25", + "version":63678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.176.0", + "prefixLen":25, + "network":"194.25.176.0\/25", + "version":63677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.176.0", + "prefixLen":25, + "network":"194.25.176.0\/25", + "version":63677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.176.128", + "prefixLen":25, + "network":"194.25.176.128\/25", + "version":63676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.176.128", + "prefixLen":25, + "network":"194.25.176.128\/25", + "version":63676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.177.0", + "prefixLen":25, + "network":"194.25.177.0\/25", + "version":63675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.177.0", + "prefixLen":25, + "network":"194.25.177.0\/25", + "version":63675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.177.128", + "prefixLen":25, + "network":"194.25.177.128\/25", + "version":63674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.177.128", + "prefixLen":25, + "network":"194.25.177.128\/25", + "version":63674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.178.0", + "prefixLen":25, + "network":"194.25.178.0\/25", + "version":63673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.178.0", + "prefixLen":25, + "network":"194.25.178.0\/25", + "version":63673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.178.128", + "prefixLen":25, + "network":"194.25.178.128\/25", + "version":63672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.178.128", + "prefixLen":25, + "network":"194.25.178.128\/25", + "version":63672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.179.0", + "prefixLen":25, + "network":"194.25.179.0\/25", + "version":63671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.179.0", + "prefixLen":25, + "network":"194.25.179.0\/25", + "version":63671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.179.128", + "prefixLen":25, + "network":"194.25.179.128\/25", + "version":63670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.179.128", + "prefixLen":25, + "network":"194.25.179.128\/25", + "version":63670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.192.0", + "prefixLen":25, + "network":"194.25.192.0\/25", + "version":63669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.192.0", + "prefixLen":25, + "network":"194.25.192.0\/25", + "version":63669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.192.128", + "prefixLen":25, + "network":"194.25.192.128\/25", + "version":63668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.192.128", + "prefixLen":25, + "network":"194.25.192.128\/25", + "version":63668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.193.0", + "prefixLen":25, + "network":"194.25.193.0\/25", + "version":63667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.193.0", + "prefixLen":25, + "network":"194.25.193.0\/25", + "version":63667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.193.128", + "prefixLen":25, + "network":"194.25.193.128\/25", + "version":63666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.193.128", + "prefixLen":25, + "network":"194.25.193.128\/25", + "version":63666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.194.0", + "prefixLen":25, + "network":"194.25.194.0\/25", + "version":63665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.194.0", + "prefixLen":25, + "network":"194.25.194.0\/25", + "version":63665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.194.128", + "prefixLen":25, + "network":"194.25.194.128\/25", + "version":63664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.194.128", + "prefixLen":25, + "network":"194.25.194.128\/25", + "version":63664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.195.0", + "prefixLen":25, + "network":"194.25.195.0\/25", + "version":63663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.195.0", + "prefixLen":25, + "network":"194.25.195.0\/25", + "version":63663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.195.128", + "prefixLen":25, + "network":"194.25.195.128\/25", + "version":63662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.195.128", + "prefixLen":25, + "network":"194.25.195.128\/25", + "version":63662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.208.0", + "prefixLen":25, + "network":"194.25.208.0\/25", + "version":63661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.208.0", + "prefixLen":25, + "network":"194.25.208.0\/25", + "version":63661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.208.128", + "prefixLen":25, + "network":"194.25.208.128\/25", + "version":63660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.208.128", + "prefixLen":25, + "network":"194.25.208.128\/25", + "version":63660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.209.0", + "prefixLen":25, + "network":"194.25.209.0\/25", + "version":63659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.209.0", + "prefixLen":25, + "network":"194.25.209.0\/25", + "version":63659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.209.128", + "prefixLen":25, + "network":"194.25.209.128\/25", + "version":63658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.209.128", + "prefixLen":25, + "network":"194.25.209.128\/25", + "version":63658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.210.0", + "prefixLen":25, + "network":"194.25.210.0\/25", + "version":63657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.210.0", + "prefixLen":25, + "network":"194.25.210.0\/25", + "version":63657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.210.128", + "prefixLen":25, + "network":"194.25.210.128\/25", + "version":63656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.210.128", + "prefixLen":25, + "network":"194.25.210.128\/25", + "version":63656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.211.0", + "prefixLen":25, + "network":"194.25.211.0\/25", + "version":63655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.211.0", + "prefixLen":25, + "network":"194.25.211.0\/25", + "version":63655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.211.128", + "prefixLen":25, + "network":"194.25.211.128\/25", + "version":63654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.211.128", + "prefixLen":25, + "network":"194.25.211.128\/25", + "version":63654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.224.0", + "prefixLen":25, + "network":"194.25.224.0\/25", + "version":63653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.224.0", + "prefixLen":25, + "network":"194.25.224.0\/25", + "version":63653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.224.128", + "prefixLen":25, + "network":"194.25.224.128\/25", + "version":63652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.224.128", + "prefixLen":25, + "network":"194.25.224.128\/25", + "version":63652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.225.0", + "prefixLen":25, + "network":"194.25.225.0\/25", + "version":63651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.225.0", + "prefixLen":25, + "network":"194.25.225.0\/25", + "version":63651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.225.128", + "prefixLen":25, + "network":"194.25.225.128\/25", + "version":63650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.225.128", + "prefixLen":25, + "network":"194.25.225.128\/25", + "version":63650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.226.0", + "prefixLen":25, + "network":"194.25.226.0\/25", + "version":63649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.226.0", + "prefixLen":25, + "network":"194.25.226.0\/25", + "version":63649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.226.128", + "prefixLen":25, + "network":"194.25.226.128\/25", + "version":63648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.226.128", + "prefixLen":25, + "network":"194.25.226.128\/25", + "version":63648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.227.0", + "prefixLen":25, + "network":"194.25.227.0\/25", + "version":63647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.227.0", + "prefixLen":25, + "network":"194.25.227.0\/25", + "version":63647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.227.128", + "prefixLen":25, + "network":"194.25.227.128\/25", + "version":63646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.227.128", + "prefixLen":25, + "network":"194.25.227.128\/25", + "version":63646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.240.0", + "prefixLen":25, + "network":"194.25.240.0\/25", + "version":63645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.240.0", + "prefixLen":25, + "network":"194.25.240.0\/25", + "version":63645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.240.128", + "prefixLen":25, + "network":"194.25.240.128\/25", + "version":63644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.240.128", + "prefixLen":25, + "network":"194.25.240.128\/25", + "version":63644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.241.0", + "prefixLen":25, + "network":"194.25.241.0\/25", + "version":63643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.241.0", + "prefixLen":25, + "network":"194.25.241.0\/25", + "version":63643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.241.128", + "prefixLen":25, + "network":"194.25.241.128\/25", + "version":63642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.241.128", + "prefixLen":25, + "network":"194.25.241.128\/25", + "version":63642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.242.0", + "prefixLen":25, + "network":"194.25.242.0\/25", + "version":63641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.242.0", + "prefixLen":25, + "network":"194.25.242.0\/25", + "version":63641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.242.128", + "prefixLen":25, + "network":"194.25.242.128\/25", + "version":63640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.242.128", + "prefixLen":25, + "network":"194.25.242.128\/25", + "version":63640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.243.0", + "prefixLen":25, + "network":"194.25.243.0\/25", + "version":63639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.243.0", + "prefixLen":25, + "network":"194.25.243.0\/25", + "version":63639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.25.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.25.243.128", + "prefixLen":25, + "network":"194.25.243.128\/25", + "version":63638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.25.243.128", + "prefixLen":25, + "network":"194.25.243.128\/25", + "version":63638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64969 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.0.0", + "prefixLen":25, + "network":"194.26.0.0\/25", + "version":63765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.0.0", + "prefixLen":25, + "network":"194.26.0.0\/25", + "version":63765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.0.128", + "prefixLen":25, + "network":"194.26.0.128\/25", + "version":63892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.0.128", + "prefixLen":25, + "network":"194.26.0.128\/25", + "version":63892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.1.0", + "prefixLen":25, + "network":"194.26.1.0\/25", + "version":63891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.1.0", + "prefixLen":25, + "network":"194.26.1.0\/25", + "version":63891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.1.128", + "prefixLen":25, + "network":"194.26.1.128\/25", + "version":63890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.1.128", + "prefixLen":25, + "network":"194.26.1.128\/25", + "version":63890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.2.0", + "prefixLen":25, + "network":"194.26.2.0\/25", + "version":63889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.2.0", + "prefixLen":25, + "network":"194.26.2.0\/25", + "version":63889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.2.128", + "prefixLen":25, + "network":"194.26.2.128\/25", + "version":63888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.2.128", + "prefixLen":25, + "network":"194.26.2.128\/25", + "version":63888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.3.0", + "prefixLen":25, + "network":"194.26.3.0\/25", + "version":63887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.3.0", + "prefixLen":25, + "network":"194.26.3.0\/25", + "version":63887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.3.128", + "prefixLen":25, + "network":"194.26.3.128\/25", + "version":63886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.3.128", + "prefixLen":25, + "network":"194.26.3.128\/25", + "version":63886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.16.0", + "prefixLen":25, + "network":"194.26.16.0\/25", + "version":63885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.16.0", + "prefixLen":25, + "network":"194.26.16.0\/25", + "version":63885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.16.128", + "prefixLen":25, + "network":"194.26.16.128\/25", + "version":63884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.16.128", + "prefixLen":25, + "network":"194.26.16.128\/25", + "version":63884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.17.0", + "prefixLen":25, + "network":"194.26.17.0\/25", + "version":63883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.17.0", + "prefixLen":25, + "network":"194.26.17.0\/25", + "version":63883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.17.128", + "prefixLen":25, + "network":"194.26.17.128\/25", + "version":63882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.17.128", + "prefixLen":25, + "network":"194.26.17.128\/25", + "version":63882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.18.0", + "prefixLen":25, + "network":"194.26.18.0\/25", + "version":63881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.18.0", + "prefixLen":25, + "network":"194.26.18.0\/25", + "version":63881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.18.128", + "prefixLen":25, + "network":"194.26.18.128\/25", + "version":63880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.18.128", + "prefixLen":25, + "network":"194.26.18.128\/25", + "version":63880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.19.0", + "prefixLen":25, + "network":"194.26.19.0\/25", + "version":63879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.19.0", + "prefixLen":25, + "network":"194.26.19.0\/25", + "version":63879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.19.128", + "prefixLen":25, + "network":"194.26.19.128\/25", + "version":63878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.19.128", + "prefixLen":25, + "network":"194.26.19.128\/25", + "version":63878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.32.0", + "prefixLen":25, + "network":"194.26.32.0\/25", + "version":63877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.32.0", + "prefixLen":25, + "network":"194.26.32.0\/25", + "version":63877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.32.128", + "prefixLen":25, + "network":"194.26.32.128\/25", + "version":63876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.32.128", + "prefixLen":25, + "network":"194.26.32.128\/25", + "version":63876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.33.0", + "prefixLen":25, + "network":"194.26.33.0\/25", + "version":63875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.33.0", + "prefixLen":25, + "network":"194.26.33.0\/25", + "version":63875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.33.128", + "prefixLen":25, + "network":"194.26.33.128\/25", + "version":63874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.33.128", + "prefixLen":25, + "network":"194.26.33.128\/25", + "version":63874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.34.0", + "prefixLen":25, + "network":"194.26.34.0\/25", + "version":63873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.34.0", + "prefixLen":25, + "network":"194.26.34.0\/25", + "version":63873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.34.128", + "prefixLen":25, + "network":"194.26.34.128\/25", + "version":63872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.34.128", + "prefixLen":25, + "network":"194.26.34.128\/25", + "version":63872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.35.0", + "prefixLen":25, + "network":"194.26.35.0\/25", + "version":63871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.35.0", + "prefixLen":25, + "network":"194.26.35.0\/25", + "version":63871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.35.128", + "prefixLen":25, + "network":"194.26.35.128\/25", + "version":63870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.35.128", + "prefixLen":25, + "network":"194.26.35.128\/25", + "version":63870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.48.0", + "prefixLen":25, + "network":"194.26.48.0\/25", + "version":63869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.48.0", + "prefixLen":25, + "network":"194.26.48.0\/25", + "version":63869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.48.128", + "prefixLen":25, + "network":"194.26.48.128\/25", + "version":63868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.48.128", + "prefixLen":25, + "network":"194.26.48.128\/25", + "version":63868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.49.0", + "prefixLen":25, + "network":"194.26.49.0\/25", + "version":63867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.49.0", + "prefixLen":25, + "network":"194.26.49.0\/25", + "version":63867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.49.128", + "prefixLen":25, + "network":"194.26.49.128\/25", + "version":63866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.49.128", + "prefixLen":25, + "network":"194.26.49.128\/25", + "version":63866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.50.0", + "prefixLen":25, + "network":"194.26.50.0\/25", + "version":63865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.50.0", + "prefixLen":25, + "network":"194.26.50.0\/25", + "version":63865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.50.128", + "prefixLen":25, + "network":"194.26.50.128\/25", + "version":63864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.50.128", + "prefixLen":25, + "network":"194.26.50.128\/25", + "version":63864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.51.0", + "prefixLen":25, + "network":"194.26.51.0\/25", + "version":63863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.51.0", + "prefixLen":25, + "network":"194.26.51.0\/25", + "version":63863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.51.128", + "prefixLen":25, + "network":"194.26.51.128\/25", + "version":63862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.51.128", + "prefixLen":25, + "network":"194.26.51.128\/25", + "version":63862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.64.0", + "prefixLen":25, + "network":"194.26.64.0\/25", + "version":63861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.64.0", + "prefixLen":25, + "network":"194.26.64.0\/25", + "version":63861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.64.128", + "prefixLen":25, + "network":"194.26.64.128\/25", + "version":63860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.64.128", + "prefixLen":25, + "network":"194.26.64.128\/25", + "version":63860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.65.0", + "prefixLen":25, + "network":"194.26.65.0\/25", + "version":63859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.65.0", + "prefixLen":25, + "network":"194.26.65.0\/25", + "version":63859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.65.128", + "prefixLen":25, + "network":"194.26.65.128\/25", + "version":63858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.65.128", + "prefixLen":25, + "network":"194.26.65.128\/25", + "version":63858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.66.0", + "prefixLen":25, + "network":"194.26.66.0\/25", + "version":63857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.66.0", + "prefixLen":25, + "network":"194.26.66.0\/25", + "version":63857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.66.128", + "prefixLen":25, + "network":"194.26.66.128\/25", + "version":63856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.66.128", + "prefixLen":25, + "network":"194.26.66.128\/25", + "version":63856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.67.0", + "prefixLen":25, + "network":"194.26.67.0\/25", + "version":63855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.67.0", + "prefixLen":25, + "network":"194.26.67.0\/25", + "version":63855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.67.128", + "prefixLen":25, + "network":"194.26.67.128\/25", + "version":63854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.67.128", + "prefixLen":25, + "network":"194.26.67.128\/25", + "version":63854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.80.0", + "prefixLen":25, + "network":"194.26.80.0\/25", + "version":63853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.80.0", + "prefixLen":25, + "network":"194.26.80.0\/25", + "version":63853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.80.128", + "prefixLen":25, + "network":"194.26.80.128\/25", + "version":63852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.80.128", + "prefixLen":25, + "network":"194.26.80.128\/25", + "version":63852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.81.0", + "prefixLen":25, + "network":"194.26.81.0\/25", + "version":63851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.81.0", + "prefixLen":25, + "network":"194.26.81.0\/25", + "version":63851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.81.128", + "prefixLen":25, + "network":"194.26.81.128\/25", + "version":63850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.81.128", + "prefixLen":25, + "network":"194.26.81.128\/25", + "version":63850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.82.0", + "prefixLen":25, + "network":"194.26.82.0\/25", + "version":63849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.82.0", + "prefixLen":25, + "network":"194.26.82.0\/25", + "version":63849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.82.128", + "prefixLen":25, + "network":"194.26.82.128\/25", + "version":63848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.82.128", + "prefixLen":25, + "network":"194.26.82.128\/25", + "version":63848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.83.0", + "prefixLen":25, + "network":"194.26.83.0\/25", + "version":63847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.83.0", + "prefixLen":25, + "network":"194.26.83.0\/25", + "version":63847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.83.128", + "prefixLen":25, + "network":"194.26.83.128\/25", + "version":63846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.83.128", + "prefixLen":25, + "network":"194.26.83.128\/25", + "version":63846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.96.0", + "prefixLen":25, + "network":"194.26.96.0\/25", + "version":63845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.96.0", + "prefixLen":25, + "network":"194.26.96.0\/25", + "version":63845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.96.128", + "prefixLen":25, + "network":"194.26.96.128\/25", + "version":63844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.96.128", + "prefixLen":25, + "network":"194.26.96.128\/25", + "version":63844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.97.0", + "prefixLen":25, + "network":"194.26.97.0\/25", + "version":63843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.97.0", + "prefixLen":25, + "network":"194.26.97.0\/25", + "version":63843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.97.128", + "prefixLen":25, + "network":"194.26.97.128\/25", + "version":63842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.97.128", + "prefixLen":25, + "network":"194.26.97.128\/25", + "version":63842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.98.0", + "prefixLen":25, + "network":"194.26.98.0\/25", + "version":63841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.98.0", + "prefixLen":25, + "network":"194.26.98.0\/25", + "version":63841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.98.128", + "prefixLen":25, + "network":"194.26.98.128\/25", + "version":63840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.98.128", + "prefixLen":25, + "network":"194.26.98.128\/25", + "version":63840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.99.0", + "prefixLen":25, + "network":"194.26.99.0\/25", + "version":63839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.99.0", + "prefixLen":25, + "network":"194.26.99.0\/25", + "version":63839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.99.128", + "prefixLen":25, + "network":"194.26.99.128\/25", + "version":63838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.99.128", + "prefixLen":25, + "network":"194.26.99.128\/25", + "version":63838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.112.0", + "prefixLen":25, + "network":"194.26.112.0\/25", + "version":63837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.112.0", + "prefixLen":25, + "network":"194.26.112.0\/25", + "version":63837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.112.128", + "prefixLen":25, + "network":"194.26.112.128\/25", + "version":63836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.112.128", + "prefixLen":25, + "network":"194.26.112.128\/25", + "version":63836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.113.0", + "prefixLen":25, + "network":"194.26.113.0\/25", + "version":63835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.113.0", + "prefixLen":25, + "network":"194.26.113.0\/25", + "version":63835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.113.128", + "prefixLen":25, + "network":"194.26.113.128\/25", + "version":63834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.113.128", + "prefixLen":25, + "network":"194.26.113.128\/25", + "version":63834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.114.0", + "prefixLen":25, + "network":"194.26.114.0\/25", + "version":63833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.114.0", + "prefixLen":25, + "network":"194.26.114.0\/25", + "version":63833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.114.128", + "prefixLen":25, + "network":"194.26.114.128\/25", + "version":63832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.114.128", + "prefixLen":25, + "network":"194.26.114.128\/25", + "version":63832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.115.0", + "prefixLen":25, + "network":"194.26.115.0\/25", + "version":63831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.115.0", + "prefixLen":25, + "network":"194.26.115.0\/25", + "version":63831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.115.128", + "prefixLen":25, + "network":"194.26.115.128\/25", + "version":63830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.115.128", + "prefixLen":25, + "network":"194.26.115.128\/25", + "version":63830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.128.0", + "prefixLen":25, + "network":"194.26.128.0\/25", + "version":63829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.128.0", + "prefixLen":25, + "network":"194.26.128.0\/25", + "version":63829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.128.128", + "prefixLen":25, + "network":"194.26.128.128\/25", + "version":63828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.128.128", + "prefixLen":25, + "network":"194.26.128.128\/25", + "version":63828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.129.0", + "prefixLen":25, + "network":"194.26.129.0\/25", + "version":63827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.129.0", + "prefixLen":25, + "network":"194.26.129.0\/25", + "version":63827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.129.128", + "prefixLen":25, + "network":"194.26.129.128\/25", + "version":63826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.129.128", + "prefixLen":25, + "network":"194.26.129.128\/25", + "version":63826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.130.0", + "prefixLen":25, + "network":"194.26.130.0\/25", + "version":63825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.130.0", + "prefixLen":25, + "network":"194.26.130.0\/25", + "version":63825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.130.128", + "prefixLen":25, + "network":"194.26.130.128\/25", + "version":63824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.130.128", + "prefixLen":25, + "network":"194.26.130.128\/25", + "version":63824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.131.0", + "prefixLen":25, + "network":"194.26.131.0\/25", + "version":63823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.131.0", + "prefixLen":25, + "network":"194.26.131.0\/25", + "version":63823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.131.128", + "prefixLen":25, + "network":"194.26.131.128\/25", + "version":63822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.131.128", + "prefixLen":25, + "network":"194.26.131.128\/25", + "version":63822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.144.0", + "prefixLen":25, + "network":"194.26.144.0\/25", + "version":63821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.144.0", + "prefixLen":25, + "network":"194.26.144.0\/25", + "version":63821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.144.128", + "prefixLen":25, + "network":"194.26.144.128\/25", + "version":63820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.144.128", + "prefixLen":25, + "network":"194.26.144.128\/25", + "version":63820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.145.0", + "prefixLen":25, + "network":"194.26.145.0\/25", + "version":63819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.145.0", + "prefixLen":25, + "network":"194.26.145.0\/25", + "version":63819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.145.128", + "prefixLen":25, + "network":"194.26.145.128\/25", + "version":63818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.145.128", + "prefixLen":25, + "network":"194.26.145.128\/25", + "version":63818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.146.0", + "prefixLen":25, + "network":"194.26.146.0\/25", + "version":63817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.146.0", + "prefixLen":25, + "network":"194.26.146.0\/25", + "version":63817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.146.128", + "prefixLen":25, + "network":"194.26.146.128\/25", + "version":63816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.146.128", + "prefixLen":25, + "network":"194.26.146.128\/25", + "version":63816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.147.0", + "prefixLen":25, + "network":"194.26.147.0\/25", + "version":63815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.147.0", + "prefixLen":25, + "network":"194.26.147.0\/25", + "version":63815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.147.128", + "prefixLen":25, + "network":"194.26.147.128\/25", + "version":63814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.147.128", + "prefixLen":25, + "network":"194.26.147.128\/25", + "version":63814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.160.0", + "prefixLen":25, + "network":"194.26.160.0\/25", + "version":63813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.160.0", + "prefixLen":25, + "network":"194.26.160.0\/25", + "version":63813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.160.128", + "prefixLen":25, + "network":"194.26.160.128\/25", + "version":63812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.160.128", + "prefixLen":25, + "network":"194.26.160.128\/25", + "version":63812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.161.0", + "prefixLen":25, + "network":"194.26.161.0\/25", + "version":63811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.161.0", + "prefixLen":25, + "network":"194.26.161.0\/25", + "version":63811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.161.128", + "prefixLen":25, + "network":"194.26.161.128\/25", + "version":63810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.161.128", + "prefixLen":25, + "network":"194.26.161.128\/25", + "version":63810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.162.0", + "prefixLen":25, + "network":"194.26.162.0\/25", + "version":63809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.162.0", + "prefixLen":25, + "network":"194.26.162.0\/25", + "version":63809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.162.128", + "prefixLen":25, + "network":"194.26.162.128\/25", + "version":63808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.162.128", + "prefixLen":25, + "network":"194.26.162.128\/25", + "version":63808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.163.0", + "prefixLen":25, + "network":"194.26.163.0\/25", + "version":63807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.163.0", + "prefixLen":25, + "network":"194.26.163.0\/25", + "version":63807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.163.128", + "prefixLen":25, + "network":"194.26.163.128\/25", + "version":63806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.163.128", + "prefixLen":25, + "network":"194.26.163.128\/25", + "version":63806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.176.0", + "prefixLen":25, + "network":"194.26.176.0\/25", + "version":63805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.176.0", + "prefixLen":25, + "network":"194.26.176.0\/25", + "version":63805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.176.128", + "prefixLen":25, + "network":"194.26.176.128\/25", + "version":63804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.176.128", + "prefixLen":25, + "network":"194.26.176.128\/25", + "version":63804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.177.0", + "prefixLen":25, + "network":"194.26.177.0\/25", + "version":63803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.177.0", + "prefixLen":25, + "network":"194.26.177.0\/25", + "version":63803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.177.128", + "prefixLen":25, + "network":"194.26.177.128\/25", + "version":63802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.177.128", + "prefixLen":25, + "network":"194.26.177.128\/25", + "version":63802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.178.0", + "prefixLen":25, + "network":"194.26.178.0\/25", + "version":63801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.178.0", + "prefixLen":25, + "network":"194.26.178.0\/25", + "version":63801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.178.128", + "prefixLen":25, + "network":"194.26.178.128\/25", + "version":63800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.178.128", + "prefixLen":25, + "network":"194.26.178.128\/25", + "version":63800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.179.0", + "prefixLen":25, + "network":"194.26.179.0\/25", + "version":63799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.179.0", + "prefixLen":25, + "network":"194.26.179.0\/25", + "version":63799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.179.128", + "prefixLen":25, + "network":"194.26.179.128\/25", + "version":63798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.179.128", + "prefixLen":25, + "network":"194.26.179.128\/25", + "version":63798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.192.0", + "prefixLen":25, + "network":"194.26.192.0\/25", + "version":63797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.192.0", + "prefixLen":25, + "network":"194.26.192.0\/25", + "version":63797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.192.128", + "prefixLen":25, + "network":"194.26.192.128\/25", + "version":63796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.192.128", + "prefixLen":25, + "network":"194.26.192.128\/25", + "version":63796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.193.0", + "prefixLen":25, + "network":"194.26.193.0\/25", + "version":63795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.193.0", + "prefixLen":25, + "network":"194.26.193.0\/25", + "version":63795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.193.128", + "prefixLen":25, + "network":"194.26.193.128\/25", + "version":63794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.193.128", + "prefixLen":25, + "network":"194.26.193.128\/25", + "version":63794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.194.0", + "prefixLen":25, + "network":"194.26.194.0\/25", + "version":63793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.194.0", + "prefixLen":25, + "network":"194.26.194.0\/25", + "version":63793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.194.128", + "prefixLen":25, + "network":"194.26.194.128\/25", + "version":63792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.194.128", + "prefixLen":25, + "network":"194.26.194.128\/25", + "version":63792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.195.0", + "prefixLen":25, + "network":"194.26.195.0\/25", + "version":63791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.195.0", + "prefixLen":25, + "network":"194.26.195.0\/25", + "version":63791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.195.128", + "prefixLen":25, + "network":"194.26.195.128\/25", + "version":63790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.195.128", + "prefixLen":25, + "network":"194.26.195.128\/25", + "version":63790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.208.0", + "prefixLen":25, + "network":"194.26.208.0\/25", + "version":63789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.208.0", + "prefixLen":25, + "network":"194.26.208.0\/25", + "version":63789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.208.128", + "prefixLen":25, + "network":"194.26.208.128\/25", + "version":63788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.208.128", + "prefixLen":25, + "network":"194.26.208.128\/25", + "version":63788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.209.0", + "prefixLen":25, + "network":"194.26.209.0\/25", + "version":63787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.209.0", + "prefixLen":25, + "network":"194.26.209.0\/25", + "version":63787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.209.128", + "prefixLen":25, + "network":"194.26.209.128\/25", + "version":63786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.209.128", + "prefixLen":25, + "network":"194.26.209.128\/25", + "version":63786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.210.0", + "prefixLen":25, + "network":"194.26.210.0\/25", + "version":63785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.210.0", + "prefixLen":25, + "network":"194.26.210.0\/25", + "version":63785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.210.128", + "prefixLen":25, + "network":"194.26.210.128\/25", + "version":63784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.210.128", + "prefixLen":25, + "network":"194.26.210.128\/25", + "version":63784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.211.0", + "prefixLen":25, + "network":"194.26.211.0\/25", + "version":63783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.211.0", + "prefixLen":25, + "network":"194.26.211.0\/25", + "version":63783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.211.128", + "prefixLen":25, + "network":"194.26.211.128\/25", + "version":63782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.211.128", + "prefixLen":25, + "network":"194.26.211.128\/25", + "version":63782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.224.0", + "prefixLen":25, + "network":"194.26.224.0\/25", + "version":63781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.224.0", + "prefixLen":25, + "network":"194.26.224.0\/25", + "version":63781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.224.128", + "prefixLen":25, + "network":"194.26.224.128\/25", + "version":63780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.224.128", + "prefixLen":25, + "network":"194.26.224.128\/25", + "version":63780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.225.0", + "prefixLen":25, + "network":"194.26.225.0\/25", + "version":63779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.225.0", + "prefixLen":25, + "network":"194.26.225.0\/25", + "version":63779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.225.128", + "prefixLen":25, + "network":"194.26.225.128\/25", + "version":63778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.225.128", + "prefixLen":25, + "network":"194.26.225.128\/25", + "version":63778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.226.0", + "prefixLen":25, + "network":"194.26.226.0\/25", + "version":63777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.226.0", + "prefixLen":25, + "network":"194.26.226.0\/25", + "version":63777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.226.128", + "prefixLen":25, + "network":"194.26.226.128\/25", + "version":63776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.226.128", + "prefixLen":25, + "network":"194.26.226.128\/25", + "version":63776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.227.0", + "prefixLen":25, + "network":"194.26.227.0\/25", + "version":63775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.227.0", + "prefixLen":25, + "network":"194.26.227.0\/25", + "version":63775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.227.128", + "prefixLen":25, + "network":"194.26.227.128\/25", + "version":63774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.227.128", + "prefixLen":25, + "network":"194.26.227.128\/25", + "version":63774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.240.0", + "prefixLen":25, + "network":"194.26.240.0\/25", + "version":63773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.240.0", + "prefixLen":25, + "network":"194.26.240.0\/25", + "version":63773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.240.128", + "prefixLen":25, + "network":"194.26.240.128\/25", + "version":63772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.240.128", + "prefixLen":25, + "network":"194.26.240.128\/25", + "version":63772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.241.0", + "prefixLen":25, + "network":"194.26.241.0\/25", + "version":63771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.241.0", + "prefixLen":25, + "network":"194.26.241.0\/25", + "version":63771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.241.128", + "prefixLen":25, + "network":"194.26.241.128\/25", + "version":63770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.241.128", + "prefixLen":25, + "network":"194.26.241.128\/25", + "version":63770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.242.0", + "prefixLen":25, + "network":"194.26.242.0\/25", + "version":63769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.242.0", + "prefixLen":25, + "network":"194.26.242.0\/25", + "version":63769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.242.128", + "prefixLen":25, + "network":"194.26.242.128\/25", + "version":63768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.242.128", + "prefixLen":25, + "network":"194.26.242.128\/25", + "version":63768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.243.0", + "prefixLen":25, + "network":"194.26.243.0\/25", + "version":63767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.243.0", + "prefixLen":25, + "network":"194.26.243.0\/25", + "version":63767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.26.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.26.243.128", + "prefixLen":25, + "network":"194.26.243.128\/25", + "version":63766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.26.243.128", + "prefixLen":25, + "network":"194.26.243.128\/25", + "version":63766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64970 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.0.0", + "prefixLen":25, + "network":"194.27.0.0\/25", + "version":63893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.0.0", + "prefixLen":25, + "network":"194.27.0.0\/25", + "version":63893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.0.128", + "prefixLen":25, + "network":"194.27.0.128\/25", + "version":64020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.0.128", + "prefixLen":25, + "network":"194.27.0.128\/25", + "version":64020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.1.0", + "prefixLen":25, + "network":"194.27.1.0\/25", + "version":64019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.1.0", + "prefixLen":25, + "network":"194.27.1.0\/25", + "version":64019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.1.128", + "prefixLen":25, + "network":"194.27.1.128\/25", + "version":64018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.1.128", + "prefixLen":25, + "network":"194.27.1.128\/25", + "version":64018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.2.0", + "prefixLen":25, + "network":"194.27.2.0\/25", + "version":64017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.2.0", + "prefixLen":25, + "network":"194.27.2.0\/25", + "version":64017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.2.128", + "prefixLen":25, + "network":"194.27.2.128\/25", + "version":64016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.2.128", + "prefixLen":25, + "network":"194.27.2.128\/25", + "version":64016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.3.0", + "prefixLen":25, + "network":"194.27.3.0\/25", + "version":64015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.3.0", + "prefixLen":25, + "network":"194.27.3.0\/25", + "version":64015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.3.128", + "prefixLen":25, + "network":"194.27.3.128\/25", + "version":64014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.3.128", + "prefixLen":25, + "network":"194.27.3.128\/25", + "version":64014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.16.0", + "prefixLen":25, + "network":"194.27.16.0\/25", + "version":64013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.16.0", + "prefixLen":25, + "network":"194.27.16.0\/25", + "version":64013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.16.128", + "prefixLen":25, + "network":"194.27.16.128\/25", + "version":64012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.16.128", + "prefixLen":25, + "network":"194.27.16.128\/25", + "version":64012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.17.0", + "prefixLen":25, + "network":"194.27.17.0\/25", + "version":64011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.17.0", + "prefixLen":25, + "network":"194.27.17.0\/25", + "version":64011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.17.128", + "prefixLen":25, + "network":"194.27.17.128\/25", + "version":64010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.17.128", + "prefixLen":25, + "network":"194.27.17.128\/25", + "version":64010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.18.0", + "prefixLen":25, + "network":"194.27.18.0\/25", + "version":64009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.18.0", + "prefixLen":25, + "network":"194.27.18.0\/25", + "version":64009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.18.128", + "prefixLen":25, + "network":"194.27.18.128\/25", + "version":64008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.18.128", + "prefixLen":25, + "network":"194.27.18.128\/25", + "version":64008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.19.0", + "prefixLen":25, + "network":"194.27.19.0\/25", + "version":64007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.19.0", + "prefixLen":25, + "network":"194.27.19.0\/25", + "version":64007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.19.128", + "prefixLen":25, + "network":"194.27.19.128\/25", + "version":64006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.19.128", + "prefixLen":25, + "network":"194.27.19.128\/25", + "version":64006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.32.0", + "prefixLen":25, + "network":"194.27.32.0\/25", + "version":64005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.32.0", + "prefixLen":25, + "network":"194.27.32.0\/25", + "version":64005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.32.128", + "prefixLen":25, + "network":"194.27.32.128\/25", + "version":64004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.32.128", + "prefixLen":25, + "network":"194.27.32.128\/25", + "version":64004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.33.0", + "prefixLen":25, + "network":"194.27.33.0\/25", + "version":64003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.33.0", + "prefixLen":25, + "network":"194.27.33.0\/25", + "version":64003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.33.128", + "prefixLen":25, + "network":"194.27.33.128\/25", + "version":64002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.33.128", + "prefixLen":25, + "network":"194.27.33.128\/25", + "version":64002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.34.0", + "prefixLen":25, + "network":"194.27.34.0\/25", + "version":64001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.34.0", + "prefixLen":25, + "network":"194.27.34.0\/25", + "version":64001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.34.128", + "prefixLen":25, + "network":"194.27.34.128\/25", + "version":64000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.34.128", + "prefixLen":25, + "network":"194.27.34.128\/25", + "version":64000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.35.0", + "prefixLen":25, + "network":"194.27.35.0\/25", + "version":63999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.35.0", + "prefixLen":25, + "network":"194.27.35.0\/25", + "version":63999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.35.128", + "prefixLen":25, + "network":"194.27.35.128\/25", + "version":63998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.35.128", + "prefixLen":25, + "network":"194.27.35.128\/25", + "version":63998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.48.0", + "prefixLen":25, + "network":"194.27.48.0\/25", + "version":63997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.48.0", + "prefixLen":25, + "network":"194.27.48.0\/25", + "version":63997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.48.128", + "prefixLen":25, + "network":"194.27.48.128\/25", + "version":63996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.48.128", + "prefixLen":25, + "network":"194.27.48.128\/25", + "version":63996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.49.0", + "prefixLen":25, + "network":"194.27.49.0\/25", + "version":63995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.49.0", + "prefixLen":25, + "network":"194.27.49.0\/25", + "version":63995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.49.128", + "prefixLen":25, + "network":"194.27.49.128\/25", + "version":63994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.49.128", + "prefixLen":25, + "network":"194.27.49.128\/25", + "version":63994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.50.0", + "prefixLen":25, + "network":"194.27.50.0\/25", + "version":63993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.50.0", + "prefixLen":25, + "network":"194.27.50.0\/25", + "version":63993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.50.128", + "prefixLen":25, + "network":"194.27.50.128\/25", + "version":63992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.50.128", + "prefixLen":25, + "network":"194.27.50.128\/25", + "version":63992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.51.0", + "prefixLen":25, + "network":"194.27.51.0\/25", + "version":63991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.51.0", + "prefixLen":25, + "network":"194.27.51.0\/25", + "version":63991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.51.128", + "prefixLen":25, + "network":"194.27.51.128\/25", + "version":63990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.51.128", + "prefixLen":25, + "network":"194.27.51.128\/25", + "version":63990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.64.0", + "prefixLen":25, + "network":"194.27.64.0\/25", + "version":63989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.64.0", + "prefixLen":25, + "network":"194.27.64.0\/25", + "version":63989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.64.128", + "prefixLen":25, + "network":"194.27.64.128\/25", + "version":63988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.64.128", + "prefixLen":25, + "network":"194.27.64.128\/25", + "version":63988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.65.0", + "prefixLen":25, + "network":"194.27.65.0\/25", + "version":63987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.65.0", + "prefixLen":25, + "network":"194.27.65.0\/25", + "version":63987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.65.128", + "prefixLen":25, + "network":"194.27.65.128\/25", + "version":63986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.65.128", + "prefixLen":25, + "network":"194.27.65.128\/25", + "version":63986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.66.0", + "prefixLen":25, + "network":"194.27.66.0\/25", + "version":63985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.66.0", + "prefixLen":25, + "network":"194.27.66.0\/25", + "version":63985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.66.128", + "prefixLen":25, + "network":"194.27.66.128\/25", + "version":63984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.66.128", + "prefixLen":25, + "network":"194.27.66.128\/25", + "version":63984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.67.0", + "prefixLen":25, + "network":"194.27.67.0\/25", + "version":63983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.67.0", + "prefixLen":25, + "network":"194.27.67.0\/25", + "version":63983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.67.128", + "prefixLen":25, + "network":"194.27.67.128\/25", + "version":63982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.67.128", + "prefixLen":25, + "network":"194.27.67.128\/25", + "version":63982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.80.0", + "prefixLen":25, + "network":"194.27.80.0\/25", + "version":63981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.80.0", + "prefixLen":25, + "network":"194.27.80.0\/25", + "version":63981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.80.128", + "prefixLen":25, + "network":"194.27.80.128\/25", + "version":63980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.80.128", + "prefixLen":25, + "network":"194.27.80.128\/25", + "version":63980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.81.0", + "prefixLen":25, + "network":"194.27.81.0\/25", + "version":63979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.81.0", + "prefixLen":25, + "network":"194.27.81.0\/25", + "version":63979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.81.128", + "prefixLen":25, + "network":"194.27.81.128\/25", + "version":63978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.81.128", + "prefixLen":25, + "network":"194.27.81.128\/25", + "version":63978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.82.0", + "prefixLen":25, + "network":"194.27.82.0\/25", + "version":63977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.82.0", + "prefixLen":25, + "network":"194.27.82.0\/25", + "version":63977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.82.128", + "prefixLen":25, + "network":"194.27.82.128\/25", + "version":63976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.82.128", + "prefixLen":25, + "network":"194.27.82.128\/25", + "version":63976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.83.0", + "prefixLen":25, + "network":"194.27.83.0\/25", + "version":63975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.83.0", + "prefixLen":25, + "network":"194.27.83.0\/25", + "version":63975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.83.128", + "prefixLen":25, + "network":"194.27.83.128\/25", + "version":63974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.83.128", + "prefixLen":25, + "network":"194.27.83.128\/25", + "version":63974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.96.0", + "prefixLen":25, + "network":"194.27.96.0\/25", + "version":63973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.96.0", + "prefixLen":25, + "network":"194.27.96.0\/25", + "version":63973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.96.128", + "prefixLen":25, + "network":"194.27.96.128\/25", + "version":63972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.96.128", + "prefixLen":25, + "network":"194.27.96.128\/25", + "version":63972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.97.0", + "prefixLen":25, + "network":"194.27.97.0\/25", + "version":63971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.97.0", + "prefixLen":25, + "network":"194.27.97.0\/25", + "version":63971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.97.128", + "prefixLen":25, + "network":"194.27.97.128\/25", + "version":63970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.97.128", + "prefixLen":25, + "network":"194.27.97.128\/25", + "version":63970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.98.0", + "prefixLen":25, + "network":"194.27.98.0\/25", + "version":63969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.98.0", + "prefixLen":25, + "network":"194.27.98.0\/25", + "version":63969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.98.128", + "prefixLen":25, + "network":"194.27.98.128\/25", + "version":63968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.98.128", + "prefixLen":25, + "network":"194.27.98.128\/25", + "version":63968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.99.0", + "prefixLen":25, + "network":"194.27.99.0\/25", + "version":63967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.99.0", + "prefixLen":25, + "network":"194.27.99.0\/25", + "version":63967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.99.128", + "prefixLen":25, + "network":"194.27.99.128\/25", + "version":63966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.99.128", + "prefixLen":25, + "network":"194.27.99.128\/25", + "version":63966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.112.0", + "prefixLen":25, + "network":"194.27.112.0\/25", + "version":63965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.112.0", + "prefixLen":25, + "network":"194.27.112.0\/25", + "version":63965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.112.128", + "prefixLen":25, + "network":"194.27.112.128\/25", + "version":63964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.112.128", + "prefixLen":25, + "network":"194.27.112.128\/25", + "version":63964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.113.0", + "prefixLen":25, + "network":"194.27.113.0\/25", + "version":63963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.113.0", + "prefixLen":25, + "network":"194.27.113.0\/25", + "version":63963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.113.128", + "prefixLen":25, + "network":"194.27.113.128\/25", + "version":63962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.113.128", + "prefixLen":25, + "network":"194.27.113.128\/25", + "version":63962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.114.0", + "prefixLen":25, + "network":"194.27.114.0\/25", + "version":63961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.114.0", + "prefixLen":25, + "network":"194.27.114.0\/25", + "version":63961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.114.128", + "prefixLen":25, + "network":"194.27.114.128\/25", + "version":63960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.114.128", + "prefixLen":25, + "network":"194.27.114.128\/25", + "version":63960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.115.0", + "prefixLen":25, + "network":"194.27.115.0\/25", + "version":63959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.115.0", + "prefixLen":25, + "network":"194.27.115.0\/25", + "version":63959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.115.128", + "prefixLen":25, + "network":"194.27.115.128\/25", + "version":63958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.115.128", + "prefixLen":25, + "network":"194.27.115.128\/25", + "version":63958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.128.0", + "prefixLen":25, + "network":"194.27.128.0\/25", + "version":63957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.128.0", + "prefixLen":25, + "network":"194.27.128.0\/25", + "version":63957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.128.128", + "prefixLen":25, + "network":"194.27.128.128\/25", + "version":63956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.128.128", + "prefixLen":25, + "network":"194.27.128.128\/25", + "version":63956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.129.0", + "prefixLen":25, + "network":"194.27.129.0\/25", + "version":63955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.129.0", + "prefixLen":25, + "network":"194.27.129.0\/25", + "version":63955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.129.128", + "prefixLen":25, + "network":"194.27.129.128\/25", + "version":63954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.129.128", + "prefixLen":25, + "network":"194.27.129.128\/25", + "version":63954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.130.0", + "prefixLen":25, + "network":"194.27.130.0\/25", + "version":63953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.130.0", + "prefixLen":25, + "network":"194.27.130.0\/25", + "version":63953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.130.128", + "prefixLen":25, + "network":"194.27.130.128\/25", + "version":63952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.130.128", + "prefixLen":25, + "network":"194.27.130.128\/25", + "version":63952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.131.0", + "prefixLen":25, + "network":"194.27.131.0\/25", + "version":63951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.131.0", + "prefixLen":25, + "network":"194.27.131.0\/25", + "version":63951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.131.128", + "prefixLen":25, + "network":"194.27.131.128\/25", + "version":63950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.131.128", + "prefixLen":25, + "network":"194.27.131.128\/25", + "version":63950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.144.0", + "prefixLen":25, + "network":"194.27.144.0\/25", + "version":63949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.144.0", + "prefixLen":25, + "network":"194.27.144.0\/25", + "version":63949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.144.128", + "prefixLen":25, + "network":"194.27.144.128\/25", + "version":63948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.144.128", + "prefixLen":25, + "network":"194.27.144.128\/25", + "version":63948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.145.0", + "prefixLen":25, + "network":"194.27.145.0\/25", + "version":63947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.145.0", + "prefixLen":25, + "network":"194.27.145.0\/25", + "version":63947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.145.128", + "prefixLen":25, + "network":"194.27.145.128\/25", + "version":63946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.145.128", + "prefixLen":25, + "network":"194.27.145.128\/25", + "version":63946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.146.0", + "prefixLen":25, + "network":"194.27.146.0\/25", + "version":63945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.146.0", + "prefixLen":25, + "network":"194.27.146.0\/25", + "version":63945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.146.128", + "prefixLen":25, + "network":"194.27.146.128\/25", + "version":63944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.146.128", + "prefixLen":25, + "network":"194.27.146.128\/25", + "version":63944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.147.0", + "prefixLen":25, + "network":"194.27.147.0\/25", + "version":63943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.147.0", + "prefixLen":25, + "network":"194.27.147.0\/25", + "version":63943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.147.128", + "prefixLen":25, + "network":"194.27.147.128\/25", + "version":63942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.147.128", + "prefixLen":25, + "network":"194.27.147.128\/25", + "version":63942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.160.0", + "prefixLen":25, + "network":"194.27.160.0\/25", + "version":63941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.160.0", + "prefixLen":25, + "network":"194.27.160.0\/25", + "version":63941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.160.128", + "prefixLen":25, + "network":"194.27.160.128\/25", + "version":63940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.160.128", + "prefixLen":25, + "network":"194.27.160.128\/25", + "version":63940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.161.0", + "prefixLen":25, + "network":"194.27.161.0\/25", + "version":63939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.161.0", + "prefixLen":25, + "network":"194.27.161.0\/25", + "version":63939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.161.128", + "prefixLen":25, + "network":"194.27.161.128\/25", + "version":63938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.161.128", + "prefixLen":25, + "network":"194.27.161.128\/25", + "version":63938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.162.0", + "prefixLen":25, + "network":"194.27.162.0\/25", + "version":63937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.162.0", + "prefixLen":25, + "network":"194.27.162.0\/25", + "version":63937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.162.128", + "prefixLen":25, + "network":"194.27.162.128\/25", + "version":63936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.162.128", + "prefixLen":25, + "network":"194.27.162.128\/25", + "version":63936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.163.0", + "prefixLen":25, + "network":"194.27.163.0\/25", + "version":63935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.163.0", + "prefixLen":25, + "network":"194.27.163.0\/25", + "version":63935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.163.128", + "prefixLen":25, + "network":"194.27.163.128\/25", + "version":63934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.163.128", + "prefixLen":25, + "network":"194.27.163.128\/25", + "version":63934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.176.0", + "prefixLen":25, + "network":"194.27.176.0\/25", + "version":63933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.176.0", + "prefixLen":25, + "network":"194.27.176.0\/25", + "version":63933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.176.128", + "prefixLen":25, + "network":"194.27.176.128\/25", + "version":63932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.176.128", + "prefixLen":25, + "network":"194.27.176.128\/25", + "version":63932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.177.0", + "prefixLen":25, + "network":"194.27.177.0\/25", + "version":63931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.177.0", + "prefixLen":25, + "network":"194.27.177.0\/25", + "version":63931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.177.128", + "prefixLen":25, + "network":"194.27.177.128\/25", + "version":63930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.177.128", + "prefixLen":25, + "network":"194.27.177.128\/25", + "version":63930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.178.0", + "prefixLen":25, + "network":"194.27.178.0\/25", + "version":63929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.178.0", + "prefixLen":25, + "network":"194.27.178.0\/25", + "version":63929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.178.128", + "prefixLen":25, + "network":"194.27.178.128\/25", + "version":63928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.178.128", + "prefixLen":25, + "network":"194.27.178.128\/25", + "version":63928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.179.0", + "prefixLen":25, + "network":"194.27.179.0\/25", + "version":63927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.179.0", + "prefixLen":25, + "network":"194.27.179.0\/25", + "version":63927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.179.128", + "prefixLen":25, + "network":"194.27.179.128\/25", + "version":63926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.179.128", + "prefixLen":25, + "network":"194.27.179.128\/25", + "version":63926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.192.0", + "prefixLen":25, + "network":"194.27.192.0\/25", + "version":63925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.192.0", + "prefixLen":25, + "network":"194.27.192.0\/25", + "version":63925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.192.128", + "prefixLen":25, + "network":"194.27.192.128\/25", + "version":63924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.192.128", + "prefixLen":25, + "network":"194.27.192.128\/25", + "version":63924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.193.0", + "prefixLen":25, + "network":"194.27.193.0\/25", + "version":63923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.193.0", + "prefixLen":25, + "network":"194.27.193.0\/25", + "version":63923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.193.128", + "prefixLen":25, + "network":"194.27.193.128\/25", + "version":63922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.193.128", + "prefixLen":25, + "network":"194.27.193.128\/25", + "version":63922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.194.0", + "prefixLen":25, + "network":"194.27.194.0\/25", + "version":63921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.194.0", + "prefixLen":25, + "network":"194.27.194.0\/25", + "version":63921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.194.128", + "prefixLen":25, + "network":"194.27.194.128\/25", + "version":63920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.194.128", + "prefixLen":25, + "network":"194.27.194.128\/25", + "version":63920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.195.0", + "prefixLen":25, + "network":"194.27.195.0\/25", + "version":63919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.195.0", + "prefixLen":25, + "network":"194.27.195.0\/25", + "version":63919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.195.128", + "prefixLen":25, + "network":"194.27.195.128\/25", + "version":63918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.195.128", + "prefixLen":25, + "network":"194.27.195.128\/25", + "version":63918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.208.0", + "prefixLen":25, + "network":"194.27.208.0\/25", + "version":63917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.208.0", + "prefixLen":25, + "network":"194.27.208.0\/25", + "version":63917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.208.128", + "prefixLen":25, + "network":"194.27.208.128\/25", + "version":63916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.208.128", + "prefixLen":25, + "network":"194.27.208.128\/25", + "version":63916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.209.0", + "prefixLen":25, + "network":"194.27.209.0\/25", + "version":63915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.209.0", + "prefixLen":25, + "network":"194.27.209.0\/25", + "version":63915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.209.128", + "prefixLen":25, + "network":"194.27.209.128\/25", + "version":63914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.209.128", + "prefixLen":25, + "network":"194.27.209.128\/25", + "version":63914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.210.0", + "prefixLen":25, + "network":"194.27.210.0\/25", + "version":63913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.210.0", + "prefixLen":25, + "network":"194.27.210.0\/25", + "version":63913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.210.128", + "prefixLen":25, + "network":"194.27.210.128\/25", + "version":63912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.210.128", + "prefixLen":25, + "network":"194.27.210.128\/25", + "version":63912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.211.0", + "prefixLen":25, + "network":"194.27.211.0\/25", + "version":63911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.211.0", + "prefixLen":25, + "network":"194.27.211.0\/25", + "version":63911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.211.128", + "prefixLen":25, + "network":"194.27.211.128\/25", + "version":63910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.211.128", + "prefixLen":25, + "network":"194.27.211.128\/25", + "version":63910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.224.0", + "prefixLen":25, + "network":"194.27.224.0\/25", + "version":63909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.224.0", + "prefixLen":25, + "network":"194.27.224.0\/25", + "version":63909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.224.128", + "prefixLen":25, + "network":"194.27.224.128\/25", + "version":63908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.224.128", + "prefixLen":25, + "network":"194.27.224.128\/25", + "version":63908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.225.0", + "prefixLen":25, + "network":"194.27.225.0\/25", + "version":63907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.225.0", + "prefixLen":25, + "network":"194.27.225.0\/25", + "version":63907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.225.128", + "prefixLen":25, + "network":"194.27.225.128\/25", + "version":63906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.225.128", + "prefixLen":25, + "network":"194.27.225.128\/25", + "version":63906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.226.0", + "prefixLen":25, + "network":"194.27.226.0\/25", + "version":63905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.226.0", + "prefixLen":25, + "network":"194.27.226.0\/25", + "version":63905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.226.128", + "prefixLen":25, + "network":"194.27.226.128\/25", + "version":63904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.226.128", + "prefixLen":25, + "network":"194.27.226.128\/25", + "version":63904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.227.0", + "prefixLen":25, + "network":"194.27.227.0\/25", + "version":63903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.227.0", + "prefixLen":25, + "network":"194.27.227.0\/25", + "version":63903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.227.128", + "prefixLen":25, + "network":"194.27.227.128\/25", + "version":63902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.227.128", + "prefixLen":25, + "network":"194.27.227.128\/25", + "version":63902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.240.0", + "prefixLen":25, + "network":"194.27.240.0\/25", + "version":63901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.240.0", + "prefixLen":25, + "network":"194.27.240.0\/25", + "version":63901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.240.128", + "prefixLen":25, + "network":"194.27.240.128\/25", + "version":63900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.240.128", + "prefixLen":25, + "network":"194.27.240.128\/25", + "version":63900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.241.0", + "prefixLen":25, + "network":"194.27.241.0\/25", + "version":63899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.241.0", + "prefixLen":25, + "network":"194.27.241.0\/25", + "version":63899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.241.128", + "prefixLen":25, + "network":"194.27.241.128\/25", + "version":63898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.241.128", + "prefixLen":25, + "network":"194.27.241.128\/25", + "version":63898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.242.0", + "prefixLen":25, + "network":"194.27.242.0\/25", + "version":63897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.242.0", + "prefixLen":25, + "network":"194.27.242.0\/25", + "version":63897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.242.128", + "prefixLen":25, + "network":"194.27.242.128\/25", + "version":63896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.242.128", + "prefixLen":25, + "network":"194.27.242.128\/25", + "version":63896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.243.0", + "prefixLen":25, + "network":"194.27.243.0\/25", + "version":63895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.243.0", + "prefixLen":25, + "network":"194.27.243.0\/25", + "version":63895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.27.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.27.243.128", + "prefixLen":25, + "network":"194.27.243.128\/25", + "version":63894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.27.243.128", + "prefixLen":25, + "network":"194.27.243.128\/25", + "version":63894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64971 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.0.0", + "prefixLen":25, + "network":"194.28.0.0\/25", + "version":64021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.0.0", + "prefixLen":25, + "network":"194.28.0.0\/25", + "version":64021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.0.128", + "prefixLen":25, + "network":"194.28.0.128\/25", + "version":64148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.0.128", + "prefixLen":25, + "network":"194.28.0.128\/25", + "version":64148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.1.0", + "prefixLen":25, + "network":"194.28.1.0\/25", + "version":64147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.1.0", + "prefixLen":25, + "network":"194.28.1.0\/25", + "version":64147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.1.128", + "prefixLen":25, + "network":"194.28.1.128\/25", + "version":64146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.1.128", + "prefixLen":25, + "network":"194.28.1.128\/25", + "version":64146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.2.0", + "prefixLen":25, + "network":"194.28.2.0\/25", + "version":64145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.2.0", + "prefixLen":25, + "network":"194.28.2.0\/25", + "version":64145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.2.128", + "prefixLen":25, + "network":"194.28.2.128\/25", + "version":64144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.2.128", + "prefixLen":25, + "network":"194.28.2.128\/25", + "version":64144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.3.0", + "prefixLen":25, + "network":"194.28.3.0\/25", + "version":64143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.3.0", + "prefixLen":25, + "network":"194.28.3.0\/25", + "version":64143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.3.128", + "prefixLen":25, + "network":"194.28.3.128\/25", + "version":64142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.3.128", + "prefixLen":25, + "network":"194.28.3.128\/25", + "version":64142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.16.0", + "prefixLen":25, + "network":"194.28.16.0\/25", + "version":64141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.16.0", + "prefixLen":25, + "network":"194.28.16.0\/25", + "version":64141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.16.128", + "prefixLen":25, + "network":"194.28.16.128\/25", + "version":64140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.16.128", + "prefixLen":25, + "network":"194.28.16.128\/25", + "version":64140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.17.0", + "prefixLen":25, + "network":"194.28.17.0\/25", + "version":64139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.17.0", + "prefixLen":25, + "network":"194.28.17.0\/25", + "version":64139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.17.128", + "prefixLen":25, + "network":"194.28.17.128\/25", + "version":64138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.17.128", + "prefixLen":25, + "network":"194.28.17.128\/25", + "version":64138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.18.0", + "prefixLen":25, + "network":"194.28.18.0\/25", + "version":64137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.18.0", + "prefixLen":25, + "network":"194.28.18.0\/25", + "version":64137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.18.128", + "prefixLen":25, + "network":"194.28.18.128\/25", + "version":64136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.18.128", + "prefixLen":25, + "network":"194.28.18.128\/25", + "version":64136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.19.0", + "prefixLen":25, + "network":"194.28.19.0\/25", + "version":64135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.19.0", + "prefixLen":25, + "network":"194.28.19.0\/25", + "version":64135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.19.128", + "prefixLen":25, + "network":"194.28.19.128\/25", + "version":64134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.19.128", + "prefixLen":25, + "network":"194.28.19.128\/25", + "version":64134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.32.0", + "prefixLen":25, + "network":"194.28.32.0\/25", + "version":64133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.32.0", + "prefixLen":25, + "network":"194.28.32.0\/25", + "version":64133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.32.128", + "prefixLen":25, + "network":"194.28.32.128\/25", + "version":64132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.32.128", + "prefixLen":25, + "network":"194.28.32.128\/25", + "version":64132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.33.0", + "prefixLen":25, + "network":"194.28.33.0\/25", + "version":64131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.33.0", + "prefixLen":25, + "network":"194.28.33.0\/25", + "version":64131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.33.128", + "prefixLen":25, + "network":"194.28.33.128\/25", + "version":64130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.33.128", + "prefixLen":25, + "network":"194.28.33.128\/25", + "version":64130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.34.0", + "prefixLen":25, + "network":"194.28.34.0\/25", + "version":64129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.34.0", + "prefixLen":25, + "network":"194.28.34.0\/25", + "version":64129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.34.128", + "prefixLen":25, + "network":"194.28.34.128\/25", + "version":64128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.34.128", + "prefixLen":25, + "network":"194.28.34.128\/25", + "version":64128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.35.0", + "prefixLen":25, + "network":"194.28.35.0\/25", + "version":64127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.35.0", + "prefixLen":25, + "network":"194.28.35.0\/25", + "version":64127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.35.128", + "prefixLen":25, + "network":"194.28.35.128\/25", + "version":64126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.35.128", + "prefixLen":25, + "network":"194.28.35.128\/25", + "version":64126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.48.0", + "prefixLen":25, + "network":"194.28.48.0\/25", + "version":64125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.48.0", + "prefixLen":25, + "network":"194.28.48.0\/25", + "version":64125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.48.128", + "prefixLen":25, + "network":"194.28.48.128\/25", + "version":64124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.48.128", + "prefixLen":25, + "network":"194.28.48.128\/25", + "version":64124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.49.0", + "prefixLen":25, + "network":"194.28.49.0\/25", + "version":64123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.49.0", + "prefixLen":25, + "network":"194.28.49.0\/25", + "version":64123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.49.128", + "prefixLen":25, + "network":"194.28.49.128\/25", + "version":64122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.49.128", + "prefixLen":25, + "network":"194.28.49.128\/25", + "version":64122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.50.0", + "prefixLen":25, + "network":"194.28.50.0\/25", + "version":64121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.50.0", + "prefixLen":25, + "network":"194.28.50.0\/25", + "version":64121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.50.128", + "prefixLen":25, + "network":"194.28.50.128\/25", + "version":64120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.50.128", + "prefixLen":25, + "network":"194.28.50.128\/25", + "version":64120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.51.0", + "prefixLen":25, + "network":"194.28.51.0\/25", + "version":64119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.51.0", + "prefixLen":25, + "network":"194.28.51.0\/25", + "version":64119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.51.128", + "prefixLen":25, + "network":"194.28.51.128\/25", + "version":64118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.51.128", + "prefixLen":25, + "network":"194.28.51.128\/25", + "version":64118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.64.0", + "prefixLen":25, + "network":"194.28.64.0\/25", + "version":64117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.64.0", + "prefixLen":25, + "network":"194.28.64.0\/25", + "version":64117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.64.128", + "prefixLen":25, + "network":"194.28.64.128\/25", + "version":64116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.64.128", + "prefixLen":25, + "network":"194.28.64.128\/25", + "version":64116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.65.0", + "prefixLen":25, + "network":"194.28.65.0\/25", + "version":64115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.65.0", + "prefixLen":25, + "network":"194.28.65.0\/25", + "version":64115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.65.128", + "prefixLen":25, + "network":"194.28.65.128\/25", + "version":64114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.65.128", + "prefixLen":25, + "network":"194.28.65.128\/25", + "version":64114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.66.0", + "prefixLen":25, + "network":"194.28.66.0\/25", + "version":64113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.66.0", + "prefixLen":25, + "network":"194.28.66.0\/25", + "version":64113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.66.128", + "prefixLen":25, + "network":"194.28.66.128\/25", + "version":64112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.66.128", + "prefixLen":25, + "network":"194.28.66.128\/25", + "version":64112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.67.0", + "prefixLen":25, + "network":"194.28.67.0\/25", + "version":64111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.67.0", + "prefixLen":25, + "network":"194.28.67.0\/25", + "version":64111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.67.128", + "prefixLen":25, + "network":"194.28.67.128\/25", + "version":64110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.67.128", + "prefixLen":25, + "network":"194.28.67.128\/25", + "version":64110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.80.0", + "prefixLen":25, + "network":"194.28.80.0\/25", + "version":64109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.80.0", + "prefixLen":25, + "network":"194.28.80.0\/25", + "version":64109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.80.128", + "prefixLen":25, + "network":"194.28.80.128\/25", + "version":64108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.80.128", + "prefixLen":25, + "network":"194.28.80.128\/25", + "version":64108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.81.0", + "prefixLen":25, + "network":"194.28.81.0\/25", + "version":64107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.81.0", + "prefixLen":25, + "network":"194.28.81.0\/25", + "version":64107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.81.128", + "prefixLen":25, + "network":"194.28.81.128\/25", + "version":64106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.81.128", + "prefixLen":25, + "network":"194.28.81.128\/25", + "version":64106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.82.0", + "prefixLen":25, + "network":"194.28.82.0\/25", + "version":64105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.82.0", + "prefixLen":25, + "network":"194.28.82.0\/25", + "version":64105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.82.128", + "prefixLen":25, + "network":"194.28.82.128\/25", + "version":64104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.82.128", + "prefixLen":25, + "network":"194.28.82.128\/25", + "version":64104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.83.0", + "prefixLen":25, + "network":"194.28.83.0\/25", + "version":64103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.83.0", + "prefixLen":25, + "network":"194.28.83.0\/25", + "version":64103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.83.128", + "prefixLen":25, + "network":"194.28.83.128\/25", + "version":64102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.83.128", + "prefixLen":25, + "network":"194.28.83.128\/25", + "version":64102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.96.0", + "prefixLen":25, + "network":"194.28.96.0\/25", + "version":64101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.96.0", + "prefixLen":25, + "network":"194.28.96.0\/25", + "version":64101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.96.128", + "prefixLen":25, + "network":"194.28.96.128\/25", + "version":64100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.96.128", + "prefixLen":25, + "network":"194.28.96.128\/25", + "version":64100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.97.0", + "prefixLen":25, + "network":"194.28.97.0\/25", + "version":64099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.97.0", + "prefixLen":25, + "network":"194.28.97.0\/25", + "version":64099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.97.128", + "prefixLen":25, + "network":"194.28.97.128\/25", + "version":64098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.97.128", + "prefixLen":25, + "network":"194.28.97.128\/25", + "version":64098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.98.0", + "prefixLen":25, + "network":"194.28.98.0\/25", + "version":64097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.98.0", + "prefixLen":25, + "network":"194.28.98.0\/25", + "version":64097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.98.128", + "prefixLen":25, + "network":"194.28.98.128\/25", + "version":64096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.98.128", + "prefixLen":25, + "network":"194.28.98.128\/25", + "version":64096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.99.0", + "prefixLen":25, + "network":"194.28.99.0\/25", + "version":64095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.99.0", + "prefixLen":25, + "network":"194.28.99.0\/25", + "version":64095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.99.128", + "prefixLen":25, + "network":"194.28.99.128\/25", + "version":64094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.99.128", + "prefixLen":25, + "network":"194.28.99.128\/25", + "version":64094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.112.0", + "prefixLen":25, + "network":"194.28.112.0\/25", + "version":64093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.112.0", + "prefixLen":25, + "network":"194.28.112.0\/25", + "version":64093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.112.128", + "prefixLen":25, + "network":"194.28.112.128\/25", + "version":64092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.112.128", + "prefixLen":25, + "network":"194.28.112.128\/25", + "version":64092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.113.0", + "prefixLen":25, + "network":"194.28.113.0\/25", + "version":64091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.113.0", + "prefixLen":25, + "network":"194.28.113.0\/25", + "version":64091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.113.128", + "prefixLen":25, + "network":"194.28.113.128\/25", + "version":64090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.113.128", + "prefixLen":25, + "network":"194.28.113.128\/25", + "version":64090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.114.0", + "prefixLen":25, + "network":"194.28.114.0\/25", + "version":64089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.114.0", + "prefixLen":25, + "network":"194.28.114.0\/25", + "version":64089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.114.128", + "prefixLen":25, + "network":"194.28.114.128\/25", + "version":64088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.114.128", + "prefixLen":25, + "network":"194.28.114.128\/25", + "version":64088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.115.0", + "prefixLen":25, + "network":"194.28.115.0\/25", + "version":64087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.115.0", + "prefixLen":25, + "network":"194.28.115.0\/25", + "version":64087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.115.128", + "prefixLen":25, + "network":"194.28.115.128\/25", + "version":64086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.115.128", + "prefixLen":25, + "network":"194.28.115.128\/25", + "version":64086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.128.0", + "prefixLen":25, + "network":"194.28.128.0\/25", + "version":64085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.128.0", + "prefixLen":25, + "network":"194.28.128.0\/25", + "version":64085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.128.128", + "prefixLen":25, + "network":"194.28.128.128\/25", + "version":64084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.128.128", + "prefixLen":25, + "network":"194.28.128.128\/25", + "version":64084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.129.0", + "prefixLen":25, + "network":"194.28.129.0\/25", + "version":64083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.129.0", + "prefixLen":25, + "network":"194.28.129.0\/25", + "version":64083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.129.128", + "prefixLen":25, + "network":"194.28.129.128\/25", + "version":64082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.129.128", + "prefixLen":25, + "network":"194.28.129.128\/25", + "version":64082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.130.0", + "prefixLen":25, + "network":"194.28.130.0\/25", + "version":64081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.130.0", + "prefixLen":25, + "network":"194.28.130.0\/25", + "version":64081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.130.128", + "prefixLen":25, + "network":"194.28.130.128\/25", + "version":64080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.130.128", + "prefixLen":25, + "network":"194.28.130.128\/25", + "version":64080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.131.0", + "prefixLen":25, + "network":"194.28.131.0\/25", + "version":64079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.131.0", + "prefixLen":25, + "network":"194.28.131.0\/25", + "version":64079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.131.128", + "prefixLen":25, + "network":"194.28.131.128\/25", + "version":64078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.131.128", + "prefixLen":25, + "network":"194.28.131.128\/25", + "version":64078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.144.0", + "prefixLen":25, + "network":"194.28.144.0\/25", + "version":64077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.144.0", + "prefixLen":25, + "network":"194.28.144.0\/25", + "version":64077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.144.128", + "prefixLen":25, + "network":"194.28.144.128\/25", + "version":64076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.144.128", + "prefixLen":25, + "network":"194.28.144.128\/25", + "version":64076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.145.0", + "prefixLen":25, + "network":"194.28.145.0\/25", + "version":64075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.145.0", + "prefixLen":25, + "network":"194.28.145.0\/25", + "version":64075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.145.128", + "prefixLen":25, + "network":"194.28.145.128\/25", + "version":64074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.145.128", + "prefixLen":25, + "network":"194.28.145.128\/25", + "version":64074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.146.0", + "prefixLen":25, + "network":"194.28.146.0\/25", + "version":64073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.146.0", + "prefixLen":25, + "network":"194.28.146.0\/25", + "version":64073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.146.128", + "prefixLen":25, + "network":"194.28.146.128\/25", + "version":64072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.146.128", + "prefixLen":25, + "network":"194.28.146.128\/25", + "version":64072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.147.0", + "prefixLen":25, + "network":"194.28.147.0\/25", + "version":64071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.147.0", + "prefixLen":25, + "network":"194.28.147.0\/25", + "version":64071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.147.128", + "prefixLen":25, + "network":"194.28.147.128\/25", + "version":64070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.147.128", + "prefixLen":25, + "network":"194.28.147.128\/25", + "version":64070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.160.0", + "prefixLen":25, + "network":"194.28.160.0\/25", + "version":64069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.160.0", + "prefixLen":25, + "network":"194.28.160.0\/25", + "version":64069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.160.128", + "prefixLen":25, + "network":"194.28.160.128\/25", + "version":64068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.160.128", + "prefixLen":25, + "network":"194.28.160.128\/25", + "version":64068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.161.0", + "prefixLen":25, + "network":"194.28.161.0\/25", + "version":64067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.161.0", + "prefixLen":25, + "network":"194.28.161.0\/25", + "version":64067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.161.128", + "prefixLen":25, + "network":"194.28.161.128\/25", + "version":64066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.161.128", + "prefixLen":25, + "network":"194.28.161.128\/25", + "version":64066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.162.0", + "prefixLen":25, + "network":"194.28.162.0\/25", + "version":64065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.162.0", + "prefixLen":25, + "network":"194.28.162.0\/25", + "version":64065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.162.128", + "prefixLen":25, + "network":"194.28.162.128\/25", + "version":64064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.162.128", + "prefixLen":25, + "network":"194.28.162.128\/25", + "version":64064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.163.0", + "prefixLen":25, + "network":"194.28.163.0\/25", + "version":64063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.163.0", + "prefixLen":25, + "network":"194.28.163.0\/25", + "version":64063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.163.128", + "prefixLen":25, + "network":"194.28.163.128\/25", + "version":64062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.163.128", + "prefixLen":25, + "network":"194.28.163.128\/25", + "version":64062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.176.0", + "prefixLen":25, + "network":"194.28.176.0\/25", + "version":64061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.176.0", + "prefixLen":25, + "network":"194.28.176.0\/25", + "version":64061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.176.128", + "prefixLen":25, + "network":"194.28.176.128\/25", + "version":64060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.176.128", + "prefixLen":25, + "network":"194.28.176.128\/25", + "version":64060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.177.0", + "prefixLen":25, + "network":"194.28.177.0\/25", + "version":64059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.177.0", + "prefixLen":25, + "network":"194.28.177.0\/25", + "version":64059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.177.128", + "prefixLen":25, + "network":"194.28.177.128\/25", + "version":64058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.177.128", + "prefixLen":25, + "network":"194.28.177.128\/25", + "version":64058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.178.0", + "prefixLen":25, + "network":"194.28.178.0\/25", + "version":64057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.178.0", + "prefixLen":25, + "network":"194.28.178.0\/25", + "version":64057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.178.128", + "prefixLen":25, + "network":"194.28.178.128\/25", + "version":64056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.178.128", + "prefixLen":25, + "network":"194.28.178.128\/25", + "version":64056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.179.0", + "prefixLen":25, + "network":"194.28.179.0\/25", + "version":64055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.179.0", + "prefixLen":25, + "network":"194.28.179.0\/25", + "version":64055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.179.128", + "prefixLen":25, + "network":"194.28.179.128\/25", + "version":64054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.179.128", + "prefixLen":25, + "network":"194.28.179.128\/25", + "version":64054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.192.0", + "prefixLen":25, + "network":"194.28.192.0\/25", + "version":64053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.192.0", + "prefixLen":25, + "network":"194.28.192.0\/25", + "version":64053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.192.128", + "prefixLen":25, + "network":"194.28.192.128\/25", + "version":64052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.192.128", + "prefixLen":25, + "network":"194.28.192.128\/25", + "version":64052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.193.0", + "prefixLen":25, + "network":"194.28.193.0\/25", + "version":64051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.193.0", + "prefixLen":25, + "network":"194.28.193.0\/25", + "version":64051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.193.128", + "prefixLen":25, + "network":"194.28.193.128\/25", + "version":64050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.193.128", + "prefixLen":25, + "network":"194.28.193.128\/25", + "version":64050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.194.0", + "prefixLen":25, + "network":"194.28.194.0\/25", + "version":64049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.194.0", + "prefixLen":25, + "network":"194.28.194.0\/25", + "version":64049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.194.128", + "prefixLen":25, + "network":"194.28.194.128\/25", + "version":64048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.194.128", + "prefixLen":25, + "network":"194.28.194.128\/25", + "version":64048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.195.0", + "prefixLen":25, + "network":"194.28.195.0\/25", + "version":64047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.195.0", + "prefixLen":25, + "network":"194.28.195.0\/25", + "version":64047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.195.128", + "prefixLen":25, + "network":"194.28.195.128\/25", + "version":64046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.195.128", + "prefixLen":25, + "network":"194.28.195.128\/25", + "version":64046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.208.0", + "prefixLen":25, + "network":"194.28.208.0\/25", + "version":64045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.208.0", + "prefixLen":25, + "network":"194.28.208.0\/25", + "version":64045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.208.128", + "prefixLen":25, + "network":"194.28.208.128\/25", + "version":64044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.208.128", + "prefixLen":25, + "network":"194.28.208.128\/25", + "version":64044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.209.0", + "prefixLen":25, + "network":"194.28.209.0\/25", + "version":64043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.209.0", + "prefixLen":25, + "network":"194.28.209.0\/25", + "version":64043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.209.128", + "prefixLen":25, + "network":"194.28.209.128\/25", + "version":64042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.209.128", + "prefixLen":25, + "network":"194.28.209.128\/25", + "version":64042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.210.0", + "prefixLen":25, + "network":"194.28.210.0\/25", + "version":64041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.210.0", + "prefixLen":25, + "network":"194.28.210.0\/25", + "version":64041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.210.128", + "prefixLen":25, + "network":"194.28.210.128\/25", + "version":64040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.210.128", + "prefixLen":25, + "network":"194.28.210.128\/25", + "version":64040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.211.0", + "prefixLen":25, + "network":"194.28.211.0\/25", + "version":64039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.211.0", + "prefixLen":25, + "network":"194.28.211.0\/25", + "version":64039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.211.128", + "prefixLen":25, + "network":"194.28.211.128\/25", + "version":64038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.211.128", + "prefixLen":25, + "network":"194.28.211.128\/25", + "version":64038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.224.0", + "prefixLen":25, + "network":"194.28.224.0\/25", + "version":64037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.224.0", + "prefixLen":25, + "network":"194.28.224.0\/25", + "version":64037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.224.128", + "prefixLen":25, + "network":"194.28.224.128\/25", + "version":64036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.224.128", + "prefixLen":25, + "network":"194.28.224.128\/25", + "version":64036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.225.0", + "prefixLen":25, + "network":"194.28.225.0\/25", + "version":64035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.225.0", + "prefixLen":25, + "network":"194.28.225.0\/25", + "version":64035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.225.128", + "prefixLen":25, + "network":"194.28.225.128\/25", + "version":64034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.225.128", + "prefixLen":25, + "network":"194.28.225.128\/25", + "version":64034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.226.0", + "prefixLen":25, + "network":"194.28.226.0\/25", + "version":64033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.226.0", + "prefixLen":25, + "network":"194.28.226.0\/25", + "version":64033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.226.128", + "prefixLen":25, + "network":"194.28.226.128\/25", + "version":64032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.226.128", + "prefixLen":25, + "network":"194.28.226.128\/25", + "version":64032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.227.0", + "prefixLen":25, + "network":"194.28.227.0\/25", + "version":64031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.227.0", + "prefixLen":25, + "network":"194.28.227.0\/25", + "version":64031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.227.128", + "prefixLen":25, + "network":"194.28.227.128\/25", + "version":64030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.227.128", + "prefixLen":25, + "network":"194.28.227.128\/25", + "version":64030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.240.0", + "prefixLen":25, + "network":"194.28.240.0\/25", + "version":64029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.240.0", + "prefixLen":25, + "network":"194.28.240.0\/25", + "version":64029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.240.128", + "prefixLen":25, + "network":"194.28.240.128\/25", + "version":64028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.240.128", + "prefixLen":25, + "network":"194.28.240.128\/25", + "version":64028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.241.0", + "prefixLen":25, + "network":"194.28.241.0\/25", + "version":64027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.241.0", + "prefixLen":25, + "network":"194.28.241.0\/25", + "version":64027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.241.128", + "prefixLen":25, + "network":"194.28.241.128\/25", + "version":64026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.241.128", + "prefixLen":25, + "network":"194.28.241.128\/25", + "version":64026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.242.0", + "prefixLen":25, + "network":"194.28.242.0\/25", + "version":64025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.242.0", + "prefixLen":25, + "network":"194.28.242.0\/25", + "version":64025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.242.128", + "prefixLen":25, + "network":"194.28.242.128\/25", + "version":64024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.242.128", + "prefixLen":25, + "network":"194.28.242.128\/25", + "version":64024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.243.0", + "prefixLen":25, + "network":"194.28.243.0\/25", + "version":64023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.243.0", + "prefixLen":25, + "network":"194.28.243.0\/25", + "version":64023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.28.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.28.243.128", + "prefixLen":25, + "network":"194.28.243.128\/25", + "version":64022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.28.243.128", + "prefixLen":25, + "network":"194.28.243.128\/25", + "version":64022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64972 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.0.0", + "prefixLen":25, + "network":"194.29.0.0\/25", + "version":64149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.0.0", + "prefixLen":25, + "network":"194.29.0.0\/25", + "version":64149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.0.128", + "prefixLen":25, + "network":"194.29.0.128\/25", + "version":64276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.0.128", + "prefixLen":25, + "network":"194.29.0.128\/25", + "version":64276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.1.0", + "prefixLen":25, + "network":"194.29.1.0\/25", + "version":64275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.1.0", + "prefixLen":25, + "network":"194.29.1.0\/25", + "version":64275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.1.128", + "prefixLen":25, + "network":"194.29.1.128\/25", + "version":64274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.1.128", + "prefixLen":25, + "network":"194.29.1.128\/25", + "version":64274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.2.0", + "prefixLen":25, + "network":"194.29.2.0\/25", + "version":64273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.2.0", + "prefixLen":25, + "network":"194.29.2.0\/25", + "version":64273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.2.128", + "prefixLen":25, + "network":"194.29.2.128\/25", + "version":64272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.2.128", + "prefixLen":25, + "network":"194.29.2.128\/25", + "version":64272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.3.0", + "prefixLen":25, + "network":"194.29.3.0\/25", + "version":64271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.3.0", + "prefixLen":25, + "network":"194.29.3.0\/25", + "version":64271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.3.128", + "prefixLen":25, + "network":"194.29.3.128\/25", + "version":64270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.3.128", + "prefixLen":25, + "network":"194.29.3.128\/25", + "version":64270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.16.0", + "prefixLen":25, + "network":"194.29.16.0\/25", + "version":64269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.16.0", + "prefixLen":25, + "network":"194.29.16.0\/25", + "version":64269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.16.128", + "prefixLen":25, + "network":"194.29.16.128\/25", + "version":64268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.16.128", + "prefixLen":25, + "network":"194.29.16.128\/25", + "version":64268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.17.0", + "prefixLen":25, + "network":"194.29.17.0\/25", + "version":64267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.17.0", + "prefixLen":25, + "network":"194.29.17.0\/25", + "version":64267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.17.128", + "prefixLen":25, + "network":"194.29.17.128\/25", + "version":64266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.17.128", + "prefixLen":25, + "network":"194.29.17.128\/25", + "version":64266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.18.0", + "prefixLen":25, + "network":"194.29.18.0\/25", + "version":64265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.18.0", + "prefixLen":25, + "network":"194.29.18.0\/25", + "version":64265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.18.128", + "prefixLen":25, + "network":"194.29.18.128\/25", + "version":64264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.18.128", + "prefixLen":25, + "network":"194.29.18.128\/25", + "version":64264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.19.0", + "prefixLen":25, + "network":"194.29.19.0\/25", + "version":64263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.19.0", + "prefixLen":25, + "network":"194.29.19.0\/25", + "version":64263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.19.128", + "prefixLen":25, + "network":"194.29.19.128\/25", + "version":64262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.19.128", + "prefixLen":25, + "network":"194.29.19.128\/25", + "version":64262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.32.0", + "prefixLen":25, + "network":"194.29.32.0\/25", + "version":64261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.32.0", + "prefixLen":25, + "network":"194.29.32.0\/25", + "version":64261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.32.128", + "prefixLen":25, + "network":"194.29.32.128\/25", + "version":64260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.32.128", + "prefixLen":25, + "network":"194.29.32.128\/25", + "version":64260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.33.0", + "prefixLen":25, + "network":"194.29.33.0\/25", + "version":64259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.33.0", + "prefixLen":25, + "network":"194.29.33.0\/25", + "version":64259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.33.128", + "prefixLen":25, + "network":"194.29.33.128\/25", + "version":64258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.33.128", + "prefixLen":25, + "network":"194.29.33.128\/25", + "version":64258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.34.0", + "prefixLen":25, + "network":"194.29.34.0\/25", + "version":64257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.34.0", + "prefixLen":25, + "network":"194.29.34.0\/25", + "version":64257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.34.128", + "prefixLen":25, + "network":"194.29.34.128\/25", + "version":64256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.34.128", + "prefixLen":25, + "network":"194.29.34.128\/25", + "version":64256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.35.0", + "prefixLen":25, + "network":"194.29.35.0\/25", + "version":64255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.35.0", + "prefixLen":25, + "network":"194.29.35.0\/25", + "version":64255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.35.128", + "prefixLen":25, + "network":"194.29.35.128\/25", + "version":64254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.35.128", + "prefixLen":25, + "network":"194.29.35.128\/25", + "version":64254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.48.0", + "prefixLen":25, + "network":"194.29.48.0\/25", + "version":64253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.48.0", + "prefixLen":25, + "network":"194.29.48.0\/25", + "version":64253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.48.128", + "prefixLen":25, + "network":"194.29.48.128\/25", + "version":64252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.48.128", + "prefixLen":25, + "network":"194.29.48.128\/25", + "version":64252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.49.0", + "prefixLen":25, + "network":"194.29.49.0\/25", + "version":64251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.49.0", + "prefixLen":25, + "network":"194.29.49.0\/25", + "version":64251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.49.128", + "prefixLen":25, + "network":"194.29.49.128\/25", + "version":64250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.49.128", + "prefixLen":25, + "network":"194.29.49.128\/25", + "version":64250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.50.0", + "prefixLen":25, + "network":"194.29.50.0\/25", + "version":64249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.50.0", + "prefixLen":25, + "network":"194.29.50.0\/25", + "version":64249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.50.128", + "prefixLen":25, + "network":"194.29.50.128\/25", + "version":64248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.50.128", + "prefixLen":25, + "network":"194.29.50.128\/25", + "version":64248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.51.0", + "prefixLen":25, + "network":"194.29.51.0\/25", + "version":64247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.51.0", + "prefixLen":25, + "network":"194.29.51.0\/25", + "version":64247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.51.128", + "prefixLen":25, + "network":"194.29.51.128\/25", + "version":64246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.51.128", + "prefixLen":25, + "network":"194.29.51.128\/25", + "version":64246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.64.0", + "prefixLen":25, + "network":"194.29.64.0\/25", + "version":64245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.64.0", + "prefixLen":25, + "network":"194.29.64.0\/25", + "version":64245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.64.128", + "prefixLen":25, + "network":"194.29.64.128\/25", + "version":64244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.64.128", + "prefixLen":25, + "network":"194.29.64.128\/25", + "version":64244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.65.0", + "prefixLen":25, + "network":"194.29.65.0\/25", + "version":64243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.65.0", + "prefixLen":25, + "network":"194.29.65.0\/25", + "version":64243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.65.128", + "prefixLen":25, + "network":"194.29.65.128\/25", + "version":64242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.65.128", + "prefixLen":25, + "network":"194.29.65.128\/25", + "version":64242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.66.0", + "prefixLen":25, + "network":"194.29.66.0\/25", + "version":64241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.66.0", + "prefixLen":25, + "network":"194.29.66.0\/25", + "version":64241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.66.128", + "prefixLen":25, + "network":"194.29.66.128\/25", + "version":64240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.66.128", + "prefixLen":25, + "network":"194.29.66.128\/25", + "version":64240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.67.0", + "prefixLen":25, + "network":"194.29.67.0\/25", + "version":64239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.67.0", + "prefixLen":25, + "network":"194.29.67.0\/25", + "version":64239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.67.128", + "prefixLen":25, + "network":"194.29.67.128\/25", + "version":64238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.67.128", + "prefixLen":25, + "network":"194.29.67.128\/25", + "version":64238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.80.0", + "prefixLen":25, + "network":"194.29.80.0\/25", + "version":64237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.80.0", + "prefixLen":25, + "network":"194.29.80.0\/25", + "version":64237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.80.128", + "prefixLen":25, + "network":"194.29.80.128\/25", + "version":64236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.80.128", + "prefixLen":25, + "network":"194.29.80.128\/25", + "version":64236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.81.0", + "prefixLen":25, + "network":"194.29.81.0\/25", + "version":64235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.81.0", + "prefixLen":25, + "network":"194.29.81.0\/25", + "version":64235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.81.128", + "prefixLen":25, + "network":"194.29.81.128\/25", + "version":64234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.81.128", + "prefixLen":25, + "network":"194.29.81.128\/25", + "version":64234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.82.0", + "prefixLen":25, + "network":"194.29.82.0\/25", + "version":64233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.82.0", + "prefixLen":25, + "network":"194.29.82.0\/25", + "version":64233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.82.128", + "prefixLen":25, + "network":"194.29.82.128\/25", + "version":64232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.82.128", + "prefixLen":25, + "network":"194.29.82.128\/25", + "version":64232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.83.0", + "prefixLen":25, + "network":"194.29.83.0\/25", + "version":64231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.83.0", + "prefixLen":25, + "network":"194.29.83.0\/25", + "version":64231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.83.128", + "prefixLen":25, + "network":"194.29.83.128\/25", + "version":64230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.83.128", + "prefixLen":25, + "network":"194.29.83.128\/25", + "version":64230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.96.0", + "prefixLen":25, + "network":"194.29.96.0\/25", + "version":64229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.96.0", + "prefixLen":25, + "network":"194.29.96.0\/25", + "version":64229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.96.128", + "prefixLen":25, + "network":"194.29.96.128\/25", + "version":64228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.96.128", + "prefixLen":25, + "network":"194.29.96.128\/25", + "version":64228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.97.0", + "prefixLen":25, + "network":"194.29.97.0\/25", + "version":64227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.97.0", + "prefixLen":25, + "network":"194.29.97.0\/25", + "version":64227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.97.128", + "prefixLen":25, + "network":"194.29.97.128\/25", + "version":64226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.97.128", + "prefixLen":25, + "network":"194.29.97.128\/25", + "version":64226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.98.0", + "prefixLen":25, + "network":"194.29.98.0\/25", + "version":64225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.98.0", + "prefixLen":25, + "network":"194.29.98.0\/25", + "version":64225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.98.128", + "prefixLen":25, + "network":"194.29.98.128\/25", + "version":64224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.98.128", + "prefixLen":25, + "network":"194.29.98.128\/25", + "version":64224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.99.0", + "prefixLen":25, + "network":"194.29.99.0\/25", + "version":64223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.99.0", + "prefixLen":25, + "network":"194.29.99.0\/25", + "version":64223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.99.128", + "prefixLen":25, + "network":"194.29.99.128\/25", + "version":64222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.99.128", + "prefixLen":25, + "network":"194.29.99.128\/25", + "version":64222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.112.0", + "prefixLen":25, + "network":"194.29.112.0\/25", + "version":64221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.112.0", + "prefixLen":25, + "network":"194.29.112.0\/25", + "version":64221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.112.128", + "prefixLen":25, + "network":"194.29.112.128\/25", + "version":64220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.112.128", + "prefixLen":25, + "network":"194.29.112.128\/25", + "version":64220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.113.0", + "prefixLen":25, + "network":"194.29.113.0\/25", + "version":64219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.113.0", + "prefixLen":25, + "network":"194.29.113.0\/25", + "version":64219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.113.128", + "prefixLen":25, + "network":"194.29.113.128\/25", + "version":64218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.113.128", + "prefixLen":25, + "network":"194.29.113.128\/25", + "version":64218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.114.0", + "prefixLen":25, + "network":"194.29.114.0\/25", + "version":64217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.114.0", + "prefixLen":25, + "network":"194.29.114.0\/25", + "version":64217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.114.128", + "prefixLen":25, + "network":"194.29.114.128\/25", + "version":64216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.114.128", + "prefixLen":25, + "network":"194.29.114.128\/25", + "version":64216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.115.0", + "prefixLen":25, + "network":"194.29.115.0\/25", + "version":64215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.115.0", + "prefixLen":25, + "network":"194.29.115.0\/25", + "version":64215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.115.128", + "prefixLen":25, + "network":"194.29.115.128\/25", + "version":64214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.115.128", + "prefixLen":25, + "network":"194.29.115.128\/25", + "version":64214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.128.0", + "prefixLen":25, + "network":"194.29.128.0\/25", + "version":64213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.128.0", + "prefixLen":25, + "network":"194.29.128.0\/25", + "version":64213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.128.128", + "prefixLen":25, + "network":"194.29.128.128\/25", + "version":64212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.128.128", + "prefixLen":25, + "network":"194.29.128.128\/25", + "version":64212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.129.0", + "prefixLen":25, + "network":"194.29.129.0\/25", + "version":64211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.129.0", + "prefixLen":25, + "network":"194.29.129.0\/25", + "version":64211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.129.128", + "prefixLen":25, + "network":"194.29.129.128\/25", + "version":64210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.129.128", + "prefixLen":25, + "network":"194.29.129.128\/25", + "version":64210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.130.0", + "prefixLen":25, + "network":"194.29.130.0\/25", + "version":64209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.130.0", + "prefixLen":25, + "network":"194.29.130.0\/25", + "version":64209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.130.128", + "prefixLen":25, + "network":"194.29.130.128\/25", + "version":64208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.130.128", + "prefixLen":25, + "network":"194.29.130.128\/25", + "version":64208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.131.0", + "prefixLen":25, + "network":"194.29.131.0\/25", + "version":64207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.131.0", + "prefixLen":25, + "network":"194.29.131.0\/25", + "version":64207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.131.128", + "prefixLen":25, + "network":"194.29.131.128\/25", + "version":64206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.131.128", + "prefixLen":25, + "network":"194.29.131.128\/25", + "version":64206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.144.0", + "prefixLen":25, + "network":"194.29.144.0\/25", + "version":64205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.144.0", + "prefixLen":25, + "network":"194.29.144.0\/25", + "version":64205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.144.128", + "prefixLen":25, + "network":"194.29.144.128\/25", + "version":64204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.144.128", + "prefixLen":25, + "network":"194.29.144.128\/25", + "version":64204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.145.0", + "prefixLen":25, + "network":"194.29.145.0\/25", + "version":64203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.145.0", + "prefixLen":25, + "network":"194.29.145.0\/25", + "version":64203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.145.128", + "prefixLen":25, + "network":"194.29.145.128\/25", + "version":64202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.145.128", + "prefixLen":25, + "network":"194.29.145.128\/25", + "version":64202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.146.0", + "prefixLen":25, + "network":"194.29.146.0\/25", + "version":64201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.146.0", + "prefixLen":25, + "network":"194.29.146.0\/25", + "version":64201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.146.128", + "prefixLen":25, + "network":"194.29.146.128\/25", + "version":64200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.146.128", + "prefixLen":25, + "network":"194.29.146.128\/25", + "version":64200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.147.0", + "prefixLen":25, + "network":"194.29.147.0\/25", + "version":64199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.147.0", + "prefixLen":25, + "network":"194.29.147.0\/25", + "version":64199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.147.128", + "prefixLen":25, + "network":"194.29.147.128\/25", + "version":64198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.147.128", + "prefixLen":25, + "network":"194.29.147.128\/25", + "version":64198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.160.0", + "prefixLen":25, + "network":"194.29.160.0\/25", + "version":64197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.160.0", + "prefixLen":25, + "network":"194.29.160.0\/25", + "version":64197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.160.128", + "prefixLen":25, + "network":"194.29.160.128\/25", + "version":64196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.160.128", + "prefixLen":25, + "network":"194.29.160.128\/25", + "version":64196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.161.0", + "prefixLen":25, + "network":"194.29.161.0\/25", + "version":64195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.161.0", + "prefixLen":25, + "network":"194.29.161.0\/25", + "version":64195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.161.128", + "prefixLen":25, + "network":"194.29.161.128\/25", + "version":64194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.161.128", + "prefixLen":25, + "network":"194.29.161.128\/25", + "version":64194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.162.0", + "prefixLen":25, + "network":"194.29.162.0\/25", + "version":64193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.162.0", + "prefixLen":25, + "network":"194.29.162.0\/25", + "version":64193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.162.128", + "prefixLen":25, + "network":"194.29.162.128\/25", + "version":64192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.162.128", + "prefixLen":25, + "network":"194.29.162.128\/25", + "version":64192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.163.0", + "prefixLen":25, + "network":"194.29.163.0\/25", + "version":64191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.163.0", + "prefixLen":25, + "network":"194.29.163.0\/25", + "version":64191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.163.128", + "prefixLen":25, + "network":"194.29.163.128\/25", + "version":64190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.163.128", + "prefixLen":25, + "network":"194.29.163.128\/25", + "version":64190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.176.0", + "prefixLen":25, + "network":"194.29.176.0\/25", + "version":64189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.176.0", + "prefixLen":25, + "network":"194.29.176.0\/25", + "version":64189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.176.128", + "prefixLen":25, + "network":"194.29.176.128\/25", + "version":64188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.176.128", + "prefixLen":25, + "network":"194.29.176.128\/25", + "version":64188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.177.0", + "prefixLen":25, + "network":"194.29.177.0\/25", + "version":64187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.177.0", + "prefixLen":25, + "network":"194.29.177.0\/25", + "version":64187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.177.128", + "prefixLen":25, + "network":"194.29.177.128\/25", + "version":64186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.177.128", + "prefixLen":25, + "network":"194.29.177.128\/25", + "version":64186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.178.0", + "prefixLen":25, + "network":"194.29.178.0\/25", + "version":64185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.178.0", + "prefixLen":25, + "network":"194.29.178.0\/25", + "version":64185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.178.128", + "prefixLen":25, + "network":"194.29.178.128\/25", + "version":64184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.178.128", + "prefixLen":25, + "network":"194.29.178.128\/25", + "version":64184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.179.0", + "prefixLen":25, + "network":"194.29.179.0\/25", + "version":64183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.179.0", + "prefixLen":25, + "network":"194.29.179.0\/25", + "version":64183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.179.128", + "prefixLen":25, + "network":"194.29.179.128\/25", + "version":64182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.179.128", + "prefixLen":25, + "network":"194.29.179.128\/25", + "version":64182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.192.0", + "prefixLen":25, + "network":"194.29.192.0\/25", + "version":64181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.192.0", + "prefixLen":25, + "network":"194.29.192.0\/25", + "version":64181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.192.128", + "prefixLen":25, + "network":"194.29.192.128\/25", + "version":64180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.192.128", + "prefixLen":25, + "network":"194.29.192.128\/25", + "version":64180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.193.0", + "prefixLen":25, + "network":"194.29.193.0\/25", + "version":64179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.193.0", + "prefixLen":25, + "network":"194.29.193.0\/25", + "version":64179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.193.128", + "prefixLen":25, + "network":"194.29.193.128\/25", + "version":64178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.193.128", + "prefixLen":25, + "network":"194.29.193.128\/25", + "version":64178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.194.0", + "prefixLen":25, + "network":"194.29.194.0\/25", + "version":64177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.194.0", + "prefixLen":25, + "network":"194.29.194.0\/25", + "version":64177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.194.128", + "prefixLen":25, + "network":"194.29.194.128\/25", + "version":64176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.194.128", + "prefixLen":25, + "network":"194.29.194.128\/25", + "version":64176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.195.0", + "prefixLen":25, + "network":"194.29.195.0\/25", + "version":64175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.195.0", + "prefixLen":25, + "network":"194.29.195.0\/25", + "version":64175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.195.128", + "prefixLen":25, + "network":"194.29.195.128\/25", + "version":64174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.195.128", + "prefixLen":25, + "network":"194.29.195.128\/25", + "version":64174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.208.0", + "prefixLen":25, + "network":"194.29.208.0\/25", + "version":64173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.208.0", + "prefixLen":25, + "network":"194.29.208.0\/25", + "version":64173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.208.128", + "prefixLen":25, + "network":"194.29.208.128\/25", + "version":64172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.208.128", + "prefixLen":25, + "network":"194.29.208.128\/25", + "version":64172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.209.0", + "prefixLen":25, + "network":"194.29.209.0\/25", + "version":64171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.209.0", + "prefixLen":25, + "network":"194.29.209.0\/25", + "version":64171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.209.128", + "prefixLen":25, + "network":"194.29.209.128\/25", + "version":64170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.209.128", + "prefixLen":25, + "network":"194.29.209.128\/25", + "version":64170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.210.0", + "prefixLen":25, + "network":"194.29.210.0\/25", + "version":64169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.210.0", + "prefixLen":25, + "network":"194.29.210.0\/25", + "version":64169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.210.128", + "prefixLen":25, + "network":"194.29.210.128\/25", + "version":64168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.210.128", + "prefixLen":25, + "network":"194.29.210.128\/25", + "version":64168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.211.0", + "prefixLen":25, + "network":"194.29.211.0\/25", + "version":64167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.211.0", + "prefixLen":25, + "network":"194.29.211.0\/25", + "version":64167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.211.128", + "prefixLen":25, + "network":"194.29.211.128\/25", + "version":64166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.211.128", + "prefixLen":25, + "network":"194.29.211.128\/25", + "version":64166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.224.0", + "prefixLen":25, + "network":"194.29.224.0\/25", + "version":64165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.224.0", + "prefixLen":25, + "network":"194.29.224.0\/25", + "version":64165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.224.128", + "prefixLen":25, + "network":"194.29.224.128\/25", + "version":64164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.224.128", + "prefixLen":25, + "network":"194.29.224.128\/25", + "version":64164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.225.0", + "prefixLen":25, + "network":"194.29.225.0\/25", + "version":64163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.225.0", + "prefixLen":25, + "network":"194.29.225.0\/25", + "version":64163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.225.128", + "prefixLen":25, + "network":"194.29.225.128\/25", + "version":64162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.225.128", + "prefixLen":25, + "network":"194.29.225.128\/25", + "version":64162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.226.0", + "prefixLen":25, + "network":"194.29.226.0\/25", + "version":64161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.226.0", + "prefixLen":25, + "network":"194.29.226.0\/25", + "version":64161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.226.128", + "prefixLen":25, + "network":"194.29.226.128\/25", + "version":64160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.226.128", + "prefixLen":25, + "network":"194.29.226.128\/25", + "version":64160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.227.0", + "prefixLen":25, + "network":"194.29.227.0\/25", + "version":64159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.227.0", + "prefixLen":25, + "network":"194.29.227.0\/25", + "version":64159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.227.128", + "prefixLen":25, + "network":"194.29.227.128\/25", + "version":64158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.227.128", + "prefixLen":25, + "network":"194.29.227.128\/25", + "version":64158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.240.0", + "prefixLen":25, + "network":"194.29.240.0\/25", + "version":64157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.240.0", + "prefixLen":25, + "network":"194.29.240.0\/25", + "version":64157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.240.128", + "prefixLen":25, + "network":"194.29.240.128\/25", + "version":64156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.240.128", + "prefixLen":25, + "network":"194.29.240.128\/25", + "version":64156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.241.0", + "prefixLen":25, + "network":"194.29.241.0\/25", + "version":64155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.241.0", + "prefixLen":25, + "network":"194.29.241.0\/25", + "version":64155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.241.128", + "prefixLen":25, + "network":"194.29.241.128\/25", + "version":64154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.241.128", + "prefixLen":25, + "network":"194.29.241.128\/25", + "version":64154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.242.0", + "prefixLen":25, + "network":"194.29.242.0\/25", + "version":64153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.242.0", + "prefixLen":25, + "network":"194.29.242.0\/25", + "version":64153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.242.128", + "prefixLen":25, + "network":"194.29.242.128\/25", + "version":64152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.242.128", + "prefixLen":25, + "network":"194.29.242.128\/25", + "version":64152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.243.0", + "prefixLen":25, + "network":"194.29.243.0\/25", + "version":64151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.243.0", + "prefixLen":25, + "network":"194.29.243.0\/25", + "version":64151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.29.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.29.243.128", + "prefixLen":25, + "network":"194.29.243.128\/25", + "version":64150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.29.243.128", + "prefixLen":25, + "network":"194.29.243.128\/25", + "version":64150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64973 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.0.0", + "prefixLen":25, + "network":"194.30.0.0\/25", + "version":64277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.0.0", + "prefixLen":25, + "network":"194.30.0.0\/25", + "version":64277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.0.128", + "prefixLen":25, + "network":"194.30.0.128\/25", + "version":64404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.0.128", + "prefixLen":25, + "network":"194.30.0.128\/25", + "version":64404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.1.0", + "prefixLen":25, + "network":"194.30.1.0\/25", + "version":64403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.1.0", + "prefixLen":25, + "network":"194.30.1.0\/25", + "version":64403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.1.128", + "prefixLen":25, + "network":"194.30.1.128\/25", + "version":64402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.1.128", + "prefixLen":25, + "network":"194.30.1.128\/25", + "version":64402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.2.0", + "prefixLen":25, + "network":"194.30.2.0\/25", + "version":64401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.2.0", + "prefixLen":25, + "network":"194.30.2.0\/25", + "version":64401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.2.128", + "prefixLen":25, + "network":"194.30.2.128\/25", + "version":64400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.2.128", + "prefixLen":25, + "network":"194.30.2.128\/25", + "version":64400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.3.0", + "prefixLen":25, + "network":"194.30.3.0\/25", + "version":64399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.3.0", + "prefixLen":25, + "network":"194.30.3.0\/25", + "version":64399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.3.128", + "prefixLen":25, + "network":"194.30.3.128\/25", + "version":64398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.3.128", + "prefixLen":25, + "network":"194.30.3.128\/25", + "version":64398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.16.0", + "prefixLen":25, + "network":"194.30.16.0\/25", + "version":64397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.16.0", + "prefixLen":25, + "network":"194.30.16.0\/25", + "version":64397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.16.128", + "prefixLen":25, + "network":"194.30.16.128\/25", + "version":64396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.16.128", + "prefixLen":25, + "network":"194.30.16.128\/25", + "version":64396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.17.0", + "prefixLen":25, + "network":"194.30.17.0\/25", + "version":64395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.17.0", + "prefixLen":25, + "network":"194.30.17.0\/25", + "version":64395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.17.128", + "prefixLen":25, + "network":"194.30.17.128\/25", + "version":64394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.17.128", + "prefixLen":25, + "network":"194.30.17.128\/25", + "version":64394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.18.0", + "prefixLen":25, + "network":"194.30.18.0\/25", + "version":64393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.18.0", + "prefixLen":25, + "network":"194.30.18.0\/25", + "version":64393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.18.128", + "prefixLen":25, + "network":"194.30.18.128\/25", + "version":64392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.18.128", + "prefixLen":25, + "network":"194.30.18.128\/25", + "version":64392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.19.0", + "prefixLen":25, + "network":"194.30.19.0\/25", + "version":64391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.19.0", + "prefixLen":25, + "network":"194.30.19.0\/25", + "version":64391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.19.128", + "prefixLen":25, + "network":"194.30.19.128\/25", + "version":64390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.19.128", + "prefixLen":25, + "network":"194.30.19.128\/25", + "version":64390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.32.0", + "prefixLen":25, + "network":"194.30.32.0\/25", + "version":64389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.32.0", + "prefixLen":25, + "network":"194.30.32.0\/25", + "version":64389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.32.128", + "prefixLen":25, + "network":"194.30.32.128\/25", + "version":64388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.32.128", + "prefixLen":25, + "network":"194.30.32.128\/25", + "version":64388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.33.0", + "prefixLen":25, + "network":"194.30.33.0\/25", + "version":64387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.33.0", + "prefixLen":25, + "network":"194.30.33.0\/25", + "version":64387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.33.128", + "prefixLen":25, + "network":"194.30.33.128\/25", + "version":64386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.33.128", + "prefixLen":25, + "network":"194.30.33.128\/25", + "version":64386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.34.0", + "prefixLen":25, + "network":"194.30.34.0\/25", + "version":64385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.34.0", + "prefixLen":25, + "network":"194.30.34.0\/25", + "version":64385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.34.128", + "prefixLen":25, + "network":"194.30.34.128\/25", + "version":64384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.34.128", + "prefixLen":25, + "network":"194.30.34.128\/25", + "version":64384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.35.0", + "prefixLen":25, + "network":"194.30.35.0\/25", + "version":64383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.35.0", + "prefixLen":25, + "network":"194.30.35.0\/25", + "version":64383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.35.128", + "prefixLen":25, + "network":"194.30.35.128\/25", + "version":64382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.35.128", + "prefixLen":25, + "network":"194.30.35.128\/25", + "version":64382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.48.0", + "prefixLen":25, + "network":"194.30.48.0\/25", + "version":64381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.48.0", + "prefixLen":25, + "network":"194.30.48.0\/25", + "version":64381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.48.128", + "prefixLen":25, + "network":"194.30.48.128\/25", + "version":64380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.48.128", + "prefixLen":25, + "network":"194.30.48.128\/25", + "version":64380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.49.0", + "prefixLen":25, + "network":"194.30.49.0\/25", + "version":64379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.49.0", + "prefixLen":25, + "network":"194.30.49.0\/25", + "version":64379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.49.128", + "prefixLen":25, + "network":"194.30.49.128\/25", + "version":64378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.49.128", + "prefixLen":25, + "network":"194.30.49.128\/25", + "version":64378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.50.0", + "prefixLen":25, + "network":"194.30.50.0\/25", + "version":64377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.50.0", + "prefixLen":25, + "network":"194.30.50.0\/25", + "version":64377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.50.128", + "prefixLen":25, + "network":"194.30.50.128\/25", + "version":64376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.50.128", + "prefixLen":25, + "network":"194.30.50.128\/25", + "version":64376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.51.0", + "prefixLen":25, + "network":"194.30.51.0\/25", + "version":64375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.51.0", + "prefixLen":25, + "network":"194.30.51.0\/25", + "version":64375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.51.128", + "prefixLen":25, + "network":"194.30.51.128\/25", + "version":64374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.51.128", + "prefixLen":25, + "network":"194.30.51.128\/25", + "version":64374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.64.0", + "prefixLen":25, + "network":"194.30.64.0\/25", + "version":64373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.64.0", + "prefixLen":25, + "network":"194.30.64.0\/25", + "version":64373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.64.128", + "prefixLen":25, + "network":"194.30.64.128\/25", + "version":64372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.64.128", + "prefixLen":25, + "network":"194.30.64.128\/25", + "version":64372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.65.0", + "prefixLen":25, + "network":"194.30.65.0\/25", + "version":64371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.65.0", + "prefixLen":25, + "network":"194.30.65.0\/25", + "version":64371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.65.128", + "prefixLen":25, + "network":"194.30.65.128\/25", + "version":64370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.65.128", + "prefixLen":25, + "network":"194.30.65.128\/25", + "version":64370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.66.0", + "prefixLen":25, + "network":"194.30.66.0\/25", + "version":64369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.66.0", + "prefixLen":25, + "network":"194.30.66.0\/25", + "version":64369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.66.128", + "prefixLen":25, + "network":"194.30.66.128\/25", + "version":64368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.66.128", + "prefixLen":25, + "network":"194.30.66.128\/25", + "version":64368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.67.0", + "prefixLen":25, + "network":"194.30.67.0\/25", + "version":64367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.67.0", + "prefixLen":25, + "network":"194.30.67.0\/25", + "version":64367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.67.128", + "prefixLen":25, + "network":"194.30.67.128\/25", + "version":64366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.67.128", + "prefixLen":25, + "network":"194.30.67.128\/25", + "version":64366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.80.0", + "prefixLen":25, + "network":"194.30.80.0\/25", + "version":64365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.80.0", + "prefixLen":25, + "network":"194.30.80.0\/25", + "version":64365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.80.128", + "prefixLen":25, + "network":"194.30.80.128\/25", + "version":64364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.80.128", + "prefixLen":25, + "network":"194.30.80.128\/25", + "version":64364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.81.0", + "prefixLen":25, + "network":"194.30.81.0\/25", + "version":64363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.81.0", + "prefixLen":25, + "network":"194.30.81.0\/25", + "version":64363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.81.128", + "prefixLen":25, + "network":"194.30.81.128\/25", + "version":64362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.81.128", + "prefixLen":25, + "network":"194.30.81.128\/25", + "version":64362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.82.0", + "prefixLen":25, + "network":"194.30.82.0\/25", + "version":64361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.82.0", + "prefixLen":25, + "network":"194.30.82.0\/25", + "version":64361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.82.128", + "prefixLen":25, + "network":"194.30.82.128\/25", + "version":64360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.82.128", + "prefixLen":25, + "network":"194.30.82.128\/25", + "version":64360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.83.0", + "prefixLen":25, + "network":"194.30.83.0\/25", + "version":64359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.83.0", + "prefixLen":25, + "network":"194.30.83.0\/25", + "version":64359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.83.128", + "prefixLen":25, + "network":"194.30.83.128\/25", + "version":64358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.83.128", + "prefixLen":25, + "network":"194.30.83.128\/25", + "version":64358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.96.0", + "prefixLen":25, + "network":"194.30.96.0\/25", + "version":64357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.96.0", + "prefixLen":25, + "network":"194.30.96.0\/25", + "version":64357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.96.128", + "prefixLen":25, + "network":"194.30.96.128\/25", + "version":64356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.96.128", + "prefixLen":25, + "network":"194.30.96.128\/25", + "version":64356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.97.0", + "prefixLen":25, + "network":"194.30.97.0\/25", + "version":64355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.97.0", + "prefixLen":25, + "network":"194.30.97.0\/25", + "version":64355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.97.128", + "prefixLen":25, + "network":"194.30.97.128\/25", + "version":64354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.97.128", + "prefixLen":25, + "network":"194.30.97.128\/25", + "version":64354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.98.0", + "prefixLen":25, + "network":"194.30.98.0\/25", + "version":64353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.98.0", + "prefixLen":25, + "network":"194.30.98.0\/25", + "version":64353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.98.128", + "prefixLen":25, + "network":"194.30.98.128\/25", + "version":64352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.98.128", + "prefixLen":25, + "network":"194.30.98.128\/25", + "version":64352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.99.0", + "prefixLen":25, + "network":"194.30.99.0\/25", + "version":64351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.99.0", + "prefixLen":25, + "network":"194.30.99.0\/25", + "version":64351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.99.128", + "prefixLen":25, + "network":"194.30.99.128\/25", + "version":64350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.99.128", + "prefixLen":25, + "network":"194.30.99.128\/25", + "version":64350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.112.0", + "prefixLen":25, + "network":"194.30.112.0\/25", + "version":64349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.112.0", + "prefixLen":25, + "network":"194.30.112.0\/25", + "version":64349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.112.128", + "prefixLen":25, + "network":"194.30.112.128\/25", + "version":64348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.112.128", + "prefixLen":25, + "network":"194.30.112.128\/25", + "version":64348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.113.0", + "prefixLen":25, + "network":"194.30.113.0\/25", + "version":64347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.113.0", + "prefixLen":25, + "network":"194.30.113.0\/25", + "version":64347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.113.128", + "prefixLen":25, + "network":"194.30.113.128\/25", + "version":64346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.113.128", + "prefixLen":25, + "network":"194.30.113.128\/25", + "version":64346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.114.0", + "prefixLen":25, + "network":"194.30.114.0\/25", + "version":64345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.114.0", + "prefixLen":25, + "network":"194.30.114.0\/25", + "version":64345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.114.128", + "prefixLen":25, + "network":"194.30.114.128\/25", + "version":64344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.114.128", + "prefixLen":25, + "network":"194.30.114.128\/25", + "version":64344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.115.0", + "prefixLen":25, + "network":"194.30.115.0\/25", + "version":64343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.115.0", + "prefixLen":25, + "network":"194.30.115.0\/25", + "version":64343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.115.128", + "prefixLen":25, + "network":"194.30.115.128\/25", + "version":64342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.115.128", + "prefixLen":25, + "network":"194.30.115.128\/25", + "version":64342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.128.0", + "prefixLen":25, + "network":"194.30.128.0\/25", + "version":64341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.128.0", + "prefixLen":25, + "network":"194.30.128.0\/25", + "version":64341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.128.128", + "prefixLen":25, + "network":"194.30.128.128\/25", + "version":64340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.128.128", + "prefixLen":25, + "network":"194.30.128.128\/25", + "version":64340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.129.0", + "prefixLen":25, + "network":"194.30.129.0\/25", + "version":64339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.129.0", + "prefixLen":25, + "network":"194.30.129.0\/25", + "version":64339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.129.128", + "prefixLen":25, + "network":"194.30.129.128\/25", + "version":64338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.129.128", + "prefixLen":25, + "network":"194.30.129.128\/25", + "version":64338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.130.0", + "prefixLen":25, + "network":"194.30.130.0\/25", + "version":64337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.130.0", + "prefixLen":25, + "network":"194.30.130.0\/25", + "version":64337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.130.128", + "prefixLen":25, + "network":"194.30.130.128\/25", + "version":64336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.130.128", + "prefixLen":25, + "network":"194.30.130.128\/25", + "version":64336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.131.0", + "prefixLen":25, + "network":"194.30.131.0\/25", + "version":64335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.131.0", + "prefixLen":25, + "network":"194.30.131.0\/25", + "version":64335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.131.128", + "prefixLen":25, + "network":"194.30.131.128\/25", + "version":64334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.131.128", + "prefixLen":25, + "network":"194.30.131.128\/25", + "version":64334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.144.0", + "prefixLen":25, + "network":"194.30.144.0\/25", + "version":64333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.144.0", + "prefixLen":25, + "network":"194.30.144.0\/25", + "version":64333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.144.128", + "prefixLen":25, + "network":"194.30.144.128\/25", + "version":64332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.144.128", + "prefixLen":25, + "network":"194.30.144.128\/25", + "version":64332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.145.0", + "prefixLen":25, + "network":"194.30.145.0\/25", + "version":64331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.145.0", + "prefixLen":25, + "network":"194.30.145.0\/25", + "version":64331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.145.128", + "prefixLen":25, + "network":"194.30.145.128\/25", + "version":64330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.145.128", + "prefixLen":25, + "network":"194.30.145.128\/25", + "version":64330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.146.0", + "prefixLen":25, + "network":"194.30.146.0\/25", + "version":64329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.146.0", + "prefixLen":25, + "network":"194.30.146.0\/25", + "version":64329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.146.128", + "prefixLen":25, + "network":"194.30.146.128\/25", + "version":64328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.146.128", + "prefixLen":25, + "network":"194.30.146.128\/25", + "version":64328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.147.0", + "prefixLen":25, + "network":"194.30.147.0\/25", + "version":64327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.147.0", + "prefixLen":25, + "network":"194.30.147.0\/25", + "version":64327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.147.128", + "prefixLen":25, + "network":"194.30.147.128\/25", + "version":64326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.147.128", + "prefixLen":25, + "network":"194.30.147.128\/25", + "version":64326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.160.0", + "prefixLen":25, + "network":"194.30.160.0\/25", + "version":64325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.160.0", + "prefixLen":25, + "network":"194.30.160.0\/25", + "version":64325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.160.128", + "prefixLen":25, + "network":"194.30.160.128\/25", + "version":64324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.160.128", + "prefixLen":25, + "network":"194.30.160.128\/25", + "version":64324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.161.0", + "prefixLen":25, + "network":"194.30.161.0\/25", + "version":64323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.161.0", + "prefixLen":25, + "network":"194.30.161.0\/25", + "version":64323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.161.128", + "prefixLen":25, + "network":"194.30.161.128\/25", + "version":64322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.161.128", + "prefixLen":25, + "network":"194.30.161.128\/25", + "version":64322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.162.0", + "prefixLen":25, + "network":"194.30.162.0\/25", + "version":64321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.162.0", + "prefixLen":25, + "network":"194.30.162.0\/25", + "version":64321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.162.128", + "prefixLen":25, + "network":"194.30.162.128\/25", + "version":64320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.162.128", + "prefixLen":25, + "network":"194.30.162.128\/25", + "version":64320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.163.0", + "prefixLen":25, + "network":"194.30.163.0\/25", + "version":64319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.163.0", + "prefixLen":25, + "network":"194.30.163.0\/25", + "version":64319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.163.128", + "prefixLen":25, + "network":"194.30.163.128\/25", + "version":64318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.163.128", + "prefixLen":25, + "network":"194.30.163.128\/25", + "version":64318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.176.0", + "prefixLen":25, + "network":"194.30.176.0\/25", + "version":64317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.176.0", + "prefixLen":25, + "network":"194.30.176.0\/25", + "version":64317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.176.128", + "prefixLen":25, + "network":"194.30.176.128\/25", + "version":64316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.176.128", + "prefixLen":25, + "network":"194.30.176.128\/25", + "version":64316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.177.0", + "prefixLen":25, + "network":"194.30.177.0\/25", + "version":64315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.177.0", + "prefixLen":25, + "network":"194.30.177.0\/25", + "version":64315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.177.128", + "prefixLen":25, + "network":"194.30.177.128\/25", + "version":64314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.177.128", + "prefixLen":25, + "network":"194.30.177.128\/25", + "version":64314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.178.0", + "prefixLen":25, + "network":"194.30.178.0\/25", + "version":64313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.178.0", + "prefixLen":25, + "network":"194.30.178.0\/25", + "version":64313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.178.128", + "prefixLen":25, + "network":"194.30.178.128\/25", + "version":64312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.178.128", + "prefixLen":25, + "network":"194.30.178.128\/25", + "version":64312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.179.0", + "prefixLen":25, + "network":"194.30.179.0\/25", + "version":64311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.179.0", + "prefixLen":25, + "network":"194.30.179.0\/25", + "version":64311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.179.128", + "prefixLen":25, + "network":"194.30.179.128\/25", + "version":64310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.179.128", + "prefixLen":25, + "network":"194.30.179.128\/25", + "version":64310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.192.0", + "prefixLen":25, + "network":"194.30.192.0\/25", + "version":64309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.192.0", + "prefixLen":25, + "network":"194.30.192.0\/25", + "version":64309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.192.128", + "prefixLen":25, + "network":"194.30.192.128\/25", + "version":64308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.192.128", + "prefixLen":25, + "network":"194.30.192.128\/25", + "version":64308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.193.0", + "prefixLen":25, + "network":"194.30.193.0\/25", + "version":64307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.193.0", + "prefixLen":25, + "network":"194.30.193.0\/25", + "version":64307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.193.128", + "prefixLen":25, + "network":"194.30.193.128\/25", + "version":64306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.193.128", + "prefixLen":25, + "network":"194.30.193.128\/25", + "version":64306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.194.0", + "prefixLen":25, + "network":"194.30.194.0\/25", + "version":64305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.194.0", + "prefixLen":25, + "network":"194.30.194.0\/25", + "version":64305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.194.128", + "prefixLen":25, + "network":"194.30.194.128\/25", + "version":64304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.194.128", + "prefixLen":25, + "network":"194.30.194.128\/25", + "version":64304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.195.0", + "prefixLen":25, + "network":"194.30.195.0\/25", + "version":64303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.195.0", + "prefixLen":25, + "network":"194.30.195.0\/25", + "version":64303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.195.128", + "prefixLen":25, + "network":"194.30.195.128\/25", + "version":64302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.195.128", + "prefixLen":25, + "network":"194.30.195.128\/25", + "version":64302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.208.0", + "prefixLen":25, + "network":"194.30.208.0\/25", + "version":64301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.208.0", + "prefixLen":25, + "network":"194.30.208.0\/25", + "version":64301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.208.128", + "prefixLen":25, + "network":"194.30.208.128\/25", + "version":64300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.208.128", + "prefixLen":25, + "network":"194.30.208.128\/25", + "version":64300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.209.0", + "prefixLen":25, + "network":"194.30.209.0\/25", + "version":64299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.209.0", + "prefixLen":25, + "network":"194.30.209.0\/25", + "version":64299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.209.128", + "prefixLen":25, + "network":"194.30.209.128\/25", + "version":64298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.209.128", + "prefixLen":25, + "network":"194.30.209.128\/25", + "version":64298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.210.0", + "prefixLen":25, + "network":"194.30.210.0\/25", + "version":64297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.210.0", + "prefixLen":25, + "network":"194.30.210.0\/25", + "version":64297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.210.128", + "prefixLen":25, + "network":"194.30.210.128\/25", + "version":64296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.210.128", + "prefixLen":25, + "network":"194.30.210.128\/25", + "version":64296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.211.0", + "prefixLen":25, + "network":"194.30.211.0\/25", + "version":64295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.211.0", + "prefixLen":25, + "network":"194.30.211.0\/25", + "version":64295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.211.128", + "prefixLen":25, + "network":"194.30.211.128\/25", + "version":64294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.211.128", + "prefixLen":25, + "network":"194.30.211.128\/25", + "version":64294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.224.0", + "prefixLen":25, + "network":"194.30.224.0\/25", + "version":64293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.224.0", + "prefixLen":25, + "network":"194.30.224.0\/25", + "version":64293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.224.128", + "prefixLen":25, + "network":"194.30.224.128\/25", + "version":64292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.224.128", + "prefixLen":25, + "network":"194.30.224.128\/25", + "version":64292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.225.0", + "prefixLen":25, + "network":"194.30.225.0\/25", + "version":64291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.225.0", + "prefixLen":25, + "network":"194.30.225.0\/25", + "version":64291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.225.128", + "prefixLen":25, + "network":"194.30.225.128\/25", + "version":64290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.225.128", + "prefixLen":25, + "network":"194.30.225.128\/25", + "version":64290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.226.0", + "prefixLen":25, + "network":"194.30.226.0\/25", + "version":64289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.226.0", + "prefixLen":25, + "network":"194.30.226.0\/25", + "version":64289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.226.128", + "prefixLen":25, + "network":"194.30.226.128\/25", + "version":64288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.226.128", + "prefixLen":25, + "network":"194.30.226.128\/25", + "version":64288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.227.0", + "prefixLen":25, + "network":"194.30.227.0\/25", + "version":64287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.227.0", + "prefixLen":25, + "network":"194.30.227.0\/25", + "version":64287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.227.128", + "prefixLen":25, + "network":"194.30.227.128\/25", + "version":64286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.227.128", + "prefixLen":25, + "network":"194.30.227.128\/25", + "version":64286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.240.0", + "prefixLen":25, + "network":"194.30.240.0\/25", + "version":64285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.240.0", + "prefixLen":25, + "network":"194.30.240.0\/25", + "version":64285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.240.128", + "prefixLen":25, + "network":"194.30.240.128\/25", + "version":64284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.240.128", + "prefixLen":25, + "network":"194.30.240.128\/25", + "version":64284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.241.0", + "prefixLen":25, + "network":"194.30.241.0\/25", + "version":64283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.241.0", + "prefixLen":25, + "network":"194.30.241.0\/25", + "version":64283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.241.128", + "prefixLen":25, + "network":"194.30.241.128\/25", + "version":64282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.241.128", + "prefixLen":25, + "network":"194.30.241.128\/25", + "version":64282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.242.0", + "prefixLen":25, + "network":"194.30.242.0\/25", + "version":64281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.242.0", + "prefixLen":25, + "network":"194.30.242.0\/25", + "version":64281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.242.128", + "prefixLen":25, + "network":"194.30.242.128\/25", + "version":64280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.242.128", + "prefixLen":25, + "network":"194.30.242.128\/25", + "version":64280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.243.0", + "prefixLen":25, + "network":"194.30.243.0\/25", + "version":64279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.243.0", + "prefixLen":25, + "network":"194.30.243.0\/25", + "version":64279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.30.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.30.243.128", + "prefixLen":25, + "network":"194.30.243.128\/25", + "version":64278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.30.243.128", + "prefixLen":25, + "network":"194.30.243.128\/25", + "version":64278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64974 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.0.0", + "prefixLen":25, + "network":"194.31.0.0\/25", + "version":64405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.0.0", + "prefixLen":25, + "network":"194.31.0.0\/25", + "version":64405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.0.128", + "prefixLen":25, + "network":"194.31.0.128\/25", + "version":64532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.0.128", + "prefixLen":25, + "network":"194.31.0.128\/25", + "version":64532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.1.0", + "prefixLen":25, + "network":"194.31.1.0\/25", + "version":64531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.1.0", + "prefixLen":25, + "network":"194.31.1.0\/25", + "version":64531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.1.128", + "prefixLen":25, + "network":"194.31.1.128\/25", + "version":64530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.1.128", + "prefixLen":25, + "network":"194.31.1.128\/25", + "version":64530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.2.0", + "prefixLen":25, + "network":"194.31.2.0\/25", + "version":64529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.2.0", + "prefixLen":25, + "network":"194.31.2.0\/25", + "version":64529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.2.128", + "prefixLen":25, + "network":"194.31.2.128\/25", + "version":64528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.2.128", + "prefixLen":25, + "network":"194.31.2.128\/25", + "version":64528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.3.0", + "prefixLen":25, + "network":"194.31.3.0\/25", + "version":64527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.3.0", + "prefixLen":25, + "network":"194.31.3.0\/25", + "version":64527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.3.128", + "prefixLen":25, + "network":"194.31.3.128\/25", + "version":64526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.3.128", + "prefixLen":25, + "network":"194.31.3.128\/25", + "version":64526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.16.0", + "prefixLen":25, + "network":"194.31.16.0\/25", + "version":64525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.16.0", + "prefixLen":25, + "network":"194.31.16.0\/25", + "version":64525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.16.128", + "prefixLen":25, + "network":"194.31.16.128\/25", + "version":64524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.16.128", + "prefixLen":25, + "network":"194.31.16.128\/25", + "version":64524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.17.0", + "prefixLen":25, + "network":"194.31.17.0\/25", + "version":64523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.17.0", + "prefixLen":25, + "network":"194.31.17.0\/25", + "version":64523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.17.128", + "prefixLen":25, + "network":"194.31.17.128\/25", + "version":64522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.17.128", + "prefixLen":25, + "network":"194.31.17.128\/25", + "version":64522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.18.0", + "prefixLen":25, + "network":"194.31.18.0\/25", + "version":64521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.18.0", + "prefixLen":25, + "network":"194.31.18.0\/25", + "version":64521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.18.128", + "prefixLen":25, + "network":"194.31.18.128\/25", + "version":64520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.18.128", + "prefixLen":25, + "network":"194.31.18.128\/25", + "version":64520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.19.0", + "prefixLen":25, + "network":"194.31.19.0\/25", + "version":64519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.19.0", + "prefixLen":25, + "network":"194.31.19.0\/25", + "version":64519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.19.128", + "prefixLen":25, + "network":"194.31.19.128\/25", + "version":64518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.19.128", + "prefixLen":25, + "network":"194.31.19.128\/25", + "version":64518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.32.0", + "prefixLen":25, + "network":"194.31.32.0\/25", + "version":64517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.32.0", + "prefixLen":25, + "network":"194.31.32.0\/25", + "version":64517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.32.128", + "prefixLen":25, + "network":"194.31.32.128\/25", + "version":64516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.32.128", + "prefixLen":25, + "network":"194.31.32.128\/25", + "version":64516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.33.0", + "prefixLen":25, + "network":"194.31.33.0\/25", + "version":64515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.33.0", + "prefixLen":25, + "network":"194.31.33.0\/25", + "version":64515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.33.128", + "prefixLen":25, + "network":"194.31.33.128\/25", + "version":64514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.33.128", + "prefixLen":25, + "network":"194.31.33.128\/25", + "version":64514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.34.0", + "prefixLen":25, + "network":"194.31.34.0\/25", + "version":64513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.34.0", + "prefixLen":25, + "network":"194.31.34.0\/25", + "version":64513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.34.128", + "prefixLen":25, + "network":"194.31.34.128\/25", + "version":64512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.34.128", + "prefixLen":25, + "network":"194.31.34.128\/25", + "version":64512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.35.0", + "prefixLen":25, + "network":"194.31.35.0\/25", + "version":64511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.35.0", + "prefixLen":25, + "network":"194.31.35.0\/25", + "version":64511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.35.128", + "prefixLen":25, + "network":"194.31.35.128\/25", + "version":64510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.35.128", + "prefixLen":25, + "network":"194.31.35.128\/25", + "version":64510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.48.0", + "prefixLen":25, + "network":"194.31.48.0\/25", + "version":64509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.48.0", + "prefixLen":25, + "network":"194.31.48.0\/25", + "version":64509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.48.128", + "prefixLen":25, + "network":"194.31.48.128\/25", + "version":64508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.48.128", + "prefixLen":25, + "network":"194.31.48.128\/25", + "version":64508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.49.0", + "prefixLen":25, + "network":"194.31.49.0\/25", + "version":64507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.49.0", + "prefixLen":25, + "network":"194.31.49.0\/25", + "version":64507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.49.128", + "prefixLen":25, + "network":"194.31.49.128\/25", + "version":64506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.49.128", + "prefixLen":25, + "network":"194.31.49.128\/25", + "version":64506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.50.0", + "prefixLen":25, + "network":"194.31.50.0\/25", + "version":64505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.50.0", + "prefixLen":25, + "network":"194.31.50.0\/25", + "version":64505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.50.128", + "prefixLen":25, + "network":"194.31.50.128\/25", + "version":64504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.50.128", + "prefixLen":25, + "network":"194.31.50.128\/25", + "version":64504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.51.0", + "prefixLen":25, + "network":"194.31.51.0\/25", + "version":64503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.51.0", + "prefixLen":25, + "network":"194.31.51.0\/25", + "version":64503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.51.128", + "prefixLen":25, + "network":"194.31.51.128\/25", + "version":64502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.51.128", + "prefixLen":25, + "network":"194.31.51.128\/25", + "version":64502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.64.0", + "prefixLen":25, + "network":"194.31.64.0\/25", + "version":64501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.64.0", + "prefixLen":25, + "network":"194.31.64.0\/25", + "version":64501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.64.128", + "prefixLen":25, + "network":"194.31.64.128\/25", + "version":64500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.64.128", + "prefixLen":25, + "network":"194.31.64.128\/25", + "version":64500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.65.0", + "prefixLen":25, + "network":"194.31.65.0\/25", + "version":64499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.65.0", + "prefixLen":25, + "network":"194.31.65.0\/25", + "version":64499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.65.128", + "prefixLen":25, + "network":"194.31.65.128\/25", + "version":64498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.65.128", + "prefixLen":25, + "network":"194.31.65.128\/25", + "version":64498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.66.0", + "prefixLen":25, + "network":"194.31.66.0\/25", + "version":64497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.66.0", + "prefixLen":25, + "network":"194.31.66.0\/25", + "version":64497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.66.128", + "prefixLen":25, + "network":"194.31.66.128\/25", + "version":64496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.66.128", + "prefixLen":25, + "network":"194.31.66.128\/25", + "version":64496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.67.0", + "prefixLen":25, + "network":"194.31.67.0\/25", + "version":64495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.67.0", + "prefixLen":25, + "network":"194.31.67.0\/25", + "version":64495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.67.128", + "prefixLen":25, + "network":"194.31.67.128\/25", + "version":64494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.67.128", + "prefixLen":25, + "network":"194.31.67.128\/25", + "version":64494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.80.0", + "prefixLen":25, + "network":"194.31.80.0\/25", + "version":64493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.80.0", + "prefixLen":25, + "network":"194.31.80.0\/25", + "version":64493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.80.128", + "prefixLen":25, + "network":"194.31.80.128\/25", + "version":64492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.80.128", + "prefixLen":25, + "network":"194.31.80.128\/25", + "version":64492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.81.0", + "prefixLen":25, + "network":"194.31.81.0\/25", + "version":64491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.81.0", + "prefixLen":25, + "network":"194.31.81.0\/25", + "version":64491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.81.128", + "prefixLen":25, + "network":"194.31.81.128\/25", + "version":64490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.81.128", + "prefixLen":25, + "network":"194.31.81.128\/25", + "version":64490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.82.0", + "prefixLen":25, + "network":"194.31.82.0\/25", + "version":64489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.82.0", + "prefixLen":25, + "network":"194.31.82.0\/25", + "version":64489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.82.128", + "prefixLen":25, + "network":"194.31.82.128\/25", + "version":64488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.82.128", + "prefixLen":25, + "network":"194.31.82.128\/25", + "version":64488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.83.0", + "prefixLen":25, + "network":"194.31.83.0\/25", + "version":64487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.83.0", + "prefixLen":25, + "network":"194.31.83.0\/25", + "version":64487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.83.128", + "prefixLen":25, + "network":"194.31.83.128\/25", + "version":64486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.83.128", + "prefixLen":25, + "network":"194.31.83.128\/25", + "version":64486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.96.0", + "prefixLen":25, + "network":"194.31.96.0\/25", + "version":64485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.96.0", + "prefixLen":25, + "network":"194.31.96.0\/25", + "version":64485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.96.128", + "prefixLen":25, + "network":"194.31.96.128\/25", + "version":64484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.96.128", + "prefixLen":25, + "network":"194.31.96.128\/25", + "version":64484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.97.0", + "prefixLen":25, + "network":"194.31.97.0\/25", + "version":64483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.97.0", + "prefixLen":25, + "network":"194.31.97.0\/25", + "version":64483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.97.128", + "prefixLen":25, + "network":"194.31.97.128\/25", + "version":64482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.97.128", + "prefixLen":25, + "network":"194.31.97.128\/25", + "version":64482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.98.0", + "prefixLen":25, + "network":"194.31.98.0\/25", + "version":64481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.98.0", + "prefixLen":25, + "network":"194.31.98.0\/25", + "version":64481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.98.128", + "prefixLen":25, + "network":"194.31.98.128\/25", + "version":64480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.98.128", + "prefixLen":25, + "network":"194.31.98.128\/25", + "version":64480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.99.0", + "prefixLen":25, + "network":"194.31.99.0\/25", + "version":64479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.99.0", + "prefixLen":25, + "network":"194.31.99.0\/25", + "version":64479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.99.128", + "prefixLen":25, + "network":"194.31.99.128\/25", + "version":64478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.99.128", + "prefixLen":25, + "network":"194.31.99.128\/25", + "version":64478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.112.0", + "prefixLen":25, + "network":"194.31.112.0\/25", + "version":64477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.112.0", + "prefixLen":25, + "network":"194.31.112.0\/25", + "version":64477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.112.128", + "prefixLen":25, + "network":"194.31.112.128\/25", + "version":64476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.112.128", + "prefixLen":25, + "network":"194.31.112.128\/25", + "version":64476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.113.0", + "prefixLen":25, + "network":"194.31.113.0\/25", + "version":64475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.113.0", + "prefixLen":25, + "network":"194.31.113.0\/25", + "version":64475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.113.128", + "prefixLen":25, + "network":"194.31.113.128\/25", + "version":64474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.113.128", + "prefixLen":25, + "network":"194.31.113.128\/25", + "version":64474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.114.0", + "prefixLen":25, + "network":"194.31.114.0\/25", + "version":64473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.114.0", + "prefixLen":25, + "network":"194.31.114.0\/25", + "version":64473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.114.128", + "prefixLen":25, + "network":"194.31.114.128\/25", + "version":64472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.114.128", + "prefixLen":25, + "network":"194.31.114.128\/25", + "version":64472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.115.0", + "prefixLen":25, + "network":"194.31.115.0\/25", + "version":64471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.115.0", + "prefixLen":25, + "network":"194.31.115.0\/25", + "version":64471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.115.128", + "prefixLen":25, + "network":"194.31.115.128\/25", + "version":64470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.115.128", + "prefixLen":25, + "network":"194.31.115.128\/25", + "version":64470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.128.0", + "prefixLen":25, + "network":"194.31.128.0\/25", + "version":64469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.128.0", + "prefixLen":25, + "network":"194.31.128.0\/25", + "version":64469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.128.128", + "prefixLen":25, + "network":"194.31.128.128\/25", + "version":64468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.128.128", + "prefixLen":25, + "network":"194.31.128.128\/25", + "version":64468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.129.0", + "prefixLen":25, + "network":"194.31.129.0\/25", + "version":64467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.129.0", + "prefixLen":25, + "network":"194.31.129.0\/25", + "version":64467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.129.128", + "prefixLen":25, + "network":"194.31.129.128\/25", + "version":64466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.129.128", + "prefixLen":25, + "network":"194.31.129.128\/25", + "version":64466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.130.0", + "prefixLen":25, + "network":"194.31.130.0\/25", + "version":64465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.130.0", + "prefixLen":25, + "network":"194.31.130.0\/25", + "version":64465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.130.128", + "prefixLen":25, + "network":"194.31.130.128\/25", + "version":64464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.130.128", + "prefixLen":25, + "network":"194.31.130.128\/25", + "version":64464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.131.0", + "prefixLen":25, + "network":"194.31.131.0\/25", + "version":64463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.131.0", + "prefixLen":25, + "network":"194.31.131.0\/25", + "version":64463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.131.128", + "prefixLen":25, + "network":"194.31.131.128\/25", + "version":64462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.131.128", + "prefixLen":25, + "network":"194.31.131.128\/25", + "version":64462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.144.0", + "prefixLen":25, + "network":"194.31.144.0\/25", + "version":64461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.144.0", + "prefixLen":25, + "network":"194.31.144.0\/25", + "version":64461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.144.128", + "prefixLen":25, + "network":"194.31.144.128\/25", + "version":64460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.144.128", + "prefixLen":25, + "network":"194.31.144.128\/25", + "version":64460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.145.0", + "prefixLen":25, + "network":"194.31.145.0\/25", + "version":64459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.145.0", + "prefixLen":25, + "network":"194.31.145.0\/25", + "version":64459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.145.128", + "prefixLen":25, + "network":"194.31.145.128\/25", + "version":64458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.145.128", + "prefixLen":25, + "network":"194.31.145.128\/25", + "version":64458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.146.0", + "prefixLen":25, + "network":"194.31.146.0\/25", + "version":64457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.146.0", + "prefixLen":25, + "network":"194.31.146.0\/25", + "version":64457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.146.128", + "prefixLen":25, + "network":"194.31.146.128\/25", + "version":64456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.146.128", + "prefixLen":25, + "network":"194.31.146.128\/25", + "version":64456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.147.0", + "prefixLen":25, + "network":"194.31.147.0\/25", + "version":64455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.147.0", + "prefixLen":25, + "network":"194.31.147.0\/25", + "version":64455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.147.128", + "prefixLen":25, + "network":"194.31.147.128\/25", + "version":64454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.147.128", + "prefixLen":25, + "network":"194.31.147.128\/25", + "version":64454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.160.0", + "prefixLen":25, + "network":"194.31.160.0\/25", + "version":64453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.160.0", + "prefixLen":25, + "network":"194.31.160.0\/25", + "version":64453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.160.128", + "prefixLen":25, + "network":"194.31.160.128\/25", + "version":64452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.160.128", + "prefixLen":25, + "network":"194.31.160.128\/25", + "version":64452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.161.0", + "prefixLen":25, + "network":"194.31.161.0\/25", + "version":64451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.161.0", + "prefixLen":25, + "network":"194.31.161.0\/25", + "version":64451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.161.128", + "prefixLen":25, + "network":"194.31.161.128\/25", + "version":64450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.161.128", + "prefixLen":25, + "network":"194.31.161.128\/25", + "version":64450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.162.0", + "prefixLen":25, + "network":"194.31.162.0\/25", + "version":64449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.162.0", + "prefixLen":25, + "network":"194.31.162.0\/25", + "version":64449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.162.128", + "prefixLen":25, + "network":"194.31.162.128\/25", + "version":64448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.162.128", + "prefixLen":25, + "network":"194.31.162.128\/25", + "version":64448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.163.0", + "prefixLen":25, + "network":"194.31.163.0\/25", + "version":64447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.163.0", + "prefixLen":25, + "network":"194.31.163.0\/25", + "version":64447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.163.128", + "prefixLen":25, + "network":"194.31.163.128\/25", + "version":64446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.163.128", + "prefixLen":25, + "network":"194.31.163.128\/25", + "version":64446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.176.0", + "prefixLen":25, + "network":"194.31.176.0\/25", + "version":64445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.176.0", + "prefixLen":25, + "network":"194.31.176.0\/25", + "version":64445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.176.128", + "prefixLen":25, + "network":"194.31.176.128\/25", + "version":64444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.176.128", + "prefixLen":25, + "network":"194.31.176.128\/25", + "version":64444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.177.0", + "prefixLen":25, + "network":"194.31.177.0\/25", + "version":64443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.177.0", + "prefixLen":25, + "network":"194.31.177.0\/25", + "version":64443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.177.128", + "prefixLen":25, + "network":"194.31.177.128\/25", + "version":64442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.177.128", + "prefixLen":25, + "network":"194.31.177.128\/25", + "version":64442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.178.0", + "prefixLen":25, + "network":"194.31.178.0\/25", + "version":64441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.178.0", + "prefixLen":25, + "network":"194.31.178.0\/25", + "version":64441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.178.128", + "prefixLen":25, + "network":"194.31.178.128\/25", + "version":64440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.178.128", + "prefixLen":25, + "network":"194.31.178.128\/25", + "version":64440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.179.0", + "prefixLen":25, + "network":"194.31.179.0\/25", + "version":64439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.179.0", + "prefixLen":25, + "network":"194.31.179.0\/25", + "version":64439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.179.128", + "prefixLen":25, + "network":"194.31.179.128\/25", + "version":64438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.179.128", + "prefixLen":25, + "network":"194.31.179.128\/25", + "version":64438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.192.0", + "prefixLen":25, + "network":"194.31.192.0\/25", + "version":64437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.192.0", + "prefixLen":25, + "network":"194.31.192.0\/25", + "version":64437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.192.128", + "prefixLen":25, + "network":"194.31.192.128\/25", + "version":64436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.192.128", + "prefixLen":25, + "network":"194.31.192.128\/25", + "version":64436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.193.0", + "prefixLen":25, + "network":"194.31.193.0\/25", + "version":64435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.193.0", + "prefixLen":25, + "network":"194.31.193.0\/25", + "version":64435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.193.128", + "prefixLen":25, + "network":"194.31.193.128\/25", + "version":64434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.193.128", + "prefixLen":25, + "network":"194.31.193.128\/25", + "version":64434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.194.0", + "prefixLen":25, + "network":"194.31.194.0\/25", + "version":64433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.194.0", + "prefixLen":25, + "network":"194.31.194.0\/25", + "version":64433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.194.128", + "prefixLen":25, + "network":"194.31.194.128\/25", + "version":64432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.194.128", + "prefixLen":25, + "network":"194.31.194.128\/25", + "version":64432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.195.0", + "prefixLen":25, + "network":"194.31.195.0\/25", + "version":64431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.195.0", + "prefixLen":25, + "network":"194.31.195.0\/25", + "version":64431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.195.128", + "prefixLen":25, + "network":"194.31.195.128\/25", + "version":64430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.195.128", + "prefixLen":25, + "network":"194.31.195.128\/25", + "version":64430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.208.0", + "prefixLen":25, + "network":"194.31.208.0\/25", + "version":64429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.208.0", + "prefixLen":25, + "network":"194.31.208.0\/25", + "version":64429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.208.128", + "prefixLen":25, + "network":"194.31.208.128\/25", + "version":64428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.208.128", + "prefixLen":25, + "network":"194.31.208.128\/25", + "version":64428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.209.0", + "prefixLen":25, + "network":"194.31.209.0\/25", + "version":64427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.209.0", + "prefixLen":25, + "network":"194.31.209.0\/25", + "version":64427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.209.128", + "prefixLen":25, + "network":"194.31.209.128\/25", + "version":64426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.209.128", + "prefixLen":25, + "network":"194.31.209.128\/25", + "version":64426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.210.0", + "prefixLen":25, + "network":"194.31.210.0\/25", + "version":64425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.210.0", + "prefixLen":25, + "network":"194.31.210.0\/25", + "version":64425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.210.128", + "prefixLen":25, + "network":"194.31.210.128\/25", + "version":64424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.210.128", + "prefixLen":25, + "network":"194.31.210.128\/25", + "version":64424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.211.0", + "prefixLen":25, + "network":"194.31.211.0\/25", + "version":64423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.211.0", + "prefixLen":25, + "network":"194.31.211.0\/25", + "version":64423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.211.128", + "prefixLen":25, + "network":"194.31.211.128\/25", + "version":64422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.211.128", + "prefixLen":25, + "network":"194.31.211.128\/25", + "version":64422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.224.0", + "prefixLen":25, + "network":"194.31.224.0\/25", + "version":64421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.224.0", + "prefixLen":25, + "network":"194.31.224.0\/25", + "version":64421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.224.128", + "prefixLen":25, + "network":"194.31.224.128\/25", + "version":64420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.224.128", + "prefixLen":25, + "network":"194.31.224.128\/25", + "version":64420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.225.0", + "prefixLen":25, + "network":"194.31.225.0\/25", + "version":64419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.225.0", + "prefixLen":25, + "network":"194.31.225.0\/25", + "version":64419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.225.128", + "prefixLen":25, + "network":"194.31.225.128\/25", + "version":64418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.225.128", + "prefixLen":25, + "network":"194.31.225.128\/25", + "version":64418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.226.0", + "prefixLen":25, + "network":"194.31.226.0\/25", + "version":64417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.226.0", + "prefixLen":25, + "network":"194.31.226.0\/25", + "version":64417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.226.128", + "prefixLen":25, + "network":"194.31.226.128\/25", + "version":64416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.226.128", + "prefixLen":25, + "network":"194.31.226.128\/25", + "version":64416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.227.0", + "prefixLen":25, + "network":"194.31.227.0\/25", + "version":64415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.227.0", + "prefixLen":25, + "network":"194.31.227.0\/25", + "version":64415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.227.128", + "prefixLen":25, + "network":"194.31.227.128\/25", + "version":64414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.227.128", + "prefixLen":25, + "network":"194.31.227.128\/25", + "version":64414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.240.0", + "prefixLen":25, + "network":"194.31.240.0\/25", + "version":64413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.240.0", + "prefixLen":25, + "network":"194.31.240.0\/25", + "version":64413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.240.128", + "prefixLen":25, + "network":"194.31.240.128\/25", + "version":64412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.240.128", + "prefixLen":25, + "network":"194.31.240.128\/25", + "version":64412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.241.0", + "prefixLen":25, + "network":"194.31.241.0\/25", + "version":64411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.241.0", + "prefixLen":25, + "network":"194.31.241.0\/25", + "version":64411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.241.128", + "prefixLen":25, + "network":"194.31.241.128\/25", + "version":64410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.241.128", + "prefixLen":25, + "network":"194.31.241.128\/25", + "version":64410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.242.0", + "prefixLen":25, + "network":"194.31.242.0\/25", + "version":64409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.242.0", + "prefixLen":25, + "network":"194.31.242.0\/25", + "version":64409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.242.128", + "prefixLen":25, + "network":"194.31.242.128\/25", + "version":64408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.242.128", + "prefixLen":25, + "network":"194.31.242.128\/25", + "version":64408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.243.0", + "prefixLen":25, + "network":"194.31.243.0\/25", + "version":64407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.243.0", + "prefixLen":25, + "network":"194.31.243.0\/25", + "version":64407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.31.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.31.243.128", + "prefixLen":25, + "network":"194.31.243.128\/25", + "version":64406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.31.243.128", + "prefixLen":25, + "network":"194.31.243.128\/25", + "version":64406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64975 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.0.0", + "prefixLen":25, + "network":"194.32.0.0\/25", + "version":64533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.0.0", + "prefixLen":25, + "network":"194.32.0.0\/25", + "version":64533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.0.128", + "prefixLen":25, + "network":"194.32.0.128\/25", + "version":64660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.0.128", + "prefixLen":25, + "network":"194.32.0.128\/25", + "version":64660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.1.0", + "prefixLen":25, + "network":"194.32.1.0\/25", + "version":64659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.1.0", + "prefixLen":25, + "network":"194.32.1.0\/25", + "version":64659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.1.128", + "prefixLen":25, + "network":"194.32.1.128\/25", + "version":64658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.1.128", + "prefixLen":25, + "network":"194.32.1.128\/25", + "version":64658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.2.0", + "prefixLen":25, + "network":"194.32.2.0\/25", + "version":64657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.2.0", + "prefixLen":25, + "network":"194.32.2.0\/25", + "version":64657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.2.128", + "prefixLen":25, + "network":"194.32.2.128\/25", + "version":64656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.2.128", + "prefixLen":25, + "network":"194.32.2.128\/25", + "version":64656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.3.0", + "prefixLen":25, + "network":"194.32.3.0\/25", + "version":64655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.3.0", + "prefixLen":25, + "network":"194.32.3.0\/25", + "version":64655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.3.128", + "prefixLen":25, + "network":"194.32.3.128\/25", + "version":64654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.3.128", + "prefixLen":25, + "network":"194.32.3.128\/25", + "version":64654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.16.0", + "prefixLen":25, + "network":"194.32.16.0\/25", + "version":64653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.16.0", + "prefixLen":25, + "network":"194.32.16.0\/25", + "version":64653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.16.128", + "prefixLen":25, + "network":"194.32.16.128\/25", + "version":64652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.16.128", + "prefixLen":25, + "network":"194.32.16.128\/25", + "version":64652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.17.0", + "prefixLen":25, + "network":"194.32.17.0\/25", + "version":64651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.17.0", + "prefixLen":25, + "network":"194.32.17.0\/25", + "version":64651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.17.128", + "prefixLen":25, + "network":"194.32.17.128\/25", + "version":64650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.17.128", + "prefixLen":25, + "network":"194.32.17.128\/25", + "version":64650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.18.0", + "prefixLen":25, + "network":"194.32.18.0\/25", + "version":64649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.18.0", + "prefixLen":25, + "network":"194.32.18.0\/25", + "version":64649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.18.128", + "prefixLen":25, + "network":"194.32.18.128\/25", + "version":64648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.18.128", + "prefixLen":25, + "network":"194.32.18.128\/25", + "version":64648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.19.0", + "prefixLen":25, + "network":"194.32.19.0\/25", + "version":64647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.19.0", + "prefixLen":25, + "network":"194.32.19.0\/25", + "version":64647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.19.128", + "prefixLen":25, + "network":"194.32.19.128\/25", + "version":64646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.19.128", + "prefixLen":25, + "network":"194.32.19.128\/25", + "version":64646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.32.0", + "prefixLen":25, + "network":"194.32.32.0\/25", + "version":64645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.32.0", + "prefixLen":25, + "network":"194.32.32.0\/25", + "version":64645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.32.128", + "prefixLen":25, + "network":"194.32.32.128\/25", + "version":64644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.32.128", + "prefixLen":25, + "network":"194.32.32.128\/25", + "version":64644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.33.0", + "prefixLen":25, + "network":"194.32.33.0\/25", + "version":64643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.33.0", + "prefixLen":25, + "network":"194.32.33.0\/25", + "version":64643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.33.128", + "prefixLen":25, + "network":"194.32.33.128\/25", + "version":64642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.33.128", + "prefixLen":25, + "network":"194.32.33.128\/25", + "version":64642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.34.0", + "prefixLen":25, + "network":"194.32.34.0\/25", + "version":64641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.34.0", + "prefixLen":25, + "network":"194.32.34.0\/25", + "version":64641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.34.128", + "prefixLen":25, + "network":"194.32.34.128\/25", + "version":64640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.34.128", + "prefixLen":25, + "network":"194.32.34.128\/25", + "version":64640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.35.0", + "prefixLen":25, + "network":"194.32.35.0\/25", + "version":64639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.35.0", + "prefixLen":25, + "network":"194.32.35.0\/25", + "version":64639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.35.128", + "prefixLen":25, + "network":"194.32.35.128\/25", + "version":64638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.35.128", + "prefixLen":25, + "network":"194.32.35.128\/25", + "version":64638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.48.0", + "prefixLen":25, + "network":"194.32.48.0\/25", + "version":64637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.48.0", + "prefixLen":25, + "network":"194.32.48.0\/25", + "version":64637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.48.128", + "prefixLen":25, + "network":"194.32.48.128\/25", + "version":64636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.48.128", + "prefixLen":25, + "network":"194.32.48.128\/25", + "version":64636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.49.0", + "prefixLen":25, + "network":"194.32.49.0\/25", + "version":64635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.49.0", + "prefixLen":25, + "network":"194.32.49.0\/25", + "version":64635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.49.128", + "prefixLen":25, + "network":"194.32.49.128\/25", + "version":64634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.49.128", + "prefixLen":25, + "network":"194.32.49.128\/25", + "version":64634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.50.0", + "prefixLen":25, + "network":"194.32.50.0\/25", + "version":64633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.50.0", + "prefixLen":25, + "network":"194.32.50.0\/25", + "version":64633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.50.128", + "prefixLen":25, + "network":"194.32.50.128\/25", + "version":64632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.50.128", + "prefixLen":25, + "network":"194.32.50.128\/25", + "version":64632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.51.0", + "prefixLen":25, + "network":"194.32.51.0\/25", + "version":64631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.51.0", + "prefixLen":25, + "network":"194.32.51.0\/25", + "version":64631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.51.128", + "prefixLen":25, + "network":"194.32.51.128\/25", + "version":64630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.51.128", + "prefixLen":25, + "network":"194.32.51.128\/25", + "version":64630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.64.0", + "prefixLen":25, + "network":"194.32.64.0\/25", + "version":64629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.64.0", + "prefixLen":25, + "network":"194.32.64.0\/25", + "version":64629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.64.128", + "prefixLen":25, + "network":"194.32.64.128\/25", + "version":64628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.64.128", + "prefixLen":25, + "network":"194.32.64.128\/25", + "version":64628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.65.0", + "prefixLen":25, + "network":"194.32.65.0\/25", + "version":64627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.65.0", + "prefixLen":25, + "network":"194.32.65.0\/25", + "version":64627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.65.128", + "prefixLen":25, + "network":"194.32.65.128\/25", + "version":64626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.65.128", + "prefixLen":25, + "network":"194.32.65.128\/25", + "version":64626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.66.0", + "prefixLen":25, + "network":"194.32.66.0\/25", + "version":64625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.66.0", + "prefixLen":25, + "network":"194.32.66.0\/25", + "version":64625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.66.128", + "prefixLen":25, + "network":"194.32.66.128\/25", + "version":64624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.66.128", + "prefixLen":25, + "network":"194.32.66.128\/25", + "version":64624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.67.0", + "prefixLen":25, + "network":"194.32.67.0\/25", + "version":64623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.67.0", + "prefixLen":25, + "network":"194.32.67.0\/25", + "version":64623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.67.128", + "prefixLen":25, + "network":"194.32.67.128\/25", + "version":64622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.67.128", + "prefixLen":25, + "network":"194.32.67.128\/25", + "version":64622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.80.0", + "prefixLen":25, + "network":"194.32.80.0\/25", + "version":64621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.80.0", + "prefixLen":25, + "network":"194.32.80.0\/25", + "version":64621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.80.128", + "prefixLen":25, + "network":"194.32.80.128\/25", + "version":64620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.80.128", + "prefixLen":25, + "network":"194.32.80.128\/25", + "version":64620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.81.0", + "prefixLen":25, + "network":"194.32.81.0\/25", + "version":64619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.81.0", + "prefixLen":25, + "network":"194.32.81.0\/25", + "version":64619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.81.128", + "prefixLen":25, + "network":"194.32.81.128\/25", + "version":64618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.81.128", + "prefixLen":25, + "network":"194.32.81.128\/25", + "version":64618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.82.0", + "prefixLen":25, + "network":"194.32.82.0\/25", + "version":64617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.82.0", + "prefixLen":25, + "network":"194.32.82.0\/25", + "version":64617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.82.128", + "prefixLen":25, + "network":"194.32.82.128\/25", + "version":64616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.82.128", + "prefixLen":25, + "network":"194.32.82.128\/25", + "version":64616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.83.0", + "prefixLen":25, + "network":"194.32.83.0\/25", + "version":64615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.83.0", + "prefixLen":25, + "network":"194.32.83.0\/25", + "version":64615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.83.128", + "prefixLen":25, + "network":"194.32.83.128\/25", + "version":64614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.83.128", + "prefixLen":25, + "network":"194.32.83.128\/25", + "version":64614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.96.0", + "prefixLen":25, + "network":"194.32.96.0\/25", + "version":64613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.96.0", + "prefixLen":25, + "network":"194.32.96.0\/25", + "version":64613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.96.128", + "prefixLen":25, + "network":"194.32.96.128\/25", + "version":64612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.96.128", + "prefixLen":25, + "network":"194.32.96.128\/25", + "version":64612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.97.0", + "prefixLen":25, + "network":"194.32.97.0\/25", + "version":64611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.97.0", + "prefixLen":25, + "network":"194.32.97.0\/25", + "version":64611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.97.128", + "prefixLen":25, + "network":"194.32.97.128\/25", + "version":64610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.97.128", + "prefixLen":25, + "network":"194.32.97.128\/25", + "version":64610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.98.0", + "prefixLen":25, + "network":"194.32.98.0\/25", + "version":64609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.98.0", + "prefixLen":25, + "network":"194.32.98.0\/25", + "version":64609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.98.128", + "prefixLen":25, + "network":"194.32.98.128\/25", + "version":64608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.98.128", + "prefixLen":25, + "network":"194.32.98.128\/25", + "version":64608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.99.0", + "prefixLen":25, + "network":"194.32.99.0\/25", + "version":64607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.99.0", + "prefixLen":25, + "network":"194.32.99.0\/25", + "version":64607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.99.128", + "prefixLen":25, + "network":"194.32.99.128\/25", + "version":64606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.99.128", + "prefixLen":25, + "network":"194.32.99.128\/25", + "version":64606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.112.0", + "prefixLen":25, + "network":"194.32.112.0\/25", + "version":64605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.112.0", + "prefixLen":25, + "network":"194.32.112.0\/25", + "version":64605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.112.128", + "prefixLen":25, + "network":"194.32.112.128\/25", + "version":64604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.112.128", + "prefixLen":25, + "network":"194.32.112.128\/25", + "version":64604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.113.0", + "prefixLen":25, + "network":"194.32.113.0\/25", + "version":64603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.113.0", + "prefixLen":25, + "network":"194.32.113.0\/25", + "version":64603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.113.128", + "prefixLen":25, + "network":"194.32.113.128\/25", + "version":64602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.113.128", + "prefixLen":25, + "network":"194.32.113.128\/25", + "version":64602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.114.0", + "prefixLen":25, + "network":"194.32.114.0\/25", + "version":64601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.114.0", + "prefixLen":25, + "network":"194.32.114.0\/25", + "version":64601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.114.128", + "prefixLen":25, + "network":"194.32.114.128\/25", + "version":64600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.114.128", + "prefixLen":25, + "network":"194.32.114.128\/25", + "version":64600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.115.0", + "prefixLen":25, + "network":"194.32.115.0\/25", + "version":64599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.115.0", + "prefixLen":25, + "network":"194.32.115.0\/25", + "version":64599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.115.128", + "prefixLen":25, + "network":"194.32.115.128\/25", + "version":64598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.115.128", + "prefixLen":25, + "network":"194.32.115.128\/25", + "version":64598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.128.0", + "prefixLen":25, + "network":"194.32.128.0\/25", + "version":64597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.128.0", + "prefixLen":25, + "network":"194.32.128.0\/25", + "version":64597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.128.128", + "prefixLen":25, + "network":"194.32.128.128\/25", + "version":64596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.128.128", + "prefixLen":25, + "network":"194.32.128.128\/25", + "version":64596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.129.0", + "prefixLen":25, + "network":"194.32.129.0\/25", + "version":64595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.129.0", + "prefixLen":25, + "network":"194.32.129.0\/25", + "version":64595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.129.128", + "prefixLen":25, + "network":"194.32.129.128\/25", + "version":64594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.129.128", + "prefixLen":25, + "network":"194.32.129.128\/25", + "version":64594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.130.0", + "prefixLen":25, + "network":"194.32.130.0\/25", + "version":64593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.130.0", + "prefixLen":25, + "network":"194.32.130.0\/25", + "version":64593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.130.128", + "prefixLen":25, + "network":"194.32.130.128\/25", + "version":64592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.130.128", + "prefixLen":25, + "network":"194.32.130.128\/25", + "version":64592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.131.0", + "prefixLen":25, + "network":"194.32.131.0\/25", + "version":64591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.131.0", + "prefixLen":25, + "network":"194.32.131.0\/25", + "version":64591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.131.128", + "prefixLen":25, + "network":"194.32.131.128\/25", + "version":64590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.131.128", + "prefixLen":25, + "network":"194.32.131.128\/25", + "version":64590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.144.0", + "prefixLen":25, + "network":"194.32.144.0\/25", + "version":64589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.144.0", + "prefixLen":25, + "network":"194.32.144.0\/25", + "version":64589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.144.128", + "prefixLen":25, + "network":"194.32.144.128\/25", + "version":64588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.144.128", + "prefixLen":25, + "network":"194.32.144.128\/25", + "version":64588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.145.0", + "prefixLen":25, + "network":"194.32.145.0\/25", + "version":64587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.145.0", + "prefixLen":25, + "network":"194.32.145.0\/25", + "version":64587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.145.128", + "prefixLen":25, + "network":"194.32.145.128\/25", + "version":64586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.145.128", + "prefixLen":25, + "network":"194.32.145.128\/25", + "version":64586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.146.0", + "prefixLen":25, + "network":"194.32.146.0\/25", + "version":64585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.146.0", + "prefixLen":25, + "network":"194.32.146.0\/25", + "version":64585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.146.128", + "prefixLen":25, + "network":"194.32.146.128\/25", + "version":64584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.146.128", + "prefixLen":25, + "network":"194.32.146.128\/25", + "version":64584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.147.0", + "prefixLen":25, + "network":"194.32.147.0\/25", + "version":64583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.147.0", + "prefixLen":25, + "network":"194.32.147.0\/25", + "version":64583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.147.128", + "prefixLen":25, + "network":"194.32.147.128\/25", + "version":64582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.147.128", + "prefixLen":25, + "network":"194.32.147.128\/25", + "version":64582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.160.0", + "prefixLen":25, + "network":"194.32.160.0\/25", + "version":64581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.160.0", + "prefixLen":25, + "network":"194.32.160.0\/25", + "version":64581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.160.128", + "prefixLen":25, + "network":"194.32.160.128\/25", + "version":64580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.160.128", + "prefixLen":25, + "network":"194.32.160.128\/25", + "version":64580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.161.0", + "prefixLen":25, + "network":"194.32.161.0\/25", + "version":64579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.161.0", + "prefixLen":25, + "network":"194.32.161.0\/25", + "version":64579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.161.128", + "prefixLen":25, + "network":"194.32.161.128\/25", + "version":64578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.161.128", + "prefixLen":25, + "network":"194.32.161.128\/25", + "version":64578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.162.0", + "prefixLen":25, + "network":"194.32.162.0\/25", + "version":64577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.162.0", + "prefixLen":25, + "network":"194.32.162.0\/25", + "version":64577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.162.128", + "prefixLen":25, + "network":"194.32.162.128\/25", + "version":64576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.162.128", + "prefixLen":25, + "network":"194.32.162.128\/25", + "version":64576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.163.0", + "prefixLen":25, + "network":"194.32.163.0\/25", + "version":64575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.163.0", + "prefixLen":25, + "network":"194.32.163.0\/25", + "version":64575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.163.128", + "prefixLen":25, + "network":"194.32.163.128\/25", + "version":64574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.163.128", + "prefixLen":25, + "network":"194.32.163.128\/25", + "version":64574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.176.0", + "prefixLen":25, + "network":"194.32.176.0\/25", + "version":64573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.176.0", + "prefixLen":25, + "network":"194.32.176.0\/25", + "version":64573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.176.128", + "prefixLen":25, + "network":"194.32.176.128\/25", + "version":64572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.176.128", + "prefixLen":25, + "network":"194.32.176.128\/25", + "version":64572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.177.0", + "prefixLen":25, + "network":"194.32.177.0\/25", + "version":64571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.177.0", + "prefixLen":25, + "network":"194.32.177.0\/25", + "version":64571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.177.128", + "prefixLen":25, + "network":"194.32.177.128\/25", + "version":64570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.177.128", + "prefixLen":25, + "network":"194.32.177.128\/25", + "version":64570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.178.0", + "prefixLen":25, + "network":"194.32.178.0\/25", + "version":64569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.178.0", + "prefixLen":25, + "network":"194.32.178.0\/25", + "version":64569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.178.128", + "prefixLen":25, + "network":"194.32.178.128\/25", + "version":64568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.178.128", + "prefixLen":25, + "network":"194.32.178.128\/25", + "version":64568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.179.0", + "prefixLen":25, + "network":"194.32.179.0\/25", + "version":64567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.179.0", + "prefixLen":25, + "network":"194.32.179.0\/25", + "version":64567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.179.128", + "prefixLen":25, + "network":"194.32.179.128\/25", + "version":64566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.179.128", + "prefixLen":25, + "network":"194.32.179.128\/25", + "version":64566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.192.0", + "prefixLen":25, + "network":"194.32.192.0\/25", + "version":64565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.192.0", + "prefixLen":25, + "network":"194.32.192.0\/25", + "version":64565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.192.128", + "prefixLen":25, + "network":"194.32.192.128\/25", + "version":64564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.192.128", + "prefixLen":25, + "network":"194.32.192.128\/25", + "version":64564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.193.0", + "prefixLen":25, + "network":"194.32.193.0\/25", + "version":64563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.193.0", + "prefixLen":25, + "network":"194.32.193.0\/25", + "version":64563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.193.128", + "prefixLen":25, + "network":"194.32.193.128\/25", + "version":64562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.193.128", + "prefixLen":25, + "network":"194.32.193.128\/25", + "version":64562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.194.0", + "prefixLen":25, + "network":"194.32.194.0\/25", + "version":64561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.194.0", + "prefixLen":25, + "network":"194.32.194.0\/25", + "version":64561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.194.128", + "prefixLen":25, + "network":"194.32.194.128\/25", + "version":64560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.194.128", + "prefixLen":25, + "network":"194.32.194.128\/25", + "version":64560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.195.0", + "prefixLen":25, + "network":"194.32.195.0\/25", + "version":64559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.195.0", + "prefixLen":25, + "network":"194.32.195.0\/25", + "version":64559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.195.128", + "prefixLen":25, + "network":"194.32.195.128\/25", + "version":64558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.195.128", + "prefixLen":25, + "network":"194.32.195.128\/25", + "version":64558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.208.0", + "prefixLen":25, + "network":"194.32.208.0\/25", + "version":64557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.208.0", + "prefixLen":25, + "network":"194.32.208.0\/25", + "version":64557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.208.128", + "prefixLen":25, + "network":"194.32.208.128\/25", + "version":64556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.208.128", + "prefixLen":25, + "network":"194.32.208.128\/25", + "version":64556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.209.0", + "prefixLen":25, + "network":"194.32.209.0\/25", + "version":64555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.209.0", + "prefixLen":25, + "network":"194.32.209.0\/25", + "version":64555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.209.128", + "prefixLen":25, + "network":"194.32.209.128\/25", + "version":64554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.209.128", + "prefixLen":25, + "network":"194.32.209.128\/25", + "version":64554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.210.0", + "prefixLen":25, + "network":"194.32.210.0\/25", + "version":64553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.210.0", + "prefixLen":25, + "network":"194.32.210.0\/25", + "version":64553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.210.128", + "prefixLen":25, + "network":"194.32.210.128\/25", + "version":64552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.210.128", + "prefixLen":25, + "network":"194.32.210.128\/25", + "version":64552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.211.0", + "prefixLen":25, + "network":"194.32.211.0\/25", + "version":64551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.211.0", + "prefixLen":25, + "network":"194.32.211.0\/25", + "version":64551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.211.128", + "prefixLen":25, + "network":"194.32.211.128\/25", + "version":64550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.211.128", + "prefixLen":25, + "network":"194.32.211.128\/25", + "version":64550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.224.0", + "prefixLen":25, + "network":"194.32.224.0\/25", + "version":64549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.224.0", + "prefixLen":25, + "network":"194.32.224.0\/25", + "version":64549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.224.128", + "prefixLen":25, + "network":"194.32.224.128\/25", + "version":64548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.224.128", + "prefixLen":25, + "network":"194.32.224.128\/25", + "version":64548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.225.0", + "prefixLen":25, + "network":"194.32.225.0\/25", + "version":64547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.225.0", + "prefixLen":25, + "network":"194.32.225.0\/25", + "version":64547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.225.128", + "prefixLen":25, + "network":"194.32.225.128\/25", + "version":64546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.225.128", + "prefixLen":25, + "network":"194.32.225.128\/25", + "version":64546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.226.0", + "prefixLen":25, + "network":"194.32.226.0\/25", + "version":64545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.226.0", + "prefixLen":25, + "network":"194.32.226.0\/25", + "version":64545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.226.128", + "prefixLen":25, + "network":"194.32.226.128\/25", + "version":64544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.226.128", + "prefixLen":25, + "network":"194.32.226.128\/25", + "version":64544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.227.0", + "prefixLen":25, + "network":"194.32.227.0\/25", + "version":64543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.227.0", + "prefixLen":25, + "network":"194.32.227.0\/25", + "version":64543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.227.128", + "prefixLen":25, + "network":"194.32.227.128\/25", + "version":64542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.227.128", + "prefixLen":25, + "network":"194.32.227.128\/25", + "version":64542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.240.0", + "prefixLen":25, + "network":"194.32.240.0\/25", + "version":64541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.240.0", + "prefixLen":25, + "network":"194.32.240.0\/25", + "version":64541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.240.128", + "prefixLen":25, + "network":"194.32.240.128\/25", + "version":64540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.240.128", + "prefixLen":25, + "network":"194.32.240.128\/25", + "version":64540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.241.0", + "prefixLen":25, + "network":"194.32.241.0\/25", + "version":64539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.241.0", + "prefixLen":25, + "network":"194.32.241.0\/25", + "version":64539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.241.128", + "prefixLen":25, + "network":"194.32.241.128\/25", + "version":64538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.241.128", + "prefixLen":25, + "network":"194.32.241.128\/25", + "version":64538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.242.0", + "prefixLen":25, + "network":"194.32.242.0\/25", + "version":64537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.242.0", + "prefixLen":25, + "network":"194.32.242.0\/25", + "version":64537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.242.128", + "prefixLen":25, + "network":"194.32.242.128\/25", + "version":64536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.242.128", + "prefixLen":25, + "network":"194.32.242.128\/25", + "version":64536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.243.0", + "prefixLen":25, + "network":"194.32.243.0\/25", + "version":64535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.243.0", + "prefixLen":25, + "network":"194.32.243.0\/25", + "version":64535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.32.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.32.243.128", + "prefixLen":25, + "network":"194.32.243.128\/25", + "version":64534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.32.243.128", + "prefixLen":25, + "network":"194.32.243.128\/25", + "version":64534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64976 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.0.0", + "prefixLen":25, + "network":"194.33.0.0\/25", + "version":64661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.0.0", + "prefixLen":25, + "network":"194.33.0.0\/25", + "version":64661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.0.128", + "prefixLen":25, + "network":"194.33.0.128\/25", + "version":64788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.0.128", + "prefixLen":25, + "network":"194.33.0.128\/25", + "version":64788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.1.0", + "prefixLen":25, + "network":"194.33.1.0\/25", + "version":64787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.1.0", + "prefixLen":25, + "network":"194.33.1.0\/25", + "version":64787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.1.128", + "prefixLen":25, + "network":"194.33.1.128\/25", + "version":64786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.1.128", + "prefixLen":25, + "network":"194.33.1.128\/25", + "version":64786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.2.0", + "prefixLen":25, + "network":"194.33.2.0\/25", + "version":64785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.2.0", + "prefixLen":25, + "network":"194.33.2.0\/25", + "version":64785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.2.128", + "prefixLen":25, + "network":"194.33.2.128\/25", + "version":64784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.2.128", + "prefixLen":25, + "network":"194.33.2.128\/25", + "version":64784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.3.0", + "prefixLen":25, + "network":"194.33.3.0\/25", + "version":64783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.3.0", + "prefixLen":25, + "network":"194.33.3.0\/25", + "version":64783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.3.128", + "prefixLen":25, + "network":"194.33.3.128\/25", + "version":64782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.3.128", + "prefixLen":25, + "network":"194.33.3.128\/25", + "version":64782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.16.0", + "prefixLen":25, + "network":"194.33.16.0\/25", + "version":64781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.16.0", + "prefixLen":25, + "network":"194.33.16.0\/25", + "version":64781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.16.128", + "prefixLen":25, + "network":"194.33.16.128\/25", + "version":64780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.16.128", + "prefixLen":25, + "network":"194.33.16.128\/25", + "version":64780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.17.0", + "prefixLen":25, + "network":"194.33.17.0\/25", + "version":64779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.17.0", + "prefixLen":25, + "network":"194.33.17.0\/25", + "version":64779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.17.128", + "prefixLen":25, + "network":"194.33.17.128\/25", + "version":64778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.17.128", + "prefixLen":25, + "network":"194.33.17.128\/25", + "version":64778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.18.0", + "prefixLen":25, + "network":"194.33.18.0\/25", + "version":64777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.18.0", + "prefixLen":25, + "network":"194.33.18.0\/25", + "version":64777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.18.128", + "prefixLen":25, + "network":"194.33.18.128\/25", + "version":64776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.18.128", + "prefixLen":25, + "network":"194.33.18.128\/25", + "version":64776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.19.0", + "prefixLen":25, + "network":"194.33.19.0\/25", + "version":64775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.19.0", + "prefixLen":25, + "network":"194.33.19.0\/25", + "version":64775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.19.128", + "prefixLen":25, + "network":"194.33.19.128\/25", + "version":64774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.19.128", + "prefixLen":25, + "network":"194.33.19.128\/25", + "version":64774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.32.0", + "prefixLen":25, + "network":"194.33.32.0\/25", + "version":64773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.32.0", + "prefixLen":25, + "network":"194.33.32.0\/25", + "version":64773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.32.128", + "prefixLen":25, + "network":"194.33.32.128\/25", + "version":64772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.32.128", + "prefixLen":25, + "network":"194.33.32.128\/25", + "version":64772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.33.0", + "prefixLen":25, + "network":"194.33.33.0\/25", + "version":64771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.33.0", + "prefixLen":25, + "network":"194.33.33.0\/25", + "version":64771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.33.128", + "prefixLen":25, + "network":"194.33.33.128\/25", + "version":64770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.33.128", + "prefixLen":25, + "network":"194.33.33.128\/25", + "version":64770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.34.0", + "prefixLen":25, + "network":"194.33.34.0\/25", + "version":64769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.34.0", + "prefixLen":25, + "network":"194.33.34.0\/25", + "version":64769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.34.128", + "prefixLen":25, + "network":"194.33.34.128\/25", + "version":64768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.34.128", + "prefixLen":25, + "network":"194.33.34.128\/25", + "version":64768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.35.0", + "prefixLen":25, + "network":"194.33.35.0\/25", + "version":64767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.35.0", + "prefixLen":25, + "network":"194.33.35.0\/25", + "version":64767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.35.128", + "prefixLen":25, + "network":"194.33.35.128\/25", + "version":64766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.35.128", + "prefixLen":25, + "network":"194.33.35.128\/25", + "version":64766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.48.0", + "prefixLen":25, + "network":"194.33.48.0\/25", + "version":64765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.48.0", + "prefixLen":25, + "network":"194.33.48.0\/25", + "version":64765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.48.128", + "prefixLen":25, + "network":"194.33.48.128\/25", + "version":64764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.48.128", + "prefixLen":25, + "network":"194.33.48.128\/25", + "version":64764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.49.0", + "prefixLen":25, + "network":"194.33.49.0\/25", + "version":64763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.49.0", + "prefixLen":25, + "network":"194.33.49.0\/25", + "version":64763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.49.128", + "prefixLen":25, + "network":"194.33.49.128\/25", + "version":64762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.49.128", + "prefixLen":25, + "network":"194.33.49.128\/25", + "version":64762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.50.0", + "prefixLen":25, + "network":"194.33.50.0\/25", + "version":64761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.50.0", + "prefixLen":25, + "network":"194.33.50.0\/25", + "version":64761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.50.128", + "prefixLen":25, + "network":"194.33.50.128\/25", + "version":64760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.50.128", + "prefixLen":25, + "network":"194.33.50.128\/25", + "version":64760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.51.0", + "prefixLen":25, + "network":"194.33.51.0\/25", + "version":64759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.51.0", + "prefixLen":25, + "network":"194.33.51.0\/25", + "version":64759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.51.128", + "prefixLen":25, + "network":"194.33.51.128\/25", + "version":64758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.51.128", + "prefixLen":25, + "network":"194.33.51.128\/25", + "version":64758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.64.0", + "prefixLen":25, + "network":"194.33.64.0\/25", + "version":64757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.64.0", + "prefixLen":25, + "network":"194.33.64.0\/25", + "version":64757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.64.128", + "prefixLen":25, + "network":"194.33.64.128\/25", + "version":64756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.64.128", + "prefixLen":25, + "network":"194.33.64.128\/25", + "version":64756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.65.0", + "prefixLen":25, + "network":"194.33.65.0\/25", + "version":64755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.65.0", + "prefixLen":25, + "network":"194.33.65.0\/25", + "version":64755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.65.128", + "prefixLen":25, + "network":"194.33.65.128\/25", + "version":64754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.65.128", + "prefixLen":25, + "network":"194.33.65.128\/25", + "version":64754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.66.0", + "prefixLen":25, + "network":"194.33.66.0\/25", + "version":64753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.66.0", + "prefixLen":25, + "network":"194.33.66.0\/25", + "version":64753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.66.128", + "prefixLen":25, + "network":"194.33.66.128\/25", + "version":64752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.66.128", + "prefixLen":25, + "network":"194.33.66.128\/25", + "version":64752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.67.0", + "prefixLen":25, + "network":"194.33.67.0\/25", + "version":64751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.67.0", + "prefixLen":25, + "network":"194.33.67.0\/25", + "version":64751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.67.128", + "prefixLen":25, + "network":"194.33.67.128\/25", + "version":64750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.67.128", + "prefixLen":25, + "network":"194.33.67.128\/25", + "version":64750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.80.0", + "prefixLen":25, + "network":"194.33.80.0\/25", + "version":64749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.80.0", + "prefixLen":25, + "network":"194.33.80.0\/25", + "version":64749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.80.128", + "prefixLen":25, + "network":"194.33.80.128\/25", + "version":64748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.80.128", + "prefixLen":25, + "network":"194.33.80.128\/25", + "version":64748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.81.0", + "prefixLen":25, + "network":"194.33.81.0\/25", + "version":64747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.81.0", + "prefixLen":25, + "network":"194.33.81.0\/25", + "version":64747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.81.128", + "prefixLen":25, + "network":"194.33.81.128\/25", + "version":64746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.81.128", + "prefixLen":25, + "network":"194.33.81.128\/25", + "version":64746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.82.0", + "prefixLen":25, + "network":"194.33.82.0\/25", + "version":64745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.82.0", + "prefixLen":25, + "network":"194.33.82.0\/25", + "version":64745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.82.128", + "prefixLen":25, + "network":"194.33.82.128\/25", + "version":64744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.82.128", + "prefixLen":25, + "network":"194.33.82.128\/25", + "version":64744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.83.0", + "prefixLen":25, + "network":"194.33.83.0\/25", + "version":64743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.83.0", + "prefixLen":25, + "network":"194.33.83.0\/25", + "version":64743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.83.128", + "prefixLen":25, + "network":"194.33.83.128\/25", + "version":64742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.83.128", + "prefixLen":25, + "network":"194.33.83.128\/25", + "version":64742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.96.0", + "prefixLen":25, + "network":"194.33.96.0\/25", + "version":64741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.96.0", + "prefixLen":25, + "network":"194.33.96.0\/25", + "version":64741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.96.128", + "prefixLen":25, + "network":"194.33.96.128\/25", + "version":64740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.96.128", + "prefixLen":25, + "network":"194.33.96.128\/25", + "version":64740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.97.0", + "prefixLen":25, + "network":"194.33.97.0\/25", + "version":64739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.97.0", + "prefixLen":25, + "network":"194.33.97.0\/25", + "version":64739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.97.128", + "prefixLen":25, + "network":"194.33.97.128\/25", + "version":64738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.97.128", + "prefixLen":25, + "network":"194.33.97.128\/25", + "version":64738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.98.0", + "prefixLen":25, + "network":"194.33.98.0\/25", + "version":64737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.98.0", + "prefixLen":25, + "network":"194.33.98.0\/25", + "version":64737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.98.128", + "prefixLen":25, + "network":"194.33.98.128\/25", + "version":64736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.98.128", + "prefixLen":25, + "network":"194.33.98.128\/25", + "version":64736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.99.0", + "prefixLen":25, + "network":"194.33.99.0\/25", + "version":64735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.99.0", + "prefixLen":25, + "network":"194.33.99.0\/25", + "version":64735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.99.128", + "prefixLen":25, + "network":"194.33.99.128\/25", + "version":64734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.99.128", + "prefixLen":25, + "network":"194.33.99.128\/25", + "version":64734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.112.0", + "prefixLen":25, + "network":"194.33.112.0\/25", + "version":64733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.112.0", + "prefixLen":25, + "network":"194.33.112.0\/25", + "version":64733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.112.128", + "prefixLen":25, + "network":"194.33.112.128\/25", + "version":64732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.112.128", + "prefixLen":25, + "network":"194.33.112.128\/25", + "version":64732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.113.0", + "prefixLen":25, + "network":"194.33.113.0\/25", + "version":64731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.113.0", + "prefixLen":25, + "network":"194.33.113.0\/25", + "version":64731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.113.128", + "prefixLen":25, + "network":"194.33.113.128\/25", + "version":64730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.113.128", + "prefixLen":25, + "network":"194.33.113.128\/25", + "version":64730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.114.0", + "prefixLen":25, + "network":"194.33.114.0\/25", + "version":64729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.114.0", + "prefixLen":25, + "network":"194.33.114.0\/25", + "version":64729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.114.128", + "prefixLen":25, + "network":"194.33.114.128\/25", + "version":64728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.114.128", + "prefixLen":25, + "network":"194.33.114.128\/25", + "version":64728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.115.0", + "prefixLen":25, + "network":"194.33.115.0\/25", + "version":64727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.115.0", + "prefixLen":25, + "network":"194.33.115.0\/25", + "version":64727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.115.128", + "prefixLen":25, + "network":"194.33.115.128\/25", + "version":64726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.115.128", + "prefixLen":25, + "network":"194.33.115.128\/25", + "version":64726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.128.0", + "prefixLen":25, + "network":"194.33.128.0\/25", + "version":64725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.128.0", + "prefixLen":25, + "network":"194.33.128.0\/25", + "version":64725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.128.128", + "prefixLen":25, + "network":"194.33.128.128\/25", + "version":64724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.128.128", + "prefixLen":25, + "network":"194.33.128.128\/25", + "version":64724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.129.0", + "prefixLen":25, + "network":"194.33.129.0\/25", + "version":64723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.129.0", + "prefixLen":25, + "network":"194.33.129.0\/25", + "version":64723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.129.128", + "prefixLen":25, + "network":"194.33.129.128\/25", + "version":64722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.129.128", + "prefixLen":25, + "network":"194.33.129.128\/25", + "version":64722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.130.0", + "prefixLen":25, + "network":"194.33.130.0\/25", + "version":64721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.130.0", + "prefixLen":25, + "network":"194.33.130.0\/25", + "version":64721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.130.128", + "prefixLen":25, + "network":"194.33.130.128\/25", + "version":64720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.130.128", + "prefixLen":25, + "network":"194.33.130.128\/25", + "version":64720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.131.0", + "prefixLen":25, + "network":"194.33.131.0\/25", + "version":64719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.131.0", + "prefixLen":25, + "network":"194.33.131.0\/25", + "version":64719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.131.128", + "prefixLen":25, + "network":"194.33.131.128\/25", + "version":64718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.131.128", + "prefixLen":25, + "network":"194.33.131.128\/25", + "version":64718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.144.0", + "prefixLen":25, + "network":"194.33.144.0\/25", + "version":64717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.144.0", + "prefixLen":25, + "network":"194.33.144.0\/25", + "version":64717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.144.128", + "prefixLen":25, + "network":"194.33.144.128\/25", + "version":64716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.144.128", + "prefixLen":25, + "network":"194.33.144.128\/25", + "version":64716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.145.0", + "prefixLen":25, + "network":"194.33.145.0\/25", + "version":64715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.145.0", + "prefixLen":25, + "network":"194.33.145.0\/25", + "version":64715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.145.128", + "prefixLen":25, + "network":"194.33.145.128\/25", + "version":64714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.145.128", + "prefixLen":25, + "network":"194.33.145.128\/25", + "version":64714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.146.0", + "prefixLen":25, + "network":"194.33.146.0\/25", + "version":64713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.146.0", + "prefixLen":25, + "network":"194.33.146.0\/25", + "version":64713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.146.128", + "prefixLen":25, + "network":"194.33.146.128\/25", + "version":64712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.146.128", + "prefixLen":25, + "network":"194.33.146.128\/25", + "version":64712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.147.0", + "prefixLen":25, + "network":"194.33.147.0\/25", + "version":64711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.147.0", + "prefixLen":25, + "network":"194.33.147.0\/25", + "version":64711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.147.128", + "prefixLen":25, + "network":"194.33.147.128\/25", + "version":64710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.147.128", + "prefixLen":25, + "network":"194.33.147.128\/25", + "version":64710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.160.0", + "prefixLen":25, + "network":"194.33.160.0\/25", + "version":64709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.160.0", + "prefixLen":25, + "network":"194.33.160.0\/25", + "version":64709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.160.128", + "prefixLen":25, + "network":"194.33.160.128\/25", + "version":64708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.160.128", + "prefixLen":25, + "network":"194.33.160.128\/25", + "version":64708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.161.0", + "prefixLen":25, + "network":"194.33.161.0\/25", + "version":64707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.161.0", + "prefixLen":25, + "network":"194.33.161.0\/25", + "version":64707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.161.128", + "prefixLen":25, + "network":"194.33.161.128\/25", + "version":64706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.161.128", + "prefixLen":25, + "network":"194.33.161.128\/25", + "version":64706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.162.0", + "prefixLen":25, + "network":"194.33.162.0\/25", + "version":64705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.162.0", + "prefixLen":25, + "network":"194.33.162.0\/25", + "version":64705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.162.128", + "prefixLen":25, + "network":"194.33.162.128\/25", + "version":64704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.162.128", + "prefixLen":25, + "network":"194.33.162.128\/25", + "version":64704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.163.0", + "prefixLen":25, + "network":"194.33.163.0\/25", + "version":64703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.163.0", + "prefixLen":25, + "network":"194.33.163.0\/25", + "version":64703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.163.128", + "prefixLen":25, + "network":"194.33.163.128\/25", + "version":64702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.163.128", + "prefixLen":25, + "network":"194.33.163.128\/25", + "version":64702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.176.0", + "prefixLen":25, + "network":"194.33.176.0\/25", + "version":64701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.176.0", + "prefixLen":25, + "network":"194.33.176.0\/25", + "version":64701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.176.128", + "prefixLen":25, + "network":"194.33.176.128\/25", + "version":64700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.176.128", + "prefixLen":25, + "network":"194.33.176.128\/25", + "version":64700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.177.0", + "prefixLen":25, + "network":"194.33.177.0\/25", + "version":64699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.177.0", + "prefixLen":25, + "network":"194.33.177.0\/25", + "version":64699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.177.128", + "prefixLen":25, + "network":"194.33.177.128\/25", + "version":64698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.177.128", + "prefixLen":25, + "network":"194.33.177.128\/25", + "version":64698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.178.0", + "prefixLen":25, + "network":"194.33.178.0\/25", + "version":64697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.178.0", + "prefixLen":25, + "network":"194.33.178.0\/25", + "version":64697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.178.128", + "prefixLen":25, + "network":"194.33.178.128\/25", + "version":64696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.178.128", + "prefixLen":25, + "network":"194.33.178.128\/25", + "version":64696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.179.0", + "prefixLen":25, + "network":"194.33.179.0\/25", + "version":64695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.179.0", + "prefixLen":25, + "network":"194.33.179.0\/25", + "version":64695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.179.128", + "prefixLen":25, + "network":"194.33.179.128\/25", + "version":64694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.179.128", + "prefixLen":25, + "network":"194.33.179.128\/25", + "version":64694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.192.0", + "prefixLen":25, + "network":"194.33.192.0\/25", + "version":64693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.192.0", + "prefixLen":25, + "network":"194.33.192.0\/25", + "version":64693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.192.128", + "prefixLen":25, + "network":"194.33.192.128\/25", + "version":64692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.192.128", + "prefixLen":25, + "network":"194.33.192.128\/25", + "version":64692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.193.0", + "prefixLen":25, + "network":"194.33.193.0\/25", + "version":64691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.193.0", + "prefixLen":25, + "network":"194.33.193.0\/25", + "version":64691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.193.128", + "prefixLen":25, + "network":"194.33.193.128\/25", + "version":64690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.193.128", + "prefixLen":25, + "network":"194.33.193.128\/25", + "version":64690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.194.0", + "prefixLen":25, + "network":"194.33.194.0\/25", + "version":64689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.194.0", + "prefixLen":25, + "network":"194.33.194.0\/25", + "version":64689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.194.128", + "prefixLen":25, + "network":"194.33.194.128\/25", + "version":64688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.194.128", + "prefixLen":25, + "network":"194.33.194.128\/25", + "version":64688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.195.0", + "prefixLen":25, + "network":"194.33.195.0\/25", + "version":64687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.195.0", + "prefixLen":25, + "network":"194.33.195.0\/25", + "version":64687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.195.128", + "prefixLen":25, + "network":"194.33.195.128\/25", + "version":64686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.195.128", + "prefixLen":25, + "network":"194.33.195.128\/25", + "version":64686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.208.0", + "prefixLen":25, + "network":"194.33.208.0\/25", + "version":64685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.208.0", + "prefixLen":25, + "network":"194.33.208.0\/25", + "version":64685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.208.128", + "prefixLen":25, + "network":"194.33.208.128\/25", + "version":64684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.208.128", + "prefixLen":25, + "network":"194.33.208.128\/25", + "version":64684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.209.0", + "prefixLen":25, + "network":"194.33.209.0\/25", + "version":64683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.209.0", + "prefixLen":25, + "network":"194.33.209.0\/25", + "version":64683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.209.128", + "prefixLen":25, + "network":"194.33.209.128\/25", + "version":64682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.209.128", + "prefixLen":25, + "network":"194.33.209.128\/25", + "version":64682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.210.0", + "prefixLen":25, + "network":"194.33.210.0\/25", + "version":64681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.210.0", + "prefixLen":25, + "network":"194.33.210.0\/25", + "version":64681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.210.128", + "prefixLen":25, + "network":"194.33.210.128\/25", + "version":64680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.210.128", + "prefixLen":25, + "network":"194.33.210.128\/25", + "version":64680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.211.0", + "prefixLen":25, + "network":"194.33.211.0\/25", + "version":64679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.211.0", + "prefixLen":25, + "network":"194.33.211.0\/25", + "version":64679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.211.128", + "prefixLen":25, + "network":"194.33.211.128\/25", + "version":64678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.211.128", + "prefixLen":25, + "network":"194.33.211.128\/25", + "version":64678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.224.0", + "prefixLen":25, + "network":"194.33.224.0\/25", + "version":64677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.224.0", + "prefixLen":25, + "network":"194.33.224.0\/25", + "version":64677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.224.128", + "prefixLen":25, + "network":"194.33.224.128\/25", + "version":64676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.224.128", + "prefixLen":25, + "network":"194.33.224.128\/25", + "version":64676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.225.0", + "prefixLen":25, + "network":"194.33.225.0\/25", + "version":64675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.225.0", + "prefixLen":25, + "network":"194.33.225.0\/25", + "version":64675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.225.128", + "prefixLen":25, + "network":"194.33.225.128\/25", + "version":64674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.225.128", + "prefixLen":25, + "network":"194.33.225.128\/25", + "version":64674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.226.0", + "prefixLen":25, + "network":"194.33.226.0\/25", + "version":64673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.226.0", + "prefixLen":25, + "network":"194.33.226.0\/25", + "version":64673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.226.128", + "prefixLen":25, + "network":"194.33.226.128\/25", + "version":64672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.226.128", + "prefixLen":25, + "network":"194.33.226.128\/25", + "version":64672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.227.0", + "prefixLen":25, + "network":"194.33.227.0\/25", + "version":64671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.227.0", + "prefixLen":25, + "network":"194.33.227.0\/25", + "version":64671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.227.128", + "prefixLen":25, + "network":"194.33.227.128\/25", + "version":64670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.227.128", + "prefixLen":25, + "network":"194.33.227.128\/25", + "version":64670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.240.0", + "prefixLen":25, + "network":"194.33.240.0\/25", + "version":64669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.240.0", + "prefixLen":25, + "network":"194.33.240.0\/25", + "version":64669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.240.128", + "prefixLen":25, + "network":"194.33.240.128\/25", + "version":64668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.240.128", + "prefixLen":25, + "network":"194.33.240.128\/25", + "version":64668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.241.0", + "prefixLen":25, + "network":"194.33.241.0\/25", + "version":64667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.241.0", + "prefixLen":25, + "network":"194.33.241.0\/25", + "version":64667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.241.128", + "prefixLen":25, + "network":"194.33.241.128\/25", + "version":64666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.241.128", + "prefixLen":25, + "network":"194.33.241.128\/25", + "version":64666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.242.0", + "prefixLen":25, + "network":"194.33.242.0\/25", + "version":64665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.242.0", + "prefixLen":25, + "network":"194.33.242.0\/25", + "version":64665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.242.128", + "prefixLen":25, + "network":"194.33.242.128\/25", + "version":64664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.242.128", + "prefixLen":25, + "network":"194.33.242.128\/25", + "version":64664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.243.0", + "prefixLen":25, + "network":"194.33.243.0\/25", + "version":64663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.243.0", + "prefixLen":25, + "network":"194.33.243.0\/25", + "version":64663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.33.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.33.243.128", + "prefixLen":25, + "network":"194.33.243.128\/25", + "version":64662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.33.243.128", + "prefixLen":25, + "network":"194.33.243.128\/25", + "version":64662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64977 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.0.0", + "prefixLen":25, + "network":"194.34.0.0\/25", + "version":64789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.0.0", + "prefixLen":25, + "network":"194.34.0.0\/25", + "version":64789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.0.128", + "prefixLen":25, + "network":"194.34.0.128\/25", + "version":64916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.0.128", + "prefixLen":25, + "network":"194.34.0.128\/25", + "version":64916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.1.0", + "prefixLen":25, + "network":"194.34.1.0\/25", + "version":64915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.1.0", + "prefixLen":25, + "network":"194.34.1.0\/25", + "version":64915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.1.128", + "prefixLen":25, + "network":"194.34.1.128\/25", + "version":64914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.1.128", + "prefixLen":25, + "network":"194.34.1.128\/25", + "version":64914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.2.0", + "prefixLen":25, + "network":"194.34.2.0\/25", + "version":64913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.2.0", + "prefixLen":25, + "network":"194.34.2.0\/25", + "version":64913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.2.128", + "prefixLen":25, + "network":"194.34.2.128\/25", + "version":64912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.2.128", + "prefixLen":25, + "network":"194.34.2.128\/25", + "version":64912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.3.0", + "prefixLen":25, + "network":"194.34.3.0\/25", + "version":64911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.3.0", + "prefixLen":25, + "network":"194.34.3.0\/25", + "version":64911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.3.128", + "prefixLen":25, + "network":"194.34.3.128\/25", + "version":64910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.3.128", + "prefixLen":25, + "network":"194.34.3.128\/25", + "version":64910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.16.0", + "prefixLen":25, + "network":"194.34.16.0\/25", + "version":64909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.16.0", + "prefixLen":25, + "network":"194.34.16.0\/25", + "version":64909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.16.128", + "prefixLen":25, + "network":"194.34.16.128\/25", + "version":64908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.16.128", + "prefixLen":25, + "network":"194.34.16.128\/25", + "version":64908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.17.0", + "prefixLen":25, + "network":"194.34.17.0\/25", + "version":64907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.17.0", + "prefixLen":25, + "network":"194.34.17.0\/25", + "version":64907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.17.128", + "prefixLen":25, + "network":"194.34.17.128\/25", + "version":64906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.17.128", + "prefixLen":25, + "network":"194.34.17.128\/25", + "version":64906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.18.0", + "prefixLen":25, + "network":"194.34.18.0\/25", + "version":64905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.18.0", + "prefixLen":25, + "network":"194.34.18.0\/25", + "version":64905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.18.128", + "prefixLen":25, + "network":"194.34.18.128\/25", + "version":64904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.18.128", + "prefixLen":25, + "network":"194.34.18.128\/25", + "version":64904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.19.0", + "prefixLen":25, + "network":"194.34.19.0\/25", + "version":64903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.19.0", + "prefixLen":25, + "network":"194.34.19.0\/25", + "version":64903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.19.128", + "prefixLen":25, + "network":"194.34.19.128\/25", + "version":64902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.19.128", + "prefixLen":25, + "network":"194.34.19.128\/25", + "version":64902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.32.0", + "prefixLen":25, + "network":"194.34.32.0\/25", + "version":64901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.32.0", + "prefixLen":25, + "network":"194.34.32.0\/25", + "version":64901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.32.128", + "prefixLen":25, + "network":"194.34.32.128\/25", + "version":64900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.32.128", + "prefixLen":25, + "network":"194.34.32.128\/25", + "version":64900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.33.0", + "prefixLen":25, + "network":"194.34.33.0\/25", + "version":64899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.33.0", + "prefixLen":25, + "network":"194.34.33.0\/25", + "version":64899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.33.128", + "prefixLen":25, + "network":"194.34.33.128\/25", + "version":64898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.33.128", + "prefixLen":25, + "network":"194.34.33.128\/25", + "version":64898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.34.0", + "prefixLen":25, + "network":"194.34.34.0\/25", + "version":64897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.34.0", + "prefixLen":25, + "network":"194.34.34.0\/25", + "version":64897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.34.128", + "prefixLen":25, + "network":"194.34.34.128\/25", + "version":64896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.34.128", + "prefixLen":25, + "network":"194.34.34.128\/25", + "version":64896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.35.0", + "prefixLen":25, + "network":"194.34.35.0\/25", + "version":64895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.35.0", + "prefixLen":25, + "network":"194.34.35.0\/25", + "version":64895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.35.128", + "prefixLen":25, + "network":"194.34.35.128\/25", + "version":64894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.35.128", + "prefixLen":25, + "network":"194.34.35.128\/25", + "version":64894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.48.0", + "prefixLen":25, + "network":"194.34.48.0\/25", + "version":64893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.48.0", + "prefixLen":25, + "network":"194.34.48.0\/25", + "version":64893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.48.128", + "prefixLen":25, + "network":"194.34.48.128\/25", + "version":64892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.48.128", + "prefixLen":25, + "network":"194.34.48.128\/25", + "version":64892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.49.0", + "prefixLen":25, + "network":"194.34.49.0\/25", + "version":64891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.49.0", + "prefixLen":25, + "network":"194.34.49.0\/25", + "version":64891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.49.128", + "prefixLen":25, + "network":"194.34.49.128\/25", + "version":64890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.49.128", + "prefixLen":25, + "network":"194.34.49.128\/25", + "version":64890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.50.0", + "prefixLen":25, + "network":"194.34.50.0\/25", + "version":64889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.50.0", + "prefixLen":25, + "network":"194.34.50.0\/25", + "version":64889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.50.128", + "prefixLen":25, + "network":"194.34.50.128\/25", + "version":64888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.50.128", + "prefixLen":25, + "network":"194.34.50.128\/25", + "version":64888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.51.0", + "prefixLen":25, + "network":"194.34.51.0\/25", + "version":64887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.51.0", + "prefixLen":25, + "network":"194.34.51.0\/25", + "version":64887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.51.128", + "prefixLen":25, + "network":"194.34.51.128\/25", + "version":64886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.51.128", + "prefixLen":25, + "network":"194.34.51.128\/25", + "version":64886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.64.0", + "prefixLen":25, + "network":"194.34.64.0\/25", + "version":64885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.64.0", + "prefixLen":25, + "network":"194.34.64.0\/25", + "version":64885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.64.128", + "prefixLen":25, + "network":"194.34.64.128\/25", + "version":64884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.64.128", + "prefixLen":25, + "network":"194.34.64.128\/25", + "version":64884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.65.0", + "prefixLen":25, + "network":"194.34.65.0\/25", + "version":64883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.65.0", + "prefixLen":25, + "network":"194.34.65.0\/25", + "version":64883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.65.128", + "prefixLen":25, + "network":"194.34.65.128\/25", + "version":64882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.65.128", + "prefixLen":25, + "network":"194.34.65.128\/25", + "version":64882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.66.0", + "prefixLen":25, + "network":"194.34.66.0\/25", + "version":64881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.66.0", + "prefixLen":25, + "network":"194.34.66.0\/25", + "version":64881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.66.128", + "prefixLen":25, + "network":"194.34.66.128\/25", + "version":64880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.66.128", + "prefixLen":25, + "network":"194.34.66.128\/25", + "version":64880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.67.0", + "prefixLen":25, + "network":"194.34.67.0\/25", + "version":64879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.67.0", + "prefixLen":25, + "network":"194.34.67.0\/25", + "version":64879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.67.128", + "prefixLen":25, + "network":"194.34.67.128\/25", + "version":64878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.67.128", + "prefixLen":25, + "network":"194.34.67.128\/25", + "version":64878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.80.0", + "prefixLen":25, + "network":"194.34.80.0\/25", + "version":64877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.80.0", + "prefixLen":25, + "network":"194.34.80.0\/25", + "version":64877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.80.128", + "prefixLen":25, + "network":"194.34.80.128\/25", + "version":64876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.80.128", + "prefixLen":25, + "network":"194.34.80.128\/25", + "version":64876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.81.0", + "prefixLen":25, + "network":"194.34.81.0\/25", + "version":64875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.81.0", + "prefixLen":25, + "network":"194.34.81.0\/25", + "version":64875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.81.128", + "prefixLen":25, + "network":"194.34.81.128\/25", + "version":64874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.81.128", + "prefixLen":25, + "network":"194.34.81.128\/25", + "version":64874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.82.0", + "prefixLen":25, + "network":"194.34.82.0\/25", + "version":64873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.82.0", + "prefixLen":25, + "network":"194.34.82.0\/25", + "version":64873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.82.128", + "prefixLen":25, + "network":"194.34.82.128\/25", + "version":64872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.82.128", + "prefixLen":25, + "network":"194.34.82.128\/25", + "version":64872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.83.0", + "prefixLen":25, + "network":"194.34.83.0\/25", + "version":64871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.83.0", + "prefixLen":25, + "network":"194.34.83.0\/25", + "version":64871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.83.128", + "prefixLen":25, + "network":"194.34.83.128\/25", + "version":64870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.83.128", + "prefixLen":25, + "network":"194.34.83.128\/25", + "version":64870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.96.0", + "prefixLen":25, + "network":"194.34.96.0\/25", + "version":64869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.96.0", + "prefixLen":25, + "network":"194.34.96.0\/25", + "version":64869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.96.128", + "prefixLen":25, + "network":"194.34.96.128\/25", + "version":64868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.96.128", + "prefixLen":25, + "network":"194.34.96.128\/25", + "version":64868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.97.0", + "prefixLen":25, + "network":"194.34.97.0\/25", + "version":64867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.97.0", + "prefixLen":25, + "network":"194.34.97.0\/25", + "version":64867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.97.128", + "prefixLen":25, + "network":"194.34.97.128\/25", + "version":64866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.97.128", + "prefixLen":25, + "network":"194.34.97.128\/25", + "version":64866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.98.0", + "prefixLen":25, + "network":"194.34.98.0\/25", + "version":64865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.98.0", + "prefixLen":25, + "network":"194.34.98.0\/25", + "version":64865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.98.128", + "prefixLen":25, + "network":"194.34.98.128\/25", + "version":64864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.98.128", + "prefixLen":25, + "network":"194.34.98.128\/25", + "version":64864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.99.0", + "prefixLen":25, + "network":"194.34.99.0\/25", + "version":64863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.99.0", + "prefixLen":25, + "network":"194.34.99.0\/25", + "version":64863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.99.128", + "prefixLen":25, + "network":"194.34.99.128\/25", + "version":64862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.99.128", + "prefixLen":25, + "network":"194.34.99.128\/25", + "version":64862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.112.0", + "prefixLen":25, + "network":"194.34.112.0\/25", + "version":64861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.112.0", + "prefixLen":25, + "network":"194.34.112.0\/25", + "version":64861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.112.128", + "prefixLen":25, + "network":"194.34.112.128\/25", + "version":64860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.112.128", + "prefixLen":25, + "network":"194.34.112.128\/25", + "version":64860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.113.0", + "prefixLen":25, + "network":"194.34.113.0\/25", + "version":64859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.113.0", + "prefixLen":25, + "network":"194.34.113.0\/25", + "version":64859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.113.128", + "prefixLen":25, + "network":"194.34.113.128\/25", + "version":64858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.113.128", + "prefixLen":25, + "network":"194.34.113.128\/25", + "version":64858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.114.0", + "prefixLen":25, + "network":"194.34.114.0\/25", + "version":64857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.114.0", + "prefixLen":25, + "network":"194.34.114.0\/25", + "version":64857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.114.128", + "prefixLen":25, + "network":"194.34.114.128\/25", + "version":64856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.114.128", + "prefixLen":25, + "network":"194.34.114.128\/25", + "version":64856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.115.0", + "prefixLen":25, + "network":"194.34.115.0\/25", + "version":64855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.115.0", + "prefixLen":25, + "network":"194.34.115.0\/25", + "version":64855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.115.128", + "prefixLen":25, + "network":"194.34.115.128\/25", + "version":64854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.115.128", + "prefixLen":25, + "network":"194.34.115.128\/25", + "version":64854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.128.0", + "prefixLen":25, + "network":"194.34.128.0\/25", + "version":64853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.128.0", + "prefixLen":25, + "network":"194.34.128.0\/25", + "version":64853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.128.128", + "prefixLen":25, + "network":"194.34.128.128\/25", + "version":64852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.128.128", + "prefixLen":25, + "network":"194.34.128.128\/25", + "version":64852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.129.0", + "prefixLen":25, + "network":"194.34.129.0\/25", + "version":64851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.129.0", + "prefixLen":25, + "network":"194.34.129.0\/25", + "version":64851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.129.128", + "prefixLen":25, + "network":"194.34.129.128\/25", + "version":64850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.129.128", + "prefixLen":25, + "network":"194.34.129.128\/25", + "version":64850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.130.0", + "prefixLen":25, + "network":"194.34.130.0\/25", + "version":64849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.130.0", + "prefixLen":25, + "network":"194.34.130.0\/25", + "version":64849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.130.128", + "prefixLen":25, + "network":"194.34.130.128\/25", + "version":64848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.130.128", + "prefixLen":25, + "network":"194.34.130.128\/25", + "version":64848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.131.0", + "prefixLen":25, + "network":"194.34.131.0\/25", + "version":64847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.131.0", + "prefixLen":25, + "network":"194.34.131.0\/25", + "version":64847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.131.128", + "prefixLen":25, + "network":"194.34.131.128\/25", + "version":64846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.131.128", + "prefixLen":25, + "network":"194.34.131.128\/25", + "version":64846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.144.0", + "prefixLen":25, + "network":"194.34.144.0\/25", + "version":64845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.144.0", + "prefixLen":25, + "network":"194.34.144.0\/25", + "version":64845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.144.128", + "prefixLen":25, + "network":"194.34.144.128\/25", + "version":64844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.144.128", + "prefixLen":25, + "network":"194.34.144.128\/25", + "version":64844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.145.0", + "prefixLen":25, + "network":"194.34.145.0\/25", + "version":64843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.145.0", + "prefixLen":25, + "network":"194.34.145.0\/25", + "version":64843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.145.128", + "prefixLen":25, + "network":"194.34.145.128\/25", + "version":64842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.145.128", + "prefixLen":25, + "network":"194.34.145.128\/25", + "version":64842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.146.0", + "prefixLen":25, + "network":"194.34.146.0\/25", + "version":64841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.146.0", + "prefixLen":25, + "network":"194.34.146.0\/25", + "version":64841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.146.128", + "prefixLen":25, + "network":"194.34.146.128\/25", + "version":64840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.146.128", + "prefixLen":25, + "network":"194.34.146.128\/25", + "version":64840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.147.0", + "prefixLen":25, + "network":"194.34.147.0\/25", + "version":64839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.147.0", + "prefixLen":25, + "network":"194.34.147.0\/25", + "version":64839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.147.128", + "prefixLen":25, + "network":"194.34.147.128\/25", + "version":64838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.147.128", + "prefixLen":25, + "network":"194.34.147.128\/25", + "version":64838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.160.0", + "prefixLen":25, + "network":"194.34.160.0\/25", + "version":64837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.160.0", + "prefixLen":25, + "network":"194.34.160.0\/25", + "version":64837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.160.128", + "prefixLen":25, + "network":"194.34.160.128\/25", + "version":64836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.160.128", + "prefixLen":25, + "network":"194.34.160.128\/25", + "version":64836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.161.0", + "prefixLen":25, + "network":"194.34.161.0\/25", + "version":64835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.161.0", + "prefixLen":25, + "network":"194.34.161.0\/25", + "version":64835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.161.128", + "prefixLen":25, + "network":"194.34.161.128\/25", + "version":64834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.161.128", + "prefixLen":25, + "network":"194.34.161.128\/25", + "version":64834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.162.0", + "prefixLen":25, + "network":"194.34.162.0\/25", + "version":64833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.162.0", + "prefixLen":25, + "network":"194.34.162.0\/25", + "version":64833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.162.128", + "prefixLen":25, + "network":"194.34.162.128\/25", + "version":64832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.162.128", + "prefixLen":25, + "network":"194.34.162.128\/25", + "version":64832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.163.0", + "prefixLen":25, + "network":"194.34.163.0\/25", + "version":64831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.163.0", + "prefixLen":25, + "network":"194.34.163.0\/25", + "version":64831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.163.128", + "prefixLen":25, + "network":"194.34.163.128\/25", + "version":64830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.163.128", + "prefixLen":25, + "network":"194.34.163.128\/25", + "version":64830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.176.0", + "prefixLen":25, + "network":"194.34.176.0\/25", + "version":64829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.176.0", + "prefixLen":25, + "network":"194.34.176.0\/25", + "version":64829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.176.128", + "prefixLen":25, + "network":"194.34.176.128\/25", + "version":64828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.176.128", + "prefixLen":25, + "network":"194.34.176.128\/25", + "version":64828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.177.0", + "prefixLen":25, + "network":"194.34.177.0\/25", + "version":64827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.177.0", + "prefixLen":25, + "network":"194.34.177.0\/25", + "version":64827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.177.128", + "prefixLen":25, + "network":"194.34.177.128\/25", + "version":64826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.177.128", + "prefixLen":25, + "network":"194.34.177.128\/25", + "version":64826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.178.0", + "prefixLen":25, + "network":"194.34.178.0\/25", + "version":64825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.178.0", + "prefixLen":25, + "network":"194.34.178.0\/25", + "version":64825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.178.128", + "prefixLen":25, + "network":"194.34.178.128\/25", + "version":64824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.178.128", + "prefixLen":25, + "network":"194.34.178.128\/25", + "version":64824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.179.0", + "prefixLen":25, + "network":"194.34.179.0\/25", + "version":64823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.179.0", + "prefixLen":25, + "network":"194.34.179.0\/25", + "version":64823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.179.128", + "prefixLen":25, + "network":"194.34.179.128\/25", + "version":64822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.179.128", + "prefixLen":25, + "network":"194.34.179.128\/25", + "version":64822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.192.0", + "prefixLen":25, + "network":"194.34.192.0\/25", + "version":64821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.192.0", + "prefixLen":25, + "network":"194.34.192.0\/25", + "version":64821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.192.128", + "prefixLen":25, + "network":"194.34.192.128\/25", + "version":64820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.192.128", + "prefixLen":25, + "network":"194.34.192.128\/25", + "version":64820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.193.0", + "prefixLen":25, + "network":"194.34.193.0\/25", + "version":64819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.193.0", + "prefixLen":25, + "network":"194.34.193.0\/25", + "version":64819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.193.128", + "prefixLen":25, + "network":"194.34.193.128\/25", + "version":64818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.193.128", + "prefixLen":25, + "network":"194.34.193.128\/25", + "version":64818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.194.0", + "prefixLen":25, + "network":"194.34.194.0\/25", + "version":64817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.194.0", + "prefixLen":25, + "network":"194.34.194.0\/25", + "version":64817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.194.128", + "prefixLen":25, + "network":"194.34.194.128\/25", + "version":64816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.194.128", + "prefixLen":25, + "network":"194.34.194.128\/25", + "version":64816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.195.0", + "prefixLen":25, + "network":"194.34.195.0\/25", + "version":64815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.195.0", + "prefixLen":25, + "network":"194.34.195.0\/25", + "version":64815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.195.128", + "prefixLen":25, + "network":"194.34.195.128\/25", + "version":64814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.195.128", + "prefixLen":25, + "network":"194.34.195.128\/25", + "version":64814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.208.0", + "prefixLen":25, + "network":"194.34.208.0\/25", + "version":64813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.208.0", + "prefixLen":25, + "network":"194.34.208.0\/25", + "version":64813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.208.128", + "prefixLen":25, + "network":"194.34.208.128\/25", + "version":64812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.208.128", + "prefixLen":25, + "network":"194.34.208.128\/25", + "version":64812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.209.0", + "prefixLen":25, + "network":"194.34.209.0\/25", + "version":64811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.209.0", + "prefixLen":25, + "network":"194.34.209.0\/25", + "version":64811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.209.128", + "prefixLen":25, + "network":"194.34.209.128\/25", + "version":64810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.209.128", + "prefixLen":25, + "network":"194.34.209.128\/25", + "version":64810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.210.0", + "prefixLen":25, + "network":"194.34.210.0\/25", + "version":64809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.210.0", + "prefixLen":25, + "network":"194.34.210.0\/25", + "version":64809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.210.128", + "prefixLen":25, + "network":"194.34.210.128\/25", + "version":64808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.210.128", + "prefixLen":25, + "network":"194.34.210.128\/25", + "version":64808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.211.0", + "prefixLen":25, + "network":"194.34.211.0\/25", + "version":64807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.211.0", + "prefixLen":25, + "network":"194.34.211.0\/25", + "version":64807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.211.128", + "prefixLen":25, + "network":"194.34.211.128\/25", + "version":64806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.211.128", + "prefixLen":25, + "network":"194.34.211.128\/25", + "version":64806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.224.0", + "prefixLen":25, + "network":"194.34.224.0\/25", + "version":64805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.224.0", + "prefixLen":25, + "network":"194.34.224.0\/25", + "version":64805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.224.128", + "prefixLen":25, + "network":"194.34.224.128\/25", + "version":64804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.224.128", + "prefixLen":25, + "network":"194.34.224.128\/25", + "version":64804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.225.0", + "prefixLen":25, + "network":"194.34.225.0\/25", + "version":64803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.225.0", + "prefixLen":25, + "network":"194.34.225.0\/25", + "version":64803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.225.128", + "prefixLen":25, + "network":"194.34.225.128\/25", + "version":64802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.225.128", + "prefixLen":25, + "network":"194.34.225.128\/25", + "version":64802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.226.0", + "prefixLen":25, + "network":"194.34.226.0\/25", + "version":64801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.226.0", + "prefixLen":25, + "network":"194.34.226.0\/25", + "version":64801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.226.128", + "prefixLen":25, + "network":"194.34.226.128\/25", + "version":64800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.226.128", + "prefixLen":25, + "network":"194.34.226.128\/25", + "version":64800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.227.0", + "prefixLen":25, + "network":"194.34.227.0\/25", + "version":64799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.227.0", + "prefixLen":25, + "network":"194.34.227.0\/25", + "version":64799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.227.128", + "prefixLen":25, + "network":"194.34.227.128\/25", + "version":64798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.227.128", + "prefixLen":25, + "network":"194.34.227.128\/25", + "version":64798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.240.0", + "prefixLen":25, + "network":"194.34.240.0\/25", + "version":64797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.240.0", + "prefixLen":25, + "network":"194.34.240.0\/25", + "version":64797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.240.128", + "prefixLen":25, + "network":"194.34.240.128\/25", + "version":64796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.240.128", + "prefixLen":25, + "network":"194.34.240.128\/25", + "version":64796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.241.0", + "prefixLen":25, + "network":"194.34.241.0\/25", + "version":64795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.241.0", + "prefixLen":25, + "network":"194.34.241.0\/25", + "version":64795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.241.128", + "prefixLen":25, + "network":"194.34.241.128\/25", + "version":64794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.241.128", + "prefixLen":25, + "network":"194.34.241.128\/25", + "version":64794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.242.0", + "prefixLen":25, + "network":"194.34.242.0\/25", + "version":64793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.242.0", + "prefixLen":25, + "network":"194.34.242.0\/25", + "version":64793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.242.128", + "prefixLen":25, + "network":"194.34.242.128\/25", + "version":64792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.242.128", + "prefixLen":25, + "network":"194.34.242.128\/25", + "version":64792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.243.0", + "prefixLen":25, + "network":"194.34.243.0\/25", + "version":64791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.243.0", + "prefixLen":25, + "network":"194.34.243.0\/25", + "version":64791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.34.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.34.243.128", + "prefixLen":25, + "network":"194.34.243.128\/25", + "version":64790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.34.243.128", + "prefixLen":25, + "network":"194.34.243.128\/25", + "version":64790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64978 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.0.0", + "prefixLen":25, + "network":"194.35.0.0\/25", + "version":49429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.0.0", + "prefixLen":25, + "network":"194.35.0.0\/25", + "version":49429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.0.128", + "prefixLen":25, + "network":"194.35.0.128\/25", + "version":49556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.0.128", + "prefixLen":25, + "network":"194.35.0.128\/25", + "version":49556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.1.0", + "prefixLen":25, + "network":"194.35.1.0\/25", + "version":49555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.1.0", + "prefixLen":25, + "network":"194.35.1.0\/25", + "version":49555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.1.128", + "prefixLen":25, + "network":"194.35.1.128\/25", + "version":49554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.1.128", + "prefixLen":25, + "network":"194.35.1.128\/25", + "version":49554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.2.0", + "prefixLen":25, + "network":"194.35.2.0\/25", + "version":49553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.2.0", + "prefixLen":25, + "network":"194.35.2.0\/25", + "version":49553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.2.128", + "prefixLen":25, + "network":"194.35.2.128\/25", + "version":49552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.2.128", + "prefixLen":25, + "network":"194.35.2.128\/25", + "version":49552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.3.0", + "prefixLen":25, + "network":"194.35.3.0\/25", + "version":49551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.3.0", + "prefixLen":25, + "network":"194.35.3.0\/25", + "version":49551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.3.128", + "prefixLen":25, + "network":"194.35.3.128\/25", + "version":49550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.3.128", + "prefixLen":25, + "network":"194.35.3.128\/25", + "version":49550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.16.0", + "prefixLen":25, + "network":"194.35.16.0\/25", + "version":49549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.16.0", + "prefixLen":25, + "network":"194.35.16.0\/25", + "version":49549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.16.128", + "prefixLen":25, + "network":"194.35.16.128\/25", + "version":49548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.16.128", + "prefixLen":25, + "network":"194.35.16.128\/25", + "version":49548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.17.0", + "prefixLen":25, + "network":"194.35.17.0\/25", + "version":49547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.17.0", + "prefixLen":25, + "network":"194.35.17.0\/25", + "version":49547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.17.128", + "prefixLen":25, + "network":"194.35.17.128\/25", + "version":49546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.17.128", + "prefixLen":25, + "network":"194.35.17.128\/25", + "version":49546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.18.0", + "prefixLen":25, + "network":"194.35.18.0\/25", + "version":49545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.18.0", + "prefixLen":25, + "network":"194.35.18.0\/25", + "version":49545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.18.128", + "prefixLen":25, + "network":"194.35.18.128\/25", + "version":49544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.18.128", + "prefixLen":25, + "network":"194.35.18.128\/25", + "version":49544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.19.0", + "prefixLen":25, + "network":"194.35.19.0\/25", + "version":49543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.19.0", + "prefixLen":25, + "network":"194.35.19.0\/25", + "version":49543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.19.128", + "prefixLen":25, + "network":"194.35.19.128\/25", + "version":49542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.19.128", + "prefixLen":25, + "network":"194.35.19.128\/25", + "version":49542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.32.0", + "prefixLen":25, + "network":"194.35.32.0\/25", + "version":49541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.32.0", + "prefixLen":25, + "network":"194.35.32.0\/25", + "version":49541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.32.128", + "prefixLen":25, + "network":"194.35.32.128\/25", + "version":49540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.32.128", + "prefixLen":25, + "network":"194.35.32.128\/25", + "version":49540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.33.0", + "prefixLen":25, + "network":"194.35.33.0\/25", + "version":49539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.33.0", + "prefixLen":25, + "network":"194.35.33.0\/25", + "version":49539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.33.128", + "prefixLen":25, + "network":"194.35.33.128\/25", + "version":49538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.33.128", + "prefixLen":25, + "network":"194.35.33.128\/25", + "version":49538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.34.0", + "prefixLen":25, + "network":"194.35.34.0\/25", + "version":49537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.34.0", + "prefixLen":25, + "network":"194.35.34.0\/25", + "version":49537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.34.128", + "prefixLen":25, + "network":"194.35.34.128\/25", + "version":49536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.34.128", + "prefixLen":25, + "network":"194.35.34.128\/25", + "version":49536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.35.0", + "prefixLen":25, + "network":"194.35.35.0\/25", + "version":49535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.35.0", + "prefixLen":25, + "network":"194.35.35.0\/25", + "version":49535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.35.128", + "prefixLen":25, + "network":"194.35.35.128\/25", + "version":49534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.35.128", + "prefixLen":25, + "network":"194.35.35.128\/25", + "version":49534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.48.0", + "prefixLen":25, + "network":"194.35.48.0\/25", + "version":49533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.48.0", + "prefixLen":25, + "network":"194.35.48.0\/25", + "version":49533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.48.128", + "prefixLen":25, + "network":"194.35.48.128\/25", + "version":49532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.48.128", + "prefixLen":25, + "network":"194.35.48.128\/25", + "version":49532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.49.0", + "prefixLen":25, + "network":"194.35.49.0\/25", + "version":49531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.49.0", + "prefixLen":25, + "network":"194.35.49.0\/25", + "version":49531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.49.128", + "prefixLen":25, + "network":"194.35.49.128\/25", + "version":49530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.49.128", + "prefixLen":25, + "network":"194.35.49.128\/25", + "version":49530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.50.0", + "prefixLen":25, + "network":"194.35.50.0\/25", + "version":49529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.50.0", + "prefixLen":25, + "network":"194.35.50.0\/25", + "version":49529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.50.128", + "prefixLen":25, + "network":"194.35.50.128\/25", + "version":49528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.50.128", + "prefixLen":25, + "network":"194.35.50.128\/25", + "version":49528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.51.0", + "prefixLen":25, + "network":"194.35.51.0\/25", + "version":49527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.51.0", + "prefixLen":25, + "network":"194.35.51.0\/25", + "version":49527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.51.128", + "prefixLen":25, + "network":"194.35.51.128\/25", + "version":49526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.51.128", + "prefixLen":25, + "network":"194.35.51.128\/25", + "version":49526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.64.0", + "prefixLen":25, + "network":"194.35.64.0\/25", + "version":49525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.64.0", + "prefixLen":25, + "network":"194.35.64.0\/25", + "version":49525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.64.128", + "prefixLen":25, + "network":"194.35.64.128\/25", + "version":49524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.64.128", + "prefixLen":25, + "network":"194.35.64.128\/25", + "version":49524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.65.0", + "prefixLen":25, + "network":"194.35.65.0\/25", + "version":49523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.65.0", + "prefixLen":25, + "network":"194.35.65.0\/25", + "version":49523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.65.128", + "prefixLen":25, + "network":"194.35.65.128\/25", + "version":49522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.65.128", + "prefixLen":25, + "network":"194.35.65.128\/25", + "version":49522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.66.0", + "prefixLen":25, + "network":"194.35.66.0\/25", + "version":49521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.66.0", + "prefixLen":25, + "network":"194.35.66.0\/25", + "version":49521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.66.128", + "prefixLen":25, + "network":"194.35.66.128\/25", + "version":49520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.66.128", + "prefixLen":25, + "network":"194.35.66.128\/25", + "version":49520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.67.0", + "prefixLen":25, + "network":"194.35.67.0\/25", + "version":49519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.67.0", + "prefixLen":25, + "network":"194.35.67.0\/25", + "version":49519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.67.128", + "prefixLen":25, + "network":"194.35.67.128\/25", + "version":49518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.67.128", + "prefixLen":25, + "network":"194.35.67.128\/25", + "version":49518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.80.0", + "prefixLen":25, + "network":"194.35.80.0\/25", + "version":49517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.80.0", + "prefixLen":25, + "network":"194.35.80.0\/25", + "version":49517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.80.128", + "prefixLen":25, + "network":"194.35.80.128\/25", + "version":49516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.80.128", + "prefixLen":25, + "network":"194.35.80.128\/25", + "version":49516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.81.0", + "prefixLen":25, + "network":"194.35.81.0\/25", + "version":49515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.81.0", + "prefixLen":25, + "network":"194.35.81.0\/25", + "version":49515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.81.128", + "prefixLen":25, + "network":"194.35.81.128\/25", + "version":49514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.81.128", + "prefixLen":25, + "network":"194.35.81.128\/25", + "version":49514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.82.0", + "prefixLen":25, + "network":"194.35.82.0\/25", + "version":49513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.82.0", + "prefixLen":25, + "network":"194.35.82.0\/25", + "version":49513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.82.128", + "prefixLen":25, + "network":"194.35.82.128\/25", + "version":49512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.82.128", + "prefixLen":25, + "network":"194.35.82.128\/25", + "version":49512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.83.0", + "prefixLen":25, + "network":"194.35.83.0\/25", + "version":49511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.83.0", + "prefixLen":25, + "network":"194.35.83.0\/25", + "version":49511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.83.128", + "prefixLen":25, + "network":"194.35.83.128\/25", + "version":49510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.83.128", + "prefixLen":25, + "network":"194.35.83.128\/25", + "version":49510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.96.0", + "prefixLen":25, + "network":"194.35.96.0\/25", + "version":49509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.96.0", + "prefixLen":25, + "network":"194.35.96.0\/25", + "version":49509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.96.128", + "prefixLen":25, + "network":"194.35.96.128\/25", + "version":49508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.96.128", + "prefixLen":25, + "network":"194.35.96.128\/25", + "version":49508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.97.0", + "prefixLen":25, + "network":"194.35.97.0\/25", + "version":49507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.97.0", + "prefixLen":25, + "network":"194.35.97.0\/25", + "version":49507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.97.128", + "prefixLen":25, + "network":"194.35.97.128\/25", + "version":49506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.97.128", + "prefixLen":25, + "network":"194.35.97.128\/25", + "version":49506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.98.0", + "prefixLen":25, + "network":"194.35.98.0\/25", + "version":49505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.98.0", + "prefixLen":25, + "network":"194.35.98.0\/25", + "version":49505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.98.128", + "prefixLen":25, + "network":"194.35.98.128\/25", + "version":49504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.98.128", + "prefixLen":25, + "network":"194.35.98.128\/25", + "version":49504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.99.0", + "prefixLen":25, + "network":"194.35.99.0\/25", + "version":49503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.99.0", + "prefixLen":25, + "network":"194.35.99.0\/25", + "version":49503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.99.128", + "prefixLen":25, + "network":"194.35.99.128\/25", + "version":49502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.99.128", + "prefixLen":25, + "network":"194.35.99.128\/25", + "version":49502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.112.0", + "prefixLen":25, + "network":"194.35.112.0\/25", + "version":49501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.112.0", + "prefixLen":25, + "network":"194.35.112.0\/25", + "version":49501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.112.128", + "prefixLen":25, + "network":"194.35.112.128\/25", + "version":49500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.112.128", + "prefixLen":25, + "network":"194.35.112.128\/25", + "version":49500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.113.0", + "prefixLen":25, + "network":"194.35.113.0\/25", + "version":49499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.113.0", + "prefixLen":25, + "network":"194.35.113.0\/25", + "version":49499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.113.128", + "prefixLen":25, + "network":"194.35.113.128\/25", + "version":49498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.113.128", + "prefixLen":25, + "network":"194.35.113.128\/25", + "version":49498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.114.0", + "prefixLen":25, + "network":"194.35.114.0\/25", + "version":49497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.114.0", + "prefixLen":25, + "network":"194.35.114.0\/25", + "version":49497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.114.128", + "prefixLen":25, + "network":"194.35.114.128\/25", + "version":49496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.114.128", + "prefixLen":25, + "network":"194.35.114.128\/25", + "version":49496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.115.0", + "prefixLen":25, + "network":"194.35.115.0\/25", + "version":49495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.115.0", + "prefixLen":25, + "network":"194.35.115.0\/25", + "version":49495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.115.128", + "prefixLen":25, + "network":"194.35.115.128\/25", + "version":49494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.115.128", + "prefixLen":25, + "network":"194.35.115.128\/25", + "version":49494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.128.0", + "prefixLen":25, + "network":"194.35.128.0\/25", + "version":49493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.128.0", + "prefixLen":25, + "network":"194.35.128.0\/25", + "version":49493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.128.128", + "prefixLen":25, + "network":"194.35.128.128\/25", + "version":49492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.128.128", + "prefixLen":25, + "network":"194.35.128.128\/25", + "version":49492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.129.0", + "prefixLen":25, + "network":"194.35.129.0\/25", + "version":49491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.129.0", + "prefixLen":25, + "network":"194.35.129.0\/25", + "version":49491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.129.128", + "prefixLen":25, + "network":"194.35.129.128\/25", + "version":49490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.129.128", + "prefixLen":25, + "network":"194.35.129.128\/25", + "version":49490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.130.0", + "prefixLen":25, + "network":"194.35.130.0\/25", + "version":49489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.130.0", + "prefixLen":25, + "network":"194.35.130.0\/25", + "version":49489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.130.128", + "prefixLen":25, + "network":"194.35.130.128\/25", + "version":49488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.130.128", + "prefixLen":25, + "network":"194.35.130.128\/25", + "version":49488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.131.0", + "prefixLen":25, + "network":"194.35.131.0\/25", + "version":49487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.131.0", + "prefixLen":25, + "network":"194.35.131.0\/25", + "version":49487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.131.128", + "prefixLen":25, + "network":"194.35.131.128\/25", + "version":49486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.131.128", + "prefixLen":25, + "network":"194.35.131.128\/25", + "version":49486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.144.0", + "prefixLen":25, + "network":"194.35.144.0\/25", + "version":49485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.144.0", + "prefixLen":25, + "network":"194.35.144.0\/25", + "version":49485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.144.128", + "prefixLen":25, + "network":"194.35.144.128\/25", + "version":49484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.144.128", + "prefixLen":25, + "network":"194.35.144.128\/25", + "version":49484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.145.0", + "prefixLen":25, + "network":"194.35.145.0\/25", + "version":49483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.145.0", + "prefixLen":25, + "network":"194.35.145.0\/25", + "version":49483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.145.128", + "prefixLen":25, + "network":"194.35.145.128\/25", + "version":49482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.145.128", + "prefixLen":25, + "network":"194.35.145.128\/25", + "version":49482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.146.0", + "prefixLen":25, + "network":"194.35.146.0\/25", + "version":49481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.146.0", + "prefixLen":25, + "network":"194.35.146.0\/25", + "version":49481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.146.128", + "prefixLen":25, + "network":"194.35.146.128\/25", + "version":49480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.146.128", + "prefixLen":25, + "network":"194.35.146.128\/25", + "version":49480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.147.0", + "prefixLen":25, + "network":"194.35.147.0\/25", + "version":49479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.147.0", + "prefixLen":25, + "network":"194.35.147.0\/25", + "version":49479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.147.128", + "prefixLen":25, + "network":"194.35.147.128\/25", + "version":49478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.147.128", + "prefixLen":25, + "network":"194.35.147.128\/25", + "version":49478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.160.0", + "prefixLen":25, + "network":"194.35.160.0\/25", + "version":49477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.160.0", + "prefixLen":25, + "network":"194.35.160.0\/25", + "version":49477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.160.128", + "prefixLen":25, + "network":"194.35.160.128\/25", + "version":49476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.160.128", + "prefixLen":25, + "network":"194.35.160.128\/25", + "version":49476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.161.0", + "prefixLen":25, + "network":"194.35.161.0\/25", + "version":49475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.161.0", + "prefixLen":25, + "network":"194.35.161.0\/25", + "version":49475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.161.128", + "prefixLen":25, + "network":"194.35.161.128\/25", + "version":49474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.161.128", + "prefixLen":25, + "network":"194.35.161.128\/25", + "version":49474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.162.0", + "prefixLen":25, + "network":"194.35.162.0\/25", + "version":49473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.162.0", + "prefixLen":25, + "network":"194.35.162.0\/25", + "version":49473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.162.128", + "prefixLen":25, + "network":"194.35.162.128\/25", + "version":49472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.162.128", + "prefixLen":25, + "network":"194.35.162.128\/25", + "version":49472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.163.0", + "prefixLen":25, + "network":"194.35.163.0\/25", + "version":49471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.163.0", + "prefixLen":25, + "network":"194.35.163.0\/25", + "version":49471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.163.128", + "prefixLen":25, + "network":"194.35.163.128\/25", + "version":49470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.163.128", + "prefixLen":25, + "network":"194.35.163.128\/25", + "version":49470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.176.0", + "prefixLen":25, + "network":"194.35.176.0\/25", + "version":49469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.176.0", + "prefixLen":25, + "network":"194.35.176.0\/25", + "version":49469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.176.128", + "prefixLen":25, + "network":"194.35.176.128\/25", + "version":49468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.176.128", + "prefixLen":25, + "network":"194.35.176.128\/25", + "version":49468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.177.0", + "prefixLen":25, + "network":"194.35.177.0\/25", + "version":49467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.177.0", + "prefixLen":25, + "network":"194.35.177.0\/25", + "version":49467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.177.128", + "prefixLen":25, + "network":"194.35.177.128\/25", + "version":49466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.177.128", + "prefixLen":25, + "network":"194.35.177.128\/25", + "version":49466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.178.0", + "prefixLen":25, + "network":"194.35.178.0\/25", + "version":49465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.178.0", + "prefixLen":25, + "network":"194.35.178.0\/25", + "version":49465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.178.128", + "prefixLen":25, + "network":"194.35.178.128\/25", + "version":49464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.178.128", + "prefixLen":25, + "network":"194.35.178.128\/25", + "version":49464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.179.0", + "prefixLen":25, + "network":"194.35.179.0\/25", + "version":49463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.179.0", + "prefixLen":25, + "network":"194.35.179.0\/25", + "version":49463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.179.128", + "prefixLen":25, + "network":"194.35.179.128\/25", + "version":49462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.179.128", + "prefixLen":25, + "network":"194.35.179.128\/25", + "version":49462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.192.0", + "prefixLen":25, + "network":"194.35.192.0\/25", + "version":49461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.192.0", + "prefixLen":25, + "network":"194.35.192.0\/25", + "version":49461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.192.128", + "prefixLen":25, + "network":"194.35.192.128\/25", + "version":49460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.192.128", + "prefixLen":25, + "network":"194.35.192.128\/25", + "version":49460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.193.0", + "prefixLen":25, + "network":"194.35.193.0\/25", + "version":49459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.193.0", + "prefixLen":25, + "network":"194.35.193.0\/25", + "version":49459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.193.128", + "prefixLen":25, + "network":"194.35.193.128\/25", + "version":49458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.193.128", + "prefixLen":25, + "network":"194.35.193.128\/25", + "version":49458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.194.0", + "prefixLen":25, + "network":"194.35.194.0\/25", + "version":49457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.194.0", + "prefixLen":25, + "network":"194.35.194.0\/25", + "version":49457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.194.128", + "prefixLen":25, + "network":"194.35.194.128\/25", + "version":49456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.194.128", + "prefixLen":25, + "network":"194.35.194.128\/25", + "version":49456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.195.0", + "prefixLen":25, + "network":"194.35.195.0\/25", + "version":49455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.195.0", + "prefixLen":25, + "network":"194.35.195.0\/25", + "version":49455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.195.128", + "prefixLen":25, + "network":"194.35.195.128\/25", + "version":49454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.195.128", + "prefixLen":25, + "network":"194.35.195.128\/25", + "version":49454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.208.0", + "prefixLen":25, + "network":"194.35.208.0\/25", + "version":49453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.208.0", + "prefixLen":25, + "network":"194.35.208.0\/25", + "version":49453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.208.128", + "prefixLen":25, + "network":"194.35.208.128\/25", + "version":49452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.208.128", + "prefixLen":25, + "network":"194.35.208.128\/25", + "version":49452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.209.0", + "prefixLen":25, + "network":"194.35.209.0\/25", + "version":49451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.209.0", + "prefixLen":25, + "network":"194.35.209.0\/25", + "version":49451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.209.128", + "prefixLen":25, + "network":"194.35.209.128\/25", + "version":49450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.209.128", + "prefixLen":25, + "network":"194.35.209.128\/25", + "version":49450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.210.0", + "prefixLen":25, + "network":"194.35.210.0\/25", + "version":49449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.210.0", + "prefixLen":25, + "network":"194.35.210.0\/25", + "version":49449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.210.128", + "prefixLen":25, + "network":"194.35.210.128\/25", + "version":49448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.210.128", + "prefixLen":25, + "network":"194.35.210.128\/25", + "version":49448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.211.0", + "prefixLen":25, + "network":"194.35.211.0\/25", + "version":49447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.211.0", + "prefixLen":25, + "network":"194.35.211.0\/25", + "version":49447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.211.128", + "prefixLen":25, + "network":"194.35.211.128\/25", + "version":49446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.211.128", + "prefixLen":25, + "network":"194.35.211.128\/25", + "version":49446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.224.0", + "prefixLen":25, + "network":"194.35.224.0\/25", + "version":49445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.224.0", + "prefixLen":25, + "network":"194.35.224.0\/25", + "version":49445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.224.128", + "prefixLen":25, + "network":"194.35.224.128\/25", + "version":49444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.224.128", + "prefixLen":25, + "network":"194.35.224.128\/25", + "version":49444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.225.0", + "prefixLen":25, + "network":"194.35.225.0\/25", + "version":49443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.225.0", + "prefixLen":25, + "network":"194.35.225.0\/25", + "version":49443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.225.128", + "prefixLen":25, + "network":"194.35.225.128\/25", + "version":49442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.225.128", + "prefixLen":25, + "network":"194.35.225.128\/25", + "version":49442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.226.0", + "prefixLen":25, + "network":"194.35.226.0\/25", + "version":49441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.226.0", + "prefixLen":25, + "network":"194.35.226.0\/25", + "version":49441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.226.128", + "prefixLen":25, + "network":"194.35.226.128\/25", + "version":49440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.226.128", + "prefixLen":25, + "network":"194.35.226.128\/25", + "version":49440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.227.0", + "prefixLen":25, + "network":"194.35.227.0\/25", + "version":49439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.227.0", + "prefixLen":25, + "network":"194.35.227.0\/25", + "version":49439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.227.128", + "prefixLen":25, + "network":"194.35.227.128\/25", + "version":49438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.227.128", + "prefixLen":25, + "network":"194.35.227.128\/25", + "version":49438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.240.0", + "prefixLen":25, + "network":"194.35.240.0\/25", + "version":49437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.240.0", + "prefixLen":25, + "network":"194.35.240.0\/25", + "version":49437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.240.128", + "prefixLen":25, + "network":"194.35.240.128\/25", + "version":49436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.240.128", + "prefixLen":25, + "network":"194.35.240.128\/25", + "version":49436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.241.0", + "prefixLen":25, + "network":"194.35.241.0\/25", + "version":49435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.241.0", + "prefixLen":25, + "network":"194.35.241.0\/25", + "version":49435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.241.128", + "prefixLen":25, + "network":"194.35.241.128\/25", + "version":49434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.241.128", + "prefixLen":25, + "network":"194.35.241.128\/25", + "version":49434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.242.0", + "prefixLen":25, + "network":"194.35.242.0\/25", + "version":49433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.242.0", + "prefixLen":25, + "network":"194.35.242.0\/25", + "version":49433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.242.128", + "prefixLen":25, + "network":"194.35.242.128\/25", + "version":49432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.242.128", + "prefixLen":25, + "network":"194.35.242.128\/25", + "version":49432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.243.0", + "prefixLen":25, + "network":"194.35.243.0\/25", + "version":49431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.243.0", + "prefixLen":25, + "network":"194.35.243.0\/25", + "version":49431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.35.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.35.243.128", + "prefixLen":25, + "network":"194.35.243.128\/25", + "version":49430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.35.243.128", + "prefixLen":25, + "network":"194.35.243.128\/25", + "version":49430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64979 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.0.0", + "prefixLen":25, + "network":"194.36.0.0\/25", + "version":49557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.0.0", + "prefixLen":25, + "network":"194.36.0.0\/25", + "version":49557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.0.128", + "prefixLen":25, + "network":"194.36.0.128\/25", + "version":49684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.0.128", + "prefixLen":25, + "network":"194.36.0.128\/25", + "version":49684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.1.0", + "prefixLen":25, + "network":"194.36.1.0\/25", + "version":49683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.1.0", + "prefixLen":25, + "network":"194.36.1.0\/25", + "version":49683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.1.128", + "prefixLen":25, + "network":"194.36.1.128\/25", + "version":49682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.1.128", + "prefixLen":25, + "network":"194.36.1.128\/25", + "version":49682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.2.0", + "prefixLen":25, + "network":"194.36.2.0\/25", + "version":49681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.2.0", + "prefixLen":25, + "network":"194.36.2.0\/25", + "version":49681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.2.128", + "prefixLen":25, + "network":"194.36.2.128\/25", + "version":49680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.2.128", + "prefixLen":25, + "network":"194.36.2.128\/25", + "version":49680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.3.0", + "prefixLen":25, + "network":"194.36.3.0\/25", + "version":49679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.3.0", + "prefixLen":25, + "network":"194.36.3.0\/25", + "version":49679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.3.128", + "prefixLen":25, + "network":"194.36.3.128\/25", + "version":49678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.3.128", + "prefixLen":25, + "network":"194.36.3.128\/25", + "version":49678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.16.0", + "prefixLen":25, + "network":"194.36.16.0\/25", + "version":49677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.16.0", + "prefixLen":25, + "network":"194.36.16.0\/25", + "version":49677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.16.128", + "prefixLen":25, + "network":"194.36.16.128\/25", + "version":49676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.16.128", + "prefixLen":25, + "network":"194.36.16.128\/25", + "version":49676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.17.0", + "prefixLen":25, + "network":"194.36.17.0\/25", + "version":49675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.17.0", + "prefixLen":25, + "network":"194.36.17.0\/25", + "version":49675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.17.128", + "prefixLen":25, + "network":"194.36.17.128\/25", + "version":49674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.17.128", + "prefixLen":25, + "network":"194.36.17.128\/25", + "version":49674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.18.0", + "prefixLen":25, + "network":"194.36.18.0\/25", + "version":49673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.18.0", + "prefixLen":25, + "network":"194.36.18.0\/25", + "version":49673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.18.128", + "prefixLen":25, + "network":"194.36.18.128\/25", + "version":49672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.18.128", + "prefixLen":25, + "network":"194.36.18.128\/25", + "version":49672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.19.0", + "prefixLen":25, + "network":"194.36.19.0\/25", + "version":49671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.19.0", + "prefixLen":25, + "network":"194.36.19.0\/25", + "version":49671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.19.128", + "prefixLen":25, + "network":"194.36.19.128\/25", + "version":49670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.19.128", + "prefixLen":25, + "network":"194.36.19.128\/25", + "version":49670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.32.0", + "prefixLen":25, + "network":"194.36.32.0\/25", + "version":49669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.32.0", + "prefixLen":25, + "network":"194.36.32.0\/25", + "version":49669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.32.128", + "prefixLen":25, + "network":"194.36.32.128\/25", + "version":49668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.32.128", + "prefixLen":25, + "network":"194.36.32.128\/25", + "version":49668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.33.0", + "prefixLen":25, + "network":"194.36.33.0\/25", + "version":49667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.33.0", + "prefixLen":25, + "network":"194.36.33.0\/25", + "version":49667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.33.128", + "prefixLen":25, + "network":"194.36.33.128\/25", + "version":49666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.33.128", + "prefixLen":25, + "network":"194.36.33.128\/25", + "version":49666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.34.0", + "prefixLen":25, + "network":"194.36.34.0\/25", + "version":49665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.34.0", + "prefixLen":25, + "network":"194.36.34.0\/25", + "version":49665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.34.128", + "prefixLen":25, + "network":"194.36.34.128\/25", + "version":49664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.34.128", + "prefixLen":25, + "network":"194.36.34.128\/25", + "version":49664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.35.0", + "prefixLen":25, + "network":"194.36.35.0\/25", + "version":49663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.35.0", + "prefixLen":25, + "network":"194.36.35.0\/25", + "version":49663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.35.128", + "prefixLen":25, + "network":"194.36.35.128\/25", + "version":49662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.35.128", + "prefixLen":25, + "network":"194.36.35.128\/25", + "version":49662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.48.0", + "prefixLen":25, + "network":"194.36.48.0\/25", + "version":49661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.48.0", + "prefixLen":25, + "network":"194.36.48.0\/25", + "version":49661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.48.128", + "prefixLen":25, + "network":"194.36.48.128\/25", + "version":49660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.48.128", + "prefixLen":25, + "network":"194.36.48.128\/25", + "version":49660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.49.0", + "prefixLen":25, + "network":"194.36.49.0\/25", + "version":49659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.49.0", + "prefixLen":25, + "network":"194.36.49.0\/25", + "version":49659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.49.128", + "prefixLen":25, + "network":"194.36.49.128\/25", + "version":49658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.49.128", + "prefixLen":25, + "network":"194.36.49.128\/25", + "version":49658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.50.0", + "prefixLen":25, + "network":"194.36.50.0\/25", + "version":49657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.50.0", + "prefixLen":25, + "network":"194.36.50.0\/25", + "version":49657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.50.128", + "prefixLen":25, + "network":"194.36.50.128\/25", + "version":49656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.50.128", + "prefixLen":25, + "network":"194.36.50.128\/25", + "version":49656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.51.0", + "prefixLen":25, + "network":"194.36.51.0\/25", + "version":49655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.51.0", + "prefixLen":25, + "network":"194.36.51.0\/25", + "version":49655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.51.128", + "prefixLen":25, + "network":"194.36.51.128\/25", + "version":49654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.51.128", + "prefixLen":25, + "network":"194.36.51.128\/25", + "version":49654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.64.0", + "prefixLen":25, + "network":"194.36.64.0\/25", + "version":49653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.64.0", + "prefixLen":25, + "network":"194.36.64.0\/25", + "version":49653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.64.128", + "prefixLen":25, + "network":"194.36.64.128\/25", + "version":49652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.64.128", + "prefixLen":25, + "network":"194.36.64.128\/25", + "version":49652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.65.0", + "prefixLen":25, + "network":"194.36.65.0\/25", + "version":49651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.65.0", + "prefixLen":25, + "network":"194.36.65.0\/25", + "version":49651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.65.128", + "prefixLen":25, + "network":"194.36.65.128\/25", + "version":49650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.65.128", + "prefixLen":25, + "network":"194.36.65.128\/25", + "version":49650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.66.0", + "prefixLen":25, + "network":"194.36.66.0\/25", + "version":49649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.66.0", + "prefixLen":25, + "network":"194.36.66.0\/25", + "version":49649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.66.128", + "prefixLen":25, + "network":"194.36.66.128\/25", + "version":49648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.66.128", + "prefixLen":25, + "network":"194.36.66.128\/25", + "version":49648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.67.0", + "prefixLen":25, + "network":"194.36.67.0\/25", + "version":49647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.67.0", + "prefixLen":25, + "network":"194.36.67.0\/25", + "version":49647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.67.128", + "prefixLen":25, + "network":"194.36.67.128\/25", + "version":49646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.67.128", + "prefixLen":25, + "network":"194.36.67.128\/25", + "version":49646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.80.0", + "prefixLen":25, + "network":"194.36.80.0\/25", + "version":49645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.80.0", + "prefixLen":25, + "network":"194.36.80.0\/25", + "version":49645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.80.128", + "prefixLen":25, + "network":"194.36.80.128\/25", + "version":49644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.80.128", + "prefixLen":25, + "network":"194.36.80.128\/25", + "version":49644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.81.0", + "prefixLen":25, + "network":"194.36.81.0\/25", + "version":49643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.81.0", + "prefixLen":25, + "network":"194.36.81.0\/25", + "version":49643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.81.128", + "prefixLen":25, + "network":"194.36.81.128\/25", + "version":49642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.81.128", + "prefixLen":25, + "network":"194.36.81.128\/25", + "version":49642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.82.0", + "prefixLen":25, + "network":"194.36.82.0\/25", + "version":49641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.82.0", + "prefixLen":25, + "network":"194.36.82.0\/25", + "version":49641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.82.128", + "prefixLen":25, + "network":"194.36.82.128\/25", + "version":49640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.82.128", + "prefixLen":25, + "network":"194.36.82.128\/25", + "version":49640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.83.0", + "prefixLen":25, + "network":"194.36.83.0\/25", + "version":49639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.83.0", + "prefixLen":25, + "network":"194.36.83.0\/25", + "version":49639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.83.128", + "prefixLen":25, + "network":"194.36.83.128\/25", + "version":49638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.83.128", + "prefixLen":25, + "network":"194.36.83.128\/25", + "version":49638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.96.0", + "prefixLen":25, + "network":"194.36.96.0\/25", + "version":49637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.96.0", + "prefixLen":25, + "network":"194.36.96.0\/25", + "version":49637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.96.128", + "prefixLen":25, + "network":"194.36.96.128\/25", + "version":49636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.96.128", + "prefixLen":25, + "network":"194.36.96.128\/25", + "version":49636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.97.0", + "prefixLen":25, + "network":"194.36.97.0\/25", + "version":49635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.97.0", + "prefixLen":25, + "network":"194.36.97.0\/25", + "version":49635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.97.128", + "prefixLen":25, + "network":"194.36.97.128\/25", + "version":49634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.97.128", + "prefixLen":25, + "network":"194.36.97.128\/25", + "version":49634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.98.0", + "prefixLen":25, + "network":"194.36.98.0\/25", + "version":49633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.98.0", + "prefixLen":25, + "network":"194.36.98.0\/25", + "version":49633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.98.128", + "prefixLen":25, + "network":"194.36.98.128\/25", + "version":49632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.98.128", + "prefixLen":25, + "network":"194.36.98.128\/25", + "version":49632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.99.0", + "prefixLen":25, + "network":"194.36.99.0\/25", + "version":49631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.99.0", + "prefixLen":25, + "network":"194.36.99.0\/25", + "version":49631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.99.128", + "prefixLen":25, + "network":"194.36.99.128\/25", + "version":49630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.99.128", + "prefixLen":25, + "network":"194.36.99.128\/25", + "version":49630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.112.0", + "prefixLen":25, + "network":"194.36.112.0\/25", + "version":49629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.112.0", + "prefixLen":25, + "network":"194.36.112.0\/25", + "version":49629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.112.128", + "prefixLen":25, + "network":"194.36.112.128\/25", + "version":49628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.112.128", + "prefixLen":25, + "network":"194.36.112.128\/25", + "version":49628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.113.0", + "prefixLen":25, + "network":"194.36.113.0\/25", + "version":49627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.113.0", + "prefixLen":25, + "network":"194.36.113.0\/25", + "version":49627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.113.128", + "prefixLen":25, + "network":"194.36.113.128\/25", + "version":49626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.113.128", + "prefixLen":25, + "network":"194.36.113.128\/25", + "version":49626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.114.0", + "prefixLen":25, + "network":"194.36.114.0\/25", + "version":49625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.114.0", + "prefixLen":25, + "network":"194.36.114.0\/25", + "version":49625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.114.128", + "prefixLen":25, + "network":"194.36.114.128\/25", + "version":49624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.114.128", + "prefixLen":25, + "network":"194.36.114.128\/25", + "version":49624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.115.0", + "prefixLen":25, + "network":"194.36.115.0\/25", + "version":49623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.115.0", + "prefixLen":25, + "network":"194.36.115.0\/25", + "version":49623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.115.128", + "prefixLen":25, + "network":"194.36.115.128\/25", + "version":49622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.115.128", + "prefixLen":25, + "network":"194.36.115.128\/25", + "version":49622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.128.0", + "prefixLen":25, + "network":"194.36.128.0\/25", + "version":49621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.128.0", + "prefixLen":25, + "network":"194.36.128.0\/25", + "version":49621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.128.128", + "prefixLen":25, + "network":"194.36.128.128\/25", + "version":49620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.128.128", + "prefixLen":25, + "network":"194.36.128.128\/25", + "version":49620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.129.0", + "prefixLen":25, + "network":"194.36.129.0\/25", + "version":49619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.129.0", + "prefixLen":25, + "network":"194.36.129.0\/25", + "version":49619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.129.128", + "prefixLen":25, + "network":"194.36.129.128\/25", + "version":49618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.129.128", + "prefixLen":25, + "network":"194.36.129.128\/25", + "version":49618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.130.0", + "prefixLen":25, + "network":"194.36.130.0\/25", + "version":49617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.130.0", + "prefixLen":25, + "network":"194.36.130.0\/25", + "version":49617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.130.128", + "prefixLen":25, + "network":"194.36.130.128\/25", + "version":49616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.130.128", + "prefixLen":25, + "network":"194.36.130.128\/25", + "version":49616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.131.0", + "prefixLen":25, + "network":"194.36.131.0\/25", + "version":49615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.131.0", + "prefixLen":25, + "network":"194.36.131.0\/25", + "version":49615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.131.128", + "prefixLen":25, + "network":"194.36.131.128\/25", + "version":49614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.131.128", + "prefixLen":25, + "network":"194.36.131.128\/25", + "version":49614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.144.0", + "prefixLen":25, + "network":"194.36.144.0\/25", + "version":49613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.144.0", + "prefixLen":25, + "network":"194.36.144.0\/25", + "version":49613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.144.128", + "prefixLen":25, + "network":"194.36.144.128\/25", + "version":49612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.144.128", + "prefixLen":25, + "network":"194.36.144.128\/25", + "version":49612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.145.0", + "prefixLen":25, + "network":"194.36.145.0\/25", + "version":49611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.145.0", + "prefixLen":25, + "network":"194.36.145.0\/25", + "version":49611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.145.128", + "prefixLen":25, + "network":"194.36.145.128\/25", + "version":49610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.145.128", + "prefixLen":25, + "network":"194.36.145.128\/25", + "version":49610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.146.0", + "prefixLen":25, + "network":"194.36.146.0\/25", + "version":49609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.146.0", + "prefixLen":25, + "network":"194.36.146.0\/25", + "version":49609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.146.128", + "prefixLen":25, + "network":"194.36.146.128\/25", + "version":49608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.146.128", + "prefixLen":25, + "network":"194.36.146.128\/25", + "version":49608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.147.0", + "prefixLen":25, + "network":"194.36.147.0\/25", + "version":49607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.147.0", + "prefixLen":25, + "network":"194.36.147.0\/25", + "version":49607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.147.128", + "prefixLen":25, + "network":"194.36.147.128\/25", + "version":49606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.147.128", + "prefixLen":25, + "network":"194.36.147.128\/25", + "version":49606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.160.0", + "prefixLen":25, + "network":"194.36.160.0\/25", + "version":49605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.160.0", + "prefixLen":25, + "network":"194.36.160.0\/25", + "version":49605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.160.128", + "prefixLen":25, + "network":"194.36.160.128\/25", + "version":49604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.160.128", + "prefixLen":25, + "network":"194.36.160.128\/25", + "version":49604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.161.0", + "prefixLen":25, + "network":"194.36.161.0\/25", + "version":49603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.161.0", + "prefixLen":25, + "network":"194.36.161.0\/25", + "version":49603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.161.128", + "prefixLen":25, + "network":"194.36.161.128\/25", + "version":49602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.161.128", + "prefixLen":25, + "network":"194.36.161.128\/25", + "version":49602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.162.0", + "prefixLen":25, + "network":"194.36.162.0\/25", + "version":49601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.162.0", + "prefixLen":25, + "network":"194.36.162.0\/25", + "version":49601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.162.128", + "prefixLen":25, + "network":"194.36.162.128\/25", + "version":49600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.162.128", + "prefixLen":25, + "network":"194.36.162.128\/25", + "version":49600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.163.0", + "prefixLen":25, + "network":"194.36.163.0\/25", + "version":49599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.163.0", + "prefixLen":25, + "network":"194.36.163.0\/25", + "version":49599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.163.128", + "prefixLen":25, + "network":"194.36.163.128\/25", + "version":49598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.163.128", + "prefixLen":25, + "network":"194.36.163.128\/25", + "version":49598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.176.0", + "prefixLen":25, + "network":"194.36.176.0\/25", + "version":49597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.176.0", + "prefixLen":25, + "network":"194.36.176.0\/25", + "version":49597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.176.128", + "prefixLen":25, + "network":"194.36.176.128\/25", + "version":49596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.176.128", + "prefixLen":25, + "network":"194.36.176.128\/25", + "version":49596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.177.0", + "prefixLen":25, + "network":"194.36.177.0\/25", + "version":49595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.177.0", + "prefixLen":25, + "network":"194.36.177.0\/25", + "version":49595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.177.128", + "prefixLen":25, + "network":"194.36.177.128\/25", + "version":49594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.177.128", + "prefixLen":25, + "network":"194.36.177.128\/25", + "version":49594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.178.0", + "prefixLen":25, + "network":"194.36.178.0\/25", + "version":49593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.178.0", + "prefixLen":25, + "network":"194.36.178.0\/25", + "version":49593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.178.128", + "prefixLen":25, + "network":"194.36.178.128\/25", + "version":49592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.178.128", + "prefixLen":25, + "network":"194.36.178.128\/25", + "version":49592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.179.0", + "prefixLen":25, + "network":"194.36.179.0\/25", + "version":49591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.179.0", + "prefixLen":25, + "network":"194.36.179.0\/25", + "version":49591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.179.128", + "prefixLen":25, + "network":"194.36.179.128\/25", + "version":49590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.179.128", + "prefixLen":25, + "network":"194.36.179.128\/25", + "version":49590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.192.0", + "prefixLen":25, + "network":"194.36.192.0\/25", + "version":49589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.192.0", + "prefixLen":25, + "network":"194.36.192.0\/25", + "version":49589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.192.128", + "prefixLen":25, + "network":"194.36.192.128\/25", + "version":49588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.192.128", + "prefixLen":25, + "network":"194.36.192.128\/25", + "version":49588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.193.0", + "prefixLen":25, + "network":"194.36.193.0\/25", + "version":49587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.193.0", + "prefixLen":25, + "network":"194.36.193.0\/25", + "version":49587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.193.128", + "prefixLen":25, + "network":"194.36.193.128\/25", + "version":49586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.193.128", + "prefixLen":25, + "network":"194.36.193.128\/25", + "version":49586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.194.0", + "prefixLen":25, + "network":"194.36.194.0\/25", + "version":49585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.194.0", + "prefixLen":25, + "network":"194.36.194.0\/25", + "version":49585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.194.128", + "prefixLen":25, + "network":"194.36.194.128\/25", + "version":49584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.194.128", + "prefixLen":25, + "network":"194.36.194.128\/25", + "version":49584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.195.0", + "prefixLen":25, + "network":"194.36.195.0\/25", + "version":49583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.195.0", + "prefixLen":25, + "network":"194.36.195.0\/25", + "version":49583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.195.128", + "prefixLen":25, + "network":"194.36.195.128\/25", + "version":49582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.195.128", + "prefixLen":25, + "network":"194.36.195.128\/25", + "version":49582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.208.0", + "prefixLen":25, + "network":"194.36.208.0\/25", + "version":49581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.208.0", + "prefixLen":25, + "network":"194.36.208.0\/25", + "version":49581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.208.128", + "prefixLen":25, + "network":"194.36.208.128\/25", + "version":49580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.208.128", + "prefixLen":25, + "network":"194.36.208.128\/25", + "version":49580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.209.0", + "prefixLen":25, + "network":"194.36.209.0\/25", + "version":49579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.209.0", + "prefixLen":25, + "network":"194.36.209.0\/25", + "version":49579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.209.128", + "prefixLen":25, + "network":"194.36.209.128\/25", + "version":49578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.209.128", + "prefixLen":25, + "network":"194.36.209.128\/25", + "version":49578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.210.0", + "prefixLen":25, + "network":"194.36.210.0\/25", + "version":49577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.210.0", + "prefixLen":25, + "network":"194.36.210.0\/25", + "version":49577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.210.128", + "prefixLen":25, + "network":"194.36.210.128\/25", + "version":49576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.210.128", + "prefixLen":25, + "network":"194.36.210.128\/25", + "version":49576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.211.0", + "prefixLen":25, + "network":"194.36.211.0\/25", + "version":49575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.211.0", + "prefixLen":25, + "network":"194.36.211.0\/25", + "version":49575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.211.128", + "prefixLen":25, + "network":"194.36.211.128\/25", + "version":49574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.211.128", + "prefixLen":25, + "network":"194.36.211.128\/25", + "version":49574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.224.0", + "prefixLen":25, + "network":"194.36.224.0\/25", + "version":49573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.224.0", + "prefixLen":25, + "network":"194.36.224.0\/25", + "version":49573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.224.128", + "prefixLen":25, + "network":"194.36.224.128\/25", + "version":49572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.224.128", + "prefixLen":25, + "network":"194.36.224.128\/25", + "version":49572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.225.0", + "prefixLen":25, + "network":"194.36.225.0\/25", + "version":49571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.225.0", + "prefixLen":25, + "network":"194.36.225.0\/25", + "version":49571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.225.128", + "prefixLen":25, + "network":"194.36.225.128\/25", + "version":49570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.225.128", + "prefixLen":25, + "network":"194.36.225.128\/25", + "version":49570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.226.0", + "prefixLen":25, + "network":"194.36.226.0\/25", + "version":49569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.226.0", + "prefixLen":25, + "network":"194.36.226.0\/25", + "version":49569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.226.128", + "prefixLen":25, + "network":"194.36.226.128\/25", + "version":49568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.226.128", + "prefixLen":25, + "network":"194.36.226.128\/25", + "version":49568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.227.0", + "prefixLen":25, + "network":"194.36.227.0\/25", + "version":49567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.227.0", + "prefixLen":25, + "network":"194.36.227.0\/25", + "version":49567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.227.128", + "prefixLen":25, + "network":"194.36.227.128\/25", + "version":49566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.227.128", + "prefixLen":25, + "network":"194.36.227.128\/25", + "version":49566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.240.0", + "prefixLen":25, + "network":"194.36.240.0\/25", + "version":49565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.240.0", + "prefixLen":25, + "network":"194.36.240.0\/25", + "version":49565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.240.128", + "prefixLen":25, + "network":"194.36.240.128\/25", + "version":49564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.240.128", + "prefixLen":25, + "network":"194.36.240.128\/25", + "version":49564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.241.0", + "prefixLen":25, + "network":"194.36.241.0\/25", + "version":49563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.241.0", + "prefixLen":25, + "network":"194.36.241.0\/25", + "version":49563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.241.128", + "prefixLen":25, + "network":"194.36.241.128\/25", + "version":49562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.241.128", + "prefixLen":25, + "network":"194.36.241.128\/25", + "version":49562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.242.0", + "prefixLen":25, + "network":"194.36.242.0\/25", + "version":49561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.242.0", + "prefixLen":25, + "network":"194.36.242.0\/25", + "version":49561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.242.128", + "prefixLen":25, + "network":"194.36.242.128\/25", + "version":49560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.242.128", + "prefixLen":25, + "network":"194.36.242.128\/25", + "version":49560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.243.0", + "prefixLen":25, + "network":"194.36.243.0\/25", + "version":49559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.243.0", + "prefixLen":25, + "network":"194.36.243.0\/25", + "version":49559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.36.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.36.243.128", + "prefixLen":25, + "network":"194.36.243.128\/25", + "version":49558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.36.243.128", + "prefixLen":25, + "network":"194.36.243.128\/25", + "version":49558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64980 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.0.0", + "prefixLen":25, + "network":"194.37.0.0\/25", + "version":49685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.0.0", + "prefixLen":25, + "network":"194.37.0.0\/25", + "version":49685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.0.128", + "prefixLen":25, + "network":"194.37.0.128\/25", + "version":49812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.0.128", + "prefixLen":25, + "network":"194.37.0.128\/25", + "version":49812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.1.0", + "prefixLen":25, + "network":"194.37.1.0\/25", + "version":49811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.1.0", + "prefixLen":25, + "network":"194.37.1.0\/25", + "version":49811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.1.128", + "prefixLen":25, + "network":"194.37.1.128\/25", + "version":49810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.1.128", + "prefixLen":25, + "network":"194.37.1.128\/25", + "version":49810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.2.0", + "prefixLen":25, + "network":"194.37.2.0\/25", + "version":49809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.2.0", + "prefixLen":25, + "network":"194.37.2.0\/25", + "version":49809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.2.128", + "prefixLen":25, + "network":"194.37.2.128\/25", + "version":49808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.2.128", + "prefixLen":25, + "network":"194.37.2.128\/25", + "version":49808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.3.0", + "prefixLen":25, + "network":"194.37.3.0\/25", + "version":49807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.3.0", + "prefixLen":25, + "network":"194.37.3.0\/25", + "version":49807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.3.128", + "prefixLen":25, + "network":"194.37.3.128\/25", + "version":49806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.3.128", + "prefixLen":25, + "network":"194.37.3.128\/25", + "version":49806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.16.0", + "prefixLen":25, + "network":"194.37.16.0\/25", + "version":49805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.16.0", + "prefixLen":25, + "network":"194.37.16.0\/25", + "version":49805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.16.128", + "prefixLen":25, + "network":"194.37.16.128\/25", + "version":49804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.16.128", + "prefixLen":25, + "network":"194.37.16.128\/25", + "version":49804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.17.0", + "prefixLen":25, + "network":"194.37.17.0\/25", + "version":49803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.17.0", + "prefixLen":25, + "network":"194.37.17.0\/25", + "version":49803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.17.128", + "prefixLen":25, + "network":"194.37.17.128\/25", + "version":49802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.17.128", + "prefixLen":25, + "network":"194.37.17.128\/25", + "version":49802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.18.0", + "prefixLen":25, + "network":"194.37.18.0\/25", + "version":49801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.18.0", + "prefixLen":25, + "network":"194.37.18.0\/25", + "version":49801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.18.128", + "prefixLen":25, + "network":"194.37.18.128\/25", + "version":49800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.18.128", + "prefixLen":25, + "network":"194.37.18.128\/25", + "version":49800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.19.0", + "prefixLen":25, + "network":"194.37.19.0\/25", + "version":49799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.19.0", + "prefixLen":25, + "network":"194.37.19.0\/25", + "version":49799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.19.128", + "prefixLen":25, + "network":"194.37.19.128\/25", + "version":49798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.19.128", + "prefixLen":25, + "network":"194.37.19.128\/25", + "version":49798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.32.0", + "prefixLen":25, + "network":"194.37.32.0\/25", + "version":49797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.32.0", + "prefixLen":25, + "network":"194.37.32.0\/25", + "version":49797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.32.128", + "prefixLen":25, + "network":"194.37.32.128\/25", + "version":49796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.32.128", + "prefixLen":25, + "network":"194.37.32.128\/25", + "version":49796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.33.0", + "prefixLen":25, + "network":"194.37.33.0\/25", + "version":49795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.33.0", + "prefixLen":25, + "network":"194.37.33.0\/25", + "version":49795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.33.128", + "prefixLen":25, + "network":"194.37.33.128\/25", + "version":49794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.33.128", + "prefixLen":25, + "network":"194.37.33.128\/25", + "version":49794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.34.0", + "prefixLen":25, + "network":"194.37.34.0\/25", + "version":49793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.34.0", + "prefixLen":25, + "network":"194.37.34.0\/25", + "version":49793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.34.128", + "prefixLen":25, + "network":"194.37.34.128\/25", + "version":49792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.34.128", + "prefixLen":25, + "network":"194.37.34.128\/25", + "version":49792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.35.0", + "prefixLen":25, + "network":"194.37.35.0\/25", + "version":49791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.35.0", + "prefixLen":25, + "network":"194.37.35.0\/25", + "version":49791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.35.128", + "prefixLen":25, + "network":"194.37.35.128\/25", + "version":49790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.35.128", + "prefixLen":25, + "network":"194.37.35.128\/25", + "version":49790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.48.0", + "prefixLen":25, + "network":"194.37.48.0\/25", + "version":49789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.48.0", + "prefixLen":25, + "network":"194.37.48.0\/25", + "version":49789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.48.128", + "prefixLen":25, + "network":"194.37.48.128\/25", + "version":49788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.48.128", + "prefixLen":25, + "network":"194.37.48.128\/25", + "version":49788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.49.0", + "prefixLen":25, + "network":"194.37.49.0\/25", + "version":49787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.49.0", + "prefixLen":25, + "network":"194.37.49.0\/25", + "version":49787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.49.128", + "prefixLen":25, + "network":"194.37.49.128\/25", + "version":49786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.49.128", + "prefixLen":25, + "network":"194.37.49.128\/25", + "version":49786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.50.0", + "prefixLen":25, + "network":"194.37.50.0\/25", + "version":49785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.50.0", + "prefixLen":25, + "network":"194.37.50.0\/25", + "version":49785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.50.128", + "prefixLen":25, + "network":"194.37.50.128\/25", + "version":49784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.50.128", + "prefixLen":25, + "network":"194.37.50.128\/25", + "version":49784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.51.0", + "prefixLen":25, + "network":"194.37.51.0\/25", + "version":49783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.51.0", + "prefixLen":25, + "network":"194.37.51.0\/25", + "version":49783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.51.128", + "prefixLen":25, + "network":"194.37.51.128\/25", + "version":49782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.51.128", + "prefixLen":25, + "network":"194.37.51.128\/25", + "version":49782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.64.0", + "prefixLen":25, + "network":"194.37.64.0\/25", + "version":49781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.64.0", + "prefixLen":25, + "network":"194.37.64.0\/25", + "version":49781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.64.128", + "prefixLen":25, + "network":"194.37.64.128\/25", + "version":49780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.64.128", + "prefixLen":25, + "network":"194.37.64.128\/25", + "version":49780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.65.0", + "prefixLen":25, + "network":"194.37.65.0\/25", + "version":49779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.65.0", + "prefixLen":25, + "network":"194.37.65.0\/25", + "version":49779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.65.128", + "prefixLen":25, + "network":"194.37.65.128\/25", + "version":49778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.65.128", + "prefixLen":25, + "network":"194.37.65.128\/25", + "version":49778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.66.0", + "prefixLen":25, + "network":"194.37.66.0\/25", + "version":49777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.66.0", + "prefixLen":25, + "network":"194.37.66.0\/25", + "version":49777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.66.128", + "prefixLen":25, + "network":"194.37.66.128\/25", + "version":49776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.66.128", + "prefixLen":25, + "network":"194.37.66.128\/25", + "version":49776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.67.0", + "prefixLen":25, + "network":"194.37.67.0\/25", + "version":49775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.67.0", + "prefixLen":25, + "network":"194.37.67.0\/25", + "version":49775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.67.128", + "prefixLen":25, + "network":"194.37.67.128\/25", + "version":49774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.67.128", + "prefixLen":25, + "network":"194.37.67.128\/25", + "version":49774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.80.0", + "prefixLen":25, + "network":"194.37.80.0\/25", + "version":49773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.80.0", + "prefixLen":25, + "network":"194.37.80.0\/25", + "version":49773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.80.128", + "prefixLen":25, + "network":"194.37.80.128\/25", + "version":49772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.80.128", + "prefixLen":25, + "network":"194.37.80.128\/25", + "version":49772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.81.0", + "prefixLen":25, + "network":"194.37.81.0\/25", + "version":49771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.81.0", + "prefixLen":25, + "network":"194.37.81.0\/25", + "version":49771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.81.128", + "prefixLen":25, + "network":"194.37.81.128\/25", + "version":49770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.81.128", + "prefixLen":25, + "network":"194.37.81.128\/25", + "version":49770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.82.0", + "prefixLen":25, + "network":"194.37.82.0\/25", + "version":49769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.82.0", + "prefixLen":25, + "network":"194.37.82.0\/25", + "version":49769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.82.128", + "prefixLen":25, + "network":"194.37.82.128\/25", + "version":49768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.82.128", + "prefixLen":25, + "network":"194.37.82.128\/25", + "version":49768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.83.0", + "prefixLen":25, + "network":"194.37.83.0\/25", + "version":49767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.83.0", + "prefixLen":25, + "network":"194.37.83.0\/25", + "version":49767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.83.128", + "prefixLen":25, + "network":"194.37.83.128\/25", + "version":49766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.83.128", + "prefixLen":25, + "network":"194.37.83.128\/25", + "version":49766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.96.0", + "prefixLen":25, + "network":"194.37.96.0\/25", + "version":49765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.96.0", + "prefixLen":25, + "network":"194.37.96.0\/25", + "version":49765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.96.128", + "prefixLen":25, + "network":"194.37.96.128\/25", + "version":49764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.96.128", + "prefixLen":25, + "network":"194.37.96.128\/25", + "version":49764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.97.0", + "prefixLen":25, + "network":"194.37.97.0\/25", + "version":49763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.97.0", + "prefixLen":25, + "network":"194.37.97.0\/25", + "version":49763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.97.128", + "prefixLen":25, + "network":"194.37.97.128\/25", + "version":49762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.97.128", + "prefixLen":25, + "network":"194.37.97.128\/25", + "version":49762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.98.0", + "prefixLen":25, + "network":"194.37.98.0\/25", + "version":49761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.98.0", + "prefixLen":25, + "network":"194.37.98.0\/25", + "version":49761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.98.128", + "prefixLen":25, + "network":"194.37.98.128\/25", + "version":49760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.98.128", + "prefixLen":25, + "network":"194.37.98.128\/25", + "version":49760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.99.0", + "prefixLen":25, + "network":"194.37.99.0\/25", + "version":49759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.99.0", + "prefixLen":25, + "network":"194.37.99.0\/25", + "version":49759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.99.128", + "prefixLen":25, + "network":"194.37.99.128\/25", + "version":49758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.99.128", + "prefixLen":25, + "network":"194.37.99.128\/25", + "version":49758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.112.0", + "prefixLen":25, + "network":"194.37.112.0\/25", + "version":49757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.112.0", + "prefixLen":25, + "network":"194.37.112.0\/25", + "version":49757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.112.128", + "prefixLen":25, + "network":"194.37.112.128\/25", + "version":49756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.112.128", + "prefixLen":25, + "network":"194.37.112.128\/25", + "version":49756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.113.0", + "prefixLen":25, + "network":"194.37.113.0\/25", + "version":49755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.113.0", + "prefixLen":25, + "network":"194.37.113.0\/25", + "version":49755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.113.128", + "prefixLen":25, + "network":"194.37.113.128\/25", + "version":49754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.113.128", + "prefixLen":25, + "network":"194.37.113.128\/25", + "version":49754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.114.0", + "prefixLen":25, + "network":"194.37.114.0\/25", + "version":49753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.114.0", + "prefixLen":25, + "network":"194.37.114.0\/25", + "version":49753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.114.128", + "prefixLen":25, + "network":"194.37.114.128\/25", + "version":49752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.114.128", + "prefixLen":25, + "network":"194.37.114.128\/25", + "version":49752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.115.0", + "prefixLen":25, + "network":"194.37.115.0\/25", + "version":49751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.115.0", + "prefixLen":25, + "network":"194.37.115.0\/25", + "version":49751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.115.128", + "prefixLen":25, + "network":"194.37.115.128\/25", + "version":49750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.115.128", + "prefixLen":25, + "network":"194.37.115.128\/25", + "version":49750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.128.0", + "prefixLen":25, + "network":"194.37.128.0\/25", + "version":49749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.128.0", + "prefixLen":25, + "network":"194.37.128.0\/25", + "version":49749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.128.128", + "prefixLen":25, + "network":"194.37.128.128\/25", + "version":49748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.128.128", + "prefixLen":25, + "network":"194.37.128.128\/25", + "version":49748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.129.0", + "prefixLen":25, + "network":"194.37.129.0\/25", + "version":49747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.129.0", + "prefixLen":25, + "network":"194.37.129.0\/25", + "version":49747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.129.128", + "prefixLen":25, + "network":"194.37.129.128\/25", + "version":49746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.129.128", + "prefixLen":25, + "network":"194.37.129.128\/25", + "version":49746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.130.0", + "prefixLen":25, + "network":"194.37.130.0\/25", + "version":49745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.130.0", + "prefixLen":25, + "network":"194.37.130.0\/25", + "version":49745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.130.128", + "prefixLen":25, + "network":"194.37.130.128\/25", + "version":49744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.130.128", + "prefixLen":25, + "network":"194.37.130.128\/25", + "version":49744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.131.0", + "prefixLen":25, + "network":"194.37.131.0\/25", + "version":49743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.131.0", + "prefixLen":25, + "network":"194.37.131.0\/25", + "version":49743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.131.128", + "prefixLen":25, + "network":"194.37.131.128\/25", + "version":49742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.131.128", + "prefixLen":25, + "network":"194.37.131.128\/25", + "version":49742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.144.0", + "prefixLen":25, + "network":"194.37.144.0\/25", + "version":49741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.144.0", + "prefixLen":25, + "network":"194.37.144.0\/25", + "version":49741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.144.128", + "prefixLen":25, + "network":"194.37.144.128\/25", + "version":49740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.144.128", + "prefixLen":25, + "network":"194.37.144.128\/25", + "version":49740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.145.0", + "prefixLen":25, + "network":"194.37.145.0\/25", + "version":49739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.145.0", + "prefixLen":25, + "network":"194.37.145.0\/25", + "version":49739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.145.128", + "prefixLen":25, + "network":"194.37.145.128\/25", + "version":49738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.145.128", + "prefixLen":25, + "network":"194.37.145.128\/25", + "version":49738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.146.0", + "prefixLen":25, + "network":"194.37.146.0\/25", + "version":49737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.146.0", + "prefixLen":25, + "network":"194.37.146.0\/25", + "version":49737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.146.128", + "prefixLen":25, + "network":"194.37.146.128\/25", + "version":49736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.146.128", + "prefixLen":25, + "network":"194.37.146.128\/25", + "version":49736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.147.0", + "prefixLen":25, + "network":"194.37.147.0\/25", + "version":49735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.147.0", + "prefixLen":25, + "network":"194.37.147.0\/25", + "version":49735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.147.128", + "prefixLen":25, + "network":"194.37.147.128\/25", + "version":49734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.147.128", + "prefixLen":25, + "network":"194.37.147.128\/25", + "version":49734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.160.0", + "prefixLen":25, + "network":"194.37.160.0\/25", + "version":49733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.160.0", + "prefixLen":25, + "network":"194.37.160.0\/25", + "version":49733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.160.128", + "prefixLen":25, + "network":"194.37.160.128\/25", + "version":49732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.160.128", + "prefixLen":25, + "network":"194.37.160.128\/25", + "version":49732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.161.0", + "prefixLen":25, + "network":"194.37.161.0\/25", + "version":49731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.161.0", + "prefixLen":25, + "network":"194.37.161.0\/25", + "version":49731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.161.128", + "prefixLen":25, + "network":"194.37.161.128\/25", + "version":49730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.161.128", + "prefixLen":25, + "network":"194.37.161.128\/25", + "version":49730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.162.0", + "prefixLen":25, + "network":"194.37.162.0\/25", + "version":49729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.162.0", + "prefixLen":25, + "network":"194.37.162.0\/25", + "version":49729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.162.128", + "prefixLen":25, + "network":"194.37.162.128\/25", + "version":49728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.162.128", + "prefixLen":25, + "network":"194.37.162.128\/25", + "version":49728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.163.0", + "prefixLen":25, + "network":"194.37.163.0\/25", + "version":49727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.163.0", + "prefixLen":25, + "network":"194.37.163.0\/25", + "version":49727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.163.128", + "prefixLen":25, + "network":"194.37.163.128\/25", + "version":49726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.163.128", + "prefixLen":25, + "network":"194.37.163.128\/25", + "version":49726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.176.0", + "prefixLen":25, + "network":"194.37.176.0\/25", + "version":49725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.176.0", + "prefixLen":25, + "network":"194.37.176.0\/25", + "version":49725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.176.128", + "prefixLen":25, + "network":"194.37.176.128\/25", + "version":49724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.176.128", + "prefixLen":25, + "network":"194.37.176.128\/25", + "version":49724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.177.0", + "prefixLen":25, + "network":"194.37.177.0\/25", + "version":49723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.177.0", + "prefixLen":25, + "network":"194.37.177.0\/25", + "version":49723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.177.128", + "prefixLen":25, + "network":"194.37.177.128\/25", + "version":49722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.177.128", + "prefixLen":25, + "network":"194.37.177.128\/25", + "version":49722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.178.0", + "prefixLen":25, + "network":"194.37.178.0\/25", + "version":49721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.178.0", + "prefixLen":25, + "network":"194.37.178.0\/25", + "version":49721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.178.128", + "prefixLen":25, + "network":"194.37.178.128\/25", + "version":49720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.178.128", + "prefixLen":25, + "network":"194.37.178.128\/25", + "version":49720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.179.0", + "prefixLen":25, + "network":"194.37.179.0\/25", + "version":49719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.179.0", + "prefixLen":25, + "network":"194.37.179.0\/25", + "version":49719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.179.128", + "prefixLen":25, + "network":"194.37.179.128\/25", + "version":49718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.179.128", + "prefixLen":25, + "network":"194.37.179.128\/25", + "version":49718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.192.0", + "prefixLen":25, + "network":"194.37.192.0\/25", + "version":49717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.192.0", + "prefixLen":25, + "network":"194.37.192.0\/25", + "version":49717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.192.128", + "prefixLen":25, + "network":"194.37.192.128\/25", + "version":49716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.192.128", + "prefixLen":25, + "network":"194.37.192.128\/25", + "version":49716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.193.0", + "prefixLen":25, + "network":"194.37.193.0\/25", + "version":49715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.193.0", + "prefixLen":25, + "network":"194.37.193.0\/25", + "version":49715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.193.128", + "prefixLen":25, + "network":"194.37.193.128\/25", + "version":49714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.193.128", + "prefixLen":25, + "network":"194.37.193.128\/25", + "version":49714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.194.0", + "prefixLen":25, + "network":"194.37.194.0\/25", + "version":49713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.194.0", + "prefixLen":25, + "network":"194.37.194.0\/25", + "version":49713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.194.128", + "prefixLen":25, + "network":"194.37.194.128\/25", + "version":49712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.194.128", + "prefixLen":25, + "network":"194.37.194.128\/25", + "version":49712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.195.0", + "prefixLen":25, + "network":"194.37.195.0\/25", + "version":49711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.195.0", + "prefixLen":25, + "network":"194.37.195.0\/25", + "version":49711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.195.128", + "prefixLen":25, + "network":"194.37.195.128\/25", + "version":49710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.195.128", + "prefixLen":25, + "network":"194.37.195.128\/25", + "version":49710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.208.0", + "prefixLen":25, + "network":"194.37.208.0\/25", + "version":49709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.208.0", + "prefixLen":25, + "network":"194.37.208.0\/25", + "version":49709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.208.128", + "prefixLen":25, + "network":"194.37.208.128\/25", + "version":49708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.208.128", + "prefixLen":25, + "network":"194.37.208.128\/25", + "version":49708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.209.0", + "prefixLen":25, + "network":"194.37.209.0\/25", + "version":49707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.209.0", + "prefixLen":25, + "network":"194.37.209.0\/25", + "version":49707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.209.128", + "prefixLen":25, + "network":"194.37.209.128\/25", + "version":49706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.209.128", + "prefixLen":25, + "network":"194.37.209.128\/25", + "version":49706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.210.0", + "prefixLen":25, + "network":"194.37.210.0\/25", + "version":49705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.210.0", + "prefixLen":25, + "network":"194.37.210.0\/25", + "version":49705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.210.128", + "prefixLen":25, + "network":"194.37.210.128\/25", + "version":49704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.210.128", + "prefixLen":25, + "network":"194.37.210.128\/25", + "version":49704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.211.0", + "prefixLen":25, + "network":"194.37.211.0\/25", + "version":49703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.211.0", + "prefixLen":25, + "network":"194.37.211.0\/25", + "version":49703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.211.128", + "prefixLen":25, + "network":"194.37.211.128\/25", + "version":49702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.211.128", + "prefixLen":25, + "network":"194.37.211.128\/25", + "version":49702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.224.0", + "prefixLen":25, + "network":"194.37.224.0\/25", + "version":49701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.224.0", + "prefixLen":25, + "network":"194.37.224.0\/25", + "version":49701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.224.128", + "prefixLen":25, + "network":"194.37.224.128\/25", + "version":49700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.224.128", + "prefixLen":25, + "network":"194.37.224.128\/25", + "version":49700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.225.0", + "prefixLen":25, + "network":"194.37.225.0\/25", + "version":49699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.225.0", + "prefixLen":25, + "network":"194.37.225.0\/25", + "version":49699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.225.128", + "prefixLen":25, + "network":"194.37.225.128\/25", + "version":49698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.225.128", + "prefixLen":25, + "network":"194.37.225.128\/25", + "version":49698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.226.0", + "prefixLen":25, + "network":"194.37.226.0\/25", + "version":49697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.226.0", + "prefixLen":25, + "network":"194.37.226.0\/25", + "version":49697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.226.128", + "prefixLen":25, + "network":"194.37.226.128\/25", + "version":49696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.226.128", + "prefixLen":25, + "network":"194.37.226.128\/25", + "version":49696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.227.0", + "prefixLen":25, + "network":"194.37.227.0\/25", + "version":49695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.227.0", + "prefixLen":25, + "network":"194.37.227.0\/25", + "version":49695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.227.128", + "prefixLen":25, + "network":"194.37.227.128\/25", + "version":49694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.227.128", + "prefixLen":25, + "network":"194.37.227.128\/25", + "version":49694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.240.0", + "prefixLen":25, + "network":"194.37.240.0\/25", + "version":49693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.240.0", + "prefixLen":25, + "network":"194.37.240.0\/25", + "version":49693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.240.128", + "prefixLen":25, + "network":"194.37.240.128\/25", + "version":49692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.240.128", + "prefixLen":25, + "network":"194.37.240.128\/25", + "version":49692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.241.0", + "prefixLen":25, + "network":"194.37.241.0\/25", + "version":49691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.241.0", + "prefixLen":25, + "network":"194.37.241.0\/25", + "version":49691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.241.128", + "prefixLen":25, + "network":"194.37.241.128\/25", + "version":49690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.241.128", + "prefixLen":25, + "network":"194.37.241.128\/25", + "version":49690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.242.0", + "prefixLen":25, + "network":"194.37.242.0\/25", + "version":49689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.242.0", + "prefixLen":25, + "network":"194.37.242.0\/25", + "version":49689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.242.128", + "prefixLen":25, + "network":"194.37.242.128\/25", + "version":49688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.242.128", + "prefixLen":25, + "network":"194.37.242.128\/25", + "version":49688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.243.0", + "prefixLen":25, + "network":"194.37.243.0\/25", + "version":49687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.243.0", + "prefixLen":25, + "network":"194.37.243.0\/25", + "version":49687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.37.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.37.243.128", + "prefixLen":25, + "network":"194.37.243.128\/25", + "version":49686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.37.243.128", + "prefixLen":25, + "network":"194.37.243.128\/25", + "version":49686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64981 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.0.0", + "prefixLen":25, + "network":"194.38.0.0\/25", + "version":49813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.0.0", + "prefixLen":25, + "network":"194.38.0.0\/25", + "version":49813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.0.128", + "prefixLen":25, + "network":"194.38.0.128\/25", + "version":49940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.0.128", + "prefixLen":25, + "network":"194.38.0.128\/25", + "version":49940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.1.0", + "prefixLen":25, + "network":"194.38.1.0\/25", + "version":49939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.1.0", + "prefixLen":25, + "network":"194.38.1.0\/25", + "version":49939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.1.128", + "prefixLen":25, + "network":"194.38.1.128\/25", + "version":49938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.1.128", + "prefixLen":25, + "network":"194.38.1.128\/25", + "version":49938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.2.0", + "prefixLen":25, + "network":"194.38.2.0\/25", + "version":49937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.2.0", + "prefixLen":25, + "network":"194.38.2.0\/25", + "version":49937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.2.128", + "prefixLen":25, + "network":"194.38.2.128\/25", + "version":49936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.2.128", + "prefixLen":25, + "network":"194.38.2.128\/25", + "version":49936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.3.0", + "prefixLen":25, + "network":"194.38.3.0\/25", + "version":49935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.3.0", + "prefixLen":25, + "network":"194.38.3.0\/25", + "version":49935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.3.128", + "prefixLen":25, + "network":"194.38.3.128\/25", + "version":49934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.3.128", + "prefixLen":25, + "network":"194.38.3.128\/25", + "version":49934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.16.0", + "prefixLen":25, + "network":"194.38.16.0\/25", + "version":49933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.16.0", + "prefixLen":25, + "network":"194.38.16.0\/25", + "version":49933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.16.128", + "prefixLen":25, + "network":"194.38.16.128\/25", + "version":49932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.16.128", + "prefixLen":25, + "network":"194.38.16.128\/25", + "version":49932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.17.0", + "prefixLen":25, + "network":"194.38.17.0\/25", + "version":49931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.17.0", + "prefixLen":25, + "network":"194.38.17.0\/25", + "version":49931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.17.128", + "prefixLen":25, + "network":"194.38.17.128\/25", + "version":49930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.17.128", + "prefixLen":25, + "network":"194.38.17.128\/25", + "version":49930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.18.0", + "prefixLen":25, + "network":"194.38.18.0\/25", + "version":49929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.18.0", + "prefixLen":25, + "network":"194.38.18.0\/25", + "version":49929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.18.128", + "prefixLen":25, + "network":"194.38.18.128\/25", + "version":49928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.18.128", + "prefixLen":25, + "network":"194.38.18.128\/25", + "version":49928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.19.0", + "prefixLen":25, + "network":"194.38.19.0\/25", + "version":49927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.19.0", + "prefixLen":25, + "network":"194.38.19.0\/25", + "version":49927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.19.128", + "prefixLen":25, + "network":"194.38.19.128\/25", + "version":49926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.19.128", + "prefixLen":25, + "network":"194.38.19.128\/25", + "version":49926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.32.0", + "prefixLen":25, + "network":"194.38.32.0\/25", + "version":49925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.32.0", + "prefixLen":25, + "network":"194.38.32.0\/25", + "version":49925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.32.128", + "prefixLen":25, + "network":"194.38.32.128\/25", + "version":49924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.32.128", + "prefixLen":25, + "network":"194.38.32.128\/25", + "version":49924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.33.0", + "prefixLen":25, + "network":"194.38.33.0\/25", + "version":49923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.33.0", + "prefixLen":25, + "network":"194.38.33.0\/25", + "version":49923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.33.128", + "prefixLen":25, + "network":"194.38.33.128\/25", + "version":49922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.33.128", + "prefixLen":25, + "network":"194.38.33.128\/25", + "version":49922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.34.0", + "prefixLen":25, + "network":"194.38.34.0\/25", + "version":49921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.34.0", + "prefixLen":25, + "network":"194.38.34.0\/25", + "version":49921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.34.128", + "prefixLen":25, + "network":"194.38.34.128\/25", + "version":49920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.34.128", + "prefixLen":25, + "network":"194.38.34.128\/25", + "version":49920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.35.0", + "prefixLen":25, + "network":"194.38.35.0\/25", + "version":49919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.35.0", + "prefixLen":25, + "network":"194.38.35.0\/25", + "version":49919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.35.128", + "prefixLen":25, + "network":"194.38.35.128\/25", + "version":49918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.35.128", + "prefixLen":25, + "network":"194.38.35.128\/25", + "version":49918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.48.0", + "prefixLen":25, + "network":"194.38.48.0\/25", + "version":49917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.48.0", + "prefixLen":25, + "network":"194.38.48.0\/25", + "version":49917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.48.128", + "prefixLen":25, + "network":"194.38.48.128\/25", + "version":49916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.48.128", + "prefixLen":25, + "network":"194.38.48.128\/25", + "version":49916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.49.0", + "prefixLen":25, + "network":"194.38.49.0\/25", + "version":49915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.49.0", + "prefixLen":25, + "network":"194.38.49.0\/25", + "version":49915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.49.128", + "prefixLen":25, + "network":"194.38.49.128\/25", + "version":49914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.49.128", + "prefixLen":25, + "network":"194.38.49.128\/25", + "version":49914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.50.0", + "prefixLen":25, + "network":"194.38.50.0\/25", + "version":49913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.50.0", + "prefixLen":25, + "network":"194.38.50.0\/25", + "version":49913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.50.128", + "prefixLen":25, + "network":"194.38.50.128\/25", + "version":49912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.50.128", + "prefixLen":25, + "network":"194.38.50.128\/25", + "version":49912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.51.0", + "prefixLen":25, + "network":"194.38.51.0\/25", + "version":49911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.51.0", + "prefixLen":25, + "network":"194.38.51.0\/25", + "version":49911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.51.128", + "prefixLen":25, + "network":"194.38.51.128\/25", + "version":49910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.51.128", + "prefixLen":25, + "network":"194.38.51.128\/25", + "version":49910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.64.0", + "prefixLen":25, + "network":"194.38.64.0\/25", + "version":49909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.64.0", + "prefixLen":25, + "network":"194.38.64.0\/25", + "version":49909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.64.128", + "prefixLen":25, + "network":"194.38.64.128\/25", + "version":49908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.64.128", + "prefixLen":25, + "network":"194.38.64.128\/25", + "version":49908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.65.0", + "prefixLen":25, + "network":"194.38.65.0\/25", + "version":49907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.65.0", + "prefixLen":25, + "network":"194.38.65.0\/25", + "version":49907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.65.128", + "prefixLen":25, + "network":"194.38.65.128\/25", + "version":49906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.65.128", + "prefixLen":25, + "network":"194.38.65.128\/25", + "version":49906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.66.0", + "prefixLen":25, + "network":"194.38.66.0\/25", + "version":49905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.66.0", + "prefixLen":25, + "network":"194.38.66.0\/25", + "version":49905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.66.128", + "prefixLen":25, + "network":"194.38.66.128\/25", + "version":49904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.66.128", + "prefixLen":25, + "network":"194.38.66.128\/25", + "version":49904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.67.0", + "prefixLen":25, + "network":"194.38.67.0\/25", + "version":49903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.67.0", + "prefixLen":25, + "network":"194.38.67.0\/25", + "version":49903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.67.128", + "prefixLen":25, + "network":"194.38.67.128\/25", + "version":49902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.67.128", + "prefixLen":25, + "network":"194.38.67.128\/25", + "version":49902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.80.0", + "prefixLen":25, + "network":"194.38.80.0\/25", + "version":49901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.80.0", + "prefixLen":25, + "network":"194.38.80.0\/25", + "version":49901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.80.128", + "prefixLen":25, + "network":"194.38.80.128\/25", + "version":49900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.80.128", + "prefixLen":25, + "network":"194.38.80.128\/25", + "version":49900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.81.0", + "prefixLen":25, + "network":"194.38.81.0\/25", + "version":49899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.81.0", + "prefixLen":25, + "network":"194.38.81.0\/25", + "version":49899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.81.128", + "prefixLen":25, + "network":"194.38.81.128\/25", + "version":49898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.81.128", + "prefixLen":25, + "network":"194.38.81.128\/25", + "version":49898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.82.0", + "prefixLen":25, + "network":"194.38.82.0\/25", + "version":49897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.82.0", + "prefixLen":25, + "network":"194.38.82.0\/25", + "version":49897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.82.128", + "prefixLen":25, + "network":"194.38.82.128\/25", + "version":49896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.82.128", + "prefixLen":25, + "network":"194.38.82.128\/25", + "version":49896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.83.0", + "prefixLen":25, + "network":"194.38.83.0\/25", + "version":49895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.83.0", + "prefixLen":25, + "network":"194.38.83.0\/25", + "version":49895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.83.128", + "prefixLen":25, + "network":"194.38.83.128\/25", + "version":49894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.83.128", + "prefixLen":25, + "network":"194.38.83.128\/25", + "version":49894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.96.0", + "prefixLen":25, + "network":"194.38.96.0\/25", + "version":49893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.96.0", + "prefixLen":25, + "network":"194.38.96.0\/25", + "version":49893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.96.128", + "prefixLen":25, + "network":"194.38.96.128\/25", + "version":49892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.96.128", + "prefixLen":25, + "network":"194.38.96.128\/25", + "version":49892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.97.0", + "prefixLen":25, + "network":"194.38.97.0\/25", + "version":49891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.97.0", + "prefixLen":25, + "network":"194.38.97.0\/25", + "version":49891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.97.128", + "prefixLen":25, + "network":"194.38.97.128\/25", + "version":49890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.97.128", + "prefixLen":25, + "network":"194.38.97.128\/25", + "version":49890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.98.0", + "prefixLen":25, + "network":"194.38.98.0\/25", + "version":49889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.98.0", + "prefixLen":25, + "network":"194.38.98.0\/25", + "version":49889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.98.128", + "prefixLen":25, + "network":"194.38.98.128\/25", + "version":49888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.98.128", + "prefixLen":25, + "network":"194.38.98.128\/25", + "version":49888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.99.0", + "prefixLen":25, + "network":"194.38.99.0\/25", + "version":49887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.99.0", + "prefixLen":25, + "network":"194.38.99.0\/25", + "version":49887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.99.128", + "prefixLen":25, + "network":"194.38.99.128\/25", + "version":49886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.99.128", + "prefixLen":25, + "network":"194.38.99.128\/25", + "version":49886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.112.0", + "prefixLen":25, + "network":"194.38.112.0\/25", + "version":49885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.112.0", + "prefixLen":25, + "network":"194.38.112.0\/25", + "version":49885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.112.128", + "prefixLen":25, + "network":"194.38.112.128\/25", + "version":49884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.112.128", + "prefixLen":25, + "network":"194.38.112.128\/25", + "version":49884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.113.0", + "prefixLen":25, + "network":"194.38.113.0\/25", + "version":49883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.113.0", + "prefixLen":25, + "network":"194.38.113.0\/25", + "version":49883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.113.128", + "prefixLen":25, + "network":"194.38.113.128\/25", + "version":49882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.113.128", + "prefixLen":25, + "network":"194.38.113.128\/25", + "version":49882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.114.0", + "prefixLen":25, + "network":"194.38.114.0\/25", + "version":49881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.114.0", + "prefixLen":25, + "network":"194.38.114.0\/25", + "version":49881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.114.128", + "prefixLen":25, + "network":"194.38.114.128\/25", + "version":49880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.114.128", + "prefixLen":25, + "network":"194.38.114.128\/25", + "version":49880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.115.0", + "prefixLen":25, + "network":"194.38.115.0\/25", + "version":49879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.115.0", + "prefixLen":25, + "network":"194.38.115.0\/25", + "version":49879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.115.128", + "prefixLen":25, + "network":"194.38.115.128\/25", + "version":49878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.115.128", + "prefixLen":25, + "network":"194.38.115.128\/25", + "version":49878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.128.0", + "prefixLen":25, + "network":"194.38.128.0\/25", + "version":49877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.128.0", + "prefixLen":25, + "network":"194.38.128.0\/25", + "version":49877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.128.128", + "prefixLen":25, + "network":"194.38.128.128\/25", + "version":49876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.128.128", + "prefixLen":25, + "network":"194.38.128.128\/25", + "version":49876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.129.0", + "prefixLen":25, + "network":"194.38.129.0\/25", + "version":49875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.129.0", + "prefixLen":25, + "network":"194.38.129.0\/25", + "version":49875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.129.128", + "prefixLen":25, + "network":"194.38.129.128\/25", + "version":49874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.129.128", + "prefixLen":25, + "network":"194.38.129.128\/25", + "version":49874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.130.0", + "prefixLen":25, + "network":"194.38.130.0\/25", + "version":49873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.130.0", + "prefixLen":25, + "network":"194.38.130.0\/25", + "version":49873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.130.128", + "prefixLen":25, + "network":"194.38.130.128\/25", + "version":49872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.130.128", + "prefixLen":25, + "network":"194.38.130.128\/25", + "version":49872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.131.0", + "prefixLen":25, + "network":"194.38.131.0\/25", + "version":49871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.131.0", + "prefixLen":25, + "network":"194.38.131.0\/25", + "version":49871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.131.128", + "prefixLen":25, + "network":"194.38.131.128\/25", + "version":49870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.131.128", + "prefixLen":25, + "network":"194.38.131.128\/25", + "version":49870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.144.0", + "prefixLen":25, + "network":"194.38.144.0\/25", + "version":49869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.144.0", + "prefixLen":25, + "network":"194.38.144.0\/25", + "version":49869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.144.128", + "prefixLen":25, + "network":"194.38.144.128\/25", + "version":49868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.144.128", + "prefixLen":25, + "network":"194.38.144.128\/25", + "version":49868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.145.0", + "prefixLen":25, + "network":"194.38.145.0\/25", + "version":49867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.145.0", + "prefixLen":25, + "network":"194.38.145.0\/25", + "version":49867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.145.128", + "prefixLen":25, + "network":"194.38.145.128\/25", + "version":49866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.145.128", + "prefixLen":25, + "network":"194.38.145.128\/25", + "version":49866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.146.0", + "prefixLen":25, + "network":"194.38.146.0\/25", + "version":49865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.146.0", + "prefixLen":25, + "network":"194.38.146.0\/25", + "version":49865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.146.128", + "prefixLen":25, + "network":"194.38.146.128\/25", + "version":49864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.146.128", + "prefixLen":25, + "network":"194.38.146.128\/25", + "version":49864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.147.0", + "prefixLen":25, + "network":"194.38.147.0\/25", + "version":49863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.147.0", + "prefixLen":25, + "network":"194.38.147.0\/25", + "version":49863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.147.128", + "prefixLen":25, + "network":"194.38.147.128\/25", + "version":49862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.147.128", + "prefixLen":25, + "network":"194.38.147.128\/25", + "version":49862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.160.0", + "prefixLen":25, + "network":"194.38.160.0\/25", + "version":49861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.160.0", + "prefixLen":25, + "network":"194.38.160.0\/25", + "version":49861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.160.128", + "prefixLen":25, + "network":"194.38.160.128\/25", + "version":49860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.160.128", + "prefixLen":25, + "network":"194.38.160.128\/25", + "version":49860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.161.0", + "prefixLen":25, + "network":"194.38.161.0\/25", + "version":49859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.161.0", + "prefixLen":25, + "network":"194.38.161.0\/25", + "version":49859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.161.128", + "prefixLen":25, + "network":"194.38.161.128\/25", + "version":49858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.161.128", + "prefixLen":25, + "network":"194.38.161.128\/25", + "version":49858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.162.0", + "prefixLen":25, + "network":"194.38.162.0\/25", + "version":49857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.162.0", + "prefixLen":25, + "network":"194.38.162.0\/25", + "version":49857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.162.128", + "prefixLen":25, + "network":"194.38.162.128\/25", + "version":49856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.162.128", + "prefixLen":25, + "network":"194.38.162.128\/25", + "version":49856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.163.0", + "prefixLen":25, + "network":"194.38.163.0\/25", + "version":49855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.163.0", + "prefixLen":25, + "network":"194.38.163.0\/25", + "version":49855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.163.128", + "prefixLen":25, + "network":"194.38.163.128\/25", + "version":49854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.163.128", + "prefixLen":25, + "network":"194.38.163.128\/25", + "version":49854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.176.0", + "prefixLen":25, + "network":"194.38.176.0\/25", + "version":49853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.176.0", + "prefixLen":25, + "network":"194.38.176.0\/25", + "version":49853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.176.128", + "prefixLen":25, + "network":"194.38.176.128\/25", + "version":49852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.176.128", + "prefixLen":25, + "network":"194.38.176.128\/25", + "version":49852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.177.0", + "prefixLen":25, + "network":"194.38.177.0\/25", + "version":49851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.177.0", + "prefixLen":25, + "network":"194.38.177.0\/25", + "version":49851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.177.128", + "prefixLen":25, + "network":"194.38.177.128\/25", + "version":49850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.177.128", + "prefixLen":25, + "network":"194.38.177.128\/25", + "version":49850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.178.0", + "prefixLen":25, + "network":"194.38.178.0\/25", + "version":49849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.178.0", + "prefixLen":25, + "network":"194.38.178.0\/25", + "version":49849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.178.128", + "prefixLen":25, + "network":"194.38.178.128\/25", + "version":49848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.178.128", + "prefixLen":25, + "network":"194.38.178.128\/25", + "version":49848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.179.0", + "prefixLen":25, + "network":"194.38.179.0\/25", + "version":49847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.179.0", + "prefixLen":25, + "network":"194.38.179.0\/25", + "version":49847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.179.128", + "prefixLen":25, + "network":"194.38.179.128\/25", + "version":49846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.179.128", + "prefixLen":25, + "network":"194.38.179.128\/25", + "version":49846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.192.0", + "prefixLen":25, + "network":"194.38.192.0\/25", + "version":49845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.192.0", + "prefixLen":25, + "network":"194.38.192.0\/25", + "version":49845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.192.128", + "prefixLen":25, + "network":"194.38.192.128\/25", + "version":49844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.192.128", + "prefixLen":25, + "network":"194.38.192.128\/25", + "version":49844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.193.0", + "prefixLen":25, + "network":"194.38.193.0\/25", + "version":49843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.193.0", + "prefixLen":25, + "network":"194.38.193.0\/25", + "version":49843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.193.128", + "prefixLen":25, + "network":"194.38.193.128\/25", + "version":49842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.193.128", + "prefixLen":25, + "network":"194.38.193.128\/25", + "version":49842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.194.0", + "prefixLen":25, + "network":"194.38.194.0\/25", + "version":49841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.194.0", + "prefixLen":25, + "network":"194.38.194.0\/25", + "version":49841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.194.128", + "prefixLen":25, + "network":"194.38.194.128\/25", + "version":49840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.194.128", + "prefixLen":25, + "network":"194.38.194.128\/25", + "version":49840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.195.0", + "prefixLen":25, + "network":"194.38.195.0\/25", + "version":49839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.195.0", + "prefixLen":25, + "network":"194.38.195.0\/25", + "version":49839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.195.128", + "prefixLen":25, + "network":"194.38.195.128\/25", + "version":49838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.195.128", + "prefixLen":25, + "network":"194.38.195.128\/25", + "version":49838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.208.0", + "prefixLen":25, + "network":"194.38.208.0\/25", + "version":49837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.208.0", + "prefixLen":25, + "network":"194.38.208.0\/25", + "version":49837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.208.128", + "prefixLen":25, + "network":"194.38.208.128\/25", + "version":49836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.208.128", + "prefixLen":25, + "network":"194.38.208.128\/25", + "version":49836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.209.0", + "prefixLen":25, + "network":"194.38.209.0\/25", + "version":49835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.209.0", + "prefixLen":25, + "network":"194.38.209.0\/25", + "version":49835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.209.128", + "prefixLen":25, + "network":"194.38.209.128\/25", + "version":49834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.209.128", + "prefixLen":25, + "network":"194.38.209.128\/25", + "version":49834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.210.0", + "prefixLen":25, + "network":"194.38.210.0\/25", + "version":49833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.210.0", + "prefixLen":25, + "network":"194.38.210.0\/25", + "version":49833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.210.128", + "prefixLen":25, + "network":"194.38.210.128\/25", + "version":49832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.210.128", + "prefixLen":25, + "network":"194.38.210.128\/25", + "version":49832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.211.0", + "prefixLen":25, + "network":"194.38.211.0\/25", + "version":49831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.211.0", + "prefixLen":25, + "network":"194.38.211.0\/25", + "version":49831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.211.128", + "prefixLen":25, + "network":"194.38.211.128\/25", + "version":49830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.211.128", + "prefixLen":25, + "network":"194.38.211.128\/25", + "version":49830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.224.0", + "prefixLen":25, + "network":"194.38.224.0\/25", + "version":49829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.224.0", + "prefixLen":25, + "network":"194.38.224.0\/25", + "version":49829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.224.128", + "prefixLen":25, + "network":"194.38.224.128\/25", + "version":49828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.224.128", + "prefixLen":25, + "network":"194.38.224.128\/25", + "version":49828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.225.0", + "prefixLen":25, + "network":"194.38.225.0\/25", + "version":49827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.225.0", + "prefixLen":25, + "network":"194.38.225.0\/25", + "version":49827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.225.128", + "prefixLen":25, + "network":"194.38.225.128\/25", + "version":49826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.225.128", + "prefixLen":25, + "network":"194.38.225.128\/25", + "version":49826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.226.0", + "prefixLen":25, + "network":"194.38.226.0\/25", + "version":49825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.226.0", + "prefixLen":25, + "network":"194.38.226.0\/25", + "version":49825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.226.128", + "prefixLen":25, + "network":"194.38.226.128\/25", + "version":49824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.226.128", + "prefixLen":25, + "network":"194.38.226.128\/25", + "version":49824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.227.0", + "prefixLen":25, + "network":"194.38.227.0\/25", + "version":49823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.227.0", + "prefixLen":25, + "network":"194.38.227.0\/25", + "version":49823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.227.128", + "prefixLen":25, + "network":"194.38.227.128\/25", + "version":49822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.227.128", + "prefixLen":25, + "network":"194.38.227.128\/25", + "version":49822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.240.0", + "prefixLen":25, + "network":"194.38.240.0\/25", + "version":49821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.240.0", + "prefixLen":25, + "network":"194.38.240.0\/25", + "version":49821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.240.128", + "prefixLen":25, + "network":"194.38.240.128\/25", + "version":49820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.240.128", + "prefixLen":25, + "network":"194.38.240.128\/25", + "version":49820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.241.0", + "prefixLen":25, + "network":"194.38.241.0\/25", + "version":49819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.241.0", + "prefixLen":25, + "network":"194.38.241.0\/25", + "version":49819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.241.128", + "prefixLen":25, + "network":"194.38.241.128\/25", + "version":49818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.241.128", + "prefixLen":25, + "network":"194.38.241.128\/25", + "version":49818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.242.0", + "prefixLen":25, + "network":"194.38.242.0\/25", + "version":49817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.242.0", + "prefixLen":25, + "network":"194.38.242.0\/25", + "version":49817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.242.128", + "prefixLen":25, + "network":"194.38.242.128\/25", + "version":49816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.242.128", + "prefixLen":25, + "network":"194.38.242.128\/25", + "version":49816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.243.0", + "prefixLen":25, + "network":"194.38.243.0\/25", + "version":49815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.243.0", + "prefixLen":25, + "network":"194.38.243.0\/25", + "version":49815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.38.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.38.243.128", + "prefixLen":25, + "network":"194.38.243.128\/25", + "version":49814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.38.243.128", + "prefixLen":25, + "network":"194.38.243.128\/25", + "version":49814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64982 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.0.0", + "prefixLen":25, + "network":"194.39.0.0\/25", + "version":49941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.0.0", + "prefixLen":25, + "network":"194.39.0.0\/25", + "version":49941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.0.128", + "prefixLen":25, + "network":"194.39.0.128\/25", + "version":50068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.0.128", + "prefixLen":25, + "network":"194.39.0.128\/25", + "version":50068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.1.0", + "prefixLen":25, + "network":"194.39.1.0\/25", + "version":50067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.1.0", + "prefixLen":25, + "network":"194.39.1.0\/25", + "version":50067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.1.128", + "prefixLen":25, + "network":"194.39.1.128\/25", + "version":50066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.1.128", + "prefixLen":25, + "network":"194.39.1.128\/25", + "version":50066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.2.0", + "prefixLen":25, + "network":"194.39.2.0\/25", + "version":50065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.2.0", + "prefixLen":25, + "network":"194.39.2.0\/25", + "version":50065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.2.128", + "prefixLen":25, + "network":"194.39.2.128\/25", + "version":50064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.2.128", + "prefixLen":25, + "network":"194.39.2.128\/25", + "version":50064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.3.0", + "prefixLen":25, + "network":"194.39.3.0\/25", + "version":50063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.3.0", + "prefixLen":25, + "network":"194.39.3.0\/25", + "version":50063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.3.128", + "prefixLen":25, + "network":"194.39.3.128\/25", + "version":50062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.3.128", + "prefixLen":25, + "network":"194.39.3.128\/25", + "version":50062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.16.0", + "prefixLen":25, + "network":"194.39.16.0\/25", + "version":50061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.16.0", + "prefixLen":25, + "network":"194.39.16.0\/25", + "version":50061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.16.128", + "prefixLen":25, + "network":"194.39.16.128\/25", + "version":50060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.16.128", + "prefixLen":25, + "network":"194.39.16.128\/25", + "version":50060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.17.0", + "prefixLen":25, + "network":"194.39.17.0\/25", + "version":50059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.17.0", + "prefixLen":25, + "network":"194.39.17.0\/25", + "version":50059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.17.128", + "prefixLen":25, + "network":"194.39.17.128\/25", + "version":50058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.17.128", + "prefixLen":25, + "network":"194.39.17.128\/25", + "version":50058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.18.0", + "prefixLen":25, + "network":"194.39.18.0\/25", + "version":50057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.18.0", + "prefixLen":25, + "network":"194.39.18.0\/25", + "version":50057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.18.128", + "prefixLen":25, + "network":"194.39.18.128\/25", + "version":50056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.18.128", + "prefixLen":25, + "network":"194.39.18.128\/25", + "version":50056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.19.0", + "prefixLen":25, + "network":"194.39.19.0\/25", + "version":50055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.19.0", + "prefixLen":25, + "network":"194.39.19.0\/25", + "version":50055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.19.128", + "prefixLen":25, + "network":"194.39.19.128\/25", + "version":50054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.19.128", + "prefixLen":25, + "network":"194.39.19.128\/25", + "version":50054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.32.0", + "prefixLen":25, + "network":"194.39.32.0\/25", + "version":50053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.32.0", + "prefixLen":25, + "network":"194.39.32.0\/25", + "version":50053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.32.128", + "prefixLen":25, + "network":"194.39.32.128\/25", + "version":50052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.32.128", + "prefixLen":25, + "network":"194.39.32.128\/25", + "version":50052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.33.0", + "prefixLen":25, + "network":"194.39.33.0\/25", + "version":50051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.33.0", + "prefixLen":25, + "network":"194.39.33.0\/25", + "version":50051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.33.128", + "prefixLen":25, + "network":"194.39.33.128\/25", + "version":50050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.33.128", + "prefixLen":25, + "network":"194.39.33.128\/25", + "version":50050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.34.0", + "prefixLen":25, + "network":"194.39.34.0\/25", + "version":50049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.34.0", + "prefixLen":25, + "network":"194.39.34.0\/25", + "version":50049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.34.128", + "prefixLen":25, + "network":"194.39.34.128\/25", + "version":50048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.34.128", + "prefixLen":25, + "network":"194.39.34.128\/25", + "version":50048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.35.0", + "prefixLen":25, + "network":"194.39.35.0\/25", + "version":50047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.35.0", + "prefixLen":25, + "network":"194.39.35.0\/25", + "version":50047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.35.128", + "prefixLen":25, + "network":"194.39.35.128\/25", + "version":50046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.35.128", + "prefixLen":25, + "network":"194.39.35.128\/25", + "version":50046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.48.0", + "prefixLen":25, + "network":"194.39.48.0\/25", + "version":50045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.48.0", + "prefixLen":25, + "network":"194.39.48.0\/25", + "version":50045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.48.128", + "prefixLen":25, + "network":"194.39.48.128\/25", + "version":50044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.48.128", + "prefixLen":25, + "network":"194.39.48.128\/25", + "version":50044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.49.0", + "prefixLen":25, + "network":"194.39.49.0\/25", + "version":50043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.49.0", + "prefixLen":25, + "network":"194.39.49.0\/25", + "version":50043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.49.128", + "prefixLen":25, + "network":"194.39.49.128\/25", + "version":50042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.49.128", + "prefixLen":25, + "network":"194.39.49.128\/25", + "version":50042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.50.0", + "prefixLen":25, + "network":"194.39.50.0\/25", + "version":50041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.50.0", + "prefixLen":25, + "network":"194.39.50.0\/25", + "version":50041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.50.128", + "prefixLen":25, + "network":"194.39.50.128\/25", + "version":50040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.50.128", + "prefixLen":25, + "network":"194.39.50.128\/25", + "version":50040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.51.0", + "prefixLen":25, + "network":"194.39.51.0\/25", + "version":50039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.51.0", + "prefixLen":25, + "network":"194.39.51.0\/25", + "version":50039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.51.128", + "prefixLen":25, + "network":"194.39.51.128\/25", + "version":50038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.51.128", + "prefixLen":25, + "network":"194.39.51.128\/25", + "version":50038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.64.0", + "prefixLen":25, + "network":"194.39.64.0\/25", + "version":50037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.64.0", + "prefixLen":25, + "network":"194.39.64.0\/25", + "version":50037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.64.128", + "prefixLen":25, + "network":"194.39.64.128\/25", + "version":50036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.64.128", + "prefixLen":25, + "network":"194.39.64.128\/25", + "version":50036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.65.0", + "prefixLen":25, + "network":"194.39.65.0\/25", + "version":50035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.65.0", + "prefixLen":25, + "network":"194.39.65.0\/25", + "version":50035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.65.128", + "prefixLen":25, + "network":"194.39.65.128\/25", + "version":50034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.65.128", + "prefixLen":25, + "network":"194.39.65.128\/25", + "version":50034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.66.0", + "prefixLen":25, + "network":"194.39.66.0\/25", + "version":50033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.66.0", + "prefixLen":25, + "network":"194.39.66.0\/25", + "version":50033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.66.128", + "prefixLen":25, + "network":"194.39.66.128\/25", + "version":50032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.66.128", + "prefixLen":25, + "network":"194.39.66.128\/25", + "version":50032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.67.0", + "prefixLen":25, + "network":"194.39.67.0\/25", + "version":50031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.67.0", + "prefixLen":25, + "network":"194.39.67.0\/25", + "version":50031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.67.128", + "prefixLen":25, + "network":"194.39.67.128\/25", + "version":50030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.67.128", + "prefixLen":25, + "network":"194.39.67.128\/25", + "version":50030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.80.0", + "prefixLen":25, + "network":"194.39.80.0\/25", + "version":50029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.80.0", + "prefixLen":25, + "network":"194.39.80.0\/25", + "version":50029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.80.128", + "prefixLen":25, + "network":"194.39.80.128\/25", + "version":50028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.80.128", + "prefixLen":25, + "network":"194.39.80.128\/25", + "version":50028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.81.0", + "prefixLen":25, + "network":"194.39.81.0\/25", + "version":50027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.81.0", + "prefixLen":25, + "network":"194.39.81.0\/25", + "version":50027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.81.128", + "prefixLen":25, + "network":"194.39.81.128\/25", + "version":50026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.81.128", + "prefixLen":25, + "network":"194.39.81.128\/25", + "version":50026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.82.0", + "prefixLen":25, + "network":"194.39.82.0\/25", + "version":50025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.82.0", + "prefixLen":25, + "network":"194.39.82.0\/25", + "version":50025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.82.128", + "prefixLen":25, + "network":"194.39.82.128\/25", + "version":50024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.82.128", + "prefixLen":25, + "network":"194.39.82.128\/25", + "version":50024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.83.0", + "prefixLen":25, + "network":"194.39.83.0\/25", + "version":50023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.83.0", + "prefixLen":25, + "network":"194.39.83.0\/25", + "version":50023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.83.128", + "prefixLen":25, + "network":"194.39.83.128\/25", + "version":50022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.83.128", + "prefixLen":25, + "network":"194.39.83.128\/25", + "version":50022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.96.0", + "prefixLen":25, + "network":"194.39.96.0\/25", + "version":50021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.96.0", + "prefixLen":25, + "network":"194.39.96.0\/25", + "version":50021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.96.128", + "prefixLen":25, + "network":"194.39.96.128\/25", + "version":50020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.96.128", + "prefixLen":25, + "network":"194.39.96.128\/25", + "version":50020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.97.0", + "prefixLen":25, + "network":"194.39.97.0\/25", + "version":50019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.97.0", + "prefixLen":25, + "network":"194.39.97.0\/25", + "version":50019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.97.128", + "prefixLen":25, + "network":"194.39.97.128\/25", + "version":50018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.97.128", + "prefixLen":25, + "network":"194.39.97.128\/25", + "version":50018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.98.0", + "prefixLen":25, + "network":"194.39.98.0\/25", + "version":50017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.98.0", + "prefixLen":25, + "network":"194.39.98.0\/25", + "version":50017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.98.128", + "prefixLen":25, + "network":"194.39.98.128\/25", + "version":50016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.98.128", + "prefixLen":25, + "network":"194.39.98.128\/25", + "version":50016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.99.0", + "prefixLen":25, + "network":"194.39.99.0\/25", + "version":50015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.99.0", + "prefixLen":25, + "network":"194.39.99.0\/25", + "version":50015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.99.128", + "prefixLen":25, + "network":"194.39.99.128\/25", + "version":50014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.99.128", + "prefixLen":25, + "network":"194.39.99.128\/25", + "version":50014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.112.0", + "prefixLen":25, + "network":"194.39.112.0\/25", + "version":50013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.112.0", + "prefixLen":25, + "network":"194.39.112.0\/25", + "version":50013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.112.128", + "prefixLen":25, + "network":"194.39.112.128\/25", + "version":50012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.112.128", + "prefixLen":25, + "network":"194.39.112.128\/25", + "version":50012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.113.0", + "prefixLen":25, + "network":"194.39.113.0\/25", + "version":50011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.113.0", + "prefixLen":25, + "network":"194.39.113.0\/25", + "version":50011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.113.128", + "prefixLen":25, + "network":"194.39.113.128\/25", + "version":50010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.113.128", + "prefixLen":25, + "network":"194.39.113.128\/25", + "version":50010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.114.0", + "prefixLen":25, + "network":"194.39.114.0\/25", + "version":50009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.114.0", + "prefixLen":25, + "network":"194.39.114.0\/25", + "version":50009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.114.128", + "prefixLen":25, + "network":"194.39.114.128\/25", + "version":50008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.114.128", + "prefixLen":25, + "network":"194.39.114.128\/25", + "version":50008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.115.0", + "prefixLen":25, + "network":"194.39.115.0\/25", + "version":50007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.115.0", + "prefixLen":25, + "network":"194.39.115.0\/25", + "version":50007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.115.128", + "prefixLen":25, + "network":"194.39.115.128\/25", + "version":50006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.115.128", + "prefixLen":25, + "network":"194.39.115.128\/25", + "version":50006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.128.0", + "prefixLen":25, + "network":"194.39.128.0\/25", + "version":50005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.128.0", + "prefixLen":25, + "network":"194.39.128.0\/25", + "version":50005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.128.128", + "prefixLen":25, + "network":"194.39.128.128\/25", + "version":50004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.128.128", + "prefixLen":25, + "network":"194.39.128.128\/25", + "version":50004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.129.0", + "prefixLen":25, + "network":"194.39.129.0\/25", + "version":50003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.129.0", + "prefixLen":25, + "network":"194.39.129.0\/25", + "version":50003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.129.128", + "prefixLen":25, + "network":"194.39.129.128\/25", + "version":50002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.129.128", + "prefixLen":25, + "network":"194.39.129.128\/25", + "version":50002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.130.0", + "prefixLen":25, + "network":"194.39.130.0\/25", + "version":50001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.130.0", + "prefixLen":25, + "network":"194.39.130.0\/25", + "version":50001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.130.128", + "prefixLen":25, + "network":"194.39.130.128\/25", + "version":50000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.130.128", + "prefixLen":25, + "network":"194.39.130.128\/25", + "version":50000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.131.0", + "prefixLen":25, + "network":"194.39.131.0\/25", + "version":49999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.131.0", + "prefixLen":25, + "network":"194.39.131.0\/25", + "version":49999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.131.128", + "prefixLen":25, + "network":"194.39.131.128\/25", + "version":49998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.131.128", + "prefixLen":25, + "network":"194.39.131.128\/25", + "version":49998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.144.0", + "prefixLen":25, + "network":"194.39.144.0\/25", + "version":49997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.144.0", + "prefixLen":25, + "network":"194.39.144.0\/25", + "version":49997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.144.128", + "prefixLen":25, + "network":"194.39.144.128\/25", + "version":49996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.144.128", + "prefixLen":25, + "network":"194.39.144.128\/25", + "version":49996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.145.0", + "prefixLen":25, + "network":"194.39.145.0\/25", + "version":49995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.145.0", + "prefixLen":25, + "network":"194.39.145.0\/25", + "version":49995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.145.128", + "prefixLen":25, + "network":"194.39.145.128\/25", + "version":49994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.145.128", + "prefixLen":25, + "network":"194.39.145.128\/25", + "version":49994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.146.0", + "prefixLen":25, + "network":"194.39.146.0\/25", + "version":49993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.146.0", + "prefixLen":25, + "network":"194.39.146.0\/25", + "version":49993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.146.128", + "prefixLen":25, + "network":"194.39.146.128\/25", + "version":49992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.146.128", + "prefixLen":25, + "network":"194.39.146.128\/25", + "version":49992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.147.0", + "prefixLen":25, + "network":"194.39.147.0\/25", + "version":49991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.147.0", + "prefixLen":25, + "network":"194.39.147.0\/25", + "version":49991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.147.128", + "prefixLen":25, + "network":"194.39.147.128\/25", + "version":49990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.147.128", + "prefixLen":25, + "network":"194.39.147.128\/25", + "version":49990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.160.0", + "prefixLen":25, + "network":"194.39.160.0\/25", + "version":49989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.160.0", + "prefixLen":25, + "network":"194.39.160.0\/25", + "version":49989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.160.128", + "prefixLen":25, + "network":"194.39.160.128\/25", + "version":49988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.160.128", + "prefixLen":25, + "network":"194.39.160.128\/25", + "version":49988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.161.0", + "prefixLen":25, + "network":"194.39.161.0\/25", + "version":49987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.161.0", + "prefixLen":25, + "network":"194.39.161.0\/25", + "version":49987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.161.128", + "prefixLen":25, + "network":"194.39.161.128\/25", + "version":49986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.161.128", + "prefixLen":25, + "network":"194.39.161.128\/25", + "version":49986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.162.0", + "prefixLen":25, + "network":"194.39.162.0\/25", + "version":49985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.162.0", + "prefixLen":25, + "network":"194.39.162.0\/25", + "version":49985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.162.128", + "prefixLen":25, + "network":"194.39.162.128\/25", + "version":49984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.162.128", + "prefixLen":25, + "network":"194.39.162.128\/25", + "version":49984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.163.0", + "prefixLen":25, + "network":"194.39.163.0\/25", + "version":49983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.163.0", + "prefixLen":25, + "network":"194.39.163.0\/25", + "version":49983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.163.128", + "prefixLen":25, + "network":"194.39.163.128\/25", + "version":49982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.163.128", + "prefixLen":25, + "network":"194.39.163.128\/25", + "version":49982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.176.0", + "prefixLen":25, + "network":"194.39.176.0\/25", + "version":49981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.176.0", + "prefixLen":25, + "network":"194.39.176.0\/25", + "version":49981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.176.128", + "prefixLen":25, + "network":"194.39.176.128\/25", + "version":49980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.176.128", + "prefixLen":25, + "network":"194.39.176.128\/25", + "version":49980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.177.0", + "prefixLen":25, + "network":"194.39.177.0\/25", + "version":49979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.177.0", + "prefixLen":25, + "network":"194.39.177.0\/25", + "version":49979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.177.128", + "prefixLen":25, + "network":"194.39.177.128\/25", + "version":49978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.177.128", + "prefixLen":25, + "network":"194.39.177.128\/25", + "version":49978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.178.0", + "prefixLen":25, + "network":"194.39.178.0\/25", + "version":49977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.178.0", + "prefixLen":25, + "network":"194.39.178.0\/25", + "version":49977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.178.128", + "prefixLen":25, + "network":"194.39.178.128\/25", + "version":49976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.178.128", + "prefixLen":25, + "network":"194.39.178.128\/25", + "version":49976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.179.0", + "prefixLen":25, + "network":"194.39.179.0\/25", + "version":49975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.179.0", + "prefixLen":25, + "network":"194.39.179.0\/25", + "version":49975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.179.128", + "prefixLen":25, + "network":"194.39.179.128\/25", + "version":49974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.179.128", + "prefixLen":25, + "network":"194.39.179.128\/25", + "version":49974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.192.0", + "prefixLen":25, + "network":"194.39.192.0\/25", + "version":49973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.192.0", + "prefixLen":25, + "network":"194.39.192.0\/25", + "version":49973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.192.128", + "prefixLen":25, + "network":"194.39.192.128\/25", + "version":49972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.192.128", + "prefixLen":25, + "network":"194.39.192.128\/25", + "version":49972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.193.0", + "prefixLen":25, + "network":"194.39.193.0\/25", + "version":49971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.193.0", + "prefixLen":25, + "network":"194.39.193.0\/25", + "version":49971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.193.128", + "prefixLen":25, + "network":"194.39.193.128\/25", + "version":49970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.193.128", + "prefixLen":25, + "network":"194.39.193.128\/25", + "version":49970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.194.0", + "prefixLen":25, + "network":"194.39.194.0\/25", + "version":49969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.194.0", + "prefixLen":25, + "network":"194.39.194.0\/25", + "version":49969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.194.128", + "prefixLen":25, + "network":"194.39.194.128\/25", + "version":49968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.194.128", + "prefixLen":25, + "network":"194.39.194.128\/25", + "version":49968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.195.0", + "prefixLen":25, + "network":"194.39.195.0\/25", + "version":49967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.195.0", + "prefixLen":25, + "network":"194.39.195.0\/25", + "version":49967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.195.128", + "prefixLen":25, + "network":"194.39.195.128\/25", + "version":49966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.195.128", + "prefixLen":25, + "network":"194.39.195.128\/25", + "version":49966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.208.0", + "prefixLen":25, + "network":"194.39.208.0\/25", + "version":49965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.208.0", + "prefixLen":25, + "network":"194.39.208.0\/25", + "version":49965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.208.128", + "prefixLen":25, + "network":"194.39.208.128\/25", + "version":49964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.208.128", + "prefixLen":25, + "network":"194.39.208.128\/25", + "version":49964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.209.0", + "prefixLen":25, + "network":"194.39.209.0\/25", + "version":49963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.209.0", + "prefixLen":25, + "network":"194.39.209.0\/25", + "version":49963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.209.128", + "prefixLen":25, + "network":"194.39.209.128\/25", + "version":49962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.209.128", + "prefixLen":25, + "network":"194.39.209.128\/25", + "version":49962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.210.0", + "prefixLen":25, + "network":"194.39.210.0\/25", + "version":49961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.210.0", + "prefixLen":25, + "network":"194.39.210.0\/25", + "version":49961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.210.128", + "prefixLen":25, + "network":"194.39.210.128\/25", + "version":49960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.210.128", + "prefixLen":25, + "network":"194.39.210.128\/25", + "version":49960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.211.0", + "prefixLen":25, + "network":"194.39.211.0\/25", + "version":49959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.211.0", + "prefixLen":25, + "network":"194.39.211.0\/25", + "version":49959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.211.128", + "prefixLen":25, + "network":"194.39.211.128\/25", + "version":49958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.211.128", + "prefixLen":25, + "network":"194.39.211.128\/25", + "version":49958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.224.0", + "prefixLen":25, + "network":"194.39.224.0\/25", + "version":49957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.224.0", + "prefixLen":25, + "network":"194.39.224.0\/25", + "version":49957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.224.128", + "prefixLen":25, + "network":"194.39.224.128\/25", + "version":49956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.224.128", + "prefixLen":25, + "network":"194.39.224.128\/25", + "version":49956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.225.0", + "prefixLen":25, + "network":"194.39.225.0\/25", + "version":49955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.225.0", + "prefixLen":25, + "network":"194.39.225.0\/25", + "version":49955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.225.128", + "prefixLen":25, + "network":"194.39.225.128\/25", + "version":49954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.225.128", + "prefixLen":25, + "network":"194.39.225.128\/25", + "version":49954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.226.0", + "prefixLen":25, + "network":"194.39.226.0\/25", + "version":49953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.226.0", + "prefixLen":25, + "network":"194.39.226.0\/25", + "version":49953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.226.128", + "prefixLen":25, + "network":"194.39.226.128\/25", + "version":49952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.226.128", + "prefixLen":25, + "network":"194.39.226.128\/25", + "version":49952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.227.0", + "prefixLen":25, + "network":"194.39.227.0\/25", + "version":49951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.227.0", + "prefixLen":25, + "network":"194.39.227.0\/25", + "version":49951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.227.128", + "prefixLen":25, + "network":"194.39.227.128\/25", + "version":49950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.227.128", + "prefixLen":25, + "network":"194.39.227.128\/25", + "version":49950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.240.0", + "prefixLen":25, + "network":"194.39.240.0\/25", + "version":49949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.240.0", + "prefixLen":25, + "network":"194.39.240.0\/25", + "version":49949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.240.128", + "prefixLen":25, + "network":"194.39.240.128\/25", + "version":49948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.240.128", + "prefixLen":25, + "network":"194.39.240.128\/25", + "version":49948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.241.0", + "prefixLen":25, + "network":"194.39.241.0\/25", + "version":49947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.241.0", + "prefixLen":25, + "network":"194.39.241.0\/25", + "version":49947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.241.128", + "prefixLen":25, + "network":"194.39.241.128\/25", + "version":49946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.241.128", + "prefixLen":25, + "network":"194.39.241.128\/25", + "version":49946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.242.0", + "prefixLen":25, + "network":"194.39.242.0\/25", + "version":49945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.242.0", + "prefixLen":25, + "network":"194.39.242.0\/25", + "version":49945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.242.128", + "prefixLen":25, + "network":"194.39.242.128\/25", + "version":49944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.242.128", + "prefixLen":25, + "network":"194.39.242.128\/25", + "version":49944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.243.0", + "prefixLen":25, + "network":"194.39.243.0\/25", + "version":49943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.243.0", + "prefixLen":25, + "network":"194.39.243.0\/25", + "version":49943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.39.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.39.243.128", + "prefixLen":25, + "network":"194.39.243.128\/25", + "version":49942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.39.243.128", + "prefixLen":25, + "network":"194.39.243.128\/25", + "version":49942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64983 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.0.0", + "prefixLen":25, + "network":"194.40.0.0\/25", + "version":50069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.0.0", + "prefixLen":25, + "network":"194.40.0.0\/25", + "version":50069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.0.128", + "prefixLen":25, + "network":"194.40.0.128\/25", + "version":50196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.0.128", + "prefixLen":25, + "network":"194.40.0.128\/25", + "version":50196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.1.0", + "prefixLen":25, + "network":"194.40.1.0\/25", + "version":50195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.1.0", + "prefixLen":25, + "network":"194.40.1.0\/25", + "version":50195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.1.128", + "prefixLen":25, + "network":"194.40.1.128\/25", + "version":50194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.1.128", + "prefixLen":25, + "network":"194.40.1.128\/25", + "version":50194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.2.0", + "prefixLen":25, + "network":"194.40.2.0\/25", + "version":50193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.2.0", + "prefixLen":25, + "network":"194.40.2.0\/25", + "version":50193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.2.128", + "prefixLen":25, + "network":"194.40.2.128\/25", + "version":50192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.2.128", + "prefixLen":25, + "network":"194.40.2.128\/25", + "version":50192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.3.0", + "prefixLen":25, + "network":"194.40.3.0\/25", + "version":50191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.3.0", + "prefixLen":25, + "network":"194.40.3.0\/25", + "version":50191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.3.128", + "prefixLen":25, + "network":"194.40.3.128\/25", + "version":50190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.3.128", + "prefixLen":25, + "network":"194.40.3.128\/25", + "version":50190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.16.0", + "prefixLen":25, + "network":"194.40.16.0\/25", + "version":50189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.16.0", + "prefixLen":25, + "network":"194.40.16.0\/25", + "version":50189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.16.128", + "prefixLen":25, + "network":"194.40.16.128\/25", + "version":50188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.16.128", + "prefixLen":25, + "network":"194.40.16.128\/25", + "version":50188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.17.0", + "prefixLen":25, + "network":"194.40.17.0\/25", + "version":50187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.17.0", + "prefixLen":25, + "network":"194.40.17.0\/25", + "version":50187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.17.128", + "prefixLen":25, + "network":"194.40.17.128\/25", + "version":50186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.17.128", + "prefixLen":25, + "network":"194.40.17.128\/25", + "version":50186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.18.0", + "prefixLen":25, + "network":"194.40.18.0\/25", + "version":50185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.18.0", + "prefixLen":25, + "network":"194.40.18.0\/25", + "version":50185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.18.128", + "prefixLen":25, + "network":"194.40.18.128\/25", + "version":50184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.18.128", + "prefixLen":25, + "network":"194.40.18.128\/25", + "version":50184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.19.0", + "prefixLen":25, + "network":"194.40.19.0\/25", + "version":50183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.19.0", + "prefixLen":25, + "network":"194.40.19.0\/25", + "version":50183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.19.128", + "prefixLen":25, + "network":"194.40.19.128\/25", + "version":50182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.19.128", + "prefixLen":25, + "network":"194.40.19.128\/25", + "version":50182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.32.0", + "prefixLen":25, + "network":"194.40.32.0\/25", + "version":50181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.32.0", + "prefixLen":25, + "network":"194.40.32.0\/25", + "version":50181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.32.128", + "prefixLen":25, + "network":"194.40.32.128\/25", + "version":50180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.32.128", + "prefixLen":25, + "network":"194.40.32.128\/25", + "version":50180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.33.0", + "prefixLen":25, + "network":"194.40.33.0\/25", + "version":50179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.33.0", + "prefixLen":25, + "network":"194.40.33.0\/25", + "version":50179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.33.128", + "prefixLen":25, + "network":"194.40.33.128\/25", + "version":50178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.33.128", + "prefixLen":25, + "network":"194.40.33.128\/25", + "version":50178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.34.0", + "prefixLen":25, + "network":"194.40.34.0\/25", + "version":50177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.34.0", + "prefixLen":25, + "network":"194.40.34.0\/25", + "version":50177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.34.128", + "prefixLen":25, + "network":"194.40.34.128\/25", + "version":50176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.34.128", + "prefixLen":25, + "network":"194.40.34.128\/25", + "version":50176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.35.0", + "prefixLen":25, + "network":"194.40.35.0\/25", + "version":50175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.35.0", + "prefixLen":25, + "network":"194.40.35.0\/25", + "version":50175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.35.128", + "prefixLen":25, + "network":"194.40.35.128\/25", + "version":50174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.35.128", + "prefixLen":25, + "network":"194.40.35.128\/25", + "version":50174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.48.0", + "prefixLen":25, + "network":"194.40.48.0\/25", + "version":50173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.48.0", + "prefixLen":25, + "network":"194.40.48.0\/25", + "version":50173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.48.128", + "prefixLen":25, + "network":"194.40.48.128\/25", + "version":50172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.48.128", + "prefixLen":25, + "network":"194.40.48.128\/25", + "version":50172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.49.0", + "prefixLen":25, + "network":"194.40.49.0\/25", + "version":50171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.49.0", + "prefixLen":25, + "network":"194.40.49.0\/25", + "version":50171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.49.128", + "prefixLen":25, + "network":"194.40.49.128\/25", + "version":50170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.49.128", + "prefixLen":25, + "network":"194.40.49.128\/25", + "version":50170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.50.0", + "prefixLen":25, + "network":"194.40.50.0\/25", + "version":50169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.50.0", + "prefixLen":25, + "network":"194.40.50.0\/25", + "version":50169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.50.128", + "prefixLen":25, + "network":"194.40.50.128\/25", + "version":50168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.50.128", + "prefixLen":25, + "network":"194.40.50.128\/25", + "version":50168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.51.0", + "prefixLen":25, + "network":"194.40.51.0\/25", + "version":50167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.51.0", + "prefixLen":25, + "network":"194.40.51.0\/25", + "version":50167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.51.128", + "prefixLen":25, + "network":"194.40.51.128\/25", + "version":50166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.51.128", + "prefixLen":25, + "network":"194.40.51.128\/25", + "version":50166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.64.0", + "prefixLen":25, + "network":"194.40.64.0\/25", + "version":50165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.64.0", + "prefixLen":25, + "network":"194.40.64.0\/25", + "version":50165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.64.128", + "prefixLen":25, + "network":"194.40.64.128\/25", + "version":50164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.64.128", + "prefixLen":25, + "network":"194.40.64.128\/25", + "version":50164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.65.0", + "prefixLen":25, + "network":"194.40.65.0\/25", + "version":50163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.65.0", + "prefixLen":25, + "network":"194.40.65.0\/25", + "version":50163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.65.128", + "prefixLen":25, + "network":"194.40.65.128\/25", + "version":50162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.65.128", + "prefixLen":25, + "network":"194.40.65.128\/25", + "version":50162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.66.0", + "prefixLen":25, + "network":"194.40.66.0\/25", + "version":50161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.66.0", + "prefixLen":25, + "network":"194.40.66.0\/25", + "version":50161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.66.128", + "prefixLen":25, + "network":"194.40.66.128\/25", + "version":50160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.66.128", + "prefixLen":25, + "network":"194.40.66.128\/25", + "version":50160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.67.0", + "prefixLen":25, + "network":"194.40.67.0\/25", + "version":50159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.67.0", + "prefixLen":25, + "network":"194.40.67.0\/25", + "version":50159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.67.128", + "prefixLen":25, + "network":"194.40.67.128\/25", + "version":50158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.67.128", + "prefixLen":25, + "network":"194.40.67.128\/25", + "version":50158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.80.0", + "prefixLen":25, + "network":"194.40.80.0\/25", + "version":50157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.80.0", + "prefixLen":25, + "network":"194.40.80.0\/25", + "version":50157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.80.128", + "prefixLen":25, + "network":"194.40.80.128\/25", + "version":50156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.80.128", + "prefixLen":25, + "network":"194.40.80.128\/25", + "version":50156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.81.0", + "prefixLen":25, + "network":"194.40.81.0\/25", + "version":50155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.81.0", + "prefixLen":25, + "network":"194.40.81.0\/25", + "version":50155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.81.128", + "prefixLen":25, + "network":"194.40.81.128\/25", + "version":50154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.81.128", + "prefixLen":25, + "network":"194.40.81.128\/25", + "version":50154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.82.0", + "prefixLen":25, + "network":"194.40.82.0\/25", + "version":50153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.82.0", + "prefixLen":25, + "network":"194.40.82.0\/25", + "version":50153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.82.128", + "prefixLen":25, + "network":"194.40.82.128\/25", + "version":50152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.82.128", + "prefixLen":25, + "network":"194.40.82.128\/25", + "version":50152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.83.0", + "prefixLen":25, + "network":"194.40.83.0\/25", + "version":50151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.83.0", + "prefixLen":25, + "network":"194.40.83.0\/25", + "version":50151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.83.128", + "prefixLen":25, + "network":"194.40.83.128\/25", + "version":50150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.83.128", + "prefixLen":25, + "network":"194.40.83.128\/25", + "version":50150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.96.0", + "prefixLen":25, + "network":"194.40.96.0\/25", + "version":50149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.96.0", + "prefixLen":25, + "network":"194.40.96.0\/25", + "version":50149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.96.128", + "prefixLen":25, + "network":"194.40.96.128\/25", + "version":50148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.96.128", + "prefixLen":25, + "network":"194.40.96.128\/25", + "version":50148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.97.0", + "prefixLen":25, + "network":"194.40.97.0\/25", + "version":50147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.97.0", + "prefixLen":25, + "network":"194.40.97.0\/25", + "version":50147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.97.128", + "prefixLen":25, + "network":"194.40.97.128\/25", + "version":50146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.97.128", + "prefixLen":25, + "network":"194.40.97.128\/25", + "version":50146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.98.0", + "prefixLen":25, + "network":"194.40.98.0\/25", + "version":50145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.98.0", + "prefixLen":25, + "network":"194.40.98.0\/25", + "version":50145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.98.128", + "prefixLen":25, + "network":"194.40.98.128\/25", + "version":50144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.98.128", + "prefixLen":25, + "network":"194.40.98.128\/25", + "version":50144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.99.0", + "prefixLen":25, + "network":"194.40.99.0\/25", + "version":50143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.99.0", + "prefixLen":25, + "network":"194.40.99.0\/25", + "version":50143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.99.128", + "prefixLen":25, + "network":"194.40.99.128\/25", + "version":50142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.99.128", + "prefixLen":25, + "network":"194.40.99.128\/25", + "version":50142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.112.0", + "prefixLen":25, + "network":"194.40.112.0\/25", + "version":50141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.112.0", + "prefixLen":25, + "network":"194.40.112.0\/25", + "version":50141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.112.128", + "prefixLen":25, + "network":"194.40.112.128\/25", + "version":50140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.112.128", + "prefixLen":25, + "network":"194.40.112.128\/25", + "version":50140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.113.0", + "prefixLen":25, + "network":"194.40.113.0\/25", + "version":50139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.113.0", + "prefixLen":25, + "network":"194.40.113.0\/25", + "version":50139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.113.128", + "prefixLen":25, + "network":"194.40.113.128\/25", + "version":50138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.113.128", + "prefixLen":25, + "network":"194.40.113.128\/25", + "version":50138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.114.0", + "prefixLen":25, + "network":"194.40.114.0\/25", + "version":50137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.114.0", + "prefixLen":25, + "network":"194.40.114.0\/25", + "version":50137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.114.128", + "prefixLen":25, + "network":"194.40.114.128\/25", + "version":50136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.114.128", + "prefixLen":25, + "network":"194.40.114.128\/25", + "version":50136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.115.0", + "prefixLen":25, + "network":"194.40.115.0\/25", + "version":50135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.115.0", + "prefixLen":25, + "network":"194.40.115.0\/25", + "version":50135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.115.128", + "prefixLen":25, + "network":"194.40.115.128\/25", + "version":50134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.115.128", + "prefixLen":25, + "network":"194.40.115.128\/25", + "version":50134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.128.0", + "prefixLen":25, + "network":"194.40.128.0\/25", + "version":50133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.128.0", + "prefixLen":25, + "network":"194.40.128.0\/25", + "version":50133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.128.128", + "prefixLen":25, + "network":"194.40.128.128\/25", + "version":50132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.128.128", + "prefixLen":25, + "network":"194.40.128.128\/25", + "version":50132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.129.0", + "prefixLen":25, + "network":"194.40.129.0\/25", + "version":50131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.129.0", + "prefixLen":25, + "network":"194.40.129.0\/25", + "version":50131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.129.128", + "prefixLen":25, + "network":"194.40.129.128\/25", + "version":50130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.129.128", + "prefixLen":25, + "network":"194.40.129.128\/25", + "version":50130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.130.0", + "prefixLen":25, + "network":"194.40.130.0\/25", + "version":50129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.130.0", + "prefixLen":25, + "network":"194.40.130.0\/25", + "version":50129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.130.128", + "prefixLen":25, + "network":"194.40.130.128\/25", + "version":50128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.130.128", + "prefixLen":25, + "network":"194.40.130.128\/25", + "version":50128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.131.0", + "prefixLen":25, + "network":"194.40.131.0\/25", + "version":50127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.131.0", + "prefixLen":25, + "network":"194.40.131.0\/25", + "version":50127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.131.128", + "prefixLen":25, + "network":"194.40.131.128\/25", + "version":50126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.131.128", + "prefixLen":25, + "network":"194.40.131.128\/25", + "version":50126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.144.0", + "prefixLen":25, + "network":"194.40.144.0\/25", + "version":50125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.144.0", + "prefixLen":25, + "network":"194.40.144.0\/25", + "version":50125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.144.128", + "prefixLen":25, + "network":"194.40.144.128\/25", + "version":50124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.144.128", + "prefixLen":25, + "network":"194.40.144.128\/25", + "version":50124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.145.0", + "prefixLen":25, + "network":"194.40.145.0\/25", + "version":50123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.145.0", + "prefixLen":25, + "network":"194.40.145.0\/25", + "version":50123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.145.128", + "prefixLen":25, + "network":"194.40.145.128\/25", + "version":50122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.145.128", + "prefixLen":25, + "network":"194.40.145.128\/25", + "version":50122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.146.0", + "prefixLen":25, + "network":"194.40.146.0\/25", + "version":50121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.146.0", + "prefixLen":25, + "network":"194.40.146.0\/25", + "version":50121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.146.128", + "prefixLen":25, + "network":"194.40.146.128\/25", + "version":50120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.146.128", + "prefixLen":25, + "network":"194.40.146.128\/25", + "version":50120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.147.0", + "prefixLen":25, + "network":"194.40.147.0\/25", + "version":50119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.147.0", + "prefixLen":25, + "network":"194.40.147.0\/25", + "version":50119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.147.128", + "prefixLen":25, + "network":"194.40.147.128\/25", + "version":50118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.147.128", + "prefixLen":25, + "network":"194.40.147.128\/25", + "version":50118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.160.0", + "prefixLen":25, + "network":"194.40.160.0\/25", + "version":50117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.160.0", + "prefixLen":25, + "network":"194.40.160.0\/25", + "version":50117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.160.128", + "prefixLen":25, + "network":"194.40.160.128\/25", + "version":50116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.160.128", + "prefixLen":25, + "network":"194.40.160.128\/25", + "version":50116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.161.0", + "prefixLen":25, + "network":"194.40.161.0\/25", + "version":50115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.161.0", + "prefixLen":25, + "network":"194.40.161.0\/25", + "version":50115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.161.128", + "prefixLen":25, + "network":"194.40.161.128\/25", + "version":50114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.161.128", + "prefixLen":25, + "network":"194.40.161.128\/25", + "version":50114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.162.0", + "prefixLen":25, + "network":"194.40.162.0\/25", + "version":50113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.162.0", + "prefixLen":25, + "network":"194.40.162.0\/25", + "version":50113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.162.128", + "prefixLen":25, + "network":"194.40.162.128\/25", + "version":50112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.162.128", + "prefixLen":25, + "network":"194.40.162.128\/25", + "version":50112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.163.0", + "prefixLen":25, + "network":"194.40.163.0\/25", + "version":50111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.163.0", + "prefixLen":25, + "network":"194.40.163.0\/25", + "version":50111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.163.128", + "prefixLen":25, + "network":"194.40.163.128\/25", + "version":50110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.163.128", + "prefixLen":25, + "network":"194.40.163.128\/25", + "version":50110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.176.0", + "prefixLen":25, + "network":"194.40.176.0\/25", + "version":50109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.176.0", + "prefixLen":25, + "network":"194.40.176.0\/25", + "version":50109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.176.128", + "prefixLen":25, + "network":"194.40.176.128\/25", + "version":50108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.176.128", + "prefixLen":25, + "network":"194.40.176.128\/25", + "version":50108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.177.0", + "prefixLen":25, + "network":"194.40.177.0\/25", + "version":50107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.177.0", + "prefixLen":25, + "network":"194.40.177.0\/25", + "version":50107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.177.128", + "prefixLen":25, + "network":"194.40.177.128\/25", + "version":50106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.177.128", + "prefixLen":25, + "network":"194.40.177.128\/25", + "version":50106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.178.0", + "prefixLen":25, + "network":"194.40.178.0\/25", + "version":50105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.178.0", + "prefixLen":25, + "network":"194.40.178.0\/25", + "version":50105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.178.128", + "prefixLen":25, + "network":"194.40.178.128\/25", + "version":50104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.178.128", + "prefixLen":25, + "network":"194.40.178.128\/25", + "version":50104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.179.0", + "prefixLen":25, + "network":"194.40.179.0\/25", + "version":50103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.179.0", + "prefixLen":25, + "network":"194.40.179.0\/25", + "version":50103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.179.128", + "prefixLen":25, + "network":"194.40.179.128\/25", + "version":50102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.179.128", + "prefixLen":25, + "network":"194.40.179.128\/25", + "version":50102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.192.0", + "prefixLen":25, + "network":"194.40.192.0\/25", + "version":50101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.192.0", + "prefixLen":25, + "network":"194.40.192.0\/25", + "version":50101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.192.128", + "prefixLen":25, + "network":"194.40.192.128\/25", + "version":50100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.192.128", + "prefixLen":25, + "network":"194.40.192.128\/25", + "version":50100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.193.0", + "prefixLen":25, + "network":"194.40.193.0\/25", + "version":50099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.193.0", + "prefixLen":25, + "network":"194.40.193.0\/25", + "version":50099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.193.128", + "prefixLen":25, + "network":"194.40.193.128\/25", + "version":50098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.193.128", + "prefixLen":25, + "network":"194.40.193.128\/25", + "version":50098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.194.0", + "prefixLen":25, + "network":"194.40.194.0\/25", + "version":50097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.194.0", + "prefixLen":25, + "network":"194.40.194.0\/25", + "version":50097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.194.128", + "prefixLen":25, + "network":"194.40.194.128\/25", + "version":50096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.194.128", + "prefixLen":25, + "network":"194.40.194.128\/25", + "version":50096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.195.0", + "prefixLen":25, + "network":"194.40.195.0\/25", + "version":50095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.195.0", + "prefixLen":25, + "network":"194.40.195.0\/25", + "version":50095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.195.128", + "prefixLen":25, + "network":"194.40.195.128\/25", + "version":50094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.195.128", + "prefixLen":25, + "network":"194.40.195.128\/25", + "version":50094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.208.0", + "prefixLen":25, + "network":"194.40.208.0\/25", + "version":50093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.208.0", + "prefixLen":25, + "network":"194.40.208.0\/25", + "version":50093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.208.128", + "prefixLen":25, + "network":"194.40.208.128\/25", + "version":50092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.208.128", + "prefixLen":25, + "network":"194.40.208.128\/25", + "version":50092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.209.0", + "prefixLen":25, + "network":"194.40.209.0\/25", + "version":50091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.209.0", + "prefixLen":25, + "network":"194.40.209.0\/25", + "version":50091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.209.128", + "prefixLen":25, + "network":"194.40.209.128\/25", + "version":50090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.209.128", + "prefixLen":25, + "network":"194.40.209.128\/25", + "version":50090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.210.0", + "prefixLen":25, + "network":"194.40.210.0\/25", + "version":50089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.210.0", + "prefixLen":25, + "network":"194.40.210.0\/25", + "version":50089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.210.128", + "prefixLen":25, + "network":"194.40.210.128\/25", + "version":50088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.210.128", + "prefixLen":25, + "network":"194.40.210.128\/25", + "version":50088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.211.0", + "prefixLen":25, + "network":"194.40.211.0\/25", + "version":50087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.211.0", + "prefixLen":25, + "network":"194.40.211.0\/25", + "version":50087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.211.128", + "prefixLen":25, + "network":"194.40.211.128\/25", + "version":50086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.211.128", + "prefixLen":25, + "network":"194.40.211.128\/25", + "version":50086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.224.0", + "prefixLen":25, + "network":"194.40.224.0\/25", + "version":50085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.224.0", + "prefixLen":25, + "network":"194.40.224.0\/25", + "version":50085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.224.128", + "prefixLen":25, + "network":"194.40.224.128\/25", + "version":50084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.224.128", + "prefixLen":25, + "network":"194.40.224.128\/25", + "version":50084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.225.0", + "prefixLen":25, + "network":"194.40.225.0\/25", + "version":50083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.225.0", + "prefixLen":25, + "network":"194.40.225.0\/25", + "version":50083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.225.128", + "prefixLen":25, + "network":"194.40.225.128\/25", + "version":50082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.225.128", + "prefixLen":25, + "network":"194.40.225.128\/25", + "version":50082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.226.0", + "prefixLen":25, + "network":"194.40.226.0\/25", + "version":50081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.226.0", + "prefixLen":25, + "network":"194.40.226.0\/25", + "version":50081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.226.128", + "prefixLen":25, + "network":"194.40.226.128\/25", + "version":50080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.226.128", + "prefixLen":25, + "network":"194.40.226.128\/25", + "version":50080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.227.0", + "prefixLen":25, + "network":"194.40.227.0\/25", + "version":50079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.227.0", + "prefixLen":25, + "network":"194.40.227.0\/25", + "version":50079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.227.128", + "prefixLen":25, + "network":"194.40.227.128\/25", + "version":50078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.227.128", + "prefixLen":25, + "network":"194.40.227.128\/25", + "version":50078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.240.0", + "prefixLen":25, + "network":"194.40.240.0\/25", + "version":50077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.240.0", + "prefixLen":25, + "network":"194.40.240.0\/25", + "version":50077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.240.128", + "prefixLen":25, + "network":"194.40.240.128\/25", + "version":50076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.240.128", + "prefixLen":25, + "network":"194.40.240.128\/25", + "version":50076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.241.0", + "prefixLen":25, + "network":"194.40.241.0\/25", + "version":50075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.241.0", + "prefixLen":25, + "network":"194.40.241.0\/25", + "version":50075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.241.128", + "prefixLen":25, + "network":"194.40.241.128\/25", + "version":50074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.241.128", + "prefixLen":25, + "network":"194.40.241.128\/25", + "version":50074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.242.0", + "prefixLen":25, + "network":"194.40.242.0\/25", + "version":50073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.242.0", + "prefixLen":25, + "network":"194.40.242.0\/25", + "version":50073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.242.128", + "prefixLen":25, + "network":"194.40.242.128\/25", + "version":50072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.242.128", + "prefixLen":25, + "network":"194.40.242.128\/25", + "version":50072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.243.0", + "prefixLen":25, + "network":"194.40.243.0\/25", + "version":50071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.243.0", + "prefixLen":25, + "network":"194.40.243.0\/25", + "version":50071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.40.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.40.243.128", + "prefixLen":25, + "network":"194.40.243.128\/25", + "version":50070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.40.243.128", + "prefixLen":25, + "network":"194.40.243.128\/25", + "version":50070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64984 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.0.0", + "prefixLen":25, + "network":"194.41.0.0\/25", + "version":50197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.0.0", + "prefixLen":25, + "network":"194.41.0.0\/25", + "version":50197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.0.128", + "prefixLen":25, + "network":"194.41.0.128\/25", + "version":50324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.0.128", + "prefixLen":25, + "network":"194.41.0.128\/25", + "version":50324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.1.0", + "prefixLen":25, + "network":"194.41.1.0\/25", + "version":50323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.1.0", + "prefixLen":25, + "network":"194.41.1.0\/25", + "version":50323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.1.128", + "prefixLen":25, + "network":"194.41.1.128\/25", + "version":50322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.1.128", + "prefixLen":25, + "network":"194.41.1.128\/25", + "version":50322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.2.0", + "prefixLen":25, + "network":"194.41.2.0\/25", + "version":50321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.2.0", + "prefixLen":25, + "network":"194.41.2.0\/25", + "version":50321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.2.128", + "prefixLen":25, + "network":"194.41.2.128\/25", + "version":50320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.2.128", + "prefixLen":25, + "network":"194.41.2.128\/25", + "version":50320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.3.0", + "prefixLen":25, + "network":"194.41.3.0\/25", + "version":50319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.3.0", + "prefixLen":25, + "network":"194.41.3.0\/25", + "version":50319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.3.128", + "prefixLen":25, + "network":"194.41.3.128\/25", + "version":50318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.3.128", + "prefixLen":25, + "network":"194.41.3.128\/25", + "version":50318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.16.0", + "prefixLen":25, + "network":"194.41.16.0\/25", + "version":50317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.16.0", + "prefixLen":25, + "network":"194.41.16.0\/25", + "version":50317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.16.128", + "prefixLen":25, + "network":"194.41.16.128\/25", + "version":50316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.16.128", + "prefixLen":25, + "network":"194.41.16.128\/25", + "version":50316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.17.0", + "prefixLen":25, + "network":"194.41.17.0\/25", + "version":50315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.17.0", + "prefixLen":25, + "network":"194.41.17.0\/25", + "version":50315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.17.128", + "prefixLen":25, + "network":"194.41.17.128\/25", + "version":50314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.17.128", + "prefixLen":25, + "network":"194.41.17.128\/25", + "version":50314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.18.0", + "prefixLen":25, + "network":"194.41.18.0\/25", + "version":50313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.18.0", + "prefixLen":25, + "network":"194.41.18.0\/25", + "version":50313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.18.128", + "prefixLen":25, + "network":"194.41.18.128\/25", + "version":50312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.18.128", + "prefixLen":25, + "network":"194.41.18.128\/25", + "version":50312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.19.0", + "prefixLen":25, + "network":"194.41.19.0\/25", + "version":50311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.19.0", + "prefixLen":25, + "network":"194.41.19.0\/25", + "version":50311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.19.128", + "prefixLen":25, + "network":"194.41.19.128\/25", + "version":50310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.19.128", + "prefixLen":25, + "network":"194.41.19.128\/25", + "version":50310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.32.0", + "prefixLen":25, + "network":"194.41.32.0\/25", + "version":50309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.32.0", + "prefixLen":25, + "network":"194.41.32.0\/25", + "version":50309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.32.128", + "prefixLen":25, + "network":"194.41.32.128\/25", + "version":50308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.32.128", + "prefixLen":25, + "network":"194.41.32.128\/25", + "version":50308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.33.0", + "prefixLen":25, + "network":"194.41.33.0\/25", + "version":50307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.33.0", + "prefixLen":25, + "network":"194.41.33.0\/25", + "version":50307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.33.128", + "prefixLen":25, + "network":"194.41.33.128\/25", + "version":50306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.33.128", + "prefixLen":25, + "network":"194.41.33.128\/25", + "version":50306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.34.0", + "prefixLen":25, + "network":"194.41.34.0\/25", + "version":50305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.34.0", + "prefixLen":25, + "network":"194.41.34.0\/25", + "version":50305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.34.128", + "prefixLen":25, + "network":"194.41.34.128\/25", + "version":50304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.34.128", + "prefixLen":25, + "network":"194.41.34.128\/25", + "version":50304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.35.0", + "prefixLen":25, + "network":"194.41.35.0\/25", + "version":50303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.35.0", + "prefixLen":25, + "network":"194.41.35.0\/25", + "version":50303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.35.128", + "prefixLen":25, + "network":"194.41.35.128\/25", + "version":50302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.35.128", + "prefixLen":25, + "network":"194.41.35.128\/25", + "version":50302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.48.0", + "prefixLen":25, + "network":"194.41.48.0\/25", + "version":50301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.48.0", + "prefixLen":25, + "network":"194.41.48.0\/25", + "version":50301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.48.128", + "prefixLen":25, + "network":"194.41.48.128\/25", + "version":50300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.48.128", + "prefixLen":25, + "network":"194.41.48.128\/25", + "version":50300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.49.0", + "prefixLen":25, + "network":"194.41.49.0\/25", + "version":50299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.49.0", + "prefixLen":25, + "network":"194.41.49.0\/25", + "version":50299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.49.128", + "prefixLen":25, + "network":"194.41.49.128\/25", + "version":50298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.49.128", + "prefixLen":25, + "network":"194.41.49.128\/25", + "version":50298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.50.0", + "prefixLen":25, + "network":"194.41.50.0\/25", + "version":50297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.50.0", + "prefixLen":25, + "network":"194.41.50.0\/25", + "version":50297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.50.128", + "prefixLen":25, + "network":"194.41.50.128\/25", + "version":50296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.50.128", + "prefixLen":25, + "network":"194.41.50.128\/25", + "version":50296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.51.0", + "prefixLen":25, + "network":"194.41.51.0\/25", + "version":50295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.51.0", + "prefixLen":25, + "network":"194.41.51.0\/25", + "version":50295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.51.128", + "prefixLen":25, + "network":"194.41.51.128\/25", + "version":50294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.51.128", + "prefixLen":25, + "network":"194.41.51.128\/25", + "version":50294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.64.0", + "prefixLen":25, + "network":"194.41.64.0\/25", + "version":50293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.64.0", + "prefixLen":25, + "network":"194.41.64.0\/25", + "version":50293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.64.128", + "prefixLen":25, + "network":"194.41.64.128\/25", + "version":50292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.64.128", + "prefixLen":25, + "network":"194.41.64.128\/25", + "version":50292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.65.0", + "prefixLen":25, + "network":"194.41.65.0\/25", + "version":50291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.65.0", + "prefixLen":25, + "network":"194.41.65.0\/25", + "version":50291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.65.128", + "prefixLen":25, + "network":"194.41.65.128\/25", + "version":50290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.65.128", + "prefixLen":25, + "network":"194.41.65.128\/25", + "version":50290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.66.0", + "prefixLen":25, + "network":"194.41.66.0\/25", + "version":50289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.66.0", + "prefixLen":25, + "network":"194.41.66.0\/25", + "version":50289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.66.128", + "prefixLen":25, + "network":"194.41.66.128\/25", + "version":50288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.66.128", + "prefixLen":25, + "network":"194.41.66.128\/25", + "version":50288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.67.0", + "prefixLen":25, + "network":"194.41.67.0\/25", + "version":50287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.67.0", + "prefixLen":25, + "network":"194.41.67.0\/25", + "version":50287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.67.128", + "prefixLen":25, + "network":"194.41.67.128\/25", + "version":50286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.67.128", + "prefixLen":25, + "network":"194.41.67.128\/25", + "version":50286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.80.0", + "prefixLen":25, + "network":"194.41.80.0\/25", + "version":50285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.80.0", + "prefixLen":25, + "network":"194.41.80.0\/25", + "version":50285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.80.128", + "prefixLen":25, + "network":"194.41.80.128\/25", + "version":50284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.80.128", + "prefixLen":25, + "network":"194.41.80.128\/25", + "version":50284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.81.0", + "prefixLen":25, + "network":"194.41.81.0\/25", + "version":50283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.81.0", + "prefixLen":25, + "network":"194.41.81.0\/25", + "version":50283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.81.128", + "prefixLen":25, + "network":"194.41.81.128\/25", + "version":50282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.81.128", + "prefixLen":25, + "network":"194.41.81.128\/25", + "version":50282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.82.0", + "prefixLen":25, + "network":"194.41.82.0\/25", + "version":50281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.82.0", + "prefixLen":25, + "network":"194.41.82.0\/25", + "version":50281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.82.128", + "prefixLen":25, + "network":"194.41.82.128\/25", + "version":50280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.82.128", + "prefixLen":25, + "network":"194.41.82.128\/25", + "version":50280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.83.0", + "prefixLen":25, + "network":"194.41.83.0\/25", + "version":50279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.83.0", + "prefixLen":25, + "network":"194.41.83.0\/25", + "version":50279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.83.128", + "prefixLen":25, + "network":"194.41.83.128\/25", + "version":50278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.83.128", + "prefixLen":25, + "network":"194.41.83.128\/25", + "version":50278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.96.0", + "prefixLen":25, + "network":"194.41.96.0\/25", + "version":50277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.96.0", + "prefixLen":25, + "network":"194.41.96.0\/25", + "version":50277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.96.128", + "prefixLen":25, + "network":"194.41.96.128\/25", + "version":50276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.96.128", + "prefixLen":25, + "network":"194.41.96.128\/25", + "version":50276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.97.0", + "prefixLen":25, + "network":"194.41.97.0\/25", + "version":50275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.97.0", + "prefixLen":25, + "network":"194.41.97.0\/25", + "version":50275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.97.128", + "prefixLen":25, + "network":"194.41.97.128\/25", + "version":50274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.97.128", + "prefixLen":25, + "network":"194.41.97.128\/25", + "version":50274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.98.0", + "prefixLen":25, + "network":"194.41.98.0\/25", + "version":50273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.98.0", + "prefixLen":25, + "network":"194.41.98.0\/25", + "version":50273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.98.128", + "prefixLen":25, + "network":"194.41.98.128\/25", + "version":50272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.98.128", + "prefixLen":25, + "network":"194.41.98.128\/25", + "version":50272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.99.0", + "prefixLen":25, + "network":"194.41.99.0\/25", + "version":50271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.99.0", + "prefixLen":25, + "network":"194.41.99.0\/25", + "version":50271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.99.128", + "prefixLen":25, + "network":"194.41.99.128\/25", + "version":50270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.99.128", + "prefixLen":25, + "network":"194.41.99.128\/25", + "version":50270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.112.0", + "prefixLen":25, + "network":"194.41.112.0\/25", + "version":50269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.112.0", + "prefixLen":25, + "network":"194.41.112.0\/25", + "version":50269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.112.128", + "prefixLen":25, + "network":"194.41.112.128\/25", + "version":50268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.112.128", + "prefixLen":25, + "network":"194.41.112.128\/25", + "version":50268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.113.0", + "prefixLen":25, + "network":"194.41.113.0\/25", + "version":50267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.113.0", + "prefixLen":25, + "network":"194.41.113.0\/25", + "version":50267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.113.128", + "prefixLen":25, + "network":"194.41.113.128\/25", + "version":50266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.113.128", + "prefixLen":25, + "network":"194.41.113.128\/25", + "version":50266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.114.0", + "prefixLen":25, + "network":"194.41.114.0\/25", + "version":50265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.114.0", + "prefixLen":25, + "network":"194.41.114.0\/25", + "version":50265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.114.128", + "prefixLen":25, + "network":"194.41.114.128\/25", + "version":50264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.114.128", + "prefixLen":25, + "network":"194.41.114.128\/25", + "version":50264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.115.0", + "prefixLen":25, + "network":"194.41.115.0\/25", + "version":50263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.115.0", + "prefixLen":25, + "network":"194.41.115.0\/25", + "version":50263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.115.128", + "prefixLen":25, + "network":"194.41.115.128\/25", + "version":50262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.115.128", + "prefixLen":25, + "network":"194.41.115.128\/25", + "version":50262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.128.0", + "prefixLen":25, + "network":"194.41.128.0\/25", + "version":50261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.128.0", + "prefixLen":25, + "network":"194.41.128.0\/25", + "version":50261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.128.128", + "prefixLen":25, + "network":"194.41.128.128\/25", + "version":50260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.128.128", + "prefixLen":25, + "network":"194.41.128.128\/25", + "version":50260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.129.0", + "prefixLen":25, + "network":"194.41.129.0\/25", + "version":50259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.129.0", + "prefixLen":25, + "network":"194.41.129.0\/25", + "version":50259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.129.128", + "prefixLen":25, + "network":"194.41.129.128\/25", + "version":50258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.129.128", + "prefixLen":25, + "network":"194.41.129.128\/25", + "version":50258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.130.0", + "prefixLen":25, + "network":"194.41.130.0\/25", + "version":50257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.130.0", + "prefixLen":25, + "network":"194.41.130.0\/25", + "version":50257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.130.128", + "prefixLen":25, + "network":"194.41.130.128\/25", + "version":50256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.130.128", + "prefixLen":25, + "network":"194.41.130.128\/25", + "version":50256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.131.0", + "prefixLen":25, + "network":"194.41.131.0\/25", + "version":50255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.131.0", + "prefixLen":25, + "network":"194.41.131.0\/25", + "version":50255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.131.128", + "prefixLen":25, + "network":"194.41.131.128\/25", + "version":50254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.131.128", + "prefixLen":25, + "network":"194.41.131.128\/25", + "version":50254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.144.0", + "prefixLen":25, + "network":"194.41.144.0\/25", + "version":50253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.144.0", + "prefixLen":25, + "network":"194.41.144.0\/25", + "version":50253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.144.128", + "prefixLen":25, + "network":"194.41.144.128\/25", + "version":50252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.144.128", + "prefixLen":25, + "network":"194.41.144.128\/25", + "version":50252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.145.0", + "prefixLen":25, + "network":"194.41.145.0\/25", + "version":50251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.145.0", + "prefixLen":25, + "network":"194.41.145.0\/25", + "version":50251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.145.128", + "prefixLen":25, + "network":"194.41.145.128\/25", + "version":50250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.145.128", + "prefixLen":25, + "network":"194.41.145.128\/25", + "version":50250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.146.0", + "prefixLen":25, + "network":"194.41.146.0\/25", + "version":50249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.146.0", + "prefixLen":25, + "network":"194.41.146.0\/25", + "version":50249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.146.128", + "prefixLen":25, + "network":"194.41.146.128\/25", + "version":50248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.146.128", + "prefixLen":25, + "network":"194.41.146.128\/25", + "version":50248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.147.0", + "prefixLen":25, + "network":"194.41.147.0\/25", + "version":50247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.147.0", + "prefixLen":25, + "network":"194.41.147.0\/25", + "version":50247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.147.128", + "prefixLen":25, + "network":"194.41.147.128\/25", + "version":50246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.147.128", + "prefixLen":25, + "network":"194.41.147.128\/25", + "version":50246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.160.0", + "prefixLen":25, + "network":"194.41.160.0\/25", + "version":50245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.160.0", + "prefixLen":25, + "network":"194.41.160.0\/25", + "version":50245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.160.128", + "prefixLen":25, + "network":"194.41.160.128\/25", + "version":50244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.160.128", + "prefixLen":25, + "network":"194.41.160.128\/25", + "version":50244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.161.0", + "prefixLen":25, + "network":"194.41.161.0\/25", + "version":50243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.161.0", + "prefixLen":25, + "network":"194.41.161.0\/25", + "version":50243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.161.128", + "prefixLen":25, + "network":"194.41.161.128\/25", + "version":50242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.161.128", + "prefixLen":25, + "network":"194.41.161.128\/25", + "version":50242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.162.0", + "prefixLen":25, + "network":"194.41.162.0\/25", + "version":50241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.162.0", + "prefixLen":25, + "network":"194.41.162.0\/25", + "version":50241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.162.128", + "prefixLen":25, + "network":"194.41.162.128\/25", + "version":50240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.162.128", + "prefixLen":25, + "network":"194.41.162.128\/25", + "version":50240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.163.0", + "prefixLen":25, + "network":"194.41.163.0\/25", + "version":50239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.163.0", + "prefixLen":25, + "network":"194.41.163.0\/25", + "version":50239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.163.128", + "prefixLen":25, + "network":"194.41.163.128\/25", + "version":50238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.163.128", + "prefixLen":25, + "network":"194.41.163.128\/25", + "version":50238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.176.0", + "prefixLen":25, + "network":"194.41.176.0\/25", + "version":50237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.176.0", + "prefixLen":25, + "network":"194.41.176.0\/25", + "version":50237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.176.128", + "prefixLen":25, + "network":"194.41.176.128\/25", + "version":50236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.176.128", + "prefixLen":25, + "network":"194.41.176.128\/25", + "version":50236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.177.0", + "prefixLen":25, + "network":"194.41.177.0\/25", + "version":50235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.177.0", + "prefixLen":25, + "network":"194.41.177.0\/25", + "version":50235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.177.128", + "prefixLen":25, + "network":"194.41.177.128\/25", + "version":50234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.177.128", + "prefixLen":25, + "network":"194.41.177.128\/25", + "version":50234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.178.0", + "prefixLen":25, + "network":"194.41.178.0\/25", + "version":50233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.178.0", + "prefixLen":25, + "network":"194.41.178.0\/25", + "version":50233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.178.128", + "prefixLen":25, + "network":"194.41.178.128\/25", + "version":50232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.178.128", + "prefixLen":25, + "network":"194.41.178.128\/25", + "version":50232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.179.0", + "prefixLen":25, + "network":"194.41.179.0\/25", + "version":50231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.179.0", + "prefixLen":25, + "network":"194.41.179.0\/25", + "version":50231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.179.128", + "prefixLen":25, + "network":"194.41.179.128\/25", + "version":50230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.179.128", + "prefixLen":25, + "network":"194.41.179.128\/25", + "version":50230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.192.0", + "prefixLen":25, + "network":"194.41.192.0\/25", + "version":50229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.192.0", + "prefixLen":25, + "network":"194.41.192.0\/25", + "version":50229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.192.128", + "prefixLen":25, + "network":"194.41.192.128\/25", + "version":50228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.192.128", + "prefixLen":25, + "network":"194.41.192.128\/25", + "version":50228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.193.0", + "prefixLen":25, + "network":"194.41.193.0\/25", + "version":50227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.193.0", + "prefixLen":25, + "network":"194.41.193.0\/25", + "version":50227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.193.128", + "prefixLen":25, + "network":"194.41.193.128\/25", + "version":50226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.193.128", + "prefixLen":25, + "network":"194.41.193.128\/25", + "version":50226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.194.0", + "prefixLen":25, + "network":"194.41.194.0\/25", + "version":50225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.194.0", + "prefixLen":25, + "network":"194.41.194.0\/25", + "version":50225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.194.128", + "prefixLen":25, + "network":"194.41.194.128\/25", + "version":50224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.194.128", + "prefixLen":25, + "network":"194.41.194.128\/25", + "version":50224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.195.0", + "prefixLen":25, + "network":"194.41.195.0\/25", + "version":50223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.195.0", + "prefixLen":25, + "network":"194.41.195.0\/25", + "version":50223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.195.128", + "prefixLen":25, + "network":"194.41.195.128\/25", + "version":50222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.195.128", + "prefixLen":25, + "network":"194.41.195.128\/25", + "version":50222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.208.0", + "prefixLen":25, + "network":"194.41.208.0\/25", + "version":50221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.208.0", + "prefixLen":25, + "network":"194.41.208.0\/25", + "version":50221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.208.128", + "prefixLen":25, + "network":"194.41.208.128\/25", + "version":50220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.208.128", + "prefixLen":25, + "network":"194.41.208.128\/25", + "version":50220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.209.0", + "prefixLen":25, + "network":"194.41.209.0\/25", + "version":50219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.209.0", + "prefixLen":25, + "network":"194.41.209.0\/25", + "version":50219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.209.128", + "prefixLen":25, + "network":"194.41.209.128\/25", + "version":50218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.209.128", + "prefixLen":25, + "network":"194.41.209.128\/25", + "version":50218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.210.0", + "prefixLen":25, + "network":"194.41.210.0\/25", + "version":50217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.210.0", + "prefixLen":25, + "network":"194.41.210.0\/25", + "version":50217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.210.128", + "prefixLen":25, + "network":"194.41.210.128\/25", + "version":50216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.210.128", + "prefixLen":25, + "network":"194.41.210.128\/25", + "version":50216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.211.0", + "prefixLen":25, + "network":"194.41.211.0\/25", + "version":50215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.211.0", + "prefixLen":25, + "network":"194.41.211.0\/25", + "version":50215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.211.128", + "prefixLen":25, + "network":"194.41.211.128\/25", + "version":50214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.211.128", + "prefixLen":25, + "network":"194.41.211.128\/25", + "version":50214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.224.0", + "prefixLen":25, + "network":"194.41.224.0\/25", + "version":50213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.224.0", + "prefixLen":25, + "network":"194.41.224.0\/25", + "version":50213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.224.128", + "prefixLen":25, + "network":"194.41.224.128\/25", + "version":50212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.224.128", + "prefixLen":25, + "network":"194.41.224.128\/25", + "version":50212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.225.0", + "prefixLen":25, + "network":"194.41.225.0\/25", + "version":50211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.225.0", + "prefixLen":25, + "network":"194.41.225.0\/25", + "version":50211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.225.128", + "prefixLen":25, + "network":"194.41.225.128\/25", + "version":50210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.225.128", + "prefixLen":25, + "network":"194.41.225.128\/25", + "version":50210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.226.0", + "prefixLen":25, + "network":"194.41.226.0\/25", + "version":50209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.226.0", + "prefixLen":25, + "network":"194.41.226.0\/25", + "version":50209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.226.128", + "prefixLen":25, + "network":"194.41.226.128\/25", + "version":50208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.226.128", + "prefixLen":25, + "network":"194.41.226.128\/25", + "version":50208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.227.0", + "prefixLen":25, + "network":"194.41.227.0\/25", + "version":50207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.227.0", + "prefixLen":25, + "network":"194.41.227.0\/25", + "version":50207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.227.128", + "prefixLen":25, + "network":"194.41.227.128\/25", + "version":50206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.227.128", + "prefixLen":25, + "network":"194.41.227.128\/25", + "version":50206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.240.0", + "prefixLen":25, + "network":"194.41.240.0\/25", + "version":50205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.240.0", + "prefixLen":25, + "network":"194.41.240.0\/25", + "version":50205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.240.128", + "prefixLen":25, + "network":"194.41.240.128\/25", + "version":50204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.240.128", + "prefixLen":25, + "network":"194.41.240.128\/25", + "version":50204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.241.0", + "prefixLen":25, + "network":"194.41.241.0\/25", + "version":50203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.241.0", + "prefixLen":25, + "network":"194.41.241.0\/25", + "version":50203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.241.128", + "prefixLen":25, + "network":"194.41.241.128\/25", + "version":50202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.241.128", + "prefixLen":25, + "network":"194.41.241.128\/25", + "version":50202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.242.0", + "prefixLen":25, + "network":"194.41.242.0\/25", + "version":50201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.242.0", + "prefixLen":25, + "network":"194.41.242.0\/25", + "version":50201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.242.128", + "prefixLen":25, + "network":"194.41.242.128\/25", + "version":50200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.242.128", + "prefixLen":25, + "network":"194.41.242.128\/25", + "version":50200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.243.0", + "prefixLen":25, + "network":"194.41.243.0\/25", + "version":50199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.243.0", + "prefixLen":25, + "network":"194.41.243.0\/25", + "version":50199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.41.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.41.243.128", + "prefixLen":25, + "network":"194.41.243.128\/25", + "version":50198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.41.243.128", + "prefixLen":25, + "network":"194.41.243.128\/25", + "version":50198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64985 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.0.0", + "prefixLen":25, + "network":"194.42.0.0\/25", + "version":50325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.0.0", + "prefixLen":25, + "network":"194.42.0.0\/25", + "version":50325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.0.128", + "prefixLen":25, + "network":"194.42.0.128\/25", + "version":50452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.0.128", + "prefixLen":25, + "network":"194.42.0.128\/25", + "version":50452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.1.0", + "prefixLen":25, + "network":"194.42.1.0\/25", + "version":50451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.1.0", + "prefixLen":25, + "network":"194.42.1.0\/25", + "version":50451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.1.128", + "prefixLen":25, + "network":"194.42.1.128\/25", + "version":50450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.1.128", + "prefixLen":25, + "network":"194.42.1.128\/25", + "version":50450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.2.0", + "prefixLen":25, + "network":"194.42.2.0\/25", + "version":50449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.2.0", + "prefixLen":25, + "network":"194.42.2.0\/25", + "version":50449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.2.128", + "prefixLen":25, + "network":"194.42.2.128\/25", + "version":50448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.2.128", + "prefixLen":25, + "network":"194.42.2.128\/25", + "version":50448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.3.0", + "prefixLen":25, + "network":"194.42.3.0\/25", + "version":50447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.3.0", + "prefixLen":25, + "network":"194.42.3.0\/25", + "version":50447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.3.128", + "prefixLen":25, + "network":"194.42.3.128\/25", + "version":50446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.3.128", + "prefixLen":25, + "network":"194.42.3.128\/25", + "version":50446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.16.0", + "prefixLen":25, + "network":"194.42.16.0\/25", + "version":50445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.16.0", + "prefixLen":25, + "network":"194.42.16.0\/25", + "version":50445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.16.128", + "prefixLen":25, + "network":"194.42.16.128\/25", + "version":50444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.16.128", + "prefixLen":25, + "network":"194.42.16.128\/25", + "version":50444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.17.0", + "prefixLen":25, + "network":"194.42.17.0\/25", + "version":50443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.17.0", + "prefixLen":25, + "network":"194.42.17.0\/25", + "version":50443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.17.128", + "prefixLen":25, + "network":"194.42.17.128\/25", + "version":50442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.17.128", + "prefixLen":25, + "network":"194.42.17.128\/25", + "version":50442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.18.0", + "prefixLen":25, + "network":"194.42.18.0\/25", + "version":50441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.18.0", + "prefixLen":25, + "network":"194.42.18.0\/25", + "version":50441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.18.128", + "prefixLen":25, + "network":"194.42.18.128\/25", + "version":50440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.18.128", + "prefixLen":25, + "network":"194.42.18.128\/25", + "version":50440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.19.0", + "prefixLen":25, + "network":"194.42.19.0\/25", + "version":50439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.19.0", + "prefixLen":25, + "network":"194.42.19.0\/25", + "version":50439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.19.128", + "prefixLen":25, + "network":"194.42.19.128\/25", + "version":50438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.19.128", + "prefixLen":25, + "network":"194.42.19.128\/25", + "version":50438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.32.0", + "prefixLen":25, + "network":"194.42.32.0\/25", + "version":50437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.32.0", + "prefixLen":25, + "network":"194.42.32.0\/25", + "version":50437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.32.128", + "prefixLen":25, + "network":"194.42.32.128\/25", + "version":50436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.32.128", + "prefixLen":25, + "network":"194.42.32.128\/25", + "version":50436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.33.0", + "prefixLen":25, + "network":"194.42.33.0\/25", + "version":50435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.33.0", + "prefixLen":25, + "network":"194.42.33.0\/25", + "version":50435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.33.128", + "prefixLen":25, + "network":"194.42.33.128\/25", + "version":50434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.33.128", + "prefixLen":25, + "network":"194.42.33.128\/25", + "version":50434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.34.0", + "prefixLen":25, + "network":"194.42.34.0\/25", + "version":50433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.34.0", + "prefixLen":25, + "network":"194.42.34.0\/25", + "version":50433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.34.128", + "prefixLen":25, + "network":"194.42.34.128\/25", + "version":50432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.34.128", + "prefixLen":25, + "network":"194.42.34.128\/25", + "version":50432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.35.0", + "prefixLen":25, + "network":"194.42.35.0\/25", + "version":50431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.35.0", + "prefixLen":25, + "network":"194.42.35.0\/25", + "version":50431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.35.128", + "prefixLen":25, + "network":"194.42.35.128\/25", + "version":50430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.35.128", + "prefixLen":25, + "network":"194.42.35.128\/25", + "version":50430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.48.0", + "prefixLen":25, + "network":"194.42.48.0\/25", + "version":50429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.48.0", + "prefixLen":25, + "network":"194.42.48.0\/25", + "version":50429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.48.128", + "prefixLen":25, + "network":"194.42.48.128\/25", + "version":50428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.48.128", + "prefixLen":25, + "network":"194.42.48.128\/25", + "version":50428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.49.0", + "prefixLen":25, + "network":"194.42.49.0\/25", + "version":50427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.49.0", + "prefixLen":25, + "network":"194.42.49.0\/25", + "version":50427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.49.128", + "prefixLen":25, + "network":"194.42.49.128\/25", + "version":50426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.49.128", + "prefixLen":25, + "network":"194.42.49.128\/25", + "version":50426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.50.0", + "prefixLen":25, + "network":"194.42.50.0\/25", + "version":50425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.50.0", + "prefixLen":25, + "network":"194.42.50.0\/25", + "version":50425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.50.128", + "prefixLen":25, + "network":"194.42.50.128\/25", + "version":50424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.50.128", + "prefixLen":25, + "network":"194.42.50.128\/25", + "version":50424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.51.0", + "prefixLen":25, + "network":"194.42.51.0\/25", + "version":50423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.51.0", + "prefixLen":25, + "network":"194.42.51.0\/25", + "version":50423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.51.128", + "prefixLen":25, + "network":"194.42.51.128\/25", + "version":50422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.51.128", + "prefixLen":25, + "network":"194.42.51.128\/25", + "version":50422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.64.0", + "prefixLen":25, + "network":"194.42.64.0\/25", + "version":50421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.64.0", + "prefixLen":25, + "network":"194.42.64.0\/25", + "version":50421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.64.128", + "prefixLen":25, + "network":"194.42.64.128\/25", + "version":50420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.64.128", + "prefixLen":25, + "network":"194.42.64.128\/25", + "version":50420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.65.0", + "prefixLen":25, + "network":"194.42.65.0\/25", + "version":50419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.65.0", + "prefixLen":25, + "network":"194.42.65.0\/25", + "version":50419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.65.128", + "prefixLen":25, + "network":"194.42.65.128\/25", + "version":50418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.65.128", + "prefixLen":25, + "network":"194.42.65.128\/25", + "version":50418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.66.0", + "prefixLen":25, + "network":"194.42.66.0\/25", + "version":50417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.66.0", + "prefixLen":25, + "network":"194.42.66.0\/25", + "version":50417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.66.128", + "prefixLen":25, + "network":"194.42.66.128\/25", + "version":50416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.66.128", + "prefixLen":25, + "network":"194.42.66.128\/25", + "version":50416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.67.0", + "prefixLen":25, + "network":"194.42.67.0\/25", + "version":50415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.67.0", + "prefixLen":25, + "network":"194.42.67.0\/25", + "version":50415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.67.128", + "prefixLen":25, + "network":"194.42.67.128\/25", + "version":50414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.67.128", + "prefixLen":25, + "network":"194.42.67.128\/25", + "version":50414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.80.0", + "prefixLen":25, + "network":"194.42.80.0\/25", + "version":50413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.80.0", + "prefixLen":25, + "network":"194.42.80.0\/25", + "version":50413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.80.128", + "prefixLen":25, + "network":"194.42.80.128\/25", + "version":50412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.80.128", + "prefixLen":25, + "network":"194.42.80.128\/25", + "version":50412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.81.0", + "prefixLen":25, + "network":"194.42.81.0\/25", + "version":50411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.81.0", + "prefixLen":25, + "network":"194.42.81.0\/25", + "version":50411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.81.128", + "prefixLen":25, + "network":"194.42.81.128\/25", + "version":50410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.81.128", + "prefixLen":25, + "network":"194.42.81.128\/25", + "version":50410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.82.0", + "prefixLen":25, + "network":"194.42.82.0\/25", + "version":50409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.82.0", + "prefixLen":25, + "network":"194.42.82.0\/25", + "version":50409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.82.128", + "prefixLen":25, + "network":"194.42.82.128\/25", + "version":50408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.82.128", + "prefixLen":25, + "network":"194.42.82.128\/25", + "version":50408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.83.0", + "prefixLen":25, + "network":"194.42.83.0\/25", + "version":50407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.83.0", + "prefixLen":25, + "network":"194.42.83.0\/25", + "version":50407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.83.128", + "prefixLen":25, + "network":"194.42.83.128\/25", + "version":50406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.83.128", + "prefixLen":25, + "network":"194.42.83.128\/25", + "version":50406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.96.0", + "prefixLen":25, + "network":"194.42.96.0\/25", + "version":50405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.96.0", + "prefixLen":25, + "network":"194.42.96.0\/25", + "version":50405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.96.128", + "prefixLen":25, + "network":"194.42.96.128\/25", + "version":50404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.96.128", + "prefixLen":25, + "network":"194.42.96.128\/25", + "version":50404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.97.0", + "prefixLen":25, + "network":"194.42.97.0\/25", + "version":50403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.97.0", + "prefixLen":25, + "network":"194.42.97.0\/25", + "version":50403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.97.128", + "prefixLen":25, + "network":"194.42.97.128\/25", + "version":50402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.97.128", + "prefixLen":25, + "network":"194.42.97.128\/25", + "version":50402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.98.0", + "prefixLen":25, + "network":"194.42.98.0\/25", + "version":50401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.98.0", + "prefixLen":25, + "network":"194.42.98.0\/25", + "version":50401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.98.128", + "prefixLen":25, + "network":"194.42.98.128\/25", + "version":50400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.98.128", + "prefixLen":25, + "network":"194.42.98.128\/25", + "version":50400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.99.0", + "prefixLen":25, + "network":"194.42.99.0\/25", + "version":50399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.99.0", + "prefixLen":25, + "network":"194.42.99.0\/25", + "version":50399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.99.128", + "prefixLen":25, + "network":"194.42.99.128\/25", + "version":50398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.99.128", + "prefixLen":25, + "network":"194.42.99.128\/25", + "version":50398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.112.0", + "prefixLen":25, + "network":"194.42.112.0\/25", + "version":50397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.112.0", + "prefixLen":25, + "network":"194.42.112.0\/25", + "version":50397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.112.128", + "prefixLen":25, + "network":"194.42.112.128\/25", + "version":50396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.112.128", + "prefixLen":25, + "network":"194.42.112.128\/25", + "version":50396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.113.0", + "prefixLen":25, + "network":"194.42.113.0\/25", + "version":50395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.113.0", + "prefixLen":25, + "network":"194.42.113.0\/25", + "version":50395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.113.128", + "prefixLen":25, + "network":"194.42.113.128\/25", + "version":50394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.113.128", + "prefixLen":25, + "network":"194.42.113.128\/25", + "version":50394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.114.0", + "prefixLen":25, + "network":"194.42.114.0\/25", + "version":50393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.114.0", + "prefixLen":25, + "network":"194.42.114.0\/25", + "version":50393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.114.128", + "prefixLen":25, + "network":"194.42.114.128\/25", + "version":50392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.114.128", + "prefixLen":25, + "network":"194.42.114.128\/25", + "version":50392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.115.0", + "prefixLen":25, + "network":"194.42.115.0\/25", + "version":50391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.115.0", + "prefixLen":25, + "network":"194.42.115.0\/25", + "version":50391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.115.128", + "prefixLen":25, + "network":"194.42.115.128\/25", + "version":50390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.115.128", + "prefixLen":25, + "network":"194.42.115.128\/25", + "version":50390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.128.0", + "prefixLen":25, + "network":"194.42.128.0\/25", + "version":50389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.128.0", + "prefixLen":25, + "network":"194.42.128.0\/25", + "version":50389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.128.128", + "prefixLen":25, + "network":"194.42.128.128\/25", + "version":50388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.128.128", + "prefixLen":25, + "network":"194.42.128.128\/25", + "version":50388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.129.0", + "prefixLen":25, + "network":"194.42.129.0\/25", + "version":50387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.129.0", + "prefixLen":25, + "network":"194.42.129.0\/25", + "version":50387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.129.128", + "prefixLen":25, + "network":"194.42.129.128\/25", + "version":50386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.129.128", + "prefixLen":25, + "network":"194.42.129.128\/25", + "version":50386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.130.0", + "prefixLen":25, + "network":"194.42.130.0\/25", + "version":50385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.130.0", + "prefixLen":25, + "network":"194.42.130.0\/25", + "version":50385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.130.128", + "prefixLen":25, + "network":"194.42.130.128\/25", + "version":50384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.130.128", + "prefixLen":25, + "network":"194.42.130.128\/25", + "version":50384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.131.0", + "prefixLen":25, + "network":"194.42.131.0\/25", + "version":50383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.131.0", + "prefixLen":25, + "network":"194.42.131.0\/25", + "version":50383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.131.128", + "prefixLen":25, + "network":"194.42.131.128\/25", + "version":50382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.131.128", + "prefixLen":25, + "network":"194.42.131.128\/25", + "version":50382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.144.0", + "prefixLen":25, + "network":"194.42.144.0\/25", + "version":50381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.144.0", + "prefixLen":25, + "network":"194.42.144.0\/25", + "version":50381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.144.128", + "prefixLen":25, + "network":"194.42.144.128\/25", + "version":50380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.144.128", + "prefixLen":25, + "network":"194.42.144.128\/25", + "version":50380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.145.0", + "prefixLen":25, + "network":"194.42.145.0\/25", + "version":50379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.145.0", + "prefixLen":25, + "network":"194.42.145.0\/25", + "version":50379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.145.128", + "prefixLen":25, + "network":"194.42.145.128\/25", + "version":50378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.145.128", + "prefixLen":25, + "network":"194.42.145.128\/25", + "version":50378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.146.0", + "prefixLen":25, + "network":"194.42.146.0\/25", + "version":50377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.146.0", + "prefixLen":25, + "network":"194.42.146.0\/25", + "version":50377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.146.128", + "prefixLen":25, + "network":"194.42.146.128\/25", + "version":50376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.146.128", + "prefixLen":25, + "network":"194.42.146.128\/25", + "version":50376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.147.0", + "prefixLen":25, + "network":"194.42.147.0\/25", + "version":50375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.147.0", + "prefixLen":25, + "network":"194.42.147.0\/25", + "version":50375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.147.128", + "prefixLen":25, + "network":"194.42.147.128\/25", + "version":50374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.147.128", + "prefixLen":25, + "network":"194.42.147.128\/25", + "version":50374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.160.0", + "prefixLen":25, + "network":"194.42.160.0\/25", + "version":50373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.160.0", + "prefixLen":25, + "network":"194.42.160.0\/25", + "version":50373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.160.128", + "prefixLen":25, + "network":"194.42.160.128\/25", + "version":50372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.160.128", + "prefixLen":25, + "network":"194.42.160.128\/25", + "version":50372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.161.0", + "prefixLen":25, + "network":"194.42.161.0\/25", + "version":50371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.161.0", + "prefixLen":25, + "network":"194.42.161.0\/25", + "version":50371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.161.128", + "prefixLen":25, + "network":"194.42.161.128\/25", + "version":50370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.161.128", + "prefixLen":25, + "network":"194.42.161.128\/25", + "version":50370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.162.0", + "prefixLen":25, + "network":"194.42.162.0\/25", + "version":50369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.162.0", + "prefixLen":25, + "network":"194.42.162.0\/25", + "version":50369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.162.128", + "prefixLen":25, + "network":"194.42.162.128\/25", + "version":50368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.162.128", + "prefixLen":25, + "network":"194.42.162.128\/25", + "version":50368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.163.0", + "prefixLen":25, + "network":"194.42.163.0\/25", + "version":50367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.163.0", + "prefixLen":25, + "network":"194.42.163.0\/25", + "version":50367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.163.128", + "prefixLen":25, + "network":"194.42.163.128\/25", + "version":50366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.163.128", + "prefixLen":25, + "network":"194.42.163.128\/25", + "version":50366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.176.0", + "prefixLen":25, + "network":"194.42.176.0\/25", + "version":50365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.176.0", + "prefixLen":25, + "network":"194.42.176.0\/25", + "version":50365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.176.128", + "prefixLen":25, + "network":"194.42.176.128\/25", + "version":50364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.176.128", + "prefixLen":25, + "network":"194.42.176.128\/25", + "version":50364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.177.0", + "prefixLen":25, + "network":"194.42.177.0\/25", + "version":50363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.177.0", + "prefixLen":25, + "network":"194.42.177.0\/25", + "version":50363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.177.128", + "prefixLen":25, + "network":"194.42.177.128\/25", + "version":50362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.177.128", + "prefixLen":25, + "network":"194.42.177.128\/25", + "version":50362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.178.0", + "prefixLen":25, + "network":"194.42.178.0\/25", + "version":50361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.178.0", + "prefixLen":25, + "network":"194.42.178.0\/25", + "version":50361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.178.128", + "prefixLen":25, + "network":"194.42.178.128\/25", + "version":50360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.178.128", + "prefixLen":25, + "network":"194.42.178.128\/25", + "version":50360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.179.0", + "prefixLen":25, + "network":"194.42.179.0\/25", + "version":50359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.179.0", + "prefixLen":25, + "network":"194.42.179.0\/25", + "version":50359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.179.128", + "prefixLen":25, + "network":"194.42.179.128\/25", + "version":50358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.179.128", + "prefixLen":25, + "network":"194.42.179.128\/25", + "version":50358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.192.0", + "prefixLen":25, + "network":"194.42.192.0\/25", + "version":50357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.192.0", + "prefixLen":25, + "network":"194.42.192.0\/25", + "version":50357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.192.128", + "prefixLen":25, + "network":"194.42.192.128\/25", + "version":50356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.192.128", + "prefixLen":25, + "network":"194.42.192.128\/25", + "version":50356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.193.0", + "prefixLen":25, + "network":"194.42.193.0\/25", + "version":50355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.193.0", + "prefixLen":25, + "network":"194.42.193.0\/25", + "version":50355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.193.128", + "prefixLen":25, + "network":"194.42.193.128\/25", + "version":50354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.193.128", + "prefixLen":25, + "network":"194.42.193.128\/25", + "version":50354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.194.0", + "prefixLen":25, + "network":"194.42.194.0\/25", + "version":50353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.194.0", + "prefixLen":25, + "network":"194.42.194.0\/25", + "version":50353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.194.128", + "prefixLen":25, + "network":"194.42.194.128\/25", + "version":50352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.194.128", + "prefixLen":25, + "network":"194.42.194.128\/25", + "version":50352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.195.0", + "prefixLen":25, + "network":"194.42.195.0\/25", + "version":50351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.195.0", + "prefixLen":25, + "network":"194.42.195.0\/25", + "version":50351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.195.128", + "prefixLen":25, + "network":"194.42.195.128\/25", + "version":50350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.195.128", + "prefixLen":25, + "network":"194.42.195.128\/25", + "version":50350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.208.0", + "prefixLen":25, + "network":"194.42.208.0\/25", + "version":50349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.208.0", + "prefixLen":25, + "network":"194.42.208.0\/25", + "version":50349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.208.128", + "prefixLen":25, + "network":"194.42.208.128\/25", + "version":50348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.208.128", + "prefixLen":25, + "network":"194.42.208.128\/25", + "version":50348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.209.0", + "prefixLen":25, + "network":"194.42.209.0\/25", + "version":50347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.209.0", + "prefixLen":25, + "network":"194.42.209.0\/25", + "version":50347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.209.128", + "prefixLen":25, + "network":"194.42.209.128\/25", + "version":50346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.209.128", + "prefixLen":25, + "network":"194.42.209.128\/25", + "version":50346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.210.0", + "prefixLen":25, + "network":"194.42.210.0\/25", + "version":50345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.210.0", + "prefixLen":25, + "network":"194.42.210.0\/25", + "version":50345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.210.128", + "prefixLen":25, + "network":"194.42.210.128\/25", + "version":50344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.210.128", + "prefixLen":25, + "network":"194.42.210.128\/25", + "version":50344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.211.0", + "prefixLen":25, + "network":"194.42.211.0\/25", + "version":50343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.211.0", + "prefixLen":25, + "network":"194.42.211.0\/25", + "version":50343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.211.128", + "prefixLen":25, + "network":"194.42.211.128\/25", + "version":50342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.211.128", + "prefixLen":25, + "network":"194.42.211.128\/25", + "version":50342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.224.0", + "prefixLen":25, + "network":"194.42.224.0\/25", + "version":50341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.224.0", + "prefixLen":25, + "network":"194.42.224.0\/25", + "version":50341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.224.128", + "prefixLen":25, + "network":"194.42.224.128\/25", + "version":50340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.224.128", + "prefixLen":25, + "network":"194.42.224.128\/25", + "version":50340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.225.0", + "prefixLen":25, + "network":"194.42.225.0\/25", + "version":50339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.225.0", + "prefixLen":25, + "network":"194.42.225.0\/25", + "version":50339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.225.128", + "prefixLen":25, + "network":"194.42.225.128\/25", + "version":50338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.225.128", + "prefixLen":25, + "network":"194.42.225.128\/25", + "version":50338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.226.0", + "prefixLen":25, + "network":"194.42.226.0\/25", + "version":50337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.226.0", + "prefixLen":25, + "network":"194.42.226.0\/25", + "version":50337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.226.128", + "prefixLen":25, + "network":"194.42.226.128\/25", + "version":50336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.226.128", + "prefixLen":25, + "network":"194.42.226.128\/25", + "version":50336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.227.0", + "prefixLen":25, + "network":"194.42.227.0\/25", + "version":50335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.227.0", + "prefixLen":25, + "network":"194.42.227.0\/25", + "version":50335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.227.128", + "prefixLen":25, + "network":"194.42.227.128\/25", + "version":50334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.227.128", + "prefixLen":25, + "network":"194.42.227.128\/25", + "version":50334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.240.0", + "prefixLen":25, + "network":"194.42.240.0\/25", + "version":50333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.240.0", + "prefixLen":25, + "network":"194.42.240.0\/25", + "version":50333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.240.128", + "prefixLen":25, + "network":"194.42.240.128\/25", + "version":50332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.240.128", + "prefixLen":25, + "network":"194.42.240.128\/25", + "version":50332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.241.0", + "prefixLen":25, + "network":"194.42.241.0\/25", + "version":50331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.241.0", + "prefixLen":25, + "network":"194.42.241.0\/25", + "version":50331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.241.128", + "prefixLen":25, + "network":"194.42.241.128\/25", + "version":50330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.241.128", + "prefixLen":25, + "network":"194.42.241.128\/25", + "version":50330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.242.0", + "prefixLen":25, + "network":"194.42.242.0\/25", + "version":50329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.242.0", + "prefixLen":25, + "network":"194.42.242.0\/25", + "version":50329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.242.128", + "prefixLen":25, + "network":"194.42.242.128\/25", + "version":50328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.242.128", + "prefixLen":25, + "network":"194.42.242.128\/25", + "version":50328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.243.0", + "prefixLen":25, + "network":"194.42.243.0\/25", + "version":50327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.243.0", + "prefixLen":25, + "network":"194.42.243.0\/25", + "version":50327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.42.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.42.243.128", + "prefixLen":25, + "network":"194.42.243.128\/25", + "version":50326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.42.243.128", + "prefixLen":25, + "network":"194.42.243.128\/25", + "version":50326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64986 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.0.0", + "prefixLen":25, + "network":"194.43.0.0\/25", + "version":50453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.0.0", + "prefixLen":25, + "network":"194.43.0.0\/25", + "version":50453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.0.128", + "prefixLen":25, + "network":"194.43.0.128\/25", + "version":50580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.0.128", + "prefixLen":25, + "network":"194.43.0.128\/25", + "version":50580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.1.0", + "prefixLen":25, + "network":"194.43.1.0\/25", + "version":50579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.1.0", + "prefixLen":25, + "network":"194.43.1.0\/25", + "version":50579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.1.128", + "prefixLen":25, + "network":"194.43.1.128\/25", + "version":50578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.1.128", + "prefixLen":25, + "network":"194.43.1.128\/25", + "version":50578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.2.0", + "prefixLen":25, + "network":"194.43.2.0\/25", + "version":50577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.2.0", + "prefixLen":25, + "network":"194.43.2.0\/25", + "version":50577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.2.128", + "prefixLen":25, + "network":"194.43.2.128\/25", + "version":50576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.2.128", + "prefixLen":25, + "network":"194.43.2.128\/25", + "version":50576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.3.0", + "prefixLen":25, + "network":"194.43.3.0\/25", + "version":50575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.3.0", + "prefixLen":25, + "network":"194.43.3.0\/25", + "version":50575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.3.128", + "prefixLen":25, + "network":"194.43.3.128\/25", + "version":50574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.3.128", + "prefixLen":25, + "network":"194.43.3.128\/25", + "version":50574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.16.0", + "prefixLen":25, + "network":"194.43.16.0\/25", + "version":50573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.16.0", + "prefixLen":25, + "network":"194.43.16.0\/25", + "version":50573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.16.128", + "prefixLen":25, + "network":"194.43.16.128\/25", + "version":50572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.16.128", + "prefixLen":25, + "network":"194.43.16.128\/25", + "version":50572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.17.0", + "prefixLen":25, + "network":"194.43.17.0\/25", + "version":50571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.17.0", + "prefixLen":25, + "network":"194.43.17.0\/25", + "version":50571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.17.128", + "prefixLen":25, + "network":"194.43.17.128\/25", + "version":50570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.17.128", + "prefixLen":25, + "network":"194.43.17.128\/25", + "version":50570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.18.0", + "prefixLen":25, + "network":"194.43.18.0\/25", + "version":50569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.18.0", + "prefixLen":25, + "network":"194.43.18.0\/25", + "version":50569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.18.128", + "prefixLen":25, + "network":"194.43.18.128\/25", + "version":50568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.18.128", + "prefixLen":25, + "network":"194.43.18.128\/25", + "version":50568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.19.0", + "prefixLen":25, + "network":"194.43.19.0\/25", + "version":50567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.19.0", + "prefixLen":25, + "network":"194.43.19.0\/25", + "version":50567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.19.128", + "prefixLen":25, + "network":"194.43.19.128\/25", + "version":50566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.19.128", + "prefixLen":25, + "network":"194.43.19.128\/25", + "version":50566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.32.0", + "prefixLen":25, + "network":"194.43.32.0\/25", + "version":50565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.32.0", + "prefixLen":25, + "network":"194.43.32.0\/25", + "version":50565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.32.128", + "prefixLen":25, + "network":"194.43.32.128\/25", + "version":50564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.32.128", + "prefixLen":25, + "network":"194.43.32.128\/25", + "version":50564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.33.0", + "prefixLen":25, + "network":"194.43.33.0\/25", + "version":50563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.33.0", + "prefixLen":25, + "network":"194.43.33.0\/25", + "version":50563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.33.128", + "prefixLen":25, + "network":"194.43.33.128\/25", + "version":50562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.33.128", + "prefixLen":25, + "network":"194.43.33.128\/25", + "version":50562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.34.0", + "prefixLen":25, + "network":"194.43.34.0\/25", + "version":50561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.34.0", + "prefixLen":25, + "network":"194.43.34.0\/25", + "version":50561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.34.128", + "prefixLen":25, + "network":"194.43.34.128\/25", + "version":50560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.34.128", + "prefixLen":25, + "network":"194.43.34.128\/25", + "version":50560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.35.0", + "prefixLen":25, + "network":"194.43.35.0\/25", + "version":50559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.35.0", + "prefixLen":25, + "network":"194.43.35.0\/25", + "version":50559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.35.128", + "prefixLen":25, + "network":"194.43.35.128\/25", + "version":50558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.35.128", + "prefixLen":25, + "network":"194.43.35.128\/25", + "version":50558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.48.0", + "prefixLen":25, + "network":"194.43.48.0\/25", + "version":50557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.48.0", + "prefixLen":25, + "network":"194.43.48.0\/25", + "version":50557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.48.128", + "prefixLen":25, + "network":"194.43.48.128\/25", + "version":50556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.48.128", + "prefixLen":25, + "network":"194.43.48.128\/25", + "version":50556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.49.0", + "prefixLen":25, + "network":"194.43.49.0\/25", + "version":50555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.49.0", + "prefixLen":25, + "network":"194.43.49.0\/25", + "version":50555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.49.128", + "prefixLen":25, + "network":"194.43.49.128\/25", + "version":50554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.49.128", + "prefixLen":25, + "network":"194.43.49.128\/25", + "version":50554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.50.0", + "prefixLen":25, + "network":"194.43.50.0\/25", + "version":50553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.50.0", + "prefixLen":25, + "network":"194.43.50.0\/25", + "version":50553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.50.128", + "prefixLen":25, + "network":"194.43.50.128\/25", + "version":50552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.50.128", + "prefixLen":25, + "network":"194.43.50.128\/25", + "version":50552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.51.0", + "prefixLen":25, + "network":"194.43.51.0\/25", + "version":50551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.51.0", + "prefixLen":25, + "network":"194.43.51.0\/25", + "version":50551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.51.128", + "prefixLen":25, + "network":"194.43.51.128\/25", + "version":50550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.51.128", + "prefixLen":25, + "network":"194.43.51.128\/25", + "version":50550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.64.0", + "prefixLen":25, + "network":"194.43.64.0\/25", + "version":50549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.64.0", + "prefixLen":25, + "network":"194.43.64.0\/25", + "version":50549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.64.128", + "prefixLen":25, + "network":"194.43.64.128\/25", + "version":50548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.64.128", + "prefixLen":25, + "network":"194.43.64.128\/25", + "version":50548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.65.0", + "prefixLen":25, + "network":"194.43.65.0\/25", + "version":50547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.65.0", + "prefixLen":25, + "network":"194.43.65.0\/25", + "version":50547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.65.128", + "prefixLen":25, + "network":"194.43.65.128\/25", + "version":50546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.65.128", + "prefixLen":25, + "network":"194.43.65.128\/25", + "version":50546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.66.0", + "prefixLen":25, + "network":"194.43.66.0\/25", + "version":50545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.66.0", + "prefixLen":25, + "network":"194.43.66.0\/25", + "version":50545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.66.128", + "prefixLen":25, + "network":"194.43.66.128\/25", + "version":50544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.66.128", + "prefixLen":25, + "network":"194.43.66.128\/25", + "version":50544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.67.0", + "prefixLen":25, + "network":"194.43.67.0\/25", + "version":50543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.67.0", + "prefixLen":25, + "network":"194.43.67.0\/25", + "version":50543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.67.128", + "prefixLen":25, + "network":"194.43.67.128\/25", + "version":50542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.67.128", + "prefixLen":25, + "network":"194.43.67.128\/25", + "version":50542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.80.0", + "prefixLen":25, + "network":"194.43.80.0\/25", + "version":50541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.80.0", + "prefixLen":25, + "network":"194.43.80.0\/25", + "version":50541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.80.128", + "prefixLen":25, + "network":"194.43.80.128\/25", + "version":50540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.80.128", + "prefixLen":25, + "network":"194.43.80.128\/25", + "version":50540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.81.0", + "prefixLen":25, + "network":"194.43.81.0\/25", + "version":50539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.81.0", + "prefixLen":25, + "network":"194.43.81.0\/25", + "version":50539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.81.128", + "prefixLen":25, + "network":"194.43.81.128\/25", + "version":50538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.81.128", + "prefixLen":25, + "network":"194.43.81.128\/25", + "version":50538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.82.0", + "prefixLen":25, + "network":"194.43.82.0\/25", + "version":50537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.82.0", + "prefixLen":25, + "network":"194.43.82.0\/25", + "version":50537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.82.128", + "prefixLen":25, + "network":"194.43.82.128\/25", + "version":50536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.82.128", + "prefixLen":25, + "network":"194.43.82.128\/25", + "version":50536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.83.0", + "prefixLen":25, + "network":"194.43.83.0\/25", + "version":50535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.83.0", + "prefixLen":25, + "network":"194.43.83.0\/25", + "version":50535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.83.128", + "prefixLen":25, + "network":"194.43.83.128\/25", + "version":50534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.83.128", + "prefixLen":25, + "network":"194.43.83.128\/25", + "version":50534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.96.0", + "prefixLen":25, + "network":"194.43.96.0\/25", + "version":50533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.96.0", + "prefixLen":25, + "network":"194.43.96.0\/25", + "version":50533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.96.128", + "prefixLen":25, + "network":"194.43.96.128\/25", + "version":50532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.96.128", + "prefixLen":25, + "network":"194.43.96.128\/25", + "version":50532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.97.0", + "prefixLen":25, + "network":"194.43.97.0\/25", + "version":50531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.97.0", + "prefixLen":25, + "network":"194.43.97.0\/25", + "version":50531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.97.128", + "prefixLen":25, + "network":"194.43.97.128\/25", + "version":50530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.97.128", + "prefixLen":25, + "network":"194.43.97.128\/25", + "version":50530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.98.0", + "prefixLen":25, + "network":"194.43.98.0\/25", + "version":50529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.98.0", + "prefixLen":25, + "network":"194.43.98.0\/25", + "version":50529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.98.128", + "prefixLen":25, + "network":"194.43.98.128\/25", + "version":50528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.98.128", + "prefixLen":25, + "network":"194.43.98.128\/25", + "version":50528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.99.0", + "prefixLen":25, + "network":"194.43.99.0\/25", + "version":50527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.99.0", + "prefixLen":25, + "network":"194.43.99.0\/25", + "version":50527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.99.128", + "prefixLen":25, + "network":"194.43.99.128\/25", + "version":50526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.99.128", + "prefixLen":25, + "network":"194.43.99.128\/25", + "version":50526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.112.0", + "prefixLen":25, + "network":"194.43.112.0\/25", + "version":50525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.112.0", + "prefixLen":25, + "network":"194.43.112.0\/25", + "version":50525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.112.128", + "prefixLen":25, + "network":"194.43.112.128\/25", + "version":50524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.112.128", + "prefixLen":25, + "network":"194.43.112.128\/25", + "version":50524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.113.0", + "prefixLen":25, + "network":"194.43.113.0\/25", + "version":50523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.113.0", + "prefixLen":25, + "network":"194.43.113.0\/25", + "version":50523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.113.128", + "prefixLen":25, + "network":"194.43.113.128\/25", + "version":50522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.113.128", + "prefixLen":25, + "network":"194.43.113.128\/25", + "version":50522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.114.0", + "prefixLen":25, + "network":"194.43.114.0\/25", + "version":50521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.114.0", + "prefixLen":25, + "network":"194.43.114.0\/25", + "version":50521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.114.128", + "prefixLen":25, + "network":"194.43.114.128\/25", + "version":50520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.114.128", + "prefixLen":25, + "network":"194.43.114.128\/25", + "version":50520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.115.0", + "prefixLen":25, + "network":"194.43.115.0\/25", + "version":50519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.115.0", + "prefixLen":25, + "network":"194.43.115.0\/25", + "version":50519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.115.128", + "prefixLen":25, + "network":"194.43.115.128\/25", + "version":50518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.115.128", + "prefixLen":25, + "network":"194.43.115.128\/25", + "version":50518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.128.0", + "prefixLen":25, + "network":"194.43.128.0\/25", + "version":50517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.128.0", + "prefixLen":25, + "network":"194.43.128.0\/25", + "version":50517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.128.128", + "prefixLen":25, + "network":"194.43.128.128\/25", + "version":50516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.128.128", + "prefixLen":25, + "network":"194.43.128.128\/25", + "version":50516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.129.0", + "prefixLen":25, + "network":"194.43.129.0\/25", + "version":50515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.129.0", + "prefixLen":25, + "network":"194.43.129.0\/25", + "version":50515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.129.128", + "prefixLen":25, + "network":"194.43.129.128\/25", + "version":50514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.129.128", + "prefixLen":25, + "network":"194.43.129.128\/25", + "version":50514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.130.0", + "prefixLen":25, + "network":"194.43.130.0\/25", + "version":50513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.130.0", + "prefixLen":25, + "network":"194.43.130.0\/25", + "version":50513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.130.128", + "prefixLen":25, + "network":"194.43.130.128\/25", + "version":50512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.130.128", + "prefixLen":25, + "network":"194.43.130.128\/25", + "version":50512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.131.0", + "prefixLen":25, + "network":"194.43.131.0\/25", + "version":50511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.131.0", + "prefixLen":25, + "network":"194.43.131.0\/25", + "version":50511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.131.128", + "prefixLen":25, + "network":"194.43.131.128\/25", + "version":50510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.131.128", + "prefixLen":25, + "network":"194.43.131.128\/25", + "version":50510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.144.0", + "prefixLen":25, + "network":"194.43.144.0\/25", + "version":50509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.144.0", + "prefixLen":25, + "network":"194.43.144.0\/25", + "version":50509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.144.128", + "prefixLen":25, + "network":"194.43.144.128\/25", + "version":50508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.144.128", + "prefixLen":25, + "network":"194.43.144.128\/25", + "version":50508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.145.0", + "prefixLen":25, + "network":"194.43.145.0\/25", + "version":50507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.145.0", + "prefixLen":25, + "network":"194.43.145.0\/25", + "version":50507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.145.128", + "prefixLen":25, + "network":"194.43.145.128\/25", + "version":50506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.145.128", + "prefixLen":25, + "network":"194.43.145.128\/25", + "version":50506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.146.0", + "prefixLen":25, + "network":"194.43.146.0\/25", + "version":50505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.146.0", + "prefixLen":25, + "network":"194.43.146.0\/25", + "version":50505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.146.128", + "prefixLen":25, + "network":"194.43.146.128\/25", + "version":50504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.146.128", + "prefixLen":25, + "network":"194.43.146.128\/25", + "version":50504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.147.0", + "prefixLen":25, + "network":"194.43.147.0\/25", + "version":50503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.147.0", + "prefixLen":25, + "network":"194.43.147.0\/25", + "version":50503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.147.128", + "prefixLen":25, + "network":"194.43.147.128\/25", + "version":50502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.147.128", + "prefixLen":25, + "network":"194.43.147.128\/25", + "version":50502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.160.0", + "prefixLen":25, + "network":"194.43.160.0\/25", + "version":50501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.160.0", + "prefixLen":25, + "network":"194.43.160.0\/25", + "version":50501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.160.128", + "prefixLen":25, + "network":"194.43.160.128\/25", + "version":50500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.160.128", + "prefixLen":25, + "network":"194.43.160.128\/25", + "version":50500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.161.0", + "prefixLen":25, + "network":"194.43.161.0\/25", + "version":50499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.161.0", + "prefixLen":25, + "network":"194.43.161.0\/25", + "version":50499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.161.128", + "prefixLen":25, + "network":"194.43.161.128\/25", + "version":50498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.161.128", + "prefixLen":25, + "network":"194.43.161.128\/25", + "version":50498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.162.0", + "prefixLen":25, + "network":"194.43.162.0\/25", + "version":50497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.162.0", + "prefixLen":25, + "network":"194.43.162.0\/25", + "version":50497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.162.128", + "prefixLen":25, + "network":"194.43.162.128\/25", + "version":50496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.162.128", + "prefixLen":25, + "network":"194.43.162.128\/25", + "version":50496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.163.0", + "prefixLen":25, + "network":"194.43.163.0\/25", + "version":50495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.163.0", + "prefixLen":25, + "network":"194.43.163.0\/25", + "version":50495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.163.128", + "prefixLen":25, + "network":"194.43.163.128\/25", + "version":50494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.163.128", + "prefixLen":25, + "network":"194.43.163.128\/25", + "version":50494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.176.0", + "prefixLen":25, + "network":"194.43.176.0\/25", + "version":50493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.176.0", + "prefixLen":25, + "network":"194.43.176.0\/25", + "version":50493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.176.128", + "prefixLen":25, + "network":"194.43.176.128\/25", + "version":50492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.176.128", + "prefixLen":25, + "network":"194.43.176.128\/25", + "version":50492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.177.0", + "prefixLen":25, + "network":"194.43.177.0\/25", + "version":50491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.177.0", + "prefixLen":25, + "network":"194.43.177.0\/25", + "version":50491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.177.128", + "prefixLen":25, + "network":"194.43.177.128\/25", + "version":50490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.177.128", + "prefixLen":25, + "network":"194.43.177.128\/25", + "version":50490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.178.0", + "prefixLen":25, + "network":"194.43.178.0\/25", + "version":50489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.178.0", + "prefixLen":25, + "network":"194.43.178.0\/25", + "version":50489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.178.128", + "prefixLen":25, + "network":"194.43.178.128\/25", + "version":50488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.178.128", + "prefixLen":25, + "network":"194.43.178.128\/25", + "version":50488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.179.0", + "prefixLen":25, + "network":"194.43.179.0\/25", + "version":50487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.179.0", + "prefixLen":25, + "network":"194.43.179.0\/25", + "version":50487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.179.128", + "prefixLen":25, + "network":"194.43.179.128\/25", + "version":50486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.179.128", + "prefixLen":25, + "network":"194.43.179.128\/25", + "version":50486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.192.0", + "prefixLen":25, + "network":"194.43.192.0\/25", + "version":50485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.192.0", + "prefixLen":25, + "network":"194.43.192.0\/25", + "version":50485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.192.128", + "prefixLen":25, + "network":"194.43.192.128\/25", + "version":50484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.192.128", + "prefixLen":25, + "network":"194.43.192.128\/25", + "version":50484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.193.0", + "prefixLen":25, + "network":"194.43.193.0\/25", + "version":50483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.193.0", + "prefixLen":25, + "network":"194.43.193.0\/25", + "version":50483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.193.128", + "prefixLen":25, + "network":"194.43.193.128\/25", + "version":50482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.193.128", + "prefixLen":25, + "network":"194.43.193.128\/25", + "version":50482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.194.0", + "prefixLen":25, + "network":"194.43.194.0\/25", + "version":50481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.194.0", + "prefixLen":25, + "network":"194.43.194.0\/25", + "version":50481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.194.128", + "prefixLen":25, + "network":"194.43.194.128\/25", + "version":50480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.194.128", + "prefixLen":25, + "network":"194.43.194.128\/25", + "version":50480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.195.0", + "prefixLen":25, + "network":"194.43.195.0\/25", + "version":50479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.195.0", + "prefixLen":25, + "network":"194.43.195.0\/25", + "version":50479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.195.128", + "prefixLen":25, + "network":"194.43.195.128\/25", + "version":50478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.195.128", + "prefixLen":25, + "network":"194.43.195.128\/25", + "version":50478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.208.0", + "prefixLen":25, + "network":"194.43.208.0\/25", + "version":50477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.208.0", + "prefixLen":25, + "network":"194.43.208.0\/25", + "version":50477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.208.128", + "prefixLen":25, + "network":"194.43.208.128\/25", + "version":50476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.208.128", + "prefixLen":25, + "network":"194.43.208.128\/25", + "version":50476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.209.0", + "prefixLen":25, + "network":"194.43.209.0\/25", + "version":50475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.209.0", + "prefixLen":25, + "network":"194.43.209.0\/25", + "version":50475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.209.128", + "prefixLen":25, + "network":"194.43.209.128\/25", + "version":50474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.209.128", + "prefixLen":25, + "network":"194.43.209.128\/25", + "version":50474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.210.0", + "prefixLen":25, + "network":"194.43.210.0\/25", + "version":50473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.210.0", + "prefixLen":25, + "network":"194.43.210.0\/25", + "version":50473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.210.128", + "prefixLen":25, + "network":"194.43.210.128\/25", + "version":50472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.210.128", + "prefixLen":25, + "network":"194.43.210.128\/25", + "version":50472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.211.0", + "prefixLen":25, + "network":"194.43.211.0\/25", + "version":50471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.211.0", + "prefixLen":25, + "network":"194.43.211.0\/25", + "version":50471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.211.128", + "prefixLen":25, + "network":"194.43.211.128\/25", + "version":50470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.211.128", + "prefixLen":25, + "network":"194.43.211.128\/25", + "version":50470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.224.0", + "prefixLen":25, + "network":"194.43.224.0\/25", + "version":50469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.224.0", + "prefixLen":25, + "network":"194.43.224.0\/25", + "version":50469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.224.128", + "prefixLen":25, + "network":"194.43.224.128\/25", + "version":50468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.224.128", + "prefixLen":25, + "network":"194.43.224.128\/25", + "version":50468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.225.0", + "prefixLen":25, + "network":"194.43.225.0\/25", + "version":50467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.225.0", + "prefixLen":25, + "network":"194.43.225.0\/25", + "version":50467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.225.128", + "prefixLen":25, + "network":"194.43.225.128\/25", + "version":50466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.225.128", + "prefixLen":25, + "network":"194.43.225.128\/25", + "version":50466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.226.0", + "prefixLen":25, + "network":"194.43.226.0\/25", + "version":50465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.226.0", + "prefixLen":25, + "network":"194.43.226.0\/25", + "version":50465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.226.128", + "prefixLen":25, + "network":"194.43.226.128\/25", + "version":50464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.226.128", + "prefixLen":25, + "network":"194.43.226.128\/25", + "version":50464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.227.0", + "prefixLen":25, + "network":"194.43.227.0\/25", + "version":50463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.227.0", + "prefixLen":25, + "network":"194.43.227.0\/25", + "version":50463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.227.128", + "prefixLen":25, + "network":"194.43.227.128\/25", + "version":50462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.227.128", + "prefixLen":25, + "network":"194.43.227.128\/25", + "version":50462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.240.0", + "prefixLen":25, + "network":"194.43.240.0\/25", + "version":50461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.240.0", + "prefixLen":25, + "network":"194.43.240.0\/25", + "version":50461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.240.128", + "prefixLen":25, + "network":"194.43.240.128\/25", + "version":50460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.240.128", + "prefixLen":25, + "network":"194.43.240.128\/25", + "version":50460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.241.0", + "prefixLen":25, + "network":"194.43.241.0\/25", + "version":50459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.241.0", + "prefixLen":25, + "network":"194.43.241.0\/25", + "version":50459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.241.128", + "prefixLen":25, + "network":"194.43.241.128\/25", + "version":50458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.241.128", + "prefixLen":25, + "network":"194.43.241.128\/25", + "version":50458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.242.0", + "prefixLen":25, + "network":"194.43.242.0\/25", + "version":50457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.242.0", + "prefixLen":25, + "network":"194.43.242.0\/25", + "version":50457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.242.128", + "prefixLen":25, + "network":"194.43.242.128\/25", + "version":50456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.242.128", + "prefixLen":25, + "network":"194.43.242.128\/25", + "version":50456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.243.0", + "prefixLen":25, + "network":"194.43.243.0\/25", + "version":50455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.243.0", + "prefixLen":25, + "network":"194.43.243.0\/25", + "version":50455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.43.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.43.243.128", + "prefixLen":25, + "network":"194.43.243.128\/25", + "version":50454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.43.243.128", + "prefixLen":25, + "network":"194.43.243.128\/25", + "version":50454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64987 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.0.0", + "prefixLen":25, + "network":"194.44.0.0\/25", + "version":50581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.0.0", + "prefixLen":25, + "network":"194.44.0.0\/25", + "version":50581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.0.128", + "prefixLen":25, + "network":"194.44.0.128\/25", + "version":50708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.0.128", + "prefixLen":25, + "network":"194.44.0.128\/25", + "version":50708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.1.0", + "prefixLen":25, + "network":"194.44.1.0\/25", + "version":50707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.1.0", + "prefixLen":25, + "network":"194.44.1.0\/25", + "version":50707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.1.128", + "prefixLen":25, + "network":"194.44.1.128\/25", + "version":50706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.1.128", + "prefixLen":25, + "network":"194.44.1.128\/25", + "version":50706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.2.0", + "prefixLen":25, + "network":"194.44.2.0\/25", + "version":50705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.2.0", + "prefixLen":25, + "network":"194.44.2.0\/25", + "version":50705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.2.128", + "prefixLen":25, + "network":"194.44.2.128\/25", + "version":50704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.2.128", + "prefixLen":25, + "network":"194.44.2.128\/25", + "version":50704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.3.0", + "prefixLen":25, + "network":"194.44.3.0\/25", + "version":50703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.3.0", + "prefixLen":25, + "network":"194.44.3.0\/25", + "version":50703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.3.128", + "prefixLen":25, + "network":"194.44.3.128\/25", + "version":50702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.3.128", + "prefixLen":25, + "network":"194.44.3.128\/25", + "version":50702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.16.0", + "prefixLen":25, + "network":"194.44.16.0\/25", + "version":50701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.16.0", + "prefixLen":25, + "network":"194.44.16.0\/25", + "version":50701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.16.128", + "prefixLen":25, + "network":"194.44.16.128\/25", + "version":50700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.16.128", + "prefixLen":25, + "network":"194.44.16.128\/25", + "version":50700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.17.0", + "prefixLen":25, + "network":"194.44.17.0\/25", + "version":50699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.17.0", + "prefixLen":25, + "network":"194.44.17.0\/25", + "version":50699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.17.128", + "prefixLen":25, + "network":"194.44.17.128\/25", + "version":50698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.17.128", + "prefixLen":25, + "network":"194.44.17.128\/25", + "version":50698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.18.0", + "prefixLen":25, + "network":"194.44.18.0\/25", + "version":50697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.18.0", + "prefixLen":25, + "network":"194.44.18.0\/25", + "version":50697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.18.128", + "prefixLen":25, + "network":"194.44.18.128\/25", + "version":50696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.18.128", + "prefixLen":25, + "network":"194.44.18.128\/25", + "version":50696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.19.0", + "prefixLen":25, + "network":"194.44.19.0\/25", + "version":50695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.19.0", + "prefixLen":25, + "network":"194.44.19.0\/25", + "version":50695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.19.128", + "prefixLen":25, + "network":"194.44.19.128\/25", + "version":50694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.19.128", + "prefixLen":25, + "network":"194.44.19.128\/25", + "version":50694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.32.0", + "prefixLen":25, + "network":"194.44.32.0\/25", + "version":50693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.32.0", + "prefixLen":25, + "network":"194.44.32.0\/25", + "version":50693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.32.128", + "prefixLen":25, + "network":"194.44.32.128\/25", + "version":50692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.32.128", + "prefixLen":25, + "network":"194.44.32.128\/25", + "version":50692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.33.0", + "prefixLen":25, + "network":"194.44.33.0\/25", + "version":50691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.33.0", + "prefixLen":25, + "network":"194.44.33.0\/25", + "version":50691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.33.128", + "prefixLen":25, + "network":"194.44.33.128\/25", + "version":50690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.33.128", + "prefixLen":25, + "network":"194.44.33.128\/25", + "version":50690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.34.0", + "prefixLen":25, + "network":"194.44.34.0\/25", + "version":50689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.34.0", + "prefixLen":25, + "network":"194.44.34.0\/25", + "version":50689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.34.128", + "prefixLen":25, + "network":"194.44.34.128\/25", + "version":50688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.34.128", + "prefixLen":25, + "network":"194.44.34.128\/25", + "version":50688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.35.0", + "prefixLen":25, + "network":"194.44.35.0\/25", + "version":50687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.35.0", + "prefixLen":25, + "network":"194.44.35.0\/25", + "version":50687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.35.128", + "prefixLen":25, + "network":"194.44.35.128\/25", + "version":50686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.35.128", + "prefixLen":25, + "network":"194.44.35.128\/25", + "version":50686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.48.0", + "prefixLen":25, + "network":"194.44.48.0\/25", + "version":50685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.48.0", + "prefixLen":25, + "network":"194.44.48.0\/25", + "version":50685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.48.128", + "prefixLen":25, + "network":"194.44.48.128\/25", + "version":50684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.48.128", + "prefixLen":25, + "network":"194.44.48.128\/25", + "version":50684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.49.0", + "prefixLen":25, + "network":"194.44.49.0\/25", + "version":50683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.49.0", + "prefixLen":25, + "network":"194.44.49.0\/25", + "version":50683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.49.128", + "prefixLen":25, + "network":"194.44.49.128\/25", + "version":50682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.49.128", + "prefixLen":25, + "network":"194.44.49.128\/25", + "version":50682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.50.0", + "prefixLen":25, + "network":"194.44.50.0\/25", + "version":50681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.50.0", + "prefixLen":25, + "network":"194.44.50.0\/25", + "version":50681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.50.128", + "prefixLen":25, + "network":"194.44.50.128\/25", + "version":50680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.50.128", + "prefixLen":25, + "network":"194.44.50.128\/25", + "version":50680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.51.0", + "prefixLen":25, + "network":"194.44.51.0\/25", + "version":50679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.51.0", + "prefixLen":25, + "network":"194.44.51.0\/25", + "version":50679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.51.128", + "prefixLen":25, + "network":"194.44.51.128\/25", + "version":50678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.51.128", + "prefixLen":25, + "network":"194.44.51.128\/25", + "version":50678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.64.0", + "prefixLen":25, + "network":"194.44.64.0\/25", + "version":50677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.64.0", + "prefixLen":25, + "network":"194.44.64.0\/25", + "version":50677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.64.128", + "prefixLen":25, + "network":"194.44.64.128\/25", + "version":50676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.64.128", + "prefixLen":25, + "network":"194.44.64.128\/25", + "version":50676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.65.0", + "prefixLen":25, + "network":"194.44.65.0\/25", + "version":50675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.65.0", + "prefixLen":25, + "network":"194.44.65.0\/25", + "version":50675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.65.128", + "prefixLen":25, + "network":"194.44.65.128\/25", + "version":50674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.65.128", + "prefixLen":25, + "network":"194.44.65.128\/25", + "version":50674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.66.0", + "prefixLen":25, + "network":"194.44.66.0\/25", + "version":50673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.66.0", + "prefixLen":25, + "network":"194.44.66.0\/25", + "version":50673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.66.128", + "prefixLen":25, + "network":"194.44.66.128\/25", + "version":50672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.66.128", + "prefixLen":25, + "network":"194.44.66.128\/25", + "version":50672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.67.0", + "prefixLen":25, + "network":"194.44.67.0\/25", + "version":50671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.67.0", + "prefixLen":25, + "network":"194.44.67.0\/25", + "version":50671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.67.128", + "prefixLen":25, + "network":"194.44.67.128\/25", + "version":50670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.67.128", + "prefixLen":25, + "network":"194.44.67.128\/25", + "version":50670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.80.0", + "prefixLen":25, + "network":"194.44.80.0\/25", + "version":50669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.80.0", + "prefixLen":25, + "network":"194.44.80.0\/25", + "version":50669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.80.128", + "prefixLen":25, + "network":"194.44.80.128\/25", + "version":50668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.80.128", + "prefixLen":25, + "network":"194.44.80.128\/25", + "version":50668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.81.0", + "prefixLen":25, + "network":"194.44.81.0\/25", + "version":50667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.81.0", + "prefixLen":25, + "network":"194.44.81.0\/25", + "version":50667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.81.128", + "prefixLen":25, + "network":"194.44.81.128\/25", + "version":50666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.81.128", + "prefixLen":25, + "network":"194.44.81.128\/25", + "version":50666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.82.0", + "prefixLen":25, + "network":"194.44.82.0\/25", + "version":50665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.82.0", + "prefixLen":25, + "network":"194.44.82.0\/25", + "version":50665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.82.128", + "prefixLen":25, + "network":"194.44.82.128\/25", + "version":50664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.82.128", + "prefixLen":25, + "network":"194.44.82.128\/25", + "version":50664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.83.0", + "prefixLen":25, + "network":"194.44.83.0\/25", + "version":50663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.83.0", + "prefixLen":25, + "network":"194.44.83.0\/25", + "version":50663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.83.128", + "prefixLen":25, + "network":"194.44.83.128\/25", + "version":50662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.83.128", + "prefixLen":25, + "network":"194.44.83.128\/25", + "version":50662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.96.0", + "prefixLen":25, + "network":"194.44.96.0\/25", + "version":50661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.96.0", + "prefixLen":25, + "network":"194.44.96.0\/25", + "version":50661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.96.128", + "prefixLen":25, + "network":"194.44.96.128\/25", + "version":50660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.96.128", + "prefixLen":25, + "network":"194.44.96.128\/25", + "version":50660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.97.0", + "prefixLen":25, + "network":"194.44.97.0\/25", + "version":50659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.97.0", + "prefixLen":25, + "network":"194.44.97.0\/25", + "version":50659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.97.128", + "prefixLen":25, + "network":"194.44.97.128\/25", + "version":50658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.97.128", + "prefixLen":25, + "network":"194.44.97.128\/25", + "version":50658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.98.0", + "prefixLen":25, + "network":"194.44.98.0\/25", + "version":50657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.98.0", + "prefixLen":25, + "network":"194.44.98.0\/25", + "version":50657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.98.128", + "prefixLen":25, + "network":"194.44.98.128\/25", + "version":50656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.98.128", + "prefixLen":25, + "network":"194.44.98.128\/25", + "version":50656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.99.0", + "prefixLen":25, + "network":"194.44.99.0\/25", + "version":50655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.99.0", + "prefixLen":25, + "network":"194.44.99.0\/25", + "version":50655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.99.128", + "prefixLen":25, + "network":"194.44.99.128\/25", + "version":50654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.99.128", + "prefixLen":25, + "network":"194.44.99.128\/25", + "version":50654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.112.0", + "prefixLen":25, + "network":"194.44.112.0\/25", + "version":50653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.112.0", + "prefixLen":25, + "network":"194.44.112.0\/25", + "version":50653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.112.128", + "prefixLen":25, + "network":"194.44.112.128\/25", + "version":50652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.112.128", + "prefixLen":25, + "network":"194.44.112.128\/25", + "version":50652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.113.0", + "prefixLen":25, + "network":"194.44.113.0\/25", + "version":50651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.113.0", + "prefixLen":25, + "network":"194.44.113.0\/25", + "version":50651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.113.128", + "prefixLen":25, + "network":"194.44.113.128\/25", + "version":50650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.113.128", + "prefixLen":25, + "network":"194.44.113.128\/25", + "version":50650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.114.0", + "prefixLen":25, + "network":"194.44.114.0\/25", + "version":50649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.114.0", + "prefixLen":25, + "network":"194.44.114.0\/25", + "version":50649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.114.128", + "prefixLen":25, + "network":"194.44.114.128\/25", + "version":50648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.114.128", + "prefixLen":25, + "network":"194.44.114.128\/25", + "version":50648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.115.0", + "prefixLen":25, + "network":"194.44.115.0\/25", + "version":50647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.115.0", + "prefixLen":25, + "network":"194.44.115.0\/25", + "version":50647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.115.128", + "prefixLen":25, + "network":"194.44.115.128\/25", + "version":50646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.115.128", + "prefixLen":25, + "network":"194.44.115.128\/25", + "version":50646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.128.0", + "prefixLen":25, + "network":"194.44.128.0\/25", + "version":50645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.128.0", + "prefixLen":25, + "network":"194.44.128.0\/25", + "version":50645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.128.128", + "prefixLen":25, + "network":"194.44.128.128\/25", + "version":50644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.128.128", + "prefixLen":25, + "network":"194.44.128.128\/25", + "version":50644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.129.0", + "prefixLen":25, + "network":"194.44.129.0\/25", + "version":50643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.129.0", + "prefixLen":25, + "network":"194.44.129.0\/25", + "version":50643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.129.128", + "prefixLen":25, + "network":"194.44.129.128\/25", + "version":50642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.129.128", + "prefixLen":25, + "network":"194.44.129.128\/25", + "version":50642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.130.0", + "prefixLen":25, + "network":"194.44.130.0\/25", + "version":50641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.130.0", + "prefixLen":25, + "network":"194.44.130.0\/25", + "version":50641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.130.128", + "prefixLen":25, + "network":"194.44.130.128\/25", + "version":50640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.130.128", + "prefixLen":25, + "network":"194.44.130.128\/25", + "version":50640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.131.0", + "prefixLen":25, + "network":"194.44.131.0\/25", + "version":50639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.131.0", + "prefixLen":25, + "network":"194.44.131.0\/25", + "version":50639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.131.128", + "prefixLen":25, + "network":"194.44.131.128\/25", + "version":50638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.131.128", + "prefixLen":25, + "network":"194.44.131.128\/25", + "version":50638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.144.0", + "prefixLen":25, + "network":"194.44.144.0\/25", + "version":50637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.144.0", + "prefixLen":25, + "network":"194.44.144.0\/25", + "version":50637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.144.128", + "prefixLen":25, + "network":"194.44.144.128\/25", + "version":50636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.144.128", + "prefixLen":25, + "network":"194.44.144.128\/25", + "version":50636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.145.0", + "prefixLen":25, + "network":"194.44.145.0\/25", + "version":50635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.145.0", + "prefixLen":25, + "network":"194.44.145.0\/25", + "version":50635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.145.128", + "prefixLen":25, + "network":"194.44.145.128\/25", + "version":50634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.145.128", + "prefixLen":25, + "network":"194.44.145.128\/25", + "version":50634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.146.0", + "prefixLen":25, + "network":"194.44.146.0\/25", + "version":50633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.146.0", + "prefixLen":25, + "network":"194.44.146.0\/25", + "version":50633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.146.128", + "prefixLen":25, + "network":"194.44.146.128\/25", + "version":50632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.146.128", + "prefixLen":25, + "network":"194.44.146.128\/25", + "version":50632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.147.0", + "prefixLen":25, + "network":"194.44.147.0\/25", + "version":50631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.147.0", + "prefixLen":25, + "network":"194.44.147.0\/25", + "version":50631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.147.128", + "prefixLen":25, + "network":"194.44.147.128\/25", + "version":50630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.147.128", + "prefixLen":25, + "network":"194.44.147.128\/25", + "version":50630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.160.0", + "prefixLen":25, + "network":"194.44.160.0\/25", + "version":50629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.160.0", + "prefixLen":25, + "network":"194.44.160.0\/25", + "version":50629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.160.128", + "prefixLen":25, + "network":"194.44.160.128\/25", + "version":50628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.160.128", + "prefixLen":25, + "network":"194.44.160.128\/25", + "version":50628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.161.0", + "prefixLen":25, + "network":"194.44.161.0\/25", + "version":50627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.161.0", + "prefixLen":25, + "network":"194.44.161.0\/25", + "version":50627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.161.128", + "prefixLen":25, + "network":"194.44.161.128\/25", + "version":50626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.161.128", + "prefixLen":25, + "network":"194.44.161.128\/25", + "version":50626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.162.0", + "prefixLen":25, + "network":"194.44.162.0\/25", + "version":50625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.162.0", + "prefixLen":25, + "network":"194.44.162.0\/25", + "version":50625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.162.128", + "prefixLen":25, + "network":"194.44.162.128\/25", + "version":50624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.162.128", + "prefixLen":25, + "network":"194.44.162.128\/25", + "version":50624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.163.0", + "prefixLen":25, + "network":"194.44.163.0\/25", + "version":50623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.163.0", + "prefixLen":25, + "network":"194.44.163.0\/25", + "version":50623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.163.128", + "prefixLen":25, + "network":"194.44.163.128\/25", + "version":50622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.163.128", + "prefixLen":25, + "network":"194.44.163.128\/25", + "version":50622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.176.0", + "prefixLen":25, + "network":"194.44.176.0\/25", + "version":50621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.176.0", + "prefixLen":25, + "network":"194.44.176.0\/25", + "version":50621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.176.128", + "prefixLen":25, + "network":"194.44.176.128\/25", + "version":50620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.176.128", + "prefixLen":25, + "network":"194.44.176.128\/25", + "version":50620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.177.0", + "prefixLen":25, + "network":"194.44.177.0\/25", + "version":50619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.177.0", + "prefixLen":25, + "network":"194.44.177.0\/25", + "version":50619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.177.128", + "prefixLen":25, + "network":"194.44.177.128\/25", + "version":50618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.177.128", + "prefixLen":25, + "network":"194.44.177.128\/25", + "version":50618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.178.0", + "prefixLen":25, + "network":"194.44.178.0\/25", + "version":50617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.178.0", + "prefixLen":25, + "network":"194.44.178.0\/25", + "version":50617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.178.128", + "prefixLen":25, + "network":"194.44.178.128\/25", + "version":50616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.178.128", + "prefixLen":25, + "network":"194.44.178.128\/25", + "version":50616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.179.0", + "prefixLen":25, + "network":"194.44.179.0\/25", + "version":50615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.179.0", + "prefixLen":25, + "network":"194.44.179.0\/25", + "version":50615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.179.128", + "prefixLen":25, + "network":"194.44.179.128\/25", + "version":50614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.179.128", + "prefixLen":25, + "network":"194.44.179.128\/25", + "version":50614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.192.0", + "prefixLen":25, + "network":"194.44.192.0\/25", + "version":50613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.192.0", + "prefixLen":25, + "network":"194.44.192.0\/25", + "version":50613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.192.128", + "prefixLen":25, + "network":"194.44.192.128\/25", + "version":50612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.192.128", + "prefixLen":25, + "network":"194.44.192.128\/25", + "version":50612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.193.0", + "prefixLen":25, + "network":"194.44.193.0\/25", + "version":50611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.193.0", + "prefixLen":25, + "network":"194.44.193.0\/25", + "version":50611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.193.128", + "prefixLen":25, + "network":"194.44.193.128\/25", + "version":50610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.193.128", + "prefixLen":25, + "network":"194.44.193.128\/25", + "version":50610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.194.0", + "prefixLen":25, + "network":"194.44.194.0\/25", + "version":50609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.194.0", + "prefixLen":25, + "network":"194.44.194.0\/25", + "version":50609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.194.128", + "prefixLen":25, + "network":"194.44.194.128\/25", + "version":50608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.194.128", + "prefixLen":25, + "network":"194.44.194.128\/25", + "version":50608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.195.0", + "prefixLen":25, + "network":"194.44.195.0\/25", + "version":50607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.195.0", + "prefixLen":25, + "network":"194.44.195.0\/25", + "version":50607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.195.128", + "prefixLen":25, + "network":"194.44.195.128\/25", + "version":50606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.195.128", + "prefixLen":25, + "network":"194.44.195.128\/25", + "version":50606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.208.0", + "prefixLen":25, + "network":"194.44.208.0\/25", + "version":50605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.208.0", + "prefixLen":25, + "network":"194.44.208.0\/25", + "version":50605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.208.128", + "prefixLen":25, + "network":"194.44.208.128\/25", + "version":50604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.208.128", + "prefixLen":25, + "network":"194.44.208.128\/25", + "version":50604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.209.0", + "prefixLen":25, + "network":"194.44.209.0\/25", + "version":50603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.209.0", + "prefixLen":25, + "network":"194.44.209.0\/25", + "version":50603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.209.128", + "prefixLen":25, + "network":"194.44.209.128\/25", + "version":50602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.209.128", + "prefixLen":25, + "network":"194.44.209.128\/25", + "version":50602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.210.0", + "prefixLen":25, + "network":"194.44.210.0\/25", + "version":50601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.210.0", + "prefixLen":25, + "network":"194.44.210.0\/25", + "version":50601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.210.128", + "prefixLen":25, + "network":"194.44.210.128\/25", + "version":50600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.210.128", + "prefixLen":25, + "network":"194.44.210.128\/25", + "version":50600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.211.0", + "prefixLen":25, + "network":"194.44.211.0\/25", + "version":50599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.211.0", + "prefixLen":25, + "network":"194.44.211.0\/25", + "version":50599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.211.128", + "prefixLen":25, + "network":"194.44.211.128\/25", + "version":50598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.211.128", + "prefixLen":25, + "network":"194.44.211.128\/25", + "version":50598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.224.0", + "prefixLen":25, + "network":"194.44.224.0\/25", + "version":50597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.224.0", + "prefixLen":25, + "network":"194.44.224.0\/25", + "version":50597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.224.128", + "prefixLen":25, + "network":"194.44.224.128\/25", + "version":50596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.224.128", + "prefixLen":25, + "network":"194.44.224.128\/25", + "version":50596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.225.0", + "prefixLen":25, + "network":"194.44.225.0\/25", + "version":50595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.225.0", + "prefixLen":25, + "network":"194.44.225.0\/25", + "version":50595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.225.128", + "prefixLen":25, + "network":"194.44.225.128\/25", + "version":50594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.225.128", + "prefixLen":25, + "network":"194.44.225.128\/25", + "version":50594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.226.0", + "prefixLen":25, + "network":"194.44.226.0\/25", + "version":50593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.226.0", + "prefixLen":25, + "network":"194.44.226.0\/25", + "version":50593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.226.128", + "prefixLen":25, + "network":"194.44.226.128\/25", + "version":50592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.226.128", + "prefixLen":25, + "network":"194.44.226.128\/25", + "version":50592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.227.0", + "prefixLen":25, + "network":"194.44.227.0\/25", + "version":50591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.227.0", + "prefixLen":25, + "network":"194.44.227.0\/25", + "version":50591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.227.128", + "prefixLen":25, + "network":"194.44.227.128\/25", + "version":50590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.227.128", + "prefixLen":25, + "network":"194.44.227.128\/25", + "version":50590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.240.0", + "prefixLen":25, + "network":"194.44.240.0\/25", + "version":50589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.240.0", + "prefixLen":25, + "network":"194.44.240.0\/25", + "version":50589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.240.128", + "prefixLen":25, + "network":"194.44.240.128\/25", + "version":50588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.240.128", + "prefixLen":25, + "network":"194.44.240.128\/25", + "version":50588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.241.0", + "prefixLen":25, + "network":"194.44.241.0\/25", + "version":50587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.241.0", + "prefixLen":25, + "network":"194.44.241.0\/25", + "version":50587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.241.128", + "prefixLen":25, + "network":"194.44.241.128\/25", + "version":50586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.241.128", + "prefixLen":25, + "network":"194.44.241.128\/25", + "version":50586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.242.0", + "prefixLen":25, + "network":"194.44.242.0\/25", + "version":50585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.242.0", + "prefixLen":25, + "network":"194.44.242.0\/25", + "version":50585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.242.128", + "prefixLen":25, + "network":"194.44.242.128\/25", + "version":50584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.242.128", + "prefixLen":25, + "network":"194.44.242.128\/25", + "version":50584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.243.0", + "prefixLen":25, + "network":"194.44.243.0\/25", + "version":50583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.243.0", + "prefixLen":25, + "network":"194.44.243.0\/25", + "version":50583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.44.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.44.243.128", + "prefixLen":25, + "network":"194.44.243.128\/25", + "version":50582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.44.243.128", + "prefixLen":25, + "network":"194.44.243.128\/25", + "version":50582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64988 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.0.0", + "prefixLen":25, + "network":"194.45.0.0\/25", + "version":51989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.0.0", + "prefixLen":25, + "network":"194.45.0.0\/25", + "version":51989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.0.128", + "prefixLen":25, + "network":"194.45.0.128\/25", + "version":52116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.0.128", + "prefixLen":25, + "network":"194.45.0.128\/25", + "version":52116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.1.0", + "prefixLen":25, + "network":"194.45.1.0\/25", + "version":52115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.1.0", + "prefixLen":25, + "network":"194.45.1.0\/25", + "version":52115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.1.128", + "prefixLen":25, + "network":"194.45.1.128\/25", + "version":52114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.1.128", + "prefixLen":25, + "network":"194.45.1.128\/25", + "version":52114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.2.0", + "prefixLen":25, + "network":"194.45.2.0\/25", + "version":52113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.2.0", + "prefixLen":25, + "network":"194.45.2.0\/25", + "version":52113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.2.128", + "prefixLen":25, + "network":"194.45.2.128\/25", + "version":52112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.2.128", + "prefixLen":25, + "network":"194.45.2.128\/25", + "version":52112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.3.0", + "prefixLen":25, + "network":"194.45.3.0\/25", + "version":52111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.3.0", + "prefixLen":25, + "network":"194.45.3.0\/25", + "version":52111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.3.128", + "prefixLen":25, + "network":"194.45.3.128\/25", + "version":52110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.3.128", + "prefixLen":25, + "network":"194.45.3.128\/25", + "version":52110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.16.0", + "prefixLen":25, + "network":"194.45.16.0\/25", + "version":52109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.16.0", + "prefixLen":25, + "network":"194.45.16.0\/25", + "version":52109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.16.128", + "prefixLen":25, + "network":"194.45.16.128\/25", + "version":52108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.16.128", + "prefixLen":25, + "network":"194.45.16.128\/25", + "version":52108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.17.0", + "prefixLen":25, + "network":"194.45.17.0\/25", + "version":52107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.17.0", + "prefixLen":25, + "network":"194.45.17.0\/25", + "version":52107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.17.128", + "prefixLen":25, + "network":"194.45.17.128\/25", + "version":52106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.17.128", + "prefixLen":25, + "network":"194.45.17.128\/25", + "version":52106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.18.0", + "prefixLen":25, + "network":"194.45.18.0\/25", + "version":52105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.18.0", + "prefixLen":25, + "network":"194.45.18.0\/25", + "version":52105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.18.128", + "prefixLen":25, + "network":"194.45.18.128\/25", + "version":52104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.18.128", + "prefixLen":25, + "network":"194.45.18.128\/25", + "version":52104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.19.0", + "prefixLen":25, + "network":"194.45.19.0\/25", + "version":52103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.19.0", + "prefixLen":25, + "network":"194.45.19.0\/25", + "version":52103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.19.128", + "prefixLen":25, + "network":"194.45.19.128\/25", + "version":52102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.19.128", + "prefixLen":25, + "network":"194.45.19.128\/25", + "version":52102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.32.0", + "prefixLen":25, + "network":"194.45.32.0\/25", + "version":52101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.32.0", + "prefixLen":25, + "network":"194.45.32.0\/25", + "version":52101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.32.128", + "prefixLen":25, + "network":"194.45.32.128\/25", + "version":52100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.32.128", + "prefixLen":25, + "network":"194.45.32.128\/25", + "version":52100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.33.0", + "prefixLen":25, + "network":"194.45.33.0\/25", + "version":52099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.33.0", + "prefixLen":25, + "network":"194.45.33.0\/25", + "version":52099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.33.128", + "prefixLen":25, + "network":"194.45.33.128\/25", + "version":52098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.33.128", + "prefixLen":25, + "network":"194.45.33.128\/25", + "version":52098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.34.0", + "prefixLen":25, + "network":"194.45.34.0\/25", + "version":52097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.34.0", + "prefixLen":25, + "network":"194.45.34.0\/25", + "version":52097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.34.128", + "prefixLen":25, + "network":"194.45.34.128\/25", + "version":52096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.34.128", + "prefixLen":25, + "network":"194.45.34.128\/25", + "version":52096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.35.0", + "prefixLen":25, + "network":"194.45.35.0\/25", + "version":52095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.35.0", + "prefixLen":25, + "network":"194.45.35.0\/25", + "version":52095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.35.128", + "prefixLen":25, + "network":"194.45.35.128\/25", + "version":52094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.35.128", + "prefixLen":25, + "network":"194.45.35.128\/25", + "version":52094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.48.0", + "prefixLen":25, + "network":"194.45.48.0\/25", + "version":52093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.48.0", + "prefixLen":25, + "network":"194.45.48.0\/25", + "version":52093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.48.128", + "prefixLen":25, + "network":"194.45.48.128\/25", + "version":52092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.48.128", + "prefixLen":25, + "network":"194.45.48.128\/25", + "version":52092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.49.0", + "prefixLen":25, + "network":"194.45.49.0\/25", + "version":52091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.49.0", + "prefixLen":25, + "network":"194.45.49.0\/25", + "version":52091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.49.128", + "prefixLen":25, + "network":"194.45.49.128\/25", + "version":52090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.49.128", + "prefixLen":25, + "network":"194.45.49.128\/25", + "version":52090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.50.0", + "prefixLen":25, + "network":"194.45.50.0\/25", + "version":52089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.50.0", + "prefixLen":25, + "network":"194.45.50.0\/25", + "version":52089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.50.128", + "prefixLen":25, + "network":"194.45.50.128\/25", + "version":52088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.50.128", + "prefixLen":25, + "network":"194.45.50.128\/25", + "version":52088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.51.0", + "prefixLen":25, + "network":"194.45.51.0\/25", + "version":52087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.51.0", + "prefixLen":25, + "network":"194.45.51.0\/25", + "version":52087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.51.128", + "prefixLen":25, + "network":"194.45.51.128\/25", + "version":52086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.51.128", + "prefixLen":25, + "network":"194.45.51.128\/25", + "version":52086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.64.0", + "prefixLen":25, + "network":"194.45.64.0\/25", + "version":52085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.64.0", + "prefixLen":25, + "network":"194.45.64.0\/25", + "version":52085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.64.128", + "prefixLen":25, + "network":"194.45.64.128\/25", + "version":52084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.64.128", + "prefixLen":25, + "network":"194.45.64.128\/25", + "version":52084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.65.0", + "prefixLen":25, + "network":"194.45.65.0\/25", + "version":52083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.65.0", + "prefixLen":25, + "network":"194.45.65.0\/25", + "version":52083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.65.128", + "prefixLen":25, + "network":"194.45.65.128\/25", + "version":52082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.65.128", + "prefixLen":25, + "network":"194.45.65.128\/25", + "version":52082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.66.0", + "prefixLen":25, + "network":"194.45.66.0\/25", + "version":52081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.66.0", + "prefixLen":25, + "network":"194.45.66.0\/25", + "version":52081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.66.128", + "prefixLen":25, + "network":"194.45.66.128\/25", + "version":52080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.66.128", + "prefixLen":25, + "network":"194.45.66.128\/25", + "version":52080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.67.0", + "prefixLen":25, + "network":"194.45.67.0\/25", + "version":52079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.67.0", + "prefixLen":25, + "network":"194.45.67.0\/25", + "version":52079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.67.128", + "prefixLen":25, + "network":"194.45.67.128\/25", + "version":52078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.67.128", + "prefixLen":25, + "network":"194.45.67.128\/25", + "version":52078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.80.0", + "prefixLen":25, + "network":"194.45.80.0\/25", + "version":52077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.80.0", + "prefixLen":25, + "network":"194.45.80.0\/25", + "version":52077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.80.128", + "prefixLen":25, + "network":"194.45.80.128\/25", + "version":52076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.80.128", + "prefixLen":25, + "network":"194.45.80.128\/25", + "version":52076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.81.0", + "prefixLen":25, + "network":"194.45.81.0\/25", + "version":52075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.81.0", + "prefixLen":25, + "network":"194.45.81.0\/25", + "version":52075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.81.128", + "prefixLen":25, + "network":"194.45.81.128\/25", + "version":52074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.81.128", + "prefixLen":25, + "network":"194.45.81.128\/25", + "version":52074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.82.0", + "prefixLen":25, + "network":"194.45.82.0\/25", + "version":52073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.82.0", + "prefixLen":25, + "network":"194.45.82.0\/25", + "version":52073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.82.128", + "prefixLen":25, + "network":"194.45.82.128\/25", + "version":52072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.82.128", + "prefixLen":25, + "network":"194.45.82.128\/25", + "version":52072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.83.0", + "prefixLen":25, + "network":"194.45.83.0\/25", + "version":52071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.83.0", + "prefixLen":25, + "network":"194.45.83.0\/25", + "version":52071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.83.128", + "prefixLen":25, + "network":"194.45.83.128\/25", + "version":52070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.83.128", + "prefixLen":25, + "network":"194.45.83.128\/25", + "version":52070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.96.0", + "prefixLen":25, + "network":"194.45.96.0\/25", + "version":52069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.96.0", + "prefixLen":25, + "network":"194.45.96.0\/25", + "version":52069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.96.128", + "prefixLen":25, + "network":"194.45.96.128\/25", + "version":52068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.96.128", + "prefixLen":25, + "network":"194.45.96.128\/25", + "version":52068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.97.0", + "prefixLen":25, + "network":"194.45.97.0\/25", + "version":52067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.97.0", + "prefixLen":25, + "network":"194.45.97.0\/25", + "version":52067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.97.128", + "prefixLen":25, + "network":"194.45.97.128\/25", + "version":52066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.97.128", + "prefixLen":25, + "network":"194.45.97.128\/25", + "version":52066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.98.0", + "prefixLen":25, + "network":"194.45.98.0\/25", + "version":52065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.98.0", + "prefixLen":25, + "network":"194.45.98.0\/25", + "version":52065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.98.128", + "prefixLen":25, + "network":"194.45.98.128\/25", + "version":52064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.98.128", + "prefixLen":25, + "network":"194.45.98.128\/25", + "version":52064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.99.0", + "prefixLen":25, + "network":"194.45.99.0\/25", + "version":52063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.99.0", + "prefixLen":25, + "network":"194.45.99.0\/25", + "version":52063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.99.128", + "prefixLen":25, + "network":"194.45.99.128\/25", + "version":52062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.99.128", + "prefixLen":25, + "network":"194.45.99.128\/25", + "version":52062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.112.0", + "prefixLen":25, + "network":"194.45.112.0\/25", + "version":52061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.112.0", + "prefixLen":25, + "network":"194.45.112.0\/25", + "version":52061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.112.128", + "prefixLen":25, + "network":"194.45.112.128\/25", + "version":52060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.112.128", + "prefixLen":25, + "network":"194.45.112.128\/25", + "version":52060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.113.0", + "prefixLen":25, + "network":"194.45.113.0\/25", + "version":52059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.113.0", + "prefixLen":25, + "network":"194.45.113.0\/25", + "version":52059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.113.128", + "prefixLen":25, + "network":"194.45.113.128\/25", + "version":52058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.113.128", + "prefixLen":25, + "network":"194.45.113.128\/25", + "version":52058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.114.0", + "prefixLen":25, + "network":"194.45.114.0\/25", + "version":52057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.114.0", + "prefixLen":25, + "network":"194.45.114.0\/25", + "version":52057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.114.128", + "prefixLen":25, + "network":"194.45.114.128\/25", + "version":52056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.114.128", + "prefixLen":25, + "network":"194.45.114.128\/25", + "version":52056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.115.0", + "prefixLen":25, + "network":"194.45.115.0\/25", + "version":52055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.115.0", + "prefixLen":25, + "network":"194.45.115.0\/25", + "version":52055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.115.128", + "prefixLen":25, + "network":"194.45.115.128\/25", + "version":52054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.115.128", + "prefixLen":25, + "network":"194.45.115.128\/25", + "version":52054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.128.0", + "prefixLen":25, + "network":"194.45.128.0\/25", + "version":52053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.128.0", + "prefixLen":25, + "network":"194.45.128.0\/25", + "version":52053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.128.128", + "prefixLen":25, + "network":"194.45.128.128\/25", + "version":52052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.128.128", + "prefixLen":25, + "network":"194.45.128.128\/25", + "version":52052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.129.0", + "prefixLen":25, + "network":"194.45.129.0\/25", + "version":52051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.129.0", + "prefixLen":25, + "network":"194.45.129.0\/25", + "version":52051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.129.128", + "prefixLen":25, + "network":"194.45.129.128\/25", + "version":52050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.129.128", + "prefixLen":25, + "network":"194.45.129.128\/25", + "version":52050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.130.0", + "prefixLen":25, + "network":"194.45.130.0\/25", + "version":52049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.130.0", + "prefixLen":25, + "network":"194.45.130.0\/25", + "version":52049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.130.128", + "prefixLen":25, + "network":"194.45.130.128\/25", + "version":52048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.130.128", + "prefixLen":25, + "network":"194.45.130.128\/25", + "version":52048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.131.0", + "prefixLen":25, + "network":"194.45.131.0\/25", + "version":52047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.131.0", + "prefixLen":25, + "network":"194.45.131.0\/25", + "version":52047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.131.128", + "prefixLen":25, + "network":"194.45.131.128\/25", + "version":52046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.131.128", + "prefixLen":25, + "network":"194.45.131.128\/25", + "version":52046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.144.0", + "prefixLen":25, + "network":"194.45.144.0\/25", + "version":52045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.144.0", + "prefixLen":25, + "network":"194.45.144.0\/25", + "version":52045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.144.128", + "prefixLen":25, + "network":"194.45.144.128\/25", + "version":52044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.144.128", + "prefixLen":25, + "network":"194.45.144.128\/25", + "version":52044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.145.0", + "prefixLen":25, + "network":"194.45.145.0\/25", + "version":52043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.145.0", + "prefixLen":25, + "network":"194.45.145.0\/25", + "version":52043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.145.128", + "prefixLen":25, + "network":"194.45.145.128\/25", + "version":52042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.145.128", + "prefixLen":25, + "network":"194.45.145.128\/25", + "version":52042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.146.0", + "prefixLen":25, + "network":"194.45.146.0\/25", + "version":52041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.146.0", + "prefixLen":25, + "network":"194.45.146.0\/25", + "version":52041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.146.128", + "prefixLen":25, + "network":"194.45.146.128\/25", + "version":52040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.146.128", + "prefixLen":25, + "network":"194.45.146.128\/25", + "version":52040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.147.0", + "prefixLen":25, + "network":"194.45.147.0\/25", + "version":52039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.147.0", + "prefixLen":25, + "network":"194.45.147.0\/25", + "version":52039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.147.128", + "prefixLen":25, + "network":"194.45.147.128\/25", + "version":52038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.147.128", + "prefixLen":25, + "network":"194.45.147.128\/25", + "version":52038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.160.0", + "prefixLen":25, + "network":"194.45.160.0\/25", + "version":52037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.160.0", + "prefixLen":25, + "network":"194.45.160.0\/25", + "version":52037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.160.128", + "prefixLen":25, + "network":"194.45.160.128\/25", + "version":52036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.160.128", + "prefixLen":25, + "network":"194.45.160.128\/25", + "version":52036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.161.0", + "prefixLen":25, + "network":"194.45.161.0\/25", + "version":52035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.161.0", + "prefixLen":25, + "network":"194.45.161.0\/25", + "version":52035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.161.128", + "prefixLen":25, + "network":"194.45.161.128\/25", + "version":52034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.161.128", + "prefixLen":25, + "network":"194.45.161.128\/25", + "version":52034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.162.0", + "prefixLen":25, + "network":"194.45.162.0\/25", + "version":52033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.162.0", + "prefixLen":25, + "network":"194.45.162.0\/25", + "version":52033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.162.128", + "prefixLen":25, + "network":"194.45.162.128\/25", + "version":52032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.162.128", + "prefixLen":25, + "network":"194.45.162.128\/25", + "version":52032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.163.0", + "prefixLen":25, + "network":"194.45.163.0\/25", + "version":52031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.163.0", + "prefixLen":25, + "network":"194.45.163.0\/25", + "version":52031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.163.128", + "prefixLen":25, + "network":"194.45.163.128\/25", + "version":52030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.163.128", + "prefixLen":25, + "network":"194.45.163.128\/25", + "version":52030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.176.0", + "prefixLen":25, + "network":"194.45.176.0\/25", + "version":52029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.176.0", + "prefixLen":25, + "network":"194.45.176.0\/25", + "version":52029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.176.128", + "prefixLen":25, + "network":"194.45.176.128\/25", + "version":52028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.176.128", + "prefixLen":25, + "network":"194.45.176.128\/25", + "version":52028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.177.0", + "prefixLen":25, + "network":"194.45.177.0\/25", + "version":52027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.177.0", + "prefixLen":25, + "network":"194.45.177.0\/25", + "version":52027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.177.128", + "prefixLen":25, + "network":"194.45.177.128\/25", + "version":52026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.177.128", + "prefixLen":25, + "network":"194.45.177.128\/25", + "version":52026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.178.0", + "prefixLen":25, + "network":"194.45.178.0\/25", + "version":52025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.178.0", + "prefixLen":25, + "network":"194.45.178.0\/25", + "version":52025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.178.128", + "prefixLen":25, + "network":"194.45.178.128\/25", + "version":52024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.178.128", + "prefixLen":25, + "network":"194.45.178.128\/25", + "version":52024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.179.0", + "prefixLen":25, + "network":"194.45.179.0\/25", + "version":52023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.179.0", + "prefixLen":25, + "network":"194.45.179.0\/25", + "version":52023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.179.128", + "prefixLen":25, + "network":"194.45.179.128\/25", + "version":52022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.179.128", + "prefixLen":25, + "network":"194.45.179.128\/25", + "version":52022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.192.0", + "prefixLen":25, + "network":"194.45.192.0\/25", + "version":52021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.192.0", + "prefixLen":25, + "network":"194.45.192.0\/25", + "version":52021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.192.128", + "prefixLen":25, + "network":"194.45.192.128\/25", + "version":52020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.192.128", + "prefixLen":25, + "network":"194.45.192.128\/25", + "version":52020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.193.0", + "prefixLen":25, + "network":"194.45.193.0\/25", + "version":52019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.193.0", + "prefixLen":25, + "network":"194.45.193.0\/25", + "version":52019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.193.128", + "prefixLen":25, + "network":"194.45.193.128\/25", + "version":52018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.193.128", + "prefixLen":25, + "network":"194.45.193.128\/25", + "version":52018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.194.0", + "prefixLen":25, + "network":"194.45.194.0\/25", + "version":52017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.194.0", + "prefixLen":25, + "network":"194.45.194.0\/25", + "version":52017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.194.128", + "prefixLen":25, + "network":"194.45.194.128\/25", + "version":52016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.194.128", + "prefixLen":25, + "network":"194.45.194.128\/25", + "version":52016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.195.0", + "prefixLen":25, + "network":"194.45.195.0\/25", + "version":52015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.195.0", + "prefixLen":25, + "network":"194.45.195.0\/25", + "version":52015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.195.128", + "prefixLen":25, + "network":"194.45.195.128\/25", + "version":52014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.195.128", + "prefixLen":25, + "network":"194.45.195.128\/25", + "version":52014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.208.0", + "prefixLen":25, + "network":"194.45.208.0\/25", + "version":52013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.208.0", + "prefixLen":25, + "network":"194.45.208.0\/25", + "version":52013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.208.128", + "prefixLen":25, + "network":"194.45.208.128\/25", + "version":52012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.208.128", + "prefixLen":25, + "network":"194.45.208.128\/25", + "version":52012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.209.0", + "prefixLen":25, + "network":"194.45.209.0\/25", + "version":52011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.209.0", + "prefixLen":25, + "network":"194.45.209.0\/25", + "version":52011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.209.128", + "prefixLen":25, + "network":"194.45.209.128\/25", + "version":52010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.209.128", + "prefixLen":25, + "network":"194.45.209.128\/25", + "version":52010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.210.0", + "prefixLen":25, + "network":"194.45.210.0\/25", + "version":52009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.210.0", + "prefixLen":25, + "network":"194.45.210.0\/25", + "version":52009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.210.128", + "prefixLen":25, + "network":"194.45.210.128\/25", + "version":52008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.210.128", + "prefixLen":25, + "network":"194.45.210.128\/25", + "version":52008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.211.0", + "prefixLen":25, + "network":"194.45.211.0\/25", + "version":52007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.211.0", + "prefixLen":25, + "network":"194.45.211.0\/25", + "version":52007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.211.128", + "prefixLen":25, + "network":"194.45.211.128\/25", + "version":52006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.211.128", + "prefixLen":25, + "network":"194.45.211.128\/25", + "version":52006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.224.0", + "prefixLen":25, + "network":"194.45.224.0\/25", + "version":52005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.224.0", + "prefixLen":25, + "network":"194.45.224.0\/25", + "version":52005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.224.128", + "prefixLen":25, + "network":"194.45.224.128\/25", + "version":52004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.224.128", + "prefixLen":25, + "network":"194.45.224.128\/25", + "version":52004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.225.0", + "prefixLen":25, + "network":"194.45.225.0\/25", + "version":52003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.225.0", + "prefixLen":25, + "network":"194.45.225.0\/25", + "version":52003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.225.128", + "prefixLen":25, + "network":"194.45.225.128\/25", + "version":52002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.225.128", + "prefixLen":25, + "network":"194.45.225.128\/25", + "version":52002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.226.0", + "prefixLen":25, + "network":"194.45.226.0\/25", + "version":52001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.226.0", + "prefixLen":25, + "network":"194.45.226.0\/25", + "version":52001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.226.128", + "prefixLen":25, + "network":"194.45.226.128\/25", + "version":52000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.226.128", + "prefixLen":25, + "network":"194.45.226.128\/25", + "version":52000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.227.0", + "prefixLen":25, + "network":"194.45.227.0\/25", + "version":51999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.227.0", + "prefixLen":25, + "network":"194.45.227.0\/25", + "version":51999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.227.128", + "prefixLen":25, + "network":"194.45.227.128\/25", + "version":51998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.227.128", + "prefixLen":25, + "network":"194.45.227.128\/25", + "version":51998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.240.0", + "prefixLen":25, + "network":"194.45.240.0\/25", + "version":51997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.240.0", + "prefixLen":25, + "network":"194.45.240.0\/25", + "version":51997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.240.128", + "prefixLen":25, + "network":"194.45.240.128\/25", + "version":51996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.240.128", + "prefixLen":25, + "network":"194.45.240.128\/25", + "version":51996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.241.0", + "prefixLen":25, + "network":"194.45.241.0\/25", + "version":51995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.241.0", + "prefixLen":25, + "network":"194.45.241.0\/25", + "version":51995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.241.128", + "prefixLen":25, + "network":"194.45.241.128\/25", + "version":51994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.241.128", + "prefixLen":25, + "network":"194.45.241.128\/25", + "version":51994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.242.0", + "prefixLen":25, + "network":"194.45.242.0\/25", + "version":51993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.242.0", + "prefixLen":25, + "network":"194.45.242.0\/25", + "version":51993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.242.128", + "prefixLen":25, + "network":"194.45.242.128\/25", + "version":51992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.242.128", + "prefixLen":25, + "network":"194.45.242.128\/25", + "version":51992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.243.0", + "prefixLen":25, + "network":"194.45.243.0\/25", + "version":51991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.243.0", + "prefixLen":25, + "network":"194.45.243.0\/25", + "version":51991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.45.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.45.243.128", + "prefixLen":25, + "network":"194.45.243.128\/25", + "version":51990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.45.243.128", + "prefixLen":25, + "network":"194.45.243.128\/25", + "version":51990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64989 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.0.0", + "prefixLen":25, + "network":"194.46.0.0\/25", + "version":52117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.0.0", + "prefixLen":25, + "network":"194.46.0.0\/25", + "version":52117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.0.128", + "prefixLen":25, + "network":"194.46.0.128\/25", + "version":52244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.0.128", + "prefixLen":25, + "network":"194.46.0.128\/25", + "version":52244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.1.0", + "prefixLen":25, + "network":"194.46.1.0\/25", + "version":52243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.1.0", + "prefixLen":25, + "network":"194.46.1.0\/25", + "version":52243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.1.128", + "prefixLen":25, + "network":"194.46.1.128\/25", + "version":52242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.1.128", + "prefixLen":25, + "network":"194.46.1.128\/25", + "version":52242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.2.0", + "prefixLen":25, + "network":"194.46.2.0\/25", + "version":52241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.2.0", + "prefixLen":25, + "network":"194.46.2.0\/25", + "version":52241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.2.128", + "prefixLen":25, + "network":"194.46.2.128\/25", + "version":52240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.2.128", + "prefixLen":25, + "network":"194.46.2.128\/25", + "version":52240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.3.0", + "prefixLen":25, + "network":"194.46.3.0\/25", + "version":52239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.3.0", + "prefixLen":25, + "network":"194.46.3.0\/25", + "version":52239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.3.128", + "prefixLen":25, + "network":"194.46.3.128\/25", + "version":52238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.3.128", + "prefixLen":25, + "network":"194.46.3.128\/25", + "version":52238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.16.0", + "prefixLen":25, + "network":"194.46.16.0\/25", + "version":52237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.16.0", + "prefixLen":25, + "network":"194.46.16.0\/25", + "version":52237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.16.128", + "prefixLen":25, + "network":"194.46.16.128\/25", + "version":52236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.16.128", + "prefixLen":25, + "network":"194.46.16.128\/25", + "version":52236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.17.0", + "prefixLen":25, + "network":"194.46.17.0\/25", + "version":52235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.17.0", + "prefixLen":25, + "network":"194.46.17.0\/25", + "version":52235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.17.128", + "prefixLen":25, + "network":"194.46.17.128\/25", + "version":52234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.17.128", + "prefixLen":25, + "network":"194.46.17.128\/25", + "version":52234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.18.0", + "prefixLen":25, + "network":"194.46.18.0\/25", + "version":52233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.18.0", + "prefixLen":25, + "network":"194.46.18.0\/25", + "version":52233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.18.128", + "prefixLen":25, + "network":"194.46.18.128\/25", + "version":52232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.18.128", + "prefixLen":25, + "network":"194.46.18.128\/25", + "version":52232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.19.0", + "prefixLen":25, + "network":"194.46.19.0\/25", + "version":52231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.19.0", + "prefixLen":25, + "network":"194.46.19.0\/25", + "version":52231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.19.128", + "prefixLen":25, + "network":"194.46.19.128\/25", + "version":52230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.19.128", + "prefixLen":25, + "network":"194.46.19.128\/25", + "version":52230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.32.0", + "prefixLen":25, + "network":"194.46.32.0\/25", + "version":52229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.32.0", + "prefixLen":25, + "network":"194.46.32.0\/25", + "version":52229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.32.128", + "prefixLen":25, + "network":"194.46.32.128\/25", + "version":52228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.32.128", + "prefixLen":25, + "network":"194.46.32.128\/25", + "version":52228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.33.0", + "prefixLen":25, + "network":"194.46.33.0\/25", + "version":52227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.33.0", + "prefixLen":25, + "network":"194.46.33.0\/25", + "version":52227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.33.128", + "prefixLen":25, + "network":"194.46.33.128\/25", + "version":52226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.33.128", + "prefixLen":25, + "network":"194.46.33.128\/25", + "version":52226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.34.0", + "prefixLen":25, + "network":"194.46.34.0\/25", + "version":52225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.34.0", + "prefixLen":25, + "network":"194.46.34.0\/25", + "version":52225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.34.128", + "prefixLen":25, + "network":"194.46.34.128\/25", + "version":52224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.34.128", + "prefixLen":25, + "network":"194.46.34.128\/25", + "version":52224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.35.0", + "prefixLen":25, + "network":"194.46.35.0\/25", + "version":52223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.35.0", + "prefixLen":25, + "network":"194.46.35.0\/25", + "version":52223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.35.128", + "prefixLen":25, + "network":"194.46.35.128\/25", + "version":52222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.35.128", + "prefixLen":25, + "network":"194.46.35.128\/25", + "version":52222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.48.0", + "prefixLen":25, + "network":"194.46.48.0\/25", + "version":52221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.48.0", + "prefixLen":25, + "network":"194.46.48.0\/25", + "version":52221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.48.128", + "prefixLen":25, + "network":"194.46.48.128\/25", + "version":52220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.48.128", + "prefixLen":25, + "network":"194.46.48.128\/25", + "version":52220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.49.0", + "prefixLen":25, + "network":"194.46.49.0\/25", + "version":52219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.49.0", + "prefixLen":25, + "network":"194.46.49.0\/25", + "version":52219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.49.128", + "prefixLen":25, + "network":"194.46.49.128\/25", + "version":52218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.49.128", + "prefixLen":25, + "network":"194.46.49.128\/25", + "version":52218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.50.0", + "prefixLen":25, + "network":"194.46.50.0\/25", + "version":52217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.50.0", + "prefixLen":25, + "network":"194.46.50.0\/25", + "version":52217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.50.128", + "prefixLen":25, + "network":"194.46.50.128\/25", + "version":52216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.50.128", + "prefixLen":25, + "network":"194.46.50.128\/25", + "version":52216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.51.0", + "prefixLen":25, + "network":"194.46.51.0\/25", + "version":52215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.51.0", + "prefixLen":25, + "network":"194.46.51.0\/25", + "version":52215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.51.128", + "prefixLen":25, + "network":"194.46.51.128\/25", + "version":52214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.51.128", + "prefixLen":25, + "network":"194.46.51.128\/25", + "version":52214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.64.0", + "prefixLen":25, + "network":"194.46.64.0\/25", + "version":52213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.64.0", + "prefixLen":25, + "network":"194.46.64.0\/25", + "version":52213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.64.128", + "prefixLen":25, + "network":"194.46.64.128\/25", + "version":52212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.64.128", + "prefixLen":25, + "network":"194.46.64.128\/25", + "version":52212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.65.0", + "prefixLen":25, + "network":"194.46.65.0\/25", + "version":52211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.65.0", + "prefixLen":25, + "network":"194.46.65.0\/25", + "version":52211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.65.128", + "prefixLen":25, + "network":"194.46.65.128\/25", + "version":52210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.65.128", + "prefixLen":25, + "network":"194.46.65.128\/25", + "version":52210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.66.0", + "prefixLen":25, + "network":"194.46.66.0\/25", + "version":52209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.66.0", + "prefixLen":25, + "network":"194.46.66.0\/25", + "version":52209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.66.128", + "prefixLen":25, + "network":"194.46.66.128\/25", + "version":52208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.66.128", + "prefixLen":25, + "network":"194.46.66.128\/25", + "version":52208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.67.0", + "prefixLen":25, + "network":"194.46.67.0\/25", + "version":52207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.67.0", + "prefixLen":25, + "network":"194.46.67.0\/25", + "version":52207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.67.128", + "prefixLen":25, + "network":"194.46.67.128\/25", + "version":52206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.67.128", + "prefixLen":25, + "network":"194.46.67.128\/25", + "version":52206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.80.0", + "prefixLen":25, + "network":"194.46.80.0\/25", + "version":52205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.80.0", + "prefixLen":25, + "network":"194.46.80.0\/25", + "version":52205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.80.128", + "prefixLen":25, + "network":"194.46.80.128\/25", + "version":52204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.80.128", + "prefixLen":25, + "network":"194.46.80.128\/25", + "version":52204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.81.0", + "prefixLen":25, + "network":"194.46.81.0\/25", + "version":52203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.81.0", + "prefixLen":25, + "network":"194.46.81.0\/25", + "version":52203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.81.128", + "prefixLen":25, + "network":"194.46.81.128\/25", + "version":52202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.81.128", + "prefixLen":25, + "network":"194.46.81.128\/25", + "version":52202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.82.0", + "prefixLen":25, + "network":"194.46.82.0\/25", + "version":52201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.82.0", + "prefixLen":25, + "network":"194.46.82.0\/25", + "version":52201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.82.128", + "prefixLen":25, + "network":"194.46.82.128\/25", + "version":52200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.82.128", + "prefixLen":25, + "network":"194.46.82.128\/25", + "version":52200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.83.0", + "prefixLen":25, + "network":"194.46.83.0\/25", + "version":52199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.83.0", + "prefixLen":25, + "network":"194.46.83.0\/25", + "version":52199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.83.128", + "prefixLen":25, + "network":"194.46.83.128\/25", + "version":52198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.83.128", + "prefixLen":25, + "network":"194.46.83.128\/25", + "version":52198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.96.0", + "prefixLen":25, + "network":"194.46.96.0\/25", + "version":52197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.96.0", + "prefixLen":25, + "network":"194.46.96.0\/25", + "version":52197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.96.128", + "prefixLen":25, + "network":"194.46.96.128\/25", + "version":52196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.96.128", + "prefixLen":25, + "network":"194.46.96.128\/25", + "version":52196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.97.0", + "prefixLen":25, + "network":"194.46.97.0\/25", + "version":52195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.97.0", + "prefixLen":25, + "network":"194.46.97.0\/25", + "version":52195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.97.128", + "prefixLen":25, + "network":"194.46.97.128\/25", + "version":52194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.97.128", + "prefixLen":25, + "network":"194.46.97.128\/25", + "version":52194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.98.0", + "prefixLen":25, + "network":"194.46.98.0\/25", + "version":52193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.98.0", + "prefixLen":25, + "network":"194.46.98.0\/25", + "version":52193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.98.128", + "prefixLen":25, + "network":"194.46.98.128\/25", + "version":52192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.98.128", + "prefixLen":25, + "network":"194.46.98.128\/25", + "version":52192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.99.0", + "prefixLen":25, + "network":"194.46.99.0\/25", + "version":52191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.99.0", + "prefixLen":25, + "network":"194.46.99.0\/25", + "version":52191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.99.128", + "prefixLen":25, + "network":"194.46.99.128\/25", + "version":52190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.99.128", + "prefixLen":25, + "network":"194.46.99.128\/25", + "version":52190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.112.0", + "prefixLen":25, + "network":"194.46.112.0\/25", + "version":52189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.112.0", + "prefixLen":25, + "network":"194.46.112.0\/25", + "version":52189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.112.128", + "prefixLen":25, + "network":"194.46.112.128\/25", + "version":52188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.112.128", + "prefixLen":25, + "network":"194.46.112.128\/25", + "version":52188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.113.0", + "prefixLen":25, + "network":"194.46.113.0\/25", + "version":52187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.113.0", + "prefixLen":25, + "network":"194.46.113.0\/25", + "version":52187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.113.128", + "prefixLen":25, + "network":"194.46.113.128\/25", + "version":52186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.113.128", + "prefixLen":25, + "network":"194.46.113.128\/25", + "version":52186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.114.0", + "prefixLen":25, + "network":"194.46.114.0\/25", + "version":52185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.114.0", + "prefixLen":25, + "network":"194.46.114.0\/25", + "version":52185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.114.128", + "prefixLen":25, + "network":"194.46.114.128\/25", + "version":52184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.114.128", + "prefixLen":25, + "network":"194.46.114.128\/25", + "version":52184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.115.0", + "prefixLen":25, + "network":"194.46.115.0\/25", + "version":52183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.115.0", + "prefixLen":25, + "network":"194.46.115.0\/25", + "version":52183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.115.128", + "prefixLen":25, + "network":"194.46.115.128\/25", + "version":52182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.115.128", + "prefixLen":25, + "network":"194.46.115.128\/25", + "version":52182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.128.0", + "prefixLen":25, + "network":"194.46.128.0\/25", + "version":52181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.128.0", + "prefixLen":25, + "network":"194.46.128.0\/25", + "version":52181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.128.128", + "prefixLen":25, + "network":"194.46.128.128\/25", + "version":52180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.128.128", + "prefixLen":25, + "network":"194.46.128.128\/25", + "version":52180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.129.0", + "prefixLen":25, + "network":"194.46.129.0\/25", + "version":52179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.129.0", + "prefixLen":25, + "network":"194.46.129.0\/25", + "version":52179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.129.128", + "prefixLen":25, + "network":"194.46.129.128\/25", + "version":52178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.129.128", + "prefixLen":25, + "network":"194.46.129.128\/25", + "version":52178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.130.0", + "prefixLen":25, + "network":"194.46.130.0\/25", + "version":52177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.130.0", + "prefixLen":25, + "network":"194.46.130.0\/25", + "version":52177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.130.128", + "prefixLen":25, + "network":"194.46.130.128\/25", + "version":52176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.130.128", + "prefixLen":25, + "network":"194.46.130.128\/25", + "version":52176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.131.0", + "prefixLen":25, + "network":"194.46.131.0\/25", + "version":52175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.131.0", + "prefixLen":25, + "network":"194.46.131.0\/25", + "version":52175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.131.128", + "prefixLen":25, + "network":"194.46.131.128\/25", + "version":52174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.131.128", + "prefixLen":25, + "network":"194.46.131.128\/25", + "version":52174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.144.0", + "prefixLen":25, + "network":"194.46.144.0\/25", + "version":52173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.144.0", + "prefixLen":25, + "network":"194.46.144.0\/25", + "version":52173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.144.128", + "prefixLen":25, + "network":"194.46.144.128\/25", + "version":52172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.144.128", + "prefixLen":25, + "network":"194.46.144.128\/25", + "version":52172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.145.0", + "prefixLen":25, + "network":"194.46.145.0\/25", + "version":52171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.145.0", + "prefixLen":25, + "network":"194.46.145.0\/25", + "version":52171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.145.128", + "prefixLen":25, + "network":"194.46.145.128\/25", + "version":52170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.145.128", + "prefixLen":25, + "network":"194.46.145.128\/25", + "version":52170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.146.0", + "prefixLen":25, + "network":"194.46.146.0\/25", + "version":52169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.146.0", + "prefixLen":25, + "network":"194.46.146.0\/25", + "version":52169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.146.128", + "prefixLen":25, + "network":"194.46.146.128\/25", + "version":52168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.146.128", + "prefixLen":25, + "network":"194.46.146.128\/25", + "version":52168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.147.0", + "prefixLen":25, + "network":"194.46.147.0\/25", + "version":52167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.147.0", + "prefixLen":25, + "network":"194.46.147.0\/25", + "version":52167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.147.128", + "prefixLen":25, + "network":"194.46.147.128\/25", + "version":52166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.147.128", + "prefixLen":25, + "network":"194.46.147.128\/25", + "version":52166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.160.0", + "prefixLen":25, + "network":"194.46.160.0\/25", + "version":52165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.160.0", + "prefixLen":25, + "network":"194.46.160.0\/25", + "version":52165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.160.128", + "prefixLen":25, + "network":"194.46.160.128\/25", + "version":52164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.160.128", + "prefixLen":25, + "network":"194.46.160.128\/25", + "version":52164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.161.0", + "prefixLen":25, + "network":"194.46.161.0\/25", + "version":52163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.161.0", + "prefixLen":25, + "network":"194.46.161.0\/25", + "version":52163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.161.128", + "prefixLen":25, + "network":"194.46.161.128\/25", + "version":52162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.161.128", + "prefixLen":25, + "network":"194.46.161.128\/25", + "version":52162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.162.0", + "prefixLen":25, + "network":"194.46.162.0\/25", + "version":52161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.162.0", + "prefixLen":25, + "network":"194.46.162.0\/25", + "version":52161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.162.128", + "prefixLen":25, + "network":"194.46.162.128\/25", + "version":52160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.162.128", + "prefixLen":25, + "network":"194.46.162.128\/25", + "version":52160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.163.0", + "prefixLen":25, + "network":"194.46.163.0\/25", + "version":52159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.163.0", + "prefixLen":25, + "network":"194.46.163.0\/25", + "version":52159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.163.128", + "prefixLen":25, + "network":"194.46.163.128\/25", + "version":52158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.163.128", + "prefixLen":25, + "network":"194.46.163.128\/25", + "version":52158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.176.0", + "prefixLen":25, + "network":"194.46.176.0\/25", + "version":52157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.176.0", + "prefixLen":25, + "network":"194.46.176.0\/25", + "version":52157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.176.128", + "prefixLen":25, + "network":"194.46.176.128\/25", + "version":52156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.176.128", + "prefixLen":25, + "network":"194.46.176.128\/25", + "version":52156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.177.0", + "prefixLen":25, + "network":"194.46.177.0\/25", + "version":52155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.177.0", + "prefixLen":25, + "network":"194.46.177.0\/25", + "version":52155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.177.128", + "prefixLen":25, + "network":"194.46.177.128\/25", + "version":52154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.177.128", + "prefixLen":25, + "network":"194.46.177.128\/25", + "version":52154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.178.0", + "prefixLen":25, + "network":"194.46.178.0\/25", + "version":52153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.178.0", + "prefixLen":25, + "network":"194.46.178.0\/25", + "version":52153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.178.128", + "prefixLen":25, + "network":"194.46.178.128\/25", + "version":52152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.178.128", + "prefixLen":25, + "network":"194.46.178.128\/25", + "version":52152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.179.0", + "prefixLen":25, + "network":"194.46.179.0\/25", + "version":52151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.179.0", + "prefixLen":25, + "network":"194.46.179.0\/25", + "version":52151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.179.128", + "prefixLen":25, + "network":"194.46.179.128\/25", + "version":52150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.179.128", + "prefixLen":25, + "network":"194.46.179.128\/25", + "version":52150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.192.0", + "prefixLen":25, + "network":"194.46.192.0\/25", + "version":52149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.192.0", + "prefixLen":25, + "network":"194.46.192.0\/25", + "version":52149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.192.128", + "prefixLen":25, + "network":"194.46.192.128\/25", + "version":52148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.192.128", + "prefixLen":25, + "network":"194.46.192.128\/25", + "version":52148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.193.0", + "prefixLen":25, + "network":"194.46.193.0\/25", + "version":52147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.193.0", + "prefixLen":25, + "network":"194.46.193.0\/25", + "version":52147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.193.128", + "prefixLen":25, + "network":"194.46.193.128\/25", + "version":52146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.193.128", + "prefixLen":25, + "network":"194.46.193.128\/25", + "version":52146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.194.0", + "prefixLen":25, + "network":"194.46.194.0\/25", + "version":52145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.194.0", + "prefixLen":25, + "network":"194.46.194.0\/25", + "version":52145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.194.128", + "prefixLen":25, + "network":"194.46.194.128\/25", + "version":52144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.194.128", + "prefixLen":25, + "network":"194.46.194.128\/25", + "version":52144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.195.0", + "prefixLen":25, + "network":"194.46.195.0\/25", + "version":52143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.195.0", + "prefixLen":25, + "network":"194.46.195.0\/25", + "version":52143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.195.128", + "prefixLen":25, + "network":"194.46.195.128\/25", + "version":52142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.195.128", + "prefixLen":25, + "network":"194.46.195.128\/25", + "version":52142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.208.0", + "prefixLen":25, + "network":"194.46.208.0\/25", + "version":52141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.208.0", + "prefixLen":25, + "network":"194.46.208.0\/25", + "version":52141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.208.128", + "prefixLen":25, + "network":"194.46.208.128\/25", + "version":52140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.208.128", + "prefixLen":25, + "network":"194.46.208.128\/25", + "version":52140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.209.0", + "prefixLen":25, + "network":"194.46.209.0\/25", + "version":52139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.209.0", + "prefixLen":25, + "network":"194.46.209.0\/25", + "version":52139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.209.128", + "prefixLen":25, + "network":"194.46.209.128\/25", + "version":52138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.209.128", + "prefixLen":25, + "network":"194.46.209.128\/25", + "version":52138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.210.0", + "prefixLen":25, + "network":"194.46.210.0\/25", + "version":52137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.210.0", + "prefixLen":25, + "network":"194.46.210.0\/25", + "version":52137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.210.128", + "prefixLen":25, + "network":"194.46.210.128\/25", + "version":52136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.210.128", + "prefixLen":25, + "network":"194.46.210.128\/25", + "version":52136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.211.0", + "prefixLen":25, + "network":"194.46.211.0\/25", + "version":52135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.211.0", + "prefixLen":25, + "network":"194.46.211.0\/25", + "version":52135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.211.128", + "prefixLen":25, + "network":"194.46.211.128\/25", + "version":52134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.211.128", + "prefixLen":25, + "network":"194.46.211.128\/25", + "version":52134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.224.0", + "prefixLen":25, + "network":"194.46.224.0\/25", + "version":52133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.224.0", + "prefixLen":25, + "network":"194.46.224.0\/25", + "version":52133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.224.128", + "prefixLen":25, + "network":"194.46.224.128\/25", + "version":52132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.224.128", + "prefixLen":25, + "network":"194.46.224.128\/25", + "version":52132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.225.0", + "prefixLen":25, + "network":"194.46.225.0\/25", + "version":52131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.225.0", + "prefixLen":25, + "network":"194.46.225.0\/25", + "version":52131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.225.128", + "prefixLen":25, + "network":"194.46.225.128\/25", + "version":52130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.225.128", + "prefixLen":25, + "network":"194.46.225.128\/25", + "version":52130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.226.0", + "prefixLen":25, + "network":"194.46.226.0\/25", + "version":52129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.226.0", + "prefixLen":25, + "network":"194.46.226.0\/25", + "version":52129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.226.128", + "prefixLen":25, + "network":"194.46.226.128\/25", + "version":52128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.226.128", + "prefixLen":25, + "network":"194.46.226.128\/25", + "version":52128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.227.0", + "prefixLen":25, + "network":"194.46.227.0\/25", + "version":52127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.227.0", + "prefixLen":25, + "network":"194.46.227.0\/25", + "version":52127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.227.128", + "prefixLen":25, + "network":"194.46.227.128\/25", + "version":52126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.227.128", + "prefixLen":25, + "network":"194.46.227.128\/25", + "version":52126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.240.0", + "prefixLen":25, + "network":"194.46.240.0\/25", + "version":52125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.240.0", + "prefixLen":25, + "network":"194.46.240.0\/25", + "version":52125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.240.128", + "prefixLen":25, + "network":"194.46.240.128\/25", + "version":52124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.240.128", + "prefixLen":25, + "network":"194.46.240.128\/25", + "version":52124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.241.0", + "prefixLen":25, + "network":"194.46.241.0\/25", + "version":52123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.241.0", + "prefixLen":25, + "network":"194.46.241.0\/25", + "version":52123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.241.128", + "prefixLen":25, + "network":"194.46.241.128\/25", + "version":52122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.241.128", + "prefixLen":25, + "network":"194.46.241.128\/25", + "version":52122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.242.0", + "prefixLen":25, + "network":"194.46.242.0\/25", + "version":52121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.242.0", + "prefixLen":25, + "network":"194.46.242.0\/25", + "version":52121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.242.128", + "prefixLen":25, + "network":"194.46.242.128\/25", + "version":52120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.242.128", + "prefixLen":25, + "network":"194.46.242.128\/25", + "version":52120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.243.0", + "prefixLen":25, + "network":"194.46.243.0\/25", + "version":52119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.243.0", + "prefixLen":25, + "network":"194.46.243.0\/25", + "version":52119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.46.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.46.243.128", + "prefixLen":25, + "network":"194.46.243.128\/25", + "version":52118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.46.243.128", + "prefixLen":25, + "network":"194.46.243.128\/25", + "version":52118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64990 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.0.0", + "prefixLen":25, + "network":"194.47.0.0\/25", + "version":52245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.0.0", + "prefixLen":25, + "network":"194.47.0.0\/25", + "version":52245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.0.128", + "prefixLen":25, + "network":"194.47.0.128\/25", + "version":52372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.0.128", + "prefixLen":25, + "network":"194.47.0.128\/25", + "version":52372, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.1.0", + "prefixLen":25, + "network":"194.47.1.0\/25", + "version":52371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.1.0", + "prefixLen":25, + "network":"194.47.1.0\/25", + "version":52371, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.1.128", + "prefixLen":25, + "network":"194.47.1.128\/25", + "version":52370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.1.128", + "prefixLen":25, + "network":"194.47.1.128\/25", + "version":52370, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.2.0", + "prefixLen":25, + "network":"194.47.2.0\/25", + "version":52369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.2.0", + "prefixLen":25, + "network":"194.47.2.0\/25", + "version":52369, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.2.128", + "prefixLen":25, + "network":"194.47.2.128\/25", + "version":52368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.2.128", + "prefixLen":25, + "network":"194.47.2.128\/25", + "version":52368, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.3.0", + "prefixLen":25, + "network":"194.47.3.0\/25", + "version":52367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.3.0", + "prefixLen":25, + "network":"194.47.3.0\/25", + "version":52367, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.3.128", + "prefixLen":25, + "network":"194.47.3.128\/25", + "version":52366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.3.128", + "prefixLen":25, + "network":"194.47.3.128\/25", + "version":52366, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.16.0", + "prefixLen":25, + "network":"194.47.16.0\/25", + "version":52365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.16.0", + "prefixLen":25, + "network":"194.47.16.0\/25", + "version":52365, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.16.128", + "prefixLen":25, + "network":"194.47.16.128\/25", + "version":52364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.16.128", + "prefixLen":25, + "network":"194.47.16.128\/25", + "version":52364, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.17.0", + "prefixLen":25, + "network":"194.47.17.0\/25", + "version":52363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.17.0", + "prefixLen":25, + "network":"194.47.17.0\/25", + "version":52363, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.17.128", + "prefixLen":25, + "network":"194.47.17.128\/25", + "version":52362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.17.128", + "prefixLen":25, + "network":"194.47.17.128\/25", + "version":52362, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.18.0", + "prefixLen":25, + "network":"194.47.18.0\/25", + "version":52361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.18.0", + "prefixLen":25, + "network":"194.47.18.0\/25", + "version":52361, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.18.128", + "prefixLen":25, + "network":"194.47.18.128\/25", + "version":52360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.18.128", + "prefixLen":25, + "network":"194.47.18.128\/25", + "version":52360, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.19.0", + "prefixLen":25, + "network":"194.47.19.0\/25", + "version":52359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.19.0", + "prefixLen":25, + "network":"194.47.19.0\/25", + "version":52359, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.19.128", + "prefixLen":25, + "network":"194.47.19.128\/25", + "version":52358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.19.128", + "prefixLen":25, + "network":"194.47.19.128\/25", + "version":52358, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.32.0", + "prefixLen":25, + "network":"194.47.32.0\/25", + "version":52357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.32.0", + "prefixLen":25, + "network":"194.47.32.0\/25", + "version":52357, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.32.128", + "prefixLen":25, + "network":"194.47.32.128\/25", + "version":52356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.32.128", + "prefixLen":25, + "network":"194.47.32.128\/25", + "version":52356, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.33.0", + "prefixLen":25, + "network":"194.47.33.0\/25", + "version":52355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.33.0", + "prefixLen":25, + "network":"194.47.33.0\/25", + "version":52355, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.33.128", + "prefixLen":25, + "network":"194.47.33.128\/25", + "version":52354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.33.128", + "prefixLen":25, + "network":"194.47.33.128\/25", + "version":52354, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.34.0", + "prefixLen":25, + "network":"194.47.34.0\/25", + "version":52353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.34.0", + "prefixLen":25, + "network":"194.47.34.0\/25", + "version":52353, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.34.128", + "prefixLen":25, + "network":"194.47.34.128\/25", + "version":52352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.34.128", + "prefixLen":25, + "network":"194.47.34.128\/25", + "version":52352, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.35.0", + "prefixLen":25, + "network":"194.47.35.0\/25", + "version":52351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.35.0", + "prefixLen":25, + "network":"194.47.35.0\/25", + "version":52351, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.35.128", + "prefixLen":25, + "network":"194.47.35.128\/25", + "version":52350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.35.128", + "prefixLen":25, + "network":"194.47.35.128\/25", + "version":52350, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.48.0", + "prefixLen":25, + "network":"194.47.48.0\/25", + "version":52349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.48.0", + "prefixLen":25, + "network":"194.47.48.0\/25", + "version":52349, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.48.128", + "prefixLen":25, + "network":"194.47.48.128\/25", + "version":52348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.48.128", + "prefixLen":25, + "network":"194.47.48.128\/25", + "version":52348, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.49.0", + "prefixLen":25, + "network":"194.47.49.0\/25", + "version":52347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.49.0", + "prefixLen":25, + "network":"194.47.49.0\/25", + "version":52347, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.49.128", + "prefixLen":25, + "network":"194.47.49.128\/25", + "version":52346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.49.128", + "prefixLen":25, + "network":"194.47.49.128\/25", + "version":52346, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.50.0", + "prefixLen":25, + "network":"194.47.50.0\/25", + "version":52345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.50.0", + "prefixLen":25, + "network":"194.47.50.0\/25", + "version":52345, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.50.128", + "prefixLen":25, + "network":"194.47.50.128\/25", + "version":52344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.50.128", + "prefixLen":25, + "network":"194.47.50.128\/25", + "version":52344, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.51.0", + "prefixLen":25, + "network":"194.47.51.0\/25", + "version":52343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.51.0", + "prefixLen":25, + "network":"194.47.51.0\/25", + "version":52343, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.51.128", + "prefixLen":25, + "network":"194.47.51.128\/25", + "version":52342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.51.128", + "prefixLen":25, + "network":"194.47.51.128\/25", + "version":52342, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.64.0", + "prefixLen":25, + "network":"194.47.64.0\/25", + "version":52341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.64.0", + "prefixLen":25, + "network":"194.47.64.0\/25", + "version":52341, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.64.128", + "prefixLen":25, + "network":"194.47.64.128\/25", + "version":52340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.64.128", + "prefixLen":25, + "network":"194.47.64.128\/25", + "version":52340, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.65.0", + "prefixLen":25, + "network":"194.47.65.0\/25", + "version":52339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.65.0", + "prefixLen":25, + "network":"194.47.65.0\/25", + "version":52339, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.65.128", + "prefixLen":25, + "network":"194.47.65.128\/25", + "version":52338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.65.128", + "prefixLen":25, + "network":"194.47.65.128\/25", + "version":52338, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.66.0", + "prefixLen":25, + "network":"194.47.66.0\/25", + "version":52337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.66.0", + "prefixLen":25, + "network":"194.47.66.0\/25", + "version":52337, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.66.128", + "prefixLen":25, + "network":"194.47.66.128\/25", + "version":52336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.66.128", + "prefixLen":25, + "network":"194.47.66.128\/25", + "version":52336, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.67.0", + "prefixLen":25, + "network":"194.47.67.0\/25", + "version":52335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.67.0", + "prefixLen":25, + "network":"194.47.67.0\/25", + "version":52335, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.67.128", + "prefixLen":25, + "network":"194.47.67.128\/25", + "version":52334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.67.128", + "prefixLen":25, + "network":"194.47.67.128\/25", + "version":52334, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.80.0", + "prefixLen":25, + "network":"194.47.80.0\/25", + "version":52333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.80.0", + "prefixLen":25, + "network":"194.47.80.0\/25", + "version":52333, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.80.128", + "prefixLen":25, + "network":"194.47.80.128\/25", + "version":52332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.80.128", + "prefixLen":25, + "network":"194.47.80.128\/25", + "version":52332, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.81.0", + "prefixLen":25, + "network":"194.47.81.0\/25", + "version":52331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.81.0", + "prefixLen":25, + "network":"194.47.81.0\/25", + "version":52331, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.81.128", + "prefixLen":25, + "network":"194.47.81.128\/25", + "version":52330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.81.128", + "prefixLen":25, + "network":"194.47.81.128\/25", + "version":52330, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.82.0", + "prefixLen":25, + "network":"194.47.82.0\/25", + "version":52329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.82.0", + "prefixLen":25, + "network":"194.47.82.0\/25", + "version":52329, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.82.128", + "prefixLen":25, + "network":"194.47.82.128\/25", + "version":52328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.82.128", + "prefixLen":25, + "network":"194.47.82.128\/25", + "version":52328, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.83.0", + "prefixLen":25, + "network":"194.47.83.0\/25", + "version":52327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.83.0", + "prefixLen":25, + "network":"194.47.83.0\/25", + "version":52327, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.83.128", + "prefixLen":25, + "network":"194.47.83.128\/25", + "version":52326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.83.128", + "prefixLen":25, + "network":"194.47.83.128\/25", + "version":52326, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.96.0", + "prefixLen":25, + "network":"194.47.96.0\/25", + "version":52325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.96.0", + "prefixLen":25, + "network":"194.47.96.0\/25", + "version":52325, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.96.128", + "prefixLen":25, + "network":"194.47.96.128\/25", + "version":52324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.96.128", + "prefixLen":25, + "network":"194.47.96.128\/25", + "version":52324, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.97.0", + "prefixLen":25, + "network":"194.47.97.0\/25", + "version":52323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.97.0", + "prefixLen":25, + "network":"194.47.97.0\/25", + "version":52323, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.97.128", + "prefixLen":25, + "network":"194.47.97.128\/25", + "version":52322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.97.128", + "prefixLen":25, + "network":"194.47.97.128\/25", + "version":52322, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.98.0", + "prefixLen":25, + "network":"194.47.98.0\/25", + "version":52321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.98.0", + "prefixLen":25, + "network":"194.47.98.0\/25", + "version":52321, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.98.128", + "prefixLen":25, + "network":"194.47.98.128\/25", + "version":52320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.98.128", + "prefixLen":25, + "network":"194.47.98.128\/25", + "version":52320, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.99.0", + "prefixLen":25, + "network":"194.47.99.0\/25", + "version":52319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.99.0", + "prefixLen":25, + "network":"194.47.99.0\/25", + "version":52319, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.99.128", + "prefixLen":25, + "network":"194.47.99.128\/25", + "version":52318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.99.128", + "prefixLen":25, + "network":"194.47.99.128\/25", + "version":52318, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.112.0", + "prefixLen":25, + "network":"194.47.112.0\/25", + "version":52317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.112.0", + "prefixLen":25, + "network":"194.47.112.0\/25", + "version":52317, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.112.128", + "prefixLen":25, + "network":"194.47.112.128\/25", + "version":52316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.112.128", + "prefixLen":25, + "network":"194.47.112.128\/25", + "version":52316, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.113.0", + "prefixLen":25, + "network":"194.47.113.0\/25", + "version":52315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.113.0", + "prefixLen":25, + "network":"194.47.113.0\/25", + "version":52315, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.113.128", + "prefixLen":25, + "network":"194.47.113.128\/25", + "version":52314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.113.128", + "prefixLen":25, + "network":"194.47.113.128\/25", + "version":52314, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.114.0", + "prefixLen":25, + "network":"194.47.114.0\/25", + "version":52313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.114.0", + "prefixLen":25, + "network":"194.47.114.0\/25", + "version":52313, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.114.128", + "prefixLen":25, + "network":"194.47.114.128\/25", + "version":52312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.114.128", + "prefixLen":25, + "network":"194.47.114.128\/25", + "version":52312, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.115.0", + "prefixLen":25, + "network":"194.47.115.0\/25", + "version":52311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.115.0", + "prefixLen":25, + "network":"194.47.115.0\/25", + "version":52311, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.115.128", + "prefixLen":25, + "network":"194.47.115.128\/25", + "version":52310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.115.128", + "prefixLen":25, + "network":"194.47.115.128\/25", + "version":52310, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.128.0", + "prefixLen":25, + "network":"194.47.128.0\/25", + "version":52309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.128.0", + "prefixLen":25, + "network":"194.47.128.0\/25", + "version":52309, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.128.128", + "prefixLen":25, + "network":"194.47.128.128\/25", + "version":52308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.128.128", + "prefixLen":25, + "network":"194.47.128.128\/25", + "version":52308, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.129.0", + "prefixLen":25, + "network":"194.47.129.0\/25", + "version":52307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.129.0", + "prefixLen":25, + "network":"194.47.129.0\/25", + "version":52307, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.129.128", + "prefixLen":25, + "network":"194.47.129.128\/25", + "version":52306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.129.128", + "prefixLen":25, + "network":"194.47.129.128\/25", + "version":52306, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.130.0", + "prefixLen":25, + "network":"194.47.130.0\/25", + "version":52305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.130.0", + "prefixLen":25, + "network":"194.47.130.0\/25", + "version":52305, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.130.128", + "prefixLen":25, + "network":"194.47.130.128\/25", + "version":52304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.130.128", + "prefixLen":25, + "network":"194.47.130.128\/25", + "version":52304, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.131.0", + "prefixLen":25, + "network":"194.47.131.0\/25", + "version":52303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.131.0", + "prefixLen":25, + "network":"194.47.131.0\/25", + "version":52303, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.131.128", + "prefixLen":25, + "network":"194.47.131.128\/25", + "version":52302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.131.128", + "prefixLen":25, + "network":"194.47.131.128\/25", + "version":52302, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.144.0", + "prefixLen":25, + "network":"194.47.144.0\/25", + "version":52301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.144.0", + "prefixLen":25, + "network":"194.47.144.0\/25", + "version":52301, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.144.128", + "prefixLen":25, + "network":"194.47.144.128\/25", + "version":52300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.144.128", + "prefixLen":25, + "network":"194.47.144.128\/25", + "version":52300, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.145.0", + "prefixLen":25, + "network":"194.47.145.0\/25", + "version":52299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.145.0", + "prefixLen":25, + "network":"194.47.145.0\/25", + "version":52299, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.145.128", + "prefixLen":25, + "network":"194.47.145.128\/25", + "version":52298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.145.128", + "prefixLen":25, + "network":"194.47.145.128\/25", + "version":52298, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.146.0", + "prefixLen":25, + "network":"194.47.146.0\/25", + "version":52297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.146.0", + "prefixLen":25, + "network":"194.47.146.0\/25", + "version":52297, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.146.128", + "prefixLen":25, + "network":"194.47.146.128\/25", + "version":52296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.146.128", + "prefixLen":25, + "network":"194.47.146.128\/25", + "version":52296, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.147.0", + "prefixLen":25, + "network":"194.47.147.0\/25", + "version":52295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.147.0", + "prefixLen":25, + "network":"194.47.147.0\/25", + "version":52295, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.147.128", + "prefixLen":25, + "network":"194.47.147.128\/25", + "version":52294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.147.128", + "prefixLen":25, + "network":"194.47.147.128\/25", + "version":52294, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.160.0", + "prefixLen":25, + "network":"194.47.160.0\/25", + "version":52293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.160.0", + "prefixLen":25, + "network":"194.47.160.0\/25", + "version":52293, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.160.128", + "prefixLen":25, + "network":"194.47.160.128\/25", + "version":52292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.160.128", + "prefixLen":25, + "network":"194.47.160.128\/25", + "version":52292, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.161.0", + "prefixLen":25, + "network":"194.47.161.0\/25", + "version":52291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.161.0", + "prefixLen":25, + "network":"194.47.161.0\/25", + "version":52291, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.161.128", + "prefixLen":25, + "network":"194.47.161.128\/25", + "version":52290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.161.128", + "prefixLen":25, + "network":"194.47.161.128\/25", + "version":52290, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.162.0", + "prefixLen":25, + "network":"194.47.162.0\/25", + "version":52289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.162.0", + "prefixLen":25, + "network":"194.47.162.0\/25", + "version":52289, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.162.128", + "prefixLen":25, + "network":"194.47.162.128\/25", + "version":52288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.162.128", + "prefixLen":25, + "network":"194.47.162.128\/25", + "version":52288, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.163.0", + "prefixLen":25, + "network":"194.47.163.0\/25", + "version":52287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.163.0", + "prefixLen":25, + "network":"194.47.163.0\/25", + "version":52287, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.163.128", + "prefixLen":25, + "network":"194.47.163.128\/25", + "version":52286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.163.128", + "prefixLen":25, + "network":"194.47.163.128\/25", + "version":52286, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.176.0", + "prefixLen":25, + "network":"194.47.176.0\/25", + "version":52285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.176.0", + "prefixLen":25, + "network":"194.47.176.0\/25", + "version":52285, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.176.128", + "prefixLen":25, + "network":"194.47.176.128\/25", + "version":52284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.176.128", + "prefixLen":25, + "network":"194.47.176.128\/25", + "version":52284, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.177.0", + "prefixLen":25, + "network":"194.47.177.0\/25", + "version":52283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.177.0", + "prefixLen":25, + "network":"194.47.177.0\/25", + "version":52283, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.177.128", + "prefixLen":25, + "network":"194.47.177.128\/25", + "version":52282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.177.128", + "prefixLen":25, + "network":"194.47.177.128\/25", + "version":52282, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.178.0", + "prefixLen":25, + "network":"194.47.178.0\/25", + "version":52281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.178.0", + "prefixLen":25, + "network":"194.47.178.0\/25", + "version":52281, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.178.128", + "prefixLen":25, + "network":"194.47.178.128\/25", + "version":52280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.178.128", + "prefixLen":25, + "network":"194.47.178.128\/25", + "version":52280, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.179.0", + "prefixLen":25, + "network":"194.47.179.0\/25", + "version":52279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.179.0", + "prefixLen":25, + "network":"194.47.179.0\/25", + "version":52279, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.179.128", + "prefixLen":25, + "network":"194.47.179.128\/25", + "version":52278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.179.128", + "prefixLen":25, + "network":"194.47.179.128\/25", + "version":52278, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.192.0", + "prefixLen":25, + "network":"194.47.192.0\/25", + "version":52277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.192.0", + "prefixLen":25, + "network":"194.47.192.0\/25", + "version":52277, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.192.128", + "prefixLen":25, + "network":"194.47.192.128\/25", + "version":52276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.192.128", + "prefixLen":25, + "network":"194.47.192.128\/25", + "version":52276, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.193.0", + "prefixLen":25, + "network":"194.47.193.0\/25", + "version":52275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.193.0", + "prefixLen":25, + "network":"194.47.193.0\/25", + "version":52275, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.193.128", + "prefixLen":25, + "network":"194.47.193.128\/25", + "version":52274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.193.128", + "prefixLen":25, + "network":"194.47.193.128\/25", + "version":52274, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.194.0", + "prefixLen":25, + "network":"194.47.194.0\/25", + "version":52273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.194.0", + "prefixLen":25, + "network":"194.47.194.0\/25", + "version":52273, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.194.128", + "prefixLen":25, + "network":"194.47.194.128\/25", + "version":52272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.194.128", + "prefixLen":25, + "network":"194.47.194.128\/25", + "version":52272, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.195.0", + "prefixLen":25, + "network":"194.47.195.0\/25", + "version":52271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.195.0", + "prefixLen":25, + "network":"194.47.195.0\/25", + "version":52271, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.195.128", + "prefixLen":25, + "network":"194.47.195.128\/25", + "version":52270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.195.128", + "prefixLen":25, + "network":"194.47.195.128\/25", + "version":52270, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.208.0", + "prefixLen":25, + "network":"194.47.208.0\/25", + "version":52269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.208.0", + "prefixLen":25, + "network":"194.47.208.0\/25", + "version":52269, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.208.128", + "prefixLen":25, + "network":"194.47.208.128\/25", + "version":52268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.208.128", + "prefixLen":25, + "network":"194.47.208.128\/25", + "version":52268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.209.0", + "prefixLen":25, + "network":"194.47.209.0\/25", + "version":52267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.209.0", + "prefixLen":25, + "network":"194.47.209.0\/25", + "version":52267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.209.128", + "prefixLen":25, + "network":"194.47.209.128\/25", + "version":52266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.209.128", + "prefixLen":25, + "network":"194.47.209.128\/25", + "version":52266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.210.0", + "prefixLen":25, + "network":"194.47.210.0\/25", + "version":52265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.210.0", + "prefixLen":25, + "network":"194.47.210.0\/25", + "version":52265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.210.128", + "prefixLen":25, + "network":"194.47.210.128\/25", + "version":52264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.210.128", + "prefixLen":25, + "network":"194.47.210.128\/25", + "version":52264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.211.0", + "prefixLen":25, + "network":"194.47.211.0\/25", + "version":52263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.211.0", + "prefixLen":25, + "network":"194.47.211.0\/25", + "version":52263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.211.128", + "prefixLen":25, + "network":"194.47.211.128\/25", + "version":52262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.211.128", + "prefixLen":25, + "network":"194.47.211.128\/25", + "version":52262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.224.0", + "prefixLen":25, + "network":"194.47.224.0\/25", + "version":52261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.224.0", + "prefixLen":25, + "network":"194.47.224.0\/25", + "version":52261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.224.128", + "prefixLen":25, + "network":"194.47.224.128\/25", + "version":52260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.224.128", + "prefixLen":25, + "network":"194.47.224.128\/25", + "version":52260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.225.0", + "prefixLen":25, + "network":"194.47.225.0\/25", + "version":52259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.225.0", + "prefixLen":25, + "network":"194.47.225.0\/25", + "version":52259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.225.128", + "prefixLen":25, + "network":"194.47.225.128\/25", + "version":52258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.225.128", + "prefixLen":25, + "network":"194.47.225.128\/25", + "version":52258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.226.0", + "prefixLen":25, + "network":"194.47.226.0\/25", + "version":52257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.226.0", + "prefixLen":25, + "network":"194.47.226.0\/25", + "version":52257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.226.128", + "prefixLen":25, + "network":"194.47.226.128\/25", + "version":52256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.226.128", + "prefixLen":25, + "network":"194.47.226.128\/25", + "version":52256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.227.0", + "prefixLen":25, + "network":"194.47.227.0\/25", + "version":52255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.227.0", + "prefixLen":25, + "network":"194.47.227.0\/25", + "version":52255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.227.128", + "prefixLen":25, + "network":"194.47.227.128\/25", + "version":52254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.227.128", + "prefixLen":25, + "network":"194.47.227.128\/25", + "version":52254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.240.0", + "prefixLen":25, + "network":"194.47.240.0\/25", + "version":52253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.240.0", + "prefixLen":25, + "network":"194.47.240.0\/25", + "version":52253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.240.128", + "prefixLen":25, + "network":"194.47.240.128\/25", + "version":52252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.240.128", + "prefixLen":25, + "network":"194.47.240.128\/25", + "version":52252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.241.0", + "prefixLen":25, + "network":"194.47.241.0\/25", + "version":52251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.241.0", + "prefixLen":25, + "network":"194.47.241.0\/25", + "version":52251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.241.128", + "prefixLen":25, + "network":"194.47.241.128\/25", + "version":52250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.241.128", + "prefixLen":25, + "network":"194.47.241.128\/25", + "version":52250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.242.0", + "prefixLen":25, + "network":"194.47.242.0\/25", + "version":52249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.242.0", + "prefixLen":25, + "network":"194.47.242.0\/25", + "version":52249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.242.128", + "prefixLen":25, + "network":"194.47.242.128\/25", + "version":52248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.242.128", + "prefixLen":25, + "network":"194.47.242.128\/25", + "version":52248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.243.0", + "prefixLen":25, + "network":"194.47.243.0\/25", + "version":52247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.243.0", + "prefixLen":25, + "network":"194.47.243.0\/25", + "version":52247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.47.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.47.243.128", + "prefixLen":25, + "network":"194.47.243.128\/25", + "version":52246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.47.243.128", + "prefixLen":25, + "network":"194.47.243.128\/25", + "version":52246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64991 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.0.0", + "prefixLen":25, + "network":"194.48.0.0\/25", + "version":52373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.0.0", + "prefixLen":25, + "network":"194.48.0.0\/25", + "version":52373, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.0.128", + "prefixLen":25, + "network":"194.48.0.128\/25", + "version":52500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.0.128", + "prefixLen":25, + "network":"194.48.0.128\/25", + "version":52500, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.1.0", + "prefixLen":25, + "network":"194.48.1.0\/25", + "version":52499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.1.0", + "prefixLen":25, + "network":"194.48.1.0\/25", + "version":52499, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.1.128", + "prefixLen":25, + "network":"194.48.1.128\/25", + "version":52498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.1.128", + "prefixLen":25, + "network":"194.48.1.128\/25", + "version":52498, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.2.0", + "prefixLen":25, + "network":"194.48.2.0\/25", + "version":52497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.2.0", + "prefixLen":25, + "network":"194.48.2.0\/25", + "version":52497, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.2.128", + "prefixLen":25, + "network":"194.48.2.128\/25", + "version":52496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.2.128", + "prefixLen":25, + "network":"194.48.2.128\/25", + "version":52496, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.3.0", + "prefixLen":25, + "network":"194.48.3.0\/25", + "version":52495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.3.0", + "prefixLen":25, + "network":"194.48.3.0\/25", + "version":52495, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.3.128", + "prefixLen":25, + "network":"194.48.3.128\/25", + "version":52494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.3.128", + "prefixLen":25, + "network":"194.48.3.128\/25", + "version":52494, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.16.0", + "prefixLen":25, + "network":"194.48.16.0\/25", + "version":52493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.16.0", + "prefixLen":25, + "network":"194.48.16.0\/25", + "version":52493, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.16.128", + "prefixLen":25, + "network":"194.48.16.128\/25", + "version":52492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.16.128", + "prefixLen":25, + "network":"194.48.16.128\/25", + "version":52492, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.17.0", + "prefixLen":25, + "network":"194.48.17.0\/25", + "version":52491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.17.0", + "prefixLen":25, + "network":"194.48.17.0\/25", + "version":52491, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.17.128", + "prefixLen":25, + "network":"194.48.17.128\/25", + "version":52490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.17.128", + "prefixLen":25, + "network":"194.48.17.128\/25", + "version":52490, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.18.0", + "prefixLen":25, + "network":"194.48.18.0\/25", + "version":52489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.18.0", + "prefixLen":25, + "network":"194.48.18.0\/25", + "version":52489, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.18.128", + "prefixLen":25, + "network":"194.48.18.128\/25", + "version":52488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.18.128", + "prefixLen":25, + "network":"194.48.18.128\/25", + "version":52488, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.19.0", + "prefixLen":25, + "network":"194.48.19.0\/25", + "version":52487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.19.0", + "prefixLen":25, + "network":"194.48.19.0\/25", + "version":52487, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.19.128", + "prefixLen":25, + "network":"194.48.19.128\/25", + "version":52486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.19.128", + "prefixLen":25, + "network":"194.48.19.128\/25", + "version":52486, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.32.0", + "prefixLen":25, + "network":"194.48.32.0\/25", + "version":52485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.32.0", + "prefixLen":25, + "network":"194.48.32.0\/25", + "version":52485, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.32.128", + "prefixLen":25, + "network":"194.48.32.128\/25", + "version":52484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.32.128", + "prefixLen":25, + "network":"194.48.32.128\/25", + "version":52484, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.33.0", + "prefixLen":25, + "network":"194.48.33.0\/25", + "version":52483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.33.0", + "prefixLen":25, + "network":"194.48.33.0\/25", + "version":52483, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.33.128", + "prefixLen":25, + "network":"194.48.33.128\/25", + "version":52482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.33.128", + "prefixLen":25, + "network":"194.48.33.128\/25", + "version":52482, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.34.0", + "prefixLen":25, + "network":"194.48.34.0\/25", + "version":52481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.34.0", + "prefixLen":25, + "network":"194.48.34.0\/25", + "version":52481, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.34.128", + "prefixLen":25, + "network":"194.48.34.128\/25", + "version":52480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.34.128", + "prefixLen":25, + "network":"194.48.34.128\/25", + "version":52480, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.35.0", + "prefixLen":25, + "network":"194.48.35.0\/25", + "version":52479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.35.0", + "prefixLen":25, + "network":"194.48.35.0\/25", + "version":52479, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.35.128", + "prefixLen":25, + "network":"194.48.35.128\/25", + "version":52478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.35.128", + "prefixLen":25, + "network":"194.48.35.128\/25", + "version":52478, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.48.0", + "prefixLen":25, + "network":"194.48.48.0\/25", + "version":52477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.48.0", + "prefixLen":25, + "network":"194.48.48.0\/25", + "version":52477, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.48.128", + "prefixLen":25, + "network":"194.48.48.128\/25", + "version":52476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.48.128", + "prefixLen":25, + "network":"194.48.48.128\/25", + "version":52476, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.49.0", + "prefixLen":25, + "network":"194.48.49.0\/25", + "version":52475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.49.0", + "prefixLen":25, + "network":"194.48.49.0\/25", + "version":52475, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.49.128", + "prefixLen":25, + "network":"194.48.49.128\/25", + "version":52474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.49.128", + "prefixLen":25, + "network":"194.48.49.128\/25", + "version":52474, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.50.0", + "prefixLen":25, + "network":"194.48.50.0\/25", + "version":52473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.50.0", + "prefixLen":25, + "network":"194.48.50.0\/25", + "version":52473, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.50.128", + "prefixLen":25, + "network":"194.48.50.128\/25", + "version":52472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.50.128", + "prefixLen":25, + "network":"194.48.50.128\/25", + "version":52472, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.51.0", + "prefixLen":25, + "network":"194.48.51.0\/25", + "version":52471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.51.0", + "prefixLen":25, + "network":"194.48.51.0\/25", + "version":52471, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.51.128", + "prefixLen":25, + "network":"194.48.51.128\/25", + "version":52470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.51.128", + "prefixLen":25, + "network":"194.48.51.128\/25", + "version":52470, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.64.0", + "prefixLen":25, + "network":"194.48.64.0\/25", + "version":52469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.64.0", + "prefixLen":25, + "network":"194.48.64.0\/25", + "version":52469, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.64.128", + "prefixLen":25, + "network":"194.48.64.128\/25", + "version":52468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.64.128", + "prefixLen":25, + "network":"194.48.64.128\/25", + "version":52468, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.65.0", + "prefixLen":25, + "network":"194.48.65.0\/25", + "version":52467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.65.0", + "prefixLen":25, + "network":"194.48.65.0\/25", + "version":52467, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.65.128", + "prefixLen":25, + "network":"194.48.65.128\/25", + "version":52466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.65.128", + "prefixLen":25, + "network":"194.48.65.128\/25", + "version":52466, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.66.0", + "prefixLen":25, + "network":"194.48.66.0\/25", + "version":52465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.66.0", + "prefixLen":25, + "network":"194.48.66.0\/25", + "version":52465, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.66.128", + "prefixLen":25, + "network":"194.48.66.128\/25", + "version":52464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.66.128", + "prefixLen":25, + "network":"194.48.66.128\/25", + "version":52464, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.67.0", + "prefixLen":25, + "network":"194.48.67.0\/25", + "version":52463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.67.0", + "prefixLen":25, + "network":"194.48.67.0\/25", + "version":52463, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.67.128", + "prefixLen":25, + "network":"194.48.67.128\/25", + "version":52462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.67.128", + "prefixLen":25, + "network":"194.48.67.128\/25", + "version":52462, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.80.0", + "prefixLen":25, + "network":"194.48.80.0\/25", + "version":52461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.80.0", + "prefixLen":25, + "network":"194.48.80.0\/25", + "version":52461, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.80.128", + "prefixLen":25, + "network":"194.48.80.128\/25", + "version":52460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.80.128", + "prefixLen":25, + "network":"194.48.80.128\/25", + "version":52460, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.81.0", + "prefixLen":25, + "network":"194.48.81.0\/25", + "version":52459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.81.0", + "prefixLen":25, + "network":"194.48.81.0\/25", + "version":52459, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.81.128", + "prefixLen":25, + "network":"194.48.81.128\/25", + "version":52458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.81.128", + "prefixLen":25, + "network":"194.48.81.128\/25", + "version":52458, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.82.0", + "prefixLen":25, + "network":"194.48.82.0\/25", + "version":52457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.82.0", + "prefixLen":25, + "network":"194.48.82.0\/25", + "version":52457, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.82.128", + "prefixLen":25, + "network":"194.48.82.128\/25", + "version":52456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.82.128", + "prefixLen":25, + "network":"194.48.82.128\/25", + "version":52456, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.83.0", + "prefixLen":25, + "network":"194.48.83.0\/25", + "version":52455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.83.0", + "prefixLen":25, + "network":"194.48.83.0\/25", + "version":52455, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.83.128", + "prefixLen":25, + "network":"194.48.83.128\/25", + "version":52454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.83.128", + "prefixLen":25, + "network":"194.48.83.128\/25", + "version":52454, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.96.0", + "prefixLen":25, + "network":"194.48.96.0\/25", + "version":52453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.96.0", + "prefixLen":25, + "network":"194.48.96.0\/25", + "version":52453, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.96.128", + "prefixLen":25, + "network":"194.48.96.128\/25", + "version":52452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.96.128", + "prefixLen":25, + "network":"194.48.96.128\/25", + "version":52452, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.97.0", + "prefixLen":25, + "network":"194.48.97.0\/25", + "version":52451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.97.0", + "prefixLen":25, + "network":"194.48.97.0\/25", + "version":52451, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.97.128", + "prefixLen":25, + "network":"194.48.97.128\/25", + "version":52450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.97.128", + "prefixLen":25, + "network":"194.48.97.128\/25", + "version":52450, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.98.0", + "prefixLen":25, + "network":"194.48.98.0\/25", + "version":52449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.98.0", + "prefixLen":25, + "network":"194.48.98.0\/25", + "version":52449, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.98.128", + "prefixLen":25, + "network":"194.48.98.128\/25", + "version":52448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.98.128", + "prefixLen":25, + "network":"194.48.98.128\/25", + "version":52448, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.99.0", + "prefixLen":25, + "network":"194.48.99.0\/25", + "version":52447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.99.0", + "prefixLen":25, + "network":"194.48.99.0\/25", + "version":52447, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.99.128", + "prefixLen":25, + "network":"194.48.99.128\/25", + "version":52446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.99.128", + "prefixLen":25, + "network":"194.48.99.128\/25", + "version":52446, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.112.0", + "prefixLen":25, + "network":"194.48.112.0\/25", + "version":52445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.112.0", + "prefixLen":25, + "network":"194.48.112.0\/25", + "version":52445, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.112.128", + "prefixLen":25, + "network":"194.48.112.128\/25", + "version":52444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.112.128", + "prefixLen":25, + "network":"194.48.112.128\/25", + "version":52444, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.113.0", + "prefixLen":25, + "network":"194.48.113.0\/25", + "version":52443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.113.0", + "prefixLen":25, + "network":"194.48.113.0\/25", + "version":52443, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.113.128", + "prefixLen":25, + "network":"194.48.113.128\/25", + "version":52442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.113.128", + "prefixLen":25, + "network":"194.48.113.128\/25", + "version":52442, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.114.0", + "prefixLen":25, + "network":"194.48.114.0\/25", + "version":52441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.114.0", + "prefixLen":25, + "network":"194.48.114.0\/25", + "version":52441, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.114.128", + "prefixLen":25, + "network":"194.48.114.128\/25", + "version":52440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.114.128", + "prefixLen":25, + "network":"194.48.114.128\/25", + "version":52440, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.115.0", + "prefixLen":25, + "network":"194.48.115.0\/25", + "version":52439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.115.0", + "prefixLen":25, + "network":"194.48.115.0\/25", + "version":52439, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.115.128", + "prefixLen":25, + "network":"194.48.115.128\/25", + "version":52438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.115.128", + "prefixLen":25, + "network":"194.48.115.128\/25", + "version":52438, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.128.0", + "prefixLen":25, + "network":"194.48.128.0\/25", + "version":52437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.128.0", + "prefixLen":25, + "network":"194.48.128.0\/25", + "version":52437, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.128.128", + "prefixLen":25, + "network":"194.48.128.128\/25", + "version":52436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.128.128", + "prefixLen":25, + "network":"194.48.128.128\/25", + "version":52436, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.129.0", + "prefixLen":25, + "network":"194.48.129.0\/25", + "version":52435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.129.0", + "prefixLen":25, + "network":"194.48.129.0\/25", + "version":52435, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.129.128", + "prefixLen":25, + "network":"194.48.129.128\/25", + "version":52434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.129.128", + "prefixLen":25, + "network":"194.48.129.128\/25", + "version":52434, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.130.0", + "prefixLen":25, + "network":"194.48.130.0\/25", + "version":52433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.130.0", + "prefixLen":25, + "network":"194.48.130.0\/25", + "version":52433, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.130.128", + "prefixLen":25, + "network":"194.48.130.128\/25", + "version":52432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.130.128", + "prefixLen":25, + "network":"194.48.130.128\/25", + "version":52432, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.131.0", + "prefixLen":25, + "network":"194.48.131.0\/25", + "version":52431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.131.0", + "prefixLen":25, + "network":"194.48.131.0\/25", + "version":52431, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.131.128", + "prefixLen":25, + "network":"194.48.131.128\/25", + "version":52430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.131.128", + "prefixLen":25, + "network":"194.48.131.128\/25", + "version":52430, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.144.0", + "prefixLen":25, + "network":"194.48.144.0\/25", + "version":52429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.144.0", + "prefixLen":25, + "network":"194.48.144.0\/25", + "version":52429, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.144.128", + "prefixLen":25, + "network":"194.48.144.128\/25", + "version":52428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.144.128", + "prefixLen":25, + "network":"194.48.144.128\/25", + "version":52428, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.145.0", + "prefixLen":25, + "network":"194.48.145.0\/25", + "version":52427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.145.0", + "prefixLen":25, + "network":"194.48.145.0\/25", + "version":52427, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.145.128", + "prefixLen":25, + "network":"194.48.145.128\/25", + "version":52426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.145.128", + "prefixLen":25, + "network":"194.48.145.128\/25", + "version":52426, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.146.0", + "prefixLen":25, + "network":"194.48.146.0\/25", + "version":52425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.146.0", + "prefixLen":25, + "network":"194.48.146.0\/25", + "version":52425, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.146.128", + "prefixLen":25, + "network":"194.48.146.128\/25", + "version":52424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.146.128", + "prefixLen":25, + "network":"194.48.146.128\/25", + "version":52424, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.147.0", + "prefixLen":25, + "network":"194.48.147.0\/25", + "version":52423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.147.0", + "prefixLen":25, + "network":"194.48.147.0\/25", + "version":52423, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.147.128", + "prefixLen":25, + "network":"194.48.147.128\/25", + "version":52422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.147.128", + "prefixLen":25, + "network":"194.48.147.128\/25", + "version":52422, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.160.0", + "prefixLen":25, + "network":"194.48.160.0\/25", + "version":52421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.160.0", + "prefixLen":25, + "network":"194.48.160.0\/25", + "version":52421, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.160.128", + "prefixLen":25, + "network":"194.48.160.128\/25", + "version":52420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.160.128", + "prefixLen":25, + "network":"194.48.160.128\/25", + "version":52420, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.161.0", + "prefixLen":25, + "network":"194.48.161.0\/25", + "version":52419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.161.0", + "prefixLen":25, + "network":"194.48.161.0\/25", + "version":52419, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.161.128", + "prefixLen":25, + "network":"194.48.161.128\/25", + "version":52418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.161.128", + "prefixLen":25, + "network":"194.48.161.128\/25", + "version":52418, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.162.0", + "prefixLen":25, + "network":"194.48.162.0\/25", + "version":52417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.162.0", + "prefixLen":25, + "network":"194.48.162.0\/25", + "version":52417, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.162.128", + "prefixLen":25, + "network":"194.48.162.128\/25", + "version":52416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.162.128", + "prefixLen":25, + "network":"194.48.162.128\/25", + "version":52416, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.163.0", + "prefixLen":25, + "network":"194.48.163.0\/25", + "version":52415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.163.0", + "prefixLen":25, + "network":"194.48.163.0\/25", + "version":52415, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.163.128", + "prefixLen":25, + "network":"194.48.163.128\/25", + "version":52414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.163.128", + "prefixLen":25, + "network":"194.48.163.128\/25", + "version":52414, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.176.0", + "prefixLen":25, + "network":"194.48.176.0\/25", + "version":52413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.176.0", + "prefixLen":25, + "network":"194.48.176.0\/25", + "version":52413, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.176.128", + "prefixLen":25, + "network":"194.48.176.128\/25", + "version":52412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.176.128", + "prefixLen":25, + "network":"194.48.176.128\/25", + "version":52412, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.177.0", + "prefixLen":25, + "network":"194.48.177.0\/25", + "version":52411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.177.0", + "prefixLen":25, + "network":"194.48.177.0\/25", + "version":52411, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.177.128", + "prefixLen":25, + "network":"194.48.177.128\/25", + "version":52410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.177.128", + "prefixLen":25, + "network":"194.48.177.128\/25", + "version":52410, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.178.0", + "prefixLen":25, + "network":"194.48.178.0\/25", + "version":52409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.178.0", + "prefixLen":25, + "network":"194.48.178.0\/25", + "version":52409, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.178.128", + "prefixLen":25, + "network":"194.48.178.128\/25", + "version":52408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.178.128", + "prefixLen":25, + "network":"194.48.178.128\/25", + "version":52408, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.179.0", + "prefixLen":25, + "network":"194.48.179.0\/25", + "version":52407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.179.0", + "prefixLen":25, + "network":"194.48.179.0\/25", + "version":52407, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.179.128", + "prefixLen":25, + "network":"194.48.179.128\/25", + "version":52406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.179.128", + "prefixLen":25, + "network":"194.48.179.128\/25", + "version":52406, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.192.0", + "prefixLen":25, + "network":"194.48.192.0\/25", + "version":52405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.192.0", + "prefixLen":25, + "network":"194.48.192.0\/25", + "version":52405, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.192.128", + "prefixLen":25, + "network":"194.48.192.128\/25", + "version":52404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.192.128", + "prefixLen":25, + "network":"194.48.192.128\/25", + "version":52404, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.193.0", + "prefixLen":25, + "network":"194.48.193.0\/25", + "version":52403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.193.0", + "prefixLen":25, + "network":"194.48.193.0\/25", + "version":52403, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.193.128", + "prefixLen":25, + "network":"194.48.193.128\/25", + "version":52402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.193.128", + "prefixLen":25, + "network":"194.48.193.128\/25", + "version":52402, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.194.0", + "prefixLen":25, + "network":"194.48.194.0\/25", + "version":52401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.194.0", + "prefixLen":25, + "network":"194.48.194.0\/25", + "version":52401, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.194.128", + "prefixLen":25, + "network":"194.48.194.128\/25", + "version":52400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.194.128", + "prefixLen":25, + "network":"194.48.194.128\/25", + "version":52400, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.195.0", + "prefixLen":25, + "network":"194.48.195.0\/25", + "version":52399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.195.0", + "prefixLen":25, + "network":"194.48.195.0\/25", + "version":52399, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.195.128", + "prefixLen":25, + "network":"194.48.195.128\/25", + "version":52398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.195.128", + "prefixLen":25, + "network":"194.48.195.128\/25", + "version":52398, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.208.0", + "prefixLen":25, + "network":"194.48.208.0\/25", + "version":52397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.208.0", + "prefixLen":25, + "network":"194.48.208.0\/25", + "version":52397, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.208.128", + "prefixLen":25, + "network":"194.48.208.128\/25", + "version":52396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.208.128", + "prefixLen":25, + "network":"194.48.208.128\/25", + "version":52396, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.209.0", + "prefixLen":25, + "network":"194.48.209.0\/25", + "version":52395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.209.0", + "prefixLen":25, + "network":"194.48.209.0\/25", + "version":52395, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.209.128", + "prefixLen":25, + "network":"194.48.209.128\/25", + "version":52394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.209.128", + "prefixLen":25, + "network":"194.48.209.128\/25", + "version":52394, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.210.0", + "prefixLen":25, + "network":"194.48.210.0\/25", + "version":52393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.210.0", + "prefixLen":25, + "network":"194.48.210.0\/25", + "version":52393, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.210.128", + "prefixLen":25, + "network":"194.48.210.128\/25", + "version":52392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.210.128", + "prefixLen":25, + "network":"194.48.210.128\/25", + "version":52392, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.211.0", + "prefixLen":25, + "network":"194.48.211.0\/25", + "version":52391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.211.0", + "prefixLen":25, + "network":"194.48.211.0\/25", + "version":52391, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.211.128", + "prefixLen":25, + "network":"194.48.211.128\/25", + "version":52390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.211.128", + "prefixLen":25, + "network":"194.48.211.128\/25", + "version":52390, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.224.0", + "prefixLen":25, + "network":"194.48.224.0\/25", + "version":52389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.224.0", + "prefixLen":25, + "network":"194.48.224.0\/25", + "version":52389, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.224.128", + "prefixLen":25, + "network":"194.48.224.128\/25", + "version":52388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.224.128", + "prefixLen":25, + "network":"194.48.224.128\/25", + "version":52388, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.225.0", + "prefixLen":25, + "network":"194.48.225.0\/25", + "version":52387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.225.0", + "prefixLen":25, + "network":"194.48.225.0\/25", + "version":52387, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.225.128", + "prefixLen":25, + "network":"194.48.225.128\/25", + "version":52386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.225.128", + "prefixLen":25, + "network":"194.48.225.128\/25", + "version":52386, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.226.0", + "prefixLen":25, + "network":"194.48.226.0\/25", + "version":52385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.226.0", + "prefixLen":25, + "network":"194.48.226.0\/25", + "version":52385, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.226.128", + "prefixLen":25, + "network":"194.48.226.128\/25", + "version":52384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.226.128", + "prefixLen":25, + "network":"194.48.226.128\/25", + "version":52384, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.227.0", + "prefixLen":25, + "network":"194.48.227.0\/25", + "version":52383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.227.0", + "prefixLen":25, + "network":"194.48.227.0\/25", + "version":52383, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.227.128", + "prefixLen":25, + "network":"194.48.227.128\/25", + "version":52382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.227.128", + "prefixLen":25, + "network":"194.48.227.128\/25", + "version":52382, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.240.0", + "prefixLen":25, + "network":"194.48.240.0\/25", + "version":52381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.240.0", + "prefixLen":25, + "network":"194.48.240.0\/25", + "version":52381, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.240.128", + "prefixLen":25, + "network":"194.48.240.128\/25", + "version":52380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.240.128", + "prefixLen":25, + "network":"194.48.240.128\/25", + "version":52380, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.241.0", + "prefixLen":25, + "network":"194.48.241.0\/25", + "version":52379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.241.0", + "prefixLen":25, + "network":"194.48.241.0\/25", + "version":52379, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.241.128", + "prefixLen":25, + "network":"194.48.241.128\/25", + "version":52378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.241.128", + "prefixLen":25, + "network":"194.48.241.128\/25", + "version":52378, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.242.0", + "prefixLen":25, + "network":"194.48.242.0\/25", + "version":52377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.242.0", + "prefixLen":25, + "network":"194.48.242.0\/25", + "version":52377, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.242.128", + "prefixLen":25, + "network":"194.48.242.128\/25", + "version":52376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.242.128", + "prefixLen":25, + "network":"194.48.242.128\/25", + "version":52376, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.243.0", + "prefixLen":25, + "network":"194.48.243.0\/25", + "version":52375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.243.0", + "prefixLen":25, + "network":"194.48.243.0\/25", + "version":52375, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.48.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.48.243.128", + "prefixLen":25, + "network":"194.48.243.128\/25", + "version":52374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.48.243.128", + "prefixLen":25, + "network":"194.48.243.128\/25", + "version":52374, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64992 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.0.0", + "prefixLen":25, + "network":"194.49.0.0\/25", + "version":52501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.0.0", + "prefixLen":25, + "network":"194.49.0.0\/25", + "version":52501, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.0.128", + "prefixLen":25, + "network":"194.49.0.128\/25", + "version":52628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.0.128", + "prefixLen":25, + "network":"194.49.0.128\/25", + "version":52628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.1.0", + "prefixLen":25, + "network":"194.49.1.0\/25", + "version":52627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.1.0", + "prefixLen":25, + "network":"194.49.1.0\/25", + "version":52627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.1.128", + "prefixLen":25, + "network":"194.49.1.128\/25", + "version":52626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.1.128", + "prefixLen":25, + "network":"194.49.1.128\/25", + "version":52626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.2.0", + "prefixLen":25, + "network":"194.49.2.0\/25", + "version":52625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.2.0", + "prefixLen":25, + "network":"194.49.2.0\/25", + "version":52625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.2.128", + "prefixLen":25, + "network":"194.49.2.128\/25", + "version":52624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.2.128", + "prefixLen":25, + "network":"194.49.2.128\/25", + "version":52624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.3.0", + "prefixLen":25, + "network":"194.49.3.0\/25", + "version":52623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.3.0", + "prefixLen":25, + "network":"194.49.3.0\/25", + "version":52623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.3.128", + "prefixLen":25, + "network":"194.49.3.128\/25", + "version":52622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.3.128", + "prefixLen":25, + "network":"194.49.3.128\/25", + "version":52622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.16.0", + "prefixLen":25, + "network":"194.49.16.0\/25", + "version":52621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.16.0", + "prefixLen":25, + "network":"194.49.16.0\/25", + "version":52621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.16.128", + "prefixLen":25, + "network":"194.49.16.128\/25", + "version":52620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.16.128", + "prefixLen":25, + "network":"194.49.16.128\/25", + "version":52620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.17.0", + "prefixLen":25, + "network":"194.49.17.0\/25", + "version":52619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.17.0", + "prefixLen":25, + "network":"194.49.17.0\/25", + "version":52619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.17.128", + "prefixLen":25, + "network":"194.49.17.128\/25", + "version":52618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.17.128", + "prefixLen":25, + "network":"194.49.17.128\/25", + "version":52618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.18.0", + "prefixLen":25, + "network":"194.49.18.0\/25", + "version":52617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.18.0", + "prefixLen":25, + "network":"194.49.18.0\/25", + "version":52617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.18.128", + "prefixLen":25, + "network":"194.49.18.128\/25", + "version":52616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.18.128", + "prefixLen":25, + "network":"194.49.18.128\/25", + "version":52616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.19.0", + "prefixLen":25, + "network":"194.49.19.0\/25", + "version":52615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.19.0", + "prefixLen":25, + "network":"194.49.19.0\/25", + "version":52615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.19.128", + "prefixLen":25, + "network":"194.49.19.128\/25", + "version":52614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.19.128", + "prefixLen":25, + "network":"194.49.19.128\/25", + "version":52614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.32.0", + "prefixLen":25, + "network":"194.49.32.0\/25", + "version":52613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.32.0", + "prefixLen":25, + "network":"194.49.32.0\/25", + "version":52613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.32.128", + "prefixLen":25, + "network":"194.49.32.128\/25", + "version":52612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.32.128", + "prefixLen":25, + "network":"194.49.32.128\/25", + "version":52612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.33.0", + "prefixLen":25, + "network":"194.49.33.0\/25", + "version":52611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.33.0", + "prefixLen":25, + "network":"194.49.33.0\/25", + "version":52611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.33.128", + "prefixLen":25, + "network":"194.49.33.128\/25", + "version":52610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.33.128", + "prefixLen":25, + "network":"194.49.33.128\/25", + "version":52610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.34.0", + "prefixLen":25, + "network":"194.49.34.0\/25", + "version":52609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.34.0", + "prefixLen":25, + "network":"194.49.34.0\/25", + "version":52609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.34.128", + "prefixLen":25, + "network":"194.49.34.128\/25", + "version":52608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.34.128", + "prefixLen":25, + "network":"194.49.34.128\/25", + "version":52608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.35.0", + "prefixLen":25, + "network":"194.49.35.0\/25", + "version":52607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.35.0", + "prefixLen":25, + "network":"194.49.35.0\/25", + "version":52607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.35.128", + "prefixLen":25, + "network":"194.49.35.128\/25", + "version":52606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.35.128", + "prefixLen":25, + "network":"194.49.35.128\/25", + "version":52606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.48.0", + "prefixLen":25, + "network":"194.49.48.0\/25", + "version":52605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.48.0", + "prefixLen":25, + "network":"194.49.48.0\/25", + "version":52605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.48.128", + "prefixLen":25, + "network":"194.49.48.128\/25", + "version":52604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.48.128", + "prefixLen":25, + "network":"194.49.48.128\/25", + "version":52604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.49.0", + "prefixLen":25, + "network":"194.49.49.0\/25", + "version":52603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.49.0", + "prefixLen":25, + "network":"194.49.49.0\/25", + "version":52603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.49.128", + "prefixLen":25, + "network":"194.49.49.128\/25", + "version":52602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.49.128", + "prefixLen":25, + "network":"194.49.49.128\/25", + "version":52602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.50.0", + "prefixLen":25, + "network":"194.49.50.0\/25", + "version":52601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.50.0", + "prefixLen":25, + "network":"194.49.50.0\/25", + "version":52601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.50.128", + "prefixLen":25, + "network":"194.49.50.128\/25", + "version":52600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.50.128", + "prefixLen":25, + "network":"194.49.50.128\/25", + "version":52600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.51.0", + "prefixLen":25, + "network":"194.49.51.0\/25", + "version":52599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.51.0", + "prefixLen":25, + "network":"194.49.51.0\/25", + "version":52599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.51.128", + "prefixLen":25, + "network":"194.49.51.128\/25", + "version":52598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.51.128", + "prefixLen":25, + "network":"194.49.51.128\/25", + "version":52598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.64.0", + "prefixLen":25, + "network":"194.49.64.0\/25", + "version":52597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.64.0", + "prefixLen":25, + "network":"194.49.64.0\/25", + "version":52597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.64.128", + "prefixLen":25, + "network":"194.49.64.128\/25", + "version":52596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.64.128", + "prefixLen":25, + "network":"194.49.64.128\/25", + "version":52596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.65.0", + "prefixLen":25, + "network":"194.49.65.0\/25", + "version":52595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.65.0", + "prefixLen":25, + "network":"194.49.65.0\/25", + "version":52595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.65.128", + "prefixLen":25, + "network":"194.49.65.128\/25", + "version":52594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.65.128", + "prefixLen":25, + "network":"194.49.65.128\/25", + "version":52594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.66.0", + "prefixLen":25, + "network":"194.49.66.0\/25", + "version":52593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.66.0", + "prefixLen":25, + "network":"194.49.66.0\/25", + "version":52593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.66.128", + "prefixLen":25, + "network":"194.49.66.128\/25", + "version":52592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.66.128", + "prefixLen":25, + "network":"194.49.66.128\/25", + "version":52592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.67.0", + "prefixLen":25, + "network":"194.49.67.0\/25", + "version":52591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.67.0", + "prefixLen":25, + "network":"194.49.67.0\/25", + "version":52591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.67.128", + "prefixLen":25, + "network":"194.49.67.128\/25", + "version":52590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.67.128", + "prefixLen":25, + "network":"194.49.67.128\/25", + "version":52590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.80.0", + "prefixLen":25, + "network":"194.49.80.0\/25", + "version":52589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.80.0", + "prefixLen":25, + "network":"194.49.80.0\/25", + "version":52589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.80.128", + "prefixLen":25, + "network":"194.49.80.128\/25", + "version":52588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.80.128", + "prefixLen":25, + "network":"194.49.80.128\/25", + "version":52588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.81.0", + "prefixLen":25, + "network":"194.49.81.0\/25", + "version":52587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.81.0", + "prefixLen":25, + "network":"194.49.81.0\/25", + "version":52587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.81.128", + "prefixLen":25, + "network":"194.49.81.128\/25", + "version":52586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.81.128", + "prefixLen":25, + "network":"194.49.81.128\/25", + "version":52586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.82.0", + "prefixLen":25, + "network":"194.49.82.0\/25", + "version":52585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.82.0", + "prefixLen":25, + "network":"194.49.82.0\/25", + "version":52585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.82.128", + "prefixLen":25, + "network":"194.49.82.128\/25", + "version":52584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.82.128", + "prefixLen":25, + "network":"194.49.82.128\/25", + "version":52584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.83.0", + "prefixLen":25, + "network":"194.49.83.0\/25", + "version":52583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.83.0", + "prefixLen":25, + "network":"194.49.83.0\/25", + "version":52583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.83.128", + "prefixLen":25, + "network":"194.49.83.128\/25", + "version":52582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.83.128", + "prefixLen":25, + "network":"194.49.83.128\/25", + "version":52582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.96.0", + "prefixLen":25, + "network":"194.49.96.0\/25", + "version":52581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.96.0", + "prefixLen":25, + "network":"194.49.96.0\/25", + "version":52581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.96.128", + "prefixLen":25, + "network":"194.49.96.128\/25", + "version":52580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.96.128", + "prefixLen":25, + "network":"194.49.96.128\/25", + "version":52580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.97.0", + "prefixLen":25, + "network":"194.49.97.0\/25", + "version":52579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.97.0", + "prefixLen":25, + "network":"194.49.97.0\/25", + "version":52579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.97.128", + "prefixLen":25, + "network":"194.49.97.128\/25", + "version":52578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.97.128", + "prefixLen":25, + "network":"194.49.97.128\/25", + "version":52578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.98.0", + "prefixLen":25, + "network":"194.49.98.0\/25", + "version":52577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.98.0", + "prefixLen":25, + "network":"194.49.98.0\/25", + "version":52577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.98.128", + "prefixLen":25, + "network":"194.49.98.128\/25", + "version":52576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.98.128", + "prefixLen":25, + "network":"194.49.98.128\/25", + "version":52576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.99.0", + "prefixLen":25, + "network":"194.49.99.0\/25", + "version":52575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.99.0", + "prefixLen":25, + "network":"194.49.99.0\/25", + "version":52575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.99.128", + "prefixLen":25, + "network":"194.49.99.128\/25", + "version":52574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.99.128", + "prefixLen":25, + "network":"194.49.99.128\/25", + "version":52574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.112.0", + "prefixLen":25, + "network":"194.49.112.0\/25", + "version":52573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.112.0", + "prefixLen":25, + "network":"194.49.112.0\/25", + "version":52573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.112.128", + "prefixLen":25, + "network":"194.49.112.128\/25", + "version":52572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.112.128", + "prefixLen":25, + "network":"194.49.112.128\/25", + "version":52572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.113.0", + "prefixLen":25, + "network":"194.49.113.0\/25", + "version":52571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.113.0", + "prefixLen":25, + "network":"194.49.113.0\/25", + "version":52571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.113.128", + "prefixLen":25, + "network":"194.49.113.128\/25", + "version":52570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.113.128", + "prefixLen":25, + "network":"194.49.113.128\/25", + "version":52570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.114.0", + "prefixLen":25, + "network":"194.49.114.0\/25", + "version":52569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.114.0", + "prefixLen":25, + "network":"194.49.114.0\/25", + "version":52569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.114.128", + "prefixLen":25, + "network":"194.49.114.128\/25", + "version":52568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.114.128", + "prefixLen":25, + "network":"194.49.114.128\/25", + "version":52568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.115.0", + "prefixLen":25, + "network":"194.49.115.0\/25", + "version":52567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.115.0", + "prefixLen":25, + "network":"194.49.115.0\/25", + "version":52567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.115.128", + "prefixLen":25, + "network":"194.49.115.128\/25", + "version":52566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.115.128", + "prefixLen":25, + "network":"194.49.115.128\/25", + "version":52566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.128.0", + "prefixLen":25, + "network":"194.49.128.0\/25", + "version":52565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.128.0", + "prefixLen":25, + "network":"194.49.128.0\/25", + "version":52565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.128.128", + "prefixLen":25, + "network":"194.49.128.128\/25", + "version":52564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.128.128", + "prefixLen":25, + "network":"194.49.128.128\/25", + "version":52564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.129.0", + "prefixLen":25, + "network":"194.49.129.0\/25", + "version":52563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.129.0", + "prefixLen":25, + "network":"194.49.129.0\/25", + "version":52563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.129.128", + "prefixLen":25, + "network":"194.49.129.128\/25", + "version":52562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.129.128", + "prefixLen":25, + "network":"194.49.129.128\/25", + "version":52562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.130.0", + "prefixLen":25, + "network":"194.49.130.0\/25", + "version":52561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.130.0", + "prefixLen":25, + "network":"194.49.130.0\/25", + "version":52561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.130.128", + "prefixLen":25, + "network":"194.49.130.128\/25", + "version":52560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.130.128", + "prefixLen":25, + "network":"194.49.130.128\/25", + "version":52560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.131.0", + "prefixLen":25, + "network":"194.49.131.0\/25", + "version":52559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.131.0", + "prefixLen":25, + "network":"194.49.131.0\/25", + "version":52559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.131.128", + "prefixLen":25, + "network":"194.49.131.128\/25", + "version":52558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.131.128", + "prefixLen":25, + "network":"194.49.131.128\/25", + "version":52558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.144.0", + "prefixLen":25, + "network":"194.49.144.0\/25", + "version":52557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.144.0", + "prefixLen":25, + "network":"194.49.144.0\/25", + "version":52557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.144.128", + "prefixLen":25, + "network":"194.49.144.128\/25", + "version":52556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.144.128", + "prefixLen":25, + "network":"194.49.144.128\/25", + "version":52556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.145.0", + "prefixLen":25, + "network":"194.49.145.0\/25", + "version":52555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.145.0", + "prefixLen":25, + "network":"194.49.145.0\/25", + "version":52555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.145.128", + "prefixLen":25, + "network":"194.49.145.128\/25", + "version":52554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.145.128", + "prefixLen":25, + "network":"194.49.145.128\/25", + "version":52554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.146.0", + "prefixLen":25, + "network":"194.49.146.0\/25", + "version":52553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.146.0", + "prefixLen":25, + "network":"194.49.146.0\/25", + "version":52553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.146.128", + "prefixLen":25, + "network":"194.49.146.128\/25", + "version":52552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.146.128", + "prefixLen":25, + "network":"194.49.146.128\/25", + "version":52552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.147.0", + "prefixLen":25, + "network":"194.49.147.0\/25", + "version":52551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.147.0", + "prefixLen":25, + "network":"194.49.147.0\/25", + "version":52551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.147.128", + "prefixLen":25, + "network":"194.49.147.128\/25", + "version":52550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.147.128", + "prefixLen":25, + "network":"194.49.147.128\/25", + "version":52550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.160.0", + "prefixLen":25, + "network":"194.49.160.0\/25", + "version":52549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.160.0", + "prefixLen":25, + "network":"194.49.160.0\/25", + "version":52549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.160.128", + "prefixLen":25, + "network":"194.49.160.128\/25", + "version":52548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.160.128", + "prefixLen":25, + "network":"194.49.160.128\/25", + "version":52548, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.161.0", + "prefixLen":25, + "network":"194.49.161.0\/25", + "version":52547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.161.0", + "prefixLen":25, + "network":"194.49.161.0\/25", + "version":52547, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.161.128", + "prefixLen":25, + "network":"194.49.161.128\/25", + "version":52546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.161.128", + "prefixLen":25, + "network":"194.49.161.128\/25", + "version":52546, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.162.0", + "prefixLen":25, + "network":"194.49.162.0\/25", + "version":52545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.162.0", + "prefixLen":25, + "network":"194.49.162.0\/25", + "version":52545, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.162.128", + "prefixLen":25, + "network":"194.49.162.128\/25", + "version":52544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.162.128", + "prefixLen":25, + "network":"194.49.162.128\/25", + "version":52544, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.163.0", + "prefixLen":25, + "network":"194.49.163.0\/25", + "version":52543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.163.0", + "prefixLen":25, + "network":"194.49.163.0\/25", + "version":52543, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.163.128", + "prefixLen":25, + "network":"194.49.163.128\/25", + "version":52542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.163.128", + "prefixLen":25, + "network":"194.49.163.128\/25", + "version":52542, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.176.0", + "prefixLen":25, + "network":"194.49.176.0\/25", + "version":52541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.176.0", + "prefixLen":25, + "network":"194.49.176.0\/25", + "version":52541, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.176.128", + "prefixLen":25, + "network":"194.49.176.128\/25", + "version":52540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.176.128", + "prefixLen":25, + "network":"194.49.176.128\/25", + "version":52540, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.177.0", + "prefixLen":25, + "network":"194.49.177.0\/25", + "version":52539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.177.0", + "prefixLen":25, + "network":"194.49.177.0\/25", + "version":52539, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.177.128", + "prefixLen":25, + "network":"194.49.177.128\/25", + "version":52538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.177.128", + "prefixLen":25, + "network":"194.49.177.128\/25", + "version":52538, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.178.0", + "prefixLen":25, + "network":"194.49.178.0\/25", + "version":52537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.178.0", + "prefixLen":25, + "network":"194.49.178.0\/25", + "version":52537, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.178.128", + "prefixLen":25, + "network":"194.49.178.128\/25", + "version":52536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.178.128", + "prefixLen":25, + "network":"194.49.178.128\/25", + "version":52536, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.179.0", + "prefixLen":25, + "network":"194.49.179.0\/25", + "version":52535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.179.0", + "prefixLen":25, + "network":"194.49.179.0\/25", + "version":52535, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.179.128", + "prefixLen":25, + "network":"194.49.179.128\/25", + "version":52534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.179.128", + "prefixLen":25, + "network":"194.49.179.128\/25", + "version":52534, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.192.0", + "prefixLen":25, + "network":"194.49.192.0\/25", + "version":52533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.192.0", + "prefixLen":25, + "network":"194.49.192.0\/25", + "version":52533, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.192.128", + "prefixLen":25, + "network":"194.49.192.128\/25", + "version":52532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.192.128", + "prefixLen":25, + "network":"194.49.192.128\/25", + "version":52532, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.193.0", + "prefixLen":25, + "network":"194.49.193.0\/25", + "version":52531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.193.0", + "prefixLen":25, + "network":"194.49.193.0\/25", + "version":52531, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.193.128", + "prefixLen":25, + "network":"194.49.193.128\/25", + "version":52530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.193.128", + "prefixLen":25, + "network":"194.49.193.128\/25", + "version":52530, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.194.0", + "prefixLen":25, + "network":"194.49.194.0\/25", + "version":52529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.194.0", + "prefixLen":25, + "network":"194.49.194.0\/25", + "version":52529, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.194.128", + "prefixLen":25, + "network":"194.49.194.128\/25", + "version":52528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.194.128", + "prefixLen":25, + "network":"194.49.194.128\/25", + "version":52528, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.195.0", + "prefixLen":25, + "network":"194.49.195.0\/25", + "version":52527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.195.0", + "prefixLen":25, + "network":"194.49.195.0\/25", + "version":52527, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.195.128", + "prefixLen":25, + "network":"194.49.195.128\/25", + "version":52526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.195.128", + "prefixLen":25, + "network":"194.49.195.128\/25", + "version":52526, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.208.0", + "prefixLen":25, + "network":"194.49.208.0\/25", + "version":52525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.208.0", + "prefixLen":25, + "network":"194.49.208.0\/25", + "version":52525, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.208.128", + "prefixLen":25, + "network":"194.49.208.128\/25", + "version":52524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.208.128", + "prefixLen":25, + "network":"194.49.208.128\/25", + "version":52524, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.209.0", + "prefixLen":25, + "network":"194.49.209.0\/25", + "version":52523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.209.0", + "prefixLen":25, + "network":"194.49.209.0\/25", + "version":52523, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.209.128", + "prefixLen":25, + "network":"194.49.209.128\/25", + "version":52522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.209.128", + "prefixLen":25, + "network":"194.49.209.128\/25", + "version":52522, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.210.0", + "prefixLen":25, + "network":"194.49.210.0\/25", + "version":52521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.210.0", + "prefixLen":25, + "network":"194.49.210.0\/25", + "version":52521, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.210.128", + "prefixLen":25, + "network":"194.49.210.128\/25", + "version":52520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.210.128", + "prefixLen":25, + "network":"194.49.210.128\/25", + "version":52520, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.211.0", + "prefixLen":25, + "network":"194.49.211.0\/25", + "version":52519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.211.0", + "prefixLen":25, + "network":"194.49.211.0\/25", + "version":52519, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.211.128", + "prefixLen":25, + "network":"194.49.211.128\/25", + "version":52518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.211.128", + "prefixLen":25, + "network":"194.49.211.128\/25", + "version":52518, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.224.0", + "prefixLen":25, + "network":"194.49.224.0\/25", + "version":52517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.224.0", + "prefixLen":25, + "network":"194.49.224.0\/25", + "version":52517, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.224.128", + "prefixLen":25, + "network":"194.49.224.128\/25", + "version":52516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.224.128", + "prefixLen":25, + "network":"194.49.224.128\/25", + "version":52516, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.225.0", + "prefixLen":25, + "network":"194.49.225.0\/25", + "version":52515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.225.0", + "prefixLen":25, + "network":"194.49.225.0\/25", + "version":52515, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.225.128", + "prefixLen":25, + "network":"194.49.225.128\/25", + "version":52514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.225.128", + "prefixLen":25, + "network":"194.49.225.128\/25", + "version":52514, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.226.0", + "prefixLen":25, + "network":"194.49.226.0\/25", + "version":52513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.226.0", + "prefixLen":25, + "network":"194.49.226.0\/25", + "version":52513, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.226.128", + "prefixLen":25, + "network":"194.49.226.128\/25", + "version":52512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.226.128", + "prefixLen":25, + "network":"194.49.226.128\/25", + "version":52512, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.227.0", + "prefixLen":25, + "network":"194.49.227.0\/25", + "version":52511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.227.0", + "prefixLen":25, + "network":"194.49.227.0\/25", + "version":52511, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.227.128", + "prefixLen":25, + "network":"194.49.227.128\/25", + "version":52510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.227.128", + "prefixLen":25, + "network":"194.49.227.128\/25", + "version":52510, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.240.0", + "prefixLen":25, + "network":"194.49.240.0\/25", + "version":52509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.240.0", + "prefixLen":25, + "network":"194.49.240.0\/25", + "version":52509, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.240.128", + "prefixLen":25, + "network":"194.49.240.128\/25", + "version":52508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.240.128", + "prefixLen":25, + "network":"194.49.240.128\/25", + "version":52508, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.241.0", + "prefixLen":25, + "network":"194.49.241.0\/25", + "version":52507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.241.0", + "prefixLen":25, + "network":"194.49.241.0\/25", + "version":52507, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.241.128", + "prefixLen":25, + "network":"194.49.241.128\/25", + "version":52506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.241.128", + "prefixLen":25, + "network":"194.49.241.128\/25", + "version":52506, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.242.0", + "prefixLen":25, + "network":"194.49.242.0\/25", + "version":52505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.242.0", + "prefixLen":25, + "network":"194.49.242.0\/25", + "version":52505, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.242.128", + "prefixLen":25, + "network":"194.49.242.128\/25", + "version":52504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.242.128", + "prefixLen":25, + "network":"194.49.242.128\/25", + "version":52504, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.243.0", + "prefixLen":25, + "network":"194.49.243.0\/25", + "version":52503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.243.0", + "prefixLen":25, + "network":"194.49.243.0\/25", + "version":52503, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.49.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.49.243.128", + "prefixLen":25, + "network":"194.49.243.128\/25", + "version":52502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.49.243.128", + "prefixLen":25, + "network":"194.49.243.128\/25", + "version":52502, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64993 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.0.0", + "prefixLen":25, + "network":"194.50.0.0\/25", + "version":52629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.0.0", + "prefixLen":25, + "network":"194.50.0.0\/25", + "version":52629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.0.128", + "prefixLen":25, + "network":"194.50.0.128\/25", + "version":52756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.0.128", + "prefixLen":25, + "network":"194.50.0.128\/25", + "version":52756, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.1.0", + "prefixLen":25, + "network":"194.50.1.0\/25", + "version":52755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.1.0", + "prefixLen":25, + "network":"194.50.1.0\/25", + "version":52755, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.1.128", + "prefixLen":25, + "network":"194.50.1.128\/25", + "version":52754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.1.128", + "prefixLen":25, + "network":"194.50.1.128\/25", + "version":52754, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.2.0", + "prefixLen":25, + "network":"194.50.2.0\/25", + "version":52753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.2.0", + "prefixLen":25, + "network":"194.50.2.0\/25", + "version":52753, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.2.128", + "prefixLen":25, + "network":"194.50.2.128\/25", + "version":52752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.2.128", + "prefixLen":25, + "network":"194.50.2.128\/25", + "version":52752, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.3.0", + "prefixLen":25, + "network":"194.50.3.0\/25", + "version":52751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.3.0", + "prefixLen":25, + "network":"194.50.3.0\/25", + "version":52751, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.3.128", + "prefixLen":25, + "network":"194.50.3.128\/25", + "version":52750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.3.128", + "prefixLen":25, + "network":"194.50.3.128\/25", + "version":52750, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.16.0", + "prefixLen":25, + "network":"194.50.16.0\/25", + "version":52749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.16.0", + "prefixLen":25, + "network":"194.50.16.0\/25", + "version":52749, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.16.128", + "prefixLen":25, + "network":"194.50.16.128\/25", + "version":52748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.16.128", + "prefixLen":25, + "network":"194.50.16.128\/25", + "version":52748, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.17.0", + "prefixLen":25, + "network":"194.50.17.0\/25", + "version":52747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.17.0", + "prefixLen":25, + "network":"194.50.17.0\/25", + "version":52747, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.17.128", + "prefixLen":25, + "network":"194.50.17.128\/25", + "version":52746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.17.128", + "prefixLen":25, + "network":"194.50.17.128\/25", + "version":52746, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.18.0", + "prefixLen":25, + "network":"194.50.18.0\/25", + "version":52745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.18.0", + "prefixLen":25, + "network":"194.50.18.0\/25", + "version":52745, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.18.128", + "prefixLen":25, + "network":"194.50.18.128\/25", + "version":52744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.18.128", + "prefixLen":25, + "network":"194.50.18.128\/25", + "version":52744, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.19.0", + "prefixLen":25, + "network":"194.50.19.0\/25", + "version":52743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.19.0", + "prefixLen":25, + "network":"194.50.19.0\/25", + "version":52743, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.19.128", + "prefixLen":25, + "network":"194.50.19.128\/25", + "version":52742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.19.128", + "prefixLen":25, + "network":"194.50.19.128\/25", + "version":52742, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.32.0", + "prefixLen":25, + "network":"194.50.32.0\/25", + "version":52741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.32.0", + "prefixLen":25, + "network":"194.50.32.0\/25", + "version":52741, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.32.128", + "prefixLen":25, + "network":"194.50.32.128\/25", + "version":52740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.32.128", + "prefixLen":25, + "network":"194.50.32.128\/25", + "version":52740, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.33.0", + "prefixLen":25, + "network":"194.50.33.0\/25", + "version":52739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.33.0", + "prefixLen":25, + "network":"194.50.33.0\/25", + "version":52739, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.33.128", + "prefixLen":25, + "network":"194.50.33.128\/25", + "version":52738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.33.128", + "prefixLen":25, + "network":"194.50.33.128\/25", + "version":52738, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.34.0", + "prefixLen":25, + "network":"194.50.34.0\/25", + "version":52737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.34.0", + "prefixLen":25, + "network":"194.50.34.0\/25", + "version":52737, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.34.128", + "prefixLen":25, + "network":"194.50.34.128\/25", + "version":52736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.34.128", + "prefixLen":25, + "network":"194.50.34.128\/25", + "version":52736, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.35.0", + "prefixLen":25, + "network":"194.50.35.0\/25", + "version":52735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.35.0", + "prefixLen":25, + "network":"194.50.35.0\/25", + "version":52735, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.35.128", + "prefixLen":25, + "network":"194.50.35.128\/25", + "version":52734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.35.128", + "prefixLen":25, + "network":"194.50.35.128\/25", + "version":52734, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.48.0", + "prefixLen":25, + "network":"194.50.48.0\/25", + "version":52733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.48.0", + "prefixLen":25, + "network":"194.50.48.0\/25", + "version":52733, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.48.128", + "prefixLen":25, + "network":"194.50.48.128\/25", + "version":52732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.48.128", + "prefixLen":25, + "network":"194.50.48.128\/25", + "version":52732, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.49.0", + "prefixLen":25, + "network":"194.50.49.0\/25", + "version":52731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.49.0", + "prefixLen":25, + "network":"194.50.49.0\/25", + "version":52731, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.49.128", + "prefixLen":25, + "network":"194.50.49.128\/25", + "version":52730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.49.128", + "prefixLen":25, + "network":"194.50.49.128\/25", + "version":52730, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.50.0", + "prefixLen":25, + "network":"194.50.50.0\/25", + "version":52729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.50.0", + "prefixLen":25, + "network":"194.50.50.0\/25", + "version":52729, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.50.128", + "prefixLen":25, + "network":"194.50.50.128\/25", + "version":52728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.50.128", + "prefixLen":25, + "network":"194.50.50.128\/25", + "version":52728, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.51.0", + "prefixLen":25, + "network":"194.50.51.0\/25", + "version":52727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.51.0", + "prefixLen":25, + "network":"194.50.51.0\/25", + "version":52727, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.51.128", + "prefixLen":25, + "network":"194.50.51.128\/25", + "version":52726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.51.128", + "prefixLen":25, + "network":"194.50.51.128\/25", + "version":52726, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.64.0", + "prefixLen":25, + "network":"194.50.64.0\/25", + "version":52725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.64.0", + "prefixLen":25, + "network":"194.50.64.0\/25", + "version":52725, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.64.128", + "prefixLen":25, + "network":"194.50.64.128\/25", + "version":52724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.64.128", + "prefixLen":25, + "network":"194.50.64.128\/25", + "version":52724, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.65.0", + "prefixLen":25, + "network":"194.50.65.0\/25", + "version":52723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.65.0", + "prefixLen":25, + "network":"194.50.65.0\/25", + "version":52723, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.65.128", + "prefixLen":25, + "network":"194.50.65.128\/25", + "version":52722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.65.128", + "prefixLen":25, + "network":"194.50.65.128\/25", + "version":52722, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.66.0", + "prefixLen":25, + "network":"194.50.66.0\/25", + "version":52721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.66.0", + "prefixLen":25, + "network":"194.50.66.0\/25", + "version":52721, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.66.128", + "prefixLen":25, + "network":"194.50.66.128\/25", + "version":52720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.66.128", + "prefixLen":25, + "network":"194.50.66.128\/25", + "version":52720, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.67.0", + "prefixLen":25, + "network":"194.50.67.0\/25", + "version":52719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.67.0", + "prefixLen":25, + "network":"194.50.67.0\/25", + "version":52719, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.67.128", + "prefixLen":25, + "network":"194.50.67.128\/25", + "version":52718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.67.128", + "prefixLen":25, + "network":"194.50.67.128\/25", + "version":52718, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.80.0", + "prefixLen":25, + "network":"194.50.80.0\/25", + "version":52717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.80.0", + "prefixLen":25, + "network":"194.50.80.0\/25", + "version":52717, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.80.128", + "prefixLen":25, + "network":"194.50.80.128\/25", + "version":52716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.80.128", + "prefixLen":25, + "network":"194.50.80.128\/25", + "version":52716, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.81.0", + "prefixLen":25, + "network":"194.50.81.0\/25", + "version":52715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.81.0", + "prefixLen":25, + "network":"194.50.81.0\/25", + "version":52715, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.81.128", + "prefixLen":25, + "network":"194.50.81.128\/25", + "version":52714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.81.128", + "prefixLen":25, + "network":"194.50.81.128\/25", + "version":52714, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.82.0", + "prefixLen":25, + "network":"194.50.82.0\/25", + "version":52713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.82.0", + "prefixLen":25, + "network":"194.50.82.0\/25", + "version":52713, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.82.128", + "prefixLen":25, + "network":"194.50.82.128\/25", + "version":52712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.82.128", + "prefixLen":25, + "network":"194.50.82.128\/25", + "version":52712, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.83.0", + "prefixLen":25, + "network":"194.50.83.0\/25", + "version":52711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.83.0", + "prefixLen":25, + "network":"194.50.83.0\/25", + "version":52711, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.83.128", + "prefixLen":25, + "network":"194.50.83.128\/25", + "version":52710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.83.128", + "prefixLen":25, + "network":"194.50.83.128\/25", + "version":52710, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.96.0", + "prefixLen":25, + "network":"194.50.96.0\/25", + "version":52709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.96.0", + "prefixLen":25, + "network":"194.50.96.0\/25", + "version":52709, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.96.128", + "prefixLen":25, + "network":"194.50.96.128\/25", + "version":52708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.96.128", + "prefixLen":25, + "network":"194.50.96.128\/25", + "version":52708, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.97.0", + "prefixLen":25, + "network":"194.50.97.0\/25", + "version":52707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.97.0", + "prefixLen":25, + "network":"194.50.97.0\/25", + "version":52707, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.97.128", + "prefixLen":25, + "network":"194.50.97.128\/25", + "version":52706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.97.128", + "prefixLen":25, + "network":"194.50.97.128\/25", + "version":52706, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.98.0", + "prefixLen":25, + "network":"194.50.98.0\/25", + "version":52705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.98.0", + "prefixLen":25, + "network":"194.50.98.0\/25", + "version":52705, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.98.128", + "prefixLen":25, + "network":"194.50.98.128\/25", + "version":52704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.98.128", + "prefixLen":25, + "network":"194.50.98.128\/25", + "version":52704, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.99.0", + "prefixLen":25, + "network":"194.50.99.0\/25", + "version":52703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.99.0", + "prefixLen":25, + "network":"194.50.99.0\/25", + "version":52703, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.99.128", + "prefixLen":25, + "network":"194.50.99.128\/25", + "version":52702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.99.128", + "prefixLen":25, + "network":"194.50.99.128\/25", + "version":52702, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.112.0", + "prefixLen":25, + "network":"194.50.112.0\/25", + "version":52701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.112.0", + "prefixLen":25, + "network":"194.50.112.0\/25", + "version":52701, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.112.128", + "prefixLen":25, + "network":"194.50.112.128\/25", + "version":52700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.112.128", + "prefixLen":25, + "network":"194.50.112.128\/25", + "version":52700, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.113.0", + "prefixLen":25, + "network":"194.50.113.0\/25", + "version":52699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.113.0", + "prefixLen":25, + "network":"194.50.113.0\/25", + "version":52699, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.113.128", + "prefixLen":25, + "network":"194.50.113.128\/25", + "version":52698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.113.128", + "prefixLen":25, + "network":"194.50.113.128\/25", + "version":52698, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.114.0", + "prefixLen":25, + "network":"194.50.114.0\/25", + "version":52697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.114.0", + "prefixLen":25, + "network":"194.50.114.0\/25", + "version":52697, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.114.128", + "prefixLen":25, + "network":"194.50.114.128\/25", + "version":52696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.114.128", + "prefixLen":25, + "network":"194.50.114.128\/25", + "version":52696, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.115.0", + "prefixLen":25, + "network":"194.50.115.0\/25", + "version":52695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.115.0", + "prefixLen":25, + "network":"194.50.115.0\/25", + "version":52695, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.115.128", + "prefixLen":25, + "network":"194.50.115.128\/25", + "version":52694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.115.128", + "prefixLen":25, + "network":"194.50.115.128\/25", + "version":52694, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.128.0", + "prefixLen":25, + "network":"194.50.128.0\/25", + "version":52693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.128.0", + "prefixLen":25, + "network":"194.50.128.0\/25", + "version":52693, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.128.128", + "prefixLen":25, + "network":"194.50.128.128\/25", + "version":52692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.128.128", + "prefixLen":25, + "network":"194.50.128.128\/25", + "version":52692, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.129.0", + "prefixLen":25, + "network":"194.50.129.0\/25", + "version":52691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.129.0", + "prefixLen":25, + "network":"194.50.129.0\/25", + "version":52691, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.129.128", + "prefixLen":25, + "network":"194.50.129.128\/25", + "version":52690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.129.128", + "prefixLen":25, + "network":"194.50.129.128\/25", + "version":52690, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.130.0", + "prefixLen":25, + "network":"194.50.130.0\/25", + "version":52689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.130.0", + "prefixLen":25, + "network":"194.50.130.0\/25", + "version":52689, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.130.128", + "prefixLen":25, + "network":"194.50.130.128\/25", + "version":52688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.130.128", + "prefixLen":25, + "network":"194.50.130.128\/25", + "version":52688, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.131.0", + "prefixLen":25, + "network":"194.50.131.0\/25", + "version":52687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.131.0", + "prefixLen":25, + "network":"194.50.131.0\/25", + "version":52687, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.131.128", + "prefixLen":25, + "network":"194.50.131.128\/25", + "version":52686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.131.128", + "prefixLen":25, + "network":"194.50.131.128\/25", + "version":52686, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.144.0", + "prefixLen":25, + "network":"194.50.144.0\/25", + "version":52685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.144.0", + "prefixLen":25, + "network":"194.50.144.0\/25", + "version":52685, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.144.128", + "prefixLen":25, + "network":"194.50.144.128\/25", + "version":52684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.144.128", + "prefixLen":25, + "network":"194.50.144.128\/25", + "version":52684, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.145.0", + "prefixLen":25, + "network":"194.50.145.0\/25", + "version":52683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.145.0", + "prefixLen":25, + "network":"194.50.145.0\/25", + "version":52683, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.145.128", + "prefixLen":25, + "network":"194.50.145.128\/25", + "version":52682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.145.128", + "prefixLen":25, + "network":"194.50.145.128\/25", + "version":52682, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.146.0", + "prefixLen":25, + "network":"194.50.146.0\/25", + "version":52681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.146.0", + "prefixLen":25, + "network":"194.50.146.0\/25", + "version":52681, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.146.128", + "prefixLen":25, + "network":"194.50.146.128\/25", + "version":52680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.146.128", + "prefixLen":25, + "network":"194.50.146.128\/25", + "version":52680, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.147.0", + "prefixLen":25, + "network":"194.50.147.0\/25", + "version":52679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.147.0", + "prefixLen":25, + "network":"194.50.147.0\/25", + "version":52679, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.147.128", + "prefixLen":25, + "network":"194.50.147.128\/25", + "version":52678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.147.128", + "prefixLen":25, + "network":"194.50.147.128\/25", + "version":52678, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.160.0", + "prefixLen":25, + "network":"194.50.160.0\/25", + "version":52677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.160.0", + "prefixLen":25, + "network":"194.50.160.0\/25", + "version":52677, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.160.128", + "prefixLen":25, + "network":"194.50.160.128\/25", + "version":52676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.160.128", + "prefixLen":25, + "network":"194.50.160.128\/25", + "version":52676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.161.0", + "prefixLen":25, + "network":"194.50.161.0\/25", + "version":52675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.161.0", + "prefixLen":25, + "network":"194.50.161.0\/25", + "version":52675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.161.128", + "prefixLen":25, + "network":"194.50.161.128\/25", + "version":52674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.161.128", + "prefixLen":25, + "network":"194.50.161.128\/25", + "version":52674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.162.0", + "prefixLen":25, + "network":"194.50.162.0\/25", + "version":52673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.162.0", + "prefixLen":25, + "network":"194.50.162.0\/25", + "version":52673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.162.128", + "prefixLen":25, + "network":"194.50.162.128\/25", + "version":52672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.162.128", + "prefixLen":25, + "network":"194.50.162.128\/25", + "version":52672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.163.0", + "prefixLen":25, + "network":"194.50.163.0\/25", + "version":52671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.163.0", + "prefixLen":25, + "network":"194.50.163.0\/25", + "version":52671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.163.128", + "prefixLen":25, + "network":"194.50.163.128\/25", + "version":52670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.163.128", + "prefixLen":25, + "network":"194.50.163.128\/25", + "version":52670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.176.0", + "prefixLen":25, + "network":"194.50.176.0\/25", + "version":52669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.176.0", + "prefixLen":25, + "network":"194.50.176.0\/25", + "version":52669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.176.128", + "prefixLen":25, + "network":"194.50.176.128\/25", + "version":52668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.176.128", + "prefixLen":25, + "network":"194.50.176.128\/25", + "version":52668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.177.0", + "prefixLen":25, + "network":"194.50.177.0\/25", + "version":52667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.177.0", + "prefixLen":25, + "network":"194.50.177.0\/25", + "version":52667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.177.128", + "prefixLen":25, + "network":"194.50.177.128\/25", + "version":52666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.177.128", + "prefixLen":25, + "network":"194.50.177.128\/25", + "version":52666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.178.0", + "prefixLen":25, + "network":"194.50.178.0\/25", + "version":52665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.178.0", + "prefixLen":25, + "network":"194.50.178.0\/25", + "version":52665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.178.128", + "prefixLen":25, + "network":"194.50.178.128\/25", + "version":52664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.178.128", + "prefixLen":25, + "network":"194.50.178.128\/25", + "version":52664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.179.0", + "prefixLen":25, + "network":"194.50.179.0\/25", + "version":52663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.179.0", + "prefixLen":25, + "network":"194.50.179.0\/25", + "version":52663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.179.128", + "prefixLen":25, + "network":"194.50.179.128\/25", + "version":52662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.179.128", + "prefixLen":25, + "network":"194.50.179.128\/25", + "version":52662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.192.0", + "prefixLen":25, + "network":"194.50.192.0\/25", + "version":52661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.192.0", + "prefixLen":25, + "network":"194.50.192.0\/25", + "version":52661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.192.128", + "prefixLen":25, + "network":"194.50.192.128\/25", + "version":52660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.192.128", + "prefixLen":25, + "network":"194.50.192.128\/25", + "version":52660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.193.0", + "prefixLen":25, + "network":"194.50.193.0\/25", + "version":52659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.193.0", + "prefixLen":25, + "network":"194.50.193.0\/25", + "version":52659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.193.128", + "prefixLen":25, + "network":"194.50.193.128\/25", + "version":52658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.193.128", + "prefixLen":25, + "network":"194.50.193.128\/25", + "version":52658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.194.0", + "prefixLen":25, + "network":"194.50.194.0\/25", + "version":52657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.194.0", + "prefixLen":25, + "network":"194.50.194.0\/25", + "version":52657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.194.128", + "prefixLen":25, + "network":"194.50.194.128\/25", + "version":52656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.194.128", + "prefixLen":25, + "network":"194.50.194.128\/25", + "version":52656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.195.0", + "prefixLen":25, + "network":"194.50.195.0\/25", + "version":52655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.195.0", + "prefixLen":25, + "network":"194.50.195.0\/25", + "version":52655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.195.128", + "prefixLen":25, + "network":"194.50.195.128\/25", + "version":52654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.195.128", + "prefixLen":25, + "network":"194.50.195.128\/25", + "version":52654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.208.0", + "prefixLen":25, + "network":"194.50.208.0\/25", + "version":52653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.208.0", + "prefixLen":25, + "network":"194.50.208.0\/25", + "version":52653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.208.128", + "prefixLen":25, + "network":"194.50.208.128\/25", + "version":52652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.208.128", + "prefixLen":25, + "network":"194.50.208.128\/25", + "version":52652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.209.0", + "prefixLen":25, + "network":"194.50.209.0\/25", + "version":52651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.209.0", + "prefixLen":25, + "network":"194.50.209.0\/25", + "version":52651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.209.128", + "prefixLen":25, + "network":"194.50.209.128\/25", + "version":52650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.209.128", + "prefixLen":25, + "network":"194.50.209.128\/25", + "version":52650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.210.0", + "prefixLen":25, + "network":"194.50.210.0\/25", + "version":52649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.210.0", + "prefixLen":25, + "network":"194.50.210.0\/25", + "version":52649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.210.128", + "prefixLen":25, + "network":"194.50.210.128\/25", + "version":52648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.210.128", + "prefixLen":25, + "network":"194.50.210.128\/25", + "version":52648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.211.0", + "prefixLen":25, + "network":"194.50.211.0\/25", + "version":52647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.211.0", + "prefixLen":25, + "network":"194.50.211.0\/25", + "version":52647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.211.128", + "prefixLen":25, + "network":"194.50.211.128\/25", + "version":52646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.211.128", + "prefixLen":25, + "network":"194.50.211.128\/25", + "version":52646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.224.0", + "prefixLen":25, + "network":"194.50.224.0\/25", + "version":52645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.224.0", + "prefixLen":25, + "network":"194.50.224.0\/25", + "version":52645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.224.128", + "prefixLen":25, + "network":"194.50.224.128\/25", + "version":52644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.224.128", + "prefixLen":25, + "network":"194.50.224.128\/25", + "version":52644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.225.0", + "prefixLen":25, + "network":"194.50.225.0\/25", + "version":52643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.225.0", + "prefixLen":25, + "network":"194.50.225.0\/25", + "version":52643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.225.128", + "prefixLen":25, + "network":"194.50.225.128\/25", + "version":52642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.225.128", + "prefixLen":25, + "network":"194.50.225.128\/25", + "version":52642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.226.0", + "prefixLen":25, + "network":"194.50.226.0\/25", + "version":52641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.226.0", + "prefixLen":25, + "network":"194.50.226.0\/25", + "version":52641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.226.128", + "prefixLen":25, + "network":"194.50.226.128\/25", + "version":52640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.226.128", + "prefixLen":25, + "network":"194.50.226.128\/25", + "version":52640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.227.0", + "prefixLen":25, + "network":"194.50.227.0\/25", + "version":52639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.227.0", + "prefixLen":25, + "network":"194.50.227.0\/25", + "version":52639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.227.128", + "prefixLen":25, + "network":"194.50.227.128\/25", + "version":52638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.227.128", + "prefixLen":25, + "network":"194.50.227.128\/25", + "version":52638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.240.0", + "prefixLen":25, + "network":"194.50.240.0\/25", + "version":52637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.240.0", + "prefixLen":25, + "network":"194.50.240.0\/25", + "version":52637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.240.128", + "prefixLen":25, + "network":"194.50.240.128\/25", + "version":52636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.240.128", + "prefixLen":25, + "network":"194.50.240.128\/25", + "version":52636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.241.0", + "prefixLen":25, + "network":"194.50.241.0\/25", + "version":52635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.241.0", + "prefixLen":25, + "network":"194.50.241.0\/25", + "version":52635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.241.128", + "prefixLen":25, + "network":"194.50.241.128\/25", + "version":52634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.241.128", + "prefixLen":25, + "network":"194.50.241.128\/25", + "version":52634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.242.0", + "prefixLen":25, + "network":"194.50.242.0\/25", + "version":52633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.242.0", + "prefixLen":25, + "network":"194.50.242.0\/25", + "version":52633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.242.128", + "prefixLen":25, + "network":"194.50.242.128\/25", + "version":52632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.242.128", + "prefixLen":25, + "network":"194.50.242.128\/25", + "version":52632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.243.0", + "prefixLen":25, + "network":"194.50.243.0\/25", + "version":52631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.243.0", + "prefixLen":25, + "network":"194.50.243.0\/25", + "version":52631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.50.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.50.243.128", + "prefixLen":25, + "network":"194.50.243.128\/25", + "version":52630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.50.243.128", + "prefixLen":25, + "network":"194.50.243.128\/25", + "version":52630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64994 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.0.0", + "prefixLen":25, + "network":"194.51.0.0\/25", + "version":52757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.0.0", + "prefixLen":25, + "network":"194.51.0.0\/25", + "version":52757, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.0.128", + "prefixLen":25, + "network":"194.51.0.128\/25", + "version":52884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.0.128", + "prefixLen":25, + "network":"194.51.0.128\/25", + "version":52884, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.1.0", + "prefixLen":25, + "network":"194.51.1.0\/25", + "version":52883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.1.0", + "prefixLen":25, + "network":"194.51.1.0\/25", + "version":52883, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.1.128", + "prefixLen":25, + "network":"194.51.1.128\/25", + "version":52882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.1.128", + "prefixLen":25, + "network":"194.51.1.128\/25", + "version":52882, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.2.0", + "prefixLen":25, + "network":"194.51.2.0\/25", + "version":52881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.2.0", + "prefixLen":25, + "network":"194.51.2.0\/25", + "version":52881, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.2.128", + "prefixLen":25, + "network":"194.51.2.128\/25", + "version":52880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.2.128", + "prefixLen":25, + "network":"194.51.2.128\/25", + "version":52880, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.3.0", + "prefixLen":25, + "network":"194.51.3.0\/25", + "version":52879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.3.0", + "prefixLen":25, + "network":"194.51.3.0\/25", + "version":52879, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.3.128", + "prefixLen":25, + "network":"194.51.3.128\/25", + "version":52878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.3.128", + "prefixLen":25, + "network":"194.51.3.128\/25", + "version":52878, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.16.0", + "prefixLen":25, + "network":"194.51.16.0\/25", + "version":52877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.16.0", + "prefixLen":25, + "network":"194.51.16.0\/25", + "version":52877, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.16.128", + "prefixLen":25, + "network":"194.51.16.128\/25", + "version":52876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.16.128", + "prefixLen":25, + "network":"194.51.16.128\/25", + "version":52876, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.17.0", + "prefixLen":25, + "network":"194.51.17.0\/25", + "version":52875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.17.0", + "prefixLen":25, + "network":"194.51.17.0\/25", + "version":52875, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.17.128", + "prefixLen":25, + "network":"194.51.17.128\/25", + "version":52874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.17.128", + "prefixLen":25, + "network":"194.51.17.128\/25", + "version":52874, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.18.0", + "prefixLen":25, + "network":"194.51.18.0\/25", + "version":52873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.18.0", + "prefixLen":25, + "network":"194.51.18.0\/25", + "version":52873, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.18.128", + "prefixLen":25, + "network":"194.51.18.128\/25", + "version":52872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.18.128", + "prefixLen":25, + "network":"194.51.18.128\/25", + "version":52872, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.19.0", + "prefixLen":25, + "network":"194.51.19.0\/25", + "version":52871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.19.0", + "prefixLen":25, + "network":"194.51.19.0\/25", + "version":52871, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.19.128", + "prefixLen":25, + "network":"194.51.19.128\/25", + "version":52870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.19.128", + "prefixLen":25, + "network":"194.51.19.128\/25", + "version":52870, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.32.0", + "prefixLen":25, + "network":"194.51.32.0\/25", + "version":52869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.32.0", + "prefixLen":25, + "network":"194.51.32.0\/25", + "version":52869, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.32.128", + "prefixLen":25, + "network":"194.51.32.128\/25", + "version":52868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.32.128", + "prefixLen":25, + "network":"194.51.32.128\/25", + "version":52868, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.33.0", + "prefixLen":25, + "network":"194.51.33.0\/25", + "version":52867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.33.0", + "prefixLen":25, + "network":"194.51.33.0\/25", + "version":52867, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.33.128", + "prefixLen":25, + "network":"194.51.33.128\/25", + "version":52866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.33.128", + "prefixLen":25, + "network":"194.51.33.128\/25", + "version":52866, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.34.0", + "prefixLen":25, + "network":"194.51.34.0\/25", + "version":52865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.34.0", + "prefixLen":25, + "network":"194.51.34.0\/25", + "version":52865, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.34.128", + "prefixLen":25, + "network":"194.51.34.128\/25", + "version":52864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.34.128", + "prefixLen":25, + "network":"194.51.34.128\/25", + "version":52864, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.35.0", + "prefixLen":25, + "network":"194.51.35.0\/25", + "version":52863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.35.0", + "prefixLen":25, + "network":"194.51.35.0\/25", + "version":52863, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.35.128", + "prefixLen":25, + "network":"194.51.35.128\/25", + "version":52862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.35.128", + "prefixLen":25, + "network":"194.51.35.128\/25", + "version":52862, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.48.0", + "prefixLen":25, + "network":"194.51.48.0\/25", + "version":52861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.48.0", + "prefixLen":25, + "network":"194.51.48.0\/25", + "version":52861, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.48.128", + "prefixLen":25, + "network":"194.51.48.128\/25", + "version":52860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.48.128", + "prefixLen":25, + "network":"194.51.48.128\/25", + "version":52860, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.49.0", + "prefixLen":25, + "network":"194.51.49.0\/25", + "version":52859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.49.0", + "prefixLen":25, + "network":"194.51.49.0\/25", + "version":52859, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.49.128", + "prefixLen":25, + "network":"194.51.49.128\/25", + "version":52858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.49.128", + "prefixLen":25, + "network":"194.51.49.128\/25", + "version":52858, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.50.0", + "prefixLen":25, + "network":"194.51.50.0\/25", + "version":52857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.50.0", + "prefixLen":25, + "network":"194.51.50.0\/25", + "version":52857, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.50.128", + "prefixLen":25, + "network":"194.51.50.128\/25", + "version":52856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.50.128", + "prefixLen":25, + "network":"194.51.50.128\/25", + "version":52856, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.51.0", + "prefixLen":25, + "network":"194.51.51.0\/25", + "version":52855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.51.0", + "prefixLen":25, + "network":"194.51.51.0\/25", + "version":52855, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.51.128", + "prefixLen":25, + "network":"194.51.51.128\/25", + "version":52854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.51.128", + "prefixLen":25, + "network":"194.51.51.128\/25", + "version":52854, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.64.0", + "prefixLen":25, + "network":"194.51.64.0\/25", + "version":52853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.64.0", + "prefixLen":25, + "network":"194.51.64.0\/25", + "version":52853, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.64.128", + "prefixLen":25, + "network":"194.51.64.128\/25", + "version":52852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.64.128", + "prefixLen":25, + "network":"194.51.64.128\/25", + "version":52852, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.65.0", + "prefixLen":25, + "network":"194.51.65.0\/25", + "version":52851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.65.0", + "prefixLen":25, + "network":"194.51.65.0\/25", + "version":52851, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.65.128", + "prefixLen":25, + "network":"194.51.65.128\/25", + "version":52850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.65.128", + "prefixLen":25, + "network":"194.51.65.128\/25", + "version":52850, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.66.0", + "prefixLen":25, + "network":"194.51.66.0\/25", + "version":52849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.66.0", + "prefixLen":25, + "network":"194.51.66.0\/25", + "version":52849, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.66.128", + "prefixLen":25, + "network":"194.51.66.128\/25", + "version":52848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.66.128", + "prefixLen":25, + "network":"194.51.66.128\/25", + "version":52848, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.67.0", + "prefixLen":25, + "network":"194.51.67.0\/25", + "version":52847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.67.0", + "prefixLen":25, + "network":"194.51.67.0\/25", + "version":52847, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.67.128", + "prefixLen":25, + "network":"194.51.67.128\/25", + "version":52846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.67.128", + "prefixLen":25, + "network":"194.51.67.128\/25", + "version":52846, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.80.0", + "prefixLen":25, + "network":"194.51.80.0\/25", + "version":52845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.80.0", + "prefixLen":25, + "network":"194.51.80.0\/25", + "version":52845, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.80.128", + "prefixLen":25, + "network":"194.51.80.128\/25", + "version":52844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.80.128", + "prefixLen":25, + "network":"194.51.80.128\/25", + "version":52844, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.81.0", + "prefixLen":25, + "network":"194.51.81.0\/25", + "version":52843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.81.0", + "prefixLen":25, + "network":"194.51.81.0\/25", + "version":52843, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.81.128", + "prefixLen":25, + "network":"194.51.81.128\/25", + "version":52842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.81.128", + "prefixLen":25, + "network":"194.51.81.128\/25", + "version":52842, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.82.0", + "prefixLen":25, + "network":"194.51.82.0\/25", + "version":52841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.82.0", + "prefixLen":25, + "network":"194.51.82.0\/25", + "version":52841, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.82.128", + "prefixLen":25, + "network":"194.51.82.128\/25", + "version":52840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.82.128", + "prefixLen":25, + "network":"194.51.82.128\/25", + "version":52840, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.83.0", + "prefixLen":25, + "network":"194.51.83.0\/25", + "version":52839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.83.0", + "prefixLen":25, + "network":"194.51.83.0\/25", + "version":52839, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.83.128", + "prefixLen":25, + "network":"194.51.83.128\/25", + "version":52838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.83.128", + "prefixLen":25, + "network":"194.51.83.128\/25", + "version":52838, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.96.0", + "prefixLen":25, + "network":"194.51.96.0\/25", + "version":52837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.96.0", + "prefixLen":25, + "network":"194.51.96.0\/25", + "version":52837, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.96.128", + "prefixLen":25, + "network":"194.51.96.128\/25", + "version":52836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.96.128", + "prefixLen":25, + "network":"194.51.96.128\/25", + "version":52836, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.97.0", + "prefixLen":25, + "network":"194.51.97.0\/25", + "version":52835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.97.0", + "prefixLen":25, + "network":"194.51.97.0\/25", + "version":52835, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.97.128", + "prefixLen":25, + "network":"194.51.97.128\/25", + "version":52834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.97.128", + "prefixLen":25, + "network":"194.51.97.128\/25", + "version":52834, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.98.0", + "prefixLen":25, + "network":"194.51.98.0\/25", + "version":52833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.98.0", + "prefixLen":25, + "network":"194.51.98.0\/25", + "version":52833, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.98.128", + "prefixLen":25, + "network":"194.51.98.128\/25", + "version":52832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.98.128", + "prefixLen":25, + "network":"194.51.98.128\/25", + "version":52832, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.99.0", + "prefixLen":25, + "network":"194.51.99.0\/25", + "version":52831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.99.0", + "prefixLen":25, + "network":"194.51.99.0\/25", + "version":52831, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.99.128", + "prefixLen":25, + "network":"194.51.99.128\/25", + "version":52830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.99.128", + "prefixLen":25, + "network":"194.51.99.128\/25", + "version":52830, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.112.0", + "prefixLen":25, + "network":"194.51.112.0\/25", + "version":52829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.112.0", + "prefixLen":25, + "network":"194.51.112.0\/25", + "version":52829, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.112.128", + "prefixLen":25, + "network":"194.51.112.128\/25", + "version":52828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.112.128", + "prefixLen":25, + "network":"194.51.112.128\/25", + "version":52828, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.113.0", + "prefixLen":25, + "network":"194.51.113.0\/25", + "version":52827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.113.0", + "prefixLen":25, + "network":"194.51.113.0\/25", + "version":52827, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.113.128", + "prefixLen":25, + "network":"194.51.113.128\/25", + "version":52826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.113.128", + "prefixLen":25, + "network":"194.51.113.128\/25", + "version":52826, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.114.0", + "prefixLen":25, + "network":"194.51.114.0\/25", + "version":52825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.114.0", + "prefixLen":25, + "network":"194.51.114.0\/25", + "version":52825, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.114.128", + "prefixLen":25, + "network":"194.51.114.128\/25", + "version":52824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.114.128", + "prefixLen":25, + "network":"194.51.114.128\/25", + "version":52824, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.115.0", + "prefixLen":25, + "network":"194.51.115.0\/25", + "version":52823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.115.0", + "prefixLen":25, + "network":"194.51.115.0\/25", + "version":52823, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.115.128", + "prefixLen":25, + "network":"194.51.115.128\/25", + "version":52822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.115.128", + "prefixLen":25, + "network":"194.51.115.128\/25", + "version":52822, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.128.0", + "prefixLen":25, + "network":"194.51.128.0\/25", + "version":52821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.128.0", + "prefixLen":25, + "network":"194.51.128.0\/25", + "version":52821, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.128.128", + "prefixLen":25, + "network":"194.51.128.128\/25", + "version":52820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.128.128", + "prefixLen":25, + "network":"194.51.128.128\/25", + "version":52820, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.129.0", + "prefixLen":25, + "network":"194.51.129.0\/25", + "version":52819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.129.0", + "prefixLen":25, + "network":"194.51.129.0\/25", + "version":52819, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.129.128", + "prefixLen":25, + "network":"194.51.129.128\/25", + "version":52818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.129.128", + "prefixLen":25, + "network":"194.51.129.128\/25", + "version":52818, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.130.0", + "prefixLen":25, + "network":"194.51.130.0\/25", + "version":52817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.130.0", + "prefixLen":25, + "network":"194.51.130.0\/25", + "version":52817, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.130.128", + "prefixLen":25, + "network":"194.51.130.128\/25", + "version":52816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.130.128", + "prefixLen":25, + "network":"194.51.130.128\/25", + "version":52816, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.131.0", + "prefixLen":25, + "network":"194.51.131.0\/25", + "version":52815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.131.0", + "prefixLen":25, + "network":"194.51.131.0\/25", + "version":52815, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.131.128", + "prefixLen":25, + "network":"194.51.131.128\/25", + "version":52814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.131.128", + "prefixLen":25, + "network":"194.51.131.128\/25", + "version":52814, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.144.0", + "prefixLen":25, + "network":"194.51.144.0\/25", + "version":52813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.144.0", + "prefixLen":25, + "network":"194.51.144.0\/25", + "version":52813, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.144.128", + "prefixLen":25, + "network":"194.51.144.128\/25", + "version":52812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.144.128", + "prefixLen":25, + "network":"194.51.144.128\/25", + "version":52812, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.145.0", + "prefixLen":25, + "network":"194.51.145.0\/25", + "version":52811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.145.0", + "prefixLen":25, + "network":"194.51.145.0\/25", + "version":52811, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.145.128", + "prefixLen":25, + "network":"194.51.145.128\/25", + "version":52810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.145.128", + "prefixLen":25, + "network":"194.51.145.128\/25", + "version":52810, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.146.0", + "prefixLen":25, + "network":"194.51.146.0\/25", + "version":52809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.146.0", + "prefixLen":25, + "network":"194.51.146.0\/25", + "version":52809, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.146.128", + "prefixLen":25, + "network":"194.51.146.128\/25", + "version":52808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.146.128", + "prefixLen":25, + "network":"194.51.146.128\/25", + "version":52808, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.147.0", + "prefixLen":25, + "network":"194.51.147.0\/25", + "version":52807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.147.0", + "prefixLen":25, + "network":"194.51.147.0\/25", + "version":52807, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.147.128", + "prefixLen":25, + "network":"194.51.147.128\/25", + "version":52806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.147.128", + "prefixLen":25, + "network":"194.51.147.128\/25", + "version":52806, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.160.0", + "prefixLen":25, + "network":"194.51.160.0\/25", + "version":52805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.160.0", + "prefixLen":25, + "network":"194.51.160.0\/25", + "version":52805, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.160.128", + "prefixLen":25, + "network":"194.51.160.128\/25", + "version":52804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.160.128", + "prefixLen":25, + "network":"194.51.160.128\/25", + "version":52804, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.161.0", + "prefixLen":25, + "network":"194.51.161.0\/25", + "version":52803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.161.0", + "prefixLen":25, + "network":"194.51.161.0\/25", + "version":52803, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.161.128", + "prefixLen":25, + "network":"194.51.161.128\/25", + "version":52802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.161.128", + "prefixLen":25, + "network":"194.51.161.128\/25", + "version":52802, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.162.0", + "prefixLen":25, + "network":"194.51.162.0\/25", + "version":52801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.162.0", + "prefixLen":25, + "network":"194.51.162.0\/25", + "version":52801, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.162.128", + "prefixLen":25, + "network":"194.51.162.128\/25", + "version":52800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.162.128", + "prefixLen":25, + "network":"194.51.162.128\/25", + "version":52800, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.163.0", + "prefixLen":25, + "network":"194.51.163.0\/25", + "version":52799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.163.0", + "prefixLen":25, + "network":"194.51.163.0\/25", + "version":52799, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.163.128", + "prefixLen":25, + "network":"194.51.163.128\/25", + "version":52798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.163.128", + "prefixLen":25, + "network":"194.51.163.128\/25", + "version":52798, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.176.0", + "prefixLen":25, + "network":"194.51.176.0\/25", + "version":52797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.176.0", + "prefixLen":25, + "network":"194.51.176.0\/25", + "version":52797, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.176.128", + "prefixLen":25, + "network":"194.51.176.128\/25", + "version":52796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.176.128", + "prefixLen":25, + "network":"194.51.176.128\/25", + "version":52796, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.177.0", + "prefixLen":25, + "network":"194.51.177.0\/25", + "version":52795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.177.0", + "prefixLen":25, + "network":"194.51.177.0\/25", + "version":52795, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.177.128", + "prefixLen":25, + "network":"194.51.177.128\/25", + "version":52794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.177.128", + "prefixLen":25, + "network":"194.51.177.128\/25", + "version":52794, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.178.0", + "prefixLen":25, + "network":"194.51.178.0\/25", + "version":52793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.178.0", + "prefixLen":25, + "network":"194.51.178.0\/25", + "version":52793, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.178.128", + "prefixLen":25, + "network":"194.51.178.128\/25", + "version":52792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.178.128", + "prefixLen":25, + "network":"194.51.178.128\/25", + "version":52792, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.179.0", + "prefixLen":25, + "network":"194.51.179.0\/25", + "version":52791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.179.0", + "prefixLen":25, + "network":"194.51.179.0\/25", + "version":52791, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.179.128", + "prefixLen":25, + "network":"194.51.179.128\/25", + "version":52790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.179.128", + "prefixLen":25, + "network":"194.51.179.128\/25", + "version":52790, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.192.0", + "prefixLen":25, + "network":"194.51.192.0\/25", + "version":52789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.192.0", + "prefixLen":25, + "network":"194.51.192.0\/25", + "version":52789, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.192.128", + "prefixLen":25, + "network":"194.51.192.128\/25", + "version":52788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.192.128", + "prefixLen":25, + "network":"194.51.192.128\/25", + "version":52788, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.193.0", + "prefixLen":25, + "network":"194.51.193.0\/25", + "version":52787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.193.0", + "prefixLen":25, + "network":"194.51.193.0\/25", + "version":52787, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.193.128", + "prefixLen":25, + "network":"194.51.193.128\/25", + "version":52786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.193.128", + "prefixLen":25, + "network":"194.51.193.128\/25", + "version":52786, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.194.0", + "prefixLen":25, + "network":"194.51.194.0\/25", + "version":52785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.194.0", + "prefixLen":25, + "network":"194.51.194.0\/25", + "version":52785, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.194.128", + "prefixLen":25, + "network":"194.51.194.128\/25", + "version":52784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.194.128", + "prefixLen":25, + "network":"194.51.194.128\/25", + "version":52784, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.195.0", + "prefixLen":25, + "network":"194.51.195.0\/25", + "version":52783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.195.0", + "prefixLen":25, + "network":"194.51.195.0\/25", + "version":52783, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.195.128", + "prefixLen":25, + "network":"194.51.195.128\/25", + "version":52782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.195.128", + "prefixLen":25, + "network":"194.51.195.128\/25", + "version":52782, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.208.0", + "prefixLen":25, + "network":"194.51.208.0\/25", + "version":52781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.208.0", + "prefixLen":25, + "network":"194.51.208.0\/25", + "version":52781, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.208.128", + "prefixLen":25, + "network":"194.51.208.128\/25", + "version":52780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.208.128", + "prefixLen":25, + "network":"194.51.208.128\/25", + "version":52780, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.209.0", + "prefixLen":25, + "network":"194.51.209.0\/25", + "version":52779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.209.0", + "prefixLen":25, + "network":"194.51.209.0\/25", + "version":52779, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.209.128", + "prefixLen":25, + "network":"194.51.209.128\/25", + "version":52778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.209.128", + "prefixLen":25, + "network":"194.51.209.128\/25", + "version":52778, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.210.0", + "prefixLen":25, + "network":"194.51.210.0\/25", + "version":52777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.210.0", + "prefixLen":25, + "network":"194.51.210.0\/25", + "version":52777, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.210.128", + "prefixLen":25, + "network":"194.51.210.128\/25", + "version":52776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.210.128", + "prefixLen":25, + "network":"194.51.210.128\/25", + "version":52776, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.211.0", + "prefixLen":25, + "network":"194.51.211.0\/25", + "version":52775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.211.0", + "prefixLen":25, + "network":"194.51.211.0\/25", + "version":52775, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.211.128", + "prefixLen":25, + "network":"194.51.211.128\/25", + "version":52774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.211.128", + "prefixLen":25, + "network":"194.51.211.128\/25", + "version":52774, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.224.0", + "prefixLen":25, + "network":"194.51.224.0\/25", + "version":52773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.224.0", + "prefixLen":25, + "network":"194.51.224.0\/25", + "version":52773, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.224.128", + "prefixLen":25, + "network":"194.51.224.128\/25", + "version":52772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.224.128", + "prefixLen":25, + "network":"194.51.224.128\/25", + "version":52772, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.225.0", + "prefixLen":25, + "network":"194.51.225.0\/25", + "version":52771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.225.0", + "prefixLen":25, + "network":"194.51.225.0\/25", + "version":52771, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.225.128", + "prefixLen":25, + "network":"194.51.225.128\/25", + "version":52770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.225.128", + "prefixLen":25, + "network":"194.51.225.128\/25", + "version":52770, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.226.0", + "prefixLen":25, + "network":"194.51.226.0\/25", + "version":52769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.226.0", + "prefixLen":25, + "network":"194.51.226.0\/25", + "version":52769, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.226.128", + "prefixLen":25, + "network":"194.51.226.128\/25", + "version":52768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.226.128", + "prefixLen":25, + "network":"194.51.226.128\/25", + "version":52768, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.227.0", + "prefixLen":25, + "network":"194.51.227.0\/25", + "version":52767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.227.0", + "prefixLen":25, + "network":"194.51.227.0\/25", + "version":52767, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.227.128", + "prefixLen":25, + "network":"194.51.227.128\/25", + "version":52766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.227.128", + "prefixLen":25, + "network":"194.51.227.128\/25", + "version":52766, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.240.0", + "prefixLen":25, + "network":"194.51.240.0\/25", + "version":52765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.240.0", + "prefixLen":25, + "network":"194.51.240.0\/25", + "version":52765, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.240.128", + "prefixLen":25, + "network":"194.51.240.128\/25", + "version":52764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.240.128", + "prefixLen":25, + "network":"194.51.240.128\/25", + "version":52764, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.241.0", + "prefixLen":25, + "network":"194.51.241.0\/25", + "version":52763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.241.0", + "prefixLen":25, + "network":"194.51.241.0\/25", + "version":52763, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.241.128", + "prefixLen":25, + "network":"194.51.241.128\/25", + "version":52762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.241.128", + "prefixLen":25, + "network":"194.51.241.128\/25", + "version":52762, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.242.0", + "prefixLen":25, + "network":"194.51.242.0\/25", + "version":52761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.242.0", + "prefixLen":25, + "network":"194.51.242.0\/25", + "version":52761, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.242.128", + "prefixLen":25, + "network":"194.51.242.128\/25", + "version":52760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.242.128", + "prefixLen":25, + "network":"194.51.242.128\/25", + "version":52760, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.243.0", + "prefixLen":25, + "network":"194.51.243.0\/25", + "version":52759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.243.0", + "prefixLen":25, + "network":"194.51.243.0\/25", + "version":52759, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.51.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.51.243.128", + "prefixLen":25, + "network":"194.51.243.128\/25", + "version":52758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.51.243.128", + "prefixLen":25, + "network":"194.51.243.128\/25", + "version":52758, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64995 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.0.0", + "prefixLen":25, + "network":"194.52.0.0\/25", + "version":52885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.0.0", + "prefixLen":25, + "network":"194.52.0.0\/25", + "version":52885, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.0.128", + "prefixLen":25, + "network":"194.52.0.128\/25", + "version":53012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.0.128", + "prefixLen":25, + "network":"194.52.0.128\/25", + "version":53012, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.1.0", + "prefixLen":25, + "network":"194.52.1.0\/25", + "version":53011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.1.0", + "prefixLen":25, + "network":"194.52.1.0\/25", + "version":53011, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.1.128", + "prefixLen":25, + "network":"194.52.1.128\/25", + "version":53010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.1.128", + "prefixLen":25, + "network":"194.52.1.128\/25", + "version":53010, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.2.0", + "prefixLen":25, + "network":"194.52.2.0\/25", + "version":53009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.2.0", + "prefixLen":25, + "network":"194.52.2.0\/25", + "version":53009, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.2.128", + "prefixLen":25, + "network":"194.52.2.128\/25", + "version":53008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.2.128", + "prefixLen":25, + "network":"194.52.2.128\/25", + "version":53008, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.3.0", + "prefixLen":25, + "network":"194.52.3.0\/25", + "version":53007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.3.0", + "prefixLen":25, + "network":"194.52.3.0\/25", + "version":53007, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.3.128", + "prefixLen":25, + "network":"194.52.3.128\/25", + "version":53006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.3.128", + "prefixLen":25, + "network":"194.52.3.128\/25", + "version":53006, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.16.0", + "prefixLen":25, + "network":"194.52.16.0\/25", + "version":53005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.16.0", + "prefixLen":25, + "network":"194.52.16.0\/25", + "version":53005, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.16.128", + "prefixLen":25, + "network":"194.52.16.128\/25", + "version":53004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.16.128", + "prefixLen":25, + "network":"194.52.16.128\/25", + "version":53004, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.17.0", + "prefixLen":25, + "network":"194.52.17.0\/25", + "version":53003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.17.0", + "prefixLen":25, + "network":"194.52.17.0\/25", + "version":53003, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.17.128", + "prefixLen":25, + "network":"194.52.17.128\/25", + "version":53002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.17.128", + "prefixLen":25, + "network":"194.52.17.128\/25", + "version":53002, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.18.0", + "prefixLen":25, + "network":"194.52.18.0\/25", + "version":53001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.18.0", + "prefixLen":25, + "network":"194.52.18.0\/25", + "version":53001, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.18.128", + "prefixLen":25, + "network":"194.52.18.128\/25", + "version":53000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.18.128", + "prefixLen":25, + "network":"194.52.18.128\/25", + "version":53000, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.19.0", + "prefixLen":25, + "network":"194.52.19.0\/25", + "version":52999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.19.0", + "prefixLen":25, + "network":"194.52.19.0\/25", + "version":52999, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.19.128", + "prefixLen":25, + "network":"194.52.19.128\/25", + "version":52998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.19.128", + "prefixLen":25, + "network":"194.52.19.128\/25", + "version":52998, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.32.0", + "prefixLen":25, + "network":"194.52.32.0\/25", + "version":52997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.32.0", + "prefixLen":25, + "network":"194.52.32.0\/25", + "version":52997, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.32.128", + "prefixLen":25, + "network":"194.52.32.128\/25", + "version":52996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.32.128", + "prefixLen":25, + "network":"194.52.32.128\/25", + "version":52996, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.33.0", + "prefixLen":25, + "network":"194.52.33.0\/25", + "version":52995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.33.0", + "prefixLen":25, + "network":"194.52.33.0\/25", + "version":52995, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.33.128", + "prefixLen":25, + "network":"194.52.33.128\/25", + "version":52994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.33.128", + "prefixLen":25, + "network":"194.52.33.128\/25", + "version":52994, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.34.0", + "prefixLen":25, + "network":"194.52.34.0\/25", + "version":52993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.34.0", + "prefixLen":25, + "network":"194.52.34.0\/25", + "version":52993, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.34.128", + "prefixLen":25, + "network":"194.52.34.128\/25", + "version":52992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.34.128", + "prefixLen":25, + "network":"194.52.34.128\/25", + "version":52992, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.35.0", + "prefixLen":25, + "network":"194.52.35.0\/25", + "version":52991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.35.0", + "prefixLen":25, + "network":"194.52.35.0\/25", + "version":52991, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.35.128", + "prefixLen":25, + "network":"194.52.35.128\/25", + "version":52990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.35.128", + "prefixLen":25, + "network":"194.52.35.128\/25", + "version":52990, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.48.0", + "prefixLen":25, + "network":"194.52.48.0\/25", + "version":52989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.48.0", + "prefixLen":25, + "network":"194.52.48.0\/25", + "version":52989, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.48.128", + "prefixLen":25, + "network":"194.52.48.128\/25", + "version":52988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.48.128", + "prefixLen":25, + "network":"194.52.48.128\/25", + "version":52988, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.49.0", + "prefixLen":25, + "network":"194.52.49.0\/25", + "version":52987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.49.0", + "prefixLen":25, + "network":"194.52.49.0\/25", + "version":52987, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.49.128", + "prefixLen":25, + "network":"194.52.49.128\/25", + "version":52986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.49.128", + "prefixLen":25, + "network":"194.52.49.128\/25", + "version":52986, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.50.0", + "prefixLen":25, + "network":"194.52.50.0\/25", + "version":52985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.50.0", + "prefixLen":25, + "network":"194.52.50.0\/25", + "version":52985, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.50.128", + "prefixLen":25, + "network":"194.52.50.128\/25", + "version":52984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.50.128", + "prefixLen":25, + "network":"194.52.50.128\/25", + "version":52984, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.51.0", + "prefixLen":25, + "network":"194.52.51.0\/25", + "version":52983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.51.0", + "prefixLen":25, + "network":"194.52.51.0\/25", + "version":52983, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.51.128", + "prefixLen":25, + "network":"194.52.51.128\/25", + "version":52982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.51.128", + "prefixLen":25, + "network":"194.52.51.128\/25", + "version":52982, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.64.0", + "prefixLen":25, + "network":"194.52.64.0\/25", + "version":52981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.64.0", + "prefixLen":25, + "network":"194.52.64.0\/25", + "version":52981, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.64.128", + "prefixLen":25, + "network":"194.52.64.128\/25", + "version":52980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.64.128", + "prefixLen":25, + "network":"194.52.64.128\/25", + "version":52980, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.65.0", + "prefixLen":25, + "network":"194.52.65.0\/25", + "version":52979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.65.0", + "prefixLen":25, + "network":"194.52.65.0\/25", + "version":52979, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.65.128", + "prefixLen":25, + "network":"194.52.65.128\/25", + "version":52978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.65.128", + "prefixLen":25, + "network":"194.52.65.128\/25", + "version":52978, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.66.0", + "prefixLen":25, + "network":"194.52.66.0\/25", + "version":52977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.66.0", + "prefixLen":25, + "network":"194.52.66.0\/25", + "version":52977, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.66.128", + "prefixLen":25, + "network":"194.52.66.128\/25", + "version":52976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.66.128", + "prefixLen":25, + "network":"194.52.66.128\/25", + "version":52976, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.67.0", + "prefixLen":25, + "network":"194.52.67.0\/25", + "version":52975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.67.0", + "prefixLen":25, + "network":"194.52.67.0\/25", + "version":52975, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.67.128", + "prefixLen":25, + "network":"194.52.67.128\/25", + "version":52974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.67.128", + "prefixLen":25, + "network":"194.52.67.128\/25", + "version":52974, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.80.0", + "prefixLen":25, + "network":"194.52.80.0\/25", + "version":52973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.80.0", + "prefixLen":25, + "network":"194.52.80.0\/25", + "version":52973, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.80.128", + "prefixLen":25, + "network":"194.52.80.128\/25", + "version":52972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.80.128", + "prefixLen":25, + "network":"194.52.80.128\/25", + "version":52972, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.81.0", + "prefixLen":25, + "network":"194.52.81.0\/25", + "version":52971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.81.0", + "prefixLen":25, + "network":"194.52.81.0\/25", + "version":52971, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.81.128", + "prefixLen":25, + "network":"194.52.81.128\/25", + "version":52970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.81.128", + "prefixLen":25, + "network":"194.52.81.128\/25", + "version":52970, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.82.0", + "prefixLen":25, + "network":"194.52.82.0\/25", + "version":52969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.82.0", + "prefixLen":25, + "network":"194.52.82.0\/25", + "version":52969, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.82.128", + "prefixLen":25, + "network":"194.52.82.128\/25", + "version":52968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.82.128", + "prefixLen":25, + "network":"194.52.82.128\/25", + "version":52968, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.83.0", + "prefixLen":25, + "network":"194.52.83.0\/25", + "version":52967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.83.0", + "prefixLen":25, + "network":"194.52.83.0\/25", + "version":52967, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.83.128", + "prefixLen":25, + "network":"194.52.83.128\/25", + "version":52966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.83.128", + "prefixLen":25, + "network":"194.52.83.128\/25", + "version":52966, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.96.0", + "prefixLen":25, + "network":"194.52.96.0\/25", + "version":52965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.96.0", + "prefixLen":25, + "network":"194.52.96.0\/25", + "version":52965, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.96.128", + "prefixLen":25, + "network":"194.52.96.128\/25", + "version":52964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.96.128", + "prefixLen":25, + "network":"194.52.96.128\/25", + "version":52964, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.97.0", + "prefixLen":25, + "network":"194.52.97.0\/25", + "version":52963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.97.0", + "prefixLen":25, + "network":"194.52.97.0\/25", + "version":52963, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.97.128", + "prefixLen":25, + "network":"194.52.97.128\/25", + "version":52962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.97.128", + "prefixLen":25, + "network":"194.52.97.128\/25", + "version":52962, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.98.0", + "prefixLen":25, + "network":"194.52.98.0\/25", + "version":52961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.98.0", + "prefixLen":25, + "network":"194.52.98.0\/25", + "version":52961, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.98.128", + "prefixLen":25, + "network":"194.52.98.128\/25", + "version":52960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.98.128", + "prefixLen":25, + "network":"194.52.98.128\/25", + "version":52960, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.99.0", + "prefixLen":25, + "network":"194.52.99.0\/25", + "version":52959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.99.0", + "prefixLen":25, + "network":"194.52.99.0\/25", + "version":52959, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.99.128", + "prefixLen":25, + "network":"194.52.99.128\/25", + "version":52958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.99.128", + "prefixLen":25, + "network":"194.52.99.128\/25", + "version":52958, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.112.0", + "prefixLen":25, + "network":"194.52.112.0\/25", + "version":52957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.112.0", + "prefixLen":25, + "network":"194.52.112.0\/25", + "version":52957, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.112.128", + "prefixLen":25, + "network":"194.52.112.128\/25", + "version":52956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.112.128", + "prefixLen":25, + "network":"194.52.112.128\/25", + "version":52956, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.113.0", + "prefixLen":25, + "network":"194.52.113.0\/25", + "version":52955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.113.0", + "prefixLen":25, + "network":"194.52.113.0\/25", + "version":52955, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.113.128", + "prefixLen":25, + "network":"194.52.113.128\/25", + "version":52954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.113.128", + "prefixLen":25, + "network":"194.52.113.128\/25", + "version":52954, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.114.0", + "prefixLen":25, + "network":"194.52.114.0\/25", + "version":52953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.114.0", + "prefixLen":25, + "network":"194.52.114.0\/25", + "version":52953, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.114.128", + "prefixLen":25, + "network":"194.52.114.128\/25", + "version":52952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.114.128", + "prefixLen":25, + "network":"194.52.114.128\/25", + "version":52952, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.115.0", + "prefixLen":25, + "network":"194.52.115.0\/25", + "version":52951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.115.0", + "prefixLen":25, + "network":"194.52.115.0\/25", + "version":52951, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.115.128", + "prefixLen":25, + "network":"194.52.115.128\/25", + "version":52950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.115.128", + "prefixLen":25, + "network":"194.52.115.128\/25", + "version":52950, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.128.0", + "prefixLen":25, + "network":"194.52.128.0\/25", + "version":52949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.128.0", + "prefixLen":25, + "network":"194.52.128.0\/25", + "version":52949, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.128.128", + "prefixLen":25, + "network":"194.52.128.128\/25", + "version":52948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.128.128", + "prefixLen":25, + "network":"194.52.128.128\/25", + "version":52948, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.129.0", + "prefixLen":25, + "network":"194.52.129.0\/25", + "version":52947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.129.0", + "prefixLen":25, + "network":"194.52.129.0\/25", + "version":52947, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.129.128", + "prefixLen":25, + "network":"194.52.129.128\/25", + "version":52946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.129.128", + "prefixLen":25, + "network":"194.52.129.128\/25", + "version":52946, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.130.0", + "prefixLen":25, + "network":"194.52.130.0\/25", + "version":52945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.130.0", + "prefixLen":25, + "network":"194.52.130.0\/25", + "version":52945, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.130.128", + "prefixLen":25, + "network":"194.52.130.128\/25", + "version":52944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.130.128", + "prefixLen":25, + "network":"194.52.130.128\/25", + "version":52944, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.131.0", + "prefixLen":25, + "network":"194.52.131.0\/25", + "version":52943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.131.0", + "prefixLen":25, + "network":"194.52.131.0\/25", + "version":52943, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.131.128", + "prefixLen":25, + "network":"194.52.131.128\/25", + "version":52942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.131.128", + "prefixLen":25, + "network":"194.52.131.128\/25", + "version":52942, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.144.0", + "prefixLen":25, + "network":"194.52.144.0\/25", + "version":52941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.144.0", + "prefixLen":25, + "network":"194.52.144.0\/25", + "version":52941, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.144.128", + "prefixLen":25, + "network":"194.52.144.128\/25", + "version":52940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.144.128", + "prefixLen":25, + "network":"194.52.144.128\/25", + "version":52940, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.145.0", + "prefixLen":25, + "network":"194.52.145.0\/25", + "version":52939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.145.0", + "prefixLen":25, + "network":"194.52.145.0\/25", + "version":52939, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.145.128", + "prefixLen":25, + "network":"194.52.145.128\/25", + "version":52938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.145.128", + "prefixLen":25, + "network":"194.52.145.128\/25", + "version":52938, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.146.0", + "prefixLen":25, + "network":"194.52.146.0\/25", + "version":52937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.146.0", + "prefixLen":25, + "network":"194.52.146.0\/25", + "version":52937, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.146.128", + "prefixLen":25, + "network":"194.52.146.128\/25", + "version":52936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.146.128", + "prefixLen":25, + "network":"194.52.146.128\/25", + "version":52936, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.147.0", + "prefixLen":25, + "network":"194.52.147.0\/25", + "version":52935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.147.0", + "prefixLen":25, + "network":"194.52.147.0\/25", + "version":52935, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.147.128", + "prefixLen":25, + "network":"194.52.147.128\/25", + "version":52934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.147.128", + "prefixLen":25, + "network":"194.52.147.128\/25", + "version":52934, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.160.0", + "prefixLen":25, + "network":"194.52.160.0\/25", + "version":52933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.160.0", + "prefixLen":25, + "network":"194.52.160.0\/25", + "version":52933, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.160.128", + "prefixLen":25, + "network":"194.52.160.128\/25", + "version":52932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.160.128", + "prefixLen":25, + "network":"194.52.160.128\/25", + "version":52932, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.161.0", + "prefixLen":25, + "network":"194.52.161.0\/25", + "version":52931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.161.0", + "prefixLen":25, + "network":"194.52.161.0\/25", + "version":52931, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.161.128", + "prefixLen":25, + "network":"194.52.161.128\/25", + "version":52930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.161.128", + "prefixLen":25, + "network":"194.52.161.128\/25", + "version":52930, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.162.0", + "prefixLen":25, + "network":"194.52.162.0\/25", + "version":52929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.162.0", + "prefixLen":25, + "network":"194.52.162.0\/25", + "version":52929, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.162.128", + "prefixLen":25, + "network":"194.52.162.128\/25", + "version":52928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.162.128", + "prefixLen":25, + "network":"194.52.162.128\/25", + "version":52928, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.163.0", + "prefixLen":25, + "network":"194.52.163.0\/25", + "version":52927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.163.0", + "prefixLen":25, + "network":"194.52.163.0\/25", + "version":52927, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.163.128", + "prefixLen":25, + "network":"194.52.163.128\/25", + "version":52926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.163.128", + "prefixLen":25, + "network":"194.52.163.128\/25", + "version":52926, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.176.0", + "prefixLen":25, + "network":"194.52.176.0\/25", + "version":52925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.176.0", + "prefixLen":25, + "network":"194.52.176.0\/25", + "version":52925, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.176.128", + "prefixLen":25, + "network":"194.52.176.128\/25", + "version":52924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.176.128", + "prefixLen":25, + "network":"194.52.176.128\/25", + "version":52924, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.177.0", + "prefixLen":25, + "network":"194.52.177.0\/25", + "version":52923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.177.0", + "prefixLen":25, + "network":"194.52.177.0\/25", + "version":52923, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.177.128", + "prefixLen":25, + "network":"194.52.177.128\/25", + "version":52922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.177.128", + "prefixLen":25, + "network":"194.52.177.128\/25", + "version":52922, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.178.0", + "prefixLen":25, + "network":"194.52.178.0\/25", + "version":52921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.178.0", + "prefixLen":25, + "network":"194.52.178.0\/25", + "version":52921, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.178.128", + "prefixLen":25, + "network":"194.52.178.128\/25", + "version":52920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.178.128", + "prefixLen":25, + "network":"194.52.178.128\/25", + "version":52920, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.179.0", + "prefixLen":25, + "network":"194.52.179.0\/25", + "version":52919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.179.0", + "prefixLen":25, + "network":"194.52.179.0\/25", + "version":52919, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.179.128", + "prefixLen":25, + "network":"194.52.179.128\/25", + "version":52918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.179.128", + "prefixLen":25, + "network":"194.52.179.128\/25", + "version":52918, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.192.0", + "prefixLen":25, + "network":"194.52.192.0\/25", + "version":52917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.192.0", + "prefixLen":25, + "network":"194.52.192.0\/25", + "version":52917, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.192.128", + "prefixLen":25, + "network":"194.52.192.128\/25", + "version":52916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.192.128", + "prefixLen":25, + "network":"194.52.192.128\/25", + "version":52916, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.193.0", + "prefixLen":25, + "network":"194.52.193.0\/25", + "version":52915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.193.0", + "prefixLen":25, + "network":"194.52.193.0\/25", + "version":52915, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.193.128", + "prefixLen":25, + "network":"194.52.193.128\/25", + "version":52914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.193.128", + "prefixLen":25, + "network":"194.52.193.128\/25", + "version":52914, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.194.0", + "prefixLen":25, + "network":"194.52.194.0\/25", + "version":52913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.194.0", + "prefixLen":25, + "network":"194.52.194.0\/25", + "version":52913, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.194.128", + "prefixLen":25, + "network":"194.52.194.128\/25", + "version":52912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.194.128", + "prefixLen":25, + "network":"194.52.194.128\/25", + "version":52912, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.195.0", + "prefixLen":25, + "network":"194.52.195.0\/25", + "version":52911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.195.0", + "prefixLen":25, + "network":"194.52.195.0\/25", + "version":52911, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.195.128", + "prefixLen":25, + "network":"194.52.195.128\/25", + "version":52910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.195.128", + "prefixLen":25, + "network":"194.52.195.128\/25", + "version":52910, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.208.0", + "prefixLen":25, + "network":"194.52.208.0\/25", + "version":52909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.208.0", + "prefixLen":25, + "network":"194.52.208.0\/25", + "version":52909, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.208.128", + "prefixLen":25, + "network":"194.52.208.128\/25", + "version":52908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.208.128", + "prefixLen":25, + "network":"194.52.208.128\/25", + "version":52908, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.209.0", + "prefixLen":25, + "network":"194.52.209.0\/25", + "version":52907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.209.0", + "prefixLen":25, + "network":"194.52.209.0\/25", + "version":52907, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.209.128", + "prefixLen":25, + "network":"194.52.209.128\/25", + "version":52906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.209.128", + "prefixLen":25, + "network":"194.52.209.128\/25", + "version":52906, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.210.0", + "prefixLen":25, + "network":"194.52.210.0\/25", + "version":52905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.210.0", + "prefixLen":25, + "network":"194.52.210.0\/25", + "version":52905, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.210.128", + "prefixLen":25, + "network":"194.52.210.128\/25", + "version":52904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.210.128", + "prefixLen":25, + "network":"194.52.210.128\/25", + "version":52904, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.211.0", + "prefixLen":25, + "network":"194.52.211.0\/25", + "version":52903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.211.0", + "prefixLen":25, + "network":"194.52.211.0\/25", + "version":52903, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.211.128", + "prefixLen":25, + "network":"194.52.211.128\/25", + "version":52902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.211.128", + "prefixLen":25, + "network":"194.52.211.128\/25", + "version":52902, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.224.0", + "prefixLen":25, + "network":"194.52.224.0\/25", + "version":52901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.224.0", + "prefixLen":25, + "network":"194.52.224.0\/25", + "version":52901, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.224.128", + "prefixLen":25, + "network":"194.52.224.128\/25", + "version":52900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.224.128", + "prefixLen":25, + "network":"194.52.224.128\/25", + "version":52900, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.225.0", + "prefixLen":25, + "network":"194.52.225.0\/25", + "version":52899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.225.0", + "prefixLen":25, + "network":"194.52.225.0\/25", + "version":52899, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.225.128", + "prefixLen":25, + "network":"194.52.225.128\/25", + "version":52898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.225.128", + "prefixLen":25, + "network":"194.52.225.128\/25", + "version":52898, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.226.0", + "prefixLen":25, + "network":"194.52.226.0\/25", + "version":52897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.226.0", + "prefixLen":25, + "network":"194.52.226.0\/25", + "version":52897, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.226.128", + "prefixLen":25, + "network":"194.52.226.128\/25", + "version":52896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.226.128", + "prefixLen":25, + "network":"194.52.226.128\/25", + "version":52896, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.227.0", + "prefixLen":25, + "network":"194.52.227.0\/25", + "version":52895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.227.0", + "prefixLen":25, + "network":"194.52.227.0\/25", + "version":52895, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.227.128", + "prefixLen":25, + "network":"194.52.227.128\/25", + "version":52894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.227.128", + "prefixLen":25, + "network":"194.52.227.128\/25", + "version":52894, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.240.0", + "prefixLen":25, + "network":"194.52.240.0\/25", + "version":52893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.240.0", + "prefixLen":25, + "network":"194.52.240.0\/25", + "version":52893, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.240.128", + "prefixLen":25, + "network":"194.52.240.128\/25", + "version":52892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.240.128", + "prefixLen":25, + "network":"194.52.240.128\/25", + "version":52892, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.241.0", + "prefixLen":25, + "network":"194.52.241.0\/25", + "version":52891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.241.0", + "prefixLen":25, + "network":"194.52.241.0\/25", + "version":52891, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.241.128", + "prefixLen":25, + "network":"194.52.241.128\/25", + "version":52890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.241.128", + "prefixLen":25, + "network":"194.52.241.128\/25", + "version":52890, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.242.0", + "prefixLen":25, + "network":"194.52.242.0\/25", + "version":52889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.242.0", + "prefixLen":25, + "network":"194.52.242.0\/25", + "version":52889, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.242.128", + "prefixLen":25, + "network":"194.52.242.128\/25", + "version":52888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.242.128", + "prefixLen":25, + "network":"194.52.242.128\/25", + "version":52888, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.243.0", + "prefixLen":25, + "network":"194.52.243.0\/25", + "version":52887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.243.0", + "prefixLen":25, + "network":"194.52.243.0\/25", + "version":52887, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.52.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.52.243.128", + "prefixLen":25, + "network":"194.52.243.128\/25", + "version":52886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.52.243.128", + "prefixLen":25, + "network":"194.52.243.128\/25", + "version":52886, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64996 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.0.0", + "prefixLen":25, + "network":"194.53.0.0\/25", + "version":53013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.0.0", + "prefixLen":25, + "network":"194.53.0.0\/25", + "version":53013, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.0.128", + "prefixLen":25, + "network":"194.53.0.128\/25", + "version":53140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.0.128", + "prefixLen":25, + "network":"194.53.0.128\/25", + "version":53140, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.1.0", + "prefixLen":25, + "network":"194.53.1.0\/25", + "version":53139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.1.0", + "prefixLen":25, + "network":"194.53.1.0\/25", + "version":53139, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.1.128", + "prefixLen":25, + "network":"194.53.1.128\/25", + "version":53138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.1.128", + "prefixLen":25, + "network":"194.53.1.128\/25", + "version":53138, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.2.0", + "prefixLen":25, + "network":"194.53.2.0\/25", + "version":53137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.2.0", + "prefixLen":25, + "network":"194.53.2.0\/25", + "version":53137, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.2.128", + "prefixLen":25, + "network":"194.53.2.128\/25", + "version":53136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.2.128", + "prefixLen":25, + "network":"194.53.2.128\/25", + "version":53136, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.3.0", + "prefixLen":25, + "network":"194.53.3.0\/25", + "version":53135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.3.0", + "prefixLen":25, + "network":"194.53.3.0\/25", + "version":53135, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.3.128", + "prefixLen":25, + "network":"194.53.3.128\/25", + "version":53134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.3.128", + "prefixLen":25, + "network":"194.53.3.128\/25", + "version":53134, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.16.0", + "prefixLen":25, + "network":"194.53.16.0\/25", + "version":53133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.16.0", + "prefixLen":25, + "network":"194.53.16.0\/25", + "version":53133, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.16.128", + "prefixLen":25, + "network":"194.53.16.128\/25", + "version":53132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.16.128", + "prefixLen":25, + "network":"194.53.16.128\/25", + "version":53132, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.17.0", + "prefixLen":25, + "network":"194.53.17.0\/25", + "version":53131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.17.0", + "prefixLen":25, + "network":"194.53.17.0\/25", + "version":53131, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.17.128", + "prefixLen":25, + "network":"194.53.17.128\/25", + "version":53130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.17.128", + "prefixLen":25, + "network":"194.53.17.128\/25", + "version":53130, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.18.0", + "prefixLen":25, + "network":"194.53.18.0\/25", + "version":53129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.18.0", + "prefixLen":25, + "network":"194.53.18.0\/25", + "version":53129, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.18.128", + "prefixLen":25, + "network":"194.53.18.128\/25", + "version":53128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.18.128", + "prefixLen":25, + "network":"194.53.18.128\/25", + "version":53128, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.19.0", + "prefixLen":25, + "network":"194.53.19.0\/25", + "version":53127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.19.0", + "prefixLen":25, + "network":"194.53.19.0\/25", + "version":53127, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.19.128", + "prefixLen":25, + "network":"194.53.19.128\/25", + "version":53126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.19.128", + "prefixLen":25, + "network":"194.53.19.128\/25", + "version":53126, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.32.0", + "prefixLen":25, + "network":"194.53.32.0\/25", + "version":53125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.32.0", + "prefixLen":25, + "network":"194.53.32.0\/25", + "version":53125, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.32.128", + "prefixLen":25, + "network":"194.53.32.128\/25", + "version":53124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.32.128", + "prefixLen":25, + "network":"194.53.32.128\/25", + "version":53124, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.33.0", + "prefixLen":25, + "network":"194.53.33.0\/25", + "version":53123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.33.0", + "prefixLen":25, + "network":"194.53.33.0\/25", + "version":53123, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.33.128", + "prefixLen":25, + "network":"194.53.33.128\/25", + "version":53122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.33.128", + "prefixLen":25, + "network":"194.53.33.128\/25", + "version":53122, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.34.0", + "prefixLen":25, + "network":"194.53.34.0\/25", + "version":53121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.34.0", + "prefixLen":25, + "network":"194.53.34.0\/25", + "version":53121, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.34.128", + "prefixLen":25, + "network":"194.53.34.128\/25", + "version":53120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.34.128", + "prefixLen":25, + "network":"194.53.34.128\/25", + "version":53120, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.35.0", + "prefixLen":25, + "network":"194.53.35.0\/25", + "version":53119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.35.0", + "prefixLen":25, + "network":"194.53.35.0\/25", + "version":53119, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.35.128", + "prefixLen":25, + "network":"194.53.35.128\/25", + "version":53118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.35.128", + "prefixLen":25, + "network":"194.53.35.128\/25", + "version":53118, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.48.0", + "prefixLen":25, + "network":"194.53.48.0\/25", + "version":53117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.48.0", + "prefixLen":25, + "network":"194.53.48.0\/25", + "version":53117, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.48.128", + "prefixLen":25, + "network":"194.53.48.128\/25", + "version":53116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.48.128", + "prefixLen":25, + "network":"194.53.48.128\/25", + "version":53116, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.49.0", + "prefixLen":25, + "network":"194.53.49.0\/25", + "version":53115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.49.0", + "prefixLen":25, + "network":"194.53.49.0\/25", + "version":53115, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.49.128", + "prefixLen":25, + "network":"194.53.49.128\/25", + "version":53114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.49.128", + "prefixLen":25, + "network":"194.53.49.128\/25", + "version":53114, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.50.0", + "prefixLen":25, + "network":"194.53.50.0\/25", + "version":53113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.50.0", + "prefixLen":25, + "network":"194.53.50.0\/25", + "version":53113, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.50.128", + "prefixLen":25, + "network":"194.53.50.128\/25", + "version":53112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.50.128", + "prefixLen":25, + "network":"194.53.50.128\/25", + "version":53112, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.51.0", + "prefixLen":25, + "network":"194.53.51.0\/25", + "version":53111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.51.0", + "prefixLen":25, + "network":"194.53.51.0\/25", + "version":53111, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.51.128", + "prefixLen":25, + "network":"194.53.51.128\/25", + "version":53110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.51.128", + "prefixLen":25, + "network":"194.53.51.128\/25", + "version":53110, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.64.0", + "prefixLen":25, + "network":"194.53.64.0\/25", + "version":53109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.64.0", + "prefixLen":25, + "network":"194.53.64.0\/25", + "version":53109, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.64.128", + "prefixLen":25, + "network":"194.53.64.128\/25", + "version":53108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.64.128", + "prefixLen":25, + "network":"194.53.64.128\/25", + "version":53108, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.65.0", + "prefixLen":25, + "network":"194.53.65.0\/25", + "version":53107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.65.0", + "prefixLen":25, + "network":"194.53.65.0\/25", + "version":53107, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.65.128", + "prefixLen":25, + "network":"194.53.65.128\/25", + "version":53106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.65.128", + "prefixLen":25, + "network":"194.53.65.128\/25", + "version":53106, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.66.0", + "prefixLen":25, + "network":"194.53.66.0\/25", + "version":53105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.66.0", + "prefixLen":25, + "network":"194.53.66.0\/25", + "version":53105, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.66.128", + "prefixLen":25, + "network":"194.53.66.128\/25", + "version":53104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.66.128", + "prefixLen":25, + "network":"194.53.66.128\/25", + "version":53104, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.67.0", + "prefixLen":25, + "network":"194.53.67.0\/25", + "version":53103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.67.0", + "prefixLen":25, + "network":"194.53.67.0\/25", + "version":53103, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.67.128", + "prefixLen":25, + "network":"194.53.67.128\/25", + "version":53102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.67.128", + "prefixLen":25, + "network":"194.53.67.128\/25", + "version":53102, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.80.0", + "prefixLen":25, + "network":"194.53.80.0\/25", + "version":53101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.80.0", + "prefixLen":25, + "network":"194.53.80.0\/25", + "version":53101, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.80.128", + "prefixLen":25, + "network":"194.53.80.128\/25", + "version":53100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.80.128", + "prefixLen":25, + "network":"194.53.80.128\/25", + "version":53100, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.81.0", + "prefixLen":25, + "network":"194.53.81.0\/25", + "version":53099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.81.0", + "prefixLen":25, + "network":"194.53.81.0\/25", + "version":53099, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.81.128", + "prefixLen":25, + "network":"194.53.81.128\/25", + "version":53098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.81.128", + "prefixLen":25, + "network":"194.53.81.128\/25", + "version":53098, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.82.0", + "prefixLen":25, + "network":"194.53.82.0\/25", + "version":53097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.82.0", + "prefixLen":25, + "network":"194.53.82.0\/25", + "version":53097, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.82.128", + "prefixLen":25, + "network":"194.53.82.128\/25", + "version":53096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.82.128", + "prefixLen":25, + "network":"194.53.82.128\/25", + "version":53096, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.83.0", + "prefixLen":25, + "network":"194.53.83.0\/25", + "version":53095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.83.0", + "prefixLen":25, + "network":"194.53.83.0\/25", + "version":53095, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.83.128", + "prefixLen":25, + "network":"194.53.83.128\/25", + "version":53094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.83.128", + "prefixLen":25, + "network":"194.53.83.128\/25", + "version":53094, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.96.0", + "prefixLen":25, + "network":"194.53.96.0\/25", + "version":53093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.96.0", + "prefixLen":25, + "network":"194.53.96.0\/25", + "version":53093, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.96.128", + "prefixLen":25, + "network":"194.53.96.128\/25", + "version":53092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.96.128", + "prefixLen":25, + "network":"194.53.96.128\/25", + "version":53092, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.97.0", + "prefixLen":25, + "network":"194.53.97.0\/25", + "version":53091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.97.0", + "prefixLen":25, + "network":"194.53.97.0\/25", + "version":53091, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.97.128", + "prefixLen":25, + "network":"194.53.97.128\/25", + "version":53090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.97.128", + "prefixLen":25, + "network":"194.53.97.128\/25", + "version":53090, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.98.0", + "prefixLen":25, + "network":"194.53.98.0\/25", + "version":53089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.98.0", + "prefixLen":25, + "network":"194.53.98.0\/25", + "version":53089, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.98.128", + "prefixLen":25, + "network":"194.53.98.128\/25", + "version":53088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.98.128", + "prefixLen":25, + "network":"194.53.98.128\/25", + "version":53088, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.99.0", + "prefixLen":25, + "network":"194.53.99.0\/25", + "version":53087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.99.0", + "prefixLen":25, + "network":"194.53.99.0\/25", + "version":53087, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.99.128", + "prefixLen":25, + "network":"194.53.99.128\/25", + "version":53086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.99.128", + "prefixLen":25, + "network":"194.53.99.128\/25", + "version":53086, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.112.0", + "prefixLen":25, + "network":"194.53.112.0\/25", + "version":53085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.112.0", + "prefixLen":25, + "network":"194.53.112.0\/25", + "version":53085, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.112.128", + "prefixLen":25, + "network":"194.53.112.128\/25", + "version":53084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.112.128", + "prefixLen":25, + "network":"194.53.112.128\/25", + "version":53084, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.113.0", + "prefixLen":25, + "network":"194.53.113.0\/25", + "version":53083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.113.0", + "prefixLen":25, + "network":"194.53.113.0\/25", + "version":53083, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.113.128", + "prefixLen":25, + "network":"194.53.113.128\/25", + "version":53082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.113.128", + "prefixLen":25, + "network":"194.53.113.128\/25", + "version":53082, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.114.0", + "prefixLen":25, + "network":"194.53.114.0\/25", + "version":53081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.114.0", + "prefixLen":25, + "network":"194.53.114.0\/25", + "version":53081, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.114.128", + "prefixLen":25, + "network":"194.53.114.128\/25", + "version":53080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.114.128", + "prefixLen":25, + "network":"194.53.114.128\/25", + "version":53080, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.115.0", + "prefixLen":25, + "network":"194.53.115.0\/25", + "version":53079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.115.0", + "prefixLen":25, + "network":"194.53.115.0\/25", + "version":53079, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.115.128", + "prefixLen":25, + "network":"194.53.115.128\/25", + "version":53078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.115.128", + "prefixLen":25, + "network":"194.53.115.128\/25", + "version":53078, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.128.0", + "prefixLen":25, + "network":"194.53.128.0\/25", + "version":53077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.128.0", + "prefixLen":25, + "network":"194.53.128.0\/25", + "version":53077, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.128.128", + "prefixLen":25, + "network":"194.53.128.128\/25", + "version":53076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.128.128", + "prefixLen":25, + "network":"194.53.128.128\/25", + "version":53076, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.129.0", + "prefixLen":25, + "network":"194.53.129.0\/25", + "version":53075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.129.0", + "prefixLen":25, + "network":"194.53.129.0\/25", + "version":53075, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.129.128", + "prefixLen":25, + "network":"194.53.129.128\/25", + "version":53074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.129.128", + "prefixLen":25, + "network":"194.53.129.128\/25", + "version":53074, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.130.0", + "prefixLen":25, + "network":"194.53.130.0\/25", + "version":53073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.130.0", + "prefixLen":25, + "network":"194.53.130.0\/25", + "version":53073, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.130.128", + "prefixLen":25, + "network":"194.53.130.128\/25", + "version":53072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.130.128", + "prefixLen":25, + "network":"194.53.130.128\/25", + "version":53072, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.131.0", + "prefixLen":25, + "network":"194.53.131.0\/25", + "version":53071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.131.0", + "prefixLen":25, + "network":"194.53.131.0\/25", + "version":53071, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.131.128", + "prefixLen":25, + "network":"194.53.131.128\/25", + "version":53070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.131.128", + "prefixLen":25, + "network":"194.53.131.128\/25", + "version":53070, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.144.0", + "prefixLen":25, + "network":"194.53.144.0\/25", + "version":53069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.144.0", + "prefixLen":25, + "network":"194.53.144.0\/25", + "version":53069, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.144.128", + "prefixLen":25, + "network":"194.53.144.128\/25", + "version":53068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.144.128", + "prefixLen":25, + "network":"194.53.144.128\/25", + "version":53068, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.145.0", + "prefixLen":25, + "network":"194.53.145.0\/25", + "version":53067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.145.0", + "prefixLen":25, + "network":"194.53.145.0\/25", + "version":53067, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.145.128", + "prefixLen":25, + "network":"194.53.145.128\/25", + "version":53066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.145.128", + "prefixLen":25, + "network":"194.53.145.128\/25", + "version":53066, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.146.0", + "prefixLen":25, + "network":"194.53.146.0\/25", + "version":53065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.146.0", + "prefixLen":25, + "network":"194.53.146.0\/25", + "version":53065, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.146.128", + "prefixLen":25, + "network":"194.53.146.128\/25", + "version":53064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.146.128", + "prefixLen":25, + "network":"194.53.146.128\/25", + "version":53064, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.147.0", + "prefixLen":25, + "network":"194.53.147.0\/25", + "version":53063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.147.0", + "prefixLen":25, + "network":"194.53.147.0\/25", + "version":53063, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.147.128", + "prefixLen":25, + "network":"194.53.147.128\/25", + "version":53062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.147.128", + "prefixLen":25, + "network":"194.53.147.128\/25", + "version":53062, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.160.0", + "prefixLen":25, + "network":"194.53.160.0\/25", + "version":53061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.160.0", + "prefixLen":25, + "network":"194.53.160.0\/25", + "version":53061, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.160.128", + "prefixLen":25, + "network":"194.53.160.128\/25", + "version":53060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.160.128", + "prefixLen":25, + "network":"194.53.160.128\/25", + "version":53060, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.161.0", + "prefixLen":25, + "network":"194.53.161.0\/25", + "version":53059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.161.0", + "prefixLen":25, + "network":"194.53.161.0\/25", + "version":53059, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.161.128", + "prefixLen":25, + "network":"194.53.161.128\/25", + "version":53058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.161.128", + "prefixLen":25, + "network":"194.53.161.128\/25", + "version":53058, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.162.0", + "prefixLen":25, + "network":"194.53.162.0\/25", + "version":53057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.162.0", + "prefixLen":25, + "network":"194.53.162.0\/25", + "version":53057, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.162.128", + "prefixLen":25, + "network":"194.53.162.128\/25", + "version":53056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.162.128", + "prefixLen":25, + "network":"194.53.162.128\/25", + "version":53056, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.163.0", + "prefixLen":25, + "network":"194.53.163.0\/25", + "version":53055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.163.0", + "prefixLen":25, + "network":"194.53.163.0\/25", + "version":53055, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.163.128", + "prefixLen":25, + "network":"194.53.163.128\/25", + "version":53054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.163.128", + "prefixLen":25, + "network":"194.53.163.128\/25", + "version":53054, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.176.0", + "prefixLen":25, + "network":"194.53.176.0\/25", + "version":53053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.176.0", + "prefixLen":25, + "network":"194.53.176.0\/25", + "version":53053, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.176.128", + "prefixLen":25, + "network":"194.53.176.128\/25", + "version":53052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.176.128", + "prefixLen":25, + "network":"194.53.176.128\/25", + "version":53052, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.177.0", + "prefixLen":25, + "network":"194.53.177.0\/25", + "version":53051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.177.0", + "prefixLen":25, + "network":"194.53.177.0\/25", + "version":53051, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.177.128", + "prefixLen":25, + "network":"194.53.177.128\/25", + "version":53050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.177.128", + "prefixLen":25, + "network":"194.53.177.128\/25", + "version":53050, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.178.0", + "prefixLen":25, + "network":"194.53.178.0\/25", + "version":53049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.178.0", + "prefixLen":25, + "network":"194.53.178.0\/25", + "version":53049, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.178.128", + "prefixLen":25, + "network":"194.53.178.128\/25", + "version":53048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.178.128", + "prefixLen":25, + "network":"194.53.178.128\/25", + "version":53048, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.179.0", + "prefixLen":25, + "network":"194.53.179.0\/25", + "version":53047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.179.0", + "prefixLen":25, + "network":"194.53.179.0\/25", + "version":53047, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.179.128", + "prefixLen":25, + "network":"194.53.179.128\/25", + "version":53046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.179.128", + "prefixLen":25, + "network":"194.53.179.128\/25", + "version":53046, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.192.0", + "prefixLen":25, + "network":"194.53.192.0\/25", + "version":53045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.192.0", + "prefixLen":25, + "network":"194.53.192.0\/25", + "version":53045, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.192.128", + "prefixLen":25, + "network":"194.53.192.128\/25", + "version":53044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.192.128", + "prefixLen":25, + "network":"194.53.192.128\/25", + "version":53044, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.193.0", + "prefixLen":25, + "network":"194.53.193.0\/25", + "version":53043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.193.0", + "prefixLen":25, + "network":"194.53.193.0\/25", + "version":53043, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.193.128", + "prefixLen":25, + "network":"194.53.193.128\/25", + "version":53042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.193.128", + "prefixLen":25, + "network":"194.53.193.128\/25", + "version":53042, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.194.0", + "prefixLen":25, + "network":"194.53.194.0\/25", + "version":53041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.194.0", + "prefixLen":25, + "network":"194.53.194.0\/25", + "version":53041, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.194.128", + "prefixLen":25, + "network":"194.53.194.128\/25", + "version":53040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.194.128", + "prefixLen":25, + "network":"194.53.194.128\/25", + "version":53040, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.195.0", + "prefixLen":25, + "network":"194.53.195.0\/25", + "version":53039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.195.0", + "prefixLen":25, + "network":"194.53.195.0\/25", + "version":53039, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.195.128", + "prefixLen":25, + "network":"194.53.195.128\/25", + "version":53038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.195.128", + "prefixLen":25, + "network":"194.53.195.128\/25", + "version":53038, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.208.0", + "prefixLen":25, + "network":"194.53.208.0\/25", + "version":53037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.208.0", + "prefixLen":25, + "network":"194.53.208.0\/25", + "version":53037, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.208.128", + "prefixLen":25, + "network":"194.53.208.128\/25", + "version":53036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.208.128", + "prefixLen":25, + "network":"194.53.208.128\/25", + "version":53036, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.209.0", + "prefixLen":25, + "network":"194.53.209.0\/25", + "version":53035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.209.0", + "prefixLen":25, + "network":"194.53.209.0\/25", + "version":53035, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.209.128", + "prefixLen":25, + "network":"194.53.209.128\/25", + "version":53034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.209.128", + "prefixLen":25, + "network":"194.53.209.128\/25", + "version":53034, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.210.0", + "prefixLen":25, + "network":"194.53.210.0\/25", + "version":53033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.210.0", + "prefixLen":25, + "network":"194.53.210.0\/25", + "version":53033, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.210.128", + "prefixLen":25, + "network":"194.53.210.128\/25", + "version":53032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.210.128", + "prefixLen":25, + "network":"194.53.210.128\/25", + "version":53032, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.211.0", + "prefixLen":25, + "network":"194.53.211.0\/25", + "version":53031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.211.0", + "prefixLen":25, + "network":"194.53.211.0\/25", + "version":53031, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.211.128", + "prefixLen":25, + "network":"194.53.211.128\/25", + "version":53030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.211.128", + "prefixLen":25, + "network":"194.53.211.128\/25", + "version":53030, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.224.0", + "prefixLen":25, + "network":"194.53.224.0\/25", + "version":53029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.224.0", + "prefixLen":25, + "network":"194.53.224.0\/25", + "version":53029, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.224.128", + "prefixLen":25, + "network":"194.53.224.128\/25", + "version":53028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.224.128", + "prefixLen":25, + "network":"194.53.224.128\/25", + "version":53028, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.225.0", + "prefixLen":25, + "network":"194.53.225.0\/25", + "version":53027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.225.0", + "prefixLen":25, + "network":"194.53.225.0\/25", + "version":53027, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.225.128", + "prefixLen":25, + "network":"194.53.225.128\/25", + "version":53026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.225.128", + "prefixLen":25, + "network":"194.53.225.128\/25", + "version":53026, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.226.0", + "prefixLen":25, + "network":"194.53.226.0\/25", + "version":53025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.226.0", + "prefixLen":25, + "network":"194.53.226.0\/25", + "version":53025, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.226.128", + "prefixLen":25, + "network":"194.53.226.128\/25", + "version":53024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.226.128", + "prefixLen":25, + "network":"194.53.226.128\/25", + "version":53024, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.227.0", + "prefixLen":25, + "network":"194.53.227.0\/25", + "version":53023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.227.0", + "prefixLen":25, + "network":"194.53.227.0\/25", + "version":53023, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.227.128", + "prefixLen":25, + "network":"194.53.227.128\/25", + "version":53022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.227.128", + "prefixLen":25, + "network":"194.53.227.128\/25", + "version":53022, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.240.0", + "prefixLen":25, + "network":"194.53.240.0\/25", + "version":53021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.240.0", + "prefixLen":25, + "network":"194.53.240.0\/25", + "version":53021, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.240.128", + "prefixLen":25, + "network":"194.53.240.128\/25", + "version":53020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.240.128", + "prefixLen":25, + "network":"194.53.240.128\/25", + "version":53020, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.241.0", + "prefixLen":25, + "network":"194.53.241.0\/25", + "version":53019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.241.0", + "prefixLen":25, + "network":"194.53.241.0\/25", + "version":53019, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.241.128", + "prefixLen":25, + "network":"194.53.241.128\/25", + "version":53018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.241.128", + "prefixLen":25, + "network":"194.53.241.128\/25", + "version":53018, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.242.0", + "prefixLen":25, + "network":"194.53.242.0\/25", + "version":53017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.242.0", + "prefixLen":25, + "network":"194.53.242.0\/25", + "version":53017, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.242.128", + "prefixLen":25, + "network":"194.53.242.128\/25", + "version":53016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.242.128", + "prefixLen":25, + "network":"194.53.242.128\/25", + "version":53016, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.243.0", + "prefixLen":25, + "network":"194.53.243.0\/25", + "version":53015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.243.0", + "prefixLen":25, + "network":"194.53.243.0\/25", + "version":53015, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.53.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.53.243.128", + "prefixLen":25, + "network":"194.53.243.128\/25", + "version":53014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.53.243.128", + "prefixLen":25, + "network":"194.53.243.128\/25", + "version":53014, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64997 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.0.0", + "prefixLen":25, + "network":"194.54.0.0\/25", + "version":53141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.0.0", + "prefixLen":25, + "network":"194.54.0.0\/25", + "version":53141, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.0.128", + "prefixLen":25, + "network":"194.54.0.128\/25", + "version":53268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.0.128", + "prefixLen":25, + "network":"194.54.0.128\/25", + "version":53268, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.1.0", + "prefixLen":25, + "network":"194.54.1.0\/25", + "version":53267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.1.0", + "prefixLen":25, + "network":"194.54.1.0\/25", + "version":53267, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.1.128", + "prefixLen":25, + "network":"194.54.1.128\/25", + "version":53266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.1.128", + "prefixLen":25, + "network":"194.54.1.128\/25", + "version":53266, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.2.0", + "prefixLen":25, + "network":"194.54.2.0\/25", + "version":53265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.2.0", + "prefixLen":25, + "network":"194.54.2.0\/25", + "version":53265, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.2.128", + "prefixLen":25, + "network":"194.54.2.128\/25", + "version":53264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.2.128", + "prefixLen":25, + "network":"194.54.2.128\/25", + "version":53264, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.3.0", + "prefixLen":25, + "network":"194.54.3.0\/25", + "version":53263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.3.0", + "prefixLen":25, + "network":"194.54.3.0\/25", + "version":53263, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.3.128", + "prefixLen":25, + "network":"194.54.3.128\/25", + "version":53262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.3.128", + "prefixLen":25, + "network":"194.54.3.128\/25", + "version":53262, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.16.0", + "prefixLen":25, + "network":"194.54.16.0\/25", + "version":53261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.16.0", + "prefixLen":25, + "network":"194.54.16.0\/25", + "version":53261, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.16.128", + "prefixLen":25, + "network":"194.54.16.128\/25", + "version":53260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.16.128", + "prefixLen":25, + "network":"194.54.16.128\/25", + "version":53260, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.17.0", + "prefixLen":25, + "network":"194.54.17.0\/25", + "version":53259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.17.0", + "prefixLen":25, + "network":"194.54.17.0\/25", + "version":53259, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.17.128", + "prefixLen":25, + "network":"194.54.17.128\/25", + "version":53258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.17.128", + "prefixLen":25, + "network":"194.54.17.128\/25", + "version":53258, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.18.0", + "prefixLen":25, + "network":"194.54.18.0\/25", + "version":53257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.18.0", + "prefixLen":25, + "network":"194.54.18.0\/25", + "version":53257, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.18.128", + "prefixLen":25, + "network":"194.54.18.128\/25", + "version":53256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.18.128", + "prefixLen":25, + "network":"194.54.18.128\/25", + "version":53256, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.19.0", + "prefixLen":25, + "network":"194.54.19.0\/25", + "version":53255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.19.0", + "prefixLen":25, + "network":"194.54.19.0\/25", + "version":53255, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.19.128", + "prefixLen":25, + "network":"194.54.19.128\/25", + "version":53254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.19.128", + "prefixLen":25, + "network":"194.54.19.128\/25", + "version":53254, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.32.0", + "prefixLen":25, + "network":"194.54.32.0\/25", + "version":53253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.32.0", + "prefixLen":25, + "network":"194.54.32.0\/25", + "version":53253, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.32.128", + "prefixLen":25, + "network":"194.54.32.128\/25", + "version":53252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.32.128", + "prefixLen":25, + "network":"194.54.32.128\/25", + "version":53252, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.33.0", + "prefixLen":25, + "network":"194.54.33.0\/25", + "version":53251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.33.0", + "prefixLen":25, + "network":"194.54.33.0\/25", + "version":53251, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.33.128", + "prefixLen":25, + "network":"194.54.33.128\/25", + "version":53250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.33.128", + "prefixLen":25, + "network":"194.54.33.128\/25", + "version":53250, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.34.0", + "prefixLen":25, + "network":"194.54.34.0\/25", + "version":53249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.34.0", + "prefixLen":25, + "network":"194.54.34.0\/25", + "version":53249, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.34.128", + "prefixLen":25, + "network":"194.54.34.128\/25", + "version":53248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.34.128", + "prefixLen":25, + "network":"194.54.34.128\/25", + "version":53248, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.35.0", + "prefixLen":25, + "network":"194.54.35.0\/25", + "version":53247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.35.0", + "prefixLen":25, + "network":"194.54.35.0\/25", + "version":53247, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.35.128", + "prefixLen":25, + "network":"194.54.35.128\/25", + "version":53246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.35.128", + "prefixLen":25, + "network":"194.54.35.128\/25", + "version":53246, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.48.0", + "prefixLen":25, + "network":"194.54.48.0\/25", + "version":53245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.48.0", + "prefixLen":25, + "network":"194.54.48.0\/25", + "version":53245, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.48.128", + "prefixLen":25, + "network":"194.54.48.128\/25", + "version":53244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.48.128", + "prefixLen":25, + "network":"194.54.48.128\/25", + "version":53244, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.49.0", + "prefixLen":25, + "network":"194.54.49.0\/25", + "version":53243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.49.0", + "prefixLen":25, + "network":"194.54.49.0\/25", + "version":53243, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.49.128", + "prefixLen":25, + "network":"194.54.49.128\/25", + "version":53242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.49.128", + "prefixLen":25, + "network":"194.54.49.128\/25", + "version":53242, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.50.0", + "prefixLen":25, + "network":"194.54.50.0\/25", + "version":53241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.50.0", + "prefixLen":25, + "network":"194.54.50.0\/25", + "version":53241, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.50.128", + "prefixLen":25, + "network":"194.54.50.128\/25", + "version":53240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.50.128", + "prefixLen":25, + "network":"194.54.50.128\/25", + "version":53240, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.51.0", + "prefixLen":25, + "network":"194.54.51.0\/25", + "version":53239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.51.0", + "prefixLen":25, + "network":"194.54.51.0\/25", + "version":53239, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.51.128", + "prefixLen":25, + "network":"194.54.51.128\/25", + "version":53238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.51.128", + "prefixLen":25, + "network":"194.54.51.128\/25", + "version":53238, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.64.0", + "prefixLen":25, + "network":"194.54.64.0\/25", + "version":53237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.64.0", + "prefixLen":25, + "network":"194.54.64.0\/25", + "version":53237, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.64.128", + "prefixLen":25, + "network":"194.54.64.128\/25", + "version":53236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.64.128", + "prefixLen":25, + "network":"194.54.64.128\/25", + "version":53236, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.65.0", + "prefixLen":25, + "network":"194.54.65.0\/25", + "version":53235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.65.0", + "prefixLen":25, + "network":"194.54.65.0\/25", + "version":53235, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.65.128", + "prefixLen":25, + "network":"194.54.65.128\/25", + "version":53234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.65.128", + "prefixLen":25, + "network":"194.54.65.128\/25", + "version":53234, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.66.0", + "prefixLen":25, + "network":"194.54.66.0\/25", + "version":53233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.66.0", + "prefixLen":25, + "network":"194.54.66.0\/25", + "version":53233, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.66.128", + "prefixLen":25, + "network":"194.54.66.128\/25", + "version":53232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.66.128", + "prefixLen":25, + "network":"194.54.66.128\/25", + "version":53232, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.67.0", + "prefixLen":25, + "network":"194.54.67.0\/25", + "version":53231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.67.0", + "prefixLen":25, + "network":"194.54.67.0\/25", + "version":53231, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.67.128", + "prefixLen":25, + "network":"194.54.67.128\/25", + "version":53230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.67.128", + "prefixLen":25, + "network":"194.54.67.128\/25", + "version":53230, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.80.0", + "prefixLen":25, + "network":"194.54.80.0\/25", + "version":53229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.80.0", + "prefixLen":25, + "network":"194.54.80.0\/25", + "version":53229, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.80.128", + "prefixLen":25, + "network":"194.54.80.128\/25", + "version":53228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.80.128", + "prefixLen":25, + "network":"194.54.80.128\/25", + "version":53228, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.81.0", + "prefixLen":25, + "network":"194.54.81.0\/25", + "version":53227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.81.0", + "prefixLen":25, + "network":"194.54.81.0\/25", + "version":53227, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.81.128", + "prefixLen":25, + "network":"194.54.81.128\/25", + "version":53226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.81.128", + "prefixLen":25, + "network":"194.54.81.128\/25", + "version":53226, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.82.0", + "prefixLen":25, + "network":"194.54.82.0\/25", + "version":53225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.82.0", + "prefixLen":25, + "network":"194.54.82.0\/25", + "version":53225, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.82.128", + "prefixLen":25, + "network":"194.54.82.128\/25", + "version":53224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.82.128", + "prefixLen":25, + "network":"194.54.82.128\/25", + "version":53224, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.83.0", + "prefixLen":25, + "network":"194.54.83.0\/25", + "version":53223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.83.0", + "prefixLen":25, + "network":"194.54.83.0\/25", + "version":53223, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.83.128", + "prefixLen":25, + "network":"194.54.83.128\/25", + "version":53222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.83.128", + "prefixLen":25, + "network":"194.54.83.128\/25", + "version":53222, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.96.0", + "prefixLen":25, + "network":"194.54.96.0\/25", + "version":53221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.96.0", + "prefixLen":25, + "network":"194.54.96.0\/25", + "version":53221, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.96.128", + "prefixLen":25, + "network":"194.54.96.128\/25", + "version":53220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.96.128", + "prefixLen":25, + "network":"194.54.96.128\/25", + "version":53220, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.97.0", + "prefixLen":25, + "network":"194.54.97.0\/25", + "version":53219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.97.0", + "prefixLen":25, + "network":"194.54.97.0\/25", + "version":53219, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.97.128", + "prefixLen":25, + "network":"194.54.97.128\/25", + "version":53218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.97.128", + "prefixLen":25, + "network":"194.54.97.128\/25", + "version":53218, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.98.0", + "prefixLen":25, + "network":"194.54.98.0\/25", + "version":53217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.98.0", + "prefixLen":25, + "network":"194.54.98.0\/25", + "version":53217, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.98.128", + "prefixLen":25, + "network":"194.54.98.128\/25", + "version":53216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.98.128", + "prefixLen":25, + "network":"194.54.98.128\/25", + "version":53216, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.99.0", + "prefixLen":25, + "network":"194.54.99.0\/25", + "version":53215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.99.0", + "prefixLen":25, + "network":"194.54.99.0\/25", + "version":53215, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.99.128", + "prefixLen":25, + "network":"194.54.99.128\/25", + "version":53214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.99.128", + "prefixLen":25, + "network":"194.54.99.128\/25", + "version":53214, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.112.0", + "prefixLen":25, + "network":"194.54.112.0\/25", + "version":53213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.112.0", + "prefixLen":25, + "network":"194.54.112.0\/25", + "version":53213, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.112.128", + "prefixLen":25, + "network":"194.54.112.128\/25", + "version":53212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.112.128", + "prefixLen":25, + "network":"194.54.112.128\/25", + "version":53212, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.113.0", + "prefixLen":25, + "network":"194.54.113.0\/25", + "version":53211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.113.0", + "prefixLen":25, + "network":"194.54.113.0\/25", + "version":53211, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.113.128", + "prefixLen":25, + "network":"194.54.113.128\/25", + "version":53210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.113.128", + "prefixLen":25, + "network":"194.54.113.128\/25", + "version":53210, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.114.0", + "prefixLen":25, + "network":"194.54.114.0\/25", + "version":53209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.114.0", + "prefixLen":25, + "network":"194.54.114.0\/25", + "version":53209, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.114.128", + "prefixLen":25, + "network":"194.54.114.128\/25", + "version":53208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.114.128", + "prefixLen":25, + "network":"194.54.114.128\/25", + "version":53208, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.115.0", + "prefixLen":25, + "network":"194.54.115.0\/25", + "version":53207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.115.0", + "prefixLen":25, + "network":"194.54.115.0\/25", + "version":53207, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.115.128", + "prefixLen":25, + "network":"194.54.115.128\/25", + "version":53206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.115.128", + "prefixLen":25, + "network":"194.54.115.128\/25", + "version":53206, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.128.0", + "prefixLen":25, + "network":"194.54.128.0\/25", + "version":53205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.128.0", + "prefixLen":25, + "network":"194.54.128.0\/25", + "version":53205, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.128.128", + "prefixLen":25, + "network":"194.54.128.128\/25", + "version":53204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.128.128", + "prefixLen":25, + "network":"194.54.128.128\/25", + "version":53204, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.129.0", + "prefixLen":25, + "network":"194.54.129.0\/25", + "version":53203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.129.0", + "prefixLen":25, + "network":"194.54.129.0\/25", + "version":53203, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.129.128", + "prefixLen":25, + "network":"194.54.129.128\/25", + "version":53202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.129.128", + "prefixLen":25, + "network":"194.54.129.128\/25", + "version":53202, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.130.0", + "prefixLen":25, + "network":"194.54.130.0\/25", + "version":53201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.130.0", + "prefixLen":25, + "network":"194.54.130.0\/25", + "version":53201, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.130.128", + "prefixLen":25, + "network":"194.54.130.128\/25", + "version":53200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.130.128", + "prefixLen":25, + "network":"194.54.130.128\/25", + "version":53200, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.131.0", + "prefixLen":25, + "network":"194.54.131.0\/25", + "version":53199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.131.0", + "prefixLen":25, + "network":"194.54.131.0\/25", + "version":53199, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.131.128", + "prefixLen":25, + "network":"194.54.131.128\/25", + "version":53198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.131.128", + "prefixLen":25, + "network":"194.54.131.128\/25", + "version":53198, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.144.0", + "prefixLen":25, + "network":"194.54.144.0\/25", + "version":53197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.144.0", + "prefixLen":25, + "network":"194.54.144.0\/25", + "version":53197, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.144.128", + "prefixLen":25, + "network":"194.54.144.128\/25", + "version":53196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.144.128", + "prefixLen":25, + "network":"194.54.144.128\/25", + "version":53196, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.145.0", + "prefixLen":25, + "network":"194.54.145.0\/25", + "version":53195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.145.0", + "prefixLen":25, + "network":"194.54.145.0\/25", + "version":53195, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.145.128", + "prefixLen":25, + "network":"194.54.145.128\/25", + "version":53194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.145.128", + "prefixLen":25, + "network":"194.54.145.128\/25", + "version":53194, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.146.0", + "prefixLen":25, + "network":"194.54.146.0\/25", + "version":53193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.146.0", + "prefixLen":25, + "network":"194.54.146.0\/25", + "version":53193, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.146.128", + "prefixLen":25, + "network":"194.54.146.128\/25", + "version":53192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.146.128", + "prefixLen":25, + "network":"194.54.146.128\/25", + "version":53192, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.147.0", + "prefixLen":25, + "network":"194.54.147.0\/25", + "version":53191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.147.0", + "prefixLen":25, + "network":"194.54.147.0\/25", + "version":53191, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.147.128", + "prefixLen":25, + "network":"194.54.147.128\/25", + "version":53190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.147.128", + "prefixLen":25, + "network":"194.54.147.128\/25", + "version":53190, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.160.0", + "prefixLen":25, + "network":"194.54.160.0\/25", + "version":53189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.160.0", + "prefixLen":25, + "network":"194.54.160.0\/25", + "version":53189, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.160.128", + "prefixLen":25, + "network":"194.54.160.128\/25", + "version":53188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.160.128", + "prefixLen":25, + "network":"194.54.160.128\/25", + "version":53188, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.161.0", + "prefixLen":25, + "network":"194.54.161.0\/25", + "version":53187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.161.0", + "prefixLen":25, + "network":"194.54.161.0\/25", + "version":53187, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.161.128", + "prefixLen":25, + "network":"194.54.161.128\/25", + "version":53186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.161.128", + "prefixLen":25, + "network":"194.54.161.128\/25", + "version":53186, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.162.0", + "prefixLen":25, + "network":"194.54.162.0\/25", + "version":53185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.162.0", + "prefixLen":25, + "network":"194.54.162.0\/25", + "version":53185, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.162.128", + "prefixLen":25, + "network":"194.54.162.128\/25", + "version":53184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.162.128", + "prefixLen":25, + "network":"194.54.162.128\/25", + "version":53184, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.163.0", + "prefixLen":25, + "network":"194.54.163.0\/25", + "version":53183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.163.0", + "prefixLen":25, + "network":"194.54.163.0\/25", + "version":53183, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.163.128", + "prefixLen":25, + "network":"194.54.163.128\/25", + "version":53182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.163.128", + "prefixLen":25, + "network":"194.54.163.128\/25", + "version":53182, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.176.0", + "prefixLen":25, + "network":"194.54.176.0\/25", + "version":53181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.176.0", + "prefixLen":25, + "network":"194.54.176.0\/25", + "version":53181, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.176.128", + "prefixLen":25, + "network":"194.54.176.128\/25", + "version":53180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.176.128", + "prefixLen":25, + "network":"194.54.176.128\/25", + "version":53180, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.177.0", + "prefixLen":25, + "network":"194.54.177.0\/25", + "version":53179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.177.0", + "prefixLen":25, + "network":"194.54.177.0\/25", + "version":53179, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.177.128", + "prefixLen":25, + "network":"194.54.177.128\/25", + "version":53178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.177.128", + "prefixLen":25, + "network":"194.54.177.128\/25", + "version":53178, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.178.0", + "prefixLen":25, + "network":"194.54.178.0\/25", + "version":53177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.178.0", + "prefixLen":25, + "network":"194.54.178.0\/25", + "version":53177, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.178.128", + "prefixLen":25, + "network":"194.54.178.128\/25", + "version":53176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.178.128", + "prefixLen":25, + "network":"194.54.178.128\/25", + "version":53176, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.179.0", + "prefixLen":25, + "network":"194.54.179.0\/25", + "version":53175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.179.0", + "prefixLen":25, + "network":"194.54.179.0\/25", + "version":53175, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.179.128", + "prefixLen":25, + "network":"194.54.179.128\/25", + "version":53174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.179.128", + "prefixLen":25, + "network":"194.54.179.128\/25", + "version":53174, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.192.0", + "prefixLen":25, + "network":"194.54.192.0\/25", + "version":53173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.192.0", + "prefixLen":25, + "network":"194.54.192.0\/25", + "version":53173, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.192.128", + "prefixLen":25, + "network":"194.54.192.128\/25", + "version":53172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.192.128", + "prefixLen":25, + "network":"194.54.192.128\/25", + "version":53172, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.193.0", + "prefixLen":25, + "network":"194.54.193.0\/25", + "version":53171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.193.0", + "prefixLen":25, + "network":"194.54.193.0\/25", + "version":53171, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.193.128", + "prefixLen":25, + "network":"194.54.193.128\/25", + "version":53170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.193.128", + "prefixLen":25, + "network":"194.54.193.128\/25", + "version":53170, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.194.0", + "prefixLen":25, + "network":"194.54.194.0\/25", + "version":53169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.194.0", + "prefixLen":25, + "network":"194.54.194.0\/25", + "version":53169, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.194.128", + "prefixLen":25, + "network":"194.54.194.128\/25", + "version":53168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.194.128", + "prefixLen":25, + "network":"194.54.194.128\/25", + "version":53168, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.195.0", + "prefixLen":25, + "network":"194.54.195.0\/25", + "version":53167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.195.0", + "prefixLen":25, + "network":"194.54.195.0\/25", + "version":53167, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.195.128", + "prefixLen":25, + "network":"194.54.195.128\/25", + "version":53166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.195.128", + "prefixLen":25, + "network":"194.54.195.128\/25", + "version":53166, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.208.0", + "prefixLen":25, + "network":"194.54.208.0\/25", + "version":53165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.208.0", + "prefixLen":25, + "network":"194.54.208.0\/25", + "version":53165, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.208.128", + "prefixLen":25, + "network":"194.54.208.128\/25", + "version":53164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.208.128", + "prefixLen":25, + "network":"194.54.208.128\/25", + "version":53164, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.209.0", + "prefixLen":25, + "network":"194.54.209.0\/25", + "version":53163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.209.0", + "prefixLen":25, + "network":"194.54.209.0\/25", + "version":53163, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.209.128", + "prefixLen":25, + "network":"194.54.209.128\/25", + "version":53162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.209.128", + "prefixLen":25, + "network":"194.54.209.128\/25", + "version":53162, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.210.0", + "prefixLen":25, + "network":"194.54.210.0\/25", + "version":53161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.210.0", + "prefixLen":25, + "network":"194.54.210.0\/25", + "version":53161, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.210.128", + "prefixLen":25, + "network":"194.54.210.128\/25", + "version":53160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.210.128", + "prefixLen":25, + "network":"194.54.210.128\/25", + "version":53160, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.211.0", + "prefixLen":25, + "network":"194.54.211.0\/25", + "version":53159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.211.0", + "prefixLen":25, + "network":"194.54.211.0\/25", + "version":53159, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.211.128", + "prefixLen":25, + "network":"194.54.211.128\/25", + "version":53158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.211.128", + "prefixLen":25, + "network":"194.54.211.128\/25", + "version":53158, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.224.0", + "prefixLen":25, + "network":"194.54.224.0\/25", + "version":53157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.224.0", + "prefixLen":25, + "network":"194.54.224.0\/25", + "version":53157, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.224.128", + "prefixLen":25, + "network":"194.54.224.128\/25", + "version":53156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.224.128", + "prefixLen":25, + "network":"194.54.224.128\/25", + "version":53156, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.225.0", + "prefixLen":25, + "network":"194.54.225.0\/25", + "version":53155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.225.0", + "prefixLen":25, + "network":"194.54.225.0\/25", + "version":53155, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.225.128", + "prefixLen":25, + "network":"194.54.225.128\/25", + "version":53154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.225.128", + "prefixLen":25, + "network":"194.54.225.128\/25", + "version":53154, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.226.0", + "prefixLen":25, + "network":"194.54.226.0\/25", + "version":53153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.226.0", + "prefixLen":25, + "network":"194.54.226.0\/25", + "version":53153, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.226.128", + "prefixLen":25, + "network":"194.54.226.128\/25", + "version":53152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.226.128", + "prefixLen":25, + "network":"194.54.226.128\/25", + "version":53152, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.227.0", + "prefixLen":25, + "network":"194.54.227.0\/25", + "version":53151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.227.0", + "prefixLen":25, + "network":"194.54.227.0\/25", + "version":53151, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.227.128", + "prefixLen":25, + "network":"194.54.227.128\/25", + "version":53150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.227.128", + "prefixLen":25, + "network":"194.54.227.128\/25", + "version":53150, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.240.0", + "prefixLen":25, + "network":"194.54.240.0\/25", + "version":53149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.240.0", + "prefixLen":25, + "network":"194.54.240.0\/25", + "version":53149, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.240.128", + "prefixLen":25, + "network":"194.54.240.128\/25", + "version":53148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.240.128", + "prefixLen":25, + "network":"194.54.240.128\/25", + "version":53148, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.241.0", + "prefixLen":25, + "network":"194.54.241.0\/25", + "version":53147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.241.0", + "prefixLen":25, + "network":"194.54.241.0\/25", + "version":53147, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.241.128", + "prefixLen":25, + "network":"194.54.241.128\/25", + "version":53146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.241.128", + "prefixLen":25, + "network":"194.54.241.128\/25", + "version":53146, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.242.0", + "prefixLen":25, + "network":"194.54.242.0\/25", + "version":53145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.242.0", + "prefixLen":25, + "network":"194.54.242.0\/25", + "version":53145, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.242.128", + "prefixLen":25, + "network":"194.54.242.128\/25", + "version":53144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.242.128", + "prefixLen":25, + "network":"194.54.242.128\/25", + "version":53144, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.243.0", + "prefixLen":25, + "network":"194.54.243.0\/25", + "version":53143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.243.0", + "prefixLen":25, + "network":"194.54.243.0\/25", + "version":53143, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.54.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.54.243.128", + "prefixLen":25, + "network":"194.54.243.128\/25", + "version":53142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.54.243.128", + "prefixLen":25, + "network":"194.54.243.128\/25", + "version":53142, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64998 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.0.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.0.0", + "prefixLen":25, + "network":"194.55.0.0\/25", + "version":54549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.0.0", + "prefixLen":25, + "network":"194.55.0.0\/25", + "version":54549, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.0.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.0.128", + "prefixLen":25, + "network":"194.55.0.128\/25", + "version":54676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.0.128", + "prefixLen":25, + "network":"194.55.0.128\/25", + "version":54676, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.1.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.1.0", + "prefixLen":25, + "network":"194.55.1.0\/25", + "version":54675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.1.0", + "prefixLen":25, + "network":"194.55.1.0\/25", + "version":54675, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.1.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.1.128", + "prefixLen":25, + "network":"194.55.1.128\/25", + "version":54674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.1.128", + "prefixLen":25, + "network":"194.55.1.128\/25", + "version":54674, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.2.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.2.0", + "prefixLen":25, + "network":"194.55.2.0\/25", + "version":54673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.2.0", + "prefixLen":25, + "network":"194.55.2.0\/25", + "version":54673, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.2.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.2.128", + "prefixLen":25, + "network":"194.55.2.128\/25", + "version":54672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.2.128", + "prefixLen":25, + "network":"194.55.2.128\/25", + "version":54672, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.3.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.3.0", + "prefixLen":25, + "network":"194.55.3.0\/25", + "version":54671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.3.0", + "prefixLen":25, + "network":"194.55.3.0\/25", + "version":54671, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.3.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.3.128", + "prefixLen":25, + "network":"194.55.3.128\/25", + "version":54670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.3.128", + "prefixLen":25, + "network":"194.55.3.128\/25", + "version":54670, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.16.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.16.0", + "prefixLen":25, + "network":"194.55.16.0\/25", + "version":54669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.16.0", + "prefixLen":25, + "network":"194.55.16.0\/25", + "version":54669, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.16.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.16.128", + "prefixLen":25, + "network":"194.55.16.128\/25", + "version":54668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.16.128", + "prefixLen":25, + "network":"194.55.16.128\/25", + "version":54668, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.17.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.17.0", + "prefixLen":25, + "network":"194.55.17.0\/25", + "version":54667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.17.0", + "prefixLen":25, + "network":"194.55.17.0\/25", + "version":54667, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.17.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.17.128", + "prefixLen":25, + "network":"194.55.17.128\/25", + "version":54666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.17.128", + "prefixLen":25, + "network":"194.55.17.128\/25", + "version":54666, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.18.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.18.0", + "prefixLen":25, + "network":"194.55.18.0\/25", + "version":54665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.18.0", + "prefixLen":25, + "network":"194.55.18.0\/25", + "version":54665, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.18.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.18.128", + "prefixLen":25, + "network":"194.55.18.128\/25", + "version":54664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.18.128", + "prefixLen":25, + "network":"194.55.18.128\/25", + "version":54664, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.19.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.19.0", + "prefixLen":25, + "network":"194.55.19.0\/25", + "version":54663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.19.0", + "prefixLen":25, + "network":"194.55.19.0\/25", + "version":54663, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.19.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.19.128", + "prefixLen":25, + "network":"194.55.19.128\/25", + "version":54662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.19.128", + "prefixLen":25, + "network":"194.55.19.128\/25", + "version":54662, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.32.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.32.0", + "prefixLen":25, + "network":"194.55.32.0\/25", + "version":54661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.32.0", + "prefixLen":25, + "network":"194.55.32.0\/25", + "version":54661, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.32.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.32.128", + "prefixLen":25, + "network":"194.55.32.128\/25", + "version":54660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.32.128", + "prefixLen":25, + "network":"194.55.32.128\/25", + "version":54660, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.33.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.33.0", + "prefixLen":25, + "network":"194.55.33.0\/25", + "version":54659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.33.0", + "prefixLen":25, + "network":"194.55.33.0\/25", + "version":54659, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.33.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.33.128", + "prefixLen":25, + "network":"194.55.33.128\/25", + "version":54658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.33.128", + "prefixLen":25, + "network":"194.55.33.128\/25", + "version":54658, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.34.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.34.0", + "prefixLen":25, + "network":"194.55.34.0\/25", + "version":54657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.34.0", + "prefixLen":25, + "network":"194.55.34.0\/25", + "version":54657, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.34.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.34.128", + "prefixLen":25, + "network":"194.55.34.128\/25", + "version":54656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.34.128", + "prefixLen":25, + "network":"194.55.34.128\/25", + "version":54656, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.35.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.35.0", + "prefixLen":25, + "network":"194.55.35.0\/25", + "version":54655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.35.0", + "prefixLen":25, + "network":"194.55.35.0\/25", + "version":54655, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.35.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.35.128", + "prefixLen":25, + "network":"194.55.35.128\/25", + "version":54654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.35.128", + "prefixLen":25, + "network":"194.55.35.128\/25", + "version":54654, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.48.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.48.0", + "prefixLen":25, + "network":"194.55.48.0\/25", + "version":54653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.48.0", + "prefixLen":25, + "network":"194.55.48.0\/25", + "version":54653, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.48.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.48.128", + "prefixLen":25, + "network":"194.55.48.128\/25", + "version":54652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.48.128", + "prefixLen":25, + "network":"194.55.48.128\/25", + "version":54652, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.49.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.49.0", + "prefixLen":25, + "network":"194.55.49.0\/25", + "version":54651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.49.0", + "prefixLen":25, + "network":"194.55.49.0\/25", + "version":54651, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.49.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.49.128", + "prefixLen":25, + "network":"194.55.49.128\/25", + "version":54650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.49.128", + "prefixLen":25, + "network":"194.55.49.128\/25", + "version":54650, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.50.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.50.0", + "prefixLen":25, + "network":"194.55.50.0\/25", + "version":54649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.50.0", + "prefixLen":25, + "network":"194.55.50.0\/25", + "version":54649, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.50.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.50.128", + "prefixLen":25, + "network":"194.55.50.128\/25", + "version":54648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.50.128", + "prefixLen":25, + "network":"194.55.50.128\/25", + "version":54648, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.51.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.51.0", + "prefixLen":25, + "network":"194.55.51.0\/25", + "version":54647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.51.0", + "prefixLen":25, + "network":"194.55.51.0\/25", + "version":54647, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.51.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.51.128", + "prefixLen":25, + "network":"194.55.51.128\/25", + "version":54646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.51.128", + "prefixLen":25, + "network":"194.55.51.128\/25", + "version":54646, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.64.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.64.0", + "prefixLen":25, + "network":"194.55.64.0\/25", + "version":54645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.64.0", + "prefixLen":25, + "network":"194.55.64.0\/25", + "version":54645, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.64.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.64.128", + "prefixLen":25, + "network":"194.55.64.128\/25", + "version":54644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.64.128", + "prefixLen":25, + "network":"194.55.64.128\/25", + "version":54644, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.65.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.65.0", + "prefixLen":25, + "network":"194.55.65.0\/25", + "version":54643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.65.0", + "prefixLen":25, + "network":"194.55.65.0\/25", + "version":54643, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.65.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.65.128", + "prefixLen":25, + "network":"194.55.65.128\/25", + "version":54642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.65.128", + "prefixLen":25, + "network":"194.55.65.128\/25", + "version":54642, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.66.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.66.0", + "prefixLen":25, + "network":"194.55.66.0\/25", + "version":54641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.66.0", + "prefixLen":25, + "network":"194.55.66.0\/25", + "version":54641, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.66.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.66.128", + "prefixLen":25, + "network":"194.55.66.128\/25", + "version":54640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.66.128", + "prefixLen":25, + "network":"194.55.66.128\/25", + "version":54640, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.67.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.67.0", + "prefixLen":25, + "network":"194.55.67.0\/25", + "version":54639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.67.0", + "prefixLen":25, + "network":"194.55.67.0\/25", + "version":54639, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.67.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.67.128", + "prefixLen":25, + "network":"194.55.67.128\/25", + "version":54638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.67.128", + "prefixLen":25, + "network":"194.55.67.128\/25", + "version":54638, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.80.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.80.0", + "prefixLen":25, + "network":"194.55.80.0\/25", + "version":54637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.80.0", + "prefixLen":25, + "network":"194.55.80.0\/25", + "version":54637, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.80.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.80.128", + "prefixLen":25, + "network":"194.55.80.128\/25", + "version":54636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.80.128", + "prefixLen":25, + "network":"194.55.80.128\/25", + "version":54636, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.81.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.81.0", + "prefixLen":25, + "network":"194.55.81.0\/25", + "version":54635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.81.0", + "prefixLen":25, + "network":"194.55.81.0\/25", + "version":54635, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.81.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.81.128", + "prefixLen":25, + "network":"194.55.81.128\/25", + "version":54634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.81.128", + "prefixLen":25, + "network":"194.55.81.128\/25", + "version":54634, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.82.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.82.0", + "prefixLen":25, + "network":"194.55.82.0\/25", + "version":54633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.82.0", + "prefixLen":25, + "network":"194.55.82.0\/25", + "version":54633, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.82.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.82.128", + "prefixLen":25, + "network":"194.55.82.128\/25", + "version":54632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.82.128", + "prefixLen":25, + "network":"194.55.82.128\/25", + "version":54632, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.83.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.83.0", + "prefixLen":25, + "network":"194.55.83.0\/25", + "version":54631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.83.0", + "prefixLen":25, + "network":"194.55.83.0\/25", + "version":54631, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.83.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.83.128", + "prefixLen":25, + "network":"194.55.83.128\/25", + "version":54630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.83.128", + "prefixLen":25, + "network":"194.55.83.128\/25", + "version":54630, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.96.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.96.0", + "prefixLen":25, + "network":"194.55.96.0\/25", + "version":54629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.96.0", + "prefixLen":25, + "network":"194.55.96.0\/25", + "version":54629, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.96.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.96.128", + "prefixLen":25, + "network":"194.55.96.128\/25", + "version":54628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.96.128", + "prefixLen":25, + "network":"194.55.96.128\/25", + "version":54628, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.97.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.97.0", + "prefixLen":25, + "network":"194.55.97.0\/25", + "version":54627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.97.0", + "prefixLen":25, + "network":"194.55.97.0\/25", + "version":54627, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.97.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.97.128", + "prefixLen":25, + "network":"194.55.97.128\/25", + "version":54626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.97.128", + "prefixLen":25, + "network":"194.55.97.128\/25", + "version":54626, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.98.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.98.0", + "prefixLen":25, + "network":"194.55.98.0\/25", + "version":54625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.98.0", + "prefixLen":25, + "network":"194.55.98.0\/25", + "version":54625, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.98.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.98.128", + "prefixLen":25, + "network":"194.55.98.128\/25", + "version":54624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.98.128", + "prefixLen":25, + "network":"194.55.98.128\/25", + "version":54624, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.99.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.99.0", + "prefixLen":25, + "network":"194.55.99.0\/25", + "version":54623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.99.0", + "prefixLen":25, + "network":"194.55.99.0\/25", + "version":54623, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.99.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.99.128", + "prefixLen":25, + "network":"194.55.99.128\/25", + "version":54622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.99.128", + "prefixLen":25, + "network":"194.55.99.128\/25", + "version":54622, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.112.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.112.0", + "prefixLen":25, + "network":"194.55.112.0\/25", + "version":54621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.112.0", + "prefixLen":25, + "network":"194.55.112.0\/25", + "version":54621, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.112.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.112.128", + "prefixLen":25, + "network":"194.55.112.128\/25", + "version":54620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.112.128", + "prefixLen":25, + "network":"194.55.112.128\/25", + "version":54620, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.113.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.113.0", + "prefixLen":25, + "network":"194.55.113.0\/25", + "version":54619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.113.0", + "prefixLen":25, + "network":"194.55.113.0\/25", + "version":54619, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.113.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.113.128", + "prefixLen":25, + "network":"194.55.113.128\/25", + "version":54618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.113.128", + "prefixLen":25, + "network":"194.55.113.128\/25", + "version":54618, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.114.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.114.0", + "prefixLen":25, + "network":"194.55.114.0\/25", + "version":54617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.114.0", + "prefixLen":25, + "network":"194.55.114.0\/25", + "version":54617, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.114.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.114.128", + "prefixLen":25, + "network":"194.55.114.128\/25", + "version":54616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.114.128", + "prefixLen":25, + "network":"194.55.114.128\/25", + "version":54616, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.115.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.115.0", + "prefixLen":25, + "network":"194.55.115.0\/25", + "version":54615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.115.0", + "prefixLen":25, + "network":"194.55.115.0\/25", + "version":54615, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.115.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.115.128", + "prefixLen":25, + "network":"194.55.115.128\/25", + "version":54614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.115.128", + "prefixLen":25, + "network":"194.55.115.128\/25", + "version":54614, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.128.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.128.0", + "prefixLen":25, + "network":"194.55.128.0\/25", + "version":54613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.128.0", + "prefixLen":25, + "network":"194.55.128.0\/25", + "version":54613, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.128.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.128.128", + "prefixLen":25, + "network":"194.55.128.128\/25", + "version":54612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.128.128", + "prefixLen":25, + "network":"194.55.128.128\/25", + "version":54612, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.129.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.129.0", + "prefixLen":25, + "network":"194.55.129.0\/25", + "version":54611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.129.0", + "prefixLen":25, + "network":"194.55.129.0\/25", + "version":54611, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.129.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.129.128", + "prefixLen":25, + "network":"194.55.129.128\/25", + "version":54610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.129.128", + "prefixLen":25, + "network":"194.55.129.128\/25", + "version":54610, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.130.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.130.0", + "prefixLen":25, + "network":"194.55.130.0\/25", + "version":54609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.130.0", + "prefixLen":25, + "network":"194.55.130.0\/25", + "version":54609, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.130.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.130.128", + "prefixLen":25, + "network":"194.55.130.128\/25", + "version":54608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.130.128", + "prefixLen":25, + "network":"194.55.130.128\/25", + "version":54608, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.131.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.131.0", + "prefixLen":25, + "network":"194.55.131.0\/25", + "version":54607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.131.0", + "prefixLen":25, + "network":"194.55.131.0\/25", + "version":54607, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.131.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.131.128", + "prefixLen":25, + "network":"194.55.131.128\/25", + "version":54606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.131.128", + "prefixLen":25, + "network":"194.55.131.128\/25", + "version":54606, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.144.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.144.0", + "prefixLen":25, + "network":"194.55.144.0\/25", + "version":54605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.144.0", + "prefixLen":25, + "network":"194.55.144.0\/25", + "version":54605, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.144.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.144.128", + "prefixLen":25, + "network":"194.55.144.128\/25", + "version":54604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.144.128", + "prefixLen":25, + "network":"194.55.144.128\/25", + "version":54604, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.145.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.145.0", + "prefixLen":25, + "network":"194.55.145.0\/25", + "version":54603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.145.0", + "prefixLen":25, + "network":"194.55.145.0\/25", + "version":54603, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.145.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.145.128", + "prefixLen":25, + "network":"194.55.145.128\/25", + "version":54602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.145.128", + "prefixLen":25, + "network":"194.55.145.128\/25", + "version":54602, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.146.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.146.0", + "prefixLen":25, + "network":"194.55.146.0\/25", + "version":54601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.146.0", + "prefixLen":25, + "network":"194.55.146.0\/25", + "version":54601, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.146.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.146.128", + "prefixLen":25, + "network":"194.55.146.128\/25", + "version":54600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.146.128", + "prefixLen":25, + "network":"194.55.146.128\/25", + "version":54600, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.147.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.147.0", + "prefixLen":25, + "network":"194.55.147.0\/25", + "version":54599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.147.0", + "prefixLen":25, + "network":"194.55.147.0\/25", + "version":54599, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.147.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.147.128", + "prefixLen":25, + "network":"194.55.147.128\/25", + "version":54598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.147.128", + "prefixLen":25, + "network":"194.55.147.128\/25", + "version":54598, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.160.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.160.0", + "prefixLen":25, + "network":"194.55.160.0\/25", + "version":54597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.160.0", + "prefixLen":25, + "network":"194.55.160.0\/25", + "version":54597, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.160.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.160.128", + "prefixLen":25, + "network":"194.55.160.128\/25", + "version":54596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.160.128", + "prefixLen":25, + "network":"194.55.160.128\/25", + "version":54596, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.161.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.161.0", + "prefixLen":25, + "network":"194.55.161.0\/25", + "version":54595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.161.0", + "prefixLen":25, + "network":"194.55.161.0\/25", + "version":54595, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.161.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.161.128", + "prefixLen":25, + "network":"194.55.161.128\/25", + "version":54594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.161.128", + "prefixLen":25, + "network":"194.55.161.128\/25", + "version":54594, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.162.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.162.0", + "prefixLen":25, + "network":"194.55.162.0\/25", + "version":54593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.162.0", + "prefixLen":25, + "network":"194.55.162.0\/25", + "version":54593, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.162.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.162.128", + "prefixLen":25, + "network":"194.55.162.128\/25", + "version":54592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.162.128", + "prefixLen":25, + "network":"194.55.162.128\/25", + "version":54592, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.163.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.163.0", + "prefixLen":25, + "network":"194.55.163.0\/25", + "version":54591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.163.0", + "prefixLen":25, + "network":"194.55.163.0\/25", + "version":54591, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.163.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.163.128", + "prefixLen":25, + "network":"194.55.163.128\/25", + "version":54590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.163.128", + "prefixLen":25, + "network":"194.55.163.128\/25", + "version":54590, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.176.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.176.0", + "prefixLen":25, + "network":"194.55.176.0\/25", + "version":54589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.176.0", + "prefixLen":25, + "network":"194.55.176.0\/25", + "version":54589, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.176.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.176.128", + "prefixLen":25, + "network":"194.55.176.128\/25", + "version":54588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.176.128", + "prefixLen":25, + "network":"194.55.176.128\/25", + "version":54588, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.177.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.177.0", + "prefixLen":25, + "network":"194.55.177.0\/25", + "version":54587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.177.0", + "prefixLen":25, + "network":"194.55.177.0\/25", + "version":54587, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.177.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.177.128", + "prefixLen":25, + "network":"194.55.177.128\/25", + "version":54586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.177.128", + "prefixLen":25, + "network":"194.55.177.128\/25", + "version":54586, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.178.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.178.0", + "prefixLen":25, + "network":"194.55.178.0\/25", + "version":54585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.178.0", + "prefixLen":25, + "network":"194.55.178.0\/25", + "version":54585, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.178.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.178.128", + "prefixLen":25, + "network":"194.55.178.128\/25", + "version":54584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.178.128", + "prefixLen":25, + "network":"194.55.178.128\/25", + "version":54584, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.179.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.179.0", + "prefixLen":25, + "network":"194.55.179.0\/25", + "version":54583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.179.0", + "prefixLen":25, + "network":"194.55.179.0\/25", + "version":54583, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.179.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.179.128", + "prefixLen":25, + "network":"194.55.179.128\/25", + "version":54582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.179.128", + "prefixLen":25, + "network":"194.55.179.128\/25", + "version":54582, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.192.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.192.0", + "prefixLen":25, + "network":"194.55.192.0\/25", + "version":54581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.192.0", + "prefixLen":25, + "network":"194.55.192.0\/25", + "version":54581, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.192.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.192.128", + "prefixLen":25, + "network":"194.55.192.128\/25", + "version":54580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.192.128", + "prefixLen":25, + "network":"194.55.192.128\/25", + "version":54580, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.193.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.193.0", + "prefixLen":25, + "network":"194.55.193.0\/25", + "version":54579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.193.0", + "prefixLen":25, + "network":"194.55.193.0\/25", + "version":54579, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.193.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.193.128", + "prefixLen":25, + "network":"194.55.193.128\/25", + "version":54578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.193.128", + "prefixLen":25, + "network":"194.55.193.128\/25", + "version":54578, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.194.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.194.0", + "prefixLen":25, + "network":"194.55.194.0\/25", + "version":54577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.194.0", + "prefixLen":25, + "network":"194.55.194.0\/25", + "version":54577, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.194.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.194.128", + "prefixLen":25, + "network":"194.55.194.128\/25", + "version":54576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.194.128", + "prefixLen":25, + "network":"194.55.194.128\/25", + "version":54576, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.195.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.195.0", + "prefixLen":25, + "network":"194.55.195.0\/25", + "version":54575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.195.0", + "prefixLen":25, + "network":"194.55.195.0\/25", + "version":54575, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.195.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.195.128", + "prefixLen":25, + "network":"194.55.195.128\/25", + "version":54574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.195.128", + "prefixLen":25, + "network":"194.55.195.128\/25", + "version":54574, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.208.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.208.0", + "prefixLen":25, + "network":"194.55.208.0\/25", + "version":54573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.208.0", + "prefixLen":25, + "network":"194.55.208.0\/25", + "version":54573, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.208.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.208.128", + "prefixLen":25, + "network":"194.55.208.128\/25", + "version":54572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.208.128", + "prefixLen":25, + "network":"194.55.208.128\/25", + "version":54572, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.209.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.209.0", + "prefixLen":25, + "network":"194.55.209.0\/25", + "version":54571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.209.0", + "prefixLen":25, + "network":"194.55.209.0\/25", + "version":54571, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.209.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.209.128", + "prefixLen":25, + "network":"194.55.209.128\/25", + "version":54570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.209.128", + "prefixLen":25, + "network":"194.55.209.128\/25", + "version":54570, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.210.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.210.0", + "prefixLen":25, + "network":"194.55.210.0\/25", + "version":54569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.210.0", + "prefixLen":25, + "network":"194.55.210.0\/25", + "version":54569, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.210.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.210.128", + "prefixLen":25, + "network":"194.55.210.128\/25", + "version":54568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.210.128", + "prefixLen":25, + "network":"194.55.210.128\/25", + "version":54568, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.211.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.211.0", + "prefixLen":25, + "network":"194.55.211.0\/25", + "version":54567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.211.0", + "prefixLen":25, + "network":"194.55.211.0\/25", + "version":54567, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.211.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.211.128", + "prefixLen":25, + "network":"194.55.211.128\/25", + "version":54566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.211.128", + "prefixLen":25, + "network":"194.55.211.128\/25", + "version":54566, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.224.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.224.0", + "prefixLen":25, + "network":"194.55.224.0\/25", + "version":54565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.224.0", + "prefixLen":25, + "network":"194.55.224.0\/25", + "version":54565, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.224.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.224.128", + "prefixLen":25, + "network":"194.55.224.128\/25", + "version":54564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.224.128", + "prefixLen":25, + "network":"194.55.224.128\/25", + "version":54564, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.225.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.225.0", + "prefixLen":25, + "network":"194.55.225.0\/25", + "version":54563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.225.0", + "prefixLen":25, + "network":"194.55.225.0\/25", + "version":54563, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.225.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.225.128", + "prefixLen":25, + "network":"194.55.225.128\/25", + "version":54562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.225.128", + "prefixLen":25, + "network":"194.55.225.128\/25", + "version":54562, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.226.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.226.0", + "prefixLen":25, + "network":"194.55.226.0\/25", + "version":54561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.226.0", + "prefixLen":25, + "network":"194.55.226.0\/25", + "version":54561, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.226.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.226.128", + "prefixLen":25, + "network":"194.55.226.128\/25", + "version":54560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.226.128", + "prefixLen":25, + "network":"194.55.226.128\/25", + "version":54560, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.227.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.227.0", + "prefixLen":25, + "network":"194.55.227.0\/25", + "version":54559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.227.0", + "prefixLen":25, + "network":"194.55.227.0\/25", + "version":54559, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.227.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.227.128", + "prefixLen":25, + "network":"194.55.227.128\/25", + "version":54558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.227.128", + "prefixLen":25, + "network":"194.55.227.128\/25", + "version":54558, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.240.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.240.0", + "prefixLen":25, + "network":"194.55.240.0\/25", + "version":54557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.240.0", + "prefixLen":25, + "network":"194.55.240.0\/25", + "version":54557, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.240.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.240.128", + "prefixLen":25, + "network":"194.55.240.128\/25", + "version":54556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.240.128", + "prefixLen":25, + "network":"194.55.240.128\/25", + "version":54556, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.241.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.241.0", + "prefixLen":25, + "network":"194.55.241.0\/25", + "version":54555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.241.0", + "prefixLen":25, + "network":"194.55.241.0\/25", + "version":54555, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.241.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.241.128", + "prefixLen":25, + "network":"194.55.241.128\/25", + "version":54554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.241.128", + "prefixLen":25, + "network":"194.55.241.128\/25", + "version":54554, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.242.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.242.0", + "prefixLen":25, + "network":"194.55.242.0\/25", + "version":54553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.242.0", + "prefixLen":25, + "network":"194.55.242.0\/25", + "version":54553, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.242.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.242.128", + "prefixLen":25, + "network":"194.55.242.128\/25", + "version":54552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.242.128", + "prefixLen":25, + "network":"194.55.242.128\/25", + "version":54552, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.243.0/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.243.0", + "prefixLen":25, + "network":"194.55.243.0\/25", + "version":54551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.243.0", + "prefixLen":25, + "network":"194.55.243.0\/25", + "version":54551, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +],"194.55.243.128/25": [ + { + "valid":true, + "multipath":true, + "pathFrom":"internal", + "prefix":"194.55.243.128", + "prefixLen":25, + "network":"194.55.243.128\/25", + "version":54550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.2", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.11", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + }, + { + "valid":true, + "bestpath":true, + "selectionReason":"Router ID", + "pathFrom":"internal", + "prefix":"194.55.243.128", + "prefixLen":25, + "network":"194.55.243.128\/25", + "version":54550, + "locPrf":80, + "weight":0, + "peerId":"3.3.3.1", + "path":"65200 64999 65900", + "origin":"IGP", + "nexthops":[ + { + "ip":"10.0.0.5", + "hostname":"str2-7250-lc1-1", + "afi":"ipv4", + "used":true + } + ] + } +] } } diff --git a/tests/mock_tables/asic1/show_run_bgp.txt b/tests/mock_tables/asic1/show_run_bgp.txt new file mode 100644 index 000000000..de81748cc --- /dev/null +++ b/tests/mock_tables/asic1/show_run_bgp.txt @@ -0,0 +1,12 @@ +neighbor 10.0.0.9 remote-as 65200 +neighbor 10.0.0.9 peer-group TIER2_V4 +neighbor 10.0.0.9 description ARISTA05T2 +neighbor 10.0.0.13 remote-as 65200 +neighbor 10.0.0.13 peer-group TIER2_V4 +neighbor 10.0.0.13 description ARISTA07T2 +neighbor fc00::a remote-as 65200 +neighbor fc00::a peer-group TIER2_V6 +neighbor fc00::a description ARISTA05T2 +neighbor fc00::e remote-as 65200 +neighbor fc00::e peer-group TIER2_V6 +neighbor fc00::e description ARISTA07T2 diff --git a/tests/mock_tables/asic1/state_db.json b/tests/mock_tables/asic1/state_db.json index 354f66f70..7397d25b8 100644 --- a/tests/mock_tables/asic1/state_db.json +++ b/tests/mock_tables/asic1/state_db.json @@ -1,21 +1,40 @@ { "TRANSCEIVER_INFO|Ethernet64": { - "type": "QSFP28 or later", - "vendor_rev": "AC", - "serial": "MT1706FT02064", - "manufacturer": "Mellanox", - "model": "MFA1A00-C003", - "vendor_oui": "00-02-c9", - "vendor_date": "2017-01-13 ", - "connector": "No separable connector", - "encoding": "64B66B", - "ext_identifier": "Power Class 3(2.5W max), CDR present in Rx Tx", - "ext_rateselect_compliance": "QSFP+ Rate Select Version 1", - "cable_type": "Length Cable Assembly(m)", - "cable_length": "3", - "specification_compliance": "{'10/40G Ethernet Compliance Code': '40G Active Cable (XLPPI)'}", - "nominal_bit_rate": "255", - "application_advertisement": "N/A" + "type" : "QSFP-DD Double Density 8X Pluggable Transceiver", + "hardware_rev" : "X.X", + "serial" : "0123456789", + "manufacturer" : "XXXX", + "model" : "XXX", + "connector" : "LC", + "encoding" : "N/A", + "ext_identifier" : "Power Class 8 (20.0W Max)", + "ext_rateselect_compliance" : "N/A", + "cable_type" : "Length Cable Assembly(m)", + "cable_length" : "0.0", + "nominal_bit_rate" : "0", + "specification_compliance" : "sm_media_interface", + "vendor_date" : "2021-11-19", + "vendor_oui" : "XX-XX-XX", + "application_advertisement" : "{1: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 2: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, Single Wavelength, Unamplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 3: {'host_electrical_interface_id': '100GAUI-2 C2M (Annex 135G)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 2, 'host_lane_assignment_options': 85, 'media_lane_assignment_options': 1}}", + "host_lane_count" : "8", + "media_lane_count" : "1", + "active_apsel_hostlane1" : "1", + "active_apsel_hostlane2" : "1", + "active_apsel_hostlane3" : "1", + "active_apsel_hostlane4" : "1", + "active_apsel_hostlane5" : "1", + "active_apsel_hostlane6" : "1", + "active_apsel_hostlane7" : "1", + "active_apsel_hostlane8" : "1", + "media_interface_technology" : "1550 nm DFB", + "vendor_rev" : "XX", + "cmis_rev" : "4.1", + "active_firmware" : "X.X", + "inactive_firmware" : "X.X", + "supported_max_tx_power" : "4.0", + "supported_min_tx_power" : "-22.9", + "supported_max_laser_freq" : "196100", + "supported_min_laser_freq" : "191300" }, "TRANSCEIVER_DOM_SENSOR|Ethernet64": { "temperature": "30.9258", @@ -31,7 +50,9 @@ "tx1power": "N/A", "tx2power": "N/A", "tx3power": "N/A", - "tx4power": "N/A", + "tx4power": "N/A" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet64": { "rxpowerhighalarm": "3.4001", "rxpowerhighwarning": "2.4000", "rxpowerlowalarm": "-13.5067", @@ -213,5 +234,33 @@ }, "MUX_CABLE_TABLE|Ethernet0": { "state": "active" + }, + "FABRIC_PORT_TABLE|PORT0" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "69" + }, + "FABRIC_PORT_TABLE|PORT1" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT2" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT3" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT4" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "75" + }, + "FABRIC_PORT_TABLE|PORT5" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT6" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT7" : { + "STATUS": "down" } } diff --git a/tests/mock_tables/asic2/config_db.json b/tests/mock_tables/asic2/config_db.json index 532d85bcb..32a524365 100644 --- a/tests/mock_tables/asic2/config_db.json +++ b/tests/mock_tables/asic2/config_db.json @@ -124,5 +124,16 @@ "state": "disabled", "auto_restart": "disabled", "high_mem_alert": "disabled" + }, + "ACL_RULE|DATAACL_5|RULE_1": { + "IP_PROTOCOL": "126", + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9999" + }, + "ACL_TABLE|DATAACL_5": { + "policy_desc": "DATAACL_5", + "ports@": "Ethernet20", + "type": "L3", + "stage": "ingress" } } diff --git a/tests/mock_tables/asic2/state_db.json b/tests/mock_tables/asic2/state_db.json index f6e3eee4c..c6c8c8889 100644 --- a/tests/mock_tables/asic2/state_db.json +++ b/tests/mock_tables/asic2/state_db.json @@ -207,5 +207,11 @@ "speed_target": "50", "led_status": "green", "timestamp": "20200813 01:32:30" + }, + "ACL_TABLE_TABLE|DATAACL_5" : { + "status": "Active" + }, + "ACL_RULE_TABLE|DATAACL_5|RULE_1" : { + "status": "Active" } } diff --git a/tests/mock_tables/asic_db.json b/tests/mock_tables/asic_db.json index 333899f27..b82186517 100644 --- a/tests/mock_tables/asic_db.json +++ b/tests/mock_tables/asic_db.json @@ -19,5 +19,13 @@ "VIDTORID":{ "oid:0xd00000000056d": "oid:0xd", "oid:0x10000000004a4": "oid:0x1690000000001" - } + }, + "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"10.2.1.1\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x300000000007c\"}": { + "SAI_ROUTE_ENTRY_ATTR_PACKET_ACTION": "SAI_PACKET_ACTION_FORWARD", + "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID": "oid:0x40000000015d8" + }, + "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"fc00::76\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x300000000007c\"}": { + "SAI_ROUTE_ENTRY_ATTR_PACKET_ACTION": "SAI_PACKET_ACTION_FORWARD", + "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID": "oid:0x40000000015d8" + } } diff --git a/tests/mock_tables/chassis_state_db.json b/tests/mock_tables/chassis_state_db.json new file mode 100644 index 000000000..5178c49ca --- /dev/null +++ b/tests/mock_tables/chassis_state_db.json @@ -0,0 +1,9 @@ +{ + "CHASSIS_MODULE_HOSTNAME_TABLE|LINE-CARD0": { + "module_hostname": "sonic-lc1" + }, + "CHASSIS_MODULE_HOSTNAME_TABLE|LINE-CARD1": { + "module_hostname": "sonic-lc2" + } + +} \ No newline at end of file diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 9a037bb58..7a5ce8b92 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -373,10 +373,32 @@ "VLAN_SUB_INTERFACE|Ethernet0.10": { "admin_status": "up" }, - "VLAN_SUB_INTERFACE|Eth32.10": { + "VLAN_SUB_INTERFACE|Ethernet0.10|10.11.12.13/24": { + "NULL" : "NULL" + }, + "VLAN_SUB_INTERFACE|Eth36.10": { + "admin_status": "up", + "loopback_action": "drop", + "vrf_name": "Vrf1", + "vlan": "100" + }, + "VLAN_SUB_INTERFACE|Eth36.10|32.10.11.12/24": { + "NULL" : "NULL" + }, + "VLAN_SUB_INTERFACE|Eth36.10|3210::12/126": { + "NULL" : "NULL" + }, + "VLAN_SUB_INTERFACE|Po0001.10": { "admin_status": "up", + "vrf_name": "Vrf1", "vlan": "100" }, + "VLAN_SUB_INTERFACE|Po0001.10|10.10.11.12/24": { + "NULL" : "NULL" + }, + "VLAN_SUB_INTERFACE|Po0001.10|1010::12/126": { + "NULL" : "NULL" + }, "ACL_RULE|NULL_ROUTE_V4|DEFAULT_RULE": { "PACKET_ACTION": "DROP", "PRIORITY": "1" @@ -474,6 +496,11 @@ "PACKET_ACTION": "FORWARD", "PRIORITY": "9995" }, + "ACL_RULE|DATAACL_5|RULE_1": { + "IP_PROTOCOL": "126", + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9999" + }, "ACL_TABLE|NULL_ROUTE_V4": { "policy_desc": "DATAACL", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023", @@ -484,6 +511,18 @@ "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023", "type": "L3V6" }, + "ACL_TABLE|BMC_ACL_NORTHBOUND": { + "policy_desc": "BMC_ACL_NORTHBOUND", + "ports@": "Ethernet8,Ethernet0,Ethernet17,Ethernet16,Ethernet37,Ethernet4,Ethernet13,Ethernet45,Ethernet19,Ethernet24,Ethernet31,Ethernet30,Ethernet39,Ethernet40,Ethernet27,Ethernet43,Ethernet7,Ethernet3,Ethernet20,Ethernet6,Ethernet12,Ethernet34,Ethernet26,Ethernet11,Ethernet42,Ethernet5,Ethernet32,Ethernet36,Ethernet15,Ethernet33,Ethernet35,Ethernet9,Ethernet29,Ethernet21,Ethernet18,Ethernet38,Ethernet23,Ethernet41,Ethernet14,Ethernet2,Ethernet28,Ethernet22,Ethernet10,Ethernet25,Ethernet44,Ethernet1", + "stage": "ingress", + "type": "BMCDATA" + }, + "ACL_TABLE|BMC_ACL_NORTHBOUND_V6": { + "policy_desc": "BMC_ACL_NORTHBOUND_V6", + "ports@": "Ethernet13,Ethernet3,Ethernet32,Ethernet33,Ethernet34,Ethernet8,Ethernet6,Ethernet44,Ethernet39,Ethernet18,Ethernet15,Ethernet1,Ethernet19,Ethernet7,Ethernet14,Ethernet43,Ethernet40,Ethernet27,Ethernet4,Ethernet36,Ethernet41,Ethernet10,Ethernet31,Ethernet5,Ethernet9,Ethernet12,Ethernet16,Ethernet25,Ethernet24,Ethernet17,Ethernet35,Ethernet11,Ethernet38,Ethernet42,Ethernet29,Ethernet20,Ethernet45,Ethernet26,Ethernet21,Ethernet37,Ethernet0,Ethernet28,Ethernet23,Ethernet22,Ethernet2,Ethernet30", + "stage": "ingress", + "type": "BMCDATAV6" + }, "ACL_TABLE|DATAACL": { "policy_desc": "DATAACL", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet64,Ethernet68,Ethernet72,Ethernet76,Ethernet80,Ethernet84,Ethernet88,Ethernet92,Ethernet96,Ethernet100,Ethernet104,Ethernet108,Ethernet112,Ethernet116,Ethernet120,Ethernet124", @@ -511,11 +550,23 @@ "type": "L3V6", "stage": "egress" }, + "ACL_TABLE|DATAACL_5": { + "policy_desc": "DATAACL_5", + "ports@": "Ethernet124", + "type": "L3", + "stage": "ingress" + }, "ACL_TABLE|EVERFLOW": { "policy_desc": "EVERFLOW", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet100,Ethernet104,Ethernet92,Ethernet96,Ethernet84,Ethernet88,Ethernet76,Ethernet80,Ethernet108,Ethernet112,Ethernet64,Ethernet120,Ethernet116,Ethernet124,Ethernet72,Ethernet68", "type": "MIRROR" }, + "ACL_TABLE|EVERFLOWV6": { + "policy_desc": "EVERFLOWV6", + "ports@": "Ethernet0,Ethernet1,Ethernet2,Ethernet3,Ethernet4,Ethernet5,Ethernet6,Ethernet7,Ethernet8,Ethernet9,Ethernet10,Ethernet11,Ethernet12,Ethernet13,Ethernet14,Ethernet15,Ethernet16,Ethernet17,Ethernet18,Ethernet19,Ethernet20,Ethernet21,Ethernet22,Ethernet23,Ethernet24,Ethernet25,Ethernet26,Ethernet27,Ethernet28,Ethernet29,Ethernet30,Ethernet31,Ethernet32,Ethernet33,Ethernet34,Ethernet35,Ethernet36,Ethernet37,Ethernet38,Ethernet39,Ethernet40,Ethernet41,Ethernet42,Ethernet43,Ethernet44,Ethernet45,Ethernet46,Ethernet47", + "type": "MIRRORV6", + "stage": "ingress" + }, "ACL_TABLE|EVERFLOW_EGRESS": { "policy_desc": "EGRESS EVERFLOW", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet100,Ethernet104,Ethernet92,Ethernet96,Ethernet84,Ethernet88,Ethernet76,Ethernet80,Ethernet108,Ethernet112,Ethernet64,Ethernet120,Ethernet116,Ethernet124,Ethernet72,Ethernet68", @@ -532,6 +583,16 @@ "services@": "SSH", "type": "CTRLPLANE" }, + "ACL_TABLE_TYPE|BMCDATA": { + "ACTIONS": "PACKET_ACTION,COUNTER", + "BIND_POINTS": "PORT", + "MATCHES": "SRC_IP,DST_IP,ETHER_TYPE,IP_TYPE,IP_PROTOCOL,IN_PORTS,TCP_FLAGS" + }, + "ACL_TABLE_TYPE|BMCDATAV6": { + "ACTIONS": "PACKET_ACTION,COUNTER", + "BIND_POINTS": "PORT", + "MATCHES": "SRC_IPV6,DST_IPV6,ETHER_TYPE,IP_TYPE,IP_PROTOCOL,IN_PORTS,TCP_FLAGS" + }, "VLAN|Vlan1000": { "dhcp_servers@": "192.0.0.1,192.0.0.2,192.0.0.3,192.0.0.4", "vlanid": "1000" @@ -552,6 +613,9 @@ "VLAN_INTERFACE|Vlan2000": { "proxy_arp": "enabled" }, + "VLAN_INTERFACE|Vlan3000": { + "loopback_action": "forward" + }, "VLAN_INTERFACE|Vlan1000|192.168.0.1/21": { "NULL": "NULL" }, @@ -636,7 +700,8 @@ "NULL": "NULL" }, "PORTCHANNEL_INTERFACE|PortChannel0001": { - "ipv6_use_link_local_only": "disable" + "ipv6_use_link_local_only": "disable", + "loopback_action": "drop" }, "PORTCHANNEL_INTERFACE|PortChannel0002": { "NULL": "NULL" @@ -672,11 +737,15 @@ "NULL": "NULL" }, "INTERFACE|Ethernet0": { - "ipv6_use_link_local_only": "disable" + "ipv6_use_link_local_only": "disable", + "loopback_action": "forward" }, "INTERFACE|Ethernet0|14.14.0.1/24": { "NULL": "NULL" }, + "INTERFACE|Ethernet40": { + "ipv6_use_link_local_only": "enable" + }, "DEBUG_COUNTER|DEBUG_0": { "type": "PORT_INGRESS_DROPS" }, @@ -1614,7 +1683,11 @@ "FLEX_COUNTER_STATUS": "enable" }, "FLEX_COUNTER_TABLE|ACL": { - "POLL_INTERVAL": "10000", + "POLL_INTERVAL": "5000", + "FLEX_COUNTER_STATUS": "enable" + }, + "FLEX_COUNTER_TABLE|TUNNEL": { + "POLL_INTERVAL": "3000", "FLEX_COUNTER_STATUS": "enable" }, "FLEX_COUNTER_TABLE|FLOW_CNT_TRAP": { @@ -1711,13 +1784,17 @@ }, "MUX_CABLE|Ethernet32": { "state": "auto", - "server_ipv4": "10.1.1.1", - "server_ipv6": "fc00::75" + "server_ipv4": "10.1.1.1", + "cable_type": "active-active", + "soc_ipv4": "10.1.1.2", + "soc_ipv6": "fc00::76", + "server_ipv6": "fc00::75" }, "MUX_CABLE|Ethernet16": { "state": "standby", - "server_ipv4": "10.1.1.1", - "server_ipv6": "fc00::75" + "server_ipv4": "10.1.1.1", + "cable_type": "active-standby", + "server_ipv6": "fc00::75" }, "MUX_CABLE|Ethernet28": { "state": "manual", @@ -1731,8 +1808,9 @@ }, "MUX_CABLE|Ethernet4": { "state": "auto", - "server_ipv4": "10.3.1.1", - "server_ipv6": "e801::46" + "server_ipv4": "10.3.1.1", + "server_ipv6": "e801::46", + "soc_ipv6": "e801::47" }, "MUX_CABLE|Ethernet8": { "state": "active", @@ -1790,11 +1868,21 @@ "mode": "dynamic", "type": "ingress" }, + "BUFFER_POOL|ingress_lossless_pool_hbm": { + "mode": "static", + "size": "139458240", + "type": "ingress" + }, "BUFFER_PROFILE|ingress_lossy_profile": { "dynamic_th": "3", "pool": "ingress_lossy_pool", "size": "0" }, + "BUFFER_PROFILE|ingress_lossless_profile_hbm": { + "static_th": "12121212", + "pool": "ingress_lossless_pool_hbm", + "size": "0" + }, "BUFFER_PROFILE|headroom_profile": { "dynamic_th": "0", "pool": "ingress_lossless_pool", @@ -2558,5 +2646,26 @@ "dst_port": "Ethernet44", "src_port": "Ethernet40,Ethernet48", "direction": "RX" + }, + "FABRIC_MONITOR|FABRIC_MONITOR_DATA": { + "monErrThreshCrcCells": "1", + "monErrThreshRxCells": "61035156", + "monPollThreshIsolation": "1", + "monPollThreshRecovery": "8" + }, + "FABRIC_PORT|Fabric0": { + "alias": "Fabric0", + "isolateStatus": "False", + "lanes": "0" + }, + "FABRIC_PORT|Fabric1": { + "alias": "Fabric1", + "isolateStatus": "False", + "lanes": "1" + }, + "FABRIC_PORT|Fabric2": { + "alias": "Fabric2", + "isolateStatus": "False", + "lanes": "2" } } diff --git a/tests/mock_tables/counters_db.json b/tests/mock_tables/counters_db.json index b79c83928..40248ed47 100644 --- a/tests/mock_tables/counters_db.json +++ b/tests/mock_tables/counters_db.json @@ -1,9 +1,9 @@ { "COUNTERS:oid:0x15000000000357": { - "SAI_QUEUE_STAT_BYTES": "30", - "SAI_QUEUE_STAT_DROPPED_BYTES": "74", - "SAI_QUEUE_STAT_DROPPED_PACKETS": "56", - "SAI_QUEUE_STAT_PACKETS": "68", + "SAI_QUEUE_STAT_BYTES": "0", + "SAI_QUEUE_STAT_DROPPED_BYTES": "0", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "0", + "SAI_QUEUE_STAT_PACKETS": "0", "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "61" }, "COUNTERS:oid:0x15000000000358": { @@ -266,10 +266,10 @@ "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "49" }, "COUNTERS:oid:0x150000000003a7": { - "SAI_QUEUE_STAT_BYTES": "5", - "SAI_QUEUE_STAT_DROPPED_BYTES": "56", - "SAI_QUEUE_STAT_DROPPED_PACKETS": "36", - "SAI_QUEUE_STAT_PACKETS": "19", + "SAI_QUEUE_STAT_BYTES": "0", + "SAI_QUEUE_STAT_DROPPED_BYTES": "0", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "0", + "SAI_QUEUE_STAT_PACKETS": "0", "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "65" }, "COUNTERS:oid:0x150000000003a8": { @@ -398,6 +398,150 @@ "SAI_QUEUE_STAT_PACKETS": "20", "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "81" }, + "COUNTERS:oid:0x15000000000657": { + "SAI_QUEUE_STAT_BYTES": "30", + "SAI_QUEUE_STAT_DROPPED_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "56", + "SAI_QUEUE_STAT_PACKETS": "68" + }, + "COUNTERS:oid:0x15000000000658": { + "SAI_QUEUE_STAT_BYTES": "43", + "SAI_QUEUE_STAT_DROPPED_BYTES": "1", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "39", + "SAI_QUEUE_STAT_PACKETS": "60" + }, + "COUNTERS:oid:0x15000000000659": { + "SAI_QUEUE_STAT_BYTES": "7", + "SAI_QUEUE_STAT_DROPPED_BYTES": "21", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "39", + "SAI_QUEUE_STAT_PACKETS": "82" + }, + "COUNTERS:oid:0x1500000000065a": { + "SAI_QUEUE_STAT_BYTES": "59", + "SAI_QUEUE_STAT_DROPPED_BYTES": "94", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "12", + "SAI_QUEUE_STAT_PACKETS": "11" + }, + "COUNTERS:oid:0x1500000000065b": { + "SAI_QUEUE_STAT_BYTES": "62", + "SAI_QUEUE_STAT_DROPPED_BYTES": "40", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "35", + "SAI_QUEUE_STAT_PACKETS": "36" + }, + "COUNTERS:oid:0x1500000000065c": { + "SAI_QUEUE_STAT_BYTES": "91", + "SAI_QUEUE_STAT_DROPPED_BYTES": "88", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "2", + "SAI_QUEUE_STAT_PACKETS": "49" + }, + "COUNTERS:oid:0x1500000000065d": { + "SAI_QUEUE_STAT_BYTES": "17", + "SAI_QUEUE_STAT_DROPPED_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "94", + "SAI_QUEUE_STAT_PACKETS": "33" + }, + "COUNTERS:oid:0x1500000000065e": { + "SAI_QUEUE_STAT_BYTES": "71", + "SAI_QUEUE_STAT_DROPPED_BYTES": "33", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "95", + "SAI_QUEUE_STAT_PACKETS": "40" + }, + "COUNTERS:oid:0x15000000000667": { + "SAI_QUEUE_STAT_BYTES": "8", + "SAI_QUEUE_STAT_DROPPED_BYTES": "78", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "93", + "SAI_QUEUE_STAT_PACKETS": "54" + }, + "COUNTERS:oid:0x15000000000668": { + "SAI_QUEUE_STAT_BYTES": "96", + "SAI_QUEUE_STAT_DROPPED_BYTES": "9", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "74", + "SAI_QUEUE_STAT_PACKETS": "83" + }, + "COUNTERS:oid:0x15000000000669": { + "SAI_QUEUE_STAT_BYTES": "60", + "SAI_QUEUE_STAT_DROPPED_BYTES": "31", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "61", + "SAI_QUEUE_STAT_PACKETS": "15" + }, + "COUNTERS:oid:0x1500000000066a": { + "SAI_QUEUE_STAT_BYTES": "52", + "SAI_QUEUE_STAT_DROPPED_BYTES": "94", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "82", + "SAI_QUEUE_STAT_PACKETS": "45" + }, + "COUNTERS:oid:0x1500000000066b": { + "SAI_QUEUE_STAT_BYTES": "88", + "SAI_QUEUE_STAT_DROPPED_BYTES": "52", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "89", + "SAI_QUEUE_STAT_PACKETS": "55" + }, + "COUNTERS:oid:0x1500000000066c": { + "SAI_QUEUE_STAT_BYTES": "70", + "SAI_QUEUE_STAT_DROPPED_BYTES": "79", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "95", + "SAI_QUEUE_STAT_PACKETS": "14" + }, + "COUNTERS:oid:0x1500000000066d": { + "SAI_QUEUE_STAT_BYTES": "60", + "SAI_QUEUE_STAT_DROPPED_BYTES": "81", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "66", + "SAI_QUEUE_STAT_PACKETS": "68" + }, + "COUNTERS:oid:0x1500000000066e": { + "SAI_QUEUE_STAT_BYTES": "4", + "SAI_QUEUE_STAT_DROPPED_BYTES": "76", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "48", + "SAI_QUEUE_STAT_PACKETS": "63" + }, + "COUNTERS:oid:0x15000000000677": { + "SAI_QUEUE_STAT_BYTES": "73", + "SAI_QUEUE_STAT_DROPPED_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "77", + "SAI_QUEUE_STAT_PACKETS": "41" + }, + "COUNTERS:oid:0x15000000000678": { + "SAI_QUEUE_STAT_BYTES": "21", + "SAI_QUEUE_STAT_DROPPED_BYTES": "54", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "56", + "SAI_QUEUE_STAT_PACKETS": "60" + }, + "COUNTERS:oid:0x15000000000679": { + "SAI_QUEUE_STAT_BYTES": "31", + "SAI_QUEUE_STAT_DROPPED_BYTES": "39", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "12", + "SAI_QUEUE_STAT_PACKETS": "57" + }, + "COUNTERS:oid:0x1500000000067a": { + "SAI_QUEUE_STAT_BYTES": "96", + "SAI_QUEUE_STAT_DROPPED_BYTES": "98", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "70", + "SAI_QUEUE_STAT_PACKETS": "41" + }, + "COUNTERS:oid:0x1500000000067b": { + "SAI_QUEUE_STAT_BYTES": "49", + "SAI_QUEUE_STAT_DROPPED_BYTES": "36", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "63", + "SAI_QUEUE_STAT_PACKETS": "18" + }, + "COUNTERS:oid:0x1500000000067c": { + "SAI_QUEUE_STAT_BYTES": "90", + "SAI_QUEUE_STAT_DROPPED_BYTES": "15", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "3", + "SAI_QUEUE_STAT_PACKETS": "99" + }, + "COUNTERS:oid:0x1500000000067d": { + "SAI_QUEUE_STAT_BYTES": "84", + "SAI_QUEUE_STAT_DROPPED_BYTES": "94", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "82", + "SAI_QUEUE_STAT_PACKETS": "8" + }, + "COUNTERS:oid:0x1500000000067e": { + "SAI_QUEUE_STAT_BYTES": "15", + "SAI_QUEUE_STAT_DROPPED_BYTES": "92", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "75", + "SAI_QUEUE_STAT_PACKETS": "83" + }, "COUNTERS:oid:0x60000000005a3": { "SAI_ROUTER_INTERFACE_STAT_IN_ERROR_OCTETS": "0", "SAI_ROUTER_INTERFACE_STAT_IN_ERROR_PACKETS": "0", @@ -711,7 +855,10 @@ "SAI_PORT_STAT_ETHER_OUT_PKTS_9217_TO_16383_OCTETS": "0", "SAI_PORT_STAT_ETHER_STATS_FRAGMENTS": "0", "SAI_PORT_STAT_ETHER_STATS_UNDERSIZE_PKTS": "0", - "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0" + "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "130402", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "3", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "4" }, "COUNTERS:oid:0x1000000000013": { "SAI_PORT_STAT_IF_IN_UCAST_PKTS": "4", @@ -768,7 +915,10 @@ "SAI_PORT_STAT_ETHER_OUT_PKTS_9217_TO_16383_OCTETS": "0", "SAI_PORT_STAT_ETHER_STATS_FRAGMENTS": "0", "SAI_PORT_STAT_ETHER_STATS_UNDERSIZE_PKTS": "0", - "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0" + "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "110412", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" }, "COUNTERS:oid:0x1000000000014": { "SAI_PORT_STAT_IF_IN_UCAST_PKTS": "6", @@ -825,7 +975,10 @@ "SAI_PORT_STAT_ETHER_OUT_PKTS_9217_TO_16383_OCTETS": "0", "SAI_PORT_STAT_ETHER_STATS_FRAGMENTS": "0", "SAI_PORT_STAT_ETHER_STATS_UNDERSIZE_PKTS": "0", - "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0" + "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "100317", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" }, "COUNTERS:oid:0x21000000000000": { "SAI_SWITCH_STAT_OUT_DROP_REASON_RANGE_BASE": "1000", @@ -904,7 +1057,40 @@ "COUNTERS:oid:0x1a0000000003a6" : { "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "107" }, + + "COUNTERS_SYSTEM_PORT_NAME_MAP": { + "testsw|Ethernet0": "oid:0x1000000000042", + "testsw|Ethernet4": "oid:0x1000000000043", + "testsw|Ethernet8": "oid:0x1000000000044" + }, + "COUNTERS_VOQ_NAME_MAP": { + "testsw|Ethernet0:0": "oid:0x15000000000657", + "testsw|Ethernet0:1": "oid:0x15000000000658", + "testsw|Ethernet0:2": "oid:0x15000000000659", + "testsw|Ethernet0:3": "oid:0x1500000000065a", + "testsw|Ethernet0:4": "oid:0x1500000000065b", + "testsw|Ethernet0:5": "oid:0x1500000000065c", + "testsw|Ethernet0:6": "oid:0x1500000000065d", + "testsw|Ethernet0:7": "oid:0x1500000000065e", + "testsw|Ethernet4:0": "oid:0x15000000000667", + "testsw|Ethernet4:1": "oid:0x15000000000668", + "testsw|Ethernet4:2": "oid:0x15000000000669", + "testsw|Ethernet4:3": "oid:0x1500000000066a", + "testsw|Ethernet4:4": "oid:0x1500000000066b", + "testsw|Ethernet4:5": "oid:0x1500000000066c", + "testsw|Ethernet4:6": "oid:0x1500000000066d", + "testsw|Ethernet4:7": "oid:0x1500000000066e", + "testsw|Ethernet8:0": "oid:0x15000000000677", + "testsw|Ethernet8:1": "oid:0x15000000000678", + "testsw|Ethernet8:2": "oid:0x15000000000679", + "testsw|Ethernet8:3": "oid:0x1500000000067a", + "testsw|Ethernet8:4": "oid:0x1500000000067b", + "testsw|Ethernet8:5": "oid:0x1500000000067c", + "testsw|Ethernet8:6": "oid:0x1500000000067d", + "testsw|Ethernet8:7": "oid:0x1500000000067e" + }, + "COUNTERS_PORT_NAME_MAP": { "Ethernet0": "oid:0x1000000000012", "Ethernet4": "oid:0x1000000000013", @@ -1155,8 +1341,33 @@ "oid:0x150000000003c3": "oid:0x1000000000014", "oid:0x150000000003c4": "oid:0x1000000000014", "oid:0x150000000003c5": "oid:0x1000000000014", - "oid:0x150000000003c6": "oid:0x1000000000014" + "oid:0x150000000003c6": "oid:0x1000000000014", + "oid:0x15000000000657": "oid:0x1000000000042", + "oid:0x15000000000658": "oid:0x1000000000042", + "oid:0x15000000000659": "oid:0x1000000000042", + "oid:0x1500000000065a": "oid:0x1000000000042", + "oid:0x1500000000065b": "oid:0x1000000000042", + "oid:0x1500000000065c": "oid:0x1000000000042", + "oid:0x1500000000065d": "oid:0x1000000000042", + "oid:0x1500000000065e": "oid:0x1000000000042", + "oid:0x15000000000667": "oid:0x1000000000043", + "oid:0x15000000000668": "oid:0x1000000000043", + "oid:0x15000000000669": "oid:0x1000000000043", + "oid:0x1500000000066a": "oid:0x1000000000043", + "oid:0x1500000000066b": "oid:0x1000000000043", + "oid:0x1500000000066c": "oid:0x1000000000043", + "oid:0x1500000000066d": "oid:0x1000000000043", + "oid:0x1500000000066e": "oid:0x1000000000043", + "oid:0x15000000000677": "oid:0x1000000000044", + "oid:0x15000000000678": "oid:0x1000000000044", + "oid:0x15000000000679": "oid:0x1000000000044", + "oid:0x1500000000067a": "oid:0x1000000000044", + "oid:0x1500000000067b": "oid:0x1000000000044", + "oid:0x1500000000067c": "oid:0x1000000000044", + "oid:0x1500000000067d": "oid:0x1000000000044", + "oid:0x1500000000067e": "oid:0x1000000000044" }, + "COUNTERS_PG_INDEX_MAP": { "oid:0x1a00000000034f": "0", "oid:0x1a000000000350": "1", @@ -1273,7 +1484,31 @@ "oid:0x150000000003c3": "26", "oid:0x150000000003c4": "27", "oid:0x150000000003c5": "28", - "oid:0x150000000003c6": "29" + "oid:0x150000000003c6": "29", + "oid:0x15000000000657": "0", + "oid:0x15000000000658": "1", + "oid:0x15000000000659": "2", + "oid:0x1500000000065a": "3", + "oid:0x1500000000065b": "4", + "oid:0x1500000000065c": "5", + "oid:0x1500000000065d": "6", + "oid:0x1500000000065e": "7", + "oid:0x15000000000667": "0", + "oid:0x15000000000668": "1", + "oid:0x15000000000669": "2", + "oid:0x1500000000066a": "3", + "oid:0x1500000000066b": "4", + "oid:0x1500000000066c": "5", + "oid:0x1500000000066d": "6", + "oid:0x1500000000066e": "7", + "oid:0x15000000000677": "0", + "oid:0x15000000000678": "1", + "oid:0x15000000000679": "2", + "oid:0x1500000000067a": "3", + "oid:0x1500000000067b": "4", + "oid:0x1500000000067c": "5", + "oid:0x1500000000067d": "6", + "oid:0x1500000000067e": "7" }, "COUNTERS_QUEUE_TYPE_MAP": { "oid:0x15000000000357": "SAI_QUEUE_TYPE_UNICAST", @@ -1365,7 +1600,171 @@ "oid:0x150000000003c3": "SAI_QUEUE_TYPE_ALL", "oid:0x150000000003c4": "SAI_QUEUE_TYPE_ALL", "oid:0x150000000003c5": "SAI_QUEUE_TYPE_ALL", - "oid:0x150000000003c6": "SAI_QUEUE_TYPE_ALL" + "oid:0x150000000003c6": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000657": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x15000000000658": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x15000000000659": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000065a": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000065b": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000065c": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000065d": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000065e": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x15000000000667": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x15000000000668": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x15000000000669": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000066a": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000066b": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000066c": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000066d": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000066e": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x15000000000677": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x15000000000678": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x15000000000679": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000067a": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000067b": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000067c": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000067d": "SAI_QUEUE_TYPE_UNICAST_VOQ", + "oid:0x1500000000067e": "SAI_QUEUE_TYPE_UNICAST_VOQ" + }, + "COUNTERS_FABRIC_PORT_NAME_MAP" : { + "PORT0": "oid:0x1000000000143", + "PORT1": "oid:0x1000000000144", + "PORT2": "oid:0x1000000000145", + "PORT3": "oid:0x1000000000146", + "PORT4": "oid:0x1000000000147", + "PORT5": "oid:0x1000000000148", + "PORT6": "oid:0x1000000000149", + "PORT7": "oid:0x100000000014a" + }, + "COUNTERS:oid:0x1000000000143": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1113", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "6", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "5", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1759692040", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "5" + }, + "COUNTERS:oid:0x1000000000144": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58977677898", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000145": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "371", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "2", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1769448760", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000146": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58976477608", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000147": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1855", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "10", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "73", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1763293100", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "73" + }, + "COUNTERS:oid:0x1000000000148": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "44196", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58975150569", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000149": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "742", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "4", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "10", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1763174090", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x100000000014a": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1855", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "10", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "187", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1768439529", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "1331" + }, + "COUNTERS_FABRIC_QUEUE_NAME_MAP" : { + "PORT0:0": "oid:0x15000000000186", + "PORT1:0": "oid:0x15000000000187", + "PORT2:0": "oid:0x15000000000188", + "PORT3:0": "oid:0x15000000000189", + "PORT4:0": "oid:0x1500000000018a", + "PORT5:0": "oid:0x1500000000018b", + "PORT6:0": "oid:0x1500000000018c", + "PORT7:0": "oid:0x1500000000018d" + }, + "COUNTERS:oid:0x15000000000186": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "20", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "763", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "12" + }, + "COUNTERS:oid:0x15000000000187": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x15000000000188": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "8", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "104", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "8" + }, + "COUNTERS:oid:0x15000000000189": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018a": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "22", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "1147", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "14" + }, + "COUNTERS:oid:0x1500000000018b": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018c": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "10", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "527", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "8" + }, + "COUNTERS:oid:0x1500000000018d": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "17", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "1147", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "14" }, "COUNTERS_DEBUG_NAME_PORT_STAT_MAP": { "DEBUG_0": "SAI_PORT_STAT_IN_DROP_REASON_RANGE_BASE", diff --git a/tests/mock_tables/database_config.json b/tests/mock_tables/database_config.json index d12ba0541..f55c0734c 100644 --- a/tests/mock_tables/database_config.json +++ b/tests/mock_tables/database_config.json @@ -56,6 +56,11 @@ "id" : 12, "separator": "|", "instance" : "redis" + }, + "CHASSIS_STATE_DB" : { + "id" : 13, + "separator": "|", + "instance" : "redis" } }, "VERSION" : "1.1" diff --git a/tests/mock_tables/dbconnector.py b/tests/mock_tables/dbconnector.py index 80d74cafd..924849abd 100644 --- a/tests/mock_tables/dbconnector.py +++ b/tests/mock_tables/dbconnector.py @@ -60,6 +60,8 @@ def connect_SonicV2Connector(self, db_name, retry_on=True): def _subscribe_keyspace_notification(self, db_name, client): pass +def mock_close(self, db_name): + pass def config_set(self, *args): pass @@ -183,6 +185,7 @@ def keys(self, pattern='*'): swsssdk.interface.DBInterface._subscribe_keyspace_notification = _subscribe_keyspace_notification +swsssdk.interface.DBInterface.close = mock_close mockredis.MockRedis.config_set = config_set redis.StrictRedis = SwssSyncClient SonicV2Connector.connect = connect_SonicV2Connector diff --git a/tests/mock_tables/device_bgp_info.json b/tests/mock_tables/device_bgp_info.json new file mode 100644 index 000000000..5bc28cf8e --- /dev/null +++ b/tests/mock_tables/device_bgp_info.json @@ -0,0 +1,30 @@ +{ +"vrfId": 0, +"vrfName": "default", +"tableVersion": 8972, +"routerId": "10.1.0.32", +"defaultLocPrf": 100, +"localAS": 65100, +"routes": { "10.1.0.32/32": [ + { + "valid":true, + "bestpath":true, + "pathFrom":"external", + "prefix":"10.1.0.32", + "prefixLen":32, + "network":"10.1.0.32\/32", + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"STR-8102-C19-U24", + "afi":"ipv4", + "used":true + } + ] + } +] } } \ No newline at end of file diff --git a/tests/mock_tables/no_bgp_neigh.json b/tests/mock_tables/no_bgp_neigh.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/tests/mock_tables/no_bgp_neigh.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tests/mock_tables/show_run_bgp.txt b/tests/mock_tables/show_run_bgp.txt new file mode 100644 index 000000000..9a3ae8b13 --- /dev/null +++ b/tests/mock_tables/show_run_bgp.txt @@ -0,0 +1,64 @@ +router bgp 65100 +bgp router-id 10.1.0.32 +bgp log-neighbor-changes +no bgp ebgp-requires-policy +no bgp default ipv4-unicast +bgp graceful-restart restart-time 240 +bgp graceful-restart select-defer-time 45 +bgp graceful-restart +bgp graceful-restart preserve-fw-state +bgp bestpath as-path multipath-relax +neighbor BGPSLBPassive peer-group +neighbor BGPSLBPassive remote-as 65432 +neighbor BGPSLBPassive passive +neighbor BGPSLBPassive ebgp-multihop 255 +neighbor BGPSLBPassive update-source 10.1.0.32 +neighbor BGPVac peer-group +neighbor BGPVac remote-as 65432 +neighbor BGPVac passive +neighbor BGPVac ebgp-multihop 255 +neighbor BGPVac update-source 10.1.0.32 +neighbor PEER_V4 peer-group +neighbor PEER_V6 peer-group +neighbor 10.0.0.57 remote-as 64600 +neighbor 10.0.0.57 peer-group PEER_V4 +neighbor 10.0.0.57 description ARISTA01T1 +neighbor 10.0.0.57 timers 3 10 +neighbor 10.0.0.57 timers connect 10 +neighbor 10.0.0.59 remote-as 64600 +neighbor 10.0.0.59 peer-group PEER_V4 +neighbor 10.0.0.59 description ARISTA02T1 +neighbor 10.0.0.59 timers 3 10 +neighbor 10.0.0.59 timers connect 10 +neighbor 10.0.0.61 remote-as 64600 +neighbor 10.0.0.61 peer-group PEER_V4 +neighbor 10.0.0.61 description ARISTA03T1 +neighbor 10.0.0.61 timers 3 10 +neighbor 10.0.0.61 timers connect 10 +neighbor 10.0.0.63 remote-as 64600 +neighbor 10.0.0.63 peer-group PEER_V4 +neighbor 10.0.0.63 description ARISTA04T1 +neighbor 10.0.0.63 timers 3 10 +neighbor 10.0.0.63 timers connect 10 +neighbor fc00::72 remote-as 64600 +neighbor fc00::72 peer-group PEER_V6 +neighbor fc00::72 description ARISTA01T1 +neighbor fc00::72 timers 3 10 +neighbor fc00::72 timers connect 10 +neighbor fc00::76 remote-as 64600 +neighbor fc00::76 peer-group PEER_V6 +neighbor fc00::76 description ARISTA02T1 +neighbor fc00::76 timers 3 10 +neighbor fc00::76 timers connect 10 +neighbor fc00::7a remote-as 64600 +neighbor fc00::7a peer-group PEER_V6 +neighbor fc00::7a description ARISTA03T1 +neighbor fc00::7a timers 3 10 +neighbor fc00::7a timers connect 10 +neighbor fc00::7e remote-as 64600 +neighbor fc00::7e peer-group PEER_V6 +neighbor fc00::7e description ARISTA04T1 +neighbor fc00::7e timers 3 10 +neighbor fc00::7e timers connect 10 +bgp listen range 10.255.0.0/25 peer-group BGPSLBPassive +bgp listen range 192.168.0.0/21 peer-group BGPVac diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 720c14d16..a3a4f1c08 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -49,7 +49,9 @@ "tx1power": "N/A", "tx2power": "N/A", "tx3power": "N/A", - "tx4power": "N/A", + "tx4power": "N/A" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet0": { "rxpowerhighalarm": "3.4001", "rxpowerhighwarning": "2.4000", "rxpowerlowalarm": "-13.5067", @@ -74,7 +76,7 @@ "manufacturer": "INNOLIGHT", "model": "C-DQ8FNM010-N00", "vendor_oui": "44-7c-7f", - "vendor_date": "2020-05-22 ", + "vendor_date": "2020-05-22", "connector": "No separable connector", "encoding": "Not supported for CMIS cables", "ext_identifier": "Power Class 1(10.0W Max)", @@ -83,7 +85,7 @@ "cable_length": "10", "specification_compliance": "Not supported for CMIS cables", "nominal_bit_rate": "Not supported for CMIS cables", - "application_advertisement": "400GAUI-8 C2M (Annex 120E) - Active Cable assembly with BER < 2.6x10^-4\n\t\t\t\t IB EDR (Arch.Spec.Vol.2) - Active Cable assembly with BER < 5x10^-5\n\t\t\t\t IB QDR (Arch.Spec.Vol.2) - Active Cable assembly with BER < 10^-12\n\t\t\t\t " + "application_advertisement": "400GAUI-8 C2M (Annex 120E) - Active Cable assembly with BER < 2.6x10^-4\n\t\t\t\t IB EDR (Arch.Spec.Vol.2) - Active Cable assembly with BER < 5x10^-5\n\t\t\t\t IB QDR (Arch.Spec.Vol.2) - Active Cable assembly with BER < 10^-12" }, "TRANSCEIVER_DOM_SENSOR|Ethernet8": { "temperature": "44.9883", @@ -111,7 +113,9 @@ "tx5power": "1.175", "tx6power": "1.175", "tx7power": "1.175", - "tx8power": "1.175", + "tx8power": "1.175" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet8": { "rxpowerhighalarm": "6.9999", "rxpowerhighwarning": "4.9999", "rxpowerlowalarm": "-11.9044", @@ -205,13 +209,508 @@ "nominal_bit_rate": "N/A", "application_advertisement": "N/A" }, + "TRANSCEIVER_INFO|Ethernet40": { + "type": "QSFP-DD Double Density 8X Pluggable Transceiver", + "vendor_rev": "2A", + "serial": "INKAO2900002A", + "manufacturer": "INNOLIGHT", + "model": "C-DQ8FNM010-N00", + "vendor_oui": "44-7c-7f", + "vendor_date": "2020-05-22", + "connector": "No separable connector", + "encoding": "Not supported for CMIS cables", + "ext_identifier": "Power Class 1(10.0W Max)", + "ext_rateselect_compliance": "Not supported for CMIS cables", + "cable_type": "Length Cable Assembly(m)", + "cable_length": "10", + "specification_compliance": "Not supported for CMIS cables", + "nominal_bit_rate": "Not supported for CMIS cables", + "application_advertisement": "{1: {'host_electrical_interface_id': '400G CR8', 'module_media_interface_id': 'Copper cable', 'media_lane_count': 8, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 2}, 2: {'host_electrical_interface_id': '200GBASE-CR4 (Clause 136)'}}" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet44":{ + "temphighalarm": "80.0", + "templowalarm": "-5.0", + "temphighwarning": "75.0", + "templowwarning": "0.0", + "vcchighalarm": "3.45", + "vcclowalarm": "3.1", + "vcchighwarning": "3.4", + "vcclowwarning": "3.15", + "rxpowerhighalarm": "2.0", + "rxpowerlowalarm": "-21.024", + "rxpowerhighwarning": "0.0", + "rxpowerlowwarning": "-18.013", + "txpowerhighalarm": "-5.0", + "txpowerlowalarm": "-16.99", + "txpowerhighwarning": "-6.0", + "txpowerlowwarning": "-16.003", + "txbiashighalarm": "450.0", + "txbiaslowalarm": "100.0", + "txbiashighwarning": "420.0", + "txbiaslowwarning": "110.0", + "lasertemphighalarm": "80.0", + "lasertemplowalarm": "-5.0", + "lasertemphighwarning": "75.0", + "lasertemplowwarning": "0.0", + "prefecberhighalarm": "0.0125", + "prefecberlowalarm": "0.0", + "prefecberhighwarning": "0.011000000000000001", + "prefecberlowwarning": "0.0", + "postfecberhighalarm": "1000", + "postfecberlowalarm": "0.0", + "postfecberhighwarning": "1.0", + "postfecberlowwarning": "0.0", + "biasxihighalarm": "99.00053406576639", + "biasxilowalarm": "0.9994659342336156", + "biasxihighwarning": "94.99961852445259", + "biasxilowwarning": "5.000381475547417", + "biasxqhighalarm": "99.00053406576639", + "biasxqlowalarm": "0.9994659342336156", + "biasxqhighwarning": "94.99961852445259", + "biasxqlowwarning": "5.000381475547417", + "biasxphighalarm": "99.00053406576639", + "biasxplowalarm": "0.9994659342336156", + "biasxphighwarning": "94.99961852445259", + "biasxplowwarning": "5.000381475547417", + "biasyihighalarm": "99.00053406576639", + "biasyilowalarm": "0.9994659342336156", + "biasyihighwarning": "94.99961852445259", + "biasyilowwarning": "5.000381475547417", + "biasyqhighalarm": "99.00053406576639", + "biasyqlowalarm": "0.9994659342336156", + "biasyqhighwarning": "94.99961852445259", + "biasyqlowwarning": "5.000381475547417", + "biasyphighalarm": "99.00053406576639", + "biasyplowalarm": "0.9994659342336156", + "biasyphighwarning": "94.99961852445259", + "biasyplowwarning": "5.000381475547417", + "cdshorthighalarm": "1000", + "cdshortlowalarm": "-1000", + "cdshorthighwarning": "500", + "cdshortlowwarning": "-500", + "cdlonghighalarm": "400000", + "cdlonglowalarm": "-400000", + "cdlonghighwarning": "200000", + "cdlonglowwarning": "-200000", + "dgdhighalarm": "7.0", + "dgdlowalarm": "0.0", + "dgdhighwarning": "7.0", + "dgdlowwarning": "0.0", + "sopmdhighalarm": "655.35", + "sopmdlowalarm": "0.0", + "sopmdhighwarning": "655.35", + "sopmdlowwarning": "0.0", + "pdlhighalarm": "4.0", + "pdllowalarm": "0.0", + "pdlhighwarning": "4.0", + "pdllowwarning": "0.0", + "osnrhighalarm": "99.0", + "osnrlowalarm": "0.0", + "osnrhighwarning": "99.0", + "osnrlowwarning": "0.0", + "esnrhighalarm": "99.0", + "esnrlowalarm": "0.0", + "esnrhighwarning": "99.0", + "esnrlowwarning": "0.0", + "cfohighalarm": "3800", + "cfolowalarm": "-3800", + "cfohighwarning": "3800", + "cfolowwarning": "-3800", + "txcurrpowerhighalarm": "-5.0", + "txcurrpowerlowalarm": "-17.0", + "txcurrpowerhighwarning": "-6.0", + "txcurrpowerlowwarning": "-16.0", + "rxtotpowerhighalarm": "2.0", + "rxtotpowerlowalarm": "-21.0", + "rxtotpowerhighwarning": "0.0", + "rxtotpowerlowwarning": "-18.0", + "rxsigpowerhighalarm": "13.0", + "rxsigpowerlowalarm": "-18.0", + "rxsigpowerhighwarning": "10.0", + "rxsigpowerlowwarning": "-15.0" + }, + "TRANSCEIVER_PM|Ethernet44":{ + "prefec_ber_avg": "0.00046578129838019075", + "prefec_ber_min": "0.00045750117895600233", + "prefec_ber_max": "0.000575639239547097", + "uncorr_frames_avg": "0.0", + "uncorr_frames_min": "0.0", + "uncorr_frames_max": "0.0", + "cd_avg": "0", + "cd_min": "0", + "cd_max": "0", + "dgd_avg": "5.56", + "dgd_min": "5.37", + "dgd_max": "5.81", + "sopmd_avg": "0.0", + "sopmd_min": "0.0", + "sopmd_max": "0.0", + "pdl_avg": "0.6", + "pdl_min": "0.5", + "pdl_max": "0.6", + "osnr_avg": "36.5", + "osnr_min": "36.5", + "osnr_max": "36.5", + "esnr_avg": "30.5", + "esnr_min": "30.5", + "esnr_max": "30.5", + "cfo_avg": "70", + "cfo_min": "54", + "cfo_max": "121", + "evm_avg": "100.0", + "evm_min": "100.0", + "evm_max": "100.0", + "soproc_avg": "1", + "soproc_min": "1", + "soproc_max": "2", + "tx_power_avg": "-8.23", + "tx_power_min": "-8.22", + "tx_power_max": "-8.24", + "rx_tot_power_avg": "-10.62", + "rx_tot_power_min": "-10.61", + "rx_tot_power_max": "-10.62", + "rx_sig_power_avg": "0", + "rx_sig_power_min": "-40", + "rx_sig_power_max": "40" + }, + "TRANSCEIVER_STATUS|Ethernet44":{ + "DP1State": "DataPathActivated", + "DP2State": "DataPathActivated", + "DP3State": "DataPathActivated", + "DP4State": "DataPathActivated", + "DP5State": "DataPathActivated", + "DP6State": "DataPathActivated", + "DP7State": "DataPathActivated", + "DP8State": "DataPathActivated", + "biasxihighalarm_flag": "False", + "biasxihighwarning_flag": "False", + "biasxilowalarm_flag": "False", + "biasxilowwarning_flag": "False", + "biasxphighalarm_flag": "False", + "biasxphighwarning_flag": "False", + "biasxplowalarm_flag": "False", + "biasxplowwarning_flag": "False", + "biasxqhighalarm_flag": "False", + "biasxqhighwarning_flag": "False", + "biasxqlowalarm_flag": "False", + "biasxqlowwarning_flag": "False", + "biasyihighalarm_flag": "False", + "biasyihighwarning_flag": "False", + "biasyilowalarm_flag": "False", + "biasyilowwarning_flag": "False", + "biasyphighalarm_flag": "False", + "biasyphighwarning_flag": "False", + "biasyplowalarm_flag": "False", + "biasyplowwarning_flag": "False", + "biasyqhighalarm_flag": "False", + "biasyqhighwarning_flag": "False", + "biasyqlowalarm_flag": "False", + "biasyqlowwarning_flag": "False", + "cdlonghighalarm_flag": "False", + "cdlonghighwarning_flag": "False", + "cdlonglowalarm_flag": "False", + "cdlonglowwarning_flag": "False", + "cdshorthighalarm_flag": "False", + "cdshorthighwarning_flag": "False", + "cdshortlowalarm_flag": "False", + "cdshortlowwarning_flag": "False", + "cfohighalarm_flag": "False", + "cfohighwarning_flag": "False", + "cfolowalarm_flag": "False", + "cfolowwarning_flag": "False", + "config_state_hostlane1": "ConfigSuccess", + "config_state_hostlane2": "ConfigSuccess", + "config_state_hostlane3": "ConfigSuccess", + "config_state_hostlane4": "ConfigSuccess", + "config_state_hostlane5": "ConfigSuccess", + "config_state_hostlane6": "ConfigSuccess", + "config_state_hostlane7": "ConfigSuccess", + "config_state_hostlane8": "ConfigSuccess", + "datapath_firmware_fault": "False", + "dgdhighalarm_flag": "False", + "dgdhighwarning_flag": "False", + "dgdlowalarm_flag": "False", + "dgdlowwarning_flag": "False", + "dpinit_pending_hostlane1": "False", + "dpinit_pending_hostlane2": "False", + "dpinit_pending_hostlane3": "False", + "dpinit_pending_hostlane4": "False", + "dpinit_pending_hostlane5": "False", + "dpinit_pending_hostlane6": "False", + "dpinit_pending_hostlane7": "False", + "dpinit_pending_hostlane8": "False", + "error": "N/A", + "esnrhighalarm_flag": "False", + "esnrhighwarning_flag": "False", + "esnrlowalarm_flag": "False", + "esnrlowwarning_flag": "False", + "fine_tuning_oor": "False", + "invalid_channel_num": "False", + "lasertemphighalarm_flag": "False", + "lasertemphighwarning_flag": "False", + "lasertemplowalarm_flag": "False", + "lasertemplowwarning_flag": "False", + "module_fault_cause": "No Fault detected", + "module_firmware_fault": "False", + "module_state": "ModuleReady", + "module_state_changed": "False", + "osnrhighalarm_flag": "False", + "osnrhighwarning_flag": "False", + "osnrlowalarm_flag": "False", + "osnrlowwarning_flag": "False", + "pdlhighalarm_flag": "False", + "pdlhighwarning_flag": "False", + "pdllowalarm_flag": "False", + "pdllowwarning_flag": "False", + "postfecberhighalarm_flag": "False", + "postfecberhighwarning_flag": "False", + "postfecberlowalarm_flag": "False", + "postfecberlowwarning_flag": "False", + "prefecberhighalarm_flag": "False", + "prefecberhighwarning_flag": "False", + "prefecberlowalarm_flag": "False", + "prefecberlowwarning_flag": "False", + "rxcdrlol1": "False", + "rxcdrlol2": "False", + "rxcdrlol3": "False", + "rxcdrlol4": "False", + "rxcdrlol5": "False", + "rxcdrlol6": "False", + "rxcdrlol7": "False", + "rxcdrlol8": "False", + "rxlos1": "False", + "rxlos2": "False", + "rxlos3": "False", + "rxlos4": "False", + "rxlos5": "False", + "rxlos6": "False", + "rxlos7": "False", + "rxlos8": "False", + "rxoutput_status_hostlane1": "True", + "rxoutput_status_hostlane2": "True", + "rxoutput_status_hostlane3": "True", + "rxoutput_status_hostlane4": "True", + "rxoutput_status_hostlane5": "True", + "rxoutput_status_hostlane6": "True", + "rxoutput_status_hostlane7": "True", + "rxoutput_status_hostlane8": "True", + "rxpowerhighalarm_flag1": "False", + "rxpowerhighalarm_flag2": "False", + "rxpowerhighalarm_flag3": "False", + "rxpowerhighalarm_flag4": "False", + "rxpowerhighalarm_flag5": "False", + "rxpowerhighalarm_flag6": "False", + "rxpowerhighalarm_flag7": "False", + "rxpowerhighalarm_flag8": "False", + "rxpowerhighwarning_flag1": "False", + "rxpowerhighwarning_flag2": "False", + "rxpowerhighwarning_flag3": "False", + "rxpowerhighwarning_flag4": "False", + "rxpowerhighwarning_flag5": "False", + "rxpowerhighwarning_flag6": "False", + "rxpowerhighwarning_flag7": "False", + "rxpowerhighwarning_flag8": "False", + "rxpowerlowalarm_flag1": "False", + "rxpowerlowalarm_flag2": "False", + "rxpowerlowalarm_flag3": "False", + "rxpowerlowalarm_flag4": "False", + "rxpowerlowalarm_flag5": "False", + "rxpowerlowalarm_flag6": "False", + "rxpowerlowalarm_flag7": "False", + "rxpowerlowalarm_flag8": "False", + "rxpowerlowwarning_flag1": "False", + "rxpowerlowwarning_flag2": "False", + "rxpowerlowwarning_flag3": "False", + "rxpowerlowwarning_flag4": "False", + "rxpowerlowwarning_flag5": "False", + "rxpowerlowwarning_flag6": "False", + "rxpowerlowwarning_flag7": "False", + "rxpowerlowwarning_flag8": "False", + "rxtotpowerhighalarm_flag": "False", + "rxtotpowerhighwarning_flag": "False", + "rxtotpowerlowalarm_flag": "False", + "rxtotpowerlowwarning_flag": "False", + "status": "1", + "target_output_power_oor": "False", + "temphighalarm_flag": "False", + "temphighwarning_flag": "False", + "templowalarm_flag": "False", + "templowwarning_flag": "False", + "tuning_complete": "False", + "tuning_in_progress": "False", + "tuning_not_accepted": "False", + "txbiashighalarm_flag1": "False", + "txbiashighalarm_flag2": "False", + "txbiashighalarm_flag3": "False", + "txbiashighalarm_flag4": "False", + "txbiashighalarm_flag5": "False", + "txbiashighalarm_flag6": "False", + "txbiashighalarm_flag7": "False", + "txbiashighalarm_flag8": "False", + "txbiashighwarning_flag1": "False", + "txbiashighwarning_flag2": "False", + "txbiashighwarning_flag3": "False", + "txbiashighwarning_flag4": "False", + "txbiashighwarning_flag5": "False", + "txbiashighwarning_flag6": "False", + "txbiashighwarning_flag7": "False", + "txbiashighwarning_flag8": "False", + "txbiaslowalarm_flag1": "False", + "txbiaslowalarm_flag2": "False", + "txbiaslowalarm_flag3": "False", + "txbiaslowalarm_flag4": "False", + "txbiaslowalarm_flag5": "False", + "txbiaslowalarm_flag6": "False", + "txbiaslowalarm_flag7": "False", + "txbiaslowalarm_flag8": "False", + "txbiaslowwarning_flag1": "False", + "txbiaslowwarning_flag2": "False", + "txbiaslowwarning_flag3": "False", + "txbiaslowwarning_flag4": "False", + "txbiaslowwarning_flag5": "False", + "txbiaslowwarning_flag6": "False", + "txbiaslowwarning_flag7": "False", + "txbiaslowwarning_flag8": "False", + "txcdrlol_hostlane1": "False", + "txcdrlol_hostlane2": "False", + "txcdrlol_hostlane3": "False", + "txcdrlol_hostlane4": "False", + "txcdrlol_hostlane5": "False", + "txcdrlol_hostlane6": "False", + "txcdrlol_hostlane7": "False", + "txcdrlol_hostlane8": "False", + "txcurrpowerhighalarm_flag": "False", + "txcurrpowerhighwarning_flag": "False", + "txcurrpowerlowalarm_flag": "False", + "txcurrpowerlowwarning_flag": "False", + "tx_disabled_channel": "0", + "tx1disable": "False", + "tx2disable": "False", + "tx3disable": "False", + "tx4disable": "False", + "tx5disable": "False", + "tx6disable": "False", + "tx7disable": "False", + "tx8disable": "False", + "txfault1": "False", + "txfault2": "False", + "txfault3": "False", + "txfault4": "False", + "txfault5": "False", + "txfault6": "False", + "txfault7": "False", + "txfault8": "False", + "txlos_hostlane1": "False", + "txlos_hostlane2": "False", + "txlos_hostlane3": "False", + "txlos_hostlane4": "False", + "txlos_hostlane5": "False", + "txlos_hostlane6": "False", + "txlos_hostlane7": "False", + "txlos_hostlane8": "False", + "txoutput_status1": "False", + "txoutput_status2": "False", + "txoutput_status3": "False", + "txoutput_status4": "False", + "txoutput_status5": "False", + "txoutput_status6": "False", + "txoutput_status7": "False", + "txoutput_status8": "False", + "txpowerhighalarm_flag1": "False", + "txpowerhighalarm_flag2": "False", + "txpowerhighalarm_flag3": "False", + "txpowerhighalarm_flag4": "False", + "txpowerhighalarm_flag5": "False", + "txpowerhighalarm_flag6": "False", + "txpowerhighalarm_flag7": "False", + "txpowerhighalarm_flag8": "False", + "txpowerhighwarning_flag1": "False", + "txpowerhighwarning_flag2": "False", + "txpowerhighwarning_flag3": "False", + "txpowerhighwarning_flag4": "False", + "txpowerhighwarning_flag5": "False", + "txpowerhighwarning_flag6": "False", + "txpowerhighwarning_flag7": "False", + "txpowerhighwarning_flag8": "False", + "txpowerlowalarm_flag1": "False", + "txpowerlowalarm_flag2": "False", + "txpowerlowalarm_flag3": "False", + "txpowerlowalarm_flag4": "False", + "txpowerlowalarm_flag5": "False", + "txpowerlowalarm_flag6": "False", + "txpowerlowalarm_flag7": "False", + "txpowerlowalarm_flag8": "False", + "txpowerlowwarning_flag1": "False", + "txpowerlowwarning_flag2": "False", + "txpowerlowwarning_flag3": "False", + "txpowerlowwarning_flag4": "False", + "txpowerlowwarning_flag5": "False", + "txpowerlowwarning_flag6": "False", + "txpowerlowwarning_flag7": "False", + "txpowerlowwarning_flag8": "False", + "vcchighalarm_flag": "False", + "vcchighwarning_flag": "False", + "vcclowalarm_flag": "False", + "vcclowwarning_flag": "False", + "wavelength_unlock_status": "False" + }, + "TRANSCEIVER_INFO|Ethernet64": { + "type" : "QSFP-DD Double Density 8X Pluggable Transceiver", + "hardware_rev" : "X.X", + "serial" : "0123456789", + "manufacturer" : "XXXX", + "model" : "XXX", + "connector" : "LC", + "encoding" : "N/A", + "ext_identifier" : "Power Class 8 (20.0W Max)", + "ext_rateselect_compliance" : "N/A", + "cable_type" : "Length Cable Assembly(m)", + "cable_length" : "0.0", + "nominal_bit_rate" : "0", + "specification_compliance" : "sm_media_interface", + "vendor_date" : "2021-11-19", + "vendor_oui" : "XX-XX-XX", + "application_advertisement" : "{1: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 2: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, Single Wavelength, Unamplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 3: {'host_electrical_interface_id': '100GAUI-2 C2M (Annex 135G)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 2, 'host_lane_assignment_options': 85, 'media_lane_assignment_options': 1}}", + "host_lane_count" : "8", + "media_lane_count" : "1", + "active_apsel_hostlane1" : "1", + "active_apsel_hostlane2" : "1", + "active_apsel_hostlane3" : "1", + "active_apsel_hostlane4" : "1", + "active_apsel_hostlane5" : "1", + "active_apsel_hostlane6" : "1", + "active_apsel_hostlane7" : "1", + "active_apsel_hostlane8" : "1", + "media_interface_technology" : "1550 nm DFB", + "vendor_rev" : "XX", + "cmis_rev" : "4.1", + "active_firmware" : "X.X", + "inactive_firmware" : "X.X", + "supported_max_tx_power" : "4.0", + "supported_min_tx_power" : "-22.9", + "supported_max_laser_freq" : "196100", + "supported_min_laser_freq" : "191300" + }, "TRANSCEIVER_STATUS|Ethernet0": { "status": "67", "error": "Blocking Error|High temperature" }, "TRANSCEIVER_STATUS|Ethernet4": { "status": "1", - "error": "N/A" + "error": "N/A", + "rxlos1": "False", + "rxlos2": "False", + "rxlos3": "False", + "rxlos4": "False", + "txfault1": "False", + "txfault2": "False", + "txfault3": "False", + "txfault4": "False", + "tx1disable": "False", + "tx2disable": "False", + "tx3disable": "False", + "tx4disable": "False", + "tx_disabled_channel": "0" }, "TRANSCEIVER_STATUS|Ethernet8": { "status": "0", @@ -221,6 +720,22 @@ "status": "255", "error": "N/A" }, + "TRANSCEIVER_STATUS|Ethernet16": { + "status": "0", + "error": "N/A" + }, + "TRANSCEIVER_STATUS|Ethernet28": { + "status": "0", + "error": "N/A" + }, + "TRANSCEIVER_STATUS|Ethernet36": { + "status": "255", + "error": "Unknown" + }, + "TRANSCEIVER_STATUS|Ethernet40": { + "status": "0", + "error": "N/A" + }, "CHASSIS_INFO|chassis 1": { "psu_num": "2" }, @@ -353,6 +868,48 @@ "Name": "CRC-32", "Value": "0xAC518FB3" }, + "MUX_CABLE_INFO|Ethernet0": { + "version_peer_next": "0.2MS", + "version_peer_active": "0.2MS", + "version_peer_inactive": "0.2MS", + "version_nic_next": "0.2MS", + "version_nic_active": "0.2MS", + "version_nic_inactive": "0.2MS", + "version_self_next": "0.2MS", + "version_self_active": "0.2MS", + "version_self_inactive": "0.2MS", + "peer_mux_direction": "active", + "self_mux_direction": "active", + "grpc_connection_status": "READY", + "Value": "AABB" + }, + "MUX_CABLE_INFO|Ethernet4": { + "version_peer_next": "0.2MS", + "version_peer_active": "0.2MS", + "version_peer_inactive": "0.2MS", + "version_nic_next": "0.2MS", + "version_nic_active": "0.2MS", + "version_nic_inactive": "0.2MS", + "version_self_next": "0.2MS", + "version_self_active": "0.2MS", + "version_self_inactive": "0.2MS", + "peer_mux_direction": "active", + "self_mux_direction": "standby", + "grpc_connection_status": "READY", + "Value": "AABB" + }, + "MUX_CABLE_INFO|Ethernet12": { + "version_peer_next": "0.1MS", + "version_peer_active": "0.1MS", + "version_peer_inactive": "0.1MS", + "version_nic_next": "0.1MS", + "version_nic_active": "0.1MS", + "version_nic_inactive": "0.1MS", + "version_self_next": "0.1MS", + "version_self_active": "0.1MS", + "version_self_inactive": "0.1MS", + "Value": "AABB" + }, "SWITCH_CAPABILITY|switch": { "MIRROR": "true", "MIRRORV6": "true", @@ -555,27 +1112,32 @@ "CHASSIS_MODULE_TABLE|SUPERVISOR0": { "desc": "supervisor-card", "oper_status": "Online", - "slot": "16" + "slot": "16", + "serial": "RP1000101" }, "CHASSIS_MODULE_TABLE|LINE-CARD0": { "desc": "line-card", "oper_status": "Empty", - "slot": "1" + "slot": "1", + "serial": "LC1000101" }, "CHASSIS_MODULE_TABLE|LINE-CARD1": { "desc": "line-card", "oper_status": "Online", - "slot": "2" + "slot": "2", + "serial": "LC1000102" }, "CHASSIS_MODULE_TABLE|FABRIC-CARD0": { "desc": "fabric-card", "oper_status": "Online", - "slot": "17" + "slot": "17", + "serial": "FC1000101" }, "CHASSIS_MODULE_TABLE|FABRIC-CARD1": { "desc": "fabric-card", "oper_status": "Offline", - "slot": "18" + "slot": "18", + "serial": "FC1000102" }, "MUX_CABLE_TABLE|Ethernet32": { "state": "active" @@ -670,11 +1232,11 @@ "max_queues": "20", "max_priority_groups": "8" }, - "CHASSIS_MIDPLANE_TABLE|SUPERVISOR0": { + "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { "ip_address": "192.168.1.100", "access": "True" }, - "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { + "CHASSIS_MIDPLANE_TABLE|LINE-CARD2": { "ip_address": "192.168.1.1", "access": "True" }, @@ -685,10 +1247,17 @@ "PORT_TABLE|Ethernet0": { "rmt_adv_speeds" : "10,100,1000", "speed" : "100000", - "supported_speeds": "10000,25000,40000,100000" + "supported_speeds": "10000,25000,40000,100000", + "supported_fecs": "rs,none,test", + "link_training_status": "not_trained" + }, + "PORT_TABLE|Ethernet32": { + "link_training_status": "trained" }, "PORT_TABLE|Ethernet112": { - "speed": "40000" + "speed": "40000", + "supported_fecs": "N/A", + "link_training_status": "off" }, "PCIE_DEVICE|00:01.0": { "correctable|BadDLLP": "0", @@ -823,5 +1392,111 @@ "admin_status": "up", "mtu": "9100", "speed": "1000" + }, + "LINK_TRAINING|Ethernet0": { + "status": "not_trained" + }, + "LINK_TRAINING|Ethernet32": { + "status": "trained" + }, + "LINK_TRAINING|Ethernet112": { + "status": "off" + }, + "VNET_ROUTE_TUNNEL_TABLE|test_v4_in_v4-0|160.162.191.1/32": { + "active_endpoints":"100.251.7.1", + "state":"active" + }, + "VNET_ROUTE_TUNNEL_TABLE|test_v4_in_v4-0|160.163.191.1/32": { + "active_endpoints":"100.251.7.1", + "state":"active" + }, + "VNET_ROUTE_TUNNEL_TABLE|Vnet_v6_in_v6-0|fddd:a156:a251::a6:1/128": { + "active_endpoints":"fddd:a100:a251::a10:1,fddd:a101:a251::a10:1,fddd:a102:a251::a10:1,fddd:a103:a251::a10:1", + "state":"active" + }, + "BFD_SESSION_TABLE|default|default|100.251.7.1": { + "state":"Up", + "type": "async_active", + "local_addr" : "10.0.0.1", + "tx_interval" :"300", + "rx_interval" : "500", + "multiplier" : "3", + "multihop": "true" + }, + "BFD_SESSION_TABLE|default|default|fddd:a101:a251::a10:1": { + "state":"Down", + "type": "async_active", + "local_addr" : "fddd:c101:a251::a10:2", + "tx_interval" :"300", + "rx_interval" : "500", + "multiplier" : "3", + "multihop": "true" + }, + "VNET_ROUTE_TUNNEL_TABLE|test_v4_in_v4-0|160.162.191.1/32": { + "active_endpoints":"100.251.7.1", + "state":"active" + }, + "VNET_ROUTE_TUNNEL_TABLE|test_v4_in_v4-0|160.163.191.1/32": { + "active_endpoints":"100.251.7.1", + "state":"active" + }, + "VNET_ROUTE_TUNNEL_TABLE|Vnet_v6_in_v6-0|fddd:a156:a251::a6:1/128": { + "active_endpoints":"fddd:a100:a251::a10:1,fddd:a101:a251::a10:1", + "state":"active" + }, + "ADVERTISE_NETWORK_TABLE|160.63.191.1/32": { + "profile": "FROM_SDN_SLB_ROUTES" + }, + "ADVERTISE_NETWORK_TABLE|160.62.191.1/32": { + "profile": "FROM_SDN_SLB_ROUTES" + }, + "ADVERTISE_NETWORK_TABLE|160.64.191.1/32": { + "profile": "FROM_SDN_SLB_ROUTES" + }, + "ADVERTISE_NETWORK_TABLE|fddd:a150:a251::a6:1/128": { + "profile": "FROM_SDN_SLB_ROUTES" + }, + "ADVERTISE_NETWORK_TABLE|fccc:a250:a251::a6:1/128": { + "profile": "" + }, + "FABRIC_PORT_TABLE|PORT0" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "79" + }, + "FABRIC_PORT_TABLE|PORT1" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT2" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "94" + }, + "FABRIC_PORT_TABLE|PORT3" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT4" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "85" + }, + "FABRIC_PORT_TABLE|PORT5" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT6" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "84" + }, + "FABRIC_PORT_TABLE|PORT7" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "93" + }, + "ACL_TABLE_TABLE|DATAACL_5" : { + "status": "Active" + }, + "ACL_RULE_TABLE|DATAACL_5|RULE_1" : { + "status": "Active" } } diff --git a/tests/multi_asic_intfutil_test.py b/tests/multi_asic_intfutil_test.py index 56e11fa0d..37e5b5b0f 100644 --- a/tests/multi_asic_intfutil_test.py +++ b/tests/multi_asic_intfutil_test.py @@ -10,18 +10,18 @@ scripts_path = os.path.join(modules_path, "scripts") intf_status_all = """\ - Interface Lanes Speed MTU FEC Alias Vlan Oper Admin Type Asym PFC ---------------- ------------ ------- ----- ----- -------------- --------------- ------ ------- --------------- ---------- - Ethernet0 33,34,35,36 40G 9100 N/A Ethernet1/1 PortChannel1002 up up QSFP28 or later off - Ethernet4 29,30,31,32 40G 9100 N/A Ethernet1/2 PortChannel1002 up up N/A off - Ethernet64 29,30,31,32 40G 9100 N/A Ethernet1/17 routed up up QSFP28 or later off - Ethernet-BP0 93,94,95,96 40G 9100 N/A Ethernet-BP0 PortChannel4001 up up N/A off - Ethernet-BP4 97,98,99,100 40G 9100 N/A Ethernet-BP4 PortChannel4001 up up N/A off - Ethernet-BP256 61,62,63,64 40G 9100 N/A Ethernet-BP256 PortChannel4009 up up N/A off - Ethernet-BP260 57,58,59,60 40G 9100 N/A Ethernet-BP260 PortChannel4009 up up N/A off -PortChannel1002 N/A 80G 9100 N/A N/A trunk up up N/A N/A -PortChannel4001 N/A 80G 9100 N/A N/A routed up up N/A N/A -PortChannel4009 N/A 80G 9100 N/A N/A routed up up N/A N/A + Interface Lanes Speed MTU FEC Alias Vlan Oper Admin Type Asym PFC +--------------- ------------ ------- ----- ----- -------------- --------------- ------ ------- ----------------------------------------------- ---------- + Ethernet0 33,34,35,36 40G 9100 N/A Ethernet1/1 PortChannel1002 up up QSFP28 or later off + Ethernet4 29,30,31,32 40G 9100 N/A Ethernet1/2 PortChannel1002 up up N/A off + Ethernet64 29,30,31,32 40G 9100 N/A Ethernet1/17 routed up up QSFP-DD Double Density 8X Pluggable Transceiver off + Ethernet-BP0 93,94,95,96 40G 9100 N/A Ethernet-BP0 PortChannel4001 up up N/A off + Ethernet-BP4 97,98,99,100 40G 9100 N/A Ethernet-BP4 PortChannel4001 up up N/A off + Ethernet-BP256 61,62,63,64 40G 9100 N/A Ethernet-BP256 PortChannel4009 up up N/A off + Ethernet-BP260 57,58,59,60 40G 9100 N/A Ethernet-BP260 PortChannel4009 up up N/A off +PortChannel1002 N/A 80G 9100 N/A N/A trunk up up N/A N/A +PortChannel4001 N/A 80G 9100 N/A N/A routed up up N/A N/A +PortChannel4009 N/A 80G 9100 N/A N/A routed up up N/A N/A """ intf_status = """\ Interface Lanes Speed MTU FEC Alias Vlan Oper Admin Type Asym PFC diff --git a/tests/multi_asic_queue_counter_test.py b/tests/multi_asic_queue_counter_test.py new file mode 100644 index 000000000..c501c6860 --- /dev/null +++ b/tests/multi_asic_queue_counter_test.py @@ -0,0 +1,151 @@ +import imp +import json +import os +import sys + +from click.testing import CliRunner +from unittest import TestCase +from swsscommon.swsscommon import ConfigDBConnector + +from .mock_tables import dbconnector + +import show.main as show +from utilities_common.cli import json_dump +from utilities_common.db import Db +from .utils import get_result_and_return_code + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, test_path) +sys.path.insert(0, modules_path) + + +show_queue_counters = """\ + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +Ethernet0 UC0 68 30 56 74 +Ethernet0 UC1 69 31 55 73 +Ethernet0 UC2 70 32 54 72 +Ethernet0 UC3 71 33 53 71 +Ethernet0 UC4 72 34 52 70 +Ethernet0 UC5 73 35 51 69 +Ethernet0 UC6 74 36 50 68 +Ethernet0 UC7 75 37 49 67 +Ethernet0 MC8 76 38 48 66 +Ethernet0 MC9 77 39 47 65 +Ethernet0 MC10 78 40 46 64 +Ethernet0 MC11 79 41 45 63 +Ethernet0 MC12 80 42 44 62 +Ethernet0 MC13 81 43 43 61 +Ethernet0 MC14 82 44 42 60 +Ethernet0 MC15 83 45 41 59 + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +Ethernet4 UC0 84 46 40 58 +Ethernet4 UC1 85 47 39 57 +Ethernet4 UC2 86 48 38 56 +Ethernet4 UC3 87 49 37 55 +Ethernet4 UC4 88 50 36 54 +Ethernet4 UC5 89 51 35 53 +Ethernet4 UC6 90 52 34 52 +Ethernet4 UC7 91 53 33 51 +Ethernet4 MC8 92 54 32 50 +Ethernet4 MC9 93 55 31 49 +Ethernet4 MC10 94 56 30 48 +Ethernet4 MC11 95 57 29 47 +Ethernet4 MC12 96 58 28 46 +Ethernet4 MC13 97 59 27 45 +Ethernet4 MC14 98 60 26 44 +Ethernet4 MC15 99 61 25 43 + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +------------ ----- -------------- --------------- ----------- ------------ +Ethernet-BP0 UC0 100 62 24 42 +Ethernet-BP0 UC1 101 63 23 41 +Ethernet-BP0 UC2 102 64 22 40 +Ethernet-BP0 UC3 103 65 21 39 +Ethernet-BP0 UC4 104 66 20 38 +Ethernet-BP0 UC5 105 67 19 37 +Ethernet-BP0 UC6 106 68 18 36 +Ethernet-BP0 UC7 107 69 17 35 +Ethernet-BP0 MC8 108 70 16 34 +Ethernet-BP0 MC9 109 71 15 33 +Ethernet-BP0 MC10 110 72 14 32 +Ethernet-BP0 MC11 111 73 13 31 +Ethernet-BP0 MC12 112 74 12 30 +Ethernet-BP0 MC13 113 75 11 29 +Ethernet-BP0 MC14 114 76 10 28 +Ethernet-BP0 MC15 115 77 9 27 + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +------------ ----- -------------- --------------- ----------- ------------ +Ethernet-BP4 UC0 116 78 8 26 +Ethernet-BP4 UC1 117 79 7 25 +Ethernet-BP4 UC2 118 80 6 24 +Ethernet-BP4 UC3 119 81 5 23 +Ethernet-BP4 UC4 120 82 4 22 +Ethernet-BP4 UC5 121 83 3 21 +Ethernet-BP4 UC6 122 84 2 20 +Ethernet-BP4 UC7 123 85 1 19 +Ethernet-BP4 MC8 124 86 0 18 +Ethernet-BP4 MC9 125 87 1 17 +Ethernet-BP4 MC10 126 88 2 16 +Ethernet-BP4 MC11 127 89 3 15 +Ethernet-BP4 MC12 128 90 4 14 +Ethernet-BP4 MC13 129 91 5 13 +Ethernet-BP4 MC14 130 92 6 12 +Ethernet-BP4 MC15 131 93 7 11 + +""" + + +show_queue_counters_port = """\ + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +------------ ----- -------------- --------------- ----------- ------------ +Ethernet-BP4 UC0 116 78 8 26 +Ethernet-BP4 UC1 117 79 7 25 +Ethernet-BP4 UC2 118 80 6 24 +Ethernet-BP4 UC3 119 81 5 23 +Ethernet-BP4 UC4 120 82 4 22 +Ethernet-BP4 UC5 121 83 3 21 +Ethernet-BP4 UC6 122 84 2 20 +Ethernet-BP4 UC7 123 85 1 19 +Ethernet-BP4 MC8 124 86 0 18 +Ethernet-BP4 MC9 125 87 1 17 +Ethernet-BP4 MC10 126 88 2 16 +Ethernet-BP4 MC11 127 89 3 15 +Ethernet-BP4 MC12 128 90 4 14 +Ethernet-BP4 MC13 129 91 5 13 +Ethernet-BP4 MC14 130 92 6 12 +Ethernet-BP4 MC15 131 93 7 11 + +""" + +class TestQueueMultiAsic(object): + @classmethod + def setup_class(cls): + os.environ["PATH"] += os.pathsep + scripts_path + os.environ['UTILITIES_UNIT_TESTING'] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + print("SETUP") + + def test_queue_counters(self): + return_code, result = get_result_and_return_code('queuestat -n asic0') + assert return_code == 0 + print(result) + assert result == show_queue_counters + + def test_queue_counters_port(self): + return_code, result = get_result_and_return_code('queuestat -p Ethernet-BP4 -n asic0') + assert return_code == 0 + print(result) + assert result == show_queue_counters_port + + @classmethod + def teardown_class(cls): + os.environ["PATH"] = os.pathsep.join(os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ['UTILITIES_UNIT_TESTING'] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + print("TEARDOWN") diff --git a/tests/muxcable_test.py b/tests/muxcable_test.py index 30798e391..571509ff9 100644 --- a/tests/muxcable_test.py +++ b/tests/muxcable_test.py @@ -25,25 +25,25 @@ tabular_data_status_output_expected = """\ -PORT STATUS HEALTH HWSTATUS LAST_SWITCHOVER_TIME ----------- -------- --------- ------------ --------------------------- -Ethernet0 active healthy inconsistent 2021-May-13 10:01:15.696728 -Ethernet4 standby healthy consistent -Ethernet8 standby unhealthy consistent -Ethernet12 unknown unhealthy inconsistent -Ethernet16 standby healthy consistent -Ethernet32 active healthy inconsistent +PORT STATUS SERVER_STATUS HEALTH HWSTATUS LAST_SWITCHOVER_TIME +---------- -------- --------------- --------- ------------ --------------------------- +Ethernet0 active active healthy inconsistent 2021-May-13 10:01:15.696728 +Ethernet4 standby standby healthy consistent +Ethernet8 standby standby unhealthy consistent +Ethernet12 active unknown unhealthy inconsistent +Ethernet16 standby standby healthy consistent +Ethernet32 active active healthy inconsistent """ tabular_data_status_output_expected_alias = """\ -PORT STATUS HEALTH HWSTATUS LAST_SWITCHOVER_TIME ------- -------- --------- ------------ --------------------------- -etp1 active healthy inconsistent 2021-May-13 10:01:15.696728 -etp2 standby healthy consistent -etp3 standby unhealthy consistent -etp4 unknown unhealthy inconsistent -etp5 standby healthy consistent -etp9 active healthy inconsistent +PORT STATUS SERVER_STATUS HEALTH HWSTATUS LAST_SWITCHOVER_TIME +------ -------- --------------- --------- ------------ --------------------------- +etp1 active active healthy inconsistent 2021-May-13 10:01:15.696728 +etp2 standby standby healthy consistent +etp3 standby standby unhealthy consistent +etp4 active unknown unhealthy inconsistent +etp5 standby standby healthy consistent +etp9 active active healthy inconsistent """ @@ -52,36 +52,42 @@ "MUX_CABLE": { "Ethernet0": { "STATUS": "active", + "SERVER_STATUS": "active", "HEALTH": "healthy", "HWSTATUS": "inconsistent", "LAST_SWITCHOVER_TIME": "2021-May-13 10:01:15.696728" }, "Ethernet4": { "STATUS": "standby", + "SERVER_STATUS": "standby", "HEALTH": "healthy", "HWSTATUS": "consistent", "LAST_SWITCHOVER_TIME": "" }, "Ethernet8": { "STATUS": "standby", + "SERVER_STATUS": "standby", "HEALTH": "unhealthy", "HWSTATUS": "consistent", "LAST_SWITCHOVER_TIME": "" }, "Ethernet12": { - "STATUS": "unknown", + "STATUS": "active", + "SERVER_STATUS": "unknown", "HEALTH": "unhealthy", "HWSTATUS": "inconsistent", "LAST_SWITCHOVER_TIME": "" }, "Ethernet16": { "STATUS": "standby", + "SERVER_STATUS": "standby", "HEALTH": "healthy", "HWSTATUS": "consistent", "LAST_SWITCHOVER_TIME": "" }, "Ethernet32": { "STATUS": "active", + "SERVER_STATUS": "active", "HEALTH": "healthy", "HWSTATUS": "inconsistent", "LAST_SWITCHOVER_TIME": "" @@ -95,36 +101,42 @@ "MUX_CABLE": { "etp1": { "STATUS": "active", + "SERVER_STATUS": "active", "HEALTH": "healthy", "HWSTATUS": "inconsistent", "LAST_SWITCHOVER_TIME": "2021-May-13 10:01:15.696728" }, "etp2": { "STATUS": "standby", + "SERVER_STATUS": "standby", "HEALTH": "healthy", "HWSTATUS": "consistent", "LAST_SWITCHOVER_TIME": "" }, "etp3": { "STATUS": "standby", + "SERVER_STATUS": "standby", "HEALTH": "unhealthy", "HWSTATUS": "consistent", "LAST_SWITCHOVER_TIME": "" }, "etp4": { - "STATUS": "unknown", + "STATUS": "active", + "SERVER_STATUS": "unknown", "HEALTH": "unhealthy", "HWSTATUS": "inconsistent", "LAST_SWITCHOVER_TIME": "" }, "etp5": { "STATUS": "standby", + "SERVER_STATUS": "standby", "HEALTH": "healthy", "HWSTATUS": "consistent", "LAST_SWITCHOVER_TIME": "" }, "etp9": { "STATUS": "active", + "SERVER_STATUS": "active", "HEALTH": "healthy", "HWSTATUS": "inconsistent", "LAST_SWITCHOVER_TIME": "" @@ -138,30 +150,30 @@ SWITCH_NAME PEER_TOR ------------- ---------- sonic-switch 10.2.2.2 -port state ipv4 ipv6 ----------- ------- -------- -------- +port state ipv4 ipv6 cable_type soc_ipv4 soc_ipv6 +---------- ------- -------- -------- -------------- ---------- ---------- Ethernet0 active 10.2.1.1 e800::46 -Ethernet4 auto 10.3.1.1 e801::46 +Ethernet4 auto 10.3.1.1 e801::46 e801::47 Ethernet8 active 10.4.1.1 e802::46 Ethernet12 active 10.4.1.1 e802::46 -Ethernet16 standby 10.1.1.1 fc00::75 +Ethernet16 standby 10.1.1.1 fc00::75 active-standby Ethernet28 manual 10.1.1.1 fc00::75 -Ethernet32 auto 10.1.1.1 fc00::75 +Ethernet32 auto 10.1.1.1 fc00::75 active-active 10.1.1.2 fc00::76 """ tabular_data_config_output_expected_alias = """\ SWITCH_NAME PEER_TOR ------------- ---------- sonic-switch 10.2.2.2 -port state ipv4 ipv6 ------- ------- -------- -------- +port state ipv4 ipv6 cable_type soc_ipv4 soc_ipv6 +------ ------- -------- -------- -------------- ---------- ---------- etp1 active 10.2.1.1 e800::46 -etp2 auto 10.3.1.1 e801::46 +etp2 auto 10.3.1.1 e801::46 e801::47 etp3 active 10.4.1.1 e802::46 etp4 active 10.4.1.1 e802::46 -etp5 standby 10.1.1.1 fc00::75 +etp5 standby 10.1.1.1 fc00::75 active-standby etp8 manual 10.1.1.1 fc00::75 -etp9 auto 10.1.1.1 fc00::75 +etp9 auto 10.1.1.1 fc00::75 active-active 10.1.1.2 fc00::76 """ json_data_status_config_output_expected = """\ @@ -180,7 +192,8 @@ "STATE": "auto", "SERVER": { "IPv4": "10.3.1.1", - "IPv6": "e801::46" + "IPv6": "e801::46", + "soc_ipv6": "e801::47" } }, "Ethernet8": { @@ -201,7 +214,8 @@ "STATE": "standby", "SERVER": { "IPv4": "10.1.1.1", - "IPv6": "fc00::75" + "IPv6": "fc00::75", + "cable_type": "active-standby" } }, "Ethernet28": { @@ -215,7 +229,10 @@ "STATE": "auto", "SERVER": { "IPv4": "10.1.1.1", - "IPv6": "fc00::75" + "IPv6": "fc00::75", + "cable_type": "active-active", + "soc_ipv4": "10.1.1.2", + "soc_ipv6": "fc00::76" } } } @@ -239,7 +256,8 @@ "STATE": "auto", "SERVER": { "IPv4": "10.3.1.1", - "IPv6": "e801::46" + "IPv6": "e801::46", + "soc_ipv6": "e801::47" } }, "etp3": { @@ -260,7 +278,8 @@ "STATE": "standby", "SERVER": { "IPv4": "10.1.1.1", - "IPv6": "fc00::75" + "IPv6": "fc00::75", + "cable_type": "active-standby" } }, "etp8": { @@ -274,7 +293,10 @@ "STATE": "auto", "SERVER": { "IPv4": "10.1.1.1", - "IPv6": "fc00::75" + "IPv6": "fc00::75", + "cable_type": "active-active", + "soc_ipv4": "10.1.1.2", + "soc_ipv6": "fc00::76" } } } @@ -360,18 +382,78 @@ } """ +show_muxcable_grpc_muxdirection_active_expected_output = """\ +Port Direction Presence PeerDirection ConnectivityState +---------- ----------- ---------- --------------- ------------------- +Ethernet12 active True active READY +""" + +show_muxcable_grpc_muxdirection_standby_expected_output = """\ +Port Direction Presence PeerDirection ConnectivityState +--------- ----------- ---------- --------------- ------------------- +Ethernet4 standby True active READY +""" + +show_muxcable_grpc_muxdirection_active_expected_all_output = """\ +Port Direction Presence PeerDirection ConnectivityState +--------- ----------- ---------- --------------- ------------------- +Ethernet0 active False active READY +""" + +show_muxcable_grpc_muxdirection_active_expected_all_output_json = """\ +{ + "HWMODE": { + "Ethernet0": { + "Direction": "active", + "Presence": "False", + "PeerDirection": "active", + "ConnectivityState": "READY" + } + } +} +""" + +show_muxcable_grpc_muxdirection_standby_expected_output_json = """\ +{ + "HWMODE": { + "Ethernet4": { + "Direction": "standby", + "Presence": "True", + "PeerDirection": "active", + "ConnectivityState": "READY" + } + } +} +""" + expected_muxcable_cableinfo_output = """\ Vendor Model -------- --------------- Credo CACL1X321P2PA1M """ +expected_muxcable_cableinfo_invalid_port_output = """\ +Invalid port 'abc' +ERR: Unable to get a port on muxcable port +""" + show_muxcable_hwmode_muxdirection_active_expected_output = """\ Port Direction Presence ---------- ----------- ---------- Ethernet12 active True """ +show_muxcable_hwmode_muxdirection_active_expected_output_json = """\ +{ + "HWMODE": { + "Ethernet12": { + "Direction": "active", + "Presence": "True" + } + } +} +""" + show_muxcable_hwmode_muxdirection_active_expected_output_alias = """\ Port Direction Presence ------ ----------- ---------- @@ -404,6 +486,34 @@ } """ +show_muxcable_firmware_version_all_expected_output = """\ +{ + "Ethernet12": { + "version_nic_active": "0.1MS", + "version_nic_inactive": "0.1MS", + "version_nic_next": "0.1MS", + "version_peer_active": "0.1MS", + "version_peer_inactive": "0.1MS", + "version_peer_next": "0.1MS", + "version_self_active": "0.1MS", + "version_self_inactive": "0.1MS", + "version_self_next": "0.1MS" + } +} +""" + +show_muxcable_firmware_version_all_active_expected_output = """\ +{ + "Ethernet12": { + "version_nic_active": "0.1MS", + "version_peer_active": "0.1MS", + "version_self_active": "0.1MS" + } +} +""" + + + show_muxcable_firmware_version_active_expected_output = """\ { "version_self_active": "0.6MS", @@ -459,6 +569,104 @@ } """ +show_muxcable_tunnel_route_expected_output_json="""\ +{ + "TUNNEL_ROUTE": { + "Ethernet0": { + "server_ipv4": { + "DEST": "10.2.1.1", + "kernel": 1, + "asic": 1 + } + }, + "Ethernet4": { + "server_ipv4": { + "DEST": "10.3.1.1", + "kernel": 1, + "asic": false + } + }, + "Ethernet32": { + "soc_ipv6": { + "DEST": "fc00::76", + "kernel": false, + "asic": 1 + } + } + } +} +""" + +show_muxcable_tunnel_route_expected_output="""\ +PORT DEST_TYPE DEST_ADDRESS kernel asic +---------- ----------- -------------- -------- ------ +Ethernet0 server_ipv4 10.2.1.1 added added +Ethernet4 server_ipv4 10.3.1.1 added - +Ethernet32 soc_ipv6 fc00::76 - added +""" + +show_muxcable_tunnel_route_expected_output_port_json="""\ +{ + "TUNNEL_ROUTE": { + "Ethernet0": { + "server_ipv4": { + "DEST": "10.2.1.1", + "kernel": 1, + "asic": 1 + } + } + } +} +""" + +show_muxcable_tunnel_route_expected_port_output="""\ +PORT DEST_TYPE DEST_ADDRESS kernel asic +--------- ----------- -------------- -------- ------ +Ethernet0 server_ipv4 10.2.1.1 added added +""" + + +show_muxcable_operationtime_expected_port_output="""\ +PORT ATTR OPERATION_TIME +--------- -------------- ---------------- +Ethernet0 operation_time 200:00 +""" + +show_muxcable_health_expected_port_output="""\ +PORT ATTR HEALTH +--------- ------------ -------- +Ethernet0 health_check Ok +""" + + +show_muxcable_queueinfo_expected_port_output="""\ +PORT ATTR VALUE +--------- ---------- ------- +Ethernet0 uart_stat1 2 +Ethernet0 uart_stat2 1 +""" + +show_muxcable_resetcause_expected_port_output="""\ +PORT ATTR RESETCAUSE +--------- ----------- ------------ +Ethernet0 reset_cause warm reset +""" + + +show_muxcable_health_expected_port_output_json="""\ +{ + "health_check": "Ok" +} +""" + + + +show_muxcable_resetcause_expected_port_output_json="""\ +{ + "reset_cause": "warm reset" +} +""" + class TestMuxcable(object): @classmethod def setup_class(cls): @@ -860,6 +1068,15 @@ def test_config_muxcable_packetloss_reset_Ethernet0(self): assert result.exit_code == 0 + def test_config_muxcable_kill_radv_enable(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["muxcable"].commands["kill-radv"], ["enable"], obj=db) + + assert result.exit_code == 0 + assert result.output == "" + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, 1: "active"})) @@ -920,6 +1137,7 @@ def test_show_mux_fecstatistics(self): assert result.exit_code == 0 + @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, 1: "True"})) @@ -1080,6 +1298,21 @@ def test_show_muxcable_cableinfo_incorrect_logical_port_return_value(self): ["Ethernet0"], obj=db) assert result.exit_code == 1 + @mock.patch('sonic_y_cable.y_cable.get_part_number', mock.MagicMock(return_value=(False))) + @mock.patch('sonic_y_cable.y_cable.get_vendor', mock.MagicMock(return_value=(False))) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value=1)) + def test_show_muxcable_cableinfo_invalid_port(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["cableinfo"], + ["Ethernet0"], obj=db) + assert result.exit_code == 1 + + result = runner.invoke(show.cli.commands["muxcable"].commands["cableinfo"], + ["abc"], obj=db) + assert result.exit_code == 1 + assert result.output == expected_muxcable_cableinfo_invalid_port_output @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, @@ -1368,6 +1601,66 @@ def test_show_muxcable_firmware_version(self): assert result.exit_code == 0 assert result.output == show_muxcable_firmware_version_expected_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + def test_show_muxcable_firmware_version_all(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["firmware"].commands["version"], [ + "all"], obj=db) + assert result.exit_code == 0 + f = open("newfile", "w") + f.write(result.output) + assert result.output == show_muxcable_firmware_version_all_expected_output + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + def test_show_muxcable_firmware_version_all_active(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["firmware"].commands["version"], [ + "all", "--active"], obj=db) + assert result.exit_code == 0 + f = open("newfile", "w") + f.write(result.output) + assert result.output == show_muxcable_firmware_version_all_active_expected_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=1)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + def test_show_muxcable_firmware_version_all_bad_asic_index(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["firmware"].commands["version"], [ + "all"], obj=db) + assert result.exit_code == 1 + + @mock.patch('config.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) @mock.patch('config.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, 1: "sucess"})) @@ -2095,6 +2388,308 @@ def test_show_muxcable_packetloss_port_json(self): assert result.exit_code == 0 assert result.output == show_muxcable_packetloss_expected_output_json + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + def test_show_muxcable_tunnel_route(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["tunnel-route"], obj=db) + + assert result.exit_code == 0 + assert result.output == show_muxcable_tunnel_route_expected_output + + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + def test_show_muxcable_tunnel_route_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["tunnel-route"], + ["--json"], obj=db) + + assert result.exit_code == 0 + assert result.output == show_muxcable_tunnel_route_expected_output_json + + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + def test_show_muxcable_tunnel_route_port(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["tunnel-route"], + ["Ethernet0"], obj=db) + + assert result.exit_code == 0 + assert result.output == show_muxcable_tunnel_route_expected_port_output + + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + def test_show_muxcable_tunnel_route_json_port(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["tunnel-route"], + ["Ethernet0", "--json"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_tunnel_route_expected_output_port_json + + @mock.patch('config.muxcable.swsscommon.DBConnector', mock.MagicMock(return_value=0)) + @mock.patch('config.muxcable.swsscommon.Table', mock.MagicMock(return_value=0)) + @mock.patch('config.muxcable.swsscommon.Select', mock.MagicMock(return_value=0)) + def test_config_muxcable_telemetry_enable_without_patch(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["muxcable"].commands["telemetry"], [ + "enable"], obj=db) + assert result.exit_code == 1 + + @mock.patch('config.muxcable.swsscommon.DBConnector', mock.MagicMock(return_value=0)) + @mock.patch('config.muxcable.swsscommon.Table', mock.MagicMock(return_value=0)) + @mock.patch('config.muxcable.swsscommon.Select', mock.MagicMock(return_value=0)) + def test_config_muxcable_telemetry_disable_without_patch(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["muxcable"].commands["telemetry"], [ + "disable"], obj=db) + assert result.exit_code == 1 + + @mock.patch('config.muxcable.swsscommon.DBConnector', mock.MagicMock(return_value=0)) + @mock.patch('config.muxcable.swsscommon.Table', mock.MagicMock(return_value=0)) + @mock.patch('config.muxcable.swsscommon.Select', mock.MagicMock(return_value=0)) + @mock.patch('config.muxcable.update_configdb_ycable_telemetry_data', mock.MagicMock(return_value=0)) + def test_config_muxcable_telemetry_enable(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["muxcable"].commands["telemetry"], [ + "enable"], obj=db) + assert result.exit_code == 0 + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.get_grpc_cached_version_mux_direction_per_port', mock.MagicMock(return_value={"self_mux_direction": "active", + "peer_mux_direction": "active", + "presence": "True", + "rc": 0, + "grpc_connection_status": "READY"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_standby_with_patch(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], + ["Ethernet12"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_active_expected_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet4", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet4", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_standby(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], + ["Ethernet4"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_standby_expected_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet4", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet4", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_standby_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], + ["Ethernet4", "--json"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_standby_expected_output_json + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet0", "Ethernet4"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet0", "Ethernet4"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_all(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_active_expected_all_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet0", "Ethernet4"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet0", "Ethernet4"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_all_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], ["--json"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_active_expected_all_output_json + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "active"})) + @mock.patch('show.muxcable.get_hwmode_mux_direction_port', mock.MagicMock(return_value={0: 0, + 1: "active", + 2: "True"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(1))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_hwmode_muxdirection_port_active(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["hwmode"].commands["muxdirection"], + ["Ethernet12", "--json"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_hwmode_muxdirection_active_expected_output_json + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"health_check": "True"})) + def test_show_mux_health(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["health"], + ["Ethernet0"], obj=db) + assert result.output == show_muxcable_health_expected_port_output + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"health_check": "True"})) + def test_show_mux_health_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["health"], + ["Ethernet0", "--json"], obj=db) + assert result.output == show_muxcable_health_expected_port_output_json + + + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"operation_time": "200"})) + def test_show_mux_operation_time(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["operationtime"], + ["Ethernet0"], obj=db) + assert result.output == show_muxcable_operationtime_expected_port_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"uart_stat1": "2", + "uart_stat2": "1"})) + def test_show_mux_queue_info(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["queueinfo"], + ["Ethernet0"], obj=db) + assert result.output == show_muxcable_queueinfo_expected_port_output + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"reset_cause": "1"})) + def test_show_mux_resetcause(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["resetcause"], + ["Ethernet0"], obj=db) + assert result.output == show_muxcable_resetcause_expected_port_output + + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"reset_cause": "1"})) + def test_show_mux_resetcause_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["resetcause"], + ["Ethernet0", "--json"], obj=db) + assert result.output == show_muxcable_resetcause_expected_port_output_json + + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" diff --git a/tests/passw_hardening_input/assert_show_output.py b/tests/passw_hardening_input/assert_show_output.py new file mode 100644 index 000000000..9500c98be --- /dev/null +++ b/tests/passw_hardening_input/assert_show_output.py @@ -0,0 +1,40 @@ +""" +Module holding the correct values for show CLI command outputs for the passw_hardening_test.py +""" + +show_passw_hardening_policies_default="""\ +STATE EXPIRATION EXPIRATION WARNING HISTORY CNT LEN MIN REJECT USER PASSW MATCH LOWER CLASS UPPER CLASS DIGITS CLASS SPECIAL CLASS +-------- ------------ -------------------- ------------- --------- ------------------------- ------------- ------------- -------------- --------------- +disabled 180 15 10 8 true true true true true +""" + +show_passw_hardening_policies_classes_disabled="""\ +STATE EXPIRATION EXPIRATION WARNING HISTORY CNT LEN MIN REJECT USER PASSW MATCH LOWER CLASS UPPER CLASS DIGITS CLASS SPECIAL CLASS +-------- ------------ -------------------- ------------- --------- ------------------------- ------------- ------------- -------------- --------------- +disabled 180 15 10 8 false false false false false +""" + +show_passw_hardening_policies_enabled="""\ +STATE EXPIRATION EXPIRATION WARNING HISTORY CNT LEN MIN REJECT USER PASSW MATCH LOWER CLASS UPPER CLASS DIGITS CLASS SPECIAL CLASS +------- ------------ -------------------- ------------- --------- ------------------------- ------------- ------------- -------------- --------------- +enabled 180 15 10 8 true true true true true +""" + + +show_passw_hardening_policies_expiration="""\ +STATE EXPIRATION EXPIRATION WARNING HISTORY CNT LEN MIN REJECT USER PASSW MATCH LOWER CLASS UPPER CLASS DIGITS CLASS SPECIAL CLASS +------- ------------ -------------------- ------------- --------- ------------------------- ------------- ------------- -------------- --------------- +enabled 100 15 10 8 true true true true true +""" + +show_passw_hardening_policies_history_cnt="""\ +STATE EXPIRATION EXPIRATION WARNING HISTORY CNT LEN MIN REJECT USER PASSW MATCH LOWER CLASS UPPER CLASS DIGITS CLASS SPECIAL CLASS +-------- ------------ -------------------- ------------- --------- ------------------------- ------------- ------------- -------------- --------------- +disabled 180 15 40 8 true true true true true +""" + +show_passw_hardening_policies_len_min="""\ +STATE EXPIRATION EXPIRATION WARNING HISTORY CNT LEN MIN REJECT USER PASSW MATCH LOWER CLASS UPPER CLASS DIGITS CLASS SPECIAL CLASS +-------- ------------ -------------------- ------------- --------- ------------------------- ------------- ------------- -------------- --------------- +disabled 180 15 10 30 true true true true true +""" \ No newline at end of file diff --git a/tests/passw_hardening_input/default_config_db.json b/tests/passw_hardening_input/default_config_db.json new file mode 100644 index 000000000..0eb363eb4 --- /dev/null +++ b/tests/passw_hardening_input/default_config_db.json @@ -0,0 +1,14 @@ +{ + "PASSW_HARDENING|POLICIES": { + "state": "disabled", + "expiration": "180", + "expiration_warning": "15", + "history_cnt": "10", + "len_min": "8", + "reject_user_passw_match": "true", + "digits_class": "true", + "lower_class": "true", + "special_class": "true", + "upper_class": "true" + } +} diff --git a/tests/passw_hardening_test.py b/tests/passw_hardening_test.py new file mode 100644 index 000000000..e57fdfd0c --- /dev/null +++ b/tests/passw_hardening_test.py @@ -0,0 +1,222 @@ +#!/usr/bin/env python + +import os +import logging +import show.main as show +import config.main as config + +from .passw_hardening_input import assert_show_output +from utilities_common.db import Db +from click.testing import CliRunner +from .mock_tables import dbconnector + +logger = logging.getLogger(__name__) +test_path = os.path.dirname(os.path.abspath(__file__)) +mock_db_path = os.path.join(test_path, "passw_hardening_input") + +SUCCESS = 0 +ERROR = 1 +INVALID_VALUE = 'INVALID' +EXP_GOOD_FLOW = 1 +EXP_BAD_FLOW = 0 + +class TestPasswHardening: + @classmethod + def setup_class(cls): + logger.info("SETUP") + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + + @classmethod + def teardown_class(cls): + logger.info("TEARDOWN") + os.environ['UTILITIES_UNIT_TESTING'] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + + def verify_passw_policies_output(self, db, runner, output, expected=EXP_GOOD_FLOW): + result = runner.invoke(show.cli.commands["passw-hardening"].commands["policies"], [], obj=db) + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + + if expected: # good flow expected (default) + assert result.exit_code == SUCCESS + assert result.output == output + else: # bad flow expected + assert result.exit_code == ERROR + + def passw_hardening_set_policy(self, runner, db, attr, value, expected=EXP_GOOD_FLOW): + result = runner.invoke( + config.config.commands["passw-hardening"].commands["policies"].commands[attr], + [value], obj=db + ) + + if expected: # good flow expected (default) + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + assert result.exit_code == SUCCESS + else: # bad flow expected + assert result.exit_code == ERROR + + + ######### PASSW-HARDENING ######### + + def test_passw_hardening_default(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.verify_passw_policies_output(db, runner, assert_show_output.show_passw_hardening_policies_default) + + def test_passw_hardening_feature_enabled(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "state", "enabled") + + self.verify_passw_policies_output(db, runner, assert_show_output.show_passw_hardening_policies_enabled) + + def test_passw_hardening_feature_disabled(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "state", "enabled") + self.passw_hardening_set_policy(runner, db, "state", "disabled") + + self.verify_passw_policies_output(db, runner, assert_show_output.show_passw_hardening_policies_default) + + def test_passw_hardening_policies_classes_disabled(self): + """Disable passw hardening classes & reject user passw match policies""" + + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + passw_classes = { "reject-user-passw-match": "false", + "digits-class": "false", + "lower-class": "false", + "special-class": "false", + "upper-class": "false" + } + + for k, v in passw_classes.items(): + self.passw_hardening_set_policy(runner, db, k, v) + + self.verify_passw_policies_output(db, runner, assert_show_output.show_passw_hardening_policies_classes_disabled) + + def test_passw_hardening_policies_exp_time(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "state", "enabled") + self.passw_hardening_set_policy(runner, db, "expiration", "100") + self.passw_hardening_set_policy(runner, db, "expiration-warning", "15") + + self.verify_passw_policies_output(db, runner, assert_show_output.show_passw_hardening_policies_expiration) + + def test_passw_hardening_policies_history(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "history-cnt", "40") + + self.verify_passw_policies_output(db, runner, assert_show_output.show_passw_hardening_policies_history_cnt) + + def test_passw_hardening_policies_len_min(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "len-min", "30") + + self.verify_passw_policies_output(db, runner, assert_show_output.show_passw_hardening_policies_len_min) + + def test_passw_hardening_bad_flow_len_min(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "state", "enabled") + self.passw_hardening_set_policy(runner, db, "len-min", "10000", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_history_cnt(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "state", "enabled") + self.passw_hardening_set_policy(runner, db, "history-cnt", "100000", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_state(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "state", "0", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_expiration(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "expiration", "####", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_expiration_warning(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "expiration-warning", "4000", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_upper_class(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "upper-class", "1", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_lower_class(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "lower-class", "1", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_special_class(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "special-class", "1", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_digits_class(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "digits-class", "1", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_reject_user_passw_match(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + + self.passw_hardening_set_policy(runner, db, "reject-user-passw-match", "1", EXP_BAD_FLOW) + + def test_passw_hardening_bad_flow_policy(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'default_config_db') + db = Db() + runner = CliRunner() + try: + self.passw_hardening_set_policy(runner, db, "no-exist-command", "1", EXP_BAD_FLOW) + except Exception as e: + # import pdb;pdb.set_trace() + if 'no-exist-command' in str(e): + pass + else: + raise e + diff --git a/tests/pbh_test.py b/tests/pbh_test.py index 197274778..7dddfea9c 100644 --- a/tests/pbh_test.py +++ b/tests/pbh_test.py @@ -10,6 +10,7 @@ from .pbh_input import assert_show_output from utilities_common.db import Db +from utilities_common.cli import UserCache from click.testing import CliRunner from .mock_tables import dbconnector from .mock_tables import mock_single_asic @@ -876,10 +877,7 @@ def test_show_pbh_rule(self): def remove_pbh_counters_file(self): - SAVED_PBH_COUNTERS_FILE = '/tmp/.pbh_counters.txt' - if os.path.isfile(SAVED_PBH_COUNTERS_FILE): - os.remove(SAVED_PBH_COUNTERS_FILE) - + UserCache('pbh').remove_all() def test_show_pbh_statistics_on_empty_config(self): dbconnector.dedicated_dbs['CONFIG_DB'] = None diff --git a/tests/pcieutil_test.py b/tests/pcieutil_test.py index cee1feec8..acac60f8d 100644 --- a/tests/pcieutil_test.py +++ b/tests/pcieutil_test.py @@ -3,6 +3,7 @@ from unittest import mock from click.testing import CliRunner +from io import StringIO test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -156,6 +157,8 @@ +---------------------+-----------+ """ +pcieutil_load_module_warning_msg = "Failed to load platform Pcie module. Warning : No module named 'sonic_platform.pcie', fallback to load Pcie common utility." + class TestPcieUtil(object): @classmethod def setup_class(cls): @@ -199,6 +202,16 @@ def test_aer_option_device(self): result = runner.invoke(pcieutil.cli.commands["pcie-aer"].commands["correctable"], ["-d", "0:1.0"]) assert result.output == pcieutil_pcie_aer_correctable_dev_output + def test_load_pcie_module_warning(self): + stdout = sys.stdout + sys.stdout = result = StringIO() + try: + pcieutil.load_platform_pcieutil() + except ImportError: + pass + sys.stdout = stdout + assert pcieutil_load_module_warning_msg not in result.getvalue() + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/pfcstat_test.py b/tests/pfcstat_test.py index 955db3c23..75f7ea6f5 100644 --- a/tests/pfcstat_test.py +++ b/tests/pfcstat_test.py @@ -8,6 +8,7 @@ import show.main as show from .utils import get_result_and_return_code +from utilities_common.cli import UserCache test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -130,9 +131,8 @@ def del_cached_stats(): - uid = str(os.getuid()) - cnstat_dir = os.path.join(os.sep, "tmp", "pfcstat-{}".format(uid)) - shutil.rmtree(cnstat_dir, ignore_errors=True, onerror=None) + cache = UserCache("pfcstat") + cache.remove_all() def pfc_clear(expected_output): @@ -143,17 +143,6 @@ def pfc_clear(expected_output): 'pfcstat -c' ) - # verify that files are created with stats - uid = str(os.getuid()) - cnstat_dir = os.path.join(os.sep, "tmp", "pfcstat-{}".format(uid)) - cnstat_fqn_file_rx = "{}rx".format(uid) - cnstat_fqn_file_tx = "{}tx".format(uid) - file_list = [cnstat_fqn_file_tx, cnstat_fqn_file_rx] - file_list.sort() - files = os.listdir(cnstat_dir) - files.sort() - assert files == file_list - return_code, result = get_result_and_return_code( 'pfcstat -s all' ) diff --git a/tests/pgdrop_input/counters_db.json b/tests/pgdrop_input/counters_db.json new file mode 100644 index 000000000..448f7a124 --- /dev/null +++ b/tests/pgdrop_input/counters_db.json @@ -0,0 +1,83 @@ +{ + "COUNTERS_PORT_NAME_MAP": { + }, + "COUNTERS_PG_NAME_MAP": { + "Ethernet0:0": "oid:0x1a00000000034f", + "Ethernet0:1": "oid:0x1a000000000350", + "Ethernet0:2": "oid:0x1a000000000351", + "Ethernet0:3": "oid:0x1a000000000352", + "Ethernet0:4": "oid:0x1a000000000353", + "Ethernet0:5": "oid:0x1a000000000354", + "Ethernet0:6": "oid:0x1a000000000355", + "Ethernet0:7": "oid:0x1a000000000356", + "Ethernet4:0": "oid:0x1a000000000377", + "Ethernet4:1": "oid:0x1a000000000378", + "Ethernet4:2": "oid:0x1a000000000379", + "Ethernet4:3": "oid:0x1a00000000037a", + "Ethernet4:4": "oid:0x1a00000000037b", + "Ethernet4:5": "oid:0x1a00000000037c", + "Ethernet4:6": "oid:0x1a00000000037d", + "Ethernet4:7": "oid:0x1a00000000037e", + "Ethernet8:0": "oid:0x1a00000000039f", + "Ethernet8:1": "oid:0x1a0000000003a0", + "Ethernet8:2": "oid:0x1a0000000003a1", + "Ethernet8:3": "oid:0x1a0000000003a2", + "Ethernet8:4": "oid:0x1a0000000003a3", + "Ethernet8:5": "oid:0x1a0000000003a4", + "Ethernet8:6": "oid:0x1a0000000003a5", + "Ethernet8:7": "oid:0x1a0000000003a6" + }, + "COUNTERS_PG_PORT_MAP": { + "oid:0x1a00000000034f": "oid:0x1000000000012", + "oid:0x1a000000000350": "oid:0x1000000000012", + "oid:0x1a000000000351": "oid:0x1000000000012", + "oid:0x1a000000000352": "oid:0x1000000000012", + "oid:0x1a000000000353": "oid:0x1000000000012", + "oid:0x1a000000000354": "oid:0x1000000000012", + "oid:0x1a000000000355": "oid:0x1000000000012", + "oid:0x1a000000000356": "oid:0x1000000000012", + "oid:0x1a000000000377": "oid:0x1000000000013", + "oid:0x1a000000000378": "oid:0x1000000000013", + "oid:0x1a000000000379": "oid:0x1000000000013", + "oid:0x1a00000000037a": "oid:0x1000000000013", + "oid:0x1a00000000037b": "oid:0x1000000000013", + "oid:0x1a00000000037c": "oid:0x1000000000013", + "oid:0x1a00000000037d": "oid:0x1000000000013", + "oid:0x1a00000000037e": "oid:0x1000000000013", + "oid:0x1a00000000039f": "oid:0x1000000000014", + "oid:0x1a0000000003a0": "oid:0x1000000000014", + "oid:0x1a0000000003a1": "oid:0x1000000000014", + "oid:0x1a0000000003a2": "oid:0x1000000000014", + "oid:0x1a0000000003a3": "oid:0x1000000000014", + "oid:0x1a0000000003a4": "oid:0x1000000000014", + "oid:0x1a0000000003a5": "oid:0x1000000000014", + "oid:0x1a0000000003a6": "oid:0x1000000000014" + }, + + "COUNTERS_PG_INDEX_MAP": { + "oid:0x1a00000000034f": "0", + "oid:0x1a000000000350": "1", + "oid:0x1a000000000351": "2", + "oid:0x1a000000000352": "3", + "oid:0x1a000000000353": "4", + "oid:0x1a000000000354": "5", + "oid:0x1a000000000355": "6", + "oid:0x1a000000000356": "7", + "oid:0x1a000000000377": "0", + "oid:0x1a000000000378": "1", + "oid:0x1a000000000379": "2", + "oid:0x1a00000000037a": "3", + "oid:0x1a00000000037b": "4", + "oid:0x1a00000000037c": "5", + "oid:0x1a00000000037d": "6", + "oid:0x1a00000000037e": "7", + "oid:0x1a00000000039f": "0", + "oid:0x1a0000000003a0": "1", + "oid:0x1a0000000003a1": "2", + "oid:0x1a0000000003a2": "3", + "oid:0x1a0000000003a3": "4", + "oid:0x1a0000000003a4": "5", + "oid:0x1a0000000003a5": "6", + "oid:0x1a0000000003a6": "7" + } +} diff --git a/tests/pgdrop_input/counters_db2.json b/tests/pgdrop_input/counters_db2.json new file mode 100644 index 000000000..3c5d84df1 --- /dev/null +++ b/tests/pgdrop_input/counters_db2.json @@ -0,0 +1,63 @@ +{ + "COUNTERS_PORT_NAME_MAP": { + "Ethernet0": "oid:0x1000000000012", + "Ethernet4": "oid:0x1000000000013", + "Ethernet8": "oid:0x1000000000014" + + }, + "COUNTERS_PG_NAME_MAP": { + }, + "COUNTERS_PG_PORT_MAP": { + "oid:0x1a00000000034f": "oid:0x1000000000012", + "oid:0x1a000000000350": "oid:0x1000000000012", + "oid:0x1a000000000351": "oid:0x1000000000012", + "oid:0x1a000000000352": "oid:0x1000000000012", + "oid:0x1a000000000353": "oid:0x1000000000012", + "oid:0x1a000000000354": "oid:0x1000000000012", + "oid:0x1a000000000355": "oid:0x1000000000012", + "oid:0x1a000000000356": "oid:0x1000000000012", + "oid:0x1a000000000377": "oid:0x1000000000013", + "oid:0x1a000000000378": "oid:0x1000000000013", + "oid:0x1a000000000379": "oid:0x1000000000013", + "oid:0x1a00000000037a": "oid:0x1000000000013", + "oid:0x1a00000000037b": "oid:0x1000000000013", + "oid:0x1a00000000037c": "oid:0x1000000000013", + "oid:0x1a00000000037d": "oid:0x1000000000013", + "oid:0x1a00000000037e": "oid:0x1000000000013", + "oid:0x1a00000000039f": "oid:0x1000000000014", + "oid:0x1a0000000003a0": "oid:0x1000000000014", + "oid:0x1a0000000003a1": "oid:0x1000000000014", + "oid:0x1a0000000003a2": "oid:0x1000000000014", + "oid:0x1a0000000003a3": "oid:0x1000000000014", + "oid:0x1a0000000003a4": "oid:0x1000000000014", + "oid:0x1a0000000003a5": "oid:0x1000000000014", + "oid:0x1a0000000003a6": "oid:0x1000000000014" + }, + + "COUNTERS_PG_INDEX_MAP": { + "oid:0x1a00000000034f": "0", + "oid:0x1a000000000350": "1", + "oid:0x1a000000000351": "2", + "oid:0x1a000000000352": "3", + "oid:0x1a000000000353": "4", + "oid:0x1a000000000354": "5", + "oid:0x1a000000000355": "6", + "oid:0x1a000000000356": "7", + "oid:0x1a000000000377": "0", + "oid:0x1a000000000378": "1", + "oid:0x1a000000000379": "2", + "oid:0x1a00000000037a": "3", + "oid:0x1a00000000037b": "4", + "oid:0x1a00000000037c": "5", + "oid:0x1a00000000037d": "6", + "oid:0x1a00000000037e": "7", + "oid:0x1a00000000039f": "0", + "oid:0x1a0000000003a0": "1", + "oid:0x1a0000000003a1": "2", + "oid:0x1a0000000003a2": "3", + "oid:0x1a0000000003a3": "4", + "oid:0x1a0000000003a4": "5", + "oid:0x1a0000000003a5": "6", + "oid:0x1a0000000003a6": "7" + } +} diff --git a/tests/pgdrop_input/counters_db3.json b/tests/pgdrop_input/counters_db3.json new file mode 100644 index 000000000..00ae077d0 --- /dev/null +++ b/tests/pgdrop_input/counters_db3.json @@ -0,0 +1,62 @@ +{ + "COUNTERS_PORT_NAME_MAP": { + "Ethernet0": "oid:0x1000000000012", + "Ethernet4": "oid:0x1000000000013", + "Ethernet8": "oid:0x1000000000014" + }, + "COUNTERS_PG_NAME_MAP": { + "Ethernet0:0": "oid:0x1a00000000034f", + "Ethernet0:1": "oid:0x1a000000000350", + "Ethernet0:2": "oid:0x1a000000000351", + "Ethernet0:3": "oid:0x1a000000000352", + "Ethernet0:4": "oid:0x1a000000000353", + "Ethernet0:5": "oid:0x1a000000000354", + "Ethernet0:6": "oid:0x1a000000000355", + "Ethernet0:7": "oid:0x1a000000000356", + "Ethernet4:0": "oid:0x1a000000000377", + "Ethernet4:1": "oid:0x1a000000000378", + "Ethernet4:2": "oid:0x1a000000000379", + "Ethernet4:3": "oid:0x1a00000000037a", + "Ethernet4:4": "oid:0x1a00000000037b", + "Ethernet4:5": "oid:0x1a00000000037c", + "Ethernet4:6": "oid:0x1a00000000037d", + "Ethernet4:7": "oid:0x1a00000000037e", + "Ethernet8:0": "oid:0x1a00000000039f", + "Ethernet8:1": "oid:0x1a0000000003a0", + "Ethernet8:2": "oid:0x1a0000000003a1", + "Ethernet8:3": "oid:0x1a0000000003a2", + "Ethernet8:4": "oid:0x1a0000000003a3", + "Ethernet8:5": "oid:0x1a0000000003a4", + "Ethernet8:6": "oid:0x1a0000000003a5", + "Ethernet8:7": "oid:0x1a0000000003a6" + }, + "COUNTERS_PG_PORT_MAP": { + }, + + "COUNTERS_PG_INDEX_MAP": { + "oid:0x1a00000000034f": "0", + "oid:0x1a000000000350": "1", + "oid:0x1a000000000351": "2", + "oid:0x1a000000000352": "3", + "oid:0x1a000000000353": "4", + "oid:0x1a000000000354": "5", + "oid:0x1a000000000355": "6", + "oid:0x1a000000000356": "7", + "oid:0x1a000000000377": "0", + "oid:0x1a000000000378": "1", + "oid:0x1a000000000379": "2", + "oid:0x1a00000000037a": "3", + "oid:0x1a00000000037b": "4", + "oid:0x1a00000000037c": "5", + "oid:0x1a00000000037d": "6", + "oid:0x1a00000000037e": "7", + "oid:0x1a00000000039f": "0", + "oid:0x1a0000000003a0": "1", + "oid:0x1a0000000003a1": "2", + "oid:0x1a0000000003a2": "3", + "oid:0x1a0000000003a3": "4", + "oid:0x1a0000000003a4": "5", + "oid:0x1a0000000003a5": "6", + "oid:0x1a0000000003a6": "7" + } +} diff --git a/tests/pgdrop_input/counters_db4.json b/tests/pgdrop_input/counters_db4.json new file mode 100644 index 000000000..366652a5e --- /dev/null +++ b/tests/pgdrop_input/counters_db4.json @@ -0,0 +1,62 @@ +{ + "COUNTERS_PORT_NAME_MAP": { + "Ethernet0": "oid:0x1000000000012", + "Ethernet4": "oid:0x1000000000013", + "Ethernet8": "oid:0x1000000000014" + }, + "COUNTERS_PG_NAME_MAP": { + "Ethernet0:0": "oid:0x1a00000000034f", + "Ethernet0:1": "oid:0x1a000000000350", + "Ethernet0:2": "oid:0x1a000000000351", + "Ethernet0:3": "oid:0x1a000000000352", + "Ethernet0:4": "oid:0x1a000000000353", + "Ethernet0:5": "oid:0x1a000000000354", + "Ethernet0:6": "oid:0x1a000000000355", + "Ethernet0:7": "oid:0x1a000000000356", + "Ethernet4:0": "oid:0x1a000000000377", + "Ethernet4:1": "oid:0x1a000000000378", + "Ethernet4:2": "oid:0x1a000000000379", + "Ethernet4:3": "oid:0x1a00000000037a", + "Ethernet4:4": "oid:0x1a00000000037b", + "Ethernet4:5": "oid:0x1a00000000037c", + "Ethernet4:6": "oid:0x1a00000000037d", + "Ethernet4:7": "oid:0x1a00000000037e", + "Ethernet8:0": "oid:0x1a00000000039f", + "Ethernet8:1": "oid:0x1a0000000003a0", + "Ethernet8:2": "oid:0x1a0000000003a1", + "Ethernet8:3": "oid:0x1a0000000003a2", + "Ethernet8:4": "oid:0x1a0000000003a3", + "Ethernet8:5": "oid:0x1a0000000003a4", + "Ethernet8:6": "oid:0x1a0000000003a5", + "Ethernet8:7": "oid:0x1a0000000003a6" + }, + "COUNTERS_PG_PORT_MAP": { + "oid:0x1a00000000034f": "oid:0x1000000000012", + "oid:0x1a000000000350": "oid:0x1000000000012", + "oid:0x1a000000000351": "oid:0x1000000000012", + "oid:0x1a000000000352": "oid:0x1000000000012", + "oid:0x1a000000000353": "oid:0x1000000000012", + "oid:0x1a000000000354": "oid:0x1000000000012", + "oid:0x1a000000000355": "oid:0x1000000000012", + "oid:0x1a000000000356": "oid:0x1000000000012", + "oid:0x1a000000000377": "oid:0x1000000000013", + "oid:0x1a000000000378": "oid:0x1000000000013", + "oid:0x1a000000000379": "oid:0x1000000000013", + "oid:0x1a00000000037a": "oid:0x1000000000013", + "oid:0x1a00000000037b": "oid:0x1000000000013", + "oid:0x1a00000000037c": "oid:0x1000000000013", + "oid:0x1a00000000037d": "oid:0x1000000000013", + "oid:0x1a00000000037e": "oid:0x1000000000013", + "oid:0x1a00000000039f": "oid:0x1000000000014", + "oid:0x1a0000000003a0": "oid:0x1000000000014", + "oid:0x1a0000000003a1": "oid:0x1000000000014", + "oid:0x1a0000000003a2": "oid:0x1000000000014", + "oid:0x1a0000000003a3": "oid:0x1000000000014", + "oid:0x1a0000000003a4": "oid:0x1000000000014", + "oid:0x1a0000000003a5": "oid:0x1000000000014", + "oid:0x1a0000000003a6": "oid:0x1000000000014" + }, + + "COUNTERS_PG_INDEX_MAP": { + } +} diff --git a/tests/pgdropstat_test.py b/tests/pgdropstat_test.py index 3aea0f295..6b58b8f6e 100644 --- a/tests/pgdropstat_test.py +++ b/tests/pgdropstat_test.py @@ -9,6 +9,8 @@ from click.testing import CliRunner from shutil import copyfile +from utilities_common.cli import UserCache + test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) scripts_path = os.path.join(modules_path, "scripts") @@ -41,18 +43,95 @@ def setup_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "2" print("SETUP") + def replace_file(self, file_name_src, file_name_dst): + sample_config_db_file = os.path.join(test_path, file_name_src) + mock_config_db_file = os.path.join(test_path, "mock_tables", file_name_dst) + + #Backup origin config_db and replace it with config_db file with disabled PG_DROP counters + copyfile(mock_config_db_file, "/tmp/" + file_name_dst) + copyfile(sample_config_db_file, mock_config_db_file) + + return mock_config_db_file + + @pytest.fixture(scope='function') + def replace_counter_db_file(self): + mock_file = self.replace_file("pgdrop_input/counters_db.json", "counters_db.json") + + yield + + copyfile("/tmp/counters_db.json", mock_file) + @pytest.fixture(scope='function') def replace_config_db_file(self): - sample_config_db_file = os.path.join(test_path, "pgdrop_input", "config_db.json") - mock_config_db_file = os.path.join(test_path, "mock_tables", "config_db.json") + mock_file = self.replace_file("pgdrop_input/config_db.json", "config_db.json") - #Backup origin config_db and replace it with config_db file with disabled PG_DROP counters - copyfile(mock_config_db_file, "/tmp/config_db.json") - copyfile(sample_config_db_file, mock_config_db_file) + yield + + copyfile("/tmp/config_db.json", mock_file) + + @pytest.fixture(scope='function') + def replace_counter_db2_file(self): + mock_file = self.replace_file("pgdrop_input/counters_db2.json", "counters_db.json") yield - copyfile("/tmp/config_db.json", mock_config_db_file) + copyfile("/tmp/counters_db.json", mock_file) + + @pytest.fixture(scope='function') + def replace_counter_db3_file(self): + mock_file = self.replace_file("pgdrop_input/counters_db3.json", "counters_db.json") + + yield + + copyfile("/tmp/counters_db.json", mock_file) + + @pytest.fixture(scope='function') + def replace_counter_db4_file(self): + mock_file = self.replace_file("pgdrop_input/counters_db4.json", "counters_db.json") + + yield + + copyfile("/tmp/counters_db.json", mock_file) + + def test_show_pg_drop_pg_port_map(self, replace_counter_db3_file): + runner = CliRunner() + + result = runner.invoke(show.cli.commands["priority-group"].commands["drop"].commands["counters"]) + assert result.exit_code == 1 + print(result.exit_code) + + assert "Port is not available for oid" in result.output + print(result.exit_code) + + def test_show_pg_drop_pg_index_map(self, replace_counter_db4_file): + runner = CliRunner() + + result = runner.invoke(show.cli.commands["priority-group"].commands["drop"].commands["counters"]) + assert result.exit_code == 1 + print(result.exit_code) + + assert "Priority group index is not available for oid" in result.output + print(result.output) + + def test_show_pg_drop_port_name_map(self, replace_counter_db_file): + runner = CliRunner() + + result = runner.invoke(show.cli.commands["priority-group"].commands["drop"].commands["counters"]) + assert result.exit_code == 1 + print(result.exit_code) + + assert result.output == "COUNTERS_PORT_NAME_MAP is empty!\n" + print(result.output) + + def test_show_pg_drop_pg_name_map(self, replace_counter_db2_file): + runner = CliRunner() + + result = runner.invoke(show.cli.commands["priority-group"].commands["drop"].commands["counters"]) + assert result.exit_code == 1 + print(result.exit_code) + + assert result.output == "COUNTERS_PG_NAME_MAP is empty!\n" + print(result.output) def test_show_pg_drop_disabled(self, replace_config_db_file): runner = CliRunner() @@ -88,25 +167,9 @@ def executor(self, clear_before_show): assert result.exit_code == 0 assert result.output == show_output - def test_show_pg_drop_config_reload(self): - runner = CliRunner() - self.test_show_pg_drop_clear() - - # simulate 'config reload' to provoke counters recalculation (remove backup from /tmp folder) - result = runner.invoke(config.config.commands["reload"], [ "--no_service_restart", "-y"]) - - print(result.exit_code) - print(result.output) - - assert result.exit_code == 0 - - self.test_show_pg_drop_show() - @classmethod def teardown_class(cls): os.environ["PATH"] = os.pathsep.join(os.environ["PATH"].split(os.pathsep)[:-1]) os.environ['UTILITIES_UNIT_TESTING'] = "0" - dropstat_dir_prefix = '/tmp/dropstat' - dir_path = "{}-{}/".format(dropstat_dir_prefix, os.getuid()) - os.system("rm -rf {}".format(dir_path)) + UserCache('pg-drop').remove_all() print("TEARDOWN") diff --git a/tests/portchannel_test.py b/tests/portchannel_test.py index ebf77e86b..705d22890 100644 --- a/tests/portchannel_test.py +++ b/tests/portchannel_test.py @@ -121,6 +121,19 @@ def test_add_portchannel_member_which_has_ipaddress(self): assert result.exit_code != 0 assert "Error: Ethernet0 has ip address configured" in result.output + def test_add_portchannel_member_which_has_subintf(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + # add a portchannel member with port which has ip-address + result = runner.invoke(config.config.commands["portchannel"].commands["member"].commands["add"], ["PortChannel1001", "Ethernet36"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + print(result.output) + assert "Error: Ethernet36 has subinterfaces configured" in result.output + def test_add_portchannel_member_which_is_member_of_vlan(self): runner = CliRunner() db = Db() @@ -157,6 +170,18 @@ def test_delete_portchannel_member_which_is_member_of_another_po(self): assert result.exit_code != 0 assert "Error: Ethernet116 is not a member of portchannel PortChannel1001" in result.output + def test_delete_portchannel_which_is_member_of_a_vlan(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + # try to delete the portchannel when its member of a vlan + result = runner.invoke(config.config.commands["portchannel"].commands["del"], ["PortChannel1001"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "PortChannel1001 has vlan Vlan4000 configured, remove vlan membership to proceed" in result.output + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" diff --git a/tests/portstat_test.py b/tests/portstat_test.py index b8dd05573..d418a16fe 100644 --- a/tests/portstat_test.py +++ b/tests/portstat_test.py @@ -6,6 +6,7 @@ import clear.main as clear import show.main as show from .utils import get_result_and_return_code +from utilities_common.cli import UserCache root_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(root_path) @@ -33,6 +34,23 @@ Ethernet8 N/A 6 1350.00 KB/s 9000.00/s N/A 100 10 N/A 60 13.37 MB/s 9000.00/s N/A N/A N/A N/A """ +intf_fec_counters = """\ + IFACE STATE FEC_CORR FEC_UNCORR FEC_SYMBOL_ERR +--------- ------- ---------- ------------ ---------------- +Ethernet0 D 130,402 3 4 +Ethernet4 N/A 110,412 1 0 +Ethernet8 N/A 100,317 0 0 +""" + +intf_fec_counters_period = """\ +The rates are calculated within 3 seconds period + IFACE STATE FEC_CORR FEC_UNCORR FEC_SYMBOL_ERR +--------- ------- ---------- ------------ ---------------- +Ethernet0 D 0 0 0 +Ethernet4 N/A 0 0 0 +Ethernet8 N/A 0 0 0 +""" + intf_counters_period = """\ The rates are calculated within 3 seconds period IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR @@ -57,6 +75,9 @@ --------- ------- ------- -------- --------- -------- -------- -------- ------- -------- --------- -------- -------- -------- Ethernet0 U 8 0.00 B/s 0.00% 10 100 N/A 10 0.00 B/s 0.00% N/A N/A N/A Ethernet4 U 4 0.00 B/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_all_intf_counters = """\ @@ -68,6 +89,9 @@ Ethernet-BP4 U 8 0.00 B/s 0.00% 0 1,000 N/A 80 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP256 U 8 0.00 B/s 0.00% 10 100 N/A 10 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP260 U 4 0.00 B/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_asic0 = """\ IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR @@ -76,6 +100,9 @@ Ethernet4 U 4 0.00 B/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP0 U 6 0.00 B/s 0.00% 0 1,000 N/A 60 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP4 U 8 0.00 B/s 0.00% 0 1,000 N/A 80 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_external_intf_counters_printall = """\ @@ -83,6 +110,9 @@ --------- ------- ------- -------- -------- --------- -------- -------- -------- ------- -------- -------- --------- -------- -------- -------- Ethernet0 U 8 0.00 B/s 0.00/s 0.00% 10 100 N/A 10 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet4 U 4 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_printall = """\ @@ -94,6 +124,9 @@ Ethernet-BP4 U 8 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 80 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet-BP256 U 8 0.00 B/s 0.00/s 0.00% 10 100 N/A 10 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet-BP260 U 4 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_asic0_printall = """\ @@ -103,6 +136,9 @@ Ethernet4 U 4 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet-BP0 U 6 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 60 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet-BP4 U 8 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 80 0.00 B/s 0.00/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_period = """\ The rates are calculated within 3 seconds period @@ -110,6 +146,9 @@ --------- ------- ------- -------- --------- -------- -------- -------- ------- -------- --------- -------- -------- -------- Ethernet0 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_period_all = """\ @@ -122,6 +161,9 @@ Ethernet-BP4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP256 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP260 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counter_period_asic_all = """\ @@ -132,6 +174,9 @@ Ethernet4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP0 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ mutli_asic_intf_counters_after_clear = """\ @@ -142,7 +187,11 @@ Ethernet-BP0 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP256 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A -Ethernet-BP260 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A""" +Ethernet-BP260 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links +""" + intf_invalid_asic_error = """ValueError: Unknown Namespace asic99""" @@ -191,9 +240,8 @@ def remove_tmp_cnstat_file(): # remove the tmp portstat - uid = str(os.getuid()) - cnstat_dir = os.path.join(os.sep, "tmp", "portstat-{}".format(uid)) - shutil.rmtree(cnstat_dir, ignore_errors=True, onerror=None) + cache = UserCache("portstat") + cache.remove_all() def verify_after_clear(output, expected_out): @@ -258,6 +306,39 @@ def test_show_intf_counters_all(self): assert return_code == 0 assert result == intf_counters_all + def test_show_intf_fec_counters(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["interfaces"].commands["counters"].commands["fec-stats"], []) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == intf_fec_counters + + return_code, result = get_result_and_return_code('portstat -f') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == intf_fec_counters + + def test_show_intf_fec_counters_period(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["counters"].commands["fec-stats"], + ["-p {}".format(TEST_PERIOD)]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == intf_fec_counters_period + + return_code, result = get_result_and_return_code( + 'portstat -f -p {}'.format(TEST_PERIOD)) + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == intf_fec_counters_period + + + def test_show_intf_counters_period(self): runner = CliRunner() result = runner.invoke(show.cli.commands["interfaces"].commands["counters"], [ diff --git a/tests/queue_counter_test.py b/tests/queue_counter_test.py index 66dfc828e..26689bf72 100644 --- a/tests/queue_counter_test.py +++ b/tests/queue_counter_test.py @@ -10,6 +10,7 @@ from .mock_tables import dbconnector import show.main as show +import clear.main as clear from utilities_common.cli import json_dump from utilities_common.db import Db @@ -19,11 +20,10 @@ sys.path.insert(0, test_path) sys.path.insert(0, modules_path) - show_queue_counters = """\ Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes --------- ----- -------------- --------------- ----------- ------------ -Ethernet0 UC0 68 30 56 74 +Ethernet0 UC0 0 0 0 0 Ethernet0 UC1 60 43 39 1 Ethernet0 UC2 82 7 39 21 Ethernet0 UC3 52 70 19 76 @@ -89,7 +89,7 @@ Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes --------- ----- -------------- --------------- ----------- ------------ -Ethernet8 UC0 19 5 36 56 +Ethernet8 UC0 0 0 0 0 Ethernet8 UC1 38 17 68 91 Ethernet8 UC2 16 65 79 51 Ethernet8 UC3 11 97 63 72 @@ -122,11 +122,108 @@ """ +show_queue_counters_nonzero = """\ + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +Ethernet0 UC1 60 43 39 1 +Ethernet0 UC2 82 7 39 21 +Ethernet0 UC3 52 70 19 76 +Ethernet0 UC4 11 59 12 94 +Ethernet0 UC5 36 62 35 40 +Ethernet0 UC6 49 91 2 88 +Ethernet0 UC7 33 17 94 74 +Ethernet0 UC8 40 71 95 33 +Ethernet0 UC9 54 8 93 78 +Ethernet0 MC10 83 96 74 9 +Ethernet0 MC11 15 60 61 31 +Ethernet0 MC12 45 52 82 94 +Ethernet0 MC13 55 88 89 52 +Ethernet0 MC14 14 70 95 79 +Ethernet0 MC15 68 60 66 81 +Ethernet0 MC16 63 4 48 76 +Ethernet0 MC17 41 73 77 74 +Ethernet0 MC18 60 21 56 54 +Ethernet0 MC19 57 31 12 39 +Ethernet0 ALL20 N/A N/A N/A N/A +Ethernet0 ALL21 N/A N/A N/A N/A +Ethernet0 ALL22 N/A N/A N/A N/A +Ethernet0 ALL23 N/A N/A N/A N/A +Ethernet0 ALL24 N/A N/A N/A N/A +Ethernet0 ALL25 N/A N/A N/A N/A +Ethernet0 ALL26 N/A N/A N/A N/A +Ethernet0 ALL27 N/A N/A N/A N/A +Ethernet0 ALL28 N/A N/A N/A N/A +Ethernet0 ALL29 N/A N/A N/A N/A -show_queue_counters_port = """\ Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes --------- ----- -------------- --------------- ----------- ------------ -Ethernet8 UC0 19 5 36 56 +Ethernet4 UC0 41 96 70 98 +Ethernet4 UC1 18 49 63 36 +Ethernet4 UC2 99 90 3 15 +Ethernet4 UC3 60 89 48 41 +Ethernet4 UC4 8 84 82 94 +Ethernet4 UC5 83 15 75 92 +Ethernet4 UC6 84 26 50 71 +Ethernet4 UC7 27 19 49 80 +Ethernet4 UC8 13 89 13 33 +Ethernet4 UC9 43 48 86 31 +Ethernet4 MC10 50 1 57 82 +Ethernet4 MC11 67 99 84 59 +Ethernet4 MC12 4 58 27 5 +Ethernet4 MC13 74 5 57 39 +Ethernet4 MC14 21 59 4 14 +Ethernet4 MC15 24 61 19 53 +Ethernet4 MC16 51 15 15 32 +Ethernet4 MC17 98 18 23 15 +Ethernet4 MC18 41 34 9 57 +Ethernet4 MC19 57 7 18 99 +Ethernet4 ALL20 N/A N/A N/A N/A +Ethernet4 ALL21 N/A N/A N/A N/A +Ethernet4 ALL22 N/A N/A N/A N/A +Ethernet4 ALL23 N/A N/A N/A N/A +Ethernet4 ALL24 N/A N/A N/A N/A +Ethernet4 ALL25 N/A N/A N/A N/A +Ethernet4 ALL26 N/A N/A N/A N/A +Ethernet4 ALL27 N/A N/A N/A N/A +Ethernet4 ALL28 N/A N/A N/A N/A +Ethernet4 ALL29 N/A N/A N/A N/A + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +Ethernet8 UC1 38 17 68 91 +Ethernet8 UC2 16 65 79 51 +Ethernet8 UC3 11 97 63 72 +Ethernet8 UC4 54 89 62 62 +Ethernet8 UC5 13 84 30 59 +Ethernet8 UC6 49 67 99 85 +Ethernet8 UC7 2 63 38 88 +Ethernet8 UC8 0 82 93 43 +Ethernet8 UC9 80 17 91 61 +Ethernet8 MC10 81 63 76 73 +Ethernet8 MC11 29 16 29 66 +Ethernet8 MC12 32 12 61 35 +Ethernet8 MC13 79 17 72 93 +Ethernet8 MC14 23 21 67 50 +Ethernet8 MC15 37 10 97 14 +Ethernet8 MC16 30 17 74 43 +Ethernet8 MC17 0 63 54 84 +Ethernet8 MC18 69 88 24 79 +Ethernet8 MC19 20 12 84 3 +Ethernet8 ALL20 N/A N/A N/A N/A +Ethernet8 ALL21 N/A N/A N/A N/A +Ethernet8 ALL22 N/A N/A N/A N/A +Ethernet8 ALL23 N/A N/A N/A N/A +Ethernet8 ALL24 N/A N/A N/A N/A +Ethernet8 ALL25 N/A N/A N/A N/A +Ethernet8 ALL26 N/A N/A N/A N/A +Ethernet8 ALL27 N/A N/A N/A N/A +Ethernet8 ALL28 N/A N/A N/A N/A +Ethernet8 ALL29 N/A N/A N/A N/A + +""" +show_queue_counters_port_nonzero = """\ + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ Ethernet8 UC1 38 17 68 91 Ethernet8 UC2 16 65 79 51 Ethernet8 UC3 11 97 63 72 @@ -159,6 +256,42 @@ """ + +show_queue_counters_port = """\ + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +Ethernet8 UC0 0 0 0 0 +Ethernet8 UC1 38 17 68 91 +Ethernet8 UC2 16 65 79 51 +Ethernet8 UC3 11 97 63 72 +Ethernet8 UC4 54 89 62 62 +Ethernet8 UC5 13 84 30 59 +Ethernet8 UC6 49 67 99 85 +Ethernet8 UC7 2 63 38 88 +Ethernet8 UC8 0 82 93 43 +Ethernet8 UC9 80 17 91 61 +Ethernet8 MC10 81 63 76 73 +Ethernet8 MC11 29 16 29 66 +Ethernet8 MC12 32 12 61 35 +Ethernet8 MC13 79 17 72 93 +Ethernet8 MC14 23 21 67 50 +Ethernet8 MC15 37 10 97 14 +Ethernet8 MC16 30 17 74 43 +Ethernet8 MC17 0 63 54 84 +Ethernet8 MC18 69 88 24 79 +Ethernet8 MC19 20 12 84 3 +Ethernet8 ALL20 N/A N/A N/A N/A +Ethernet8 ALL21 N/A N/A N/A N/A +Ethernet8 ALL22 N/A N/A N/A N/A +Ethernet8 ALL23 N/A N/A N/A N/A +Ethernet8 ALL24 N/A N/A N/A N/A +Ethernet8 ALL25 N/A N/A N/A N/A +Ethernet8 ALL26 N/A N/A N/A N/A +Ethernet8 ALL27 N/A N/A N/A N/A +Ethernet8 ALL28 N/A N/A N/A N/A +Ethernet8 ALL29 N/A N/A N/A N/A + +""" show_queue_counters_json = """\ { "Ethernet0": { @@ -283,10 +416,10 @@ "totalpacket": "57" }, "UC0": { - "dropbytes": "74", - "droppacket": "56", - "totalbytes": "30", - "totalpacket": "68" + "dropbytes": "0", + "droppacket": "0", + "totalbytes": "0", + "totalpacket": "0" }, "UC1": { "dropbytes": "1", @@ -647,10 +780,10 @@ "totalpacket": "20" }, "UC0": { - "dropbytes": "56", - "droppacket": "36", - "totalbytes": "5", - "totalpacket": "19" + "dropbytes": "0", + "droppacket": "0", + "totalbytes": "0", + "totalpacket": "0" }, "UC1": { "dropbytes": "91", @@ -709,7 +842,7 @@ } }""" -show_queue_counters_port_json = """\ +show_queue_counters_port_json_nonzero = """\ { "Ethernet8": { "ALL20": { @@ -832,12 +965,6 @@ "totalbytes": "12", "totalpacket": "20" }, - "UC0": { - "dropbytes": "56", - "droppacket": "36", - "totalbytes": "5", - "totalpacket": "19" - }, "UC1": { "dropbytes": "91", "droppacket": "68", @@ -896,53 +1023,1378 @@ }""" -class TestQueue(object): - @classmethod - def setup_class(cls): - os.environ["PATH"] += os.pathsep + scripts_path - os.environ['UTILITIES_UNIT_TESTING'] = "2" - print("SETUP") - - def test_queue_counters(self): - runner = CliRunner() - result = runner.invoke( - show.cli.commands["queue"].commands["counters"], - [] - ) - print(result.output) - assert result.exit_code == 0 - assert result.output == show_queue_counters - - def test_queue_counters_port(self): - runner = CliRunner() - result = runner.invoke( - show.cli.commands["queue"].commands["counters"], - ["Ethernet8"] - ) - print(result.output) - assert result.exit_code == 0 - assert result.output == show_queue_counters_port - - def test_queue_counters_json(self): - runner = CliRunner() - result = runner.invoke( - show.cli.commands["queue"].commands["counters"], - ["--json"] - ) - assert result.exit_code == 0 - print(result.output) - json_output = json.loads(result.output) - - # remove "time" from the output - for _, v in json_output.items(): - del v["time"] - assert json_dump(json_output) == show_queue_counters_json - - def test_queue_counters_port_json(self): - runner = CliRunner() - result = runner.invoke( - show.cli.commands["queue"].commands["counters"], - ["Ethernet8 --json"] +show_queue_counters_port_json = """\ +{ + "Ethernet8": { + "ALL20": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL21": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL22": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL23": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL24": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL25": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL26": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL27": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL28": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL29": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "MC10": { + "dropbytes": "73", + "droppacket": "76", + "totalbytes": "63", + "totalpacket": "81" + }, + "MC11": { + "dropbytes": "66", + "droppacket": "29", + "totalbytes": "16", + "totalpacket": "29" + }, + "MC12": { + "dropbytes": "35", + "droppacket": "61", + "totalbytes": "12", + "totalpacket": "32" + }, + "MC13": { + "dropbytes": "93", + "droppacket": "72", + "totalbytes": "17", + "totalpacket": "79" + }, + "MC14": { + "dropbytes": "50", + "droppacket": "67", + "totalbytes": "21", + "totalpacket": "23" + }, + "MC15": { + "dropbytes": "14", + "droppacket": "97", + "totalbytes": "10", + "totalpacket": "37" + }, + "MC16": { + "dropbytes": "43", + "droppacket": "74", + "totalbytes": "17", + "totalpacket": "30" + }, + "MC17": { + "dropbytes": "84", + "droppacket": "54", + "totalbytes": "63", + "totalpacket": "0" + }, + "MC18": { + "dropbytes": "79", + "droppacket": "24", + "totalbytes": "88", + "totalpacket": "69" + }, + "MC19": { + "dropbytes": "3", + "droppacket": "84", + "totalbytes": "12", + "totalpacket": "20" + }, + "UC0": { + "dropbytes": "0", + "droppacket": "0", + "totalbytes": "0", + "totalpacket": "0" + }, + "UC1": { + "dropbytes": "91", + "droppacket": "68", + "totalbytes": "17", + "totalpacket": "38" + }, + "UC2": { + "dropbytes": "51", + "droppacket": "79", + "totalbytes": "65", + "totalpacket": "16" + }, + "UC3": { + "dropbytes": "72", + "droppacket": "63", + "totalbytes": "97", + "totalpacket": "11" + }, + "UC4": { + "dropbytes": "62", + "droppacket": "62", + "totalbytes": "89", + "totalpacket": "54" + }, + "UC5": { + "dropbytes": "59", + "droppacket": "30", + "totalbytes": "84", + "totalpacket": "13" + }, + "UC6": { + "dropbytes": "85", + "droppacket": "99", + "totalbytes": "67", + "totalpacket": "49" + }, + "UC7": { + "dropbytes": "88", + "droppacket": "38", + "totalbytes": "63", + "totalpacket": "2" + }, + "UC8": { + "dropbytes": "43", + "droppacket": "93", + "totalbytes": "82", + "totalpacket": "0" + }, + "UC9": { + "dropbytes": "61", + "droppacket": "91", + "totalbytes": "17", + "totalpacket": "80" + } + } +}""" + +show_queue_counters_json_nonzero = """\ +{ + "Ethernet0": { + "ALL20": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL21": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL22": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL23": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL24": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL25": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL26": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL27": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL28": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL29": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "MC10": { + "dropbytes": "9", + "droppacket": "74", + "totalbytes": "96", + "totalpacket": "83" + }, + "MC11": { + "dropbytes": "31", + "droppacket": "61", + "totalbytes": "60", + "totalpacket": "15" + }, + "MC12": { + "dropbytes": "94", + "droppacket": "82", + "totalbytes": "52", + "totalpacket": "45" + }, + "MC13": { + "dropbytes": "52", + "droppacket": "89", + "totalbytes": "88", + "totalpacket": "55" + }, + "MC14": { + "dropbytes": "79", + "droppacket": "95", + "totalbytes": "70", + "totalpacket": "14" + }, + "MC15": { + "dropbytes": "81", + "droppacket": "66", + "totalbytes": "60", + "totalpacket": "68" + }, + "MC16": { + "dropbytes": "76", + "droppacket": "48", + "totalbytes": "4", + "totalpacket": "63" + }, + "MC17": { + "dropbytes": "74", + "droppacket": "77", + "totalbytes": "73", + "totalpacket": "41" + }, + "MC18": { + "dropbytes": "54", + "droppacket": "56", + "totalbytes": "21", + "totalpacket": "60" + }, + "MC19": { + "dropbytes": "39", + "droppacket": "12", + "totalbytes": "31", + "totalpacket": "57" + }, + "UC1": { + "dropbytes": "1", + "droppacket": "39", + "totalbytes": "43", + "totalpacket": "60" + }, + "UC2": { + "dropbytes": "21", + "droppacket": "39", + "totalbytes": "7", + "totalpacket": "82" + }, + "UC3": { + "dropbytes": "76", + "droppacket": "19", + "totalbytes": "70", + "totalpacket": "52" + }, + "UC4": { + "dropbytes": "94", + "droppacket": "12", + "totalbytes": "59", + "totalpacket": "11" + }, + "UC5": { + "dropbytes": "40", + "droppacket": "35", + "totalbytes": "62", + "totalpacket": "36" + }, + "UC6": { + "dropbytes": "88", + "droppacket": "2", + "totalbytes": "91", + "totalpacket": "49" + }, + "UC7": { + "dropbytes": "74", + "droppacket": "94", + "totalbytes": "17", + "totalpacket": "33" + }, + "UC8": { + "dropbytes": "33", + "droppacket": "95", + "totalbytes": "71", + "totalpacket": "40" + }, + "UC9": { + "dropbytes": "78", + "droppacket": "93", + "totalbytes": "8", + "totalpacket": "54" + } + }, + "Ethernet4": { + "ALL20": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL21": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL22": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL23": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL24": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL25": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL26": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL27": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL28": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL29": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "MC10": { + "dropbytes": "82", + "droppacket": "57", + "totalbytes": "1", + "totalpacket": "50" + }, + "MC11": { + "dropbytes": "59", + "droppacket": "84", + "totalbytes": "99", + "totalpacket": "67" + }, + "MC12": { + "dropbytes": "5", + "droppacket": "27", + "totalbytes": "58", + "totalpacket": "4" + }, + "MC13": { + "dropbytes": "39", + "droppacket": "57", + "totalbytes": "5", + "totalpacket": "74" + }, + "MC14": { + "dropbytes": "14", + "droppacket": "4", + "totalbytes": "59", + "totalpacket": "21" + }, + "MC15": { + "dropbytes": "53", + "droppacket": "19", + "totalbytes": "61", + "totalpacket": "24" + }, + "MC16": { + "dropbytes": "32", + "droppacket": "15", + "totalbytes": "15", + "totalpacket": "51" + }, + "MC17": { + "dropbytes": "15", + "droppacket": "23", + "totalbytes": "18", + "totalpacket": "98" + }, + "MC18": { + "dropbytes": "57", + "droppacket": "9", + "totalbytes": "34", + "totalpacket": "41" + }, + "MC19": { + "dropbytes": "99", + "droppacket": "18", + "totalbytes": "7", + "totalpacket": "57" + }, + "UC0": { + "dropbytes": "98", + "droppacket": "70", + "totalbytes": "96", + "totalpacket": "41" + }, + "UC1": { + "dropbytes": "36", + "droppacket": "63", + "totalbytes": "49", + "totalpacket": "18" + }, + "UC2": { + "dropbytes": "15", + "droppacket": "3", + "totalbytes": "90", + "totalpacket": "99" + }, + "UC3": { + "dropbytes": "41", + "droppacket": "48", + "totalbytes": "89", + "totalpacket": "60" + }, + "UC4": { + "dropbytes": "94", + "droppacket": "82", + "totalbytes": "84", + "totalpacket": "8" + }, + "UC5": { + "dropbytes": "92", + "droppacket": "75", + "totalbytes": "15", + "totalpacket": "83" + }, + "UC6": { + "dropbytes": "71", + "droppacket": "50", + "totalbytes": "26", + "totalpacket": "84" + }, + "UC7": { + "dropbytes": "80", + "droppacket": "49", + "totalbytes": "19", + "totalpacket": "27" + }, + "UC8": { + "dropbytes": "33", + "droppacket": "13", + "totalbytes": "89", + "totalpacket": "13" + }, + "UC9": { + "dropbytes": "31", + "droppacket": "86", + "totalbytes": "48", + "totalpacket": "43" + } + }, + "Ethernet8": { + "ALL20": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL21": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL22": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL23": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL24": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL25": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL26": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL27": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL28": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL29": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "MC10": { + "dropbytes": "73", + "droppacket": "76", + "totalbytes": "63", + "totalpacket": "81" + }, + "MC11": { + "dropbytes": "66", + "droppacket": "29", + "totalbytes": "16", + "totalpacket": "29" + }, + "MC12": { + "dropbytes": "35", + "droppacket": "61", + "totalbytes": "12", + "totalpacket": "32" + }, + "MC13": { + "dropbytes": "93", + "droppacket": "72", + "totalbytes": "17", + "totalpacket": "79" + }, + "MC14": { + "dropbytes": "50", + "droppacket": "67", + "totalbytes": "21", + "totalpacket": "23" + }, + "MC15": { + "dropbytes": "14", + "droppacket": "97", + "totalbytes": "10", + "totalpacket": "37" + }, + "MC16": { + "dropbytes": "43", + "droppacket": "74", + "totalbytes": "17", + "totalpacket": "30" + }, + "MC17": { + "dropbytes": "84", + "droppacket": "54", + "totalbytes": "63", + "totalpacket": "0" + }, + "MC18": { + "dropbytes": "79", + "droppacket": "24", + "totalbytes": "88", + "totalpacket": "69" + }, + "MC19": { + "dropbytes": "3", + "droppacket": "84", + "totalbytes": "12", + "totalpacket": "20" + }, + "UC1": { + "dropbytes": "91", + "droppacket": "68", + "totalbytes": "17", + "totalpacket": "38" + }, + "UC2": { + "dropbytes": "51", + "droppacket": "79", + "totalbytes": "65", + "totalpacket": "16" + }, + "UC3": { + "dropbytes": "72", + "droppacket": "63", + "totalbytes": "97", + "totalpacket": "11" + }, + "UC4": { + "dropbytes": "62", + "droppacket": "62", + "totalbytes": "89", + "totalpacket": "54" + }, + "UC5": { + "dropbytes": "59", + "droppacket": "30", + "totalbytes": "84", + "totalpacket": "13" + }, + "UC6": { + "dropbytes": "85", + "droppacket": "99", + "totalbytes": "67", + "totalpacket": "49" + }, + "UC7": { + "dropbytes": "88", + "droppacket": "38", + "totalbytes": "63", + "totalpacket": "2" + }, + "UC8": { + "dropbytes": "43", + "droppacket": "93", + "totalbytes": "82", + "totalpacket": "0" + }, + "UC9": { + "dropbytes": "61", + "droppacket": "91", + "totalbytes": "17", + "totalpacket": "80" + } + } +}""" + +show_queue_counters_port_json = """\ +{ + "Ethernet8": { + "ALL20": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL21": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL22": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL23": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL24": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL25": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL26": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL27": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL28": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "ALL29": { + "dropbytes": "N/A", + "droppacket": "N/A", + "totalbytes": "N/A", + "totalpacket": "N/A" + }, + "MC10": { + "dropbytes": "73", + "droppacket": "76", + "totalbytes": "63", + "totalpacket": "81" + }, + "MC11": { + "dropbytes": "66", + "droppacket": "29", + "totalbytes": "16", + "totalpacket": "29" + }, + "MC12": { + "dropbytes": "35", + "droppacket": "61", + "totalbytes": "12", + "totalpacket": "32" + }, + "MC13": { + "dropbytes": "93", + "droppacket": "72", + "totalbytes": "17", + "totalpacket": "79" + }, + "MC14": { + "dropbytes": "50", + "droppacket": "67", + "totalbytes": "21", + "totalpacket": "23" + }, + "MC15": { + "dropbytes": "14", + "droppacket": "97", + "totalbytes": "10", + "totalpacket": "37" + }, + "MC16": { + "dropbytes": "43", + "droppacket": "74", + "totalbytes": "17", + "totalpacket": "30" + }, + "MC17": { + "dropbytes": "84", + "droppacket": "54", + "totalbytes": "63", + "totalpacket": "0" + }, + "MC18": { + "dropbytes": "79", + "droppacket": "24", + "totalbytes": "88", + "totalpacket": "69" + }, + "MC19": { + "dropbytes": "3", + "droppacket": "84", + "totalbytes": "12", + "totalpacket": "20" + }, + "UC0": { + "dropbytes": "0", + "droppacket": "0", + "totalbytes": "0", + "totalpacket": "0" + }, + "UC1": { + "dropbytes": "91", + "droppacket": "68", + "totalbytes": "17", + "totalpacket": "38" + }, + "UC2": { + "dropbytes": "51", + "droppacket": "79", + "totalbytes": "65", + "totalpacket": "16" + }, + "UC3": { + "dropbytes": "72", + "droppacket": "63", + "totalbytes": "97", + "totalpacket": "11" + }, + "UC4": { + "dropbytes": "62", + "droppacket": "62", + "totalbytes": "89", + "totalpacket": "54" + }, + "UC5": { + "dropbytes": "59", + "droppacket": "30", + "totalbytes": "84", + "totalpacket": "13" + }, + "UC6": { + "dropbytes": "85", + "droppacket": "99", + "totalbytes": "67", + "totalpacket": "49" + }, + "UC7": { + "dropbytes": "88", + "droppacket": "38", + "totalbytes": "63", + "totalpacket": "2" + }, + "UC8": { + "dropbytes": "43", + "droppacket": "93", + "totalbytes": "82", + "totalpacket": "0" + }, + "UC9": { + "dropbytes": "61", + "droppacket": "91", + "totalbytes": "17", + "totalpacket": "80" + } + } +}""" + +show_queue_voq_counters = """\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet0 VOQ0 68 30 56 74 +testsw|Ethernet0 VOQ1 60 43 39 1 +testsw|Ethernet0 VOQ2 82 7 39 21 +testsw|Ethernet0 VOQ3 11 59 12 94 +testsw|Ethernet0 VOQ4 36 62 35 40 +testsw|Ethernet0 VOQ5 49 91 2 88 +testsw|Ethernet0 VOQ6 33 17 94 74 +testsw|Ethernet0 VOQ7 40 71 95 33 + + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet4 VOQ0 54 8 93 78 +testsw|Ethernet4 VOQ1 83 96 74 9 +testsw|Ethernet4 VOQ2 15 60 61 31 +testsw|Ethernet4 VOQ3 45 52 82 94 +testsw|Ethernet4 VOQ4 55 88 89 52 +testsw|Ethernet4 VOQ5 14 70 95 79 +testsw|Ethernet4 VOQ6 68 60 66 81 +testsw|Ethernet4 VOQ7 63 4 48 76 + + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet8 VOQ0 41 73 77 74 +testsw|Ethernet8 VOQ1 60 21 56 54 +testsw|Ethernet8 VOQ2 57 31 12 39 +testsw|Ethernet8 VOQ3 41 96 70 98 +testsw|Ethernet8 VOQ4 18 49 63 36 +testsw|Ethernet8 VOQ5 99 90 3 15 +testsw|Ethernet8 VOQ6 8 84 82 94 +testsw|Ethernet8 VOQ7 83 15 75 92 + +""" + +show_queue_voq_counters_with_clear = ["""\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet0 VOQ0 0 0 0 0 +testsw|Ethernet0 VOQ1 0 0 0 0 +testsw|Ethernet0 VOQ2 0 0 0 0 +testsw|Ethernet0 VOQ3 0 0 0 0 +testsw|Ethernet0 VOQ4 0 0 0 0 +testsw|Ethernet0 VOQ5 0 0 0 0 +testsw|Ethernet0 VOQ6 0 0 0 0 +testsw|Ethernet0 VOQ7 0 0 0 0 +""", """\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet4 VOQ0 0 0 0 0 +testsw|Ethernet4 VOQ1 0 0 0 0 +testsw|Ethernet4 VOQ2 0 0 0 0 +testsw|Ethernet4 VOQ3 0 0 0 0 +testsw|Ethernet4 VOQ4 0 0 0 0 +testsw|Ethernet4 VOQ5 0 0 0 0 +testsw|Ethernet4 VOQ6 0 0 0 0 +testsw|Ethernet4 VOQ7 0 0 0 0 +""", """\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet8 VOQ0 0 0 0 0 +testsw|Ethernet8 VOQ1 0 0 0 0 +testsw|Ethernet8 VOQ2 0 0 0 0 +testsw|Ethernet8 VOQ3 0 0 0 0 +testsw|Ethernet8 VOQ4 0 0 0 0 +testsw|Ethernet8 VOQ5 0 0 0 0 +testsw|Ethernet8 VOQ6 0 0 0 0 +testsw|Ethernet8 VOQ7 0 0 0 0 +""" +] + +show_queue_port_voq_counters = """\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet0 VOQ0 68 30 56 74 +testsw|Ethernet0 VOQ1 60 43 39 1 +testsw|Ethernet0 VOQ2 82 7 39 21 +testsw|Ethernet0 VOQ3 11 59 12 94 +testsw|Ethernet0 VOQ4 36 62 35 40 +testsw|Ethernet0 VOQ5 49 91 2 88 +testsw|Ethernet0 VOQ6 33 17 94 74 +testsw|Ethernet0 VOQ7 40 71 95 33 + +""" + +show_queue_voq_counters_json = """\ +{ + "testsw|Ethernet0": { + "VOQ0": { + "dropbytes": "74", + "droppacket": "56", + "totalbytes": "30", + "totalpacket": "68" + }, + "VOQ1": { + "dropbytes": "1", + "droppacket": "39", + "totalbytes": "43", + "totalpacket": "60" + }, + "VOQ2": { + "dropbytes": "21", + "droppacket": "39", + "totalbytes": "7", + "totalpacket": "82" + }, + "VOQ3": { + "dropbytes": "94", + "droppacket": "12", + "totalbytes": "59", + "totalpacket": "11" + }, + "VOQ4": { + "dropbytes": "40", + "droppacket": "35", + "totalbytes": "62", + "totalpacket": "36" + }, + "VOQ5": { + "dropbytes": "88", + "droppacket": "2", + "totalbytes": "91", + "totalpacket": "49" + }, + "VOQ6": { + "dropbytes": "74", + "droppacket": "94", + "totalbytes": "17", + "totalpacket": "33" + }, + "VOQ7": { + "dropbytes": "33", + "droppacket": "95", + "totalbytes": "71", + "totalpacket": "40" + } + }, + "testsw|Ethernet4": { + "VOQ0": { + "dropbytes": "78", + "droppacket": "93", + "totalbytes": "8", + "totalpacket": "54" + }, + "VOQ1": { + "dropbytes": "9", + "droppacket": "74", + "totalbytes": "96", + "totalpacket": "83" + }, + "VOQ2": { + "dropbytes": "31", + "droppacket": "61", + "totalbytes": "60", + "totalpacket": "15" + }, + "VOQ3": { + "dropbytes": "94", + "droppacket": "82", + "totalbytes": "52", + "totalpacket": "45" + }, + "VOQ4": { + "dropbytes": "52", + "droppacket": "89", + "totalbytes": "88", + "totalpacket": "55" + }, + "VOQ5": { + "dropbytes": "79", + "droppacket": "95", + "totalbytes": "70", + "totalpacket": "14" + }, + "VOQ6": { + "dropbytes": "81", + "droppacket": "66", + "totalbytes": "60", + "totalpacket": "68" + }, + "VOQ7": { + "dropbytes": "76", + "droppacket": "48", + "totalbytes": "4", + "totalpacket": "63" + } + }, + "testsw|Ethernet8": { + "VOQ0": { + "dropbytes": "74", + "droppacket": "77", + "totalbytes": "73", + "totalpacket": "41" + }, + "VOQ1": { + "dropbytes": "54", + "droppacket": "56", + "totalbytes": "21", + "totalpacket": "60" + }, + "VOQ2": { + "dropbytes": "39", + "droppacket": "12", + "totalbytes": "31", + "totalpacket": "57" + }, + "VOQ3": { + "dropbytes": "98", + "droppacket": "70", + "totalbytes": "96", + "totalpacket": "41" + }, + "VOQ4": { + "dropbytes": "36", + "droppacket": "63", + "totalbytes": "49", + "totalpacket": "18" + }, + "VOQ5": { + "dropbytes": "15", + "droppacket": "3", + "totalbytes": "90", + "totalpacket": "99" + }, + "VOQ6": { + "dropbytes": "94", + "droppacket": "82", + "totalbytes": "84", + "totalpacket": "8" + }, + "VOQ7": { + "dropbytes": "92", + "droppacket": "75", + "totalbytes": "15", + "totalpacket": "83" + } + } +}""" + +show_queue_port_voq_counters_json = """\ +{ + "testsw|Ethernet0": { + "VOQ0": { + "dropbytes": "74", + "droppacket": "56", + "totalbytes": "30", + "totalpacket": "68" + }, + "VOQ1": { + "dropbytes": "1", + "droppacket": "39", + "totalbytes": "43", + "totalpacket": "60" + }, + "VOQ2": { + "dropbytes": "21", + "droppacket": "39", + "totalbytes": "7", + "totalpacket": "82" + }, + "VOQ3": { + "dropbytes": "94", + "droppacket": "12", + "totalbytes": "59", + "totalpacket": "11" + }, + "VOQ4": { + "dropbytes": "40", + "droppacket": "35", + "totalbytes": "62", + "totalpacket": "36" + }, + "VOQ5": { + "dropbytes": "88", + "droppacket": "2", + "totalbytes": "91", + "totalpacket": "49" + }, + "VOQ6": { + "dropbytes": "74", + "droppacket": "94", + "totalbytes": "17", + "totalpacket": "33" + }, + "VOQ7": { + "dropbytes": "33", + "droppacket": "95", + "totalbytes": "71", + "totalpacket": "40" + } + } +}""" + +class TestQueue(object): + @classmethod + def setup_class(cls): + os.environ["PATH"] += os.pathsep + scripts_path + os.environ['UTILITIES_UNIT_TESTING'] = "2" + print("SETUP") + + def test_queue_counters(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + [] + ) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_queue_counters + + def test_queue_counters_nonzero(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["--nonzero"] + ) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_queue_counters_nonzero + + + def test_queue_counters_port(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["Ethernet8"] + ) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_queue_counters_port + + def test_queue_counters_port_nonzero(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["Ethernet8", "--nonzero"] + ) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_queue_counters_port_nonzero + + def test_queue_counters_json(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["--json"] + ) + assert result.exit_code == 0 + print(result.output) + json_output = json.loads(result.output) + + # remove "time" from the output + for _, v in json_output.items(): + del v["time"] + assert json_dump(json_output) == show_queue_counters_json + + def test_queue_counters_json_nonzero(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["--json", "--nonzero"] + ) + assert result.exit_code == 0 + print(result.output) + json_output = json.loads(result.output) + + # remove "time" from the output + for _, v in json_output.items(): + del v["time"] + assert json_dump(json_output) == show_queue_counters_json_nonzero + + def test_queue_counters_port_json(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["Ethernet8 --json"] + ) + assert result.exit_code == 0 + print(result.output) + json_output = json.loads(result.output) + + # remove "time" from the output + for _, v in json_output.items(): + del v["time"] + assert json_dump(json_output) == show_queue_counters_port_json + + def test_queue_counters_port_json_nonzero(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["Ethernet8", "--json", "--nonzero"] + ) + assert result.exit_code == 0 + print(result.output) + json_output = json.loads(result.output) + + # remove "time" from the output + for _, v in json_output.items(): + del v["time"] + assert json_dump(json_output) == show_queue_counters_port_json_nonzero + + def test_queue_voq_counters(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["--voq"] + ) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_queue_voq_counters + + def test_queue_voq_counters_with_clear(self): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queuecounters'], []) + assert result.exit_code == 0 + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["--voq"] + ) + print(result.output) + show.run_command(['queuestat -d --voq']) + assert result.exit_code == 0 + assert "Ethernet0 Last cached time was" in result.output and \ + "Ethernet4 Last cached time was" in result.output and \ + "Ethernet8 Last cached time was" in result.output + assert show_queue_voq_counters_with_clear[0] in result.output and \ + show_queue_voq_counters_with_clear[1] in result.output and \ + show_queue_voq_counters_with_clear[2] in result.output + + def test_queue_port_voq_counters(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["testsw\\|Ethernet0 --voq"] + ) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_queue_port_voq_counters + + def test_queue_voq_counters_json(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["--voq", "--json"] + ) + assert result.exit_code == 0 + print(result.output) + json_output = json.loads(result.output) + + # remove "time" from the output + for _, v in json_output.items(): + del v["time"] + print(json_dump(json_output)) + print(show_queue_voq_counters_json) + assert json_dump(json_output) == show_queue_voq_counters_json + + def test_queue_voq_counters_port_json(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["testsw\\|Ethernet0", "--voq", "--json"] ) assert result.exit_code == 0 print(result.output) @@ -951,7 +2403,7 @@ def test_queue_counters_port_json(self): # remove "time" from the output for _, v in json_output.items(): del v["time"] - assert json_dump(json_output) == show_queue_counters_port_json + assert json_dump(json_output) == show_queue_port_voq_counters_json @classmethod def teardown_class(cls): diff --git a/tests/remote_cli_test.py b/tests/remote_cli_test.py new file mode 100644 index 000000000..d9fd67210 --- /dev/null +++ b/tests/remote_cli_test.py @@ -0,0 +1,285 @@ +import os +from click.testing import CliRunner +import paramiko +from rcli import rexec +from rcli import rshell +from rcli import linecard +from rcli import utils as rcli_utils +import sys +from io import BytesIO, StringIO +from unittest import mock +import select +import socket +import termios + +MULTI_LC_REXEC_OUTPUT = '''======== sonic-lc1 output: ======== +hello world +======== LINE-CARD2 output: ======== +hello world +''' +REXEC_HELP = '''Usage: cli [OPTIONS] LINECARD_NAMES... + + Executes a command on one or many linecards + + :param linecard_names: A list of linecard names to execute the command on, + use `all` to execute on all linecards. :param command: The command to + execute on the linecard(s) :param username: The username to use to login to + the linecard(s) + +Options: + -c, --command TEXT [required] + -u, --username TEXT Username for login + --help Show this message and exit. +''' + + +def mock_exec_command(): + + mock_stdout = BytesIO(b"""hello world""") + mock_stderr = BytesIO() + return '', mock_stdout, None + + +def mock_exec_error_cmd(): + mock_stdout = BytesIO() + mock_stderr = BytesIO(b"""Command not found""") + return '', mock_stdout, mock_stderr + + +def mock_connection_channel(): + c = mock.MagicMock(return_value="channel") + c.get_pty = mock.MagicMock(return_value='') + c.invoke_shell = mock.MagicMock() + c.recv = mock.MagicMock(side_effect=['abcd', '']) + return c + + +def mock_connection_channel_with_timeout(): + c = mock.MagicMock(return_value="channel") + c.get_pty = mock.MagicMock(return_value='') + c.invoke_shell = mock.MagicMock() + c.recv = mock.MagicMock( + side_effect=['abcd', socket.timeout(10, 'timeout')]) + return c + + +def mock_paramiko_connection(channel): + # Create a mock to return for connection. + conn = mock.MagicMock() + # create a mock return for transport + t = mock.MagicMock() + t.open_session = mock.MagicMock(return_value=channel) + conn.get_transport = mock.MagicMock(return_value=t) + conn.connect = mock.MagicMock() + conn.close = mock.MagicMock() + return conn + + +class TestRemoteExec(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import dbconnector + dbconnector.load_database_config() + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + # @mock.patch.object(linecard.Linecard, '_get_password', mock.MagicMock(return_value='dummmy')) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value=mock_exec_command())) + def test_rexec_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "hello world" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value=mock_exec_command())) + def test_rexec_with_hostname(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc1" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "hello world" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value=mock_exec_error_cmd())) + def test_rexec_error_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Command not found" in result.output + + def test_rexec_error(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "This commmand is only supported Chassis" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) + def test_rexec_all(self): + runner = CliRunner() + LINECARD_NAME = "all" + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 0, result.output + assert MULTI_LC_REXEC_OUTPUT == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) + def test_rexec_invalid_lc(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc-3" + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Linecard sonic-lc-3 not found\n" == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) + def test_rexec_unreachable_lc(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD1" + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Linecard LINE-CARD1 not accessible\n" == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) + def test_rexec_help(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD1" + result = runner.invoke(rexec.cli, ["--help"]) + print(result.output) + assert result.exit_code == 0, result.output + assert REXEC_HELP == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock(side_effect=paramiko.ssh_exception.NoValidConnectionsError({('192.168.0.1', + 22): "None"}))) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) + def test_rexec_exception(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc1" + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Failed to connect to sonic-lc1 with username admin\n" == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock(side_effect=paramiko.ssh_exception.NoValidConnectionsError({('192.168.0.1', + 22): "None"}))) + def test_rexec_with_user_param(self): + runner = CliRunner() + LINECARD_NAME = "all" + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version", "-u", "testuser"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Failed to connect to sonic-lc1 with username testuser\n" == result.output + + +class TestRemoteCLI(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import dbconnector + dbconnector.load_database_config() + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "abcd" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name_2(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(side_effect=[([], [], []), ([channel], [], []), ([channel], [], [])])): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Connecting to LINE-CARD0" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name_3(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel_with_timeout() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Connecting to LINE-CARD0" in result.output + + def test_rcli_error(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 1, result.output + assert "This commmand is only supported Chassis" in result.output diff --git a/tests/route_check_test.py b/tests/route_check_test.py index b4fd3ce17..c58c5cfde 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -1,339 +1,42 @@ import copy import json -import os -import sys +import logging import syslog +import sys import time from sonic_py_common import device_info from unittest.mock import MagicMock, patch +from tests.route_check_test_data import ( + APPL_DB, MULTI_ASIC, NAMESPACE, DEFAULTNS, ARGS, ASIC_DB, CONFIG_DB, + DEFAULT_CONFIG_DB, DESCR, OP_DEL, OP_SET, PRE, RESULT, RET, TEST_DATA, + UPD +) import pytest +logger = logging.getLogger(__name__) + sys.path.append("scripts") import route_check -DESCR = "Description" -ARGS = "args" -RET = "return" -APPL_DB = 0 -ASIC_DB = 1 -PRE = "pre-value" -UPD = "update" -RESULT = "res" - -OP_SET = "SET" -OP_DEL = "DEL" - -ROUTE_TABLE = 'ROUTE_TABLE' -VNET_ROUTE_TABLE = 'VNET_ROUTE_TABLE' -INTF_TABLE = 'INTF_TABLE' -RT_ENTRY_TABLE = 'ASIC_STATE' -SEPARATOR = ":" - -RT_ENTRY_KEY_PREFIX = 'SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest":\"' -RT_ENTRY_KEY_SUFFIX = '\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000023\"}' - -current_test_name = None -current_test_no = None current_test_data = None - -tables_returned = {} - selector_returned = None subscribers_returned = {} +db_conns = {} -test_data = { - "0": { - DESCR: "basic good one", - ARGS: "route_check -m INFO -i 1000", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - }, - "1": { - DESCR: "With updates", - ARGS: "route_check -m DEBUG -i 1", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.10.10/32" + RT_ENTRY_KEY_SUFFIX: {} - } - } - }, - UPD: { - ASIC_DB: { - RT_ENTRY_TABLE: { - OP_SET: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - }, - OP_DEL: { - RT_ENTRY_KEY_PREFIX + "10.10.10.10/32" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - } - }, - "2": { - DESCR: "basic failure one", - ARGS: "route_check -i 15", - RET: -1, - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - INTF_TABLE: { - "PortChannel1013:90.10.196.24/31": {}, - "PortChannel1023:9603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "20.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "20.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "20.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "3603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} - } - } - }, - RESULT: { - "missed_ROUTE_TABLE_routes": [ - "10.10.196.12/31", - "10.10.196.20/31" - ], - "missed_INTF_TABLE_entries": [ - "90.10.196.24/32", - "9603:10b0:503:df4::5d/128" - ], - "Unaccounted_ROUTE_ENTRY_TABLE_entries": [ - "20.10.196.12/31", - "20.10.196.20/31", - "20.10.196.24/32", - "3603:10b0:503:df4::5d/128" - ] - } - }, - "3": { - DESCR: "basic good one with no args", - ARGS: "route_check", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - }, - "4": { - DESCR: "Good one with routes on voq inband interface", - ARGS: "route_check", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" }, - "10.10.197.1" : { "ifname": "Ethernet-IB0", "nexthop": "0.0.0.0"}, - "2603:10b0:503:df5::1" : { "ifname": "Ethernet-IB0", "nexthop": "::"}, - "100.0.0.2/32" : { "ifname": "Ethernet-IB0", "nexthop": "0.0.0.0" }, - "2064:100::2/128" : { "ifname": "Ethernet-IB0", "nexthop": "::" }, - "101.0.0.0/24" : { "ifname": "Ethernet-IB0", "nexthop": "100.0.0.2"} - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {}, - "Ethernet-IB0:10.10.197.1/24": {}, - "Ethernet-IB0:2603:10b0:503:df5::1/64": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.197.1/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df5::1/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "101.0.0.0/24" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - }, - "5": { - DESCR: "local route with nexthop - fail", - ARGS: "route_check -m INFO -i 1000", - RET: -1, - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo", "nexthop": "100.0.0.2" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} - } - } - }, - RESULT: { - "missed_ROUTE_TABLE_routes": [ - "10.10.196.30/31" - ] - } - }, - "6": { - DESCR: "Good one with VNET routes", - ARGS: "route_check", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - VNET_ROUTE_TABLE: { - "Vnet1:30.1.10.0/24": { "ifname": "Vlan3001" }, - "Vnet1:50.1.1.0/24": { "ifname": "Vlan3001" }, - "Vnet1:50.2.2.0/24": { "ifname": "Vlan3001" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {}, - "Vlan3001": { "vnet_name": "Vnet1" }, - "Vlan3001:30.1.10.1/24": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "30.1.10.1/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "30.1.10.0/24" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "50.1.1.0/24" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "50.2.2.0/24" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - } -} - -def do_start_test(tname, tno, ctdata): - global current_test_name, current_test_no, current_test_data - global tables_returned, selector_returned, subscribers_returned - - current_test_name = tname - current_test_no = tno +def set_test_case_data(ctdata): + global current_test_data, db_conns, selector_returned, subscribers_returned current_test_data = ctdata - tables_returned = {} - selector_returned = None subscribers_returned = {} - print("Starting test case {} number={}".format(tname, tno)) - - -def check_subset(d_sub, d_all): - if type(d_sub) != type(d_all): - return -1 - if not type(d_sub) is dict: - ret = 0 if d_sub == d_all else -2 - return ret - - for (k, v) in d_sub.items(): - if not k in d_all: - return -3 - ret = check_subset(v, d_all[k]) - if ret != 0: - return ret - return 0 - def recursive_update(d, t): - assert (type(t) is dict) + assert type(t) is dict for k in t.keys(): if type(t[k]) is not dict: d.update(t) return - if k not in d: d[k] = {} recursive_update(d[k], t[k]) @@ -344,15 +47,13 @@ class Table: def __init__(self, db, tbl): self.db = db self.tbl = tbl - self.data = copy.deepcopy(self.get_val(current_test_data[PRE], [db, tbl])) - # print("Table:init: db={} tbl={} data={}".format(db, tbl, json.dumps(self.data, indent=4))) - + self.data = copy.deepcopy(self.get_val(current_test_data[PRE], [db["namespace"], db["name"], tbl])) def update(self): t = copy.deepcopy(self.get_val(current_test_data.get(UPD, {}), - [self.db, self.tbl, OP_SET])) + [self.db["namespace"], self.db["name"], self.tbl, OP_SET])) drop = copy.deepcopy(self.get_val(current_test_data.get(UPD, {}), - [self.db, self.tbl, OP_DEL])) + [self.db["namespace"], self.db["name"], self.tbl, OP_DEL])) if t: recursive_update(self.data, t) @@ -376,20 +77,28 @@ def get(self, key): return (True, ret) -db_conns = {"APPL_DB": APPL_DB, "ASIC_DB": ASIC_DB} -def conn_side_effect(arg, _): - return db_conns[arg] + def hget(self, key, field): + ret = copy.deepcopy(self.data.get(key, {}).get(field, {})) + return True, ret + +def conn_side_effect(arg, _1, _2, namespace): + return db_conns[namespace][arg] +def init_db_conns(namespaces): + for ns in namespaces: + db_conns[ns] = { + "APPL_DB": {"namespace": ns, "name": APPL_DB}, + "ASIC_DB": {"namespace": ns, "name": ASIC_DB}, + "CONFIG_DB": ConfigDB(ns) + } def table_side_effect(db, tbl): - if not db in tables_returned: - tables_returned[db] = {} - if not tbl in tables_returned[db]: - tables_returned[db][tbl] = Table(db, tbl) - return tables_returned[db][tbl] + if not tbl in db.keys(): + db[tbl] = Table(db, tbl) + return db[tbl] -class mock_selector: +class MockSelector: TIMEOUT = 1 EMULATE_HANG = False @@ -397,8 +106,7 @@ def __init__(self): self.select_state = 0 self.select_cnt = 0 self.subs = None - # print("Mock Selector constructed") - + logger.debug("Mock Selector constructed") def addSelectable(self, subs): self.subs = subs @@ -411,7 +119,7 @@ def select(self, timeout): state = self.select_state self.subs.update() - if mock_selector.EMULATE_HANG: + if MockSelector.EMULATE_HANG: time.sleep(60) if self.select_state == 0: @@ -422,24 +130,11 @@ def select(self, timeout): return (state, None) -class mock_db_conn: - def __init__(self, db): - self.db_name = None - for (k, v) in db_conns.items(): - if v == db: - self.db_name = k - assert self.db_name != None - - def getDbName(self): - return self.db_name - - -class mock_subscriber: +class MockSubscriber: def __init__(self, db, tbl): self.state = PRE self.db = db self.tbl = tbl - self.dbconn = mock_db_conn(db) self.mock_tbl = table_side_effect(self.db, self.tbl) self.set_keys = list(self.mock_tbl.data.keys()) self.del_keys = [] @@ -466,24 +161,13 @@ def pop(self): k = "" op = "" - print("state={} k={} op={} v={}".format(self.state, k, op, str(v))) return (k, op, v) - - - def getDbConnector(self): - return self.dbconn - - - def getTableName(self): - return self.tbl - def subscriber_side_effect(db, tbl): global subscribers_returned - - key = "db_{}_tbl_{}".format(db, tbl) + key = "db_{}_{}_tbl_{}".format(db["namespace"], db["name"], tbl) if not key in subscribers_returned: - subscribers_returned[key] = mock_subscriber(db, tbl) + subscribers_returned[key] = MockSubscriber(db, tbl) return subscribers_returned[key] @@ -491,65 +175,102 @@ def select_side_effect(): global selector_returned if not selector_returned: - selector_returned = mock_selector() + selector_returned = MockSelector() return selector_returned +def config_db_side_effect(namespace): + return db_conns[namespace]["CONFIG_DB"] -def table_side_effect(db, tbl): - if not db in tables_returned: - tables_returned[db] = {} - if not tbl in tables_returned[db]: - tables_returned[db][tbl] = Table(db, tbl) - return tables_returned[db][tbl] +class ConfigDB: + def __init__(self, namespace): + self.namespace = namespace + self.name = CONFIG_DB + self.db = current_test_data[PRE].get(namespace, {}).get(CONFIG_DB, DEFAULT_CONFIG_DB) + + def get_table(self, table): + return self.db.get(table, {}) + def get_entry(self, table, key): + return self.get_table(table).get(key, {}) -def set_mock(mock_table, mock_conn, mock_sel, mock_subs): +def set_mock(mock_table, mock_conn, mock_sel, mock_subs, mock_config_db): mock_conn.side_effect = conn_side_effect mock_table.side_effect = table_side_effect mock_sel.side_effect = select_side_effect mock_subs.side_effect = subscriber_side_effect - + mock_config_db.side_effect = config_db_side_effect class TestRouteCheck(object): + def setup(self): pass def init(self): route_check.UNIT_TESTING = 1 - - @patch("route_check.swsscommon.DBConnector") - @patch("route_check.swsscommon.Table") - @patch("route_check.swsscommon.Select") - @patch("route_check.swsscommon.SubscriberStateTable") - def test_server(self, mock_subs, mock_sel, mock_table, mock_conn): + @pytest.fixture + def force_hang(self): + old_timeout = route_check.TIMEOUT_SECONDS + route_check.TIMEOUT_SECONDS = 5 + MockSelector.EMULATE_HANG = True + + yield + + route_check.TIMEOUT_SECONDS = old_timeout + MockSelector.EMULATE_HANG = False + + @pytest.fixture + def mock_dbs(self): + with patch("route_check.swsscommon.DBConnector") as mock_conn, \ + patch("route_check.swsscommon.Table") as mock_table, \ + patch("route_check.swsscommon.Select") as mock_sel, \ + patch("route_check.swsscommon.SubscriberStateTable") as mock_subs, \ + patch("sonic_py_common.multi_asic.connect_config_db_for_ns") as mock_config_db, \ + patch("route_check.swsscommon.NotificationProducer"): + device_info.get_platform = MagicMock(return_value='unittest') + set_mock(mock_table, mock_conn, mock_sel, mock_subs, mock_config_db) + yield + + @pytest.mark.parametrize("test_num", TEST_DATA.keys()) + def test_route_check(self, mock_dbs, test_num): + logger.debug("test_route_check: test_num={}".format(test_num)) self.init() ret = 0 - device_info.get_platform = MagicMock(return_value='unittest') - set_mock(mock_table, mock_conn, mock_sel, mock_subs) - for (i, ct_data) in test_data.items(): - do_start_test("route_test", i, ct_data) + ct_data = TEST_DATA[test_num] + set_test_case_data(ct_data) + self.run_test(ct_data) - with patch('sys.argv', ct_data[ARGS].split()): - ret, res = route_check.main() - expect_ret = ct_data[RET] if RET in ct_data else 0 - expect_res = ct_data[RESULT] if RESULT in ct_data else None - if res: - print("res={}".format(json.dumps(res, indent=4))) - if expect_res: - print("expect_res={}".format(json.dumps(expect_res, indent=4))) - assert ret == expect_ret - assert res == expect_res + def run_test(self, ct_data): + with patch('sys.argv', ct_data[ARGS].split()), \ + patch('sonic_py_common.multi_asic.get_namespace_list', return_value= ct_data[NAMESPACE]), \ + patch('sonic_py_common.multi_asic.is_multi_asic', return_value= ct_data[MULTI_ASIC]), \ + patch('route_check.load_db_config', side_effect=lambda: init_db_conns(ct_data[NAMESPACE])): + + ret, res = route_check.main() + self.assert_results(ct_data, ret, res) + + def assert_results(self, ct_data, ret, res): + expect_ret = ct_data.get(RET, 0) + expect_res = ct_data.get(RESULT, None) + if res: + logger.debug("res={}".format(json.dumps(res, indent=4))) + if expect_res: + logger.debug("expect_res={}".format(json.dumps(expect_res, indent=4))) + assert ret == expect_ret + assert res == expect_res + + def test_timeout(self, mock_dbs, force_hang): # Test timeout - route_check.TIMEOUT_SECONDS = 5 - mock_selector.EMULATE_HANG = True ex_raised = False + # Use an expected failing test case to trigger the select + set_test_case_data(TEST_DATA['2']) try: - ret, res = route_check.main() + with patch('sys.argv', [route_check.__file__.split('/')[-1]]): + ret, res = route_check.main() except Exception as err: ex_raised = True expect = "timeout occurred" @@ -557,6 +278,7 @@ def test_server(self, mock_subs, mock_sel, mock_table, mock_conn): assert ex_str == expect, "{} != {}".format(ex_str, expect) assert ex_raised, "Exception expected" + def test_logging(self): # Test print_msg route_check.PRINT_MSG_LEN_MAX = 5 msg = route_check.print_message(syslog.LOG_ERR, "abcdefghi") @@ -567,10 +289,3 @@ def test_server(self, mock_subs, mock_sel, mock_table, mock_conn): assert len(msg) == 5 msg = route_check.print_message(syslog.LOG_ERR, "a", "b", "c", "d", "e", "f") assert len(msg) == 5 - - - - - - - diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py new file mode 100644 index 000000000..33097fe5b --- /dev/null +++ b/tests/route_check_test_data.py @@ -0,0 +1,675 @@ +DESCR = "Description" +MULTI_ASIC = "multi_asic" +NAMESPACE = "namespace-list" +ARGS = "args" +RET = "return" +APPL_DB = 0 +ASIC_DB = 1 +CONFIG_DB = 4 +PRE = "pre-value" +UPD = "update" +RESULT = "res" +DEFAULTNS="" +ASIC0 = "asic0" +ASIC1 = "asic1" + +OP_SET = "SET" +OP_DEL = "DEL" + +NEIGH_TABLE = 'NEIGH_TABLE' +ROUTE_TABLE = 'ROUTE_TABLE' +VNET_ROUTE_TABLE = 'VNET_ROUTE_TABLE' +INTF_TABLE = 'INTF_TABLE' +RT_ENTRY_TABLE = 'ASIC_STATE' +SEPARATOR = ":" +DEVICE_METADATA = "DEVICE_METADATA" +MUX_CABLE = "MUX_CABLE" + +LOCALHOST = "localhost" + +RT_ENTRY_KEY_PREFIX = 'SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest":\"' +RT_ENTRY_KEY_SUFFIX = '\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000023\"}' + +DEFAULT_CONFIG_DB = {DEVICE_METADATA: {LOCALHOST: {}}} + +TEST_DATA = { + "0": { + DESCR: "basic good one", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -m INFO -i 1000", + PRE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + } + }, + "1": { + DESCR: "With updates", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -m DEBUG -i 1", + PRE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.10.10/32" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + UPD: { + DEFAULTNS: { + ASIC_DB: { + RT_ENTRY_TABLE: { + OP_SET: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + }, + OP_DEL: { + RT_ENTRY_KEY_PREFIX + "10.10.10.10/32" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + } + } + }, + "2": { + DESCR: "basic failure one", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -i 15", + RET: -1, + PRE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:90.10.196.24/31": {}, + "PortChannel1023:9603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "20.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "20.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "20.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "3603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + RESULT: { + DEFAULTNS: { + "missed_ROUTE_TABLE_routes": [ + "10.10.196.12/31", + "10.10.196.20/31" + ], + "missed_INTF_TABLE_entries": [ + "90.10.196.24/32", + "9603:10b0:503:df4::5d/128" + ], + "Unaccounted_ROUTE_ENTRY_TABLE_entries": [ + "20.10.196.12/31", + "20.10.196.20/31", + "20.10.196.24/32", + "3603:10b0:503:df4::5d/128" + ] + } + } + }, + "3": { + DESCR: "basic good one with no args", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check", + PRE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + } + }, + "4": { + DESCR: "Good one with routes on voq inband interface", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check", + PRE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" }, + "10.10.197.1" : { "ifname": "Ethernet-IB0", "nexthop": "0.0.0.0"}, + "2603:10b0:503:df5::1" : { "ifname": "Ethernet-IB0", "nexthop": "::"}, + "100.0.0.2/32" : { "ifname": "Ethernet-IB0", "nexthop": "0.0.0.0" }, + "2064:100::2/128" : { "ifname": "Ethernet-IB0", "nexthop": "::" }, + "101.0.0.0/24" : { "ifname": "Ethernet-IB0", "nexthop": "100.0.0.2"} + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {}, + "Ethernet-IB0:10.10.197.1/24": {}, + "Ethernet-IB0:2603:10b0:503:df5::1/64": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.197.1/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df5::1/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "101.0.0.0/24" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + } + }, + "5": { + DESCR: "local route with nexthop - fail", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -m INFO -i 1000", + RET: -1, + PRE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo", "nexthop": "100.0.0.2" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + RESULT: { + DEFAULTNS: { + "missed_ROUTE_TABLE_routes": [ + "10.10.196.30/31" + ] + } + } + }, + "6": { + DESCR: "Good one with VNET routes", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check", + PRE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + VNET_ROUTE_TABLE: { + "Vnet1:30.1.10.0/24": { "ifname": "Vlan3001" }, + "Vnet1:50.1.1.0/24": { "ifname": "Vlan3001" }, + "Vnet1:50.2.2.0/24": { "ifname": "Vlan3001" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {}, + "Vlan3001": { "vnet_name": "Vnet1" }, + "Vlan3001:30.1.10.1/24": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "30.1.10.1/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "30.1.10.0/24" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "50.1.1.0/24" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "50.2.2.0/24" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + } + }, + "7": { + DESCR: "dualtor standalone tunnel route case", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check", + PRE: { + DEFAULTNS: { + CONFIG_DB: { + DEVICE_METADATA: { + LOCALHOST: {"subtype": "DualToR"} + } + }, + APPL_DB: { + NEIGH_TABLE: { + "Vlan1000:fc02:1000::99": { "neigh": "00:00:00:00:00:00", "family": "IPv6"} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "fc02:1000::99/128" + RT_ENTRY_KEY_SUFFIX: {}, + } + } + } + } + }, + "8": { + DESCR: "SOC IPs on Libra ToRs should be ignored", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check", + PRE: { + DEFAULTNS: { + CONFIG_DB: { + DEVICE_METADATA: { + LOCALHOST: {"subtype": "DualToR"} + }, + MUX_CABLE: { + "Ethernet4": { + "cable_type": "active-active", + "server_ipv4": "192.168.0.2/32", + "server_ipv6": "fc02:1000::2/128", + "soc_ipv4": "192.168.0.3/32", + "soc_ipv6": "fc02:1000::3/128", + "state": "auto" + }, + } + }, + APPL_DB: { + ROUTE_TABLE: { + "192.168.0.2/32": {"ifname": "tun0"}, + "fc02:1000::2/128": {"ifname": "tun0"} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "192.168.0.2/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "fc02:1000::2/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "192.168.0.3/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "fc02:1000::3/128" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + } + }, + "9": { + DESCR: "basic good one with IPv6 address", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -m INFO -i 1000", + PRE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + }, + INTF_TABLE: { + "PortChannel1013:2000:31:0:0::1/64": {}, + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "2000:31::1/128" + RT_ENTRY_KEY_SUFFIX: {}, + } + } + } + } + }, + "10": { + DESCR: "dualtor ignore vlan neighbor route miss case", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -i 15", + RET: -1, + PRE: { + DEFAULTNS: { + CONFIG_DB: { + DEVICE_METADATA: { + LOCALHOST: {"subtype": "DualToR"} + } + }, + APPL_DB: { + ROUTE_TABLE: { + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "192.168.0.101/32": { "ifname": "tun0" }, + "192.168.0.103/32": { "ifname": "tun0" }, + }, + INTF_TABLE: { + "PortChannel1013:90.10.196.24/31": {}, + "PortChannel1023:9603:10b0:503:df4::5d/126": {}, + }, + NEIGH_TABLE: { + "Vlan1000:192.168.0.100": {}, + "Vlan1000:192.168.0.101": {}, + "Vlan1000:192.168.0.102": {}, + "Vlan1000:192.168.0.103": {}, + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "20.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "20.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "20.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "192.168.0.101/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "192.168.0.102/32" + RT_ENTRY_KEY_SUFFIX: {}, + } + } + } + }, + RESULT: { + DEFAULTNS: { + "missed_ROUTE_TABLE_routes": [ + "10.10.196.12/31", + "10.10.196.20/31" + ], + "missed_INTF_TABLE_entries": [ + "90.10.196.24/32", + "9603:10b0:503:df4::5d/128" + ], + "Unaccounted_ROUTE_ENTRY_TABLE_entries": [ + "20.10.196.12/31", + "20.10.196.20/31", + "20.10.196.24/32", + ] + } + } + }, + "11": { + DESCR: "basic good one on multi-asic on a particular asic", + MULTI_ASIC: True, + NAMESPACE: ['asic0', 'asic1'], + ARGS: "route_check -n asic0 -m INFO -i 1000", + PRE: { + ASIC0: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + } + }, + "12": { + DESCR: "basic good one on multi-asic on all asics", + MULTI_ASIC: True, + NAMESPACE: ['asic0', 'asic1'], + ARGS: "route_check -m INFO -i 1000", + PRE: { + ASIC0: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + }, + ASIC1: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + }, + } + }, + "13": { + DESCR: "simple failure case on multi-asic on a particular asic", + MULTI_ASIC: True, + NAMESPACE: ['asic0', 'asic1'], + ARGS: "route_check -n asic0 -m INFO -i 1000", + PRE: { + ASIC0: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + RESULT: { + ASIC0: { + "missed_ROUTE_TABLE_routes": [ + "10.10.196.12/31" + ], + } + }, + RET: -1, + }, + "14": { + DESCR: "simple failure case on multi-asic on all asics", + MULTI_ASIC: True, + NAMESPACE: ['asic0', 'asic1'], + ARGS: "route_check -m INFO -i 1000", + PRE: { + ASIC0: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + }, + ASIC1: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + }, + }, + RESULT: { + ASIC0: { + "missed_ROUTE_TABLE_routes": [ + "10.10.196.12/31" + ], + }, + ASIC1: { + "Unaccounted_ROUTE_ENTRY_TABLE_entries": [ + "10.10.196.12/31" + ], + }, + }, + RET: -1, + }, + "15": { + DESCR: "validate namespace input on multi-asic", + MULTI_ASIC: True, + NAMESPACE: ['asic0', 'asic1'], + ARGS: "route_check -n random -m INFO -i 1000", + RET: -1, + }, + "16": { + DESCR: "validate namespace input on single-asic", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -n random -m INFO -i 1000", + RET: -1, + }, +} diff --git a/tests/sflow_test.py b/tests/sflow_test.py index ecb278253..ad6c53462 100644 --- a/tests/sflow_test.py +++ b/tests/sflow_test.py @@ -182,6 +182,13 @@ def test_config_sflow_polling_interval(self): runner = CliRunner() obj = {'db':db.cfgdb} + # set to 500 out of range + result = runner.invoke(config.config.commands["sflow"]. + commands["polling-interval"], ["500"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert "Polling interval must be between 5-300" in result.output + # set to 20 result = runner.invoke(config.config.commands["sflow"]. commands["polling-interval"], ["20"], obj=obj) diff --git a/tests/sfp_test.py b/tests/sfp_test.py index 3cbd9ecda..21382b3c9 100644 --- a/tests/sfp_test.py +++ b/tests/sfp_test.py @@ -66,7 +66,6 @@ Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Active Cable assembly with BER < 2.6x10^-4 IB EDR (Arch.Spec.Vol.2) - Active Cable assembly with BER < 5x10^-5 IB QDR (Arch.Spec.Vol.2) - Active Cable assembly with BER < 10^-12 - Connector: No separable connector Encoding: Not supported for CMIS cables Extended Identifier: Power Class 1(10.0W Max) @@ -75,13 +74,13 @@ Length Cable Assembly(m): 10 Nominal Bit Rate(100Mbs): Not supported for CMIS cables Specification compliance: Not supported for CMIS cables - Vendor Date Code(YYYY-MM-DD Lot): 2020-05-22 + Vendor Date Code(YYYY-MM-DD Lot): 2020-05-22 Vendor Name: INNOLIGHT Vendor OUI: 44-7c-7f Vendor PN: C-DQ8FNM010-N00 Vendor Rev: 2A Vendor SN: INKAO2900002A - ChannelMonitorValues: + ChannelMonitorValues: RX1Power: -3.8595dBm RX2Power: 8.1478dBm RX3Power: -22.9243dBm @@ -98,15 +97,15 @@ TX3Power: 1.175dBm TX4Bias: 0.0000mA TX4Power: 1.175dBm - TX5Bias: 0.0000mAmA + TX5Bias: 0.0000mA TX5Power: 1.175dBm - TX6Bias: 8.2240mAmA + TX6Bias: 8.2240mA TX6Power: 1.175dBm - TX7Bias: 8.2240mAmA + TX7Bias: 8.2240mA TX7Power: 1.175dBm - TX8Bias: 8.2240mAmA + TX8Bias: 8.2240mA TX8Power: 1.175dBm - ChannelThresholdValues: + ChannelThresholdValues: RxPowerHighAlarm : 6.9999dBm RxPowerHighWarning: 4.9999dBm RxPowerLowAlarm : -11.9044dBm @@ -119,10 +118,10 @@ TxPowerHighWarning: 4.9999dBm TxPowerLowAlarm : -10.5012dBm TxPowerLowWarning : -7.5007dBm - ModuleMonitorValues: + ModuleMonitorValues: Temperature: 44.9883C Vcc: 3.2999Volts - ModuleThresholdValues: + ModuleThresholdValues: TempHighAlarm : 80.0000C TempHighWarning: 75.0000C TempLowAlarm : -10.0000C @@ -158,7 +157,6 @@ Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Active Cable assembly with BER < 2.6x10^-4 IB EDR (Arch.Spec.Vol.2) - Active Cable assembly with BER < 5x10^-5 IB QDR (Arch.Spec.Vol.2) - Active Cable assembly with BER < 10^-12 - Connector: No separable connector Encoding: Not supported for CMIS cables Extended Identifier: Power Class 1(10.0W Max) @@ -167,7 +165,27 @@ Length Cable Assembly(m): 10 Nominal Bit Rate(100Mbs): Not supported for CMIS cables Specification compliance: Not supported for CMIS cables - Vendor Date Code(YYYY-MM-DD Lot): 2020-05-22 + Vendor Date Code(YYYY-MM-DD Lot): 2020-05-22 + Vendor Name: INNOLIGHT + Vendor OUI: 44-7c-7f + Vendor PN: C-DQ8FNM010-N00 + Vendor Rev: 2A + Vendor SN: INKAO2900002A +""" + +test_qsfp_dd_eeprom_adv_app_output = """\ +Ethernet40: SFP EEPROM detected + Application Advertisement: 400G CR8 - Host Assign (0x1) - Copper cable - Media Assign (0x2) + 200GBASE-CR4 (Clause 136) - Host Assign (Unknown) - Unknown - Media Assign (Unknown) + Connector: No separable connector + Encoding: Not supported for CMIS cables + Extended Identifier: Power Class 1(10.0W Max) + Extended RateSelect Compliance: Not supported for CMIS cables + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Length Cable Assembly(m): 10 + Nominal Bit Rate(100Mbs): Not supported for CMIS cables + Specification compliance: Not supported for CMIS cables + Vendor Date Code(YYYY-MM-DD Lot): 2020-05-22 Vendor Name: INNOLIGHT Vendor OUI: 44-7c-7f Vendor PN: C-DQ8FNM010-N00 @@ -175,6 +193,366 @@ Vendor SN: INKAO2900002A """ +test_qsfp_dd_pm_output = """\ +Ethernet44: + Parameter Unit Min Avg Max Threshold Threshold Threshold Threshold Threshold Threshold + High High Crossing Low Low Crossing + Alarm Warning Alert-High Alarm Warning Alert-Low + --------------- ------ -------- -------- -------- ----------- ----------- ------------ ----------- ----------- ----------- + Tx Power dBm -8.22 -8.23 -8.24 -5.0 -6.0 False -16.99 -16.003 False + Rx Total Power dBm -10.61 -10.62 -10.62 2.0 0.0 False -21.0 -18.0 False + Rx Signal Power dBm -40.0 0.0 40.0 13.0 10.0 True -18.0 -15.0 True + CD-short link ps/nm 0.0 0.0 0.0 1000.0 500.0 False -1000.0 -500.0 False + PDL dB 0.5 0.6 0.6 4.0 4.0 False 0.0 0.0 False + OSNR dB 36.5 36.5 36.5 99.0 99.0 False 0.0 0.0 False + eSNR dB 30.5 30.5 30.5 99.0 99.0 False 0.0 0.0 False + CFO MHz 54.0 70.0 121.0 3800.0 3800.0 False -3800.0 -3800.0 False + DGD ps 5.37 5.56 5.81 7.0 7.0 False 0.0 0.0 False + SOPMD ps^2 0.0 0.0 0.0 655.35 655.35 False 0.0 0.0 False + SOP ROC krad/s 1.0 1.0 2.0 N/A N/A N/A N/A N/A N/A + Pre-FEC BER N/A 4.58E-04 4.66E-04 5.76E-04 1.25E-02 1.10E-02 0.0 0.0 0.0 0.0 + Post-FEC BER N/A 0.0 0.0 0.0 1000.0 1.0 False 0.0 0.0 False + EVM % 100.0 100.0 100.0 N/A N/A N/A N/A N/A N/A +""" + +test_qsfp_status_output = """\ +Ethernet4: + Tx fault flag on media lane 1: False + Tx fault flag on media lane 2: False + Tx fault flag on media lane 3: False + Tx fault flag on media lane 4: False + Rx loss of signal flag on media lane 1: False + Rx loss of signal flag on media lane 2: False + Rx loss of signal flag on media lane 3: False + Rx loss of signal flag on media lane 4: False + TX disable status on lane 1: False + TX disable status on lane 2: False + TX disable status on lane 3: False + TX disable status on lane 4: False + Disabled TX channels: 0 +""" + +test_qsfp_dd_status_output = """\ +Ethernet44: + Tx fault flag on media lane 1: False + Tx fault flag on media lane 2: False + Tx fault flag on media lane 3: False + Tx fault flag on media lane 4: False + Tx fault flag on media lane 5: False + Tx fault flag on media lane 6: False + Tx fault flag on media lane 7: False + Tx fault flag on media lane 8: False + Rx loss of signal flag on media lane 1: False + Rx loss of signal flag on media lane 2: False + Rx loss of signal flag on media lane 3: False + Rx loss of signal flag on media lane 4: False + Rx loss of signal flag on media lane 5: False + Rx loss of signal flag on media lane 6: False + Rx loss of signal flag on media lane 7: False + Rx loss of signal flag on media lane 8: False + TX disable status on lane 1: False + TX disable status on lane 2: False + TX disable status on lane 3: False + TX disable status on lane 4: False + TX disable status on lane 5: False + TX disable status on lane 6: False + TX disable status on lane 7: False + TX disable status on lane 8: False + Disabled TX channels: 0 + Current module state: ModuleReady + Reason of entering the module fault state: No Fault detected + Datapath firmware fault: False + Module firmware fault: False + Module state changed: False + Data path state indicator on host lane 1: DataPathActivated + Data path state indicator on host lane 2: DataPathActivated + Data path state indicator on host lane 3: DataPathActivated + Data path state indicator on host lane 4: DataPathActivated + Data path state indicator on host lane 5: DataPathActivated + Data path state indicator on host lane 6: DataPathActivated + Data path state indicator on host lane 7: DataPathActivated + Data path state indicator on host lane 8: DataPathActivated + Tx output status on media lane 1: False + Tx output status on media lane 2: False + Tx output status on media lane 3: False + Tx output status on media lane 4: False + Tx output status on media lane 5: False + Tx output status on media lane 6: False + Tx output status on media lane 7: False + Tx output status on media lane 8: False + Rx output status on host lane 1: True + Rx output status on host lane 2: True + Rx output status on host lane 3: True + Rx output status on host lane 4: True + Rx output status on host lane 5: True + Rx output status on host lane 6: True + Rx output status on host lane 7: True + Rx output status on host lane 8: True + Tx loss of signal flag on host lane 1: False + Tx loss of signal flag on host lane 2: False + Tx loss of signal flag on host lane 3: False + Tx loss of signal flag on host lane 4: False + Tx loss of signal flag on host lane 5: False + Tx loss of signal flag on host lane 6: False + Tx loss of signal flag on host lane 7: False + Tx loss of signal flag on host lane 8: False + Tx clock and data recovery loss of lock on host lane 1: False + Tx clock and data recovery loss of lock on host lane 2: False + Tx clock and data recovery loss of lock on host lane 3: False + Tx clock and data recovery loss of lock on host lane 4: False + Tx clock and data recovery loss of lock on host lane 5: False + Tx clock and data recovery loss of lock on host lane 6: False + Tx clock and data recovery loss of lock on host lane 7: False + Tx clock and data recovery loss of lock on host lane 8: False + Rx clock and data recovery loss of lock on media lane 1: False + Rx clock and data recovery loss of lock on media lane 2: False + Rx clock and data recovery loss of lock on media lane 3: False + Rx clock and data recovery loss of lock on media lane 4: False + Rx clock and data recovery loss of lock on media lane 5: False + Rx clock and data recovery loss of lock on media lane 6: False + Rx clock and data recovery loss of lock on media lane 7: False + Rx clock and data recovery loss of lock on media lane 8: False + Configuration status for the data path of host line 1: ConfigSuccess + Configuration status for the data path of host line 2: ConfigSuccess + Configuration status for the data path of host line 3: ConfigSuccess + Configuration status for the data path of host line 4: ConfigSuccess + Configuration status for the data path of host line 5: ConfigSuccess + Configuration status for the data path of host line 6: ConfigSuccess + Configuration status for the data path of host line 7: ConfigSuccess + Configuration status for the data path of host line 8: ConfigSuccess + Data path configuration updated on host lane 1: False + Data path configuration updated on host lane 2: False + Data path configuration updated on host lane 3: False + Data path configuration updated on host lane 4: False + Data path configuration updated on host lane 5: False + Data path configuration updated on host lane 6: False + Data path configuration updated on host lane 7: False + Data path configuration updated on host lane 8: False + Temperature high alarm flag: False + Temperature high warning flag: False + Temperature low warning flag: False + Temperature low alarm flag: False + Vcc high alarm flag: False + Vcc high warning flag: False + Vcc low warning flag: False + Vcc low alarm flag: False + Tx power high alarm flag on lane 1: False + Tx power high alarm flag on lane 2: False + Tx power high alarm flag on lane 3: False + Tx power high alarm flag on lane 4: False + Tx power high alarm flag on lane 5: False + Tx power high alarm flag on lane 6: False + Tx power high alarm flag on lane 7: False + Tx power high alarm flag on lane 8: False + Tx power high warning flag on lane 1: False + Tx power high warning flag on lane 2: False + Tx power high warning flag on lane 3: False + Tx power high warning flag on lane 4: False + Tx power high warning flag on lane 5: False + Tx power high warning flag on lane 6: False + Tx power high warning flag on lane 7: False + Tx power high warning flag on lane 8: False + Tx power low warning flag on lane 1: False + Tx power low warning flag on lane 2: False + Tx power low warning flag on lane 3: False + Tx power low warning flag on lane 4: False + Tx power low warning flag on lane 5: False + Tx power low warning flag on lane 6: False + Tx power low warning flag on lane 7: False + Tx power low warning flag on lane 8: False + Tx power low alarm flag on lane 1: False + Tx power low alarm flag on lane 2: False + Tx power low alarm flag on lane 3: False + Tx power low alarm flag on lane 4: False + Tx power low alarm flag on lane 5: False + Tx power low alarm flag on lane 6: False + Tx power low alarm flag on lane 7: False + Tx power low alarm flag on lane 8: False + Rx power high alarm flag on lane 1: False + Rx power high alarm flag on lane 2: False + Rx power high alarm flag on lane 3: False + Rx power high alarm flag on lane 4: False + Rx power high alarm flag on lane 5: False + Rx power high alarm flag on lane 6: False + Rx power high alarm flag on lane 7: False + Rx power high alarm flag on lane 8: False + Rx power high warning flag on lane 1: False + Rx power high warning flag on lane 2: False + Rx power high warning flag on lane 3: False + Rx power high warning flag on lane 4: False + Rx power high warning flag on lane 5: False + Rx power high warning flag on lane 6: False + Rx power high warning flag on lane 7: False + Rx power high warning flag on lane 8: False + Rx power low warning flag on lane 1: False + Rx power low warning flag on lane 2: False + Rx power low warning flag on lane 3: False + Rx power low warning flag on lane 4: False + Rx power low warning flag on lane 5: False + Rx power low warning flag on lane 6: False + Rx power low warning flag on lane 7: False + Rx power low warning flag on lane 8: False + Rx power low alarm flag on lane 1: False + Rx power low alarm flag on lane 2: False + Rx power low alarm flag on lane 3: False + Rx power low alarm flag on lane 4: False + Rx power low alarm flag on lane 5: False + Rx power low alarm flag on lane 6: False + Rx power low alarm flag on lane 7: False + Rx power low alarm flag on lane 8: False + Tx bias high alarm flag on lane 1: False + Tx bias high alarm flag on lane 2: False + Tx bias high alarm flag on lane 3: False + Tx bias high alarm flag on lane 4: False + Tx bias high alarm flag on lane 5: False + Tx bias high alarm flag on lane 6: False + Tx bias high alarm flag on lane 7: False + Tx bias high alarm flag on lane 8: False + Tx bias high warning flag on lane 1: False + Tx bias high warning flag on lane 2: False + Tx bias high warning flag on lane 3: False + Tx bias high warning flag on lane 4: False + Tx bias high warning flag on lane 5: False + Tx bias high warning flag on lane 6: False + Tx bias high warning flag on lane 7: False + Tx bias high warning flag on lane 8: False + Tx bias low warning flag on lane 1: False + Tx bias low warning flag on lane 2: False + Tx bias low warning flag on lane 3: False + Tx bias low warning flag on lane 4: False + Tx bias low warning flag on lane 5: False + Tx bias low warning flag on lane 6: False + Tx bias low warning flag on lane 7: False + Tx bias low warning flag on lane 8: False + Tx bias low alarm flag on lane 1: False + Tx bias low alarm flag on lane 2: False + Tx bias low alarm flag on lane 3: False + Tx bias low alarm flag on lane 4: False + Tx bias low alarm flag on lane 5: False + Tx bias low alarm flag on lane 6: False + Tx bias low alarm flag on lane 7: False + Tx bias low alarm flag on lane 8: False + Laser temperature high alarm flag: False + Laser temperature high warning flag: False + Laser temperature low warning flag: False + Laser temperature low alarm flag: False + Prefec ber high alarm flag: False + Prefec ber high warning flag: False + Prefec ber low warning flag: False + Prefec ber low alarm flag: False + Postfec ber high alarm flag: False + Postfec ber high warning flag: False + Postfec ber low warning flag: False + Postfec ber low alarm flag: False + Tuning in progress status: False + Laser unlocked status: False + Target output power out of range flag: False + Fine tuning out of range flag: False + Tuning not accepted flag: False + Invalid channel number flag: False + Tuning complete flag: False + Bias xi high alarm flag: False + Bias xi high warning flag: False + Bias xi low warning flag: False + Bias xi low alarm flag: False + Bias xq high alarm flag: False + Bias xq high warning flag: False + Bias xq low warning flag: False + Bias xq low alarm flag: False + Bias xp high alarm flag: False + Bias xp high warning flag: False + Bias xp low warning flag: False + Bias xp low alarm flag: False + Bias yi high alarm flag: False + Bias yi high warning flag: False + Bias yi low warning flag: False + Bias yi low alarm flag: False + Bias yq high alarm flag: False + Bias yq high warning flag: False + Bias yq low warning flag: False + Bias yq low alarm flag: False + Bias yp high alarm flag: False + Bias yp high warning flag: False + Bias yp low warning flag: False + Bias yp low alarm flag: False + CD short high alarm flag: False + CD short high warning flag: False + CD short low warning flag: False + CD short low alarm flag: False + CD long high alarm flag: False + CD long high warning flag: False + CD long low warning flag: False + CD long low alarm flag: False + DGD high alarm flag: False + DGD high warning flag: False + DGD low warning flag: False + DGD low alarm flag: False + PDL high alarm flag: False + PDL high warning flag: False + PDL low warning flag: False + PDL low alarm flag: False + OSNR high alarm flag: False + OSNR high warning flag: False + OSNR low warning flag: False + OSNR low alarm flag: False + ESNR high alarm flag: False + ESNR high warning flag: False + ESNR low warning flag: False + ESNR low alarm flag: False + CFO high alarm flag: False + CFO high warning flag: False + CFO low warning flag: False + CFO low alarm flag: False + Txcurrpower high alarm flag: False + Txcurrpower high warning flag: False + Txcurrpower low warning flag: False + Txcurrpower low alarm flag: False + Rxtotpower high alarm flag: False + Rxtotpower high warning flag: False + Rxtotpower low warning flag: False + Rxtotpower low alarm flag: False +""" + +test_cmis_eeprom_output = """\ +Ethernet64: SFP EEPROM detected + Active Firmware: X.X + Active application selected code assigned to host lane 1: 1 + Active application selected code assigned to host lane 2: 1 + Active application selected code assigned to host lane 3: 1 + Active application selected code assigned to host lane 4: 1 + Active application selected code assigned to host lane 5: 1 + Active application selected code assigned to host lane 6: 1 + Active application selected code assigned to host lane 7: 1 + Active application selected code assigned to host lane 8: 1 + Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, DWDM, amplified - Media Assign (0x1) + 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, Single Wavelength, Unamplified - Media Assign (0x1) + 100GAUI-2 C2M (Annex 135G) - Host Assign (0x55) - 400ZR, DWDM, amplified - Media Assign (0x1) + CMIS Rev: 4.1 + Connector: LC + Encoding: N/A + Extended Identifier: Power Class 8 (20.0W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 8 + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Inactive Firmware: X.X + Length Cable Assembly(m): 0.0 + Media Interface Technology: 1550 nm DFB + Media Lane Count: 1 + Module Hardware Rev: X.X + Nominal Bit Rate(100Mbs): 0 + Specification compliance: sm_media_interface + Supported Max Laser Frequency: 196100 + Supported Max TX Power: 4.0 + Supported Min Laser Frequency: 191300 + Supported Min TX Power: -22.9 + Vendor Date Code(YYYY-MM-DD Lot): 2021-11-19 + Vendor Name: XXXX + Vendor OUI: XX-XX-XX + Vendor PN: XXX + Vendor Rev: XX + Vendor SN: 0123456789 +""" + test_sfp_eeprom_dom_all_output = """\ Ethernet0: SFP EEPROM detected Application Advertisement: N/A @@ -227,22 +605,42 @@ Ethernet4: SFP EEPROM Not detected Ethernet64: SFP EEPROM detected - Application Advertisement: N/A - Connector: No separable connector - Encoding: 64B66B - Extended Identifier: Power Class 3(2.5W max), CDR present in Rx Tx - Extended RateSelect Compliance: QSFP+ Rate Select Version 1 - Identifier: QSFP28 or later - Length Cable Assembly(m): 3 - Nominal Bit Rate(100Mbs): 255 - Specification compliance: - 10/40G Ethernet Compliance Code: 40G Active Cable (XLPPI) - Vendor Date Code(YYYY-MM-DD Lot): 2017-01-13 - Vendor Name: Mellanox - Vendor OUI: 00-02-c9 - Vendor PN: MFA1A00-C003 - Vendor Rev: AC - Vendor SN: MT1706FT02064 + Active Firmware: X.X + Active application selected code assigned to host lane 1: 1 + Active application selected code assigned to host lane 2: 1 + Active application selected code assigned to host lane 3: 1 + Active application selected code assigned to host lane 4: 1 + Active application selected code assigned to host lane 5: 1 + Active application selected code assigned to host lane 6: 1 + Active application selected code assigned to host lane 7: 1 + Active application selected code assigned to host lane 8: 1 + Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, DWDM, amplified - Media Assign (0x1) + 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, Single Wavelength, Unamplified - Media Assign (0x1) + 100GAUI-2 C2M (Annex 135G) - Host Assign (0x55) - 400ZR, DWDM, amplified - Media Assign (0x1) + CMIS Rev: 4.1 + Connector: LC + Encoding: N/A + Extended Identifier: Power Class 8 (20.0W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 8 + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Inactive Firmware: X.X + Length Cable Assembly(m): 0.0 + Media Interface Technology: 1550 nm DFB + Media Lane Count: 1 + Module Hardware Rev: X.X + Nominal Bit Rate(100Mbs): 0 + Specification compliance: sm_media_interface + Supported Max Laser Frequency: 196100 + Supported Max TX Power: 4.0 + Supported Min Laser Frequency: 191300 + Supported Min TX Power: -22.9 + Vendor Date Code(YYYY-MM-DD Lot): 2021-11-19 + Vendor Name: XXXX + Vendor OUI: XX-XX-XX + Vendor PN: XXX + Vendor Rev: XX + Vendor SN: 0123456789 ChannelMonitorValues: RX1Power: 0.3802dBm RX2Power: -0.4871dBm @@ -297,22 +695,42 @@ Ethernet4: SFP EEPROM Not detected Ethernet64: SFP EEPROM detected - Application Advertisement: N/A - Connector: No separable connector - Encoding: 64B66B - Extended Identifier: Power Class 3(2.5W max), CDR present in Rx Tx - Extended RateSelect Compliance: QSFP+ Rate Select Version 1 - Identifier: QSFP28 or later - Length Cable Assembly(m): 3 - Nominal Bit Rate(100Mbs): 255 - Specification compliance: - 10/40G Ethernet Compliance Code: 40G Active Cable (XLPPI) - Vendor Date Code(YYYY-MM-DD Lot): 2017-01-13 - Vendor Name: Mellanox - Vendor OUI: 00-02-c9 - Vendor PN: MFA1A00-C003 - Vendor Rev: AC - Vendor SN: MT1706FT02064 + Active Firmware: X.X + Active application selected code assigned to host lane 1: 1 + Active application selected code assigned to host lane 2: 1 + Active application selected code assigned to host lane 3: 1 + Active application selected code assigned to host lane 4: 1 + Active application selected code assigned to host lane 5: 1 + Active application selected code assigned to host lane 6: 1 + Active application selected code assigned to host lane 7: 1 + Active application selected code assigned to host lane 8: 1 + Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, DWDM, amplified - Media Assign (0x1) + 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, Single Wavelength, Unamplified - Media Assign (0x1) + 100GAUI-2 C2M (Annex 135G) - Host Assign (0x55) - 400ZR, DWDM, amplified - Media Assign (0x1) + CMIS Rev: 4.1 + Connector: LC + Encoding: N/A + Extended Identifier: Power Class 8 (20.0W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 8 + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Inactive Firmware: X.X + Length Cable Assembly(m): 0.0 + Media Interface Technology: 1550 nm DFB + Media Lane Count: 1 + Module Hardware Rev: X.X + Nominal Bit Rate(100Mbs): 0 + Specification compliance: sm_media_interface + Supported Max Laser Frequency: 196100 + Supported Max TX Power: 4.0 + Supported Min Laser Frequency: 191300 + Supported Min TX Power: -22.9 + Vendor Date Code(YYYY-MM-DD Lot): 2021-11-19 + Vendor Name: XXXX + Vendor OUI: XX-XX-XX + Vendor PN: XXX + Vendor Rev: XX + Vendor SN: 0123456789 """ test_sfp_presence_all_output = """\ @@ -323,6 +741,22 @@ Ethernet64 Present """ +test_qsfp_dd_pm_all_output = """\ +Ethernet0: Transceiver performance monitoring not applicable + +Ethernet4: Transceiver performance monitoring not applicable + +Ethernet64: Transceiver performance monitoring not applicable +""" + +test_qsfp_dd_status_all_output = """\ +Ethernet0: Transceiver status info not applicable + +Ethernet4: Transceiver status info not applicable + +Ethernet64: Transceiver status info not applicable +""" + class TestSFP(object): @classmethod def setup_class(cls): @@ -344,6 +778,38 @@ def test_sfp_presence(self): expected = """Port Presence ----------- ----------- Ethernet200 Not present +""" + assert result.exit_code == 0 + assert result.output == expected + + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["presence"], ["Ethernet16"]) + expected = """Port Presence +---------- ---------- +Ethernet16 Present +""" + assert result.exit_code == 0 + assert result.output == expected + + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["presence"], ["Ethernet28"]) + expected = """Port Presence +---------- ---------- +Ethernet28 Present +""" + assert result.exit_code == 0 + assert result.output == expected + + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["presence"], ["Ethernet29"]) + expected = """Port Presence +---------- ----------- +Ethernet29 Not present +""" + assert result.exit_code == 0 + assert result.output == expected + + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["presence"], ["Ethernet36"]) + expected = """Port Presence +---------- ---------- +Ethernet36 Present """ assert result.exit_code == 0 assert result.output == expected @@ -358,7 +824,7 @@ def test_qsfp_dd_eeprom_with_dom(self): runner = CliRunner() result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet8 -d"]) assert result.exit_code == 0 - assert "result.output == test_qsfp_dd_eeprom_with_dom_output" + assert result.output == test_qsfp_dd_eeprom_with_dom_output def test_sfp_eeprom(self): runner = CliRunner() @@ -375,7 +841,55 @@ def test_qsfp_dd_eeprom(self): runner = CliRunner() result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet8"]) assert result.exit_code == 0 - assert "result.output == test_qsfp_dd_eeprom_output" + assert result.output == test_qsfp_dd_eeprom_output + + def test_qsfp_dd_eeprom_adv_app(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet40"]) + assert result.exit_code == 0 + print(result.output) + assert result.output == test_qsfp_dd_eeprom_adv_app_output + + def test_cmis_info(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["info"], ["Ethernet64"]) + assert result.exit_code == 0 + assert result.output == test_cmis_eeprom_output + + def test_rj45_eeprom(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet36"]) + result_lines = result.output.strip('\n') + expected = "Ethernet36: SFP EEPROM is not applicable for RJ45 port" + assert result_lines == expected + + def test_qsfp_dd_pm(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"], ["Ethernet44"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_pm_output + + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"], ["Ethernet200"]) + result_lines = result.output.strip('\n') + expected = "Ethernet200: Transceiver performance monitoring not applicable" + assert result_lines == expected + + def test_qsfp_status(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"], ["Ethernet4"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_status_output + + def test_qsfp_dd_status(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"], ["Ethernet44"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_status_output + + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"], ["Ethernet200"]) + result_lines = result.output.strip('\n') + expected = "Ethernet200: Transceiver status info not applicable" + assert result_lines == expected @classmethod def teardown_class(cls): @@ -433,29 +947,63 @@ def test_sfp_eeprom_with_ns(self): expected = "Ethernet200: SFP EEPROM Not detected" assert result_lines == expected - def test_sfp_eeprom_with_ns(self): + def test_qsfp_dd_pm_with_ns(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet0 -n asic0"]) - assert result.exit_code == 0 - assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_output + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"], ["Ethernet0 -n asic0"]) + result_lines = result.output.strip('\n') + expected = "Ethernet0: Transceiver performance monitoring not applicable" + assert result_lines == expected - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet200 -n asic0"]) + def test_qsfp_dd_status_with_ns(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"], ['Ethernet0 -n asic0']) result_lines = result.output.strip('\n') - expected = "Ethernet200: SFP EEPROM Not detected" + expected = "Ethernet0: Transceiver status info not applicable" assert result_lines == expected + def test_cmis_sfp_info_with_ns(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["info"], ["Ethernet64 -n asic1"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_cmis_eeprom_output + def test_sfp_eeprom_all(self): runner = CliRunner() result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"]) assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_all_output + def test_sfp_info_all(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["info"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_all_output + def test_sfp_eeprom_dom_all(self): runner = CliRunner() result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["-d"]) assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_dom_all_output + def test_is_rj45_port(self): + import utilities_common.platform_sfputil_helper as platform_sfputil_helper + platform_sfputil_helper.platform_chassis = None + if 'sonic_platform' in sys.modules: + sys.modules.pop('sonic_platform') + assert platform_sfputil_helper.is_rj45_port("Ethernet0") == False + + def test_qsfp_dd_pm_all(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_pm_all_output + + def test_qsfp_dd_status_all(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_status_all_output + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index 83d2f8c4c..6224cef51 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -16,6 +16,9 @@ sys.modules['sonic_platform'] = mock.MagicMock() import sfputil.main as sfputil +EXIT_FAIL = -1 +ERROR_NOT_IMPLEMENTED = 5 +ERROR_INVALID_PORT = 6 class TestSfputil(object): def test_format_dict_value_to_string(self): @@ -77,6 +80,7 @@ def test_format_dict_value_to_string(self): sfputil.QSFP_DOM_CHANNEL_MONITOR_MAP, sfputil.DOM_VALUE_UNIT_MAP) assert output == expected_output + @pytest.mark.parametrize("sfp_info_dict, expected_output",[ # Non-CMIS module ( @@ -137,7 +141,13 @@ def test_format_dict_value_to_string(self): 'ext_rateselect_compliance': 'N/A', 'cable_type': 'Length Cable Assembly(m)', 'cable_length': '0', - 'application_advertisement': 'N/A', + 'application_advertisement': "{1: {'host_electrical_interface_id': '400G CR8', \ + 'module_media_interface_id': 'Copper cable', \ + 'media_lane_count': 8, \ + 'host_lane_count': 8, \ + 'host_lane_assignment_options': 1, \ + 'media_lane_assignment_options': 2}, \ + 2: {'host_electrical_interface_id': '200GBASE-CR4 (Clause 136)'}}", 'specification_compliance': "sm_media_interface", 'dom_capability': "{'Tx_power_support': 'no', 'Rx_power_support': 'no', 'Voltage_support': 'no', 'Temp_support': 'no'}", 'nominal_bit_rate': '0', @@ -175,6 +185,8 @@ def test_format_dict_value_to_string(self): " Active App Selection Host Lane 7: 1\n" " Active App Selection Host Lane 8: 1\n" " Active Firmware Version: 0.1\n" + " Application Advertisement: 400G CR8 - Host Assign (0x1) - Copper cable - Media Assign (0x2)\n" + " 200GBASE-CR4 (Clause 136) - Host Assign (Unknown) - Unknown - Media Assign (Unknown)\n" " CMIS Revision: 5.0\n" " Connector: LC\n" " Encoding: N/A\n" @@ -266,12 +278,18 @@ def test_version(self): result = runner.invoke(sfputil.cli.commands['version'], []) assert result.output.rstrip() == 'sfputil version {}'.format(sfputil.VERSION) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) def test_error_status_from_db(self): db = Db() expected_output = [['Ethernet0', 'Blocking Error|High temperature'], ['Ethernet4', 'OK'], ['Ethernet8', 'Unplugged'], - ['Ethernet12', 'Unknown state: 255']] + ['Ethernet12', 'Unknown state: 255'], + ['Ethernet16', 'Unplugged'], + ['Ethernet28', 'Unplugged'], + ['Ethernet36', 'Unknown'], + ['Ethernet40', 'Unplugged'], + ['Ethernet44', 'OK']] output = sfputil.fetch_error_status_from_state_db(None, db.db) assert output == expected_output @@ -279,6 +297,41 @@ def test_error_status_from_db(self): output = sfputil.fetch_error_status_from_state_db('Ethernet0', db.db) assert output == expected_output_ethernet0 + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + def test_error_status_from_db_RJ45(self): + db = Db() + expected_output = [['Ethernet0', 'N/A'], + ['Ethernet4', 'N/A'], + ['Ethernet8', 'N/A'], + ['Ethernet12', 'N/A'], + ['Ethernet16', 'N/A'], + ['Ethernet28', 'N/A'], + ['Ethernet36', 'N/A'], + ['Ethernet40', 'N/A'], + ['Ethernet44', 'N/A']] + output = sfputil.fetch_error_status_from_state_db(None, db.db) + assert output == expected_output + + expected_output_ethernet0 = expected_output[:1] + output = sfputil.fetch_error_status_from_state_db('Ethernet0', db.db) + assert output == expected_output_ethernet0 + + @patch('sfputil.main.logical_port_name_to_physical_port_list', MagicMock(return_value=[1])) + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('subprocess.check_output', MagicMock(return_value="['OK']")) + def test_fetch_error_status_from_platform_api(self): + output = sfputil.fetch_error_status_from_platform_api('Ethernet0') + assert output == [['Ethernet0', 'OK']] + + @patch('sfputil.main.logical_port_name_to_physical_port_list', MagicMock(return_value=[1])) + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('subprocess.check_output', MagicMock(return_value="['OK']")) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + def test_fetch_error_status_from_platform_api_RJ45(self): + output = sfputil.fetch_error_status_from_platform_api('Ethernet0') + assert output == [['Ethernet0', 'N/A']] + @patch('sfputil.main.platform_chassis') @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) def test_show_firmware_version(self, mock_chassis): @@ -292,6 +345,331 @@ def test_show_firmware_version(self, mock_chassis): result = runner.invoke(sfputil.cli.commands['show'].commands['fwversion'], ["Ethernet0"]) assert result.exit_code == 0 + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.logical_port_name_to_physical_port_list', MagicMock(return_value=[1])) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + def test_show_presence(self, mock_chassis): + mock_sfp = MagicMock() + mock_api = MagicMock() + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + mock_sfp.get_presence.return_value = True + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['presence'], ["-p", "Ethernet16"]) + assert result.exit_code == 0 + expected_output = """Port Presence +---------- ---------- +Ethernet16 Present +""" + assert result.output == expected_output + + result = runner.invoke(sfputil.cli.commands['show'].commands['presence'], ["-p", "Ethernet28"]) + assert result.exit_code == 0 + expected_output = """Port Presence +---------- ---------- +Ethernet28 Present +""" + assert result.output == expected_output + + result = runner.invoke(sfputil.cli.commands['show'].commands['presence'], ["-p", "Ethernet36"]) + assert result.exit_code == 0 + expected_output = """Port Presence +---------- ---------- +Ethernet36 Present +""" + assert result.output == expected_output + + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + def test_show_error_status(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['error-status'], []) + assert result.exit_code == 0 + expected_output = """Port Error Status +---------- ------------------------------- +Ethernet0 Blocking Error|High temperature +Ethernet4 OK +Ethernet8 Unplugged +Ethernet12 Unknown state: 255 +Ethernet16 Unplugged +Ethernet28 Unplugged +Ethernet36 Unknown +Ethernet40 Unplugged +Ethernet44 OK +""" + assert result.output == expected_output + + @patch('sfputil.main.SonicV2Connector', MagicMock(return_value=None)) + def test_show_error_status_error_case(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['error-status'], []) + assert result.exit_code == 0 + expected_output = """Failed to connect to STATE_DB\n""" + assert result.output == expected_output + + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_name_to_physical_port_list', MagicMock(return_value=[1])) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + def test_show_lpmode(self, mock_chassis): + mock_sfp = MagicMock() + mock_api = MagicMock() + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + mock_sfp.get_lpmode.return_value = True + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['lpmode'], ["-p", "Ethernet0"]) + assert result.exit_code == 0 + expected_output = """Port Low-power Mode +--------- ---------------- +Ethernet0 On +""" + assert result.output == expected_output + + mock_sfp.get_lpmode.return_value = False + result = runner.invoke(sfputil.cli.commands['show'].commands['lpmode'], ["-p", "Ethernet0"]) + assert result.exit_code == 0 + expected_output = """Port Low-power Mode +--------- ---------------- +Ethernet0 Off +""" + assert result.output == expected_output + + mock_sfp.get_lpmode.return_value = False + mock_sfp.get_transceiver_info = MagicMock(return_value={'type': sfputil.RJ45_PORT_TYPE}) + mock_chassis.get_port_or_cage_type = MagicMock(return_value=sfputil.SfpBase.SFP_PORT_TYPE_BIT_RJ45) + result = runner.invoke(sfputil.cli.commands['show'].commands['lpmode'], ["-p", "Ethernet0"]) + assert result.exit_code == 0 + expected_output = """Port Low-power Mode +--------- ---------------- +Ethernet0 N/A +""" + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.logical_port_name_to_physical_port_list', MagicMock(return_value=[1])) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + def test_show_eeprom_RJ45(self, mock_chassis): + mock_sfp = MagicMock() + mock_api = MagicMock() + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom'], ["-p", "Ethernet16", "-d"]) + assert result.exit_code == 0 + expected_output = "Ethernet16: SFP EEPROM is not applicable for RJ45 port\n\n\n" + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=0))) + def test_show_eeprom_hexdump_invalid_port(self, mock_chassis): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet"]) + assert result.exit_code == ERROR_INVALID_PORT + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + def test_show_eeprom_hexdump_invalid_page(self, mock_chassis): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet1", "-n", "INVALID"]) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + def test_show_eeprom_hexdump_RJ45(self, mock_chassis): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet16"]) + assert result.exit_code == ERROR_INVALID_PORT + expected_output = "Ethernet16: SFP EEPROM Hexdump is not applicable for RJ45 port\n" + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + def test_show_eeprom_hexdump_xcvr_presence_not_implemented(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_presence = MagicMock(side_effect=NotImplementedError) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet16"]) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + expected_output = "Sfp.get_presence() is currently not implemented for this platform\n" + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + def test_show_eeprom_hexdump_xcvr_not_present(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_presence.return_value = False + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet16"]) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + expected_output = "SFP EEPROM not detected\n" + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + def test_show_eeprom_hexdump_read_eeprom_failure(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_presence.return_value = True + mock_sfp.read_eeprom = MagicMock(return_value=None) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet16"]) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + expected_output = "Error: Failed to read EEPROM for offset 0!\n" + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + def test_show_eeprom_hexdump_read_eeprom_not_implemented(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_presence.return_value = True + mock_sfp.read_eeprom = MagicMock(side_effect=NotImplementedError) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet16"]) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + expected_output = "Sfp.read_eeprom() is currently not implemented for this platform\n" + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + def test_show_eeprom_hexdump_sff8636_page(self, mock_chassis): + lower_page_bytearray = bytearray([13, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) + upper_page0_bytearray = bytearray([13, 0, 35, 8, 0, 0, 0, 65, 128, 128, 245, 0, 0, 0, 0, 0, 0, 0, 1, 160, 77, 111, 108, 101, 120, 32, 73, 110, 99, 46, 32, 32, 32, 32, 32, 32, 7, 0, 9, 58, 49, 49, 49, 48, 52, 48, 49, 48, 53, 52, 32, 32, 32, 32, 32, 32, 32, 32, 3, 4, 0, 0, 70, 196, 0, 0, 0, 0, 54, 49, 49, 48, 51, 48, 57, 50, 57, 32, 32, 32, 32, 32, 32, 32, 49, 54, 48, 52, 49, 57, 32, 32, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) + expected_output = '''EEPROM hexdump for port Ethernet0 page 0h + Lower page 0h + 00000000 0d 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000010 00 00 00 00 00 00 01 81 00 00 00 00 00 00 00 00 |................| + 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + + Upper page 0h + 00000080 0d 00 23 08 00 00 00 41 80 80 f5 00 00 00 00 00 |..#....A........| + 00000090 00 00 01 a0 4d 6f 6c 65 78 20 49 6e 63 2e 20 20 |....Molex Inc. | + 000000a0 20 20 20 20 07 00 09 3a 31 31 31 30 34 30 31 30 | ...:11104010| + 000000b0 35 34 20 20 20 20 20 20 20 20 03 04 00 00 46 c4 |54 ....F.| + 000000c0 00 00 00 00 36 31 31 30 33 30 39 32 39 20 20 20 |....611030929 | + 000000d0 20 20 20 20 31 36 30 34 31 39 20 20 00 00 00 24 | 160419 ...$| + 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + +''' + def side_effect(offset, num_bytes): + if offset == 0: + return lower_page_bytearray + else: + return upper_page0_bytearray + mock_sfp = MagicMock() + mock_sfp.get_presence.return_value = True + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.read_eeprom = MagicMock(side_effect=side_effect) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet0", "-n", "0"]) + assert result.exit_code == 0 + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + def test_show_eeprom_hexdump_sff8472_page(self, mock_chassis): + a0h_bytearray = bytearray([3, 4, 7, 16, 0, 0, 0, 0, 0, 0, 0, 6, 103, 0, 0, 0, 8, 3, 0, 30, 70, 73, 78, 73, 83, 65, 82, 32, 67, 79, 82, 80, 46, 32, 32, 32, 0, 0, 144, 101, 70, 84, 76, 88, 56, 53, 55, 49, 68, 51, 66, 67, 76, 32, 32, 32, 65, 32, 32, 32, 3, 82, 0, 72, 0, 26, 0, 0, 65, 85, 74, 48, 82, 67, 74, 32, 32, 32, 32, 32, 32, 32, 32, 32, 49, 53, 49, 48, 50, 57, 32, 32, 104, 240, 3, 246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) + a2h_lower_bytearray = bytearray([78, 0, 243, 0, 73, 0, 248, 0, 144, 136, 113, 72, 140, 160, 117, 48, 25, 200, 7, 208, 24, 156, 9, 196, 39, 16, 9, 208, 31, 7, 12, 90, 39, 16, 0, 100, 31, 7, 0, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 27, 20, 2, 129, 177, 13, 90, 23, 165, 21, 135, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 1]) + a2h_upper_bytearray = bytearray([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) + expected_output = '''EEPROM hexdump for port Ethernet256 page 0h + A0h dump + 00000000 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 |............g...| + 00000010 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 |....FINISAR CORP| + 00000020 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 |. ...eFTLX8571| + 00000030 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 |D3BCL A .R.H| + 00000040 00 1a 00 00 41 55 4a 30 52 43 4a 20 20 20 20 20 |....AUJ0RCJ | + 00000050 20 20 20 20 31 35 31 30 32 39 20 20 68 f0 03 f6 | 151029 h...| + 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + + A2h dump (lower 128 bytes) + 00000000 4e 00 f3 00 49 00 f8 00 90 88 71 48 8c a0 75 30 |N...I.....qH..u0| + 00000010 19 c8 07 d0 18 9c 09 c4 27 10 09 d0 1f 07 0c 5a |........'......Z| + 00000020 27 10 00 64 1f 07 00 9e 00 00 00 00 00 00 00 00 |'..d............| + 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000040 00 00 00 00 3f 80 00 00 00 00 00 00 01 00 00 00 |....?...........| + 00000050 01 00 00 00 01 00 00 00 01 00 00 00 00 00 00 1b |................| + 00000060 14 02 81 b1 0d 5a 17 a5 15 87 00 00 00 00 30 00 |.....Z........0.| + 00000070 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff 01 |................| + + A2h dump (upper 128 bytes) page 0h + 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + +''' + SFF8472_A0_SIZE = 256 + def side_effect(offset, num_bytes): + if offset == 0: + return a0h_bytearray + elif (offset == SFF8472_A0_SIZE): + return a2h_lower_bytearray + else: + return a2h_upper_bytearray + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_presence.return_value = True + mock_sfp.read_eeprom = MagicMock(side_effect=side_effect) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ["-p", "Ethernet256", "-n", "0"]) + assert result.exit_code == 0 + assert result.output == expected_output + + @patch('sfputil.main.logical_port_name_to_physical_port_list', MagicMock(return_value=1)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + def test_lpmode_set(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['lpmode'].commands['on'], ["Ethernet0"]) + assert result.output == 'Enabling low-power mode is not applicable for RJ45 port Ethernet0.\n' + assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.logical_port_name_to_physical_port_list', MagicMock(return_value=1)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + def test_reset_RJ45(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['reset'], ["Ethernet0"]) + assert result.output == 'Reset is not applicable for RJ45 port Ethernet0.\n' + assert result.exit_code == EXIT_FAIL + @patch('sfputil.main.platform_chassis') @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) def test_unlock_firmware(self, mock_chassis): @@ -305,6 +683,36 @@ def test_unlock_firmware(self, mock_chassis): result = runner.invoke(sfputil.cli.commands['firmware'].commands['unlock'], ["Ethernet0"]) assert result.exit_code == 0 + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + def test_show_fwversion_Rj45(self, mock_chassis): + mock_sfp = MagicMock() + mock_api = MagicMock() + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + mock_sfp.get_presence.return_value = True + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['fwversion'], ["Ethernet0"]) + assert result.output == 'Show firmware version is not applicable for RJ45 port Ethernet0.\n' + assert result.exit_code == EXIT_FAIL + + @patch('builtins.open') + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.update_firmware_info_to_state_db', MagicMock()) + def test_download_firmware(self, mock_chassis, mock_file): + mock_file.return_value.tell.return_value = 0 + mock_sfp = MagicMock() + mock_api = MagicMock() + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_api.get_module_fw_mgmt_feature.return_value = {'status': True, 'feature': (0, 0, False, False, 0)} + mock_api.cdb_start_firmware_download.return_value = 1 + mock_api.cdb_firmware_download_complete.return_value = 1 + mock_sfp.set_optoe_write_max = MagicMock(side_effect=NotImplementedError) + status = sfputil.download_firmware("Ethernet0", "test.bin") + assert status == 1 @patch('sfputil.main.platform_chassis') @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) @@ -318,6 +726,30 @@ def test_run_firmwre(self, mock_chassis): status = sfputil.run_firmware("Ethernet0", 1) assert status == 1 + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @pytest.mark.parametrize("mock_response, expected", [ + ({'status': False, 'result': None} , -1), + ({'status': True, 'result': ("1.0.1", 1, 1, 0, "1.0.2", 0, 0, 0, "1.0.1", "1.0.2")} , -1), + ({'status': True, 'result': ("1.0.1", 0, 0, 0, "1.0.2", 1, 1, 0, "1.0.2", "1.0.1")} , -1), + ({'status': True, 'result': ("1.0.1", 1, 0, 0, "1.0.2", 0, 1, 0, "1.0.1", "1.0.2")} , 1), + ({'status': True, 'result': ("1.0.1", 0, 1, 0, "1.0.2", 1, 0, 0, "1.0.2", "1.0.1")} , 1), + ({'status': True, 'result': ("1.0.1", 1, 0, 1, "1.0.2", 0, 1, 0, "1.0.1", "1.0.2")} , -1), + ({'status': True, 'result': ("1.0.1", 0, 1, 0, "1.0.2", 1, 0, 1, "1.0.2", "1.0.1")} , -1), + + # "is_fw_switch_done" function will waiting until timeout under below condition, so that this test will spend around 1min. + ({'status': False, 'result': 0} , -1), + ]) + def test_is_fw_switch_done(self, mock_chassis, mock_response, expected): + mock_sfp = MagicMock() + mock_api = MagicMock() + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + mock_sfp.get_presence.return_value = True + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_api.get_module_fw_info.return_value = mock_response + status = sfputil.is_fw_switch_done("Ethernet0") + assert status == expected + @patch('sfputil.main.platform_chassis') @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) def test_commit_firmwre(self, mock_chassis): @@ -329,3 +761,81 @@ def test_commit_firmwre(self, mock_chassis): mock_api.cdb_commit_firmware.return_value = 1 status = sfputil.commit_firmware("Ethernet0") assert status == 1 + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) + @patch('sfputil.main.show_firmware_version', MagicMock()) + @patch('sfputil.main.download_firmware', MagicMock(return_value=1)) + @patch('sfputil.main.run_firmware', MagicMock(return_value=1)) + @patch('sfputil.main.is_fw_switch_done', MagicMock(return_value=1)) + @patch('sfputil.main.commit_firmware', MagicMock(return_value=1)) + def test_firmware_upgrade(self, mock_chassis): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['upgrade'], ['Ethernet0', 'path']) + assert result.output == 'Firmware download complete success\nFirmware run in mode 0 successful\nFirmware commit successful\n' + assert result.exit_code == 0 + + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + def test_firmware_run_RJ45(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['run'], ["--mode", "0", "Ethernet0"]) + assert result.output == 'This functionality is not applicable for RJ45 port Ethernet0.\n' + assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + def test_firmware_commit_RJ45(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['commit'], ["Ethernet0"]) + assert result.output == 'This functionality is not applicable for RJ45 port Ethernet0.\n' + assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=1)) + def test_firmware_upgrade_RJ45(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['upgrade'], ["Ethernet0", "a.b"]) + assert result.output == 'This functionality is not applicable for RJ45 port Ethernet0.\n' + assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=1)) + def test_firmware_download_RJ45(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['download'], ["Ethernet0", "a.b"]) + assert result.output == 'This functionality is not applicable for RJ45 port Ethernet0.\n' + assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('sfputil.main.run_firmware', MagicMock(return_value=1)) + @patch('sfputil.main.update_firmware_info_to_state_db', MagicMock()) + def test_firmware_run_cli(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['run'], ["Ethernet0"]) + assert result.exit_code == 0 + + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('sfputil.main.commit_firmware', MagicMock(return_value=1)) + @patch('sfputil.main.update_firmware_info_to_state_db', MagicMock()) + def test_firmware_commit_cli(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['commit'], ["Ethernet0"]) + assert result.exit_code == 0 + + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sonic_py_common.multi_asic.get_front_end_namespaces', MagicMock(return_value=[''])) + @patch('sfputil.main.SonicV2Connector', MagicMock()) + @patch('sfputil.main.platform_chassis') + def test_update_firmware_info_to_state_db(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_transceiver_info_firmware_versions.return_value = ['a.b.c', 'd.e.f'] + + sfputil.update_firmware_info_to_state_db("Ethernet0") diff --git a/tests/show_acl_test.py b/tests/show_acl_test.py new file mode 100644 index 000000000..64db81fb9 --- /dev/null +++ b/tests/show_acl_test.py @@ -0,0 +1,97 @@ +import os +import pytest +from click.testing import CliRunner + +import acl_loader.main as acl_loader_show +from acl_loader import * +from acl_loader.main import * +from importlib import reload + +root_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(root_path) +scripts_path = os.path.join(modules_path, "scripts") + +MASIC_SHOW_ACL_OUTPUT = """Name Type Binding Description Stage Status +--------- ------ ----------- ------------- ------- -------------------------------------- +DATAACL_5 L3 Ethernet20 DATAACL_5 ingress {'asic0': 'Active', 'asic2': 'Active'} + Ethernet124 +""" + +@pytest.fixture() +def setup_teardown_single_asic(): + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + yield + os.environ["UTILITIES_UNIT_TESTING"] = "0" + + +@pytest.fixture(scope="class") +def setup_teardown_multi_asic(): + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + from .mock_tables import mock_multi_asic_3_asics + reload(mock_multi_asic_3_asics) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + yield + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + from .mock_tables import mock_single_asic + reload(mock_single_asic) + + +class TestShowACLSingleASIC(object): + def test_show_acl_table(self, setup_teardown_single_asic): + runner = CliRunner() + aclloader = AclLoader() + context = { + "acl_loader": aclloader + } + result = runner.invoke(acl_loader_show.cli.commands['show'].commands['table'], ['DATAACL_5'], obj=context) + assert result.exit_code == 0 + # We only care about the third line, which contains the 'Active' + result_top = result.output.split('\n')[2] + expected_output = "DATAACL_5 L3 Ethernet124 DATAACL_5 ingress Active" + assert result_top == expected_output + + def test_show_acl_rule(self, setup_teardown_single_asic): + runner = CliRunner() + aclloader = AclLoader() + context = { + "acl_loader": aclloader + } + result = runner.invoke(acl_loader_show.cli.commands['show'].commands['rule'], ['DATAACL_5'], obj=context) + assert result.exit_code == 0 + # We only care about the third line, which contains the 'Active' + result_top = result.output.split('\n')[2] + expected_output = "DATAACL_5 RULE_1 9999 FORWARD IP_PROTOCOL: 126 Active" + assert result_top == expected_output + + +class TestShowACLMultiASIC(object): + def test_show_acl_table(self, setup_teardown_multi_asic): + runner = CliRunner() + aclloader = AclLoader() + context = { + "acl_loader": aclloader + } + result = runner.invoke(acl_loader_show.cli.commands['show'].commands['table'], ['DATAACL_5'], obj=context) + assert result.exit_code == 0 + assert result.output == MASIC_SHOW_ACL_OUTPUT + + def test_show_acl_rule(self, setup_teardown_multi_asic): + runner = CliRunner() + aclloader = AclLoader() + context = { + "acl_loader": aclloader + } + result = runner.invoke(acl_loader_show.cli.commands['show'].commands['rule'], ['DATAACL_5'], obj=context) + assert result.exit_code == 0 + # We only care about the third line, which contains the 'Active' + result_top = result.output.split('\n')[2] + expected_output = "DATAACL_5 RULE_1 9999 FORWARD IP_PROTOCOL: 126 {'asic0': 'Active', 'asic2': 'Active'}" + assert result_top == expected_output + + diff --git a/tests/show_bfd_test.py b/tests/show_bfd_test.py index fdf4fbe5e..c92fb7690 100644 --- a/tests/show_bfd_test.py +++ b/tests/show_bfd_test.py @@ -29,7 +29,7 @@ def test_bfd_show(self): "tx_interval" :"300", "rx_interval" : "500", "multiplier" : "3", "multihop": "true"}) self.set_db_values(dbconnector, "BFD_SESSION_TABLE|default|Ethernet12|10.0.2.1", {"state": "UP", "type": "async_active", "local_addr" : "10.0.0.1", - "tx_interval" :"200", "rx_interval" : "600", "multiplier" : "3", "multihop": "false"}) + "tx_interval" :"200", "rx_interval" : "600", "multiplier" : "3", "multihop": "false", "local_discriminator": "88"}) self.set_db_values(dbconnector, "BFD_SESSION_TABLE|default|default|2000::10:1", {"state": "UP", "type": "async_active", "local_addr" : "2000::1", "tx_interval" :"100", "rx_interval" : "700", "multiplier" : "3", "multihop": "false"}) @@ -38,13 +38,15 @@ def test_bfd_show(self): "tx_interval" :"400", "rx_interval" : "500", "multiplier" : "5", "multihop": "false"}) expected_output = """\ -Total number of BFD sessions: 4 -Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop ------------ ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- -10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true -10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false -2000::10:1 default default UP async_active 2000::1 100 700 3 false -10.0.1.1 default VrfRed UP async_active 10.0.0.1 400 500 5 false +Total number of BFD sessions: 6 +Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop Local Discriminator +--------------------- ----------- ------- ------- ------------ --------------------- ------------- ------------- ------------ ---------- --------------------- +100.251.7.1 default default Up async_active 10.0.0.1 300 500 3 true NA +fddd:a101:a251::a10:1 default default Down async_active fddd:c101:a251::a10:2 300 500 3 true NA +10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true NA +10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false 88 +2000::10:1 default default UP async_active 2000::1 100 700 3 false NA +10.0.1.1 default VrfRed UP async_active 10.0.0.1 400 500 5 false NA """ result = runner.invoke(show.cli.commands['bfd'].commands['summary'], [], obj=db) @@ -53,10 +55,10 @@ def test_bfd_show(self): expected_output = """\ Total number of BFD sessions for peer IP 10.0.1.1: 2 -Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop ------------ ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- -10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true -10.0.1.1 default VrfRed UP async_active 10.0.0.1 400 500 5 false +Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop Local Discriminator +----------- ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- --------------------- +10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true NA +10.0.1.1 default VrfRed UP async_active 10.0.0.1 400 500 5 false NA """ result = runner.invoke(show.cli.commands['bfd'].commands['peer'], ['10.0.1.1'], obj=db) @@ -65,9 +67,9 @@ def test_bfd_show(self): expected_output = """\ Total number of BFD sessions for peer IP 10.0.2.1: 1 -Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop ------------ ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- -10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false +Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop Local Discriminator +----------- ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- --------------------- +10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false 88 """ result = runner.invoke(show.cli.commands['bfd'].commands['peer'], ['10.0.2.1'], obj=db) @@ -88,9 +90,11 @@ def test_bfd_show_no_session(self): db = Db() expected_output = """\ -Total number of BFD sessions: 0 -Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop ------------ ----------- ----- ------- ------ ------------ ------------- ------------- ------------ ---------- +Total number of BFD sessions: 2 +Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop Local Discriminator +--------------------- ----------- ------- ------- ------------ --------------------- ------------- ------------- ------------ ---------- --------------------- +100.251.7.1 default default Up async_active 10.0.0.1 300 500 3 true NA +fddd:a101:a251::a10:1 default default Down async_active fddd:c101:a251::a10:2 300 500 3 true NA """ result = runner.invoke(show.cli.commands['bfd'].commands['summary'], [], obj=db) diff --git a/tests/show_ip_int_test.py b/tests/show_ip_int_test.py index 31350d3ea..d2abdbbf5 100644 --- a/tests/show_ip_int_test.py +++ b/tests/show_ip_int_test.py @@ -19,7 +19,7 @@ Vlan100 40.1.1.1/24 error/down N/A N/A""" show_ipv6_intf_with_multiple_ips = """\ -Interface Master IPv4 address/mask Admin/Oper BGP Neighbor Neighbor IP +Interface Master IPv6 address/mask Admin/Oper BGP Neighbor Neighbor IP --------------- -------- -------------------------------------------- ------------ -------------- ------------- Ethernet0 2100::1/64 error/down N/A N/A aa00::1/64 N/A N/A @@ -36,7 +36,7 @@ PortChannel0001 20.1.1.1/24 error/down T2-Peer 20.1.1.5""" show_multi_asic_ipv6_intf = """\ -Interface Master IPv4 address/mask Admin/Oper BGP Neighbor Neighbor IP +Interface Master IPv6 address/mask Admin/Oper BGP Neighbor Neighbor IP --------------- -------- -------------------------------------- ------------ -------------- ------------- Loopback0 fe80::60a5:9dff:fef4:1696%Loopback0/64 error/down N/A N/A PortChannel0001 aa00::1/64 error/down N/A N/A @@ -54,7 +54,7 @@ veth@eth2 193.1.1.1/24 error/down N/A N/A""" show_multi_asic_ipv6_intf_all = """\ -Interface Master IPv4 address/mask Admin/Oper BGP Neighbor Neighbor IP +Interface Master IPv6 address/mask Admin/Oper BGP Neighbor Neighbor IP --------------- -------- -------------------------------------- ------------ -------------- ------------- Loopback0 fe80::60a5:9dff:fef4:1696%Loopback0/64 error/down N/A N/A PortChannel0001 aa00::1/64 error/down N/A N/A diff --git a/tests/show_ip_route_common.py b/tests/show_ip_route_common.py index 386d32e55..101b23309 100644 --- a/tests/show_ip_route_common.py +++ b/tests/show_ip_route_common.py @@ -323,6 +323,162 @@ C>*fe80::/64 is directly connected, eth0, 1d11h34m """ +show_ipv6_route_alias_expected_output = """\ +Codes: K - kernel route, C - connected, S - static, R - RIP, + O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, + T - Table, v - VNC, V - VNC-Direct, A - Babel, D - SHARP, + F - PBR, f - OpenFabric, + > - selected route, * - FIB route, q - queued route, r - rejected route + +B>*::/0 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +K *::/0 [210/0] via fd00::1, eth0, 1d11h34m +B>*2064:100::1/128 [20/0] via fc00::2, PortChannel0002, 1d11h34m +B>*2064:100::3/128 [20/0] via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:10::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:11::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:20::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:21::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:30::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:31::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:40::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:41::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:50::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:51::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:60::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:61::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:70::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:71::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:80::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:81::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:90::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:91::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:a0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:a1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:b0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:b1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:c0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:c1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:d0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:d1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:e0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:e1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:f0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a800:0:f1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:10::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:11::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:20::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:21::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:30::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:31::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:40::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:41::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:50::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:51::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:60::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:61::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:70::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:71::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:80::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:81::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:90::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:91::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:a0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:a1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:b0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:b1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:c0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:c1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:d0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:d1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:e0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:e1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:f0::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +B>*20c0:a801:0:f1::/64 [20/0] via fc00::2, PortChannel0002, 1d11h34m + * via fc00::6, PortChannel0005, 1d11h34m +C>*2603:10e2:400::/128 is directly connected, Loopback4096, 1d11h34m +C>*fc00::/126 is directly connected, PortChannel0002, 1d11h34m +C>*fc00::4/126 is directly connected, PortChannel0005, 1d11h34m +C>*fc00:1::32/128 is directly connected, Loopback0, 1d11h34m +C>*fd00::/80 is directly connected, eth0, 1d11h34m +C *fe80::/64 is directly connected, PortChannel0002, 1d11h34m +C *fe80::/64 is directly connected, PortChannel0005, 1d11h34m +C *fe80::/64 is directly connected, etp6, 1d11h34m +C *fe80::/64 is directly connected, etp5, 1d11h34m +C *fe80::/64 is directly connected, etp2, 1d11h34m +C *fe80::/64 is directly connected, etp1, 1d11h34m +C *fe80::/64 is directly connected, Loopback4096, 1d11h34m +C *fe80::/64 is directly connected, Loopback0, 1d11h34m +C>*fe80::/64 is directly connected, eth0, 1d11h34m +""" + # # MULTI ASIC TEST SECTION # @@ -555,6 +711,52 @@ C *fe80::/64 is directly connected, Ethernet24, 2d22h02m """ +show_ipv6_route_multi_asic_all_namesapce_alias_output = """\ +Codes: K - kernel route, C - connected, S - static, R - RIP, + O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, + T - Table, v - VNC, V - VNC-Direct, A - Babel, D - SHARP, + F - PBR, f - OpenFabric, + > - selected route, * - FIB route, q - queued route, r - rejected route + +K *::/0 [210/0] via fd00::1, eth0, 2d22h00m +B>*::/0 [20/0] via fc00::6, PortChannel0005, 2d22h00m + * via fc00::2, PortChannel0002, 2d22h00m + * via fc00::2, PortChannel1015, 2d22h00m + * via fc00::6, PortChannel1016, 2d22h00m +B>*2064:100::1/128 [20/0] via fc00::2, PortChannel0002, 2d22h00m + * via fc00::2, PortChannel1015, 2d22h00m +B>*2064:100::3/128 [20/0] via fc00::6, PortChannel0005, 2d22h00m + * via fc00::6, PortChannel1016, 2d22h00m +B>*20c0:a800:0:1::/64 [20/0] via fc00::6, PortChannel0005, 2d22h00m + * via fc00::2, PortChannel0002, 2d22h00m + * via fc00::2, PortChannel1015, 2d22h00m + * via fc00::6, PortChannel1016, 2d22h00m +B>*20c0:a800:0:10::/64 [20/0] via fc00::6, PortChannel0005, 2d22h00m + * via fc00::2, PortChannel0002, 2d22h00m + * via fc00::2, PortChannel1015, 2d22h00m + * via fc00::6, PortChannel1016, 2d22h00m +B>*20c0:a800:0:11::/64 [20/0] via fc00::6, PortChannel0002, 2d22h00m + * via fc00::6, PortChannel1015, 2d22h00m +B>*20c0:a800:0:20::/64 [20/0] via fc00::2, PortChannel0002, 2d22h00m + * via fc00::2, PortChannel1015, 2d22h00m +B>*20c0:a800:0:21::/64 [20/0] via fc00::2, PortChannel0002, 2d22h00m + * via fc00::2, PortChannel1015, 2d22h00m +C>*2603:10e2:400::/128 is directly connected, Loopback4096, 2d22h00m +C>*2603:10e2:400::2/128 is directly connected, Loopback4096, 2d22h02m +C>*fc00::4/126 is directly connected, PortChannel0005, 2d22h00m +C>*fc00::4/126 is directly connected, PortChannel1016, 2d22h02m +C>*fc00:1::32/128 is directly connected, Loopback0, 2d22h00m +C>*fd00::/80 is directly connected, eth0, 2d22h00m +C>*fe80::/64 is directly connected, eth0, 2d22h00m +C *fe80::/64 is directly connected, Loopback0, 2d22h00m +C *fe80::/64 is directly connected, Loopback4096, 2d22h00m +C *fe80::/64 is directly connected, Ethernet1/5, 2d22h00m +C *fe80::/64 is directly connected, Ethernet1/6, 2d22h00m +C *fe80::/64 is directly connected, PortChannel0005, 2d22h00m +C *fe80::/64 is directly connected, PortChannel1016, 2d22h02m +C *fe80::/64 is directly connected, Ethernet1/7, 2d22h02m +""" + show_ipv6_route_multi_asic_single_namesapce_output = """\ Codes: K - kernel route, C - connected, S - static, R - RIP, O - OSPF, I - IS-IS, B - BGP, E - EIGRP, N - NHRP, diff --git a/tests/show_run_bgp_test.py b/tests/show_run_bgp_test.py new file mode 100644 index 000000000..4d3ff843a --- /dev/null +++ b/tests/show_run_bgp_test.py @@ -0,0 +1,228 @@ +import os +import pytest +import importlib +from click.testing import CliRunner + +from utilities_common import multi_asic +from utilities_common import constants + +from unittest.mock import patch + +from sonic_py_common import device_info +import show.main as show + + +show_run_bgp_sasic = \ +"""router bgp 65100 +bgp router-id 10.1.0.32 +bgp log-neighbor-changes +no bgp ebgp-requires-policy +no bgp default ipv4-unicast +bgp graceful-restart restart-time 240 +bgp graceful-restart select-defer-time 45 +bgp graceful-restart +bgp graceful-restart preserve-fw-state +bgp bestpath as-path multipath-relax +neighbor BGPSLBPassive peer-group +neighbor BGPSLBPassive remote-as 65432 +neighbor BGPSLBPassive passive +neighbor BGPSLBPassive ebgp-multihop 255 +neighbor BGPSLBPassive update-source 10.1.0.32 +neighbor BGPVac peer-group +neighbor BGPVac remote-as 65432 +neighbor BGPVac passive +neighbor BGPVac ebgp-multihop 255 +neighbor BGPVac update-source 10.1.0.32 +neighbor PEER_V4 peer-group +neighbor PEER_V6 peer-group +neighbor 10.0.0.57 remote-as 64600 +neighbor 10.0.0.57 peer-group PEER_V4 +neighbor 10.0.0.57 description ARISTA01T1 +neighbor 10.0.0.57 timers 3 10 +neighbor 10.0.0.57 timers connect 10 +neighbor 10.0.0.59 remote-as 64600 +neighbor 10.0.0.59 peer-group PEER_V4 +neighbor 10.0.0.59 description ARISTA02T1 +neighbor 10.0.0.59 timers 3 10 +neighbor 10.0.0.59 timers connect 10 +neighbor 10.0.0.61 remote-as 64600 +neighbor 10.0.0.61 peer-group PEER_V4 +neighbor 10.0.0.61 description ARISTA03T1 +neighbor 10.0.0.61 timers 3 10 +neighbor 10.0.0.61 timers connect 10 +neighbor 10.0.0.63 remote-as 64600 +neighbor 10.0.0.63 peer-group PEER_V4 +neighbor 10.0.0.63 description ARISTA04T1 +neighbor 10.0.0.63 timers 3 10 +neighbor 10.0.0.63 timers connect 10 +neighbor fc00::72 remote-as 64600 +neighbor fc00::72 peer-group PEER_V6 +neighbor fc00::72 description ARISTA01T1 +neighbor fc00::72 timers 3 10 +neighbor fc00::72 timers connect 10 +neighbor fc00::76 remote-as 64600 +neighbor fc00::76 peer-group PEER_V6 +neighbor fc00::76 description ARISTA02T1 +neighbor fc00::76 timers 3 10 +neighbor fc00::76 timers connect 10 +neighbor fc00::7a remote-as 64600 +neighbor fc00::7a peer-group PEER_V6 +neighbor fc00::7a description ARISTA03T1 +neighbor fc00::7a timers 3 10 +neighbor fc00::7a timers connect 10 +neighbor fc00::7e remote-as 64600 +neighbor fc00::7e peer-group PEER_V6 +neighbor fc00::7e description ARISTA04T1 +neighbor fc00::7e timers 3 10 +neighbor fc00::7e timers connect 10 +bgp listen range 10.255.0.0/25 peer-group BGPSLBPassive +bgp listen range 192.168.0.0/21 peer-group BGPVac + +""" + +show_run_bgp_masic = \ +""" +------------Showing running config bgp on asic0------------ +neighbor 10.0.0.1 remote-as 65200 +neighbor 10.0.0.1 peer-group TIER2_V4 +neighbor 10.0.0.1 description ARISTA01T2 +neighbor 10.0.0.5 remote-as 65200 +neighbor 10.0.0.5 peer-group TIER2_V4 +neighbor 10.0.0.5 description ARISTA03T2 +neighbor fc00::2 remote-as 65200 +neighbor fc00::2 peer-group TIER2_V6 +neighbor fc00::2 description ARISTA01T2 +neighbor fc00::6 remote-as 65200 +neighbor fc00::6 peer-group TIER2_V6 +neighbor fc00::6 description ARISTA03T2 + +------------Showing running config bgp on asic1------------ +neighbor 10.0.0.9 remote-as 65200 +neighbor 10.0.0.9 peer-group TIER2_V4 +neighbor 10.0.0.9 description ARISTA05T2 +neighbor 10.0.0.13 remote-as 65200 +neighbor 10.0.0.13 peer-group TIER2_V4 +neighbor 10.0.0.13 description ARISTA07T2 +neighbor fc00::a remote-as 65200 +neighbor fc00::a peer-group TIER2_V6 +neighbor fc00::a description ARISTA05T2 +neighbor fc00::e remote-as 65200 +neighbor fc00::e peer-group TIER2_V6 +neighbor fc00::e description ARISTA07T2 + +""" + +show_run_bgp_masic_asic0 = \ +""" +------------Showing running config bgp on asic0------------ +neighbor 10.0.0.1 remote-as 65200 +neighbor 10.0.0.1 peer-group TIER2_V4 +neighbor 10.0.0.1 description ARISTA01T2 +neighbor 10.0.0.5 remote-as 65200 +neighbor 10.0.0.5 peer-group TIER2_V4 +neighbor 10.0.0.5 description ARISTA03T2 +neighbor fc00::2 remote-as 65200 +neighbor fc00::2 peer-group TIER2_V6 +neighbor fc00::2 description ARISTA01T2 +neighbor fc00::6 remote-as 65200 +neighbor fc00::6 peer-group TIER2_V6 +neighbor fc00::6 description ARISTA03T2 + +""" + +show_run_bgp_not_running = \ +""" +------------Showing running config bgp on asic0------------ +Error response from daemon: Container 70e3d3bafd1ab5faf796892acff3e2ccbea3dcd5dcfefcc34f25f7cc916b67bb is not running + +""" + +class TestShowRunBgpSingleAsic(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + + @pytest.mark.parametrize('setup_single_bgp_instance', + [ + 'show_run_bgp', + ], + indirect=['setup_single_bgp_instance']) + + def test_show_run_bgp_single(self, + setup_single_bgp_instance): + runner = CliRunner() + result = runner.invoke(show.cli.commands["runningconfiguration"].commands["bgp"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_run_bgp_sasic + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ['UTILITIES_UNIT_TESTING'] = "0" + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_database_config() + + +class TestShowRunBgpMultiAsic(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + [ + 'show_run_bgp', + ], + indirect=['setup_multi_asic_bgp_instance']) + def test_show_run_bgp_all_asics(self, + setup_multi_asic_bgp_instance): + runner = CliRunner() + result = runner.invoke(show.cli.commands["runningconfiguration"].commands["bgp"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_run_bgp_masic + + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + [ + 'show_run_bgp', + ], + indirect=['setup_multi_asic_bgp_instance']) + def test_show_run_bgp_asic0(self, + setup_multi_asic_bgp_instance): + runner = CliRunner() + result = runner.invoke(show.cli.commands["runningconfiguration"].commands["bgp"], ["-nasic0"]) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_run_bgp_masic_asic0 + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + [ + 'show_not_running_bgp', + ], + indirect=['setup_multi_asic_bgp_instance']) + def test_bgp0_not_running(self, + setup_multi_asic_bgp_instance): + runner = CliRunner() + result = runner.invoke(show.cli.commands["runningconfiguration"].commands["bgp"], ["-nasic0"]) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_run_bgp_not_running + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_database_config diff --git a/tests/show_test.py b/tests/show_test.py new file mode 100644 index 000000000..adec353f1 --- /dev/null +++ b/tests/show_test.py @@ -0,0 +1,204 @@ +import os +import sys +import pytest +import importlib +import show.main as show +import utilities_common.bgp_util as bgp_util +from click.testing import CliRunner +from unittest import mock +from unittest.mock import call, MagicMock, patch + +EXPECTED_BASE_COMMAND = 'sudo ' + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +sys.path.insert(0, test_path) +sys.path.insert(0, modules_path) + + +class TestShowRunAllCommands(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + cls._old_run_bgp_command = bgp_util.run_bgp_command + bgp_util.run_bgp_command = mock.MagicMock( + return_value=cls.mock_run_bgp_command()) + + def mock_run_bgp_command(): + return "" + + def test_show_runningconfiguration_all_json_loads_failure(self): + def get_cmd_output_side_effect(*args, **kwargs): + return "", 0 + with mock.patch('show.main.get_cmd_output', + mock.MagicMock(side_effect=get_cmd_output_side_effect)) as mock_get_cmd_output: + result = CliRunner().invoke(show.cli.commands['runningconfiguration'].commands['all'], []) + assert result.exit_code != 0 + + def test_show_runningconfiguration_all_get_cmd_ouput_failure(self): + def get_cmd_output_side_effect(*args, **kwargs): + return "{}", 2 + with mock.patch('show.main.get_cmd_output', + mock.MagicMock(side_effect=get_cmd_output_side_effect)) as mock_get_cmd_output: + result = CliRunner().invoke(show.cli.commands['runningconfiguration'].commands['all'], []) + assert result.exit_code != 0 + + def test_show_runningconfiguration_all(self): + def get_cmd_output_side_effect(*args, **kwargs): + return "{}", 0 + with mock.patch('show.main.get_cmd_output', + mock.MagicMock(side_effect=get_cmd_output_side_effect)) as mock_get_cmd_output: + result = CliRunner().invoke(show.cli.commands['runningconfiguration'].commands['all'], []) + assert result.exit_code == 0 + assert mock_get_cmd_output.call_count == 1 + assert mock_get_cmd_output.call_args_list == [ + call(['sonic-cfggen', '-d', '--print-data'])] + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + bgp_util.run_bgp_command = cls._old_run_bgp_command + os.environ["PATH"] = os.pathsep.join(os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ["UTILITIES_UNIT_TESTING"] = "0" + + +class TestShowRunAllCommandsMasic(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ['UTILITIES_UNIT_TESTING'] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + cls._old_run_bgp_command = bgp_util.run_bgp_command + bgp_util.run_bgp_command = mock.MagicMock( + return_value=cls.mock_run_bgp_command()) + # change to multi asic config + from .mock_tables import dbconnector + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + dbconnector.load_namespace_config() + + def mock_run_bgp_command(): + return "" + + def test_show_runningconfiguration_all_masic(self): + def get_cmd_output_side_effect(*args, **kwargs): + return "{}", 0 + with mock.patch('show.main.get_cmd_output', + mock.MagicMock(side_effect=get_cmd_output_side_effect)) as mock_get_cmd_output: + result = CliRunner().invoke(show.cli.commands['runningconfiguration'].commands['all'], []) + assert result.exit_code == 0 + assert mock_get_cmd_output.call_count == 3 + assert mock_get_cmd_output.call_args_list == [ + call(['sonic-cfggen', '-d', '--print-data']), + call(['sonic-cfggen', '-d', '--print-data', '-n', 'asic0']), + call(['sonic-cfggen', '-d', '--print-data', '-n', 'asic1'])] + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + bgp_util.run_bgp_command = cls._old_run_bgp_command + os.environ["PATH"] = os.pathsep.join(os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + # change back to single asic config + from .mock_tables import dbconnector + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + dbconnector.load_namespace_config() + + +@patch('show.main.run_command') +@pytest.mark.parametrize( + "cli_arguments,expected", + [ + ([], 'cat /var/log/syslog'), + (['xcvrd'], "cat /var/log/syslog | grep 'xcvrd'"), + (['-l', '10'], 'cat /var/log/syslog | tail -10'), + (['-f'], 'tail -F /var/log/syslog'), + ] +) +def test_show_logging_default(run_command, cli_arguments, expected): + runner = CliRunner() + result = runner.invoke(show.cli.commands["logging"], cli_arguments) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + +@patch('show.main.run_command') +@patch('os.path.isfile', MagicMock(return_value=True)) +@pytest.mark.parametrize( + "cli_arguments,expected", + [ + ([], 'cat /var/log/syslog.1 /var/log/syslog'), + (['xcvrd'], "cat /var/log/syslog.1 /var/log/syslog | grep 'xcvrd'"), + (['-l', '10'], 'cat /var/log/syslog.1 /var/log/syslog | tail -10'), + (['-f'], 'tail -F /var/log/syslog'), + ] +) +def test_show_logging_syslog_1(run_command, cli_arguments, expected): + runner = CliRunner() + result = runner.invoke(show.cli.commands["logging"], cli_arguments) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + +@patch('show.main.run_command') +@patch('os.path.exists', MagicMock(return_value=True)) +@pytest.mark.parametrize( + "cli_arguments,expected", + [ + ([], 'cat /var/log.tmpfs/syslog'), + (['xcvrd'], "cat /var/log.tmpfs/syslog | grep 'xcvrd'"), + (['-l', '10'], 'cat /var/log.tmpfs/syslog | tail -10'), + (['-f'], 'tail -F /var/log.tmpfs/syslog'), + ] +) +def test_show_logging_tmpfs(run_command, cli_arguments, expected): + runner = CliRunner() + result = runner.invoke(show.cli.commands["logging"], cli_arguments) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + +@patch('show.main.run_command') +@patch('os.path.isfile', MagicMock(return_value=True)) +@patch('os.path.exists', MagicMock(return_value=True)) +@pytest.mark.parametrize( + "cli_arguments,expected", + [ + ([], 'cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog'), + (['xcvrd'], "cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog | grep 'xcvrd'"), + (['-l', '10'], 'cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog | tail -10'), + (['-f'], 'tail -F /var/log.tmpfs/syslog'), + ] +) +def test_show_logging_tmpfs_syslog_1(run_command, cli_arguments, expected): + runner = CliRunner() + result = runner.invoke(show.cli.commands["logging"], cli_arguments) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + +def side_effect_subprocess_popen(*args, **kwargs): + mock = MagicMock() + if args[0] == "uptime": + mock.stdout.read.return_value = "05:58:07 up 25 days" + elif args[0].startswith("sudo docker images"): + mock.stdout.read.return_value = "REPOSITORY TAG" + return mock + +@patch('sonic_py_common.device_info.get_sonic_version_info', MagicMock(return_value={ + "build_version": "release-1.1-7d94c0c28", + "sonic_os_version": "11", + "debian_version": "11.6", + "kernel_version": "5.10", + "commit_id": "7d94c0c28", + "build_date": "Wed Feb 15 06:17:08 UTC 2023", + "built_by": "AzDevOps"})) +@patch('sonic_py_common.device_info.get_platform_info', MagicMock(return_value={ + "platform": "x86_64-kvm_x86_64-r0", + "hwsku": "Force10-S6000", + "asic_type": "vs", + "asic_count": 1})) +@patch('sonic_py_common.device_info.get_chassis_info', MagicMock(return_value={ + "serial": "N/A", + "model": "N/A", + "revision": "N/A"})) +@patch('subprocess.Popen', MagicMock(side_effect=side_effect_subprocess_popen)) +def test_show_version(): + runner = CliRunner() + result = runner.invoke(show.cli.commands["version"]) + assert "SONiC OS Version: 11" in result.output diff --git a/tests/show_vnet_test.py b/tests/show_vnet_test.py new file mode 100644 index 000000000..eff75a583 --- /dev/null +++ b/tests/show_vnet_test.py @@ -0,0 +1,122 @@ +import os +from click.testing import CliRunner +from utilities_common.db import Db +import show.main as show +import show.vnet as vnet + +class TestShowVnetRoutesAll(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_Preety_print(self): + table =[] + row = ["Vnet_v6_in_v6-0", "fddd:a156:a251::a6:1/128"] + mac_addr = "" + vni = "" + state = "active" + epval = "fddd:a100:a251::a10:1,fddd:a101:a251::a10:1" + + vnet.pretty_print(table, row, epval, mac_addr, vni, state) + expected_output = [['Vnet_v6_in_v6-0', 'fddd:a156:a251::a6:1/128', 'fddd:a100:a251::a10:1,fddd:a101:a251::a10:1', '', '', 'active']] + assert table == expected_output + + table =[] + row = ["Vnet_v6_in_v6-0", "fddd:a156:a251::a6:1/128"] + epval = "fddd:a100:a251::a10:1,fddd:a101:a251::a10:1,fddd:a100:a251::a11:1,fddd:a100:a251::a12:1,fddd:a100:a251::a13:1" + vnet.pretty_print(table, row, epval, mac_addr, vni, state) + expected_output = [ + ['Vnet_v6_in_v6-0', 'fddd:a156:a251::a6:1/128', 'fddd:a100:a251::a10:1,fddd:a101:a251::a10:1', '', '', 'active'], + ['', '', 'fddd:a100:a251::a11:1,fddd:a100:a251::a12:1', '', '', ''], + ['', '', 'fddd:a100:a251::a13:1', '', '', ''] + ] + assert table == expected_output + + table =[] + row = ["Vnet_v6_in_v6-0", "fddd:a156:a251::a6:1/128"] + epval = "192.168.1.1,192.168.1.2,192.168.1.3,192.168.1.4,192.168.1.5,192.168.1.6,192.168.1.7,192.168.1.8,192.168.1.9,192.168.1.10,192.168.1.11,192.168.1.12,192.168.1.13,192.168.1.14,192.168.1.15" + vnet.pretty_print(table, row, epval, mac_addr, vni, state) + expected_output =[ + ['Vnet_v6_in_v6-0', 'fddd:a156:a251::a6:1/128', '192.168.1.1,192.168.1.2,192.168.1.3', '', '', 'active'], + ['', '', '192.168.1.4,192.168.1.5,192.168.1.6', '', '', ''], + ['', '', '192.168.1.7,192.168.1.8,192.168.1.9', '', '', ''], + ['', '', '192.168.1.10,192.168.1.11,192.168.1.12', '', '', ''], + ['', '', '192.168.1.13,192.168.1.14,192.168.1.15', '', '', '']] + assert table == expected_output + + table =[] + row = ["Vnet_v6_in_v6-0", "fddd:a156:a251::a6:1/128"] + epval = "192.168.1.1" + vnet.pretty_print(table, row, epval, mac_addr, vni, state) + expected_output =[ + ['Vnet_v6_in_v6-0', 'fddd:a156:a251::a6:1/128', '192.168.1.1', '', '', 'active']] + assert table == expected_output + + def test_show_vnet_routes_all_basic(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands['vnet'].commands['routes'].commands['all'], [], obj=db) + assert result.exit_code == 0 + expected_output = """\ +vnet name prefix nexthop interface +----------- -------- --------- ----------- + +vnet name prefix endpoint mac address vni status +--------------- ------------------------ ------------------------------------------- ------------- ----- -------- +Vnet_v6_in_v6-0 fddd:a156:a251::a6:1/128 fddd:a100:a251::a10:1,fddd:a101:a251::a10:1 active + fddd:a102:a251::a10:1,fddd:a103:a251::a10:1 +test_v4_in_v4-0 160.162.191.1/32 100.251.7.1 active +test_v4_in_v4-0 160.163.191.1/32 100.251.7.1 active +test_v4_in_v4-0 160.164.191.1/32 100.251.7.1 +""" + assert result.output == expected_output + +class TestShowVnetAdvertisedRoutesIPX(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_show_vnet_adv_routes_ip_basic(self): + runner = CliRunner() + db = Db() + result = runner.invoke(show.cli.commands['vnet'].commands['advertised-routes'], [], obj=db) + assert result.exit_code == 0 + expected_output = """\ +Prefix Profile Community Id +------------------------ ------------------- -------------- +160.62.191.1/32 FROM_SDN_SLB_ROUTES 1234:1235 +160.63.191.1/32 FROM_SDN_SLB_ROUTES 1234:1235 +160.64.191.1/32 FROM_SDN_SLB_ROUTES 1234:1235 +fccc:a250:a251::a6:1/128 +fddd:a150:a251::a6:1/128 FROM_SDN_SLB_ROUTES 1234:1235 +""" + assert result.output == expected_output + + def test_show_vnet_adv_routes_ip_string(self): + runner = CliRunner() + db = Db() + result = runner.invoke(show.cli.commands['vnet'].commands['advertised-routes'], ['1234:1235'], obj=db) + assert result.exit_code == 0 + expected_output = """\ +Prefix Profile Community Id +------------------------ ------------------- -------------- +160.62.191.1/32 FROM_SDN_SLB_ROUTES 1234:1235 +160.63.191.1/32 FROM_SDN_SLB_ROUTES 1234:1235 +160.64.191.1/32 FROM_SDN_SLB_ROUTES 1234:1235 +fddd:a150:a251::a6:1/128 FROM_SDN_SLB_ROUTES 1234:1235 +""" + assert result.output == expected_output + + def test_show_vnet_adv_routes_ipv6_Error(self): + runner = CliRunner() + db = Db() + result = runner.invoke(show.cli.commands['vnet'].commands['advertised-routes'], ['1230:1235'], obj=db) + assert result.exit_code == 0 + expected_output = """\ +Prefix Profile Community Id +-------- --------- -------------- +""" + assert result.output == expected_output diff --git a/tests/show_vnet_vxlan_cli_test.py b/tests/show_vnet_vxlan_cli_test.py new file mode 100644 index 000000000..c9aa5b622 --- /dev/null +++ b/tests/show_vnet_vxlan_cli_test.py @@ -0,0 +1,56 @@ +import os +import sys +import traceback +import mock_tables.dbconnector +from click.testing import CliRunner +from unittest import mock +from utilities_common.db import Db +import show.main as show + +#test_path = os.path.dirname(os.path.abspath(__file__)) + +class TestShowVnet(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_show_vnet_endpoint(self): + runner = CliRunner() + db = Db() + result = runner.invoke(show.cli.commands['vnet'].commands['endpoint'], [], obj=db) + assert result.exit_code == 0 + expected_output = """\ +Endpoint Endpoint Monitor prefix count status +--------------------- --------------------- -------------- -------- +fddd:a100:a251::a10:1 fddd:a100:a251::a10:1 1 Unknown +fddd:a101:a251::a10:1 fddd:a101:a251::a10:1 1 Down +fddd:a102:a251::a10:1 fddd:a102:a251::a10:1 1 Unknown +fddd:a103:a251::a10:1 fddd:a103:a251::a10:1 1 Unknown +100.251.7.1 100.251.7.1 3 Up +""" + assert result.output == expected_output + + def test_show_vnet_endpoint_ipv4(self): + runner = CliRunner() + db = Db() + result = runner.invoke(show.cli.commands['vnet'].commands['endpoint'], ['100.251.7.1'], obj=db) + assert result.exit_code == 0 + expected_output = """\ +Endpoint Endpoint Monitor prefix status +----------- ------------------ ------------------------------------------------------------ -------- +100.251.7.1 ['100.251.7.1'] ['160.162.191.1/32', '160.163.191.1/32', '160.164.191.1/32'] Up +""" + assert result.output == expected_output + + def test_show_vnet_endpoint_ipv6(self): + runner = CliRunner() + db = Db() + result = runner.invoke(show.cli.commands['vnet'].commands['endpoint'], ['fddd:a101:a251::a10:1'], obj=db) + assert result.exit_code == 0 + expected_output = """\ +Endpoint Endpoint Monitor prefix status +--------------------- ------------------------- ---------------------------- -------- +fddd:a101:a251::a10:1 ['fddd:a101:a251::a10:1'] ['fddd:a156:a251::a6:1/128'] Down +""" + assert result.output == expected_output diff --git a/tests/show_vrf_test.py b/tests/show_vrf_test.py deleted file mode 100644 index 3c6d1c5b3..000000000 --- a/tests/show_vrf_test.py +++ /dev/null @@ -1,39 +0,0 @@ -import os -import sys -from click.testing import CliRunner -from swsscommon.swsscommon import SonicV2Connector -from utilities_common.db import Db - -import show.main as show - -test_path = os.path.dirname(os.path.abspath(__file__)) -mock_db_path = os.path.join(test_path, "vrf_input") - -class TestShowVrf(object): - @classmethod - def setup_class(cls): - print("SETUP") - os.environ["UTILITIES_UNIT_TESTING"] = "1" - - def test_vrf_show(self): - from .mock_tables import dbconnector - jsonfile_config = os.path.join(mock_db_path, "config_db") - dbconnector.dedicated_dbs['CONFIG_DB'] = jsonfile_config - runner = CliRunner() - db = Db() - expected_output = """\ -VRF Interfaces ------- --------------- -Vrf1 -Vrf101 Ethernet0.10 -Vrf102 PortChannel0002 - Vlan40 - Eth32.10 -Vrf103 Ethernet4 - Loopback0 -""" - - result = runner.invoke(show.cli.commands['vrf'], [], obj=db) - dbconnector.dedicated_dbs = {} - assert result.exit_code == 0 - assert result.output == expected_output diff --git a/tests/sonic_package_manager/test_manager.py b/tests/sonic_package_manager/test_manager.py index a1348514b..216721272 100644 --- a/tests/sonic_package_manager/test_manager.py +++ b/tests/sonic_package_manager/test_manager.py @@ -327,3 +327,31 @@ def test_manager_migration(package_manager, fake_db_for_migration): call('test-package-6=2.0.0')], any_order=True ) + + +def mock_get_docker_client(dockerd_sock): + class DockerClient: + def __init__(self, dockerd_sock): + class Image: + def __init__(self, image_id): + self.image_id = image_id + + def save(self, named): + return ["named: {}".format(named).encode()] + + image = Image("dummy_id") + self.images = { + "Azure/docker-test-3:1.6.0": image, + "Azure/docker-test-6:2.0.0": image + } + self.dockerd_sock = dockerd_sock + + return DockerClient(dockerd_sock) + + +def test_manager_migration_dockerd(package_manager, fake_db_for_migration, mock_docker_api): + package_manager.install = Mock() + package_manager.get_docker_client = Mock(side_effect=mock_get_docker_client) + package_manager.migrate_packages(fake_db_for_migration, '/var/run/docker.sock') + package_manager.get_docker_client.assert_has_calls([ + call('/var/run/docker.sock')], any_order=True) diff --git a/tests/sonic_package_manager/test_service_creator.py b/tests/sonic_package_manager/test_service_creator.py index c94328936..7ca2e4f78 100644 --- a/tests/sonic_package_manager/test_service_creator.py +++ b/tests/sonic_package_manager/test_service_creator.py @@ -308,7 +308,7 @@ def get_entry(cls, table, key): @classmethod def get_entry_running_cfg(cls, table, key): if table == "AUTO_TECHSUPPORT_FEATURE" and key == "test": - return {"state" : "disabled", "rate_limit_interval" : "1000"} + return {"state" : "disabled", "rate_limit_interval" : "1000", "available_mem_threshold": "20.0"} else: return {} @@ -323,7 +323,8 @@ def test_auto_ts_global_disabled(mock_sonic_db, manifest): feature_registry.register(manifest) mock_init_cfg.set_entry.assert_any_call("AUTO_TECHSUPPORT_FEATURE", "test", { "state" : "disabled", - "rate_limit_interval" : "600" + "rate_limit_interval" : "600", + "available_mem_threshold": "10.0" } ) @@ -338,7 +339,8 @@ def test_auto_ts_global_enabled(mock_sonic_db, manifest): feature_registry.register(manifest) mock_init_cfg.set_entry.assert_any_call("AUTO_TECHSUPPORT_FEATURE", "test", { "state" : "enabled", - "rate_limit_interval" : "600" + "rate_limit_interval" : "600", + "available_mem_threshold": "10.0" } ) @@ -377,7 +379,8 @@ def test_auto_ts_feature_update_flow(mock_sonic_db, manifest): call("AUTO_TECHSUPPORT_FEATURE", "test", None), call("AUTO_TECHSUPPORT_FEATURE", "test_new", { "state" : "enabled", - "rate_limit_interval" : "600" + "rate_limit_interval" : "600", + "available_mem_threshold": "10.0" }) ], any_order = True @@ -388,7 +391,8 @@ def test_auto_ts_feature_update_flow(mock_sonic_db, manifest): call("AUTO_TECHSUPPORT_FEATURE", "test", None), call("AUTO_TECHSUPPORT_FEATURE", "test_new", { "state" : "disabled", - "rate_limit_interval" : "1000" + "rate_limit_interval" : "1000", + "available_mem_threshold": "20.0" }) ], any_order = True diff --git a/tests/static_routes_test.py b/tests/static_routes_test.py index 5704844ae..da8a4ea97 100644 --- a/tests/static_routes_test.py +++ b/tests/static_routes_test.py @@ -45,8 +45,8 @@ def test_simple_static_route(self): result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "1.2.3.4/32", "nexthop", "30.0.0.5"], obj=obj) print(result.exit_code, result.output) - assert ('1.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '1.2.3.4/32') == {'nexthop': '30.0.0.5', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} + assert ('default', '1.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|1.2.3.4/32') == {'nexthop': '30.0.0.5', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} # config route del prefix 1.2.3.4/32 nexthop 30.0.0.5 result = runner.invoke(config.config.commands["route"].commands["del"], \ @@ -93,6 +93,8 @@ def test_vrf_static_route(self): obj = {'config_db':db.cfgdb} # config route add prefix vrf Vrf-BLUE 2.2.3.4/32 nexthop 30.0.0.6 + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf-BLUE"], obj=obj) + print(result.exit_code, result.output) result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "vrf", "Vrf-BLUE", "2.2.3.4/32", "nexthop", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) @@ -111,11 +113,14 @@ def test_dest_vrf_static_route(self): obj = {'config_db':db.cfgdb} # config route add prefix 3.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.6 + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf-RED"], obj=obj) + print(result.exit_code, result.output) result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "3.2.3.4/32", "nexthop", "vrf", "Vrf-RED", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert ('3.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '3.2.3.4/32') == {'nexthop': '30.0.0.6', 'nexthop-vrf': 'Vrf-RED', 'blackhole': 'false', 'distance': '0', 'ifname': ''} + print(db.cfgdb.get_table('STATIC_ROUTE')) + assert ('default', '3.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|3.2.3.4/32') == {'nexthop': '30.0.0.6', 'nexthop-vrf': 'Vrf-RED', 'blackhole': 'false', 'distance': '0', 'ifname': ''} # config route del prefix 3.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["del"], \ @@ -129,26 +134,28 @@ def test_multiple_nexthops_with_vrf_static_route(self): obj = {'config_db':db.cfgdb} ''' Add ''' + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf-RED"], obj=obj) + print(result.exit_code, result.output) # config route add prefix 6.2.3.4/32 nexthop vrf Vrf-RED "30.0.0.6,30.0.0.7" result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "6.2.3.4/32", "nexthop", "vrf", "Vrf-RED", "30.0.0.6,30.0.0.7"], obj=obj) print(result.exit_code, result.output) - assert ('6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '6.2.3.4/32') == {'nexthop': '30.0.0.6,30.0.0.7', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ',', 'nexthop-vrf': 'Vrf-RED,Vrf-RED'} + assert ('default', '6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|6.2.3.4/32') == {'nexthop': '30.0.0.6,30.0.0.7', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ',', 'nexthop-vrf': 'Vrf-RED,Vrf-RED'} ''' Del ''' # config route del prefix 6.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.7 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "6.2.3.4/32", "nexthop", "vrf", "Vrf-RED", "30.0.0.7"], obj=obj) print(result.exit_code, result.output) - assert ('6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '6.2.3.4/32') == {'nexthop': '30.0.0.6', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': 'Vrf-RED'} + assert ('default', '6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|6.2.3.4/32') == {'nexthop': '30.0.0.6', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': 'Vrf-RED'} # config route del prefix 6.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "6.2.3.4/32", "nexthop", "vrf", "Vrf-RED", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert not ('6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert not ('default', '6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') def test_multiple_nexthops_static_route(self): db = Db() @@ -160,30 +167,30 @@ def test_multiple_nexthops_static_route(self): result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "6.2.3.4/32", "nexthop", "30.0.0.6,30.0.0.7"], obj=obj) print(result.exit_code, result.output) - assert ('6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '6.2.3.4/32') == {'nexthop': '30.0.0.6,30.0.0.7', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ',', 'nexthop-vrf': ','} + assert ('default', '6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|6.2.3.4/32') == {'nexthop': '30.0.0.6,30.0.0.7', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ',', 'nexthop-vrf': ','} # config route add prefix 6.2.3.4/32 nexthop 30.0.0.8 result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "6.2.3.4/32", "nexthop", "30.0.0.8"], obj=obj) print(result.exit_code, result.output) - assert ('6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '6.2.3.4/32') == {'nexthop': '30.0.0.6,30.0.0.7,30.0.0.8', 'blackhole': 'false,false,false', 'distance': '0,0,0', 'ifname': ',,', 'nexthop-vrf': ',,'} + assert ('default', '6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|6.2.3.4/32') == {'nexthop': '30.0.0.6,30.0.0.7,30.0.0.8', 'blackhole': 'false,false,false', 'distance': '0,0,0', 'ifname': ',,', 'nexthop-vrf': ',,'} ''' Del ''' # config route del prefix 6.2.3.4/32 nexthop 30.0.0.8 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "6.2.3.4/32", "nexthop", "30.0.0.8"], obj=obj) print(result.exit_code, result.output) - assert ('6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '6.2.3.4/32') == {"nexthop": '30.0.0.6,30.0.0.7', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ',', 'nexthop-vrf': ','} + assert ('default', '6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|6.2.3.4/32') == {"nexthop": '30.0.0.6,30.0.0.7', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ',', 'nexthop-vrf': ','} # config route del prefix 6.2.3.4/32 nexthop 30.0.0.7 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "6.2.3.4/32", "nexthop", "30.0.0.7"], obj=obj) print(result.exit_code, result.output) - assert ('6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '6.2.3.4/32') == {'nexthop': '30.0.0.6', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} + assert ('default', '6.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|6.2.3.4/32') == {'nexthop': '30.0.0.6', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} # config route del prefix 6.2.3.4/32 nexthop 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["del"], \ @@ -221,23 +228,23 @@ def test_static_route_ECMP_nexthop(self): result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "10.2.3.4/32", "nexthop", "30.0.0.5"], obj=obj) print(result.exit_code, result.output) - assert ('10.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '10.2.3.4/32') == {'nexthop': '30.0.0.5', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} + assert ('default', '10.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|10.2.3.4/32') == {'nexthop': '30.0.0.5', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} # config route add prefix 10.2.3.4/32 nexthop 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "10.2.3.4/32", "nexthop", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert ('10.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '10.2.3.4/32') == {'nexthop': '30.0.0.5,30.0.0.6', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ',', 'nexthop-vrf': ','} + assert ('default', '10.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|10.2.3.4/32') == {'nexthop': '30.0.0.5,30.0.0.6', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ',', 'nexthop-vrf': ','} ''' Del ''' # config route del prefix 10.2.3.4/32 nexthop 30.0.0.5 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "10.2.3.4/32", "nexthop", "30.0.0.5"], obj=obj) print(result.exit_code, result.output) - assert ('10.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '10.2.3.4/32') == {'nexthop': '30.0.0.6', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} + assert ('default', '10.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|10.2.3.4/32') == {'nexthop': '30.0.0.6', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} # config route del prefix 1.2.3.4/32 nexthop 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["del"], \ @@ -251,33 +258,37 @@ def test_static_route_ECMP_nexthop_with_vrf(self): obj = {'config_db':db.cfgdb} ''' Add ''' + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf-RED"], obj=obj) + print(result.exit_code, result.output) # config route add prefix 11.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.5 result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "11.2.3.4/32", "nexthop", "vrf", "Vrf-RED", "30.0.0.5"], obj=obj) print(result.exit_code, result.output) - assert ('11.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '11.2.3.4/32') == {'nexthop': '30.0.0.5', 'nexthop-vrf': 'Vrf-RED', 'blackhole': 'false', 'distance': '0', 'ifname': ''} + assert ('default', '11.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|11.2.3.4/32') == {'nexthop': '30.0.0.5', 'nexthop-vrf': 'Vrf-RED', 'blackhole': 'false', 'distance': '0', 'ifname': ''} + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf-BLUE"], obj=obj) + print(result.exit_code, result.output) # config route add prefix 11.2.3.4/32 nexthop vrf Vrf-BLUE 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "11.2.3.4/32", "nexthop", "vrf", "Vrf-BLUE", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert ('11.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '11.2.3.4/32') == {"nexthop": "30.0.0.5,30.0.0.6", "nexthop-vrf": "Vrf-RED,Vrf-BLUE", 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ','} + assert ('default', '11.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|11.2.3.4/32') == {"nexthop": "30.0.0.5,30.0.0.6", "nexthop-vrf": "Vrf-RED,Vrf-BLUE", 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ','} ''' Del ''' # config route del prefix 11.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.5 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "11.2.3.4/32", "nexthop", "vrf", "Vrf-RED", "30.0.0.5"], obj=obj) print(result.exit_code, result.output) - assert ('11.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '11.2.3.4/32') == {"nexthop": "30.0.0.6", "nexthop-vrf": "Vrf-BLUE", 'blackhole': 'false', 'distance': '0', 'ifname': ''} + assert ('default', '11.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|11.2.3.4/32') == {"nexthop": "30.0.0.6", "nexthop-vrf": "Vrf-BLUE", 'blackhole': 'false', 'distance': '0', 'ifname': ''} # config route del prefix 11.2.3.4/32 nexthop vrf Vrf-BLUE 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "11.2.3.4/32", "nexthop", "vrf", "Vrf-BLUE", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert not ('11.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert not ('default', '11.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') def test_static_route_ECMP_mixed_nextfop(self): db = Db() @@ -289,29 +300,31 @@ def test_static_route_ECMP_mixed_nextfop(self): result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "12.2.3.4/32", "nexthop", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert ('12.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '12.2.3.4/32') == {'nexthop': '30.0.0.6', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} + assert ('default', '12.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|12.2.3.4/32') == {'nexthop': '30.0.0.6', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf-RED"], obj=obj) + print(result.exit_code, result.output) # config route add prefix 12.2.3.4/32 nexthop vrf Vrf-RED 30.0.0.7 result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "12.2.3.4/32", "nexthop", "vrf", "Vrf-RED", "30.0.0.7"], obj=obj) print(result.exit_code, result.output) - assert ('12.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '12.2.3.4/32') == {'nexthop': '30.0.0.6,30.0.0.7', 'nexthop-vrf': ',Vrf-RED', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ','} + assert ('default', '12.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|12.2.3.4/32') == {'nexthop': '30.0.0.6,30.0.0.7', 'nexthop-vrf': ',Vrf-RED', 'blackhole': 'false,false', 'distance': '0,0', 'ifname': ','} ''' Del ''' # config route del prefix 12.2.3.4/32 nexthop vrf Vrf-Red 30.0.0.7 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "12.2.3.4/32", "nexthop", "vrf", "Vrf-RED", "30.0.0.7"], obj=obj) print(result.exit_code, result.output) - assert ('12.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '12.2.3.4/32') == {'nexthop': '30.0.0.6', 'nexthop-vrf': '', 'ifname': '', 'blackhole': 'false', 'distance': '0'} + assert ('default', '12.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|12.2.3.4/32') == {'nexthop': '30.0.0.6', 'nexthop-vrf': '', 'ifname': '', 'blackhole': 'false', 'distance': '0'} # config route del prefix 12.2.3.4/32 nexthop 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "12.2.3.4/32", "nexthop", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert not ('12.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert not ('default', '12.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') def test_del_nonexist_key_static_route(self): db = Db() @@ -322,7 +335,7 @@ def test_del_nonexist_key_static_route(self): result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "17.2.3.4/32", "nexthop", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert ERROR_DEL_NONEXIST_KEY_STR.format("17.2.3.4/32") in result.output + assert ERROR_DEL_NONEXIST_KEY_STR.format("default|17.2.3.4/32") in result.output def test_del_nonexist_entry_static_route(self): db = Db() @@ -333,20 +346,20 @@ def test_del_nonexist_entry_static_route(self): result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "13.2.3.4/32", "nexthop", "30.0.0.5"], obj=obj) print(result.exit_code, result.output) - assert ('13.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '13.2.3.4/32') == {'nexthop': '30.0.0.5', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} + assert ('default', '13.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|13.2.3.4/32') == {'nexthop': '30.0.0.5', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} # config route del prefix 13.2.3.4/32 nexthop 30.0.0.6 <- nh ip that doesnt exist result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "13.2.3.4/32", "nexthop", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert ERROR_DEL_NONEXIST_ENTRY_STR.format(('30.0.0.6', '', ''), "13.2.3.4/32") in result.output + assert ERROR_DEL_NONEXIST_ENTRY_STR.format(('30.0.0.6', '', ''), "default|13.2.3.4/32") in result.output # config route del prefix 13.2.3.4/32 nexthop 30.0.0.5 result = runner.invoke(config.config.commands["route"].commands["del"], \ ["prefix", "13.2.3.4/32", "nexthop", "30.0.0.5"], obj=obj) print(result.exit_code, result.output) - assert not '13.2.3.4/32' in db.cfgdb.get_table('STATIC_ROUTE') + assert not ('default', '13.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') def test_del_entire_ECMP_static_route(self): db = Db() @@ -357,20 +370,51 @@ def test_del_entire_ECMP_static_route(self): result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "14.2.3.4/32", "nexthop", "30.0.0.5"], obj=obj) print(result.exit_code, result.output) - assert ('14.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '14.2.3.4/32') == {'nexthop': '30.0.0.5', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} + assert ('default', '14.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|14.2.3.4/32') == {'nexthop': '30.0.0.5', 'blackhole': 'false', 'distance': '0', 'ifname': '', 'nexthop-vrf': ''} # config route add prefix 14.2.3.4/32 nexthop 30.0.0.6 result = runner.invoke(config.config.commands["route"].commands["add"], \ ["prefix", "14.2.3.4/32", "nexthop", "30.0.0.6"], obj=obj) print(result.exit_code, result.output) - assert ('14.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') - assert db.cfgdb.get_entry('STATIC_ROUTE', '14.2.3.4/32') == {'nexthop': '30.0.0.5,30.0.0.6', 'nexthop-vrf': ',', 'ifname': ',', 'blackhole': 'false,false', 'distance': '0,0'} + assert ('default', '14.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|14.2.3.4/32') == {'nexthop': '30.0.0.5,30.0.0.6', 'nexthop-vrf': ',', 'ifname': ',', 'blackhole': 'false,false', 'distance': '0,0'} # config route del prefix 14.2.3.4/32 result = runner.invoke(config.config.commands["route"].commands["del"], ["prefix", "14.2.3.4/32"], obj=obj) print(result.exit_code, result.output) - assert not '14.2.3.4/32' in db.cfgdb.get_table('STATIC_ROUTE') + assert not ('default', '14.2.3.4/32') in db.cfgdb.get_table('STATIC_ROUTE') + + def test_static_route_nexthop_subinterface(self): + db = Db() + runner = CliRunner() + obj = {'config_db':db.cfgdb} + + # config route add prefix 2.2.3.5/32 nexthop dev Ethernet0.10 + result = runner.invoke(config.config.commands["route"].commands["add"], \ + ["prefix", "2.2.3.5/32", "nexthop", "dev", "Ethernet0.10"], obj=obj) + print(result.exit_code, result.output) + assert ('default', '2.2.3.5/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|2.2.3.5/32') == {'nexthop': '', 'blackhole': 'false', 'distance': '0', 'ifname': 'Ethernet0.10', 'nexthop-vrf': ''} + + # config route del prefix 2.2.3.5/32 nexthop dev Ethernet0.10 + result = runner.invoke(config.config.commands["route"].commands["del"], \ + ["prefix", "2.2.3.5/32", "nexthop", "dev", "Ethernet0.10"], obj=obj) + print(result.exit_code, result.output) + assert not ('default', '2.2.3.5/32') in db.cfgdb.get_table('STATIC_ROUTE') + + # config route add prefix 2.2.3.5/32 nexthop dev Eth36.10 + result = runner.invoke(config.config.commands["route"].commands["add"], \ + ["prefix", "2.2.3.5/32", "nexthop", "dev", "Eth36.10"], obj=obj) + print(result.exit_code, result.output) + assert ('default', '2.2.3.5/32') in db.cfgdb.get_table('STATIC_ROUTE') + assert db.cfgdb.get_entry('STATIC_ROUTE', 'default|2.2.3.5/32') == {'nexthop': '', 'blackhole': 'false', 'distance': '0', 'ifname': 'Eth36.10', 'nexthop-vrf': ''} + + # config route del prefix 2.2.3.5/32 nexthop dev Eth36.10 + result = runner.invoke(config.config.commands["route"].commands["del"], \ + ["prefix", "2.2.3.5/32", "nexthop", "dev", "Eth36.10"], obj=obj) + print(result.exit_code, result.output) + assert not ('default', '2.2.3.5/32') in db.cfgdb.get_table('STATIC_ROUTE') @classmethod def teardown_class(cls): diff --git a/tests/subintf_test.py b/tests/subintf_test.py new file mode 100644 index 000000000..c69d87572 --- /dev/null +++ b/tests/subintf_test.py @@ -0,0 +1,231 @@ +import os +import traceback + +from click.testing import CliRunner + +import config.main as config +import show.main as show +from utilities_common.db import Db + +SUB_INTF_ON_LAG_MEMBER_ERR="""\ +Usage: add [OPTIONS] +Try "add --help" for help. + +Error: Ethernet32 is configured as a member of portchannel. Cannot configure subinterface +""" + +class TestSubinterface(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "1" + print("SETUP") + + def test_add_del_subintf_short_name(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Eth0.102", "1002"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Eth0.102') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Eth0.102']['vlan'] == '1002' + assert db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Eth0.102']['admin_status'] == 'up' + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Po0004.104", "1004"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Po0004.104') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Po0004.104']['vlan'] == '1004' + assert db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Po0004.104']['admin_status'] == 'up' + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Eth0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Eth0.102') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Po0004.104"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Po0004.104') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + def test_add_del_subintf_with_long_name(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Ethernet0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Ethernet0.102') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Ethernet0.102']['admin_status'] == 'up' + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["PortChannel0004.104"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('PortChannel0004.104') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert db.cfgdb.get_table('VLAN_SUB_INTERFACE')['PortChannel0004.104']['admin_status'] == 'up' + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Ethernet0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Ethernet0.102') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["PortChannel0004.104"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('PortChannel0004.104') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + + def test_add_existing_subintf_again(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Ethernet0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Ethernet0.102') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Ethernet0.102']['admin_status'] == 'up' + + #Check if same long format subintf creation is rejected + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Ethernet0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + #Check if same short format subintf creation with same encap vlan is rejected + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Eth0.1002", "102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert ('Eth0.1002') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + + def test_delete_non_existing_subintf(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Ethernet0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Eth0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["PortChannel0004.104"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Po0004.104"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + def test_invalid_subintf_creation(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Ethernet1000.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["PortChannel0008.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Ethe0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + #Short format subintf without encap vlan should be rejected + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Eth0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Po0004.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + def test_subintf_creation_on_lag_member(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Ethernet32.10"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert(result.output == SUB_INTF_ON_LAG_MEMBER_ERR) + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Eth32.20"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert(result.output == SUB_INTF_ON_LAG_MEMBER_ERR) + + def test_subintf_vrf_bind_unbind(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Ethernet0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Ethernet0.102') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + assert db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Ethernet0.102']['admin_status'] == 'up' + + vrf_obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet0.102", "Vrf1"], obj=vrf_obj) + assert result.exit_code == 0 + assert ('Vrf1') in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Ethernet0.102']['vrf_name'] + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet0.102"], obj=vrf_obj) + assert result.exit_code == 0 + assert ('vrf_name') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Ethernet0.102'] + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Ethernet0.102"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Ethernet0.102') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + #shut name subintf vrf bind unbind check + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Eth0.1002", "2002"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Eth0.1002') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Eth0.1002", "Vrf1"], obj=vrf_obj) + assert result.exit_code == 0 + assert ('Vrf1') in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Eth0.1002']['vrf_name'] + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Eth0.1002"], obj=vrf_obj) + assert result.exit_code == 0 + assert ('vrf_name') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Eth0.1002'] + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Eth0.1002"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Eth0.1002') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + #Po subintf vrf bind unbind check + result = runner.invoke(config.config.commands["subinterface"].commands["add"], ["Po0004.1004", "2004"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Po0004.1004') in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Po0004.1004", "Vrf1"], obj=vrf_obj) + assert result.exit_code == 0 + assert ('Vrf1') in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Po0004.1004']['vrf_name'] + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Po0004.1004"], obj=vrf_obj) + assert result.exit_code == 0 + assert ('vrf_name') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Po0004.1004'] + + result = runner.invoke(config.config.commands["subinterface"].commands["del"], ["Po0004.1004"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('Po0004.1004') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE') + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + print("TEARDOWN") diff --git a/tests/techsupport_test.py b/tests/techsupport_test.py index 64bc13362..8effa8988 100644 --- a/tests/techsupport_test.py +++ b/tests/techsupport_test.py @@ -3,18 +3,18 @@ from unittest.mock import patch, Mock from click.testing import CliRunner -EXPECTED_BASE_COMMAND = 'sudo timeout --kill-after=300s -s SIGTERM --foreground ' +EXPECTED_BASE_COMMAND = 'sudo ' @patch("show.main.run_command") @pytest.mark.parametrize( "cli_arguments,expected", [ - ([], '30m generate_dump -v -t 5'), - (['--since', '2 days ago'], "30m generate_dump -v -s '2 days ago' -t 5"), - (['-g', '50'], '50m generate_dump -v -t 5'), - (['--allow-process-stop'], '30m -a generate_dump -v -t 5'), - (['--silent'], '30m generate_dump -t 5'), - (['--debug-dump', '--redirect-stderr'], '30m generate_dump -v -d -t 5 -r'), + ([], 'generate_dump -v -t 5'), + (['--since', '2 days ago'], "generate_dump -v -s '2 days ago' -t 5"), + (['-g', '50'], 'timeout --kill-after=300s -s SIGTERM --foreground 50m generate_dump -v -t 5'), + (['--allow-process-stop'], '-a generate_dump -v -t 5'), + (['--silent'], 'generate_dump -t 5'), + (['--debug-dump', '--redirect-stderr'], 'generate_dump -v -d -t 5 -r'), ] ) def test_techsupport(run_command, cli_arguments, expected): diff --git a/tests/test_sonic_installer.py b/tests/test_sonic_installer.py new file mode 100644 index 000000000..c445dfb6e --- /dev/null +++ b/tests/test_sonic_installer.py @@ -0,0 +1,116 @@ +import os +from contextlib import contextmanager +from sonic_installer.main import sonic_installer +from click.testing import CliRunner +from unittest.mock import patch, Mock, call + +@patch("sonic_installer.main.SWAPAllocator") +@patch("sonic_installer.main.get_bootloader") +@patch("sonic_installer.main.run_command_or_raise") +@patch("sonic_installer.main.run_command") +def test_install(run_command, run_command_or_raise, get_bootloader, swap, fs): + """ This test covers the execution of "sonic-installer install" command. """ + + sonic_image_filename = "sonic.bin" + current_image_version = "image_1" + new_image_version = "image_2" + new_image_folder = f"/images/{new_image_version}" + image_docker_folder = os.path.join(new_image_folder, "docker") + mounted_image_folder = f"/tmp/image-{new_image_version}-fs" + dockerd_opts = ["--iptables=false", "--bip=1.1.1.1/24"] + + # Setup mock files needed for our test scenario + fs.create_file(sonic_image_filename) + fs.create_dir(image_docker_folder) + fs.create_dir(os.path.join(mounted_image_folder, "usr/lib/docker/docker.sh")) + fs.create_file("/var/run/docker.pid", contents="15") + fs.create_file("/proc/15/cmdline", contents="\x00".join(["dockerd"] + dockerd_opts)) + + # Setup bootloader mock + mock_bootloader = Mock() + mock_bootloader.get_binary_image_version = Mock(return_value=new_image_version) + mock_bootloader.get_installed_images = Mock(return_value=[current_image_version]) + mock_bootloader.get_image_path = Mock(return_value=new_image_folder) + + @contextmanager + def rootfs_path_mock(path): + yield mounted_image_folder + + mock_bootloader.get_rootfs_path = rootfs_path_mock + get_bootloader.return_value=mock_bootloader + + # Invoke CLI command + runner = CliRunner() + result = runner.invoke(sonic_installer.commands["install"], [sonic_image_filename, "-y"]) + print(result.output) + + assert result.exit_code == 0 + + # Assert bootloader install API was called + mock_bootloader.install_image.assert_called_with(f"./{sonic_image_filename}") + # Assert all below commands were called, so we ensure that + # 1. update SONiC environment works + # 2. package migration works + expected_call_list = [ + call(["mkdir", "-p", mounted_image_folder]), + call(["mount", "-t", "squashfs", mounted_image_folder, mounted_image_folder]), + call(["sonic-cfggen", "-d", "-y", f"{mounted_image_folder}/etc/sonic/sonic_version.yml", "-t", f"{mounted_image_folder}/usr/share/sonic/templates/sonic-environment.j2"]), + call(["umount", "-r", "-f", mounted_image_folder], raise_exception=True), + call(["rm", "-rf", mounted_image_folder], raise_exception=True), + call(["mkdir", "-p", mounted_image_folder]), + call(["mount", "-t", "squashfs", mounted_image_folder, mounted_image_folder]), + call(["mkdir", "-p", f"{new_image_folder}/rw"]), + call(["mkdir", "-p", f"{new_image_folder}/work"]), + call(["mkdir", "-p", mounted_image_folder]), + call(["mount", "overlay", "-t", "overlay", "-o", f"rw,relatime,lowerdir={mounted_image_folder},upperdir={new_image_folder}/rw,workdir={new_image_folder}/work", mounted_image_folder]), + call(["mkdir", "-p", f"{mounted_image_folder}/var/lib/docker"]), + call(["mount", "--bind", f"{new_image_folder}/docker", f"{mounted_image_folder}/var/lib/docker"]), + call(["chroot", mounted_image_folder, "mount", "proc", "/proc", "-t", "proc"]), + call(["chroot", mounted_image_folder, "mount", "sysfs", "/sys", "-t", "sysfs"]), + call(["cp", f"{mounted_image_folder}/etc/default/docker", f"{mounted_image_folder}/tmp/docker_config_backup"]), + call(["sh", "-c", f"echo 'DOCKER_OPTS=\"$DOCKER_OPTS {' '.join(dockerd_opts)}\"' >> {mounted_image_folder}/etc/default/docker"]), # dockerd started with added options as host dockerd + call(["chroot", mounted_image_folder, "/usr/lib/docker/docker.sh", "start"]), + call(["cp", "/var/lib/sonic-package-manager/packages.json", f"{mounted_image_folder}/tmp/packages.json"]), + call(["touch", f"{mounted_image_folder}/tmp/docker.sock"]), + call(["mount", "--bind", "/var/run/docker.sock", f"{mounted_image_folder}/tmp/docker.sock"]), + call(["cp", f"{mounted_image_folder}/etc/resolv.conf", "/tmp/resolv.conf.backup"]), + call(["cp", "/etc/resolv.conf", f"{mounted_image_folder}/etc/resolv.conf"]), + call(["chroot", mounted_image_folder, "sh", "-c", "command -v sonic-package-manager"]), + call(["chroot", mounted_image_folder, "sonic-package-manager", "migrate", "/tmp/packages.json", "--dockerd-socket", "/tmp/docker.sock", "-y"]), + call(["chroot", mounted_image_folder, "/usr/lib/docker/docker.sh", "stop"], raise_exception=False), + call(["cp", "/tmp/resolv.conf.backup", f"{mounted_image_folder}/etc/resolv.conf"], raise_exception=False), + call(["umount", "-f", "-R", mounted_image_folder], raise_exception=False), + call(["umount", "-r", "-f", mounted_image_folder], raise_exception=False), + call(["rm", "-rf", mounted_image_folder], raise_exception=False), + ] + assert run_command_or_raise.call_args_list == expected_call_list + +@patch("sonic_installer.main.get_bootloader") +def test_set_fips(get_bootloader): + """ This test covers the execution of "sonic-installer set-fips/get-fips" command. """ + + image = "image_1" + next_image = "image_2" + + # Setup bootloader mock + mock_bootloader = Mock() + mock_bootloader.get_next_image = Mock(return_value=next_image) + mock_bootloader.get_installed_images = Mock(return_value=[image, next_image]) + mock_bootloader.set_fips = Mock() + mock_bootloader.get_fips = Mock(return_value=False) + get_bootloader.return_value=mock_bootloader + + runner = CliRunner() + + # Test set-fips command options: --enable-fips/--disable-fips + result = runner.invoke(sonic_installer.commands["set-fips"], [next_image, '--enable-fips']) + assert 'Set FIPS' in result.output + result = runner.invoke(sonic_installer.commands["set-fips"], ['--disable-fips']) + assert 'Set FIPS' in result.output + + # Test command get-fips options + result = runner.invoke(sonic_installer.commands["get-fips"]) + assert "FIPS is disabled" in result.output + mock_bootloader.get_fips = Mock(return_value=True) + result = runner.invoke(sonic_installer.commands["get-fips"], [next_image]) + assert "FIPS is enabled" in result.output diff --git a/tests/vlan_test.py b/tests/vlan_test.py index a7f533a82..56ac18383 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -1,5 +1,6 @@ import os import traceback +import pytest from unittest import mock from click.testing import CliRunner @@ -8,6 +9,16 @@ import show.main as show from utilities_common.db import Db from importlib import reload +import utilities_common.bgp_util as bgp_util + +IP_VERSION_PARAMS_MAP = { + "ipv4": { + "table": "VLAN" + }, + "ipv6": { + "table": "DHCP_RELAY" + } +} show_vlan_brief_output="""\ +-----------+-----------------+-----------------+----------------+-------------+ @@ -142,17 +153,26 @@ | 4000 | | PortChannel1001 | tagged | disabled | +-----------+-----------------+-----------------+----------------+-------------+ """ + + class TestVlan(object): + _old_run_bgp_command = None @classmethod def setup_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "1" # ensure that we are working with single asic config + cls._old_run_bgp_command = bgp_util.run_bgp_command + bgp_util.run_bgp_command = mock.MagicMock( + return_value=cls.mock_run_bgp_command()) from .mock_tables import dbconnector from .mock_tables import mock_single_asic reload(mock_single_asic) dbconnector.load_namespace_config() print("SETUP") + def mock_run_bgp_command(): + return "" + def test_show_vlan(self): runner = CliRunner() result = runner.invoke(show.cli.commands["vlan"], []) @@ -311,7 +331,31 @@ def test_config_vlan_add_rif_portchannel_member(self): assert result.exit_code != 0 assert "Error: PortChannel0001 is a router interface!" in result.output - def test_config_vlan_del_vlan(self): + def test_config_vlan_with_vxlanmap_del_vlan(self, mock_restart_dhcp_relay_service): + runner = CliRunner() + db = Db() + obj = {'config_db': db.cfgdb} + + # create vlan + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1027"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # create vxlan map + result = runner.invoke(config.config.commands["vxlan"].commands["map"].commands["add"], ["vtep1", "1027", "11027"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # attempt to del vlan with vxlan map, should fail + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1027"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Error: vlan: 1027 can not be removed. First remove vxlan mapping" in result.output + + def test_config_vlan_del_vlan(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() obj = {'config_db':db.cfgdb} @@ -347,10 +391,12 @@ def test_config_vlan_del_vlan(self): print(result.output) assert result.exit_code == 0 - result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1000"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 + with mock.patch("config.vlan.delete_state_db_entry") as delete_state_db_entry: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1000"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + delete_state_db_entry.assert_called_once_with("Vlan1000") # show output result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) @@ -359,6 +405,27 @@ def test_config_vlan_del_vlan(self): assert result.exit_code == 0 assert result.output == show_vlan_brief_empty_output + def test_config_vlan_del_last_vlan(self): + runner = CliRunner() + db = Db() + db.cfgdb.delete_table("VLAN_MEMBER") + db.cfgdb.delete_table("VLAN_INTERFACE") + db.cfgdb.set_entry("VLAN", "Vlan2000", None) + db.cfgdb.set_entry("VLAN", "Vlan3000", None) + db.cfgdb.set_entry("VLAN", "Vlan4000", None) + + with mock.patch("utilities_common.cli.run_command", mock.Mock(return_value=("", 0))) as mock_run_command: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1000"], obj=db) + print(result.exit_code) + print(result.output) + mock_run_command.assert_has_calls([ + mock.call("docker exec -i swss supervisorctl status ndppd", ignore_error=True, return_cmd=True), + mock.call("docker exec -i swss supervisorctl stop ndppd", ignore_error=True, return_cmd=True), + mock.call("docker exec -i swss rm -f /etc/supervisor/conf.d/ndppd.conf", ignore_error=True, return_cmd=True), + mock.call("docker exec -i swss supervisorctl update", return_cmd=True) + ]) + assert result.exit_code == 0 + def test_config_vlan_del_nonexist_vlan_member(self): runner = CliRunner() @@ -369,7 +436,7 @@ def test_config_vlan_del_nonexist_vlan_member(self): assert result.exit_code != 0 assert "Error: Ethernet0 is not a member of Vlan1000" in result.output - def test_config_add_del_vlan_and_vlan_member(self): + def test_config_add_del_vlan_and_vlan_member(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() @@ -412,7 +479,7 @@ def test_config_add_del_vlan_and_vlan_member(self): assert result.exit_code == 0 assert result.output == show_vlan_brief_output - def test_config_add_del_vlan_and_vlan_member_in_alias_mode(self): + def test_config_add_del_vlan_and_vlan_member_in_alias_mode(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() @@ -490,16 +557,26 @@ def test_config_vlan_proxy_arp_with_nonexist_vlan_intf(self): assert "Interface Vlan1001 does not exist" in result.output def test_config_vlan_proxy_arp_enable(self): - runner = CliRunner() - db = Db() + mock_cli_returns = [("running", 0),("", 1)] + [("", 0)] * 4 + with mock.patch("utilities_common.cli.run_command", mock.Mock(side_effect=mock_cli_returns)) as mock_run_command: + runner = CliRunner() + db = Db() - result = runner.invoke(config.config.commands["vlan"].commands["proxy_arp"], ["1000", "enabled"], obj=db) + result = runner.invoke(config.config.commands["vlan"].commands["proxy_arp"], ["1000", "enabled"], obj=db) - print(result.exit_code) - print(result.output) + print(result.exit_code) + print(result.output) - assert result.exit_code == 0 - assert db.cfgdb.get_entry("VLAN_INTERFACE", "Vlan1000") == {"proxy_arp": "enabled"} + expected_calls = [mock.call("docker container inspect -f '{{.State.Status}}' swss", return_cmd=True), + mock.call('docker exec -i swss supervisorctl status ndppd', ignore_error=True, return_cmd=True), + mock.call('docker exec -i swss cp /usr/share/sonic/templates/ndppd.conf /etc/supervisor/conf.d/'), + mock.call('docker exec -i swss supervisorctl update', return_cmd=True), + mock.call('docker exec -i swss sonic-cfggen -d -t /usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf'), + mock.call('docker exec -i swss supervisorctl restart ndppd', return_cmd=True)] + mock_run_command.assert_has_calls(expected_calls) + + assert result.exit_code == 0 + assert db.cfgdb.get_entry("VLAN_INTERFACE", "Vlan1000") == {"proxy_arp": "enabled"} def test_config_vlan_proxy_arp_disable(self): runner = CliRunner() @@ -552,7 +629,134 @@ def test_config_vlan_add_member_of_portchannel(self): assert result.exit_code != 0 assert "Error: Ethernet32 is part of portchannel!" in result.output + @pytest.mark.parametrize("ip_version", ["ipv4", "ipv6"]) + def test_config_add_del_vlan_dhcp_relay_with_empty_entry(self, ip_version, mock_restart_dhcp_relay_service): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + exp_output = {"vlanid": "1001"} if ip_version == "ipv4" else {} + assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == exp_output + + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") as mock_handle_restart: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert "Vlan1001" not in db.cfgdb.get_keys(IP_VERSION_PARAMS_MAP[ip_version]["table"]) + assert "Restart service dhcp_relay failed with error" not in result.output + + @pytest.mark.parametrize("ip_version", ["ipv4", "ipv6"]) + def test_config_add_del_vlan_dhcp_relay_with_non_empty_entry(self, ip_version, mock_restart_dhcp_relay_service): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + exp_output = {"vlanid": "1001"} if ip_version == "ipv4" else {} + assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == exp_output + db.cfgdb.set_entry("DHCP_RELAY", "Vlan1001", {"dhcpv6_servers": ["fc02:2000::5"]}) + + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") as mock_handle_restart: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert "Vlan1001" not in db.cfgdb.get_keys(IP_VERSION_PARAMS_MAP[ip_version]["table"]) + mock_handle_restart.assert_called_once() + assert "Restart service dhcp_relay failed with error" not in result.output + + @pytest.mark.parametrize("ip_version", ["ipv4", "ipv6"]) + def test_config_add_del_vlan_with_dhcp_relay_not_running(self, ip_version): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + exp_output = {"vlanid": "1001"} if ip_version == "ipv4" else {} + assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == exp_output + + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") \ + as mock_restart_dhcp_relay_service: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert "Vlan1001" not in db.cfgdb.get_keys(IP_VERSION_PARAMS_MAP[ip_version]["table"]) + assert mock_restart_dhcp_relay_service.call_count == 0 + assert "Restarting DHCP relay service..." not in result.output + assert "Restart service dhcp_relay failed with error" not in result.output + + def test_config_add_del_vlan_with_not_restart_dhcp_relay_ipv6(self): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + db.cfgdb.set_entry("DHCP_RELAY", "Vlan1001", {"dhcpv6_servers": ["fc02:2000::5"]}) + + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") \ + as mock_restart_dhcp_relay_service: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001", "--no_restart_dhcp_relay"], + obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code != 0 + assert mock_restart_dhcp_relay_service.call_count == 0 + assert "Can't delete Vlan1001 because related DHCPv6 Relay config is exist" in result.output + + db.cfgdb.set_entry("DHCP_RELAY", "Vlan1001", None) + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") \ + as mock_restart_dhcp_relay_service: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001", "--no_restart_dhcp_relay"], + obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert mock_restart_dhcp_relay_service.call_count == 0 + + @pytest.mark.parametrize("ip_version", ["ipv6"]) + def test_config_add_exist_vlan_dhcp_relay(self, ip_version): + runner = CliRunner() + db = Db() + + db.cfgdb.set_entry("DHCP_RELAY", "Vlan1001", {"vlanid": "1001"}) + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "DHCPv6 relay config for Vlan1001 already exists" in result.output + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" + bgp_util.run_bgp_command = cls._old_run_bgp_command print("TEARDOWN") diff --git a/tests/vnet_input/config_db.json b/tests/vnet_input/config_db.json new file mode 100644 index 000000000..51a75b39c --- /dev/null +++ b/tests/vnet_input/config_db.json @@ -0,0 +1,10 @@ +{ + "VNET|Vnet_2000": { + "peer_list": "", + "vni": "2000", + "vxlan_tunnel": "tunnel1" + }, + "VXLAN_TUNNEL|tunnel1": { + "src_ip": "10.10.10.10" + } +} diff --git a/tests/vnet_route_check_test.py b/tests/vnet_route_check_test.py index 09f35761a..092a89e2f 100644 --- a/tests/vnet_route_check_test.py +++ b/tests/vnet_route_check_test.py @@ -27,7 +27,7 @@ VNET_ROUTE_TABLE = "VNET_ROUTE_TABLE" INTF_TABLE = "INTF_TABLE" ASIC_STATE = "ASIC_STATE" - +VNET_ROUTE_TUNNEL_TABLE = "VNET_ROUTE_TUNNEL_TABLE" RT_ENTRY_KEY_PREFIX = 'SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest":\"' RT_ENTRY_KEY_SUFFIX = '\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000d4b\"}' @@ -72,9 +72,6 @@ CNTR_DB: { "COUNTERS_RIF_NAME_MAP": { "Vlan3001": "oid:0x6000000000d76" } } - }, - RESULT: { - "results": {} } }, "1": { @@ -223,6 +220,91 @@ } } } + }, + "4": { + DESCR: "All tunnel routes are configured in both APP and ASIC DB", + ARGS: "vnet_route_check", + PRE: { + APPL_DB: { + VXLAN_TUNNEL_TABLE: { + "tunnel_v4": { "src_ip": "10.1.0.32" }, + "tunnel_v6": { "src_ip": "3001:2000::1" } + }, + VNET_TABLE: { + "Vnet_v4_in_v4-0": [("vxlan_tunnel", "tunnel_v4"), ("scope", "default"), ("vni", "10000"), ("peer_list", "")], + "Vnet_v6_in_v6-0": [("vxlan_tunnel", "tunnel_v6"), ("scope", "default"), ("vni", "10002"), ("peer_list", "")] + + }, + VNET_ROUTE_TUNNEL_TABLE: { + "Vnet_v4_in_v4-0:150.62.191.1/32" : { "endpoint" : "100.251.7.1,100.251.7.2" }, + "Vnet_v6_in_v6-0:fd01:fc00::1/128" : { "endpoint" : "fc02:1000::1,fc02:1000::2" } + + } + }, + ASIC_DB: { + "ASIC_STATE:SAI_OBJECT_TYPE_VIRTUAL_ROUTER": { + "oid:0x3000000000d4b" : { "":"" } + }, + ASIC_STATE: { + RT_ENTRY_KEY_PREFIX + "150.62.191.1/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "fd01:fc00::1/128" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + "5": { + DESCR: "Tunnel route present in APP DB but mssing in ASIC DB", + ARGS: "vnet_route_check", + RET: -1, + PRE: { + APPL_DB: { + VXLAN_TUNNEL_TABLE: { + "tunnel_v4": { "src_ip": "10.1.0.32" } + }, + VNET_TABLE: { + "Vnet_v4_in_v4-0": [("vxlan_tunnel", "tunnel_v4"), ("scope", "default"), ("vni", "10000"), ("peer_list", "")] + }, + VNET_ROUTE_TUNNEL_TABLE: { + "Vnet_v4_in_v4-0:150.62.191.1/32" : { "endpoint" : "100.251.7.1,100.251.7.2" } + } + }, + ASIC_DB: { + "ASIC_STATE:SAI_OBJECT_TYPE_VIRTUAL_ROUTER": { + "oid:0x3000000000d4b" : { "":"" } + }, + ASIC_STATE: { + } + } + }, + RESULT: { + "results": { + "missed_in_asic_db_routes": { + "Vnet_v4_in_v4-0": { + "routes": [ + "150.62.191.1/32" + ] + } + } + } + } + }, + "6": { + DESCR: "Only Vxlan tunnel configured, No routes.", + ARGS: "vnet_route_check", + PRE: { + APPL_DB: { + VXLAN_TUNNEL_TABLE: { + "tunnel_v4": { "src_ip": "10.1.0.32" } + }, + VNET_TABLE: { + "Vnet1": { "vxlan_tunnel": "tunnel_v4", "vni": "10001" } + }, + INTF_TABLE: { + "Vlan3001": { "vnet_name": "Vnet1" }, + "Vlan3001:30.1.10.1/24": {} + }, + }, + } } } @@ -254,7 +336,7 @@ def getKeys(self): return list(self.data.keys()) def get(self, key): - ret = copy.deepcopy(self.data.get(key, {})) + ret = copy.deepcopy(self.data.get(key, self.data)) return (True, ret) @@ -314,9 +396,15 @@ def test_vnet_route_check(self, mock_table, mock_conn): do_start_test("route_test", i, ct_data) with patch('sys.argv', ct_data[ARGS].split()): - ret, res = vnet_route_check.main() expect_ret = ct_data[RET] if RET in ct_data else 0 expect_res = ct_data[RESULT] if RESULT in ct_data else None + res = None + if expect_ret == 0: + ret = vnet_route_check.main() + if ret != 0: + ret, res = vnet_route_check.main() + else: + ret, res = vnet_route_check.main() if res: print("res={}".format(json.dumps(res, indent=4))) if expect_res: diff --git a/tests/vrf_input/config_db.json b/tests/vrf_input/config_db.json index 6d646f2f2..1746c14c4 100644 --- a/tests/vrf_input/config_db.json +++ b/tests/vrf_input/config_db.json @@ -3,11 +3,16 @@ "vrf_name": "Vrf101", "admin_status": "up" }, - "VLAN_SUB_INTERFACE|Eth32.10": { + "VLAN_SUB_INTERFACE|Eth36.10": { "vrf_name": "Vrf102", "admin_status": "up", "vlan": "100" }, + "VLAN_SUB_INTERFACE|Po0002.101": { + "vrf_name": "Vrf103", + "admin_status": "up", + "vlan": "1001" + }, "VLAN_INTERFACE|Vlan40": { "vrf_name": "Vrf102" }, diff --git a/tests/vrf_test.py b/tests/vrf_test.py new file mode 100644 index 000000000..d2443b3c3 --- /dev/null +++ b/tests/vrf_test.py @@ -0,0 +1,159 @@ +import os +import sys +from click.testing import CliRunner +from swsscommon.swsscommon import SonicV2Connector +from utilities_common.db import Db + +import config.main as config +import show.main as show +import threading + +DEFAULT_NAMESPACE = '' +test_path = os.path.dirname(os.path.abspath(__file__)) +mock_db_path = os.path.join(test_path, "vrf_input") + +class TestShowVrf(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def update_statedb(self, db, db_name, key): + import time + time.sleep(0.5) + db.delete(db_name, key) + + def test_vrf_show(self): + from .mock_tables import dbconnector + jsonfile_config = os.path.join(mock_db_path, "config_db") + dbconnector.dedicated_dbs['CONFIG_DB'] = jsonfile_config + runner = CliRunner() + db = Db() + expected_output = """\ +VRF Interfaces +------ --------------- +Vrf1 +Vrf101 Ethernet0.10 +Vrf102 PortChannel0002 + Vlan40 + Eth36.10 +Vrf103 Ethernet4 + Loopback0 + Po0002.101 +""" + + result = runner.invoke(show.cli.commands['vrf'], [], obj=db) + dbconnector.dedicated_dbs = {} + assert result.exit_code == 0 + assert result.output == expected_output + + def test_vrf_bind_unbind(self): + from .mock_tables import dbconnector + jsonfile_config = os.path.join(mock_db_path, "config_db") + dbconnector.dedicated_dbs['CONFIG_DB'] = jsonfile_config + runner = CliRunner() + db = Db() + expected_output = """\ +VRF Interfaces +------ --------------- +Vrf1 +Vrf101 Ethernet0.10 +Vrf102 PortChannel0002 + Vlan40 + Eth36.10 +Vrf103 Ethernet4 + Loopback0 + Po0002.101 +""" + + result = runner.invoke(show.cli.commands['vrf'], [], obj=db) + dbconnector.dedicated_dbs = {} + assert result.exit_code == 0 + assert result.output == expected_output + + + vrf_obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet4"], obj=vrf_obj) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert 'Ethernet4' not in db.cfgdb.get_table('INTERFACE') + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Loopback0"], obj=vrf_obj) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert 'Loopback0' not in db.cfgdb.get_table('LOOPBACK_INTERFACE') + + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Vlan40"], obj=vrf_obj) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert 'Vlan40' not in db.cfgdb.get_table('VLAN_INTERFACE') + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["PortChannel0002"], obj=vrf_obj) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert 'PortChannel002' not in db.cfgdb.get_table('PORTCHANNEL_INTERFACE') + + vrf_obj = {'config_db':db.cfgdb, 'namespace':DEFAULT_NAMESPACE} + state_db = SonicV2Connector(use_unix_socket_path=True, namespace='') + state_db.connect(state_db.STATE_DB, False) + _hash = "INTERFACE_TABLE|Eth36.10" + state_db.set(db.db.STATE_DB, _hash, "state", "ok") + vrf_obj['state_db'] = state_db + + T1 = threading.Thread( target = self.update_statedb, args = (state_db, db.db.STATE_DB, _hash)) + T1.start() + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Eth36.10"], obj=vrf_obj) + T1.join() + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('vrf_name', 'Vrf102') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Eth36.10'] + + vrf_obj = {'config_db':db.cfgdb, 'namespace':DEFAULT_NAMESPACE} + + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet0.10"], obj=vrf_obj) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('vrf_name', 'Vrf101') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Ethernet0.10'] + + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Po0002.101"], obj=vrf_obj) + + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ('vrf_name', 'Vrf103') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Po0002.101'] + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet0", "Vrf1"], obj=vrf_obj) + assert result.exit_code == 0 + assert ('Vrf1') in db.cfgdb.get_table('INTERFACE')['Ethernet0']['vrf_name'] + + + #Bind click CLI cannot be tested as it tries to connecte to statedb + #for verification of all IP address delete before applying new vrf configuration + jsonfile_config = os.path.join(mock_db_path, "config_db") + dbconnector.dedicated_dbs['CONFIG_DB'] = jsonfile_config + + expected_output = """\ +VRF Interfaces +------ --------------- +Vrf1 +Vrf101 Ethernet0.10 +Vrf102 PortChannel0002 + Vlan40 + Eth36.10 +Vrf103 Ethernet4 + Loopback0 + Po0002.101 +""" + + result = runner.invoke(show.cli.commands['vrf'], [], obj=db) + dbconnector.dedicated_dbs = {} + assert result.exit_code == 0 + assert result.output == expected_output diff --git a/tests/vxlan_test.py b/tests/vxlan_test.py index 5541a6e84..61c78dc42 100644 --- a/tests/vxlan_test.py +++ b/tests/vxlan_test.py @@ -7,6 +7,10 @@ import config.main as config import show.main as show from utilities_common.db import Db +from .mock_tables import dbconnector + +test_path = os.path.dirname(os.path.abspath(__file__)) +mock_db_path = os.path.join(test_path, "vnet_input") show_vxlan_interface_output="""\ VTEP Information: @@ -56,6 +60,15 @@ """ +show_vxlan_name_output="""\ +vxlan tunnel name source ip destination ip tunnel map name tunnel map mapping(vni -> vlan) +------------------- ----------- ---------------- ----------------- --------------------------------- +vtep1 1.1.1.1 map_100_Vlan100 100 -> Vlan100 + map_101_Vlan101 101 -> Vlan101 + map_102_Vlan102 102 -> Vlan102 + map_200_Vlan200 200 -> Vlan200 +""" + show_vxlan_remotevni_output="""\ +---------+--------------+-------+ | VLAN | RemoteVTEP | VNI | @@ -99,6 +112,38 @@ """ +show_vxlan_remotemac_all_output="""\ ++---------+-------------------+--------------+-------+---------+ +| VLAN | MAC | RemoteVTEP | VNI | Type | ++=========+===================+==============+=======+=========+ +| Vlan200 | 00:02:00:00:47:e2 | 2.2.2.2 | 200 | dynamic | ++---------+-------------------+--------------+-------+---------+ +| Vlan200 | 00:02:00:00:47:e3 | 2.2.2.3 | 200 | dynamic | ++---------+-------------------+--------------+-------+---------+ +Total count : 2 + +""" + +show_vxlan_remotemac_specific_output="""\ ++---------+-------------------+--------------+-------+---------+ +| VLAN | MAC | RemoteVTEP | VNI | Type | ++=========+===================+==============+=======+=========+ +| Vlan200 | 00:02:00:00:47:e2 | 2.2.2.2 | 200 | dynamic | ++---------+-------------------+--------------+-------+---------+ +Total count : 1 + +""" + +show_vxlan_remotemac_cnt_output="""\ +Total count : 2 + +""" + +show_vxlan_remotemac_specific_cnt_output="""\ +Total count : 1 + +""" + class TestVxlan(object): @classmethod def setup_class(cls): @@ -137,6 +182,22 @@ def test_show_vxlan_tunnel(self): assert result.exit_code == 0 assert result.output == show_vxlan_tunnel_output + def test_show_vxlan_tunnel_output(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["tunnel"], []) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_name_output + + def test_show_vxlan_name_vtep(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["name"],["vtep1"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_name_output + def test_show_vxlan_remotevni(self): runner = CliRunner() result = runner.invoke(show.cli.commands["vxlan"].commands["remotevni"], ["all"]) @@ -186,6 +247,38 @@ def test_show_vxlan_remotevni_specific_cnt(self): assert result.exit_code == 0 assert result.output == show_vxlan_remotevni_specific_cnt_output + def test_show_vxlan_remotemac(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["remotemac"], ["all"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_remotemac_all_output + + def test_show_vxlan_remotemac_specific(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["remotemac"], ["2.2.2.2"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_remotemac_specific_output + + def test_show_vxlan_remotemac_cnt(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["remotemac"], ["all", "count"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_remotemac_cnt_output + + def test_show_vxlan_remotemac_specific_cnt(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["remotemac"], ["2.2.2.2", "count"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_remotemac_specific_cnt_output + def test_config_vxlan_add(self): runner = CliRunner() db = Db() @@ -247,6 +340,24 @@ def test_config_vxlan_add(self): assert result.exit_code == 0 assert result.output == show_vxlan_vlanvnimap_output + def test_config_vxlan_del(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db') + db = Db() + runner = CliRunner() + + result = runner.invoke(config.config.commands["vxlan"].commands["del"], ["tunnel_invalid"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Error: Vxlan tunnel tunnel_invalid does not exist" in result.output + + result = runner.invoke(config.config.commands["vxlan"].commands["del"], ["tunnel1"], obj=db) + dbconnector.dedicated_dbs = {} + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Please delete all VNET configuration referencing the tunnel" in result.output + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" diff --git a/tests/watermarkstat_test.py b/tests/watermarkstat_test.py index cd4eae00a..dc419ae3b 100644 --- a/tests/watermarkstat_test.py +++ b/tests/watermarkstat_test.py @@ -1,5 +1,6 @@ import os import sys +import pytest import show.main as show from click.testing import CliRunner @@ -13,6 +14,15 @@ sys.path.insert(0, modules_path) +@pytest.fixture(scope="function") +def q_multicast_wm_neg(): + print("Setup watermarkstat sample data: no queue multicast watermark counters") + os.environ['WATERMARKSTAT_UNIT_TESTING'] = "1" + yield + del os.environ['WATERMARKSTAT_UNIT_TESTING'] + print("Teardown watermarkstat sample data: no queue multicast watermark counters") + + class TestWatermarkstat(object): @classmethod def setup_class(cls): @@ -32,6 +42,9 @@ def test_show_queue_unicast_wm(self): def test_show_queue_multicast_wm(self): self.executor(testData['show_q_wm_multicast']) + def test_show_queue_multicast_wm_neg(self, q_multicast_wm_neg): + self.executor(testData['show_q_wm_multicast_neg']) + def test_show_queue_all_wm(self): self.executor(testData['show_q_wm_all']) diff --git a/tests/wm_input/mock_db/counters_db.json b/tests/wm_input/mock_db/counters_db.json new file mode 100644 index 000000000..443b84bf7 --- /dev/null +++ b/tests/wm_input/mock_db/counters_db.json @@ -0,0 +1,1246 @@ +{ + "COUNTERS:oid:0x1000000000012": { + "SAI_PORT_STAT_IF_IN_UCAST_PKTS": "8", + "SAI_PORT_STAT_IF_IN_NON_UCAST_PKTS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS" : "800", + "SAI_PORT_STAT_IF_OUT_UCAST_PKTS": "10", + "SAI_PORT_STAT_IF_OUT_NON_UCAST_PKTS" : "0", + "SAI_PORT_STAT_IF_OUT_OCTETS" : "1000", + "SAI_PORT_STAT_IF_IN_ERRORS": "10", + "SAI_PORT_STAT_IF_IN_DISCARDS": "100", + "SAI_PORT_STAT_IN_DROP_REASON_RANGE_BASE": "80", + "SAI_PORT_STAT_OUT_CONFIGURED_DROP_REASONS_1_DROPPED_PKTS": "20", + "SAI_PORT_STAT_PFC_0_RX_PKTS": "1200", + "SAI_PORT_STAT_PFC_1_RX_PKTS": "201", + "SAI_PORT_STAT_PFC_2_RX_PKTS": "202", + "SAI_PORT_STAT_PFC_3_RX_PKTS": "203", + "SAI_PORT_STAT_PFC_4_RX_PKTS": "204", + "SAI_PORT_STAT_PFC_5_RX_PKTS": "205", + "SAI_PORT_STAT_PFC_6_RX_PKTS": "206", + "SAI_PORT_STAT_PFC_7_RX_PKTS": "207", + "SAI_PORT_STAT_PFC_0_TX_PKTS": "1210", + "SAI_PORT_STAT_PFC_1_TX_PKTS": "211", + "SAI_PORT_STAT_PFC_2_TX_PKTS": "212", + "SAI_PORT_STAT_PFC_3_TX_PKTS": "213", + "SAI_PORT_STAT_PFC_4_TX_PKTS": "214", + "SAI_PORT_STAT_PFC_5_TX_PKTS": "215", + "SAI_PORT_STAT_PFC_6_TX_PKTS": "216", + "SAI_PORT_STAT_PFC_7_TX_PKTS": "217", + "SAI_PORT_STAT_IF_IN_BROADCAST_PKTS": "0", + "SAI_PORT_STAT_IF_IN_MULTICAST_PKTS": "0", + "SAI_PORT_STAT_IP_IN_UCAST_PKTS": "0", + "SAI_PORT_STAT_IP_IN_RECEIVES": "0", + "SAI_PORT_STAT_IF_OUT_MULTICAST_PKTS": "0", + "SAI_PORT_STAT_IF_OUT_BROADCAST_PKTS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_64_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_65_TO_127_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_128_TO_255_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_256_TO_511_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_512_TO_1023_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_1024_TO_1518_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_1519_TO_2047_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_2048_TO_4095_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_4096_TO_9216_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_9217_TO_16383_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_64_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_65_TO_127_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_128_TO_255_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_256_TO_511_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_512_TO_1023_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_1024_TO_1518_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_1519_TO_2047_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_2048_TO_4095_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_4096_TO_9216_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_9217_TO_16383_OCTETS": "0", + "SAI_PORT_STAT_ETHER_STATS_FRAGMENTS": "0", + "SAI_PORT_STAT_ETHER_STATS_UNDERSIZE_PKTS": "0", + "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0" + }, + "COUNTERS:oid:0x1000000000013": { + "SAI_PORT_STAT_IF_IN_UCAST_PKTS": "4", + "SAI_PORT_STAT_IF_IN_NON_UCAST_PKTS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS" : "400", + "SAI_PORT_STAT_IF_OUT_UCAST_PKTS": "40", + "SAI_PORT_STAT_IF_OUT_NON_UCAST_PKTS" : "0", + "SAI_PORT_STAT_IF_OUT_OCTETS" : "4000", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_DISCARDS": "1000", + "SAI_PORT_STAT_IN_DROP_REASON_RANGE_BASE": "800", + "SAI_PORT_STAT_OUT_CONFIGURED_DROP_REASONS_1_DROPPED_PKTS": "100", + "SAI_PORT_STAT_PFC_0_RX_PKTS": "1400", + "SAI_PORT_STAT_PFC_1_RX_PKTS": "401", + "SAI_PORT_STAT_PFC_2_RX_PKTS": "402", + "SAI_PORT_STAT_PFC_3_RX_PKTS": "403", + "SAI_PORT_STAT_PFC_4_RX_PKTS": "404", + "SAI_PORT_STAT_PFC_5_RX_PKTS": "405", + "SAI_PORT_STAT_PFC_6_RX_PKTS": "406", + "SAI_PORT_STAT_PFC_7_RX_PKTS": "407", + "SAI_PORT_STAT_PFC_0_TX_PKTS": "1410", + "SAI_PORT_STAT_PFC_1_TX_PKTS": "411", + "SAI_PORT_STAT_PFC_2_TX_PKTS": "412", + "SAI_PORT_STAT_PFC_3_TX_PKTS": "413", + "SAI_PORT_STAT_PFC_4_TX_PKTS": "414", + "SAI_PORT_STAT_PFC_5_TX_PKTS": "415", + "SAI_PORT_STAT_PFC_6_TX_PKTS": "416", + "SAI_PORT_STAT_PFC_7_TX_PKTS": "417", + "SAI_PORT_STAT_IF_IN_BROADCAST_PKTS": "0", + "SAI_PORT_STAT_IF_IN_MULTICAST_PKTS": "0", + "SAI_PORT_STAT_IP_IN_UCAST_PKTS": "0", + "SAI_PORT_STAT_IP_IN_RECEIVES": "0", + "SAI_PORT_STAT_IF_OUT_MULTICAST_PKTS": "0", + "SAI_PORT_STAT_IF_OUT_BROADCAST_PKTS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_64_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_65_TO_127_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_128_TO_255_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_256_TO_511_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_512_TO_1023_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_1024_TO_1518_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_1519_TO_2047_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_2048_TO_4095_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_4096_TO_9216_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_9217_TO_16383_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_64_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_65_TO_127_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_128_TO_255_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_256_TO_511_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_512_TO_1023_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_1024_TO_1518_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_1519_TO_2047_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_2048_TO_4095_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_4096_TO_9216_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_9217_TO_16383_OCTETS": "0", + "SAI_PORT_STAT_ETHER_STATS_FRAGMENTS": "0", + "SAI_PORT_STAT_ETHER_STATS_UNDERSIZE_PKTS": "0", + "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0" + }, + "COUNTERS:oid:0x1000000000014": { + "SAI_PORT_STAT_IF_IN_UCAST_PKTS": "6", + "SAI_PORT_STAT_IF_IN_NON_UCAST_PKTS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS" : "600", + "SAI_PORT_STAT_IF_OUT_UCAST_PKTS": "60", + "SAI_PORT_STAT_IF_OUT_NON_UCAST_PKTS" : "0", + "SAI_PORT_STAT_IF_OUT_OCTETS" : "6000", + "SAI_PORT_STAT_IF_IN_ERRORS": "100", + "SAI_PORT_STAT_IF_IN_DISCARDS": "10", + "SAI_PORT_STAT_IN_DROP_REASON_RANGE_BASE": "10", + "SAI_PORT_STAT_OUT_CONFIGURED_DROP_REASONS_1_DROPPED_PKTS": "0", + "SAI_PORT_STAT_PFC_0_RX_PKTS": "1800", + "SAI_PORT_STAT_PFC_1_RX_PKTS": "801", + "SAI_PORT_STAT_PFC_2_RX_PKTS": "802", + "SAI_PORT_STAT_PFC_3_RX_PKTS": "803", + "SAI_PORT_STAT_PFC_4_RX_PKTS": "804", + "SAI_PORT_STAT_PFC_5_RX_PKTS": "805", + "SAI_PORT_STAT_PFC_6_RX_PKTS": "806", + "SAI_PORT_STAT_PFC_7_RX_PKTS": "807", + "SAI_PORT_STAT_PFC_0_TX_PKTS": "1810", + "SAI_PORT_STAT_PFC_1_TX_PKTS": "811", + "SAI_PORT_STAT_PFC_2_TX_PKTS": "812", + "SAI_PORT_STAT_PFC_3_TX_PKTS": "813", + "SAI_PORT_STAT_PFC_4_TX_PKTS": "814", + "SAI_PORT_STAT_PFC_5_TX_PKTS": "815", + "SAI_PORT_STAT_PFC_6_TX_PKTS": "816", + "SAI_PORT_STAT_PFC_7_TX_PKTS": "817", + "SAI_PORT_STAT_IF_IN_BROADCAST_PKTS": "0", + "SAI_PORT_STAT_IF_IN_MULTICAST_PKTS": "0", + "SAI_PORT_STAT_IP_IN_UCAST_PKTS": "0", + "SAI_PORT_STAT_IP_IN_RECEIVES": "0", + "SAI_PORT_STAT_IF_OUT_MULTICAST_PKTS": "0", + "SAI_PORT_STAT_IF_OUT_BROADCAST_PKTS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_64_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_65_TO_127_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_128_TO_255_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_256_TO_511_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_512_TO_1023_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_1024_TO_1518_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_1519_TO_2047_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_2048_TO_4095_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_4096_TO_9216_OCTETS": "0", + "SAI_PORT_STAT_ETHER_IN_PKTS_9217_TO_16383_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_64_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_65_TO_127_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_128_TO_255_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_256_TO_511_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_512_TO_1023_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_1024_TO_1518_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_1519_TO_2047_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_2048_TO_4095_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_4096_TO_9216_OCTETS": "0", + "SAI_PORT_STAT_ETHER_OUT_PKTS_9217_TO_16383_OCTETS": "0", + "SAI_PORT_STAT_ETHER_STATS_FRAGMENTS": "0", + "SAI_PORT_STAT_ETHER_STATS_UNDERSIZE_PKTS": "0", + "SAI_PORT_STAT_ETHER_STATS_JABBERS": "0" + }, + "COUNTERS:oid:0x15000000000357": { + "SAI_QUEUE_STAT_BYTES": "30", + "SAI_QUEUE_STAT_DROPPED_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "56", + "SAI_QUEUE_STAT_PACKETS": "68", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "61" + }, + "COUNTERS:oid:0x15000000000358": { + "SAI_QUEUE_STAT_BYTES": "43", + "SAI_QUEUE_STAT_DROPPED_BYTES": "1", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "39", + "SAI_QUEUE_STAT_PACKETS": "60", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "88" + }, + "COUNTERS:oid:0x15000000000359": { + "SAI_QUEUE_STAT_BYTES": "7", + "SAI_QUEUE_STAT_DROPPED_BYTES": "21", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "39", + "SAI_QUEUE_STAT_PACKETS": "82", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "4" + }, + "COUNTERS:oid:0x1500000000035b": { + "SAI_QUEUE_STAT_BYTES": "59", + "SAI_QUEUE_STAT_DROPPED_BYTES": "94", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "12", + "SAI_QUEUE_STAT_PACKETS": "11", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "15" + }, + "COUNTERS:oid:0x1500000000035c": { + "SAI_QUEUE_STAT_BYTES": "62", + "SAI_QUEUE_STAT_DROPPED_BYTES": "40", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "35", + "SAI_QUEUE_STAT_PACKETS": "36", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "18" + }, + "COUNTERS:oid:0x1500000000035d": { + "SAI_QUEUE_STAT_BYTES": "91", + "SAI_QUEUE_STAT_DROPPED_BYTES": "88", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "2", + "SAI_QUEUE_STAT_PACKETS": "49", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "73" + }, + "COUNTERS:oid:0x1500000000035e": { + "SAI_QUEUE_STAT_BYTES": "17", + "SAI_QUEUE_STAT_DROPPED_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "94", + "SAI_QUEUE_STAT_PACKETS": "33", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "98" + }, + "COUNTERS:oid:0x1500000000035f": { + "SAI_QUEUE_STAT_BYTES": "71", + "SAI_QUEUE_STAT_DROPPED_BYTES": "33", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "95", + "SAI_QUEUE_STAT_PACKETS": "40", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "81" + }, + "COUNTERS:oid:0x15000000000360": { + "SAI_QUEUE_STAT_BYTES": "8", + "SAI_QUEUE_STAT_DROPPED_BYTES": "78", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "93", + "SAI_QUEUE_STAT_PACKETS": "54", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "59" + }, + "COUNTERS:oid:0x1500000000037f": { + "SAI_QUEUE_STAT_BYTES": "96", + "SAI_QUEUE_STAT_DROPPED_BYTES": "98", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "70", + "SAI_QUEUE_STAT_PACKETS": "41", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "46" + }, + "COUNTERS:oid:0x15000000000380": { + "SAI_QUEUE_STAT_BYTES": "49", + "SAI_QUEUE_STAT_DROPPED_BYTES": "36", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "63", + "SAI_QUEUE_STAT_PACKETS": "18", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "18" + }, + "COUNTERS:oid:0x15000000000381": { + "SAI_QUEUE_STAT_BYTES": "90", + "SAI_QUEUE_STAT_DROPPED_BYTES": "15", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "3", + "SAI_QUEUE_STAT_PACKETS": "99", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "15" + }, + "COUNTERS:oid:0x15000000000383": { + "SAI_QUEUE_STAT_BYTES": "84", + "SAI_QUEUE_STAT_DROPPED_BYTES": "94", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "82", + "SAI_QUEUE_STAT_PACKETS": "8", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "17" + }, + "COUNTERS:oid:0x15000000000384": { + "SAI_QUEUE_STAT_BYTES": "15", + "SAI_QUEUE_STAT_DROPPED_BYTES": "92", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "75", + "SAI_QUEUE_STAT_PACKETS": "83", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "42" + }, + "COUNTERS:oid:0x15000000000385": { + "SAI_QUEUE_STAT_BYTES": "26", + "SAI_QUEUE_STAT_DROPPED_BYTES": "71", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "50", + "SAI_QUEUE_STAT_PACKETS": "84", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "31" + }, + "COUNTERS:oid:0x15000000000386": { + "SAI_QUEUE_STAT_BYTES": "19", + "SAI_QUEUE_STAT_DROPPED_BYTES": "80", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "49", + "SAI_QUEUE_STAT_PACKETS": "27", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "4" + }, + "COUNTERS:oid:0x15000000000387": { + "SAI_QUEUE_STAT_BYTES": "89", + "SAI_QUEUE_STAT_DROPPED_BYTES": "33", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "13", + "SAI_QUEUE_STAT_PACKETS": "13", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "45" + }, + "COUNTERS:oid:0x15000000000388": { + "SAI_QUEUE_STAT_BYTES": "48", + "SAI_QUEUE_STAT_DROPPED_BYTES": "31", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "86", + "SAI_QUEUE_STAT_PACKETS": "43", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "6" + }, + "COUNTERS:oid:0x150000000003a7": { + "SAI_QUEUE_STAT_BYTES": "5", + "SAI_QUEUE_STAT_DROPPED_BYTES": "56", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "36", + "SAI_QUEUE_STAT_PACKETS": "19", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "65" + }, + "COUNTERS:oid:0x150000000003a8": { + "SAI_QUEUE_STAT_BYTES": "17", + "SAI_QUEUE_STAT_DROPPED_BYTES": "91", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "68", + "SAI_QUEUE_STAT_PACKETS": "38", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "94" + }, + "COUNTERS:oid:0x150000000003a9": { + "SAI_QUEUE_STAT_BYTES": "65", + "SAI_QUEUE_STAT_DROPPED_BYTES": "51", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "79", + "SAI_QUEUE_STAT_PACKETS": "16", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "71" + }, + "COUNTERS:oid:0x150000000003aa": { + "SAI_QUEUE_STAT_BYTES": "97", + "SAI_QUEUE_STAT_DROPPED_BYTES": "72", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "63", + "SAI_QUEUE_STAT_PACKETS": "11", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "51" + }, + "COUNTERS:oid:0x150000000003ac": { + "SAI_QUEUE_STAT_BYTES": "84", + "SAI_QUEUE_STAT_DROPPED_BYTES": "59", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "30", + "SAI_QUEUE_STAT_PACKETS": "13", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "47" + }, + "COUNTERS:oid:0x150000000003ad": { + "SAI_QUEUE_STAT_BYTES": "67", + "SAI_QUEUE_STAT_DROPPED_BYTES": "85", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "99", + "SAI_QUEUE_STAT_PACKETS": "49", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "86" + }, + "COUNTERS:oid:0x150000000003ae": { + "SAI_QUEUE_STAT_BYTES": "63", + "SAI_QUEUE_STAT_DROPPED_BYTES": "88", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "38", + "SAI_QUEUE_STAT_PACKETS": "2", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "98" + }, + "COUNTERS:oid:0x150000000003af": { + "SAI_QUEUE_STAT_BYTES": "82", + "SAI_QUEUE_STAT_DROPPED_BYTES": "43", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "93", + "SAI_QUEUE_STAT_PACKETS": "0", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "50" + }, + "COUNTERS:oid:0x150000000003b0": { + "SAI_QUEUE_STAT_BYTES": "17", + "SAI_QUEUE_STAT_DROPPED_BYTES": "61", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "91", + "SAI_QUEUE_STAT_PACKETS": "80", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "91" + }, + "COUNTERS:oid:0x1a00000000034f": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "800" + }, + "COUNTERS:oid:0x1a000000000350" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "801" + }, + "COUNTERS:oid:0x1a000000000351" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "802" + }, + "COUNTERS:oid:0x1a000000000352" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "803" + }, + "COUNTERS:oid:0x1a000000000353" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "804" + }, + "COUNTERS:oid:0x1a000000000354" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "805" + }, + "COUNTERS:oid:0x1a000000000355" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "806" + }, + "COUNTERS:oid:0x1a000000000356" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "807" + }, + "COUNTERS:oid:0x1a000000000377" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "400" + }, + "COUNTERS:oid:0x1a000000000378" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "401" + }, + "COUNTERS:oid:0x1a000000000379" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "402" + }, + "COUNTERS:oid:0x1a00000000037a" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "403" + }, + "COUNTERS:oid:0x1a00000000037b" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "404" + }, + "COUNTERS:oid:0x1a00000000037c" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "405" + }, + "COUNTERS:oid:0x1a00000000037d" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "406" + }, + "COUNTERS:oid:0x1a00000000037e" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "407" + }, + "COUNTERS:oid:0x1a00000000039f" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "100" + }, + "COUNTERS:oid:0x1a0000000003a0" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "101" + }, + "COUNTERS:oid:0x1a0000000003a1" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "102" + }, + "COUNTERS:oid:0x1a0000000003a2" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "103" + }, + "COUNTERS:oid:0x1a0000000003a3" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "104" + }, + "COUNTERS:oid:0x1a0000000003a4" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "105" + }, + "COUNTERS:oid:0x1a0000000003a5" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "106" + }, + "COUNTERS:oid:0x1a0000000003a6" : { + "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS" : "107" + }, + "COUNTERS_PORT_NAME_MAP": { + "Ethernet0": "oid:0x1000000000012", + "Ethernet4": "oid:0x1000000000013", + "Ethernet8": "oid:0x1000000000014" + }, + "COUNTERS_BUFFER_POOL_NAME_MAP": { + "egress_lossless_pool": "oid:0x18000000000b64", + "egress_lossy_pool": "oid:0x18000000000b65", + "ingress_lossless_pool": "oid:0x18000000000b66" + }, + "COUNTERS_PG_NAME_MAP": { + "Ethernet0:0": "oid:0x1a00000000034f", + "Ethernet0:1": "oid:0x1a000000000350", + "Ethernet0:2": "oid:0x1a000000000351", + "Ethernet0:3": "oid:0x1a000000000352", + "Ethernet0:4": "oid:0x1a000000000353", + "Ethernet0:5": "oid:0x1a000000000354", + "Ethernet0:6": "oid:0x1a000000000355", + "Ethernet0:7": "oid:0x1a000000000356", + "Ethernet4:0": "oid:0x1a000000000377", + "Ethernet4:1": "oid:0x1a000000000378", + "Ethernet4:2": "oid:0x1a000000000379", + "Ethernet4:3": "oid:0x1a00000000037a", + "Ethernet4:4": "oid:0x1a00000000037b", + "Ethernet4:5": "oid:0x1a00000000037c", + "Ethernet4:6": "oid:0x1a00000000037d", + "Ethernet4:7": "oid:0x1a00000000037e", + "Ethernet8:0": "oid:0x1a00000000039f", + "Ethernet8:1": "oid:0x1a0000000003a0", + "Ethernet8:2": "oid:0x1a0000000003a1", + "Ethernet8:3": "oid:0x1a0000000003a2", + "Ethernet8:4": "oid:0x1a0000000003a3", + "Ethernet8:5": "oid:0x1a0000000003a4", + "Ethernet8:6": "oid:0x1a0000000003a5", + "Ethernet8:7": "oid:0x1a0000000003a6" + }, + "COUNTERS_PG_PORT_MAP": { + "oid:0x1a00000000034f": "oid:0x1000000000012", + "oid:0x1a000000000350": "oid:0x1000000000012", + "oid:0x1a000000000351": "oid:0x1000000000012", + "oid:0x1a000000000352": "oid:0x1000000000012", + "oid:0x1a000000000353": "oid:0x1000000000012", + "oid:0x1a000000000354": "oid:0x1000000000012", + "oid:0x1a000000000355": "oid:0x1000000000012", + "oid:0x1a000000000356": "oid:0x1000000000012", + "oid:0x1a000000000377": "oid:0x1000000000013", + "oid:0x1a000000000378": "oid:0x1000000000013", + "oid:0x1a000000000379": "oid:0x1000000000013", + "oid:0x1a00000000037a": "oid:0x1000000000013", + "oid:0x1a00000000037b": "oid:0x1000000000013", + "oid:0x1a00000000037c": "oid:0x1000000000013", + "oid:0x1a00000000037d": "oid:0x1000000000013", + "oid:0x1a00000000037e": "oid:0x1000000000013", + "oid:0x1a00000000039f": "oid:0x1000000000014", + "oid:0x1a0000000003a0": "oid:0x1000000000014", + "oid:0x1a0000000003a1": "oid:0x1000000000014", + "oid:0x1a0000000003a2": "oid:0x1000000000014", + "oid:0x1a0000000003a3": "oid:0x1000000000014", + "oid:0x1a0000000003a4": "oid:0x1000000000014", + "oid:0x1a0000000003a5": "oid:0x1000000000014", + "oid:0x1a0000000003a6": "oid:0x1000000000014" + }, + "COUNTERS_QUEUE_NAME_MAP": { + "Ethernet0:0": "oid:0x15000000000357", + "Ethernet0:1": "oid:0x15000000000358", + "Ethernet0:2": "oid:0x15000000000359", + "Ethernet0:3": "oid:0x1500000000035a", + "Ethernet0:4": "oid:0x1500000000035b", + "Ethernet0:5": "oid:0x1500000000035c", + "Ethernet0:6": "oid:0x1500000000035d", + "Ethernet0:7": "oid:0x1500000000035e", + "Ethernet0:8": "oid:0x1500000000035f", + "Ethernet0:9": "oid:0x15000000000360", + "Ethernet0:20": "oid:0x1500000000036d", + "Ethernet0:21": "oid:0x1500000000036e", + "Ethernet0:22": "oid:0x1500000000036f", + "Ethernet0:23": "oid:0x15000000000370", + "Ethernet0:24": "oid:0x15000000000371", + "Ethernet0:25": "oid:0x15000000000372", + "Ethernet0:26": "oid:0x15000000000373", + "Ethernet0:27": "oid:0x15000000000374", + "Ethernet0:28": "oid:0x15000000000375", + "Ethernet0:29": "oid:0x15000000000376", + "Ethernet4:0": "oid:0x1500000000037f", + "Ethernet4:1": "oid:0x15000000000380", + "Ethernet4:2": "oid:0x15000000000381", + "Ethernet4:3": "oid:0x15000000000382", + "Ethernet4:4": "oid:0x15000000000383", + "Ethernet4:5": "oid:0x15000000000384", + "Ethernet4:6": "oid:0x15000000000385", + "Ethernet4:7": "oid:0x15000000000386", + "Ethernet4:8": "oid:0x15000000000387", + "Ethernet4:9": "oid:0x15000000000388", + "Ethernet4:20": "oid:0x15000000000395", + "Ethernet4:21": "oid:0x15000000000396", + "Ethernet4:22": "oid:0x15000000000397", + "Ethernet4:23": "oid:0x15000000000398", + "Ethernet4:24": "oid:0x15000000000399", + "Ethernet4:25": "oid:0x1500000000039a", + "Ethernet4:26": "oid:0x1500000000039b", + "Ethernet4:27": "oid:0x1500000000039c", + "Ethernet4:28": "oid:0x1500000000039d", + "Ethernet4:29": "oid:0x1500000000039e", + "Ethernet8:0": "oid:0x150000000003a7", + "Ethernet8:1": "oid:0x150000000003a8", + "Ethernet8:2": "oid:0x150000000003a9", + "Ethernet8:3": "oid:0x150000000003aa", + "Ethernet8:4": "oid:0x150000000003ab", + "Ethernet8:5": "oid:0x150000000003ac", + "Ethernet8:6": "oid:0x150000000003ad", + "Ethernet8:7": "oid:0x150000000003ae", + "Ethernet8:8": "oid:0x150000000003af", + "Ethernet8:9": "oid:0x150000000003b0", + "Ethernet8:20": "oid:0x150000000003bd", + "Ethernet8:21": "oid:0x150000000003be", + "Ethernet8:22": "oid:0x150000000003bf", + "Ethernet8:23": "oid:0x150000000003c0", + "Ethernet8:24": "oid:0x150000000003c1", + "Ethernet8:25": "oid:0x150000000003c2", + "Ethernet8:26": "oid:0x150000000003c3", + "Ethernet8:27": "oid:0x150000000003c4", + "Ethernet8:28": "oid:0x150000000003c5", + "Ethernet8:29": "oid:0x150000000003c6" + }, + "COUNTERS_QUEUE_PORT_MAP": { + "oid:0x15000000000357": "oid:0x1000000000012", + "oid:0x15000000000358": "oid:0x1000000000012", + "oid:0x15000000000359": "oid:0x1000000000012", + "oid:0x1500000000035a": "oid:0x1000000000012", + "oid:0x1500000000035b": "oid:0x1000000000012", + "oid:0x1500000000035c": "oid:0x1000000000012", + "oid:0x1500000000035d": "oid:0x1000000000012", + "oid:0x1500000000035e": "oid:0x1000000000012", + "oid:0x1500000000035f": "oid:0x1000000000012", + "oid:0x15000000000360": "oid:0x1000000000012", + "oid:0x1500000000036d": "oid:0x1000000000012", + "oid:0x1500000000036e": "oid:0x1000000000012", + "oid:0x1500000000036f": "oid:0x1000000000012", + "oid:0x15000000000370": "oid:0x1000000000012", + "oid:0x15000000000371": "oid:0x1000000000012", + "oid:0x15000000000372": "oid:0x1000000000012", + "oid:0x15000000000373": "oid:0x1000000000012", + "oid:0x15000000000374": "oid:0x1000000000012", + "oid:0x15000000000375": "oid:0x1000000000012", + "oid:0x15000000000376": "oid:0x1000000000012", + "oid:0x1500000000037f": "oid:0x1000000000013", + "oid:0x15000000000380": "oid:0x1000000000013", + "oid:0x15000000000381": "oid:0x1000000000013", + "oid:0x15000000000382": "oid:0x1000000000013", + "oid:0x15000000000383": "oid:0x1000000000013", + "oid:0x15000000000384": "oid:0x1000000000013", + "oid:0x15000000000385": "oid:0x1000000000013", + "oid:0x15000000000386": "oid:0x1000000000013", + "oid:0x15000000000387": "oid:0x1000000000013", + "oid:0x15000000000388": "oid:0x1000000000013", + "oid:0x15000000000395": "oid:0x1000000000013", + "oid:0x15000000000396": "oid:0x1000000000013", + "oid:0x15000000000397": "oid:0x1000000000013", + "oid:0x15000000000398": "oid:0x1000000000013", + "oid:0x15000000000399": "oid:0x1000000000013", + "oid:0x1500000000039a": "oid:0x1000000000013", + "oid:0x1500000000039b": "oid:0x1000000000013", + "oid:0x1500000000039c": "oid:0x1000000000013", + "oid:0x1500000000039d": "oid:0x1000000000013", + "oid:0x1500000000039e": "oid:0x1000000000013", + "oid:0x150000000003a7": "oid:0x1000000000014", + "oid:0x150000000003a8": "oid:0x1000000000014", + "oid:0x150000000003a9": "oid:0x1000000000014", + "oid:0x150000000003aa": "oid:0x1000000000014", + "oid:0x150000000003ab": "oid:0x1000000000014", + "oid:0x150000000003ac": "oid:0x1000000000014", + "oid:0x150000000003ad": "oid:0x1000000000014", + "oid:0x150000000003ae": "oid:0x1000000000014", + "oid:0x150000000003af": "oid:0x1000000000014", + "oid:0x150000000003b0": "oid:0x1000000000014", + "oid:0x150000000003bd": "oid:0x1000000000014", + "oid:0x150000000003be": "oid:0x1000000000014", + "oid:0x150000000003bf": "oid:0x1000000000014", + "oid:0x150000000003c0": "oid:0x1000000000014", + "oid:0x150000000003c1": "oid:0x1000000000014", + "oid:0x150000000003c2": "oid:0x1000000000014", + "oid:0x150000000003c3": "oid:0x1000000000014", + "oid:0x150000000003c4": "oid:0x1000000000014", + "oid:0x150000000003c5": "oid:0x1000000000014", + "oid:0x150000000003c6": "oid:0x1000000000014" + }, + "COUNTERS_QUEUE_INDEX_MAP": { + "oid:0x15000000000357": "0", + "oid:0x15000000000358": "1", + "oid:0x15000000000359": "2", + "oid:0x1500000000035a": "3", + "oid:0x1500000000035b": "4", + "oid:0x1500000000035c": "5", + "oid:0x1500000000035d": "6", + "oid:0x1500000000035e": "7", + "oid:0x1500000000035f": "8", + "oid:0x15000000000360": "9", + "oid:0x1500000000036d": "20", + "oid:0x1500000000036e": "21", + "oid:0x1500000000036f": "22", + "oid:0x15000000000370": "23", + "oid:0x15000000000371": "24", + "oid:0x15000000000372": "25", + "oid:0x15000000000373": "26", + "oid:0x15000000000374": "27", + "oid:0x15000000000375": "28", + "oid:0x15000000000376": "29", + "oid:0x1500000000037f": "0", + "oid:0x15000000000380": "1", + "oid:0x15000000000381": "2", + "oid:0x15000000000382": "3", + "oid:0x15000000000383": "4", + "oid:0x15000000000384": "5", + "oid:0x15000000000385": "6", + "oid:0x15000000000386": "7", + "oid:0x15000000000387": "8", + "oid:0x15000000000388": "9", + "oid:0x15000000000395": "20", + "oid:0x15000000000396": "21", + "oid:0x15000000000397": "22", + "oid:0x15000000000398": "23", + "oid:0x15000000000399": "24", + "oid:0x1500000000039a": "25", + "oid:0x1500000000039b": "26", + "oid:0x1500000000039c": "27", + "oid:0x1500000000039d": "28", + "oid:0x1500000000039e": "29", + "oid:0x150000000003a7": "0", + "oid:0x150000000003a8": "1", + "oid:0x150000000003a9": "2", + "oid:0x150000000003aa": "3", + "oid:0x150000000003ab": "4", + "oid:0x150000000003ac": "5", + "oid:0x150000000003ad": "6", + "oid:0x150000000003ae": "7", + "oid:0x150000000003af": "8", + "oid:0x150000000003b0": "9", + "oid:0x150000000003bd": "20", + "oid:0x150000000003be": "21", + "oid:0x150000000003bf": "22", + "oid:0x150000000003c0": "23", + "oid:0x150000000003c1": "24", + "oid:0x150000000003c2": "25", + "oid:0x150000000003c3": "26", + "oid:0x150000000003c4": "27", + "oid:0x150000000003c5": "28", + "oid:0x150000000003c6": "29" + }, + "COUNTERS_QUEUE_TYPE_MAP": { + "oid:0x15000000000357": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000358": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000359": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1500000000035a": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1500000000035b": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1500000000035c": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1500000000035d": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1500000000035e": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1500000000035f": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000360": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1500000000036d": "SAI_QUEUE_TYPE_ALL", + "oid:0x1500000000036e": "SAI_QUEUE_TYPE_ALL", + "oid:0x1500000000036f": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000370": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000371": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000372": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000373": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000374": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000375": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000376": "SAI_QUEUE_TYPE_ALL", + "oid:0x1500000000037f": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000380": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000381": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000382": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000383": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000384": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000385": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000386": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000387": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000388": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x15000000000395": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000396": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000397": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000398": "SAI_QUEUE_TYPE_ALL", + "oid:0x15000000000399": "SAI_QUEUE_TYPE_ALL", + "oid:0x1500000000039a": "SAI_QUEUE_TYPE_ALL", + "oid:0x1500000000039b": "SAI_QUEUE_TYPE_ALL", + "oid:0x1500000000039c": "SAI_QUEUE_TYPE_ALL", + "oid:0x1500000000039d": "SAI_QUEUE_TYPE_ALL", + "oid:0x1500000000039e": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003a7": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003a8": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003a9": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003aa": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003ab": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003ac": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003ad": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003ae": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003af": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003b0": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x150000000003bd": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003be": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003bf": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003c0": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003c1": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003c2": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003c3": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003c4": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003c5": "SAI_QUEUE_TYPE_ALL", + "oid:0x150000000003c6": "SAI_QUEUE_TYPE_ALL" + }, + "USER_WATERMARKS:oid:0x1a00000000034f": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "100", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "100" + }, + "USER_WATERMARKS:oid:0x1a000000000350": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "101", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "101" + }, + "USER_WATERMARKS:oid:0x1a000000000351": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "102", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "102" + }, + "USER_WATERMARKS:oid:0x1a000000000352": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "103", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "103" + }, + "USER_WATERMARKS:oid:0x1a000000000353": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "104", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "104" + }, + "USER_WATERMARKS:oid:0x1a000000000354": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "105", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "105" + }, + "USER_WATERMARKS:oid:0x1a000000000355": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "106", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "106" + }, + "USER_WATERMARKS:oid:0x1a000000000356": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "107", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "107" + }, + "USER_WATERMARKS:oid:0x1a000000000377": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "400", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "400" + }, + "USER_WATERMARKS:oid:0x1a000000000378": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "401", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "401" + }, + "USER_WATERMARKS:oid:0x1a000000000379": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "402", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "402" + }, + "USER_WATERMARKS:oid:0x1a00000000037a": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "403", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "403" + }, + "USER_WATERMARKS:oid:0x1a00000000037b": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "404", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "404" + }, + "USER_WATERMARKS:oid:0x1a00000000037c": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "405", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "405" + }, + "USER_WATERMARKS:oid:0x1a00000000037d": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "406", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "406" + }, + "USER_WATERMARKS:oid:0x1a00000000037e": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "407", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "407" + }, + "USER_WATERMARKS:oid:0x1a00000000039f": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "800", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "800" + }, + "USER_WATERMARKS:oid:0x1a0000000003a0": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "801", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "801" + }, + "USER_WATERMARKS:oid:0x1a0000000003a1": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "802", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "802" + }, + "USER_WATERMARKS:oid:0x1a0000000003a2": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "803", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "803" + }, + "USER_WATERMARKS:oid:0x1a0000000003a3": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "804", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "804" + }, + "USER_WATERMARKS:oid:0x1a0000000003a4": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "805", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "805" + }, + "USER_WATERMARKS:oid:0x1a0000000003a5": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "806", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "806" + }, + "USER_WATERMARKS:oid:0x1a0000000003a6": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "807", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "807" + }, + "PERSISTENT_WATERMARKS:oid:0x1a00000000034f": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "200", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "200" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000350": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "201", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "201" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000351": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "202", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "202" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000352": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "203", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "203" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000353": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "204", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "204" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000354": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "205", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "205" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000355": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "206", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "206" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000356": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "207", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "207" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000377": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "500", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "500" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000378": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "501", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "501" + }, + "PERSISTENT_WATERMARKS:oid:0x1a000000000379": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "502", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "502" + }, + "PERSISTENT_WATERMARKS:oid:0x1a00000000037a": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "503", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "503" + }, + "PERSISTENT_WATERMARKS:oid:0x1a00000000037b": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "504", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "504" + }, + "PERSISTENT_WATERMARKS:oid:0x1a00000000037c": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "505", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "505" + }, + "PERSISTENT_WATERMARKS:oid:0x1a00000000037d": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "506", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "506" + }, + "PERSISTENT_WATERMARKS:oid:0x1a00000000037e": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "507", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "507" + }, + "PERSISTENT_WATERMARKS:oid:0x1a00000000039f": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "900", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "900" + }, + "PERSISTENT_WATERMARKS:oid:0x1a0000000003a0": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "901", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "901" + }, + "PERSISTENT_WATERMARKS:oid:0x1a0000000003a1": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "902", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "902" + }, + "PERSISTENT_WATERMARKS:oid:0x1a0000000003a2": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "903", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "903" + }, + "PERSISTENT_WATERMARKS:oid:0x1a0000000003a3": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "904", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "904" + }, + "PERSISTENT_WATERMARKS:oid:0x1a0000000003a4": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "905", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "905" + }, + "PERSISTENT_WATERMARKS:oid:0x1a0000000003a5": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "906", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "906" + }, + "PERSISTENT_WATERMARKS:oid:0x1a0000000003a6": { + "SAI_INGRESS_PRIORITY_GROUP_STAT_SHARED_WATERMARK_BYTES": "907", + "SAI_INGRESS_PRIORITY_GROUP_STAT_XOFF_ROOM_WATERMARK_BYTES": "907" + }, + "USER_WATERMARKS:oid:0x15000000000357": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "2057328" + }, + "USER_WATERMARKS:oid:0x15000000000358": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "2056704" + }, + "USER_WATERMARKS:oid:0x15000000000359": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000035a": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000035b": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000035c": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000035d": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000035e": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "2704" + }, + "USER_WATERMARKS:oid:0x1500000000035f": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "416" + }, + "USER_WATERMARKS:oid:0x15000000000360": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "20" + }, + "USER_WATERMARKS:oid:0x1500000000036d": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "1234567" + }, + "USER_WATERMARKS:oid:0x1500000000036e": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "7654321" + }, + "USER_WATERMARKS:oid:0x1500000000036f": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000370": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000371": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000372": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "20" + }, + "USER_WATERMARKS:oid:0x15000000000373": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "500" + }, + "USER_WATERMARKS:oid:0x15000000000374": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "200" + }, + "USER_WATERMARKS:oid:0x15000000000375": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000376": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "10" + }, + "USER_WATERMARKS:oid:0x1500000000037f": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000380": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000381": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000382": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "1986" + }, + "USER_WATERMARKS:oid:0x15000000000383": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "2567" + }, + "USER_WATERMARKS:oid:0x15000000000384": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000385": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000386": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000387": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000388": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000395": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000396": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000397": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x15000000000398": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "1986" + }, + "USER_WATERMARKS:oid:0x15000000000399": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "2567" + }, + "USER_WATERMARKS:oid:0x1500000000039a": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000039b": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000039c": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000039d": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x1500000000039e": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003a7": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003a8": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003a9": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "1040" + }, + "USER_WATERMARKS:oid:0x150000000003aa": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003ab": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003ac": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003ad": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003ae": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003af": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "8528" + }, + "USER_WATERMARKS:oid:0x150000000003b0": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "7696" + }, + "USER_WATERMARKS:oid:0x150000000003bd": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "20" + }, + "USER_WATERMARKS:oid:0x150000000003be": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "5" + }, + "USER_WATERMARKS:oid:0x150000000003bf": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "1998" + }, + "USER_WATERMARKS:oid:0x150000000003c0": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003c1": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003c2": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003c3": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003c4": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "USER_WATERMARKS:oid:0x150000000003c5": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "8528" + }, + "USER_WATERMARKS:oid:0x150000000003c6": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "7696" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000357": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "3057328" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000358": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "3056704" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000359": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x1500000000035a": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x1500000000035b": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x1500000000035c": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x1500000000035d": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x1500000000035e": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "3704" + }, + "PERSISTENT_WATERMARKS:oid:0x1500000000035f": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "516" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000360": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "30" + }, + "PERSISTENT_WATERMARKS:oid:0x1500000000037f": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000380": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000381": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000382": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "2986" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000383": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "3567" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000384": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000385": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000386": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000387": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x15000000000388": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003a7": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003a8": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003a9": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "2040" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003aa": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003ab": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003ac": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003ad": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003ae": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "0" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003af": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "9528" + }, + "PERSISTENT_WATERMARKS:oid:0x150000000003b0": { + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "8696" + }, + "USER_WATERMARKS:oid:0x18000000000b64": { + "SAI_BUFFER_POOL_STAT_WATERMARK_BYTES": "1000" + }, + "USER_WATERMARKS:oid:0x18000000000b65": { + "SAI_BUFFER_POOL_STAT_WATERMARK_BYTES": "2000" + }, + "USER_WATERMARKS:oid:0x18000000000b66": { + "SAI_BUFFER_POOL_STAT_WATERMARK_BYTES": "3000", + "SAI_BUFFER_POOL_STAT_XOFF_ROOM_WATERMARK_BYTES": "432640" + }, + "PERSISTENT_WATERMARKS:oid:0x18000000000b64": { + "SAI_BUFFER_POOL_STAT_WATERMARK_BYTES": "2000" + }, + "PERSISTENT_WATERMARKS:oid:0x18000000000b65": { + "SAI_BUFFER_POOL_STAT_WATERMARK_BYTES": "3000" + }, + "PERSISTENT_WATERMARKS:oid:0x18000000000b66": { + "SAI_BUFFER_POOL_STAT_WATERMARK_BYTES": "4000", + "SAI_BUFFER_POOL_STAT_XOFF_ROOM_WATERMARK_BYTES": "863616" + }, + "COUNTERS:oid:0x1500000000034e":{ + "SAI_COUNTER_STAT_PACKETS": 100, + "SAI_COUNTER_STAT_BYTES": 2000 + }, + "COUNTERS:oid:0x1600000000034e":{ + "SAI_COUNTER_STAT_PACKETS": 100, + "SAI_COUNTER_STAT_BYTES": 2000 + }, + "COUNTERS:oid:0x1600000000034f":{ + "SAI_COUNTER_STAT_PACKETS": 1000, + "SAI_COUNTER_STAT_BYTES": 2000 + }, + "COUNTERS:oid:0x1600000000035e":{ + "SAI_COUNTER_STAT_PACKETS": 50, + "SAI_COUNTER_STAT_BYTES": 1000 + }, + "COUNTERS:oid:0x1600000000035f":{ + "SAI_COUNTER_STAT_PACKETS": 1000, + "SAI_COUNTER_STAT_BYTES": 25000 + } +} diff --git a/tests/wm_input/wm_test_vectors.py b/tests/wm_input/wm_test_vectors.py index 336afdc42..93d9faa4c 100644 --- a/tests/wm_input/wm_test_vectors.py +++ b/tests/wm_input/wm_test_vectors.py @@ -61,6 +61,10 @@ Ethernet8 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A """ +show_queue_wm_multicast_neg_output="""\ +Object map from the COUNTERS_DB is empty because the multicast queues are not configured in the CONFIG_DB! +""" + show_queue_wm_all_output="""\ Egress shared pool occupancy per all queues: Port ALL20 ALL21 ALL22 ALL23 ALL24 ALL25 ALL26 ALL27 ALL28 ALL29 @@ -140,6 +144,10 @@ 'rc_output': show_queue_wm_multicast_output } ], + 'show_q_wm_multicast_neg' : [ { 'cmd' : ['queue', 'watermark', 'multicast'], + 'rc_output': show_queue_wm_multicast_neg_output + } + ], 'show_q_pwm_multicast' : [ {'cmd' : ['queue', 'persistent-watermark', 'multicast'], 'rc_output': show_queue_wm_multicast_output } diff --git a/utilities_common/auto_techsupport_helper.py b/utilities_common/auto_techsupport_helper.py index 4eaae933b..f9382bf2a 100644 --- a/utilities_common/auto_techsupport_helper.py +++ b/utilities_common/auto_techsupport_helper.py @@ -1,4 +1,5 @@ import os +import re import glob import time import subprocess @@ -13,7 +14,8 @@ "CFG_CORE_USAGE", "CFG_SINCE", "FEATURE", "STATE_DB", "TS_MAP", "CORE_DUMP", "TIMESTAMP", "CONTAINER", "TIME_BUF", "SINCE_DEFAULT", "TS_PTRN_GLOB", "EXT_LOCKFAIL", "EXT_RETRY", - "EXT_SUCCESS", "MAX_RETRY_LIMIT" + "EXT_SUCCESS", "MAX_RETRY_LIMIT", "TS_GLOBAL_TIMEOUT", + "EVENT_TYPE", "EVENT_TYPE_CORE", "EVENT_TYPE_MEMORY" ] + [ # Methods "verify_recent_file_creation", "get_ts_dumps", @@ -22,7 +24,8 @@ "pretty_size", "cleanup_process", "subprocess_exec", - "trim_masic_suffix" + "trim_masic_suffix", + "invoke_ts_command_rate_limited", ] @@ -35,8 +38,9 @@ TS_PTRN = "sonic_dump_.*tar.*" # Regex Exp TS_PTRN_GLOB = "sonic_dump_*tar*" # Glob Exp -# CONFIG DB Attributes +# DBs identifiers CFG_DB = "CONFIG_DB" +STATE_DB = "STATE_DB" # AUTO_TECHSUPPORT|GLOBAL table attributes AUTO_TS = "AUTO_TECHSUPPORT|GLOBAL" @@ -57,9 +61,19 @@ CORE_DUMP = "core_dump" TIMESTAMP = "timestamp" CONTAINER = "container_name" +EVENT_TYPE = "event_type" + +EVENT_TYPE_CORE = "core" +EVENT_TYPE_MEMORY = "memory" TIME_BUF = 20 SINCE_DEFAULT = "2 days ago" +TS_GLOBAL_TIMEOUT = "60" + +# Explicity Pass this to the subprocess invoking techsupport +ENV_VAR = os.environ +PATH_PREV = ENV_VAR["PATH"] if "PATH" in ENV_VAR else "" +ENV_VAR["PATH"] = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:" + PATH_PREV # Techsupport Exit Codes EXT_LOCKFAIL = 2 @@ -192,3 +206,130 @@ def trim_masic_suffix(container_name): break index = index - 1 return "".join(arr) + +def get_since_arg(db): + """Get since configuration from AUTO_TECHSUPPORT table or default value""" + since_cfg = db.get(CFG_DB, AUTO_TS, CFG_SINCE) + if not since_cfg: + return SINCE_DEFAULT + rc, _, stderr = subprocess_exec(["date", "--date={}".format(since_cfg)], env=ENV_VAR) + if rc == 0: + return since_cfg + return SINCE_DEFAULT + + +def parse_ts_dump_name(ts_stdout): + """ Figure out the ts_dump name from the techsupport stdout """ + matches = re.findall(TS_PTRN, ts_stdout) + if matches: + return matches[-1] + syslog.syslog(syslog.LOG_ERR, "stdout of the 'show techsupport' cmd doesn't have the dump name") + return "" + + +def invoke_ts_cmd(db, num_retry=0): + """Invoke techsupport generation command""" + since_cfg = get_since_arg(db) + cmd_opts = ["show", "techsupport", "--silent", "--global-timeout", TS_GLOBAL_TIMEOUT, "--since", since_cfg] + cmd = " ".join(cmd_opts) + rc, stdout, stderr = subprocess_exec(cmd_opts, env=ENV_VAR) + new_dump = "" + if rc == EXT_LOCKFAIL: + syslog.syslog(syslog.LOG_NOTICE, "Another instance of techsupport running, aborting this. stderr: {}".format(stderr)) + elif rc == EXT_RETRY: + if num_retry <= MAX_RETRY_LIMIT: + return invoke_ts_cmd(db, num_retry+1) + else: + syslog.syslog(syslog.LOG_ERR, "MAX_RETRY_LIMIT for show techsupport invocation exceeded, stderr: {}".format(stderr)) + elif rc != EXT_SUCCESS: + syslog.syslog(syslog.LOG_ERR, "show techsupport failed with exit code {}, stderr: {}".format(rc, stderr)) + else: # EXT_SUCCESS + new_dump = parse_ts_dump_name(stdout) # Parse the dump name + if not new_dump: + syslog.syslog(syslog.LOG_ERR, "{} was run, but no techsupport dump is found".format(cmd)) + else: + syslog.syslog(syslog.LOG_INFO, "{} is successful, {} is created".format(cmd, new_dump)) + return new_dump + + +def get_ts_map(db): + """Create ts_dump & creation_time map""" + ts_map = {} + ts_keys = db.keys(STATE_DB, TS_MAP+"*") + if not ts_keys: + return ts_map + for ts_key in ts_keys: + data = db.get_all(STATE_DB, ts_key) + if not data: + continue + container_name = data.get(CONTAINER, "") + creation_time = data.get(TIMESTAMP, "") + try: + creation_time = int(creation_time) + except Exception: + continue # if the creation time is invalid, skip the entry + ts_dump = ts_key.split("|")[-1] + if container_name not in ts_map: + ts_map[container_name] = [] + ts_map[container_name].append((int(creation_time), ts_dump)) + for container_name in ts_map: + ts_map[container_name].sort() + return ts_map + + +def verify_rate_limit_intervals(db, global_cooloff, container_cooloff, container): + """Verify both the global and per-proc rate_limit_intervals have passed""" + curr_ts_list = get_ts_dumps(True) + if global_cooloff and curr_ts_list: + last_ts_dump_creation = os.path.getmtime(curr_ts_list[-1]) + if time.time() - last_ts_dump_creation < global_cooloff: + msg = "Global rate_limit_interval period has not passed. Techsupport Invocation is skipped" + syslog.syslog(msg) + return False + + ts_map = get_ts_map(db) + if container_cooloff and container in ts_map: + last_creation_time = ts_map[container][0][0] + if time.time() - last_creation_time < container_cooloff: + msg = "Per Container rate_limit_interval for {} has not passed. Techsupport Invocation is skipped" + syslog.syslog(msg.format(container)) + return False + return True + + +def write_to_state_db(db, timestamp, ts_dump, event_type, event_data, container=None): + name = strip_ts_ext(ts_dump) + key = TS_MAP + "|" + name + db.set(STATE_DB, key, TIMESTAMP, str(timestamp)) + db.set(STATE_DB, key, EVENT_TYPE, event_type) + for event_data_key, event_data_value in event_data.items(): + db.set(STATE_DB, key, event_data_key, event_data_value) + if container: + db.set(STATE_DB, key, CONTAINER, container) + + +def invoke_ts_command_rate_limited(db, event_type, event_data, container=None): + """Invoke techsupport generation command accounting the rate limit""" + global_cooloff = db.get(CFG_DB, AUTO_TS, COOLOFF) + if container: + container_cooloff = db.get( + CFG_DB, FEATURE.format(container), COOLOFF + ) + else: + container_cooloff = 0.0 + + try: + global_cooloff = float(global_cooloff) + except ValueError: + global_cooloff = 0.0 + + try: + container_cooloff = float(container_cooloff) + except ValueError: + container_cooloff = 0.0 + + cooloff_passed = verify_rate_limit_intervals(db, global_cooloff, container_cooloff, container) + if cooloff_passed: + new_file = invoke_ts_cmd(db) + if new_file: + write_to_state_db(db, int(time.time()), new_file, event_type, event_data, container) diff --git a/utilities_common/bgp_util.py b/utilities_common/bgp_util.py index 3b2ef99a1..61d42d949 100644 --- a/utilities_common/bgp_util.py +++ b/utilities_common/bgp_util.py @@ -1,12 +1,13 @@ import ipaddress import json import re +import sys import click import utilities_common.cli as clicommon import utilities_common.multi_asic as multi_asic_util from natsort import natsorted -from sonic_py_common import multi_asic +from sonic_py_common import multi_asic, device_info from tabulate import tabulate from utilities_common import constants @@ -37,6 +38,15 @@ def is_bgp_neigh_present(neighbor_ip, namespace=multi_asic.DEFAULT_NAMESPACE): return False +def is_bgp_feature_state_enabled(namespace=multi_asic.DEFAULT_NAMESPACE): + config_db = multi_asic.connect_config_db_for_ns(namespace) + bgp= config_db.get_entry("FEATURE","bgp") + if "state" in bgp: + if bgp["state"] == "enabled": + return True + return False + + def is_ipv4_address(ip_address): """ Checks if given ip is ipv4 @@ -105,6 +115,18 @@ def get_bgp_neighbors_dict(namespace=multi_asic.DEFAULT_NAMESPACE): return static_neighbors, dynamic_neighbors +def get_external_bgp_neighbors_dict(namespace=multi_asic.DEFAULT_NAMESPACE): + """ + Uses config_db to get the external bgp neighbors and names in dictionary format + :return: dictionary of external bgp neighbors + """ + config_db = multi_asic.connect_config_db_for_ns(namespace) + external_neighbors = get_neighbor_dict_from_table(config_db, 'BGP_NEIGHBOR') + bgp_monitors = get_neighbor_dict_from_table(config_db, 'BGP_MONITORS') + external_neighbors.update(bgp_monitors) + return external_neighbors + + def get_bgp_neighbor_ip_to_name(ip, static_neighbors, dynamic_neighbors): """ return neighbor name for the ip provided @@ -175,7 +197,8 @@ def get_neighbor_dict_from_table(db, table_name): return neighbor_dict -def run_bgp_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE, vtysh_shell_cmd=constants.VTYSH_COMMAND): +def run_bgp_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE, + vtysh_shell_cmd=constants.VTYSH_COMMAND, exit_on_fail=True): bgp_instance_id = ' ' output = None if bgp_namespace is not multi_asic.DEFAULT_NAMESPACE: @@ -185,15 +208,37 @@ def run_bgp_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE, vtysh cmd = 'sudo {} {} -c "{}"'.format( vtysh_shell_cmd, bgp_instance_id, vtysh_cmd) try: - output = clicommon.run_command(cmd, return_cmd=True) + output, ret = clicommon.run_command(cmd, return_cmd=True) + if ret != 0: + click.echo(output.rstrip('\n')) + output = "" if not exit_on_fail else sys.exit(ret) except Exception: ctx = click.get_current_context() - ctx.fail("Unable to get summary from bgp {}".format(bgp_instance_id)) + ctx.fail("Unable to get summary from bgp {}".format(bgp_instance_id)) if exit_on_fail else None return output -def run_bgp_show_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE): - return run_bgp_command(vtysh_cmd, bgp_namespace, constants.RVTYSH_COMMAND) + +def run_bgp_show_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE, exit_on_fail=True): + output = run_bgp_command(vtysh_cmd, bgp_namespace, constants.RVTYSH_COMMAND, exit_on_fail) + # handle the the alias mode in the following code + if output is not None: + if clicommon.get_interface_naming_mode() == "alias" and re.search("show ip|ipv6 route", vtysh_cmd): + iface_alias_converter = clicommon.InterfaceAliasConverter() + route_info =json.loads(output) + for route, info in route_info.items(): + for i in range(0, len(info)): + if 'nexthops' in info[i]: + for j in range(0, len(info[i]['nexthops'])): + intf_name = "" + if 'interfaceName' in info[i]['nexthops'][j]: + intf_name = info[i]['nexthops'][j]['interfaceName'] + alias = iface_alias_converter.name_to_alias(intf_name) + if alias is not None: + info[i]['nexthops'][j]['interfaceName'] = alias + output= json.dumps(route_info) + return output + def get_bgp_summary_from_all_bgp_instances(af, namespace, display): @@ -208,19 +253,42 @@ def get_bgp_summary_from_all_bgp_instances(af, namespace, display): bgp_summary = {} cmd_output_json = {} + for ns in device.get_ns_list_based_on_options(): + has_bgp_neighbors = True cmd_output = run_bgp_show_command(vtysh_cmd, ns) + device.current_namespace = ns try: cmd_output_json = json.loads(cmd_output) except ValueError: ctx.fail("bgp summary from bgp container not in json format") + # no bgp neighbors found so print basic device bgp info if key not in cmd_output_json: - ctx.fail("bgp summary from bgp container in invalid format") - - device.current_namespace = ns + has_bgp_neighbors = False + else: + # for multi asic devices or chassis linecards, the output of 'show ip bgp summary json' + # will have both internal and external bgp neighbors + # So, check if the current namespace has external bgp neighbors. + # If not, treat it as no bgp neighbors + if (device.get_display_option() == constants.DISPLAY_EXTERNAL and + (device_info.is_chassis() or multi_asic.is_multi_asic())): + external_peers_list_in_cfg_db = get_external_bgp_neighbors_dict( + device.current_namespace).keys() + if not external_peers_list_in_cfg_db: + has_bgp_neighbors = False + + if not has_bgp_neighbors: + vtysh_bgp_json_cmd = "show ip bgp json" + no_neigh_cmd_output = run_bgp_show_command(vtysh_bgp_json_cmd, ns) + try: + no_neigh_cmd_output_json = json.loads(no_neigh_cmd_output) + except ValueError: + ctx.fail("bgp summary from bgp container not in json format") + + out_cmd = cmd_output_json[key] if has_bgp_neighbors else no_neigh_cmd_output_json + process_bgp_summary_json(bgp_summary, out_cmd, device, has_bgp_neighbors=has_bgp_neighbors) - process_bgp_summary_json(bgp_summary, cmd_output_json[key], device) return bgp_summary @@ -242,7 +310,7 @@ def display_bgp_summary(bgp_summary, af): for router_info in bgp_summary['router_info']: for k in router_info: v = router_info[k] - instance = "{}: ".format(k) if k is not "" else "" + instance = "{}: ".format(k) if k != "" else "" click.echo( "{}BGP router identifier {}, local AS number {} vrf-id {}" .format( instance, v['router_id'], v['as'], v['vrf'])) @@ -266,66 +334,87 @@ def display_bgp_summary(bgp_summary, af): ctx.fail("{} missing in the bgp_summary".format(e.args[0])) -def process_bgp_summary_json(bgp_summary, cmd_output, device): +def process_bgp_summary_json(bgp_summary, cmd_output, device, has_bgp_neighbors=True): ''' This function process the frr output in json format from a bgp instance and stores the need values in the a bgp_summary ''' - static_neighbors, dynamic_neighbors = get_bgp_neighbors_dict( - device.current_namespace) + if has_bgp_neighbors: + static_neighbors, dynamic_neighbors = get_bgp_neighbors_dict( + device.current_namespace) try: # add all the router level fields - bgp_summary['peerCount'] = bgp_summary.get( - 'peerCount', 0) + cmd_output['peerCount'] - bgp_summary['peerMemory'] = bgp_summary.get( - 'peerMemory', 0) + cmd_output['peerMemory'] - bgp_summary['ribCount'] = bgp_summary.get( - 'ribCount', 0) + cmd_output['ribCount'] - bgp_summary['ribMemory'] = bgp_summary.get( - 'ribMemory', 0) + cmd_output['ribMemory'] - bgp_summary['peerGroupCount'] = bgp_summary.get( - 'peerGroupCount', 0) + cmd_output['peerGroupCount'] - bgp_summary['peerGroupMemory'] = bgp_summary.get( - 'peerGroupMemory', 0) + cmd_output['peerGroupMemory'] + if has_bgp_neighbors: + # when there are bgp neighbors, fill information from the dict + bgp_summary['peerCount'] = bgp_summary.get( + 'peerCount', 0) + cmd_output['peerCount'] + bgp_summary['peerMemory'] = bgp_summary.get( + 'peerMemory', 0) + cmd_output['peerMemory'] + bgp_summary['ribCount'] = bgp_summary.get( + 'ribCount', 0) + cmd_output['ribCount'] + bgp_summary['ribMemory'] = bgp_summary.get( + 'ribMemory', 0) + cmd_output['ribMemory'] + bgp_summary['peerGroupCount'] = bgp_summary.get( + 'peerGroupCount', 0) + cmd_output['peerGroupCount'] + bgp_summary['peerGroupMemory'] = bgp_summary.get( + 'peerGroupMemory', 0) + cmd_output['peerGroupMemory'] + else: + # when there are no bgp neighbors, all values are zero + bgp_summary['peerCount'] = bgp_summary.get( + 'peerCount', 0) + 0 + bgp_summary['peerMemory'] = bgp_summary.get( + 'peerCount', 0) + 0 + bgp_summary['ribCount'] = bgp_summary.get( + 'peerCount', 0) + 0 + bgp_summary['ribMemory'] = bgp_summary.get( + 'peerCount', 0) + 0 + bgp_summary['peerGroupCount'] = bgp_summary.get( + 'peerCount', 0) + 0 + bgp_summary['peerGroupMemory'] = bgp_summary.get( + 'peerCount', 0) + 0 # store instance level field is seperate dict router_info = {} router_info['router_id'] = cmd_output['routerId'] router_info['vrf'] = cmd_output['vrfId'] - router_info['as'] = cmd_output['as'] + router_info['as'] = cmd_output['as'] if has_bgp_neighbors else cmd_output['localAS'] router_info['tbl_ver'] = cmd_output['tableVersion'] bgp_summary.setdefault('router_info', []).append( {device.current_namespace: router_info}) # store all the peers in the list - for peer_ip, value in cmd_output['peers'].items(): - peers = [] - # if display option is 'frontend', internal bgp neighbors will not - # be displayed - if device.skip_display(constants.BGP_NEIGH_OBJ, peer_ip): - continue - - peers.append(peer_ip) - peers.append(value['version']) - peers.append(value['remoteAs']) - peers.append(value['msgRcvd']) - peers.append(value['msgSent']) - peers.append(value['tableVersion']) - peers.append(value['inq']) - peers.append(value['outq']) - peers.append(value['peerUptime']) - if value['state'] == 'Established': - peers.append(value['pfxRcd']) - else: - peers.append(value['state']) - - # Get the bgp neighbour name ans store it - neigh_name = get_bgp_neighbor_ip_to_name( - peer_ip, static_neighbors, dynamic_neighbors) - peers.append(neigh_name) - - bgp_summary.setdefault('peers', []).append(peers) + if has_bgp_neighbors: + for peer_ip, value in cmd_output['peers'].items(): + peers = [] + # if display option is 'frontend', internal bgp neighbors will not + # be displayed + if device.skip_display(constants.BGP_NEIGH_OBJ, peer_ip): + continue + + peers.append(peer_ip) + peers.append(value['version']) + peers.append(value['remoteAs']) + peers.append(value['msgRcvd']) + peers.append(value['msgSent']) + peers.append(value['tableVersion']) + peers.append(value['inq']) + peers.append(value['outq']) + peers.append(value['peerUptime']) + if value['state'] == 'Established': + peers.append(value['pfxRcd']) + else: + peers.append(value['state']) + + # Get the bgp neighbour name ans store it + neigh_name = get_bgp_neighbor_ip_to_name( + peer_ip, static_neighbors, dynamic_neighbors) + peers.append(neigh_name) + + bgp_summary.setdefault('peers', []).append(peers) + else: + if 'peers' not in bgp_summary: + bgp_summary['peers'] = [] except KeyError as e: ctx = click.get_current_context() ctx.fail("{} missing in the bgp_summary".format(e.args[0])) diff --git a/utilities_common/cli.py b/utilities_common/cli.py index c05069adc..45b2cc5f3 100644 --- a/utilities_common/cli.py +++ b/utilities_common/cli.py @@ -4,9 +4,11 @@ import re import subprocess import sys +import shutil import click import json +import lazy_object_proxy import netaddr from natsort import natsorted @@ -183,8 +185,8 @@ def alias_to_name(self, interface_alias): # interface_alias not in port_dict. Just return interface_alias return interface_alias if sub_intf_sep_idx == -1 else interface_alias + VLAN_SUB_INTERFACE_SEPARATOR + vlan_id -# Global class instance for SONiC interface name to alias conversion -iface_alias_converter = InterfaceAliasConverter() +# Lazy global class instance for SONiC interface name to alias conversion +iface_alias_converter = lazy_object_proxy.Proxy(lambda: InterfaceAliasConverter()) def get_interface_naming_mode(): mode = os.getenv('SONIC_CLI_IFACE_MODE') @@ -249,10 +251,10 @@ def is_vlanid_in_range(vid): return False -def check_if_vlanid_exist(config_db, vlan): +def check_if_vlanid_exist(config_db, vlan, table_name='VLAN'): """Check if vlan id exits in the config db or ot""" - if len(config_db.get_entry('VLAN', vlan)) != 0: + if len(config_db.get_entry(table_name, vlan)) != 0: return True return False @@ -292,7 +294,7 @@ def is_port_router_interface(config_db, port): interface_table = config_db.get_table('INTERFACE') for intf in interface_table: - if port == intf[0]: + if port == intf: return True return False @@ -302,7 +304,7 @@ def is_pc_router_interface(config_db, pc): pc_interface_table = config_db.get_table('PORTCHANNEL_INTERFACE') for intf in pc_interface_table: - if pc == intf[0]: + if pc == intf: return True return False @@ -527,7 +529,9 @@ def run_command(command, display_cmd=False, ignore_error=False, return_cmd=False # No conversion needed for intfutil commands as it already displays # both SONiC interface name and alias name for all interfaces. - if get_interface_naming_mode() == "alias" and not command.startswith("intfutil"): + # IP route table cannot be handled in function run_command_in_alias_mode since it is in JSON format + # with a list for next hops + if get_interface_naming_mode() == "alias" and not command.startswith("intfutil") and not re.search("show ip|ipv6 route", command): run_command_in_alias_mode(command) sys.exit(0) @@ -535,7 +539,7 @@ def run_command(command, display_cmd=False, ignore_error=False, return_cmd=False if return_cmd: output = proc.communicate()[0] - return output + return output, proc.returncode if not interactive_mode: (out, err) = proc.communicate() @@ -593,6 +597,7 @@ def is_interface_in_config_db(config_db, interface_name): if (not interface_name in config_db.get_keys('VLAN_INTERFACE') and not interface_name in config_db.get_keys('INTERFACE') and not interface_name in config_db.get_keys('PORTCHANNEL_INTERFACE') and + not interface_name in config_db.get_keys('VLAN_SUB_INTERFACE') and not interface_name == 'null'): return False @@ -661,3 +666,41 @@ def query_yes_no(question, default="yes"): else: sys.stdout.write("Please respond with 'yes' or 'no' " "(or 'y' or 'n').\n") + + +class UserCache: + """ General purpose cache directory created per user """ + + CACHE_DIR = "/tmp/cache/" + + def __init__(self, app_name=None, tag=None): + """ Initialize UserCache and create a cache directory if it does not exist. + + Args: + tag (str): Tag the user cache. Different tags correspond to different cache directories even for the same user. + """ + self.uid = os.getuid() + self.app_name = os.path.basename(sys.argv[0]) if app_name is None else app_name + self.cache_directory_suffix = str(self.uid) if tag is None else f"{self.uid}-{tag}" + self.cache_directory_app = os.path.join(self.CACHE_DIR, self.app_name) + + prev_umask = os.umask(0) + try: + os.makedirs(self.cache_directory_app, exist_ok=True) + finally: + os.umask(prev_umask) + + self.cache_directory = os.path.join(self.cache_directory_app, self.cache_directory_suffix) + os.makedirs(self.cache_directory, exist_ok=True) + + def get_directory(self): + """ Return the cache directory path """ + return self.cache_directory + + def remove(self): + """ Remove the content of the cache directory """ + shutil.rmtree(self.cache_directory) + + def remove_all(self): + """ Remove the content of the cache for all users """ + shutil.rmtree(self.cache_directory_app) diff --git a/utilities_common/dhcp_relay_util.py b/utilities_common/dhcp_relay_util.py new file mode 100644 index 000000000..b9c0b4e20 --- /dev/null +++ b/utilities_common/dhcp_relay_util.py @@ -0,0 +1,20 @@ +import click +import utilities_common.cli as clicommon + + +def restart_dhcp_relay_service(): + """ + Restart dhcp_relay service + """ + click.echo("Restarting DHCP relay service...") + clicommon.run_command("systemctl stop dhcp_relay", display_cmd=False) + clicommon.run_command("systemctl reset-failed dhcp_relay", display_cmd=False) + clicommon.run_command("systemctl start dhcp_relay", display_cmd=False) + + +def handle_restart_dhcp_relay_service(): + try: + restart_dhcp_relay_service() + except SystemExit as e: + ctx = click.get_current_context() + ctx.fail("Restart service dhcp_relay failed with error {}".format(e)) diff --git a/utilities_common/general.py b/utilities_common/general.py index a2f9eaf2a..6ed70a46a 100644 --- a/utilities_common/general.py +++ b/utilities_common/general.py @@ -30,4 +30,15 @@ def load_db_config(): swsscommon.SonicDBConfig.load_sonic_global_db_config() else: if not swsscommon.SonicDBConfig.isInit(): - swsscommon.SonicDBConfig.load_sonic_db_config() \ No newline at end of file + swsscommon.SonicDBConfig.load_sonic_db_config() + +def get_optional_value_for_key_in_config_tbl(config_db, port, key, table): + info_dict = {} + info_dict = config_db.get_entry(table, port) + if info_dict is None: + return None + + value = info_dict.get(key, None) + + return value + diff --git a/utilities_common/intf_filter.py b/utilities_common/intf_filter.py index be5ddaed8..190445c69 100755 --- a/utilities_common/intf_filter.py +++ b/utilities_common/intf_filter.py @@ -2,6 +2,7 @@ SONIC_PORT_NAME_PREFIX = "Ethernet" SONIC_LAG_NAME_PREFIX = "PortChannel" +SONIC_BACK_PORT_NAME_PREFIX = "Ethernet-BP" def parse_interface_in_filter(intf_filter): intf_fs = [] @@ -11,7 +12,19 @@ def parse_interface_in_filter(intf_filter): fs = intf_filter.split(',') for x in fs: - if '-' in x: + if x.startswith(SONIC_BACK_PORT_NAME_PREFIX): + intf = SONIC_BACK_PORT_NAME_PREFIX + x = x.split(intf)[1] + if '-' in x: + start = x.split('-')[0] + end = x.split('-')[1] + if not start.isdigit() or not end.isdigit(): + continue + for i in range(int(start), int(end)+1): + intf_fs.append(intf+str(i)) + else: + intf_fs.append(intf+x) + elif '-' in x: # handle range if not x.startswith(SONIC_PORT_NAME_PREFIX) and not x.startswith(SONIC_LAG_NAME_PREFIX): continue @@ -40,4 +53,3 @@ def interface_in_filter(intf, filter): return True return False - diff --git a/utilities_common/multi_asic.py b/utilities_common/multi_asic.py index 7e704befe..b1f24e12e 100644 --- a/utilities_common/multi_asic.py +++ b/utilities_common/multi_asic.py @@ -63,12 +63,13 @@ def get_ns_list_based_on_options(self): namespaces = multi_asic.get_all_namespaces() if self.namespace_option is None: if self.get_display_option() == constants.DISPLAY_ALL: - ns_list = namespaces['front_ns'] + namespaces['back_ns'] + ns_list = namespaces['front_ns'] + namespaces['back_ns'] + namespaces['fabric_ns'] else: ns_list = namespaces['front_ns'] else: if self.namespace_option not in namespaces['front_ns'] and \ - self.namespace_option not in namespaces['back_ns']: + self.namespace_option not in namespaces['back_ns'] and \ + self.namespace_option not in namespaces['fabric_ns']: raise ValueError( 'Unknown Namespace {}'.format(self.namespace_option)) ns_list = [self.namespace_option] @@ -96,19 +97,21 @@ def multi_asic_display_default_option(): return constants.DISPLAY_EXTERNAL +_multi_asic_click_option_display = click.option('--display', + '-d', 'display', + default=multi_asic_display_default_option(), + show_default=True, + type=click.Choice(multi_asic_display_choices()), + help='Show internal interfaces') +_multi_asic_click_option_namespace = click.option('--namespace', + '-n', 'namespace', + default=None, + type=click.Choice(multi_asic_ns_choices()), + show_default=True, + help='Namespace name or all') _multi_asic_click_options = [ - click.option('--display', - '-d', 'display', - default=multi_asic_display_default_option(), - show_default=True, - type=click.Choice(multi_asic_display_choices()), - help='Show internal interfaces'), - click.option('--namespace', - '-n', 'namespace', - default=None, - type=click.Choice(multi_asic_ns_choices()), - show_default=True, - help='Namespace name or all'), + _multi_asic_click_option_display, + _multi_asic_click_option_namespace, ] def multi_asic_namespace_validation_callback(ctx, param, value): @@ -122,6 +125,9 @@ def multi_asic_click_options(func): func = option(func) return func +def multi_asic_click_option_namespace(func): + func = _multi_asic_click_option_namespace(func) + return func def run_on_multi_asic(func): ''' diff --git a/utilities_common/platform_sfputil_helper.py b/utilities_common/platform_sfputil_helper.py index a7f447766..741b5334e 100644 --- a/utilities_common/platform_sfputil_helper.py +++ b/utilities_common/platform_sfputil_helper.py @@ -6,7 +6,11 @@ from sonic_py_common import multi_asic, device_info platform_sfputil = None +platform_chassis = None +platform_sfp_base = None +platform_porttab_mapping_read = False +RJ45_PORT_TYPE = 'RJ45' def load_platform_sfputil(): @@ -22,6 +26,10 @@ def load_platform_sfputil(): def platform_sfputil_read_porttab_mappings(): + global platform_porttab_mapping_read + + if platform_porttab_mapping_read: + return 0 try: @@ -35,6 +43,8 @@ def platform_sfputil_read_porttab_mappings(): # For single ASIC platforms we pass port_config_file_path and the asic_inst as 0 port_config_file_path = device_info.get_path_to_port_config_file() platform_sfputil.read_porttab_mappings(port_config_file_path, 0) + + platform_porttab_mapping_read = True except Exception as e: click.echo("Error reading port info (%s)" % str(e)) sys.exit(1) @@ -43,14 +53,17 @@ def platform_sfputil_read_porttab_mappings(): def logical_port_name_to_physical_port_list(port_name): - if port_name.startswith("Ethernet"): - if platform_sfputil.is_logical_port(port_name): - return platform_sfputil.get_logical_to_physical(port_name) + try: + if port_name.startswith("Ethernet"): + if platform_sfputil.is_logical_port(port_name): + return platform_sfputil.get_logical_to_physical(port_name) else: - click.echo("Invalid port '{}'".format(port_name)) - return None - else: - return [int(port_name)] + return [int(port_name)] + except ValueError: + pass + + click.echo("Invalid port '{}'".format(port_name)) + return None def get_logical_list(): @@ -70,7 +83,7 @@ def get_physical_to_logical(): def get_interface_name(port, db): - if port is not "all" and port is not None: + if port != "all" and port is not None: alias = port iface_alias_converter = clicommon.InterfaceAliasConverter(db) if clicommon.get_interface_naming_mode() == "alias": @@ -83,7 +96,7 @@ def get_interface_name(port, db): def get_interface_alias(port, db): - if port is not "all" and port is not None: + if port != "all" and port is not None: alias = port iface_alias_converter = clicommon.InterfaceAliasConverter(db) if clicommon.get_interface_naming_mode() == "alias": @@ -93,3 +106,42 @@ def get_interface_alias(port, db): sys.exit(1) return port + + +def is_rj45_port(port_name): + global platform_sfputil + global platform_chassis + global platform_sfp_base + global platform_sfputil_loaded + + try: + if not platform_chassis: + import sonic_platform + platform_chassis = sonic_platform.platform.Platform().get_chassis() + if not platform_sfp_base: + import sonic_platform_base + platform_sfp_base = sonic_platform_base.sfp_base.SfpBase + except (ModuleNotFoundError, FileNotFoundError) as e: + # This method is referenced by intfutil which is called on vs image + # sonic_platform API support is added for vs image(required for chassis), it expects a metadata file, which + # wont be available on vs pizzabox duts, So False is returned(if either ModuleNotFound or FileNotFound) + return False + + if platform_chassis and platform_sfp_base: + if not platform_sfputil: + load_platform_sfputil() + + if not platform_porttab_mapping_read: + platform_sfputil_read_porttab_mappings() + + port_type = None + try: + physical_port = platform_sfputil.get_logical_to_physical(port_name) + if physical_port: + port_type = platform_chassis.get_port_or_cage_type(physical_port[0]) + except Exception as e: + pass + + return port_type == platform_sfp_base.SFP_PORT_TYPE_BIT_RJ45 + + return False diff --git a/utilities_common/sfp_helper.py b/utilities_common/sfp_helper.py new file mode 100644 index 000000000..09a96ca2e --- /dev/null +++ b/utilities_common/sfp_helper.py @@ -0,0 +1,375 @@ +import ast + +QSFP_DATA_MAP = { + 'model': 'Vendor PN', + 'vendor_oui': 'Vendor OUI', + 'vendor_date': 'Vendor Date Code(YYYY-MM-DD Lot)', + 'manufacturer': 'Vendor Name', + 'vendor_rev': 'Vendor Rev', + 'serial': 'Vendor SN', + 'type': 'Identifier', + 'ext_identifier': 'Extended Identifier', + 'ext_rateselect_compliance': 'Extended RateSelect Compliance', + 'cable_length': 'cable_length', + 'cable_type': 'Length', + 'nominal_bit_rate': 'Nominal Bit Rate(100Mbs)', + 'specification_compliance': 'Specification compliance', + 'encoding': 'Encoding', + 'connector': 'Connector', + 'application_advertisement': 'Application Advertisement' +} + +QSFP_CMIS_DELTA_DATA_MAP = { + 'host_lane_count': 'Host Lane Count', + 'media_lane_count': 'Media Lane Count', + 'active_apsel_hostlane1': 'Active application selected code assigned to host lane 1', + 'active_apsel_hostlane2': 'Active application selected code assigned to host lane 2', + 'active_apsel_hostlane3': 'Active application selected code assigned to host lane 3', + 'active_apsel_hostlane4': 'Active application selected code assigned to host lane 4', + 'active_apsel_hostlane5': 'Active application selected code assigned to host lane 5', + 'active_apsel_hostlane6': 'Active application selected code assigned to host lane 6', + 'active_apsel_hostlane7': 'Active application selected code assigned to host lane 7', + 'active_apsel_hostlane8': 'Active application selected code assigned to host lane 8', + 'media_interface_technology': 'Media Interface Technology', + 'hardware_rev': 'Module Hardware Rev', + 'cmis_rev': 'CMIS Rev', + 'active_firmware': 'Active Firmware', + 'inactive_firmware': 'Inactive Firmware', + 'supported_max_tx_power': 'Supported Max TX Power', + 'supported_min_tx_power': 'Supported Min TX Power', + 'supported_max_laser_freq': 'Supported Max Laser Frequency', + 'supported_min_laser_freq': 'Supported Min Laser Frequency' +} + +CMIS_DATA_MAP = {**QSFP_DATA_MAP, **QSFP_CMIS_DELTA_DATA_MAP} + +# Common fileds for all types: +# For non-CMIS, only first 1 or 4 lanes are applicable. +# For CMIS, all 8 lanes are applicable. +QSFP_STATUS_MAP = { + 'txfault1': 'Tx fault flag on media lane 1', + 'txfault2': 'Tx fault flag on media lane 2', + 'txfault3': 'Tx fault flag on media lane 3', + 'txfault4': 'Tx fault flag on media lane 4', + 'txfault5': 'Tx fault flag on media lane 5', + 'txfault6': 'Tx fault flag on media lane 6', + 'txfault7': 'Tx fault flag on media lane 7', + 'txfault8': 'Tx fault flag on media lane 8', + 'rxlos1': 'Rx loss of signal flag on media lane 1', + 'rxlos2': 'Rx loss of signal flag on media lane 2', + 'rxlos3': 'Rx loss of signal flag on media lane 3', + 'rxlos4': 'Rx loss of signal flag on media lane 4', + 'rxlos5': 'Rx loss of signal flag on media lane 5', + 'rxlos6': 'Rx loss of signal flag on media lane 6', + 'rxlos7': 'Rx loss of signal flag on media lane 7', + 'rxlos8': 'Rx loss of signal flag on media lane 8', + 'tx1disable': 'TX disable status on lane 1', + 'tx2disable': 'TX disable status on lane 2', + 'tx3disable': 'TX disable status on lane 3', + 'tx4disable': 'TX disable status on lane 4', + 'tx5disable': 'TX disable status on lane 5', + 'tx6disable': 'TX disable status on lane 6', + 'tx7disable': 'TX disable status on lane 7', + 'tx8disable': 'TX disable status on lane 8', + 'tx_disabled_channel': 'Disabled TX channels' +} + +# CMIS specific fields (excluding C-CMIS specific): +CMIS_STATUS_MAP = { + 'module_state': 'Current module state', + 'module_fault_cause': 'Reason of entering the module fault state', + 'datapath_firmware_fault': 'Datapath firmware fault', + 'module_firmware_fault': 'Module firmware fault', + 'module_state_changed': 'Module state changed', + 'DP1State': 'Data path state indicator on host lane 1', + 'DP2State': 'Data path state indicator on host lane 2', + 'DP3State': 'Data path state indicator on host lane 3', + 'DP4State': 'Data path state indicator on host lane 4', + 'DP5State': 'Data path state indicator on host lane 5', + 'DP6State': 'Data path state indicator on host lane 6', + 'DP7State': 'Data path state indicator on host lane 7', + 'DP8State': 'Data path state indicator on host lane 8', + 'txoutput_status1': 'Tx output status on media lane 1', + 'txoutput_status2': 'Tx output status on media lane 2', + 'txoutput_status3': 'Tx output status on media lane 3', + 'txoutput_status4': 'Tx output status on media lane 4', + 'txoutput_status5': 'Tx output status on media lane 5', + 'txoutput_status6': 'Tx output status on media lane 6', + 'txoutput_status7': 'Tx output status on media lane 7', + 'txoutput_status8': 'Tx output status on media lane 8', + 'rxoutput_status_hostlane1': 'Rx output status on host lane 1', + 'rxoutput_status_hostlane2': 'Rx output status on host lane 2', + 'rxoutput_status_hostlane3': 'Rx output status on host lane 3', + 'rxoutput_status_hostlane4': 'Rx output status on host lane 4', + 'rxoutput_status_hostlane5': 'Rx output status on host lane 5', + 'rxoutput_status_hostlane6': 'Rx output status on host lane 6', + 'rxoutput_status_hostlane7': 'Rx output status on host lane 7', + 'rxoutput_status_hostlane8': 'Rx output status on host lane 8', + 'txlos_hostlane1': 'Tx loss of signal flag on host lane 1', + 'txlos_hostlane2': 'Tx loss of signal flag on host lane 2', + 'txlos_hostlane3': 'Tx loss of signal flag on host lane 3', + 'txlos_hostlane4': 'Tx loss of signal flag on host lane 4', + 'txlos_hostlane5': 'Tx loss of signal flag on host lane 5', + 'txlos_hostlane6': 'Tx loss of signal flag on host lane 6', + 'txlos_hostlane7': 'Tx loss of signal flag on host lane 7', + 'txlos_hostlane8': 'Tx loss of signal flag on host lane 8', + 'txcdrlol_hostlane1': 'Tx clock and data recovery loss of lock on host lane 1', + 'txcdrlol_hostlane2': 'Tx clock and data recovery loss of lock on host lane 2', + 'txcdrlol_hostlane3': 'Tx clock and data recovery loss of lock on host lane 3', + 'txcdrlol_hostlane4': 'Tx clock and data recovery loss of lock on host lane 4', + 'txcdrlol_hostlane5': 'Tx clock and data recovery loss of lock on host lane 5', + 'txcdrlol_hostlane6': 'Tx clock and data recovery loss of lock on host lane 6', + 'txcdrlol_hostlane7': 'Tx clock and data recovery loss of lock on host lane 7', + 'txcdrlol_hostlane8': 'Tx clock and data recovery loss of lock on host lane 8', + 'rxcdrlol1': 'Rx clock and data recovery loss of lock on media lane 1', + 'rxcdrlol2': 'Rx clock and data recovery loss of lock on media lane 2', + 'rxcdrlol3': 'Rx clock and data recovery loss of lock on media lane 3', + 'rxcdrlol4': 'Rx clock and data recovery loss of lock on media lane 4', + 'rxcdrlol5': 'Rx clock and data recovery loss of lock on media lane 5', + 'rxcdrlol6': 'Rx clock and data recovery loss of lock on media lane 6', + 'rxcdrlol7': 'Rx clock and data recovery loss of lock on media lane 7', + 'rxcdrlol8': 'Rx clock and data recovery loss of lock on media lane 8', + 'config_state_hostlane1': 'Configuration status for the data path of host line 1', + 'config_state_hostlane2': 'Configuration status for the data path of host line 2', + 'config_state_hostlane3': 'Configuration status for the data path of host line 3', + 'config_state_hostlane4': 'Configuration status for the data path of host line 4', + 'config_state_hostlane5': 'Configuration status for the data path of host line 5', + 'config_state_hostlane6': 'Configuration status for the data path of host line 6', + 'config_state_hostlane7': 'Configuration status for the data path of host line 7', + 'config_state_hostlane8': 'Configuration status for the data path of host line 8', + 'dpinit_pending_hostlane1': 'Data path configuration updated on host lane 1', + 'dpinit_pending_hostlane2': 'Data path configuration updated on host lane 2', + 'dpinit_pending_hostlane3': 'Data path configuration updated on host lane 3', + 'dpinit_pending_hostlane4': 'Data path configuration updated on host lane 4', + 'dpinit_pending_hostlane5': 'Data path configuration updated on host lane 5', + 'dpinit_pending_hostlane6': 'Data path configuration updated on host lane 6', + 'dpinit_pending_hostlane7': 'Data path configuration updated on host lane 7', + 'dpinit_pending_hostlane8': 'Data path configuration updated on host lane 8', + 'temphighalarm_flag': 'Temperature high alarm flag', + 'temphighwarning_flag': 'Temperature high warning flag', + 'templowwarning_flag': 'Temperature low warning flag', + 'templowalarm_flag': 'Temperature low alarm flag', + 'vcchighalarm_flag': 'Vcc high alarm flag', + 'vcchighwarning_flag': 'Vcc high warning flag', + 'vcclowwarning_flag': 'Vcc low warning flag', + 'vcclowalarm_flag': 'Vcc low alarm flag', + 'txpowerhighalarm_flag1': 'Tx power high alarm flag on lane 1', + 'txpowerhighalarm_flag2': 'Tx power high alarm flag on lane 2', + 'txpowerhighalarm_flag3': 'Tx power high alarm flag on lane 3', + 'txpowerhighalarm_flag4': 'Tx power high alarm flag on lane 4', + 'txpowerhighalarm_flag5': 'Tx power high alarm flag on lane 5', + 'txpowerhighalarm_flag6': 'Tx power high alarm flag on lane 6', + 'txpowerhighalarm_flag7': 'Tx power high alarm flag on lane 7', + 'txpowerhighalarm_flag8': 'Tx power high alarm flag on lane 8', + 'txpowerhighwarning_flag1': 'Tx power high warning flag on lane 1', + 'txpowerhighwarning_flag2': 'Tx power high warning flag on lane 2', + 'txpowerhighwarning_flag3': 'Tx power high warning flag on lane 3', + 'txpowerhighwarning_flag4': 'Tx power high warning flag on lane 4', + 'txpowerhighwarning_flag5': 'Tx power high warning flag on lane 5', + 'txpowerhighwarning_flag6': 'Tx power high warning flag on lane 6', + 'txpowerhighwarning_flag7': 'Tx power high warning flag on lane 7', + 'txpowerhighwarning_flag8': 'Tx power high warning flag on lane 8', + 'txpowerlowwarning_flag1': 'Tx power low warning flag on lane 1', + 'txpowerlowwarning_flag2': 'Tx power low warning flag on lane 2', + 'txpowerlowwarning_flag3': 'Tx power low warning flag on lane 3', + 'txpowerlowwarning_flag4': 'Tx power low warning flag on lane 4', + 'txpowerlowwarning_flag5': 'Tx power low warning flag on lane 5', + 'txpowerlowwarning_flag6': 'Tx power low warning flag on lane 6', + 'txpowerlowwarning_flag7': 'Tx power low warning flag on lane 7', + 'txpowerlowwarning_flag8': 'Tx power low warning flag on lane 8', + 'txpowerlowalarm_flag1': 'Tx power low alarm flag on lane 1', + 'txpowerlowalarm_flag2': 'Tx power low alarm flag on lane 2', + 'txpowerlowalarm_flag3': 'Tx power low alarm flag on lane 3', + 'txpowerlowalarm_flag4': 'Tx power low alarm flag on lane 4', + 'txpowerlowalarm_flag5': 'Tx power low alarm flag on lane 5', + 'txpowerlowalarm_flag6': 'Tx power low alarm flag on lane 6', + 'txpowerlowalarm_flag7': 'Tx power low alarm flag on lane 7', + 'txpowerlowalarm_flag8': 'Tx power low alarm flag on lane 8', + 'rxpowerhighalarm_flag1': 'Rx power high alarm flag on lane 1', + 'rxpowerhighalarm_flag2': 'Rx power high alarm flag on lane 2', + 'rxpowerhighalarm_flag3': 'Rx power high alarm flag on lane 3', + 'rxpowerhighalarm_flag4': 'Rx power high alarm flag on lane 4', + 'rxpowerhighalarm_flag5': 'Rx power high alarm flag on lane 5', + 'rxpowerhighalarm_flag6': 'Rx power high alarm flag on lane 6', + 'rxpowerhighalarm_flag7': 'Rx power high alarm flag on lane 7', + 'rxpowerhighalarm_flag8': 'Rx power high alarm flag on lane 8', + 'rxpowerhighwarning_flag1': 'Rx power high warning flag on lane 1', + 'rxpowerhighwarning_flag2': 'Rx power high warning flag on lane 2', + 'rxpowerhighwarning_flag3': 'Rx power high warning flag on lane 3', + 'rxpowerhighwarning_flag4': 'Rx power high warning flag on lane 4', + 'rxpowerhighwarning_flag5': 'Rx power high warning flag on lane 5', + 'rxpowerhighwarning_flag6': 'Rx power high warning flag on lane 6', + 'rxpowerhighwarning_flag7': 'Rx power high warning flag on lane 7', + 'rxpowerhighwarning_flag8': 'Rx power high warning flag on lane 8', + 'rxpowerlowwarning_flag1': 'Rx power low warning flag on lane 1', + 'rxpowerlowwarning_flag2': 'Rx power low warning flag on lane 2', + 'rxpowerlowwarning_flag3': 'Rx power low warning flag on lane 3', + 'rxpowerlowwarning_flag4': 'Rx power low warning flag on lane 4', + 'rxpowerlowwarning_flag5': 'Rx power low warning flag on lane 5', + 'rxpowerlowwarning_flag6': 'Rx power low warning flag on lane 6', + 'rxpowerlowwarning_flag7': 'Rx power low warning flag on lane 7', + 'rxpowerlowwarning_flag8': 'Rx power low warning flag on lane 8', + 'rxpowerlowalarm_flag1': 'Rx power low alarm flag on lane 1', + 'rxpowerlowalarm_flag2': 'Rx power low alarm flag on lane 2', + 'rxpowerlowalarm_flag3': 'Rx power low alarm flag on lane 3', + 'rxpowerlowalarm_flag4': 'Rx power low alarm flag on lane 4', + 'rxpowerlowalarm_flag5': 'Rx power low alarm flag on lane 5', + 'rxpowerlowalarm_flag6': 'Rx power low alarm flag on lane 6', + 'rxpowerlowalarm_flag7': 'Rx power low alarm flag on lane 7', + 'rxpowerlowalarm_flag8': 'Rx power low alarm flag on lane 8', + 'txbiashighalarm_flag1': 'Tx bias high alarm flag on lane 1', + 'txbiashighalarm_flag2': 'Tx bias high alarm flag on lane 2', + 'txbiashighalarm_flag3': 'Tx bias high alarm flag on lane 3', + 'txbiashighalarm_flag4': 'Tx bias high alarm flag on lane 4', + 'txbiashighalarm_flag5': 'Tx bias high alarm flag on lane 5', + 'txbiashighalarm_flag6': 'Tx bias high alarm flag on lane 6', + 'txbiashighalarm_flag7': 'Tx bias high alarm flag on lane 7', + 'txbiashighalarm_flag8': 'Tx bias high alarm flag on lane 8', + 'txbiashighwarning_flag1': 'Tx bias high warning flag on lane 1', + 'txbiashighwarning_flag2': 'Tx bias high warning flag on lane 2', + 'txbiashighwarning_flag3': 'Tx bias high warning flag on lane 3', + 'txbiashighwarning_flag4': 'Tx bias high warning flag on lane 4', + 'txbiashighwarning_flag5': 'Tx bias high warning flag on lane 5', + 'txbiashighwarning_flag6': 'Tx bias high warning flag on lane 6', + 'txbiashighwarning_flag7': 'Tx bias high warning flag on lane 7', + 'txbiashighwarning_flag8': 'Tx bias high warning flag on lane 8', + 'txbiaslowwarning_flag1': 'Tx bias low warning flag on lane 1', + 'txbiaslowwarning_flag2': 'Tx bias low warning flag on lane 2', + 'txbiaslowwarning_flag3': 'Tx bias low warning flag on lane 3', + 'txbiaslowwarning_flag4': 'Tx bias low warning flag on lane 4', + 'txbiaslowwarning_flag5': 'Tx bias low warning flag on lane 5', + 'txbiaslowwarning_flag6': 'Tx bias low warning flag on lane 6', + 'txbiaslowwarning_flag7': 'Tx bias low warning flag on lane 7', + 'txbiaslowwarning_flag8': 'Tx bias low warning flag on lane 8', + 'txbiaslowalarm_flag1': 'Tx bias low alarm flag on lane 1', + 'txbiaslowalarm_flag2': 'Tx bias low alarm flag on lane 2', + 'txbiaslowalarm_flag3': 'Tx bias low alarm flag on lane 3', + 'txbiaslowalarm_flag4': 'Tx bias low alarm flag on lane 4', + 'txbiaslowalarm_flag5': 'Tx bias low alarm flag on lane 5', + 'txbiaslowalarm_flag6': 'Tx bias low alarm flag on lane 6', + 'txbiaslowalarm_flag7': 'Tx bias low alarm flag on lane 7', + 'txbiaslowalarm_flag8': 'Tx bias low alarm flag on lane 8', + 'lasertemphighalarm_flag': 'Laser temperature high alarm flag', + 'lasertemphighwarning_flag': 'Laser temperature high warning flag', + 'lasertemplowwarning_flag': 'Laser temperature low warning flag', + 'lasertemplowalarm_flag': 'Laser temperature low alarm flag', + 'prefecberhighalarm_flag': 'Prefec ber high alarm flag', + 'prefecberhighwarning_flag': 'Prefec ber high warning flag', + 'prefecberlowwarning_flag': 'Prefec ber low warning flag', + 'prefecberlowalarm_flag': 'Prefec ber low alarm flag', + 'postfecberhighalarm_flag': 'Postfec ber high alarm flag', + 'postfecberhighwarning_flag': 'Postfec ber high warning flag', + 'postfecberlowwarning_flag': 'Postfec ber low warning flag', + 'postfecberlowalarm_flag': 'Postfec ber low alarm flag' +} + +# C-CMIS specific fields: +CCMIS_STATUS_MAP = { + 'tuning_in_progress': 'Tuning in progress status', + 'wavelength_unlock_status': 'Laser unlocked status', + 'target_output_power_oor': 'Target output power out of range flag', + 'fine_tuning_oor': 'Fine tuning out of range flag', + 'tuning_not_accepted': 'Tuning not accepted flag', + 'invalid_channel_num': 'Invalid channel number flag', + 'tuning_complete': 'Tuning complete flag', + 'biasxihighalarm_flag': 'Bias xi high alarm flag', + 'biasxihighwarning_flag': 'Bias xi high warning flag', + 'biasxilowwarning_flag': 'Bias xi low warning flag', + 'biasxilowalarm_flag': 'Bias xi low alarm flag', + 'biasxqhighalarm_flag': 'Bias xq high alarm flag', + 'biasxqhighwarning_flag': 'Bias xq high warning flag', + 'biasxqlowwarning_flag': 'Bias xq low warning flag', + 'biasxqlowalarm_flag': 'Bias xq low alarm flag', + 'biasxphighalarm_flag': 'Bias xp high alarm flag', + 'biasxphighwarning_flag': 'Bias xp high warning flag', + 'biasxplowwarning_flag': 'Bias xp low warning flag', + 'biasxplowalarm_flag': 'Bias xp low alarm flag', + 'biasyihighalarm_flag': 'Bias yi high alarm flag', + 'biasyihighwarning_flag': 'Bias yi high warning flag', + 'biasyilowwarning_flag': 'Bias yi low warning flag', + 'biasyilowalarm_flag': 'Bias yi low alarm flag', + 'biasyqhighalarm_flag': 'Bias yq high alarm flag', + 'biasyqhighwarning_flag': 'Bias yq high warning flag', + 'biasyqlowwarning_flag': 'Bias yq low warning flag', + 'biasyqlowalarm_flag': 'Bias yq low alarm flag', + 'biasyphighalarm_flag': 'Bias yp high alarm flag', + 'biasyphighwarning_flag': 'Bias yp high warning flag', + 'biasyplowwarning_flag': 'Bias yp low warning flag', + 'biasyplowalarm_flag': 'Bias yp low alarm flag', + 'cdshorthighalarm_flag': 'CD short high alarm flag', + 'cdshorthighwarning_flag': 'CD short high warning flag', + 'cdshortlowwarning_flag': 'CD short low warning flag', + 'cdshortlowalarm_flag': 'CD short low alarm flag', + 'cdlonghighalarm_flag': 'CD long high alarm flag', + 'cdlonghighwarning_flag': 'CD long high warning flag', + 'cdlonglowwarning_flag': 'CD long low warning flag', + 'cdlonglowalarm_flag': 'CD long low alarm flag', + 'dgdhighalarm_flag': 'DGD high alarm flag', + 'dgdhighwarning_flag': 'DGD high warning flag', + 'dgdlowwarning_flag': 'DGD low warning flag', + 'dgdlowalarm_flag': 'DGD low alarm flag', + 'sopmdhighalarm_flag': 'SOPMD high alarm flag', + 'sopmdhighwarning_flag': 'SOPMD high warning flag', + 'sopmdlowwarning_flag': 'SOPMD low warning flag', + 'sopmdlowalarm_flag': 'SOPMD low alarm flag', + 'pdlhighalarm_flag': 'PDL high alarm flag', + 'pdlhighwarning_flag': 'PDL high warning flag', + 'pdllowwarning_flag': 'PDL low warning flag', + 'pdllowalarm_flag': 'PDL low alarm flag', + 'osnrhighalarm_flag': 'OSNR high alarm flag', + 'osnrhighwarning_flag': 'OSNR high warning flag', + 'osnrlowwarning_flag': 'OSNR low warning flag', + 'osnrlowalarm_flag': 'OSNR low alarm flag', + 'esnrhighalarm_flag': 'ESNR high alarm flag', + 'esnrhighwarning_flag': 'ESNR high warning flag', + 'esnrlowwarning_flag': 'ESNR low warning flag', + 'esnrlowalarm_flag': 'ESNR low alarm flag', + 'cfohighalarm_flag': 'CFO high alarm flag', + 'cfohighwarning_flag': 'CFO high warning flag', + 'cfolowwarning_flag': 'CFO low warning flag', + 'cfolowalarm_flag': 'CFO low alarm flag', + 'txcurrpowerhighalarm_flag': 'Txcurrpower high alarm flag', + 'txcurrpowerhighwarning_flag': 'Txcurrpower high warning flag', + 'txcurrpowerlowwarning_flag': 'Txcurrpower low warning flag', + 'txcurrpowerlowalarm_flag': 'Txcurrpower low alarm flag', + 'rxtotpowerhighalarm_flag': 'Rxtotpower high alarm flag', + 'rxtotpowerhighwarning_flag': 'Rxtotpower high warning flag', + 'rxtotpowerlowwarning_flag': 'Rxtotpower low warning flag', + 'rxtotpowerlowalarm_flag': 'Rxtotpower low alarm flag', + 'rxsigpowerhighalarm_flag': 'Rxsigpower high alarm flag', + 'rxsigpowerhighwarning_flag': 'Rxsigpower high warning flag', + 'rxsigpowerlowwarning_flag': 'Rxsigpower low warning flag', + 'rxsigpowerlowalarm_flag': 'Rxsigpower low alarm flag' +} + +def covert_application_advertisement_to_output_string(indent, sfp_info_dict): + key = 'application_advertisement' + field_name = '{}{}: '.format(indent, QSFP_DATA_MAP[key]) + output = field_name + try: + app_adv_str = sfp_info_dict[key] + app_adv_dict = ast.literal_eval(app_adv_str) + if not app_adv_dict: + output += 'N/A\n' + else: + lines = [] + for item in app_adv_dict.values(): + host_interface_id = item.get('host_electrical_interface_id') + if not host_interface_id: + continue + elements = [] + elements.append(host_interface_id) + host_assign_options = item.get('host_lane_assignment_options') + host_assign_options = hex(host_assign_options) if host_assign_options else 'Unknown' + elements.append(f'Host Assign ({host_assign_options})') + elements.append(item.get('module_media_interface_id', 'Unknown')) + media_assign_options = item.get('media_lane_assignment_options') + media_assign_options = hex(media_assign_options) if media_assign_options else 'Unknown' + elements.append(f'Media Assign ({media_assign_options})') + lines.append(' - '.join(elements)) + sep = '\n' + ' ' * len(field_name) + output += sep.join(lines) + output += '\n' + except Exception: + output += '{}\n'.format(app_adv_str) + return output